Merge lp:~barry-mcgee/ubuntu-online-tour/optimsation into lp:ubuntu-online-tour/14.04

Proposed by Barry McGee
Status: Merged
Merged at revision: 195
Proposed branch: lp:~barry-mcgee/ubuntu-online-tour/optimsation
Merge into: lp:ubuntu-online-tour/14.04
Diff against target: 4295 lines (+1666/-1487)
8 files modified
.bzrignore (+1/-0)
Gulpfile.js (+72/-0)
README (+32/-1)
css/style.min.css (+1/-0)
en/index.html (+16/-1486)
en/src/index.html (+1519/-0)
js/script.min.js (+4/-0)
package.json (+21/-0)
To merge this branch: bzr merge lp:~barry-mcgee/ubuntu-online-tour/optimsation
Reviewer Review Type Date Requested Status
Anthony Dillon Approve
Review via email: mp+282165@code.launchpad.net

Description of the change

* minify and concatenate the CSS
* minify and concatenate the JS
* compress the image files
* minify the HTML
* Update README to include Gulp instructions

To post a comment you must log in.
Revision history for this message
Anthony Dillon (ya-bo-ng) wrote :

Wow ... 2.6MB to 109KB!! Awesome stuff.

But there are a few QA issues:
 - Shotwell the image view has errors
 - Folder icons are not showing up
 - The email layout does not float of flex anymore
 - Dash, apps do not float

review: Needs Fixing
201. By Barry McGee

Optimise images and remove UnCSS gulp task

Revision history for this message
Anthony Dillon (ya-bo-ng) wrote :

Looks good +1

review: Approve
202. By Barry McGee

Compress images

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file '.bzrignore'
2--- .bzrignore 2014-03-05 15:11:18 +0000
3+++ .bzrignore 2016-01-12 12:40:40 +0000
4@@ -2,3 +2,4 @@
5 .settings
6 *..DS_Store
7 *.DS_Store
8+./node_modules
9
10=== added file 'Gulpfile.js'
11--- Gulpfile.js 1970-01-01 00:00:00 +0000
12+++ Gulpfile.js 2016-01-12 12:40:40 +0000
13@@ -0,0 +1,72 @@
14+// loads various gulp modules
15+var gulp = require('gulp');
16+var concat = require('gulp-concat');
17+var minifyCSS = require('gulp-minify-css');
18+var rename = require('gulp-rename');
19+var uglify = require('gulp-uglify');
20+var imagemin = require('gulp-imagemin');
21+var pngquant = require('imagemin-pngquant');
22+var htmlmin = require('gulp-htmlmin');
23+
24+// css optimisation
25+gulp.task('css', function(){
26+ gulp.src(['css/**/*.css', '!css/style.min.css'])
27+ .pipe(concat('style.css'))
28+ .pipe(minifyCSS())
29+ .pipe(rename('style.min.css'))
30+ .pipe(gulp.dest('css'))
31+});
32+
33+// js optimisation
34+gulp.task('js', function(){
35+ return gulp.src([
36+ '!js/jquery-ui.min.js',
37+ '!js/jquery.min.js',
38+ 'js/lang.js',
39+ 'js/scripts.js',
40+ 'js/welcomesystem.js',
41+ 'js/guidedtoursystem.js',
42+ 'js/filesystem.js',
43+ 'js/folders.js',
44+ 'js/systemoverlay.js',
45+ 'js/systemmenu.js',
46+ 'js/internetsystem.js',
47+ 'js/emailsystem.js',
48+ 'js/systemsettings.js',
49+ 'js/email.js',
50+ 'js/errormessage.js',
51+ 'js/ubuntuonesystem.js',
52+ 'js/file.js',
53+ 'js/shotwellsystem.js',
54+ 'js/shutdownSystem.js',
55+ 'js/movieplayersystem.js',
56+ 'js/libresystem.js',
57+ 'js/softwaresystem.js',
58+ 'js/notificationsystem.js',
59+ 'js/analytics.js'
60+ ])
61+ .pipe(concat('script.js'))
62+ .pipe(uglify())
63+ .pipe(rename('script.min.js'))
64+ .pipe(gulp.dest('js'));
65+});
66+
67+// img optimisation
68+gulp.task('img-min', function(){
69+ return gulp.src('img/**/*', {base: '.'})
70+ .pipe(imagemin({
71+ progressive: true,
72+ svgoPlugins: [{removeViewBox: false}],
73+ use: [pngquant()]
74+ }))
75+ .pipe(gulp.dest('.'));
76+});
77+
78+// html minification
79+gulp.task('html-minify', function() {
80+ return gulp.src('en/src/*.html')
81+ .pipe(htmlmin({collapseWhitespace: true}))
82+ .pipe(gulp.dest('en'))
83+});
84+
85+gulp.task('default', ['css', 'js', 'img-min']);
86\ No newline at end of file
87
88=== modified file 'README'
89--- README 2014-04-16 18:18:20 +0000
90+++ README 2016-01-12 12:40:40 +0000
91@@ -51,4 +51,35 @@
92 -s, --test Test mode: only effective in conjunction with Translate
93 mode. If set, untranslatable messages are translated as
94 reversed English, so that they are easy to spot.
95-
96+
97+# Optimisation
98+
99+To ensure the Online Tour is optimised for page weight doewnload and onload performance,
100+there is a Gulp task file included which peforms several tasks needed to run
101+the site.
102+
103+These are;
104+
105+* minify and concatenate the CSS
106+* minify and concatenate the JS
107+* compress the image files
108+* minify the HTML
109+
110+To get started, install all the required node modules;
111+
112+```
113+npm i
114+```
115+
116+Then run Gulp to peform the tasks specified above;
117+
118+```
119+gulp
120+```
121+
122+When complete, the tour should be ready.
123+
124+
125+
126+
127+
128
129=== added file 'css/style.min.css'
130--- css/style.min.css 1970-01-01 00:00:00 +0000
131+++ css/style.min.css 2016-01-12 12:40:40 +0000
132@@ -0,0 +1,1 @@
133+#menu,body{-khtml-user-select:none;overflow:hidden}#demo-link,#menu,#top #top-right div,.window-title,body{overflow:hidden}#Translation-Strings,#control-buttons,#menu .temp,#menu ul li img.open-arrow,#menu ul li span,#tooltip,#top #top-right div .drop-down,#top.dashOpen #control-buttons{display:none}body{background:url(../img/background.jpg) center center no-repeat fixed;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;font-family:Ubuntu,"Ubuntu Beta",Ubuntu,UbuntuBeta!important;color:#fff;overflow-x:hidden;width:100%;height:100%;-webkit-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}*{cursor:default;font-family:Ubuntu,"Ubuntu Beta",Ubuntu,UbuntuBeta}a{outline:0;color:#DD4814;text-decoration:none;cursor:pointer}.blurred *{color:transparent!important;text-shadow:0 0 5px #999!important}.blurred{-ms-filter:"progid:DXImageTransform.Microsoft.Blur(pixelRadius=2)";filter:progid:DXImageTransform.Microsoft.Blur(pixelRadius=2)}.window{-moz-border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-box-shadow:0 0 10px #000;-webkit-box-shadow:0 0 10px #000;box-shadow:0 0 10px #000;position:absolute;background:url(../img/folder/top-bg.jpg) repeat-x #f2f1f0;color:#4C4C4C;font-size:14px;z-index:1}input:selection,textarea:selection{background:#f07746;color:#fff}input::-moz-selection{background:#f07746;color:#fff}input::-webkit-selection{background:#f07746;color:#fff}textarea::-moz-selection{background:#f07746;color:#fff}textarea::-webkit-selection{background:#f07746;color:#fff}input,textarea{background-color:#fff;border:1px solid #ada9a5;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;padding:2px;font-family:Ubuntu,"Ubuntu Beta",UbuntuBeta,Ubuntu}#menu{background:#782220;width:64px;position:absolute;left:0;top:24px;border-right:1px solid rgba(255,255,255,.2);z-index:10;-webkit-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}#menu .dash,#systemOverlay .copyDash{background-image:url(../img/menu/icon-dash.png)}#menu .scroll-down,#menu .scroll-up{left:0;width:100%;height:20px;position:absolute}#menu.dashOpen{border-right:1px solid #333}#menu .scroll-up{top:0}#menu .scroll-down{bottom:0}#tooltip{z-index:10;height:20px;border:1px solid #4a3742;border-left:none;position:absolute;left:82px;padding:3px 10px 2px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-moz-box-shadow:0 0 5px #000;-webkit-box-shadow:0 0 5px #000}#tooltip #tooltip-text{font-size:14px;white-space:nowrap}.arrow-right,.shadow-arrow{width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent;border-right:10px solid #1f171a;margin-left:-20px;float:left}.shadow-arrow{border-right:12px solid #4a3742;border-top:12px solid transparent;border-bottom:12px solid transparent;margin-left:-22px;margin-top:-2px}#menu ul{margin-top:6px;padding-left:5px;position:absolute;top:0;height:100%}#menu ul li{list-style:none;height:54px;width:54px;color:transparent;padding-top:6px;margin-bottom:-1px;background-repeat:no-repeat;-moz-transition:-moz-box-shadow .3s linear;-webkit-transition:-webkit-box-shadow .3s linear;transition:box-shadow .3s linear}#menu ul li.glow{box-shadow:0 0 7px #d0733b;-moz-box-shadow:0 0 7px #d0733b;-webkit-box-shadow:0 0 7px #d0733b;background-color:rgba(208,115,59,.5)}#menu ul li img.open-arrow{margin-left:-7px;margin-top:17px}#menu ul li img.selected-window-arrow{display:none;float:right;margin-right:-6px;margin-top:17px;position:relative}#systemOverlay .copyDash{position:absolute;top:30px;left:5px;background-repeat:no-repeat;height:52px;width:52px}#menu .home{background-image:url(../img/menu/icon-folder.png)}#menu .firefox{background-image:url(../img/menu/icon-firefox.png)}#menu .movieplayer{background-image:url(../img/menu/icon-movieplayer.png)}#menu .shotwell{background-image:url(../img/menu/icon-shotwell.png)}#menu .writer{background-image:url(../img/menu/icon-writer.png)}#menu .impress{background-image:url(../img/menu/icon-impress.png)}#menu .calc{background-image:url(../img/menu/icon-calc.png)}#menu .uone{background-image:url(../img/menu/icon-ubuntuone.png)}#menu .uonemusic{background-image:url(../img/menu/icon-ubuntuonemusic.png)}#menu .amazon{background-image:url(../img/menu/icon-amazon.png)}#menu .software{background-image:url(../img/menu/icon-software.png)}#menu .settings{background-image:url(../img/menu/icon-systemsettings.png)}#menu .workspace{background-image:url(../img/menu/icon-workspace.png)}#menu .applications{background-image:url(../img/menu/icon-applications.png)}#menu .files{background-image:url(../img/menu/icon-files.png)}#menu .email{background-image:url(../img/menu/icon-thunderbird.png)}#menu .rubbish{background-image:url(../img/menu/icon-trashempty.png);position:absolute}#menu .dash.active-icon{background-image:url(../img/menu/icon-dash-active.png)}#menu .home.active-icon{background-image:url(../img/menu/icon-folder-active.png)}#menu .firefox.active-icon{background-image:url(../img/menu/icon-firefox-active.png)}#menu .movieplayer.active-icon{background-image:url(../img/menu/icon-movieplayer-active.png)}#menu .shotwell.active-icon{background-image:url(../img/menu/icon-shotwell-active.png)}#menu .writer.active-icon{background-image:url(../img/menu/icon-writer-active.png)}#menu .impress.active-icon{background-image:url(../img/menu/icon-impress-active.png)}#menu .calc.active-icon{background-image:url(../img/menu/icon-calc-active.png)}#menu .uone.active-icon{background-image:url(../img/menu/icon-ubuntuone-active.png)}#menu .uonemusic.active-icon{background-image:url(../img/menu/icon-ubuntuonemusic-active.png)}#menu .amazon.active-icon{background-image:url(../img/menu/icon-amazon-active.png)}#menu .software.active-icon{background-image:url(../img/menu/icon-software-active.png)}#menu .settings.active-icon{background-image:url(../img/menu/icon-systemsettings-active.png)}#menu .email.active-icon{background-image:url(../img/menu/icon-thunderbird-active.png)}#menu .workspace.active-icon{background-image:url(../img/menu/icon-workspace-active.png)}#menu .applications.active-icon{background-image:url(../img/menu/icon-applications-active.png)}#menu .files.active-icon{background-image:url(../img/menu/icon-files-active.png)}#menu .rubbish.active-icon{background-image:url(../img/menu/icon-trashempty-active.png);position:absolute}#menu .bottom{bottom:6px}#top{background-image:url(../img/top-bg.jpg);background-repeat:repeat-x;position:absolute;left:0;top:0;width:100%;height:24px;color:#DFDBD2;z-index:11}#top.dashOpen{background-image:none;background-color:transparent;z-index:13}#top.dashOpen #top-right #time{color:#fff}#top.dashOpen #top-left #title{color:transparent}#top #top-left #dash-control-buttons{float:left}#top.dashOpen #top-left #dash-control-buttons div{width:15px;height:15px;float:left;margin-left:4px;margin-top:5px}#top.dashOpen #top-left #dash-control-buttons .close{background:url(../img/dash/dash-close.png) no-repeat;margin-left:10px}#top.dashOpen #top-left #dash-control-buttons .close:active{background:url(../img/dash/dash-close-clicked.png) no-repeat}#top.dashOpen #top-left #dash-control-buttons .min{background:url(../img/dash/dash-min.png) no-repeat}#top.dashOpen #top-left #dash-control-buttons .max{background:url(../img/dash/dash-max.png) no-repeat}#top.dropShadow{-moz-box-shadow:0 0 10px #000;-webkit-box-shadow:0 0 10px #000;box-shadow:0 0 10px #000}#top #top-button-bg #top-button{background:url(../img/topleft-button.png) center center no-repeat;width:70px;height:100%}#top #top-button-bg{width:70px;height:100%;border-right:1px double #333;float:left}.fullscreenErrorTransOverlay,.fullscreenTransOverlay{position:absolute;left:0;top:0;width:100%;height:100%}#top .open{background:url(../img/top-bg-selected.jpg) center center repeat-x}#top #top-left{float:left}#top #top-right{float:right;font-size:15px}#top-left #title,.control .folder-title,.window-title{font-size:14px;font-weight:700}#top #top-right div{float:left;padding:0 8px}#top #top-right div .drop-down{list-style-type:none;background:#464641;padding:0 5px;margin-top:0;-moz-box-shadow:-1px 1px 5px #000;-webkit-box-shadow:-1px 1px 5px #000;box-shadow:-1px 1px 5px #000;position:absolute;z-index:10}.fullscreenTransOverlay{background:url(../img/black-bg-00.png);background:rgba(0,0,0,0);z-index:8}.fullscreenErrorTransOverlay{background:url(../img/black-bg-00.png);background:rgba(0,0,0,0);z-index:2}#top #top-right div .drop-down li.disabled{color:#666}#top #top-right div .drop-down li .key-combo{float:right;color:#666;background-color:transparent}#top #top-right div .drop-down li.disabled:hover{background:#464641;color:#666}#top #top-right div .drop-down li:hover{background:url(../img/top/drop-down-hover.jpg) repeat-x;color:#fff}#top #top-right div ul li.divider:hover{background:#3d3c39}#top #top-right #power .drop-down{margin-left:-232px;width:247px}#top #top-right #user .drop-down{width:192px;margin-left:-129px}#top #top-right #time .drop-down{width:300px;margin-left:-233px;margin-top:3px}#top #top-right #message .drop-down{margin-left:-45px;margin-top:0;padding:0}#top #top-right #message .system-message{background:url(../img/top/chat.jpg) no-repeat;width:136px;height:146px;padding:0;margin-left:0;margin-top:0}#top #top-right #speakers .drop-down{width:255px;margin-left:-152px}#top #top-right #connection .drop-down{width:219px;margin-left:-75px}#top #top-right #bluetooth .drop-down{width:208px;margin-left:-45px}#top #top-right #time p{margin:0}#top #top-right #time .system-calendar{background:url(../img/top/calendar.jpg) no-repeat;width:291px;height:292px;margin-left:0;margin-top:0}#top #top-right div img.disabled{opacity:.4;filter:alpha(opacity=40)}#top #top-right div ul{list-style-position:inside}#top #top-right div ul li{height:18px;padding:3px 3px 3px 15px}#top #top-right div ul li img{margin-left:-10px;margin-right:5px;vertical-align:middle}#top #top-right div ul li.ticked{list-style-image:url(../img/top/tic7pxk.png);padding-left:0}#top #top-right div ul li.divider{height:1px;background:#3d3c39;border-bottom:1px solid #484844;padding:0;margin:4px 0}#top #top-right #bluetooth,#top #top-right #connection,#top #top-right #message,#top #top-right #speakers{padding-top:4px}#top #top-right #power,#top #top-right #user{padding-top:2px}#top #top-right #time,#top #top-right #user{padding-top:3px}#top #top-right #user img{vertical-align:bottom}#top #top-right #speakers div{float:left}#top #top-right #speakers .small-icon{background:url(../img/top/0slider.jpg) no-repeat;height:15px;width:7px;margin-top:12px}#top #top-right #speakers .system-volume{height:37px;padding:3px}#top #top-right #speakers .banshee:hover,#top #top-right #speakers .system-volume:hover{background:0 0}#top #top-right #speakers .banshee{height:43px;padding-left:50px}#top #top-right #speakers .banshee div:hover{background-color:#4d4c48}#top #top-right #speakers .banshee .banshee-rewind{background:url(../img/top/banshee-rewind.png) center center no-repeat #43423f;height:29px;width:52px;margin-top:7px;-moz-border-radius:14px 0 0 14px;-webkit-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;border-top:1px solid #64625b;border-bottom:1px solid #393836}#top #top-right #speakers .banshee .banshee-play{background:url(../img/top/banshee-play.png) center center no-repeat #43423f;height:43px;width:37px;-moz-border-radius:25px;-webkit-border-radius:25px;border-radius:25px;border-top:1px solid #64625b;border-bottom:1px solid #393836;margin-left:-100px}#top #top-right #speakers .banshee .banshee-forward{background:url(../img/top/banshee-forward.png) center center no-repeat #43423f;height:29px;width:52px;margin-top:7px;-moz-border-radius:0 14px 14px 0;-webkit-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;border-top:1px solid #64625b;border-bottom:1px solid #393836;margin-left:30px}#top #top-right #speakers .slider{width:185px;height:17px;float:left;overflow:visible;cursor:default;margin-top:5px;padding-top:10px}#top #top-right #speakers .slider-active{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;background:#dd4814;height:5px;width:60px;margin-left:26px;margin-top:-15px;position:relative;z-index:1;padding:0}#top #top-right #speakers .ui-slider-handle{z-index:2}#top #top-right #speakers .large-icon{background:url(../img/top/100slider.jpg) no-repeat;height:15px;width:7px;float:right;margin-top:12px}#top #top-right .selected{background:url(../img/top/selected-bg.jpg) repeat-x;-webkit-border-top-left-radius:2px;-webkit-border-top-right-radius:2px;-moz-border-radius-topleft:2px;-moz-border-radius-topright:2px;border-top-left-radius:2px;border-top-right-radius:2px}#top-left #title{float:left;color:#DFDBD2;margin-left:10px;margin-top:2px}#control-buttons{margin-top:2px;margin-left:8px;float:left}#control-buttons div{width:19px;height:19px;background-repeat:no-repeat;float:left;margin-right:2px}#control-buttons div:hover{background-position:0 -19px}#control-buttons #close{background-image:url(../img/close-button.jpg)}#control-buttons #min{background-image:url(../img/min-button.jpg)}#control-buttons #max{background-image:url(../img/max-button.jpg)}.fullsize{top:0!important;left:70px!important}.fullsize .control .max{background:url(../img/folder/resume.jpg) no-repeat}.fullsize .buttons{margin-top:0}.ui-slider{position:relative;background:url(../img/speaker-bg-slider.png) 0 10px no-repeat;height:10px;width:195px}.ui-slider:hover{cursor:pointer}.ui-slider a{margin:-6px 0 0 -5px;position:absolute;background:url(../img/button-slider.png) no-repeat;width:12px;height:20px;display:block}.selected-window{-moz-box-shadow:0 0 20px #000;-webkit-box-shadow:0 0 20px #000;box-shadow:0 0 20px #000}.selected-window .control .window-title{color:#DFDBD2}.folder{width:730px;height:500px;top:200px;left:600px;display:none}.control{height:21px;margin-left:10px;margin-top:6px}.control .close,.control .max,.control .min{height:19px;float:left}.control .folder-title{float:left;color:#DFDBD2;margin-left:10px}.control .close{background:url(../img/folder/close.jpg) no-repeat;width:18px}.control div:hover{background-position:0 -19px!important}.control .min{background:url(../img/folder/minimise.jpg) no-repeat;width:19px}.control .max{background:url(../img/folder/maximise.jpg) no-repeat;width:17px}.window-title{color:#807d78;float:left;height:18px;margin-left:10px;max-width:90%}body{font-size:62.5%}table{font-size:1em}.layout-grid{width:960px}.layout-grid td{vertical-align:top}.layout-grid td.left-nav{width:140px}.layout-grid td.normal{border-left:1px solid #eee;padding:20px 24px;font-family:"Trebuchet MS",Helvetica,Arial,Verdana,sans-serif}.layout-grid td.demos{background:url(/images/demos_bg.jpg) no-repeat;height:337px;overflow:hidden}.normal h3,.normal h4{margin:0;font-weight:400}.normal h3{padding:0 0 9px;font-size:1.8em}.normal h4,.normal p{font-size:1.2em}.normal h4{padding-bottom:21px;border-bottom:1px dashed #999;font-weight:700}.demos-nav,.demos-nav dd,.demos-nav dt,.demos-nav li,.demos-nav ul{margin:0;padding:0}.demos-nav{float:left;width:170px;font-size:1.3em}.demos-nav dt,.demos-nav h4{margin:1.5em 0 0;padding:0 0 5px 8px;font:400 1.1em "Trebuchet MS",Helvetica,Arial,Verdana,sans-serif;color:#e87b10;line-height:1.2em;border-bottom:1px solid #F4F4F4}div.demo,div.demo-description{font-family:"Trebuchet MS",Arial,Helvetica,Verdana,sans-serif}.demos-nav dd a,.demos-nav li a{border-bottom:1px solid #F4F4F4;display:block;padding:4px 3px 4px 8px;font-size:90%;text-decoration:none;color:#555;margin:2px 0;height:13px}.demos-nav dd a:focus,.demos-nav dd a:hover{background:#f3f3f3;color:#000;-moz-border-radius:5px;-webkit-border-radius:5px}.demos-nav dd a.selected{background:#555;color:#fff;-moz-border-radius:5px;-webkit-border-radius:5px}.normal h3.demo-header{font-size:32px;padding:0 0 5px;border-bottom:1px solid #eee;text-transform:capitalize}.normal h4.demo-subheader{font-size:10px;text-transform:uppercase;color:#999;padding:8px 0 3px;border:0;margin:0}.normal a:link,.normal a:visited{color:#1b75bb;text-decoration:none}.normal a:active,.normal a:hover{color:#0b559b}#demo-config{padding:20px 0 0}#demo-frame{float:left;width:540px;height:380px;border:1px solid #ddd;overflow:auto;position:relative}#demo-frame h3,#demo-frame h4{padding:0;font-weight:700;font-size:1em}#demo-config-menu{float:right;width:180px}#demo-config-menu h4{font-size:13px;color:#666;font-weight:400;border:0;padding-left:18px}#demo-config-menu ul{list-style:none;padding:0;margin:0}#demo-config-menu li{font-size:12px;padding:0 0 0 10px;margin:3px 0;zoom:1}#demo-config-menu li a:link,#demo-config-menu li a:visited{display:block;padding:1px 8px 4px;border-bottom:1px dotted #b3b3b3}* html #demo-config-menu li a:link,* html #demo-config-menu li a:visited{padding:1px 8px 2px}#demo-config-menu li a:active,#demo-config-menu li a:hover{background-color:#f6f6f6}#demo-config-menu li.demo-config-on{background:url(images/demo-config-on-tile.gif) left center repeat-x}#demo-config-menu li.demo-config-on a:active,#demo-config-menu li.demo-config-on a:hover,#demo-config-menu li.demo-config-on a:link,#demo-config-menu li.demo-config-on a:visited{background:url(images/demo-config-on.gif) left no-repeat;padding-left:18px;color:#fff;border:0;margin-left:-10px;margin-top:0;margin-bottom:0}#demo-notes,#demo-source{clear:both;padding:20px 0 0;font-size:1.3em}#demo-notes{width:520px;color:#333;font-size:1em}#demo-notes p code,.demo-description p code{padding:0;font-weight:700}#demo-source code,#demo-source pre{padding:0}code,pre{padding:8px 0 8px 20px;font-size:1.2em;line-height:130%}#demo-source a:active,#demo-source a:hover,#demo-source a:link,#demo-source a:visited{font-size:12px;padding-left:13px;background-position:left center;background-repeat:no-repeat}#demo-source a.source-open:active,#demo-source a.source-open:hover,#demo-source a.source-open:link,#demo-source a.source-open:visited{background-image:url(images/demo-spindown-open.gif)}#demo-source a.source-closed:active,#demo-source a.source-closed:hover,#demo-source a.source-closed:link,#demo-source a.source-closed:visited{background-image:url(images/demo-spindown-closed.gif)}div.demo{padding:12px}div.demo h3.docs{clear:left;font-size:12px;font-weight:400;padding:0 0 1em;margin:0}div.demo-description{clear:both;padding:12px;font-size:1.3em;line-height:1.4em}.ui-draggable,.ui-droppable{background-position:top left}.left-nav .demos-nav{padding-right:10px}#demo-link{font-size:11px;padding-top:6px;clear:both}#demo-link a span.ui-icon{float:left;margin-right:3px}#widget-docs .ui-widget,#widget-docs .ui-widget button,#widget-docs .ui-widget input,#widget-docs .ui-widget select,#widget-docs .ui-widget textarea{font-family:Trebuchet MS,Verdana,Arial,sans-serif;font-size:1em}#widget-docs .ui-widget-header{border:1px solid #fff;background:url(images/464646_40x100_textures_01_flat_100.png) 50% 50% repeat-x #464646;color:#fff;font-weight:700}#widget-docs .ui-widget-header a{color:#fff}#widget-docs .ui-widget-content{border:1px solid #fff;background:url(images/ffffff_40x100_textures_01_flat_75.png) 50% 50% repeat-x #fff;color:#222}#widget-docs .ui-widget-content a{color:#222}#widget-docs .ui-state-default,#widget-docs .ui-widget-content #widget-docs .ui-state-default{border:1px solid #666;background:url(images/555555_40x100_textures_03_highlight_soft_75.png) 50% 50% repeat-x #555;font-weight:400;color:#fff;outline:0}#widget-docs .ui-state-default a{color:#fff;text-decoration:none;outline:0}#widget-docs .ui-state-focus,#widget-docs .ui-state-hover,#widget-docs .ui-widget-content #widget-docs .ui-state-focus,#widget-docs .ui-widget-content #widget-docs .ui-state-hover{border:1px solid #666;background:url(images/444444_40x100_textures_03_highlight_soft_60.png) 50% 50% repeat-x #444;font-weight:400;color:#fff;outline:0}#widget-docs .ui-state-hover a{color:#fff;text-decoration:none;outline:0}#widget-docs .ui-state-active,#widget-docs .ui-widget-content #widget-docs .ui-state-active{border:1px solid #666;background:url(images/ffffff_40x100_textures_01_flat_65.png) 50% 50% repeat-x #fff;font-weight:400;color:#F6921E;outline:0}#widget-docs .ui-state-active a{color:#F6921E;outline:0;text-decoration:none}#widget-docs .ui-state-highlight,#widget-docs .ui-widget-content #widget-docs .ui-state-highlight{border:1px solid #fcefa1;background:url(images/fbf9ee_40x100_textures_02_glass_55.png) 50% 50% repeat-x #fbf9ee;color:#363636}#widget-docs .ui-state-error,#widget-docs .ui-widget-content #widget-docs .ui-state-error{border:1px solid #cd0a0a;background:url(images/fef1ec_40x100_textures_05_inset_soft_95.png) 50% bottom repeat-x #fef1ec;color:#cd0a0a}#widget-docs .ui-corner-right,#widget-docs .ui-corner-top,#widget-docs .ui-corner-tr{-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px}#widget-docs .ui-corner-bottom,#widget-docs .ui-corner-br,#widget-docs .ui-corner-right{-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px}#widget-docs .ui-corner-left,#widget-docs .ui-corner-tl,#widget-docs .ui-corner-top{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px}#widget-docs .ui-corner-bl,#widget-docs .ui-corner-bottom,#widget-docs .ui-corner-left{-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px}#widget-docs .ui-state-error-text,#widget-docs .ui-widget-content #widget-docs .ui-state-error-text{color:#cd0a0a}#widget-docs .ui-state-disabled,#widget-docs .ui-widget-content #widget-docs .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}#widget-docs .ui-priority-primary,#widget-docs .ui-widget-content #widget-docs .ui-priority-primary{font-weight:700}#widget-docs .ui-priority-secondary,#widget-docs .ui-widget-content #widget-docs .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}#email-window .email-contents .email-body .message-header .subject dd,#email-window .email-contents .email-list .unread{font-weight:700}#demo-frame-wrapper .ui-icon,#widget-docs .ui-icon{width:16px;height:16px;background-image:url(images/222222_256x240_icons_icons.png)}#widget-docs .ui-widget-content .ui-icon,#widget-docs .ui-widget-header .ui-icon{background-image:url(images/222222_256x240_icons_icons.png)}#widget-docs .ui-state-default .ui-icon{background-image:url(images/888888_256x240_icons_icons.png)}#widget-docs .ui-state-active .ui-icon,#widget-docs .ui-state-focus .ui-icon,#widget-docs .ui-state-hover .ui-icon{background-image:url(images/454545_256x240_icons_icons.png)}#widget-docs .ui-state-highlight .ui-icon{background-image:url(images/2e83ff_256x240_icons_icons.png)}#widget-docs .ui-state-error .ui-icon,#widget-docs .ui-state-error-text .ui-icon{background-image:url(images/cd0a0a_256x240_icons_icons.png)}#widget-docs .ui-widget-overlay,#widget-docs .ui-widget-shadow{background:url(images/aaaaaa_40x100_textures_01_flat_0.png) 50% 50% repeat-x #aaa;opacity:.3;filter:Alpha(Opacity=30)}#widget-docs .ui-corner-all{-moz-border-radius:4px;-webkit-border-radius:4px}#widget-docs .ui-widget-shadow{margin:-8px 0 0 -8px;padding:8px;-moz-border-radius:8px;-webkit-border-radius:8px}#widget-docs{margin:20px 0 0;border:none}#widget-docs code,#widget-docs h2,#widget-docs h3,#widget-docs h4,#widget-docs p,#widget-docs ul{margin:0;padding:0}#widget-docs code{display:block;color:#444;font-size:.9em;margin:0 0 1em}#widget-docs code strong{color:#000}#widget-docs p{margin:0 3em 1.2em 0}#widget-docs p.intro{font-size:13px;color:#666;line-height:1.3}#widget-docs ul{list-style-type:none}#widget-docs h2{font-size:16px;margin:1.2em 0 .5em}#widget-docs h3{font-size:14px;color:#e6820E;margin:1.5em 0 .5em}.normal #widget-docs h4{font-size:12px;color:#000;border:0;margin:0 0 .5em}#docs-overview-main{width:400px}#docs-overview-sidebar{float:right;width:200px}#docs-overview-sidebar a span{color:#666}#widget-docs #docs-overview-main p{margin-right:0}#widget-docs #docs-overview-sidebar h4{padding-left:0}.docs-list-header{float:left;width:100%;margin:10px 0 0;border-bottom:1px solid #eee}#widget-docs .docs-list-header h2{float:left;margin:0}#widget-docs .docs-list-header p{float:right;margin:5px 0;font-size:11px}.docs-list{float:left;width:100%;padding:0 0 10px}.docs-list .param-header{float:left;clear:left;width:100%;padding:8px 0;border-top:1px solid #eee}#widget-docs .param-header h3,#widget-docs .param-header p{margin:0;float:left}#widget-docs .param-header h3{width:50%}#widget-docs .param-header h3 span{background:url(images/demo-spindown-closed.gif) left no-repeat;padding-left:13px}#widget-docs .param-open .param-header h3 span{background:url(images/demo-spindown-open.gif) left no-repeat}#widget-docs .param-header p{width:24%}#widget-docs .param-header p.param-type span{background:url(images/icon-docs-info.gif) left no-repeat;cursor:pointer;border-bottom:1px dashed #ccc;padding-left:15px}.param-details{padding-left:13px}.param-args{margin:0 0 1.5em;border-top:1px dotted #ccc}.param-args td{padding:3px 30px 3px 5px;border-bottom:1px dotted #ccc}#widget-docs ul.ui-tabs-nav{padding:0 0 0 8px}#widget-docs .ui-tabs-nav li{margin:5px 5px 0 0}#widget-docs .ui-tabs-nav li a:active,#widget-docs .ui-tabs-nav li a:hover,#widget-docs .ui-tabs-nav li a:link,#widget-docs .ui-tabs-nav li a:visited{font-size:14px;padding:4px 1.2em 3px;color:#fff}#widget-docs .ui-tabs-nav li.ui-tabs-selected a:active,#widget-docs .ui-tabs-nav li.ui-tabs-selected a:hover,#widget-docs .ui-tabs-nav li.ui-tabs-selected a:link,#widget-docs .ui-tabs-nav li.ui-tabs-selected a:visited{color:#e6820E}#widget-docs .ui-tabs-panel{padding:20px 9px;font-size:12px;line-height:1.4;color:#000}#widget-docs .ui-widget-content a:link,#widget-docs .ui-widget-content a:visited{color:#1b75bb;text-decoration:none}#widget-docs .ui-widget-content a:active,#widget-docs .ui-widget-content a:hover{color:#0b559b}.buttons div{box-sizing:border-box}.email-window{height:600px;left:640px;top:240px;width:900px;display:none}#email-window .email-get-mail,#email-window .email-write{height:auto;display:inline-block;overflow:hidden;font-size:15px}#email-window .email-get-mail{background:url(../img/email/icons/get-mail.png) 5px 10px no-repeat;min-width:77px;margin-left:10px;border:1px solid transparent;padding:10px 10px 10px 31px}#email-window .email-get-mail:hover{background-image:url(../img/email/icons/get-mail.png),linear-gradient(180deg,#F0F0F0 40%,#D1CFCF 80%);border:1px solid #656869;border-radius:5px;box-shadow:0 0 10px -5px #ADAAAA}#email-window .email-write{background-image:url(../img/email/icons/write.png);background-repeat:no-repeat;background-position:5px 10px;border:1px solid transparent;padding:9px 10px 10px 31px}#email-window .buttons div:hover{cursor:pointer}#email-window .buttons .email-write:hover{background-image:url(../img/email/icons/write.png),linear-gradient(180deg,#F0F0F0 40%,#D1CFCF 80%);border:1px solid #656869;border-radius:5px;box-shadow:0 0 10px -5px #ADAAAA}#email-window .email-address-book{height:35px;width:132px;overflow:hidden;background:url(../img/email/address-book.jpg) no-repeat}#email-window .email-divider,#email-write .email-divider{height:35px;width:16px;overflow:hidden;background:url(../img/email/divider.png) 8px 7px no-repeat}#email-window .email-tag{height:35px;width:76px;overflow:hidden;background:url(../img/email/tag.jpg) no-repeat}#email-window .buttons{width:100%;height:42px;margin-top:6px;background-color:#F2F1F0}#email-window .buttons div,#email-write .buttons div{float:left}#email-window .buttons .email-search input{width:350px;background:url(../img/firefox/search_icon.jpg) center right no-repeat #fff}#email-window .buttons .email-search{float:right;margin-right:10px}#email-window .bottom-buttons{margin:5px}#email-window .email-content{border-top:1px solid #b8b4b0}#email-window .folder-list{float:left}#email-window .list{height:470px;background-color:#fff;border:1px solid #c4c1bd;width:180px;margin-right:4px}#email-window .bottom-buttons{height:17px}#email-window .email-contents{float:left;border-top:0;width:710px}#email-window .email-contents .email-categories{width:100%;height:26px;background:url(../img/email/header-bg.jpg) repeat-x;border-bottom:1px solid #c4c1bd;border-left:1px solid #c4c1bd}#email-window .email-contents .email-categories .subject{width:38%}.email-categories .date,.email-categories .from{width:15%}#email-window .email-contents .email-categories div{float:left;min-width:25px;border-right:1px solid #c4c1bd;height:22px;padding:2px 5px}#email-window .email-contents .email-list{background:#fff;border:1px solid #c4c1bd;border-top:0;width:100%;height:175px;overflow:scroll;overflow-x:hidden}#email-window .email-contents .email-list div{width:100%;height:25px;vertical-align:middle}#email-window .folder-list .list div{padding:1px 10px;height:20px;border:1px dotted transparent}.email-list div.grey{background-color:#eee}.email-list div.replied ul li.message-subject{background:url(../img/email/reply-logo.png) 2px center no-repeat}.email-list div.forwarded ul li.message-subject{background:url(../img/email/forward-logo.png) 2px center no-repeat}.email-list div.repliedforwarded ul li.message-subject{background:url(../img/email/forward-reply-logo.png) 2px center no-repeat}.email-list div.selected{background:#f07746;color:#fff}#email-window .folder-list .list div img{vertical-align:middle}#email-window .folder-list .list .selected{background:#f07746;border:1px dashed #f3d982;color:#fff}#email-window .email-contents .email-list ul{padding:0;margin:0}#email-window .email-contents .email-list li{float:left;margin-right:1px;height:16px;min-width:24px;padding:2px 5px;overflow:hidden}#email-window .email-contents .email-list li.message-t{min-width:25px}#email-window .email-contents .email-list li.message-subject{padding-left:20px;width:37%}.email-list li.message-date,.email-list li.message-from{width:15%}.email-list li.message-glasses{background:url(../img/email/message-glasses.png) center 0 no-repeat}.email-list li.message-star{background:url(../img/email/message-starred.png) center 0 no-repeat}.email-list .attachment li.message-clip{background:url(../img/email/clip.png) center 0 no-repeat}.email-list .fire li.message-fire{background:url(../img/email/fire.png) center 0 no-repeat}.email-list .starred li.message-star,.email-list .unread li.message-glasses{background-position:center -20px}#email-window .email-contents .email-body{background:#fff;border:1px solid #c4c1bd;width:100%;margin-top:5px;height:288px}#email-window .email-contents .email-body div{display:none}#email-window .email-contents .message-body{padding:10px;overflow:scroll;overflow-x:hidden;height:169px}#email-window .email-contents .email-body .message-header{background:#F2F1F0;border-bottom:1px solid #c4c1bd}#email-window .email-contents .email-body .message-header dl{margin:0 0 5px;padding:0}#email-window .email-contents .email-body .message-header dt{display:inline-block;width:50px;text-align:right;margin-right:10px;color:#999}#email-window .email-contents .email-body .message-header dl dd{display:inline;padding:2px 5px;color:#4c4c4c}#email-window .email-contents .email-body .message-header .cc dd:hover,#email-window .email-contents .email-body .message-header .from dd:hover,#email-window .email-contents .email-body .message-header .to dd:hover{background:#F07746;color:#fff}#email-window .email-contents .email-body .message-header .email-buttons{float:right;margin-bottom:5px}#email-window .email-contents .email-body .message-header .email-buttons div span{height:24px;float:left;padding-left:26px;font-size:15px;padding-top:5px;padding-right:10px;margin:4px 10px 0 0;position:relative;display:inline-block;background:linear-gradient(180deg,#F0F0F0 40%,#D1CFCF 80%);border:1px solid #A9A9A9;border-radius:5px;box-shadow:0 0 10px -5px #ADAAAA}#email-window .email-contents .email-body .message-header .email-buttons span:hover{cursor:pointer}#email-window .email-contents .email-body .message-header .email-buttons span:before{position:absolute;top:6px;left:8px}#email-window .email-contents .email-body .message-header .email-buttons .message-reply:before{content:url(../img/email/icons/reply.png)}#email-window .email-contents .email-body .message-header .email-buttons .message-forward:before{content:url(../img/email/icons/forward.png)}#email-window .email-contents .email-body .message-header .email-buttons .message-archive:before{content:url(../img/email/icons/archive.png)}#email-window .email-contents .email-body .message-header .email-buttons .message-junk:before{content:url(../img/email/icons/junk.png)}#email-window .email-contents .email-body .message-header .email-buttons .message-delete:before{content:url(../img/email/icons/delete.png)}#email-window .email-contents .email-body .message-header .date{margin:30px 10px 0;float:right}#email-window .email-contents .junk-mail-banner{height:34px;width:100%;background-color:#000;color:#fff;padding-top:5px}#email-window .email-contents .junk-mail-banner img{vertical-align:bottom;margin-left:10px}#email-window .email-contents .junk-mail-banner .not-junk{float:right;background:url(../img/email/not-junk.jpg) no-repeat;width:76px;height:23px;overflow:hidden;margin-right:10px;color:#4C4C4C;padding:6px 0 0 16px}#email-window .email-contents .junk-mail-banner .not-junk:hover{background-position:0 -29px}#email-window .emails-info{background:url(../img/email/connection.jpg) 5px center no-repeat;width:100%;height:27px}#email-window .emails-info div{float:right;margin:4px 20px 0 0}#email-window .emails-info div #details-unread{margin-right:20px}#email-window.fullsize .buttons{margin-top:0}#email-write{background:url(../img/folder/top-bg.jpg) repeat-x #F2F1F0;border-radius:4px 4px 0 0;box-shadow:0 0 10px #000;color:#666;font-size:14px;height:610px;left:140px;position:absolute;top:40px;width:900px;display:none}#email-write .buttons{margin-top:-40px;background:#3C3B37;width:100%;height:42px;margin-bottom:10px;padding-top:10px}#email-write #write-attach,#email-write #write-send{margin-left:10px;display:inline-block;color:#DFDBD2;overflow:hidden;background-repeat:no-repeat;background-position:10px;width:auto;padding:7px 10px 10px 30px;border-radius:5px;cursor:pointer;box-sizing:border-box;position:relative}#email-write #write-send:before{content:url(../img/email/icons/write-send-light.png);position:absolute;top:5px;left:5px}#email-write #write-attach:hover,#email-write #write-send:hover{color:#333;background:linear-gradient(180deg,#F0F0F0 40%,#D1CFCF 80%)}#email-write #write-send:hover:before{content:url(../img/email/icons/write-send-dark.png)}#email-write #write-attach:before{content:url(../img/email/icons/attach-light.png);position:absolute;top:5px;left:5px}#email-write #write-attach:hover:before{content:url(../img/email/icons/attach-dark.png)}#write-from,#write-subject,#write-to{padding-left:5px;margin-bottom:10px}#write-from div,#write-subject div,#write-to div{float:left;width:60px;color:#333;padding-top:5px}#write-from input,#write-subject input,#write-to input{width:90%}#write-body textarea{width:894px;height:350px;box-sizing:border-box;padding:0 20px}#email-write input{height:20px;background-color:#fff;border:1px solid #ada9a5;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;padding:2px}#email-write .loading-bar{background:#e5e3e1;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;height:14px;width:96px;float:right;margin:7px 20px 0 0;border-top:1px solid #bab6b2;border-bottom:1px solid #fefefe}#email-write .loading-bar .progress{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;height:14px;width:0;background:#dd4814}#email-write .control{margin-left:0;padding-bottom:43px;padding-left:10px}.error-window{left:0;width:600px;top:0;display:none;position:absolute}.error-window .error-container{padding:63px 20px 20px;background:url(../img/error/background-download.png) 0 -20px no-repeat #efedec;color:#4c4c4c}.error-window .control .close{background:url(../img/error/close-button.png) no-repeat}.error-window h1{color:#fff;font-size:24px;font-weight:400;max-width:380px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.error-window h2{padding:10px 0;font-size:16px;font-weight:400;width:320px;margin-top:50px}.error-window .download{padding:10px 20px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;display:block;float:right;margin-top:50px;font-size:14px;text-decoration:none;border:1px solid #c0b7b0;cursor:pointer;background:url(../img/welcome/background-link-download.png) center center repeat-x;color:#fff}#firefox-window .buttons .firefox-search input.fade-text,#firefox-window .buttons .firefox-url input.fade-text{color:#666;font-style:italic}.error-window .download:active{position:relative;top:1px}#firefox-window{width:900px;height:600px;top:100px;left:400px;display:none}#firefox-window .buttons{width:100%;height:42px;margin-top:6px}#firefox-window .bottom-buttons div,#firefox-window .buttons div{float:left}#firefox-window .buttons .firefox-back{height:36px;width:35px;overflow:hidden;background:url(../img/firefox/backward-button.jpg) no-repeat}#firefox-window .buttons .firefox-back:hover{background-position:0 -36px}#firefox-window .buttons .firefox-forward{height:36px;width:35px;overflow:hidden;background:url(../img/firefox/forward-button.jpg) no-repeat}#firefox-window .buttons .firefox-forward:hover{background-position:0 -36px}#firefox-window .buttons .disabled{background-position:0 -72px!important}#firefox-window .buttons input{margin-top:5px;height:20px;background-color:#fff;border:1px solid #ada9a5;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;padding:2px}#firefox-window .buttons .firefox-url input{width:420px;margin-right:10px;margin-left:10px}#firefox-window .buttons .firefox-search input{width:200px;background:url(../img/firefox/search_icon.jpg) center right no-repeat #fff}#firefox-window .buttons .inactive{background-position:0 -72px!important}#firefox-window .firefox-internet .theIframe{width:100%;position:absolute;left:0;top:73px;z-index:7}#firefox-window .firefox-internet .theIframe iframe{border:0}#firefox-window .firefox-internet .web-overlay-tran{z-index:8;width:100%;height:200px;position:absolute;left:0;top:73px}#firefox-window.blurred .firefox-internet .theIframe{display:none}#firefoxInternet{width:100%;height:100%}#folder-window .buttons{width:85px;height:36px;margin:1px;float:left}#folder-window .bottom-buttons{background:url(../img/folder/image-nautilus-background.png) repeat-x;height:37px;width:100%;border-bottom:1px solid #d7d4d2}#folder-window .bottom-buttons div,#folder-window .buttons div{float:left}.folder.window .bottom-buttons div{color:#807d78;height:21px;border:1px solid #353431;margin:0;padding:5px;overflow:hidden;line-height:24px;background:url(../img/folder/image-nautilus-breadcrumb.png) repeat-x}.folder.window.selected-window .bottom-buttons div{color:#DFDBD2}#folder-window .bottom-buttons div:first-of-type{-webkit-border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-topleft:4px;-moz-border-radius-bottomleft:4px;border-top-left-radius:4px;border-bottom-left-radius:4px}#folder-window .bottom-buttons div:last-of-type{-webkit-border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-bottomright:4px;border-top-right-radius:4px;border-bottom-right-radius:4px}#folder-window .bottom-buttons div.selected{font-weight:700;background:url(../img/folder/image-nautilus-breadcrumb-selected.png)}#folder-window .bottom-buttons div img{vertical-align:top;margin-top:4px;margin-right:3px}.folder.window .bottom-buttons div .home{display:block;float:left;width:16px;height:16px;padding:0;margin:4px 4px 0 0;background:url(../img/folder/icon-nautilus-mono-home.png) center 48px}.folder.window.selected-window .bottom-buttons div .home{background-position:center 32px}#folder-window .bottom-buttons span{color:#fff}.folder .folder-list{float:left;border-right:1px solid #dad8d5}.folder .list{height:418px;min-width:144px;display:inline-block}.folder .list p{font-weight:700;margin:10px 0 0 20px}.folder .list ul{list-style:none;padding:0;margin-top:5px}.folder .list ul li{padding-left:45px;vertical-align:middle;height:23px;padding-top:4px;padding-right:10px}.folder .list ul li.home{background:url(../img/folder/home-icon.png) 20px 5px no-repeat}.folder .list ul li.desktop{background:url(../img/folder/desktop-icon.png) 20px 5px no-repeat}.folder .list ul li.documents{background:url(../img/folder/documents-icon.png) 20px 5px no-repeat}.folder .list ul li.downloads{background:url(../img/folder/downloads-icon.png) 20px 5px no-repeat}.folder .list ul li.music{background:url(../img/folder/music-icon.png) 20px 5px no-repeat}.folder .list ul li.pictures{background:url(../img/folder/pictures-icon.png) 20px 5px no-repeat}.folder .list ul li.videos{background:url(../img/folder/videos-icon.png) 20px 5px no-repeat}.folder .list ul li.rubbish{background:url(../img/folder/rubbish-icon.png) 20px 5px no-repeat}.folder .list ul li.selected{color:#fff;background-color:#ed7543;background-position:20px -16px}.folder .folder-contents{float:left}.folder .contents{background-color:#f1f0ef;height:432px;overflow:auto;width:100%;border-left:1px solid #f2f1f0}.folder .selected-details{min-width:25px;height:19px;float:right;background:#fcfcbd;margin-top:-21px;border:1px solid #dbdb5a;padding:0 4px;display:none}.folder .file-details{float:left;height:20px}#folder-window .buttons .folder-back{width:34px;height:34px;overflow:hidden;background:url(../img/folder/image-nautilus-back.png) 0 -33px no-repeat}#folder-window .buttons .folder-forward{width:34px;height:34px;overflow:hidden;background:url(../img/folder/image-nautilus-forward.png) 0 -33px no-repeat}#folder-window .buttons .disabled{background-position:0 0!important}#folder-window .buttons .folder-icon-view{margin:5px 0 0 5px}#folder-window.window{background-color:#e7e5e4}.folder .folder-contents .contents .file.display-icon p{width:53px;overflow:hidden;margin:0 auto;padding:2px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}.folder .buttons .folder-search{width:36px;height:38px;overflow:hidden;background:url(../img/folder/search.jpg) no-repeat}.folder .buttons .folder-search:hover{background-position:0 -38px}.folder .folder-contents .contents .display-icon{width:25%;height:80px;float:left;text-align:center;margin:10px;line-height:12px}.file-folder.display-icon p{background:url(../img/folder/icon-nautilus-folder-generic.png) no-repeat;height:38px;width:47px;overflow:hidden;margin:0 auto}.file-folder.display-icon.icon-documents p{background-image:url(../img/folder/icon-nautilus-folder-document.png)}.file-folder.display-icon.icon-downloads p{background-image:url(../img/folder/icon-nautilus-folder-downloads.png)}.file-folder.display-icon.icon-music p{background-image:url(../img/folder/icon-nautilus-folder-music.png)}.file-folder.display-icon.icon-videos p{background-image:url(../img/folder/icon-nautilus-folder-videos.png)}.file-folder.display-icon.icon-pictures p{background-image:url(../img/folder/icon-nautilus-folder-pictures.png)}.file-folder.display-icon.icon-desktop p{background-image:url(../img/folder/icon-nautilus-folder-desktop.png)}.display-compact{float:none;height:28px;margin-top:5px;width:150px}.display-compact p{height:22px;width:24px;overflow:hidden;float:left;margin:0 5px}.file-folder.display-compact p{background:url(../img/folder/folder-icon-list.png) no-repeat}.file.display-compact p{background:url(../img/folder/file-icon-list.png) no-repeat}.folder .folder-contents .contents .file p.border{border:1px solid #bbbeb7}.folder .folder-contents .contents div h1{color:transparent;display:none}.folder .folder-contents .contents .display-icon span{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;line-height:22px}.folder .folder-contents .contents .display-icon.orange-overlay{background:url(../img/folder/orange-overlay.png);display:block;position:absolute;height:20px;width:37px;top:0;left:0}.contents .display-icon.over p{background-position:0 -40px}.display-icon.selected p{background-position:0 -80px!important}.contents .display-compact.over p{background-position:0 -38px}.display-compact.selected p{background-position:0 -44px!important}.selected span{padding:2px 4px;background-color:#f08357;color:#fff}.folder-flex-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.folder-contents{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.window{border-radius:4px;behavior:url(pie/PIE.htc)}#tooltip{background:url(../img/black-bg-40.png);behavior:url(pie/PIE.htc);box-shadow:none}#tooltip .arrow-right{margin-left:-15px}#shotwell .container .images div,#welcome-screen,.dropShadow{behavior:url(pie/PIE.htc)}#libreoffice-calc-window{left:431px;top:88px;display:none}#libreoffice-calc-window .content{background:url(../img/librecalc.jpg) no-repeat;width:795px;height:534px}#libreoffice-calc-window .control .close:hover{background-position:0 -19px}#libreoffice-writer-window{left:431px;top:88px;display:none}#libreoffice-writer-window .content{background:url(../img/librewriter.jpg) no-repeat;width:793px;height:532px}#libreoffice-calc-window .control .max:hover,#libreoffice-calc-window .control .min:hover,#libreoffice-impress-window .control .max:hover,#libreoffice-impress-window .control .min:hover,#libreoffice-writer-window .control .max:hover,#libreoffice-writer-window .control .min:hover{background-position:0 0!important}#libreoffice-calc-window .content span,#libreoffice-impress-window .content span,#libreoffice-writer-window .content span{color:#B3B4A6;font-size:15px;margin-right:13px;position:relative;top:5px;left:10px}#libreoffice-impress-window{left:431px;top:88px;display:none}#libreoffice-impress-window .content{background:url(../img/libreimpress.jpg) no-repeat;width:793px;height:527px}#libreoffice-impress-window .control .close:hover{background-position:0 -19px}#loader{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1001;background-color:#210819}#loader #dot-container{position:absolute;background:url(../img/loader/ubuntu-loader.gif) no-repeat;width:300px;height:169px;top:40%;left:40%}#loader .dot{background-color:#FFF;width:5px;height:5px;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-moz-box-shadow:0 0 1px 1px #FFF;-webkit-box-shadow:0 0 1px 1px #FFF;box-shadow:0 0 1px 1px #FFF;float:left;margin-left:20px;margin-top:55px}#loader .dot.active{background-color:#dd4814;-moz-box-shadow:0 0 1px 1px #dd4814;-webkit-box-shadow:0 0 1px 1px #dd4814;box-shadow:0 0 1px 1px #dd4814}#loader noscript p{margin-top:-170px;margin-left:-30px;border:1px solid #fff;width:340px;padding:20px}#movieplayer{width:700px;left:317px;top:57px;font-size:15px;display:none}#movieplayer .container{background-color:#000;height:100%}#movieplayer .container .video{background:url(../img/movieplayer/splash.jpg) center center no-repeat #000;width:100%;height:494px}#movieplayer .container .tools{height:80px;width:100%}#movieplayer .container .tools .controlbuttons{margin:5px 10px}#movieplayer .container .tools .controlbuttons .right{float:right}#movieplayer .container .tools .controlbuttons .left{float:left}#movieplayer .container .tools .controlbuttons .left div{height:36px;width:36px;overflow:hidden;float:left}#movieplayer .container .tools .controlbuttons .left .rewind{background:url(../img/movieplayer/rewind.jpg) no-repeat}#movieplayer .container .tools .controlbuttons .left .play{background:url(../img/movieplayer/play.jpg) no-repeat}#movieplayer .container .tools .controlbuttons .left .forward{background:url(../img/movieplayer/forward.jpg) no-repeat}#movieplayer .container .tools .controlbuttons .left .fullscreen{background:url(../img/movieplayer/fullscreen.jpg) no-repeat}#movieplayer .container .tools .controlbuttons .right .volume{height:36px;width:36px;overflow:hidden;background:url(../img/movieplayer/volume.jpg) no-repeat;float:right}#movieplayer .container .tools .controlbuttons .active:hover{background-position:0 -36px}#movieplayer .container .tools .time{height:20px;margin:10px}#movieplayer.fullsize .control{margin-top:0}#movieplayer .container .tools .time p{float:left;margin:9px 0}#movieplayer .container .tools .time .timeslider{float:left}#movieplayer .container .tools .time .slider{width:438px;float:left;margin-top:15px}#movieplayer .container .tools .time .slider-active{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;background:#dd4814;height:3px;margin-left:15px;margin-top:17px;position:relative;width:53px;z-index:1}#movieplayer .container .tools .time .slider .ui-slider-handle{z-index:2}.notification{position:absolute;width:350px;height:72px;background:#383336;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-moz-box-shadow:0 0 5px #000;-webkit-box-shadow:0 0 5px #000;box-shadow:0 0 5px #000;overflow:hidden;top:100px;right:5px;display:none;z-index:10}.notification img{float:left;margin:15px 15px 10px 10px}.notification p{margin:0}.notification .title{font-weight:700;margin-top:10px;font-size:14px}.notification .description{font-size:13px}#shotwell{width:800px;height:550px;top:200px;left:600px;font-size:15px;display:none}#shotwell .sidebar{float:left;width:215px;margin-right:10px}#shotwell .details,#shotwell .nav{border:1px solid #bdbab7;width:100%}#shotwell .nav{height:379px;padding:1px;margin-bottom:6px}#shotwell .nav ul{list-style:none;padding:5px 0 5px 10px;margin:0;background:#dfdddb}#shotwell .nav .library{background:url(../img/shotwell/library-icon.png) 0 2px no-repeat;padding-left:20px}#shotwell .nav ul.selected{background:#F07746;color:#fff}#shotwell .details{height:93px;font-weight:700;padding:35px 1px 1px}#shotwell .details div{margin-bottom:5px}#shotwell .details span{font-weight:400}#shotwell .container{float:left;width:572px;border-left:1px solid #bdbab7;padding:1px}#shotwell .container .images{background:#434343;width:100%;height:478px;overflow:auto}#shotwell .container .singleImage{overflow:hidden;background:#000}#shotwell .container .images div{text-align:center;display:inline-block;vertical-align:top;width:185px}#shotwell .container .images div.large{width:100%}#shotwell .container .images div.large img{width:90%;border:0;opacity:1;margin-top:20px}#shotwell .container .images img{width:158px;border:1px solid #aaa;opacity:.8;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;margin:6px}#shotwell .container .images img.selected{border:3px solid #2df;margin:4px}#shotwell .container .images img:hover{opacity:1}#shotwell .container .tools{height:40px;width:100%}#shotwell .container .tools .slider-container{width:250px;float:right;height:20px}#shotwell .container .tools .slider-container .small-icon{width:14px;height:25px;background:url(../img/shotwell/slider-small.jpg) 0 10px no-repeat;float:left}#shotwell .container .tools .slider-container .slider{width:195px;height:40px;float:left;margin-top:15px}#shotwell .container .tools .slider-container .ui-slider{background:url(../img/background-slider.png) no-repeat}#shotwell .container .tools .slider-container .slider-active{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;background:#dd4814;height:3px;margin-left:15px;margin-top:17px;position:relative;width:53px;z-index:1}#shotwell .container .tools .slider-container .slider .ui-slider-handle{z-index:2}#shotwell .container .tools .slider-container .large-icon{width:14px;height:40px;margin-left:211px;margin-top:-54px;background:url(../img/shotwell/slider-large.jpg) 0 10px no-repeat;float:left}#shotwell .container .tools .jump-image{float:right;margin:2px 5px}#shotwell .container .tools .jump-image .prev{height:36px;width:35px;overflow:hidden;background:url(../img/firefox/backward-button.jpg) no-repeat;float:right}#shotwell .container .tools .jump-image .prev:hover{background-position:0 -36px}#shotwell .container .tools .jump-image .next{height:36px;width:35px;overflow:hidden;background:url(../img/firefox/forward-button.jpg) no-repeat;float:right}#shotwell .container .tools .jump-image .next:hover{background-position:0 -36px}#shotwell .container .tools .jump-image .disabled{background-position:0 -72px!important}#shutdown-window{width:349px;min-height:155px;top:100px;left:400px;display:none}#shutdown-window .control .close{background:url(../img/error/close-button.png) no-repeat}#shutdown-window .control .close:hover{background-position:0 -19px}#shutdown-window .content img{float:left;margin:20px 20px 0 10px}#shutdown-window .content .message p{margin-top:20px;font-size:15px}#shutdown-window .content .message{float:left;width:275px;height:100%}#shutdown-window .content .shutdown-buttons{margin-right:7px;clear:both}#shutdown-window .content .shutdown-buttons div{text-align:center;float:right;width:85px;height:23px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:1px solid #a6a6a6;margin-right:8px;padding-top:4px;margin-top:20px;background:url(../img/error/button-fade.png) repeat-x #dfdfdf}#shutdown-window .content .shutdown-buttons div:hover{background-position:0 -29px}#shutdown-window .content .shutdown-buttons div.highlight{background-color:#f8ab8b;text-shadow:0 1px #fff}#shutdown-window .content .shutdown-buttons div.highlight:hover{text-shadow:none;background-position:0 0}#software-centre{width:800px;height:555px;top:200px;left:600px;display:none}#software-centre .top-panel{width:100%;height:65px;background:url(../img/software-centre/top-bg.jpg) repeat-x;color:#DFDBD2;text-align:center}#software-centre .top-panel div{float:left}#software-centre .top-panel .back{width:37px;margin-top:15px;margin-left:20px;height:32px;background:url(../img/software-centre/back.jpg) center center no-repeat}#software-centre .top-panel .forward{width:37px;height:32px;margin-top:15px;background:url(../img/software-centre/forward.jpg) no-repeat}#software-centre .top-panel .back:hover,#software-centre .top-panel .forward:hover{background-position:0 -32px}#software-centre .top-panel .disabled{background-position:0 -64px!important}#software-centre .top-panel img{display:block;margin:0 auto}#software-centre .container{height:460px;overflow-y:auto;overflow-x:hidden}#software-centre .top-panel .all-software{padding-top:10px;min-width:98px;height:64px;margin-left:15px;border-right:1px solid #373631;box-sizing:border-box;padding-right:8px;padding-left:8px}#software-centre .top-panel .history,#software-centre .top-panel .installed{padding-top:10px;width:98px;height:54px;color:#666;margin-right:10px}#software-centre .top-panel .installed{border-right:1px solid #373631}#software-centre .top-panel .selected{background:url(../img/software-centre/top-bg-selected.jpg) repeat-x}#software-centre .header-image{width:100%;background:url(../img/software-centre/header.jpg) no-repeat #FFF;height:188px;-moz-box-shadow:0 1px 2px #888;-webkit-box-shadow:0 1px 2px #888;box-shadow:0 1px 2px #888}#software-centre .header-image span{display:block;position:relative;left:241px;top:63px;color:#dd4814;font-size:28px}#software-centre .header-image .header-title{font-size:48px;font-weight:700;margin-bottom:7px;display:inline-block;max-width:500px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#software-centre .navigation,#software-centre .whats-new{-moz-border-radius:10px;-webkit-border-radius:10px;font-size:12px;float:left}#software-centre .header-image .header-subtitle{max-width:500px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#software-centre .navigation{width:144px;background:#fff;border-radius:10px;border:1px solid #a9a5a7;margin-left:15px;margin-top:10px;height:348px;margin-bottom:10px;-moz-box-shadow:0 2px 3px #888;-webkit-box-shadow:0 2px 3px #888;box-shadow:0 2px 3px #888}#software-centre .navigation ul{padding-left:10px;margin-top:5px;list-style:none}#software-centre .navigation ul li{margin-bottom:10px;color:#999}#software-centre .whats-new{width:602px;border-radius:10px;border:1px solid #a9a5a7;padding-bottom:5px;margin:10px 0 0 10px;-moz-box-shadow:0 2px 3px #888;-webkit-box-shadow:0 2px 3px #888;box-shadow:0 2px 3px #888}#software-centre .whats-new h2{width:100%;padding:5px 0 0 5px;height:26px;-moz-border-radius:10px;-webkit-border-radius:10px;border-radius:10px;font-size:14px;overflow:hidden;margin:0}#software-centre .whats-new .app-container div{float:left;height:65px;border-top:1px solid #e7e4e6;border-left:1px solid #e7e4e6;padding-left:80px;width:119px}#software-centre .whats-new .app-container div:active{position:relative;top:1px;left:1px}#software-centre .whats-new .app-container div h3{margin:3px 0 0;white-space:nowrap;overflow:hidden}#software-centre .whats-new .app-container div p{margin-top:5px;margin-bottom:5px}#software-centre .whats-new .app-container div p.cost{color:#999}#software-centre .whats-new .app-container .chromium{background:url(../img/software-centre/logo-chromium.png) 10px 8px no-repeat #fff}#software-centre .whats-new .app-container .beep{background:url(../img/software-centre/logo-beep.png) 10px 8px no-repeat #fff}#software-centre .whats-new .app-container .inkscape{background:url(../img/software-centre/logo-inkscape.png) 10px 8px no-repeat #fff}#software-centre .whats-new .app-container .worldofgoo{background:url(../img/software-centre/logo-world-of-goo.png) 10px 8px no-repeat #fff}#software-centre .whats-new .app-container .blender{background:url(../img/software-centre/logo-blender.png) 10px 8px no-repeat #fff}#software-centre .whats-new .app-container .braid{background:url(../img/software-centre/logo-braid.png) 10px 8px no-repeat #fff}#software-centre .whats-new .app-container .visolate{background:url(../img/software-centre/visolate.png) 10px 8px no-repeat #fff}#software-centre .whats-new .app-container .okular{background:url(../img/software-centre/okular.png) 10px 8px no-repeat #fff}#software-centre .whats-new .app-container .netSurf{background:url(../img/software-centre/netsurf.png) 10px 8px no-repeat #fff}#software-centre .whats-new .app-container .vitables{background:url(../img/software-centre/vitables.png) 10px 8px no-repeat #fff}#software-centre .whats-new .app-container .steadyflow{background:url(../img/software-centre/steadyflow.png) 10px 8px no-repeat #fff}#software-centre .whats-new .app-container .openjdk{background:url(../img/software-centre/openjdk.png) 10px 8px no-repeat #fff}#software-centre .detailed{display:none}#software-centre .detailed img.app-image{float:left;padding:0 5px}#software-centre .detailed .title{height:110px;margin:0 10px}#software-centre .detailed .title h1{margin-bottom:5px}#software-centre .detailed .title p{margin:0}#software-centre .detailed .title .rating{color:#999;margin-top:10px}#software-centre .detailed .title .rating img{vertical-align:top}#software-centre .detailed .price{margin:0 10px 20px;background:#f7f5f7;border-top:1px dotted #999;border-bottom:1px dotted #999;padding:10px 0}#software-centre .detailed .price .theprice{font-weight:700}#software-centre .detailed .price .theprice.installed{background:url(../img/software-centre/install-tick.png) no-repeat;padding-left:30px;padding-bottom:10px;padding-top:3px}#software-centre .detailed .description{margin:0 10px}#software-centre .detailed .description-container{border-bottom:1px dotted #999}#software-centre .detailed .description-image{float:right;padding:4px;margin:10px;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;border:1px solid #b4b2b3}#software-centre .detailed .button{float:right;margin-right:20px;background:url(../img/software-centre/install-button.jpg) repeat-x;padding:3px;color:#666;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;border:1px solid #b9b9b9;margin-top:-3px}#software-centre .detailed .button:hover{background:url(../img/software-centre/install-button-over.jpg) repeat-x}#software-centre .loading-bar{background:#e5e3e1;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;height:20px;width:150px;float:right;border-top:1px solid #bab6b2;border-bottom:1px solid #fefefe}#software-centre .loading-bar .progress{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;height:20px;width:0;background:#dd4814}#systemOverlay{width:100%;height:100%;position:absolute;background-color:rgba(96,22,19,.7);top:0;left:0;z-index:12;display:none;font-size:17px;color:#fff}#systemOverlay input{background:url(../img/overlay/search-logo.png) 10px center no-repeat;position:relative;width:88%;height:40px;left:90px;top:30px;color:#eee;font-style:italic;padding:0 50px;font-size:18px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:1px solid #fff;background-color:rgba(0,0,0,.2);outline-style:none}#systemOverlay #shortcuts{position:absolute;left:100px;top:110px}#systemOverlay #shortcuts:hover{background-position:0 -17px}#systemOverlay img{vertical-align:text-top;margin-right:8px}#systemOverlay .app-list img{margin-right:0}#systemOverlay #shortcuts img{vertical-align:middle;margin-right:15px}#systemOverlay #shortcuts .shortcut-arrow{width:13px;height:17px;overflow:hidden;background:url(../img/overlay/shoutcurts-down.png) no-repeat;display:inline-block;margin:0 0 0 15px}#systemOverlay .app-container{display:none;position:absolute;left:110px;top:100px;width:91%}#systemOverlay #overlayContents{margin-top:10px}#systemOverlay #overlayContents .message{min-height:100%;height:auto;display:table-cell;vertical-align:middle}#systemOverlay #overlayContents .bottom{margin-bottom:20px}#systemOverlay .app-container .app-list{width:100%;height:110px;margin:10px 20px;overflow:hidden}#systemOverlay .app-container .app-list div{width:200px;height:120px;float:left;text-align:center}#systemOverlay .app-container .app-list div img{padding:20px;height:46px}#systemOverlay .app-container .app-list div img.hover{background-color:rgba(255,255,255,.3);-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}#systemOverlay .app-container .app-list div p{font-size:13px;margin-top:0}#systemOverlay #shortcuts .hover{background-position:0 -17px!important}#systemOverlay #shortcuts .closed{background:url(../img/overlay/shoutcurts-right.png) no-repeat}#systemOverlay #shortcuts #shortcut-contents{width:870px;position:absolute;top:50px}#systemOverlay #shortcuts #shortcut-contents .dashClear{clear:both;height:0;float:none}#systemOverlay #shortcuts #shortcut-contents div div{height:104px;margin-bottom:12px;margin-left:0;width:100%}#systemOverlay #shortcuts #shortcut-contents div div.hover{background-position:center -104px!important}#systemOverlay #shortcuts #shortcut-contents #browse-the-web div{background:url(../img/overlay/browse-the-web.png) center 0 no-repeat}#systemOverlay #shortcuts #shortcut-contents #view-photos div{background:url(../img/overlay/view-photos.png) center 0 no-repeat}#systemOverlay #shortcuts #shortcut-contents #check-email div{background:url(../img/overlay/check-email.png) center 0 no-repeat}#systemOverlay #shortcuts #shortcut-contents #listen-to-music div{background:url(../img/overlay/listen-to-music.png) center 0 no-repeat}#systemOverlay #shortcuts #shortcut-contents #media-apps div{background:url(../img/overlay/media-apps.png) center 0 no-repeat}#systemOverlay #shortcuts #shortcut-contents #internet-apps div{background:url(../img/overlay/internet-apps.png) center 0 no-repeat}#systemOverlay #shortcuts #shortcut-contents #more-apps div{background:url(../img/overlay/more-apps.png) center 0 no-repeat}#systemOverlay #shortcuts #shortcut-contents #find-apps div{background:url(../img/overlay/find-files.png) center 0 no-repeat}#systemOverlay #shortcuts #shortcut-contents div{margin-left:115px;float:left;text-align:center;margin-bottom:70px;width:130px}#systemOverlay #shortcuts #shortcut-contents div span{display:block;height:40px}#systemOverlay #shortcuts #shortcut-contents div.first{margin-left:0}#systemOverlay #dash-bottom-bar{width:100%;height:44px;position:absolute;background:url(../img/black-bg-30.png);background-color:rgba(0,0,0,.3);bottom:0}#systemOverlay #dash-bottom-bar .bottom-wrapper div{width:60px;height:44px;float:left}#systemOverlay #dash-bottom-bar .bottom-wrapper div.last{margin-right:0}#systemOverlay #dash-bottom-bar .bottom-wrapper{position:absolute}#systemOverlay #dash-bottom-bar .home-icon{background:url(../img/dash/dash-home.png) 0 -44px no-repeat}#systemOverlay #dash-bottom-bar .applications-icon{background:url(../img/dash/dash-applications.png) 0 -44px no-repeat}#systemOverlay #dash-bottom-bar .music-icon{background:url(../img/dash/dash-music.png) 0 -44px no-repeat}#systemOverlay #dash-bottom-bar .files-icon{background:url(../img/dash/dash-files.png) 0 -44px no-repeat}#systemOverlay #dash-bottom-bar .video-icon{background:url(../img/dash/dash-video.png) 0 -44px no-repeat}#systemOverlay #dash-bottom-bar .photos-icon{background:url(../img/dash/dash-photos.png) 0 -44px no-repeat}#systemOverlay #dash-bottom-bar .chat-icon{background:url(../img/dash/dash-chat.png) 0 -44px no-repeat}#systemOverlay #dash-bottom-bar .bottom-wrapper div:hover{background-position:0 -88px}#systemOverlay #dash-bottom-bar div.active,#systemOverlay #dash-bottom-bar div.active:hover{background-position:0 0}#systemOverlay #preview{width:800px;position:absolute}#systemOverlay #preview .image{width:400px;float:left}#systemOverlay #preview .buttons,#systemOverlay #preview .info{width:380px;float:left;padding-left:20px}#systemOverlay #preview .buttons a{margin:0 10px 10px 0;display:block;height:35px;line-height:35px;text-align:center;width:175px;float:left;border:1px solid #999;-moz-border-radius:8px;-webkit-border-radius:8px;border-radius:8px;color:#fff}#systemOverlay #preview .buttons a:hover{background-color:rgba(255,255,255,.1)}#tour-guide{position:absolute;top:150px;right:20px;width:370px;height:189px;background-color:rgba(0,0,0,.85);z-index:100;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-moz-box-shadow:0 0 5px #000;-webkit-box-shadow:0 0 5px #000;box-shadow:0 0 5px #000}#tour-guide .guide-container{width:90%}#tour-guide .next-button,#tour-guide .prev-button{position:relative;width:30px;height:30px;margin-top:15px;float:right;font-size:30px;color:#AEA79F;line-height:.8;text-align:center;z-index:2;cursor:pointer}#tour-guide .next-button{margin-right:15px;border:1px solid #333;border-left:0;-moz-border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}#tour-guide .prev-button{border:1px solid #333;-moz-border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}#tour-guide .next-button:hover,#tour-guide .prev-button:hover{background-color:#000;color:#fff}#tour-guide .tour-buttons{position:absolute;bottom:0;border-top:1px solid #333;width:100%}#tour-guide .tour-buttons div{border-left:1px solid #000;border-right:1px solid #333;cursor:pointer;float:left;width:72px;height:44px;font-size:14px;padding-top:10px;padding-left:50px;line-height:16px}#tour-guide .tour-buttons div:hover{background-color:#000}#tour-guide .tour-buttons .explore-to-welcome{background:url(../img/tourguide/welcome.png) 15px center no-repeat;border-left:0}#tour-guide .tour-buttons .explore-to-download{background:url(../img/tourguide/download.png) 15px center no-repeat}#tour-guide .tour-buttons .explore-to-exit{background:url(../img/tourguide/close.png) 15px center no-repeat;border-right:0}#tour-guide .guide-logo{width:50px;height:50px;float:left;background-repeat:no-repeat;margin:15px 5px 0 15px}#tour-guide .guide-logo img{height:46px}#tour-guide h3{font-size:16px;display:inline;position:relative;top:26px;margin-bottom:0}#tour-guide p{font-size:16px;font-weight:400;position:absolute;top:70px;padding:0 15px 15px;border-bottom:1px solid #000;line-height:1.5;margin-top:0}#ubuntuone-window{width:738px;height:555px;top:200px;left:600px;display:none}#ubuntuone-window .control .close{background:url(../img/error/close-button.png) no-repeat}#ubuntuone-window .content .header{background:url(../img/ubuntuone/header.jpg) no-repeat;width:738px;height:190px}#ubuntuone-window .content .body h1{text-align:center;font-weight:400;font-size:32px;margin-top:15px}#ubuntuone-window .content .body .features{margin-left:12px;width:440px;float:left;margin-top:10px}#ubuntuone-window .content .body .features .logo{float:left;width:50px;height:50px;margin-right:10px}#ubuntuone-window .content .body .features .files-anywhere .logo{background:url(../img/ubuntuone/files-anywhere.jpg) no-repeat;margin-top:8px}#ubuntuone-window .content .body .features .rock-out .logo{background:url(../img/ubuntuone/rock-out.jpg) no-repeat}#ubuntuone-window .content .body .features .keep-connected .logo{background:url(../img/ubuntuone/keep-connected.jpg) no-repeat}#ubuntuone-window .content .body .features .stay-productive .logo{background:url(../img/ubuntuone/stay-productive.jpg) no-repeat;margin-top:4px}#ubuntuone-window .content .body .features .files-anywhere{width:260px}#ubuntuone-window .content .body .features h3{font-size:14px;margin-bottom:0;margin-top:0;font-weight:400}#ubuntuone-window .content .body .features p{color:#888;margin-top:0;margin-bottom:7px}#ubuntuone-window .content .body .features .keep-connected div{padding-top:8px;padding-bottom:5px}#ubuntuone-window .content .body .features .stay-productive div{padding-top:12px;padding-bottom:5px}#ubuntuone-window .content .body .features .rock-out{width:360px}#ubuntuone-window .content .body .ubuntuone-buttons{float:right;margin-right:38px;width:180px;margin-top:40px;color:#888}#ubuntuone-window .content .body .ubuntuone-buttons .learn-more{width:180px;height:70px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:1px solid #bdbab7;text-align:center;padding-top:10px;margin-bottom:15px;background:url(../img/ubuntuone/learn-more-bg.jpg) repeat-x}#ubuntuone-window .content .body .ubuntuone-buttons .learn-more:hover{background-position:0 -80px}#ubuntuone-window .content .body .ubuntuone-buttons .join-now{height:60px;width:180px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:1px solid #bdbab7;text-align:center;margin-bottom:15px;background:url(../img/ubuntuone/join-now-bg.jpg) repeat-x}#ubuntuone-window .content .body .ubuntuone-buttons .join-now:hover{background-position:0 -60px}#ubuntuone-window .content .body .ubuntuone-buttons .join-now h2{margin-bottom:4px;font-weight:400;margin-top:15px;color:#4C4C4C;font-size:26px}#ubuntuone-window .content .body .ubuntuone-buttons .have-account{color:#dd4814;text-decoration:underline;border:1px solid #F2F1F0;padding:4px 8px}#ubuntuone-window .content .body .ubuntuone-buttons .have-account:hover{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:1px solid #bdbab7;cursor:pointer}#welcome{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1000;font-weight:400;background:url(../img/black-bg-60.png);background:rgba(0,0,0,.6);overflow:hidden;display:none}#welcome-screen{width:660px;left:0;top:0;-moz-border-radius:8px;-webkit-border-radius:8px;-khtml-border-radius:8px;border-radius:8px;-moz-box-shadow:0 0 10px #000;-webkit-box-shadow:0 0 10px #000;box-shadow:0 0 10px #000;position:absolute;color:#4c4c4c;display:none;padding:30px 0 20px;z-index:2;background:url(../img/folder/chrome.png) repeat-x #fff}#welcome-screen .control{margin-bottom:6px;margin-top:-25px}#welcome-screen .welcome-header{background:url(../img/welcome/circle-of-friends.png) 20px 20px no-repeat #fff;height:108px;padding:7px 100px 0 110px;border-bottom:1px solid #d5d5d5}#welcome-screen .welcome-select{border-top:1px solid #fff;padding:15px}#welcome-screen .welcome-select select{margin-left:10px}#welcome-screen h1{font-size:25px;line-height:1.3;font-weight:500;margin-bottom:0;margin-top:20px}#welcome-screen h2{font-size:16px;font-weight:500;margin-top:5px}#welcome-screen ul{padding:0;overflow:hidden;margin:0 0 20px;background-color:#F2F1F0;border-bottom:1px solid #D5D5D5}#welcome-screen li{float:left;list-style:none}#welcome-screen li a{padding:24px 0 24px 59px;display:block;width:160px;text-decoration:none;cursor:pointer;font-size:16px;color:#333;border-bottom:1px dotted #C0B7B0;border-right:1px dotted #C0B7B0}#welcome-screen li a:hover{background-color:#fff;color:#DD4814}#welcome-screen li a.completed{color:#AEA79F;background:url(../img/welcome/completed.png) 12px 15px no-repeat #e8e8e8!important}#welcome-screen li img{float:left;margin-left:-48px;margin-top:-20px}#welcome-screen .browse-files{background:url(../img/welcome/browse-files.png) 10px center no-repeat}#welcome-screen .surf-the-web{background:url(../img/welcome/surf-the-web.png) 10px center no-repeat;border-right:0;border-top:1px solid #fff}#welcome-screen .check-email{background:url(../img/welcome/check-email.png) 10px center no-repeat;border-top:1px solid #fff}#welcome-screen .watch-video{background:url(../img/welcome/watch-video.png) 10px center no-repeat;border-right:0;border-bottom:0}#welcome-screen .view-photos{background:url(../img/welcome/view-photos.png) 10px center no-repeat;border-right:0}#welcome-screen .find-apps{background:url(../img/welcome/find-apps.png) 10px center no-repeat}#welcome-screen .create-documents{background:url(../img/welcome/create-documents.png) 10px center no-repeat}#welcome-screen .create-spreadsheets{background:url(../img/welcome/create-spreadsheets.png) 10px center no-repeat;border-bottom:0}#welcome-screen .create-presentations{background:url(../img/welcome/create-presentations.png) 10px center no-repeat;border-bottom:0}#welcome-screen .listen-music{background:url(../img/welcome/listen-to-music.png) 10px center no-repeat}#welcome-screen .system-indicators{background:url(../img/welcome/indicators.png) 10px center no-repeat;border-bottom:1px solid #d5d5d5}#welcome-screen .applications{background:url(../img/welcome/applications.png) 10px center no-repeat;border-right:0;border-bottom:1px solid #d5d5d5}#welcome-screen .explore-mode,#welcome-screen .tour-mode{margin-right:15px;background:url(../img/welcome/background-link-explore.png) center center repeat-x;color:#333}#welcome-screen .download,#welcome-screen .explore-mode,#welcome-screen .tour-mode{padding:10px 20px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;display:block;float:right;font-size:14px;text-decoration:none;border:1px solid #c0b7b0;cursor:pointer}#welcome-screen .download:active,#welcome-screen .explore-mode:active,#welcome-screen .tour-mode:active{position:relative;top:-1px}#welcome-screen .language-mode{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;display:block;float:left;font-size:14px;text-decoration:none;border:1px solid #c0b7b0;cursor:pointer;margin-left:15px;background:url(../img/welcome/background-link-explore.png) center center repeat-x;color:#333;padding:9px 0;overflow:hidden}#welcome-screen .language-mode a,#welcome-screen .language-mode span{padding:11px}#welcome-screen .language-mode span,#welcome-screen .primary{background:url(../img/welcome/background-link-download.png) center center repeat-x;color:#fff}#welcome-screen .control{background:url(../img/welcome/window-buttons.png) no-repeat;padding-left:60px}#workspaces{background:url(../img/workspaces/gradient.jpg) repeat-x #707070;width:100%;height:100%;position:absolute;left:0;top:0;opacity:0}#void{background:#000;width:100%;float:left;height:50%}#workspace-container{width:650px;margin:150px auto auto}#workspace-container .fadedOverlay{float:left;background:url(../img/workspaces/overlay.png);margin:0}#workspace-container .selected{background:0 0}#workspace-container div{background:url(../img/background.jpg) no-repeat;background-size:300px 200px;margin-left:15px;margin-top:15px;width:300px;height:200px;float:left}#workspace-container .reflection{margin-top:70px;background:url(../img/workspaces/reflection.png)}#workspace3{clear:both}
134\ No newline at end of file
135
136=== modified file 'en/index.html'
137--- en/index.html 2016-01-08 11:34:01 +0000
138+++ en/index.html 2016-01-12 12:40:40 +0000
139@@ -1,33 +1,6 @@
140-<!DOCTYPE html>
141-<html lang="en" dir="ltr">
142- <head>
143- <title>Ubuntu online tour</title>
144- <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
145- <meta charset="UTF-8" />
146- <meta name="description" content="Enjoy the simplicity of Ubuntu's stylish, intuitive interface. Take Ubuntu for a test drive with our online tour and download when you're ready!" />
147- <meta name="keywords" content="ubuntu, ubuntu online, ubuntu tour" />
148- <link rel="stylesheet" href="../css/loader.css" type="text/css" />
149- <link rel="stylesheet" href="../css/error.css" type="text/css" />
150- <link rel="stylesheet" href="../css/base.css" type="text/css" />
151- <link rel="stylesheet" href="../css/folder.css" type="text/css" />
152- <link rel="stylesheet" href="../css/firefox.css" type="text/css" />
153- <link rel="stylesheet" href="../css/email.css" type="text/css" />
154- <link rel="stylesheet" href="../css/systemoverlay.css" type="text/css" />
155- <link rel="stylesheet" href="../css/ubuntuone.css" type="text/css" />
156- <link rel="stylesheet" href="../css/shotwell.css" type="text/css" />
157- <link rel="stylesheet" href="../css/tourguide.css" type="text/css" />
158- <link rel="stylesheet" href="../css/welcome.css" type="text/css" />
159- <link rel="stylesheet" href="../css/shutdown.css" type="text/css" />
160- <link rel="stylesheet" href="../css/movieplayer.css" type="text/css" />
161- <link rel="stylesheet" href="../css/libre.css" type="text/css" />
162- <link rel="stylesheet" href="../css/notification.css" type="text/css" />
163- <link rel="stylesheet" href="../css/software-centre.css" type="text/css" />
164- <!--[if IE 8]>
165+<!DOCTYPE html><html lang="en" dir="ltr"><head><title>Ubuntu online tour</title><link rel="shortcut icon" href="../favicon.ico" type="image/x-icon"><meta charset="UTF-8"><meta name="description" content="Enjoy the simplicity of Ubuntu's stylish, intuitive interface. Take Ubuntu for a test drive with our online tour and download when you're ready!"><meta name="keywords" content="ubuntu, ubuntu online, ubuntu tour"><link rel="stylesheet" href="../css/style.min.css" type="text/css"><!--[if IE 8]>
166 <link rel="stylesheet" href="../css/iefix.css" type="text/css" />
167- <![endif]-->
168- <link href='http://fonts.googleapis.com/css?family=Ubuntu:300,400,700' rel='stylesheet' type='text/css' />
169- <script type="text/javascript">
170- WebFontConfig = {
171+ <![endif]--><link href="http://fonts.googleapis.com/css?family=Ubuntu:300,400,700" rel="stylesheet" type="text/css"><script type="text/javascript">WebFontConfig = {
172 google : {
173 families : ['Ubuntu:400,700:latin']
174 }
175@@ -38,383 +11,9 @@
176 wf.async = 'true';
177 var s = document.getElementsByTagName('script')[0];
178 s.parentNode.insertBefore(wf, s);
179- })();
180-
181- </script>
182- </head>
183- <body>
184- <div id="loader">
185- <div id="dot-container">
186- <noscript>
187- <p>
188- This demo uses JavaScript. Either your browser doesn't support JavaScript, or it's currently switched off.
189- <br/>
190- <br/>
191- Don't panic. We've got <a href="http://www.ubuntu.com/desktop/take-the-tour-gallery">a non-JavaScript version</a> of the online tour you can view instead. :)
192- </p>
193- </noscript>
194- </div>
195- </div>
196- <div id="top" class="dropShadow">
197- <div id="top-left">
198- <div id="control-buttons">
199- <div id="close"></div>
200- <div id="min"></div>
201- <div id="max"></div>
202- </div>
203- <div id="dash-control-buttons">
204- <div class="close"></div>
205- <div class="min"></div>
206- <div class="max"></div>
207- </div>
208- <div id="title"></div>
209- </div>
210- <div id="top-right">
211- <div id="connection"><img src="../img/top/connection.png" alt=""/>
212- <ul class="drop-down">
213- <li class="disabled">
214- Auto eth0
215- </li>
216- <li class="disabled">
217- Disconnect
218- </li>
219- <li class="divider"></li>
220- <!--<li class="disabled"><img src="../img/top/wireless-icon.png" alt=""/> My Wireless Connection</li>
221+ })();</script></head><body><div id="loader"><div id="dot-container"><noscript><p>This demo uses JavaScript. Either your browser doesn't support JavaScript, or it's currently switched off.<br><br>Don't panic. We've got <a href="http://www.ubuntu.com/desktop/take-the-tour-gallery">a non-JavaScript version</a> of the online tour you can view instead. :)</p></noscript></div></div><div id="top" class="dropShadow"><div id="top-left"><div id="control-buttons"><div id="close"></div><div id="min"></div><div id="max"></div></div><div id="dash-control-buttons"><div class="close"></div><div class="min"></div><div class="max"></div></div><div id="title"></div></div><div id="top-right"><div id="connection"><img src="../img/top/connection.png" alt=""><ul class="drop-down"><li class="disabled">Auto eth0</li><li class="disabled">Disconnect</li><li class="divider"></li><!--<li class="disabled"><img src="../img/top/wireless-icon.png" alt=""/> My Wireless Connection</li>
222 <li class="disabled">Disconnect</li>
223- <li class="divider"></li>-->
224- <li class="disabled">
225- Connection Information
226- </li>
227- <li class="disabled">
228- Edit Connections…
229- </li>
230- </ul>
231- </div>
232- <div id="bluetooth"><img src="../img/top/bluetooth.png" alt=""/>
233- <ul class="drop-down">
234- <li class="disabled bluetooth">
235- Bluetooth On
236- </li>
237- <li>
238- Turn Off Bluetooth
239- </li>
240- <li class="divider"></li>
241- <li class="disabled BtOn">
242- Visible
243- </li>
244- <li class="divider BtOn"></li>
245- <li class="disabled BtOn">
246- Send files to device…
247- </li>
248- <li class="disabled BtOn">
249- Browse files on device…
250- </li>
251- <li class="divider"></li>
252- <li class="disabled BtOn">
253- Setup new device…
254- </li>
255- <li class="divider BtOn"></li>
256- <li class="disabled">
257- Preferences
258- </li>
259- </ul>
260- </div>
261- <div id="message"><img src="../img/top/nomessage.jpg" class="message-logo" alt="" />
262- <ul class="drop-down">
263- <li class="system-message"></li>
264- </ul>
265- </div>
266- <div id="speakers"><img src="../img/top/speakers3.png" class="speakers-logo" alt=""/>
267- <ul class="drop-down">
268- <li>
269- Mute
270- </li>
271- <li class="system-volume">
272- <div class="large-icon"></div><div class="small-icon"></div><div class="slider"></div><div class="slider-active"></div>
273- </li>
274- <li class="divider"></li>
275- <li class="disabled"><img src="../img/top/rhythmbox.png" alt=""/> Rhythmbox
276- </li>
277- <li class="banshee">
278- <div class="banshee-rewind"></div><div class="banshee-forward"></div><div class="banshee-play"></div>
279- </li>
280- <li class="divider"></li>
281- <li class="disabled">
282- Sound Settings…
283- </li>
284- </ul>
285- </div>
286- <div id="time">
287- <p></p>
288- <ul class="drop-down">
289- <li class="system-calendar"></li>
290- </ul>
291- </div>
292- <div id="power"><img src="../img/top/power.png" alt=""/>
293- <ul class="drop-down">
294- <li class="disabled">
295- About This Computer
296- </li>
297- <li class="disabled">
298- Ubuntu Help
299- </li>
300- <li class="divider"></li>
301- <li class="disabled">
302- System Settings&hellip;
303- </li>
304- <li class="divider"></li>
305- <li class="disabled">
306- Lock <span class="key-combo">Ctrl+Alt+L</span>
307- </li>
308- <li class="disabled user">
309- Guest Session
310- </li>
311- <li class="divider"></li>
312- <li class="disabled">
313- Logout
314- </li>
315- <li class="divider"></li>
316- <li class="disabled">
317- Suspend
318- </li>
319- <li class="disabled">
320- Restart&hellip;
321- </li>
322- <li>
323- Shut Down…
324- </li>
325- </ul>
326- </div>
327- </div>
328- </div>
329- <div id="tooltip">
330- <div class="shadow-arrow"></div>
331- <div class="arrow-right"></div>
332- <div id="tooltip-text"></div>
333- </div>
334- <div id="menu">
335- <ul>
336- <li class="dash">
337- <span>Dash home</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
338- </li>
339- <li class="home"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>Home Folder</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
340- </li>
341- <li class="firefox"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>Firefox Web Browser</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
342- </li>
343- <li class="writer"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>LibreOffice Writer</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
344- </li>
345- <li class="calc"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>LibreOffice Calc</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
346- </li>
347- <li class="impress"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>LibreOffice Impress</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
348- </li>
349- <li class="software"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>Ubuntu Software Centre</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
350- </li>
351- <li class="amazon"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>Amazon</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
352- </li>
353- <li class="settings"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>System Settings</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
354- </li>
355- <li class="email temp"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""><span>Thunderbird Mail</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt="">
356- </li>
357- <li class="shotwell temp"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>Shotwell Photo Manager</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
358- </li>
359- <li class="movieplayer temp"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>Movie Player</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
360- </li>
361- <!--<li class="workspace"><span>Workspace Switcher</span></li>-->
362- <li class="rubbish bottom">
363- <span>Rubbish bin</span>
364- </li>
365- </ul>
366- </div>
367- <div id="systemOverlay">
368- <div class="copyDash"></div>
369- <div id="overlayContents">
370- <input type="text" name="search" value="Search your computer and online sources"/>
371- <div id="display-home" class="app-container">
372- <div class="recent-apps bottom"><img src="../img/overlay/recentapps.png" alt=""/> Applications <div class="app-list"></div>
373- </div>
374- <div class="recent-files bottom"><img src="../img/overlay/recentfiles.png" alt=""/> Files &amp; Folders<div class="app-list"></div>
375- </div>
376- </div>
377- <div id="display-apps" class="app-container">
378- <div class="frequently bottom"><img src="../img/overlay/recentapps.png" alt=""/> Recently Used <div class="app-list"></div>
379- </div>
380- <div class="installed"><img src="../img/overlay/installed.png" alt=""/> Installed<div class="app-list"></div>
381- </div>
382- </div>
383- <div id="display-find-files" class="app-container">
384- <div class="files bottom"><img src="../img/overlay/recentfiles.png" alt=""/> Recent<div class="app-list"></div>
385- </div>
386- <div class="downloads bottom"><img src="../img/overlay/downloaded.png" alt=""/> Downloads<div class="app-list"></div>
387- </div>
388- <div class="folders"><img src="../img/overlay/folders.png" alt=""/> Folders<div class="app-list"></div>
389- </div>
390-
391- </div>
392- <div id="display-find-music" class="app-container">
393- <div class="songs bottom"><img src="../img/overlay/folders.png" alt=""/> Songs<div class="app-list"></div>
394- </div>
395- <div class="albums"><img src="../img/overlay/folders.png" alt=""/> Albums<div class="app-list"></div>
396- </div>
397- </div>
398- <div id="display-find-video" class="app-container">
399- <div class="videos bottom"><img src="../img/overlay/folders.png" alt=""/> Videos<div class="app-list"></div>
400- </div>
401- </div>
402- <div id="display-find-photos" class="app-container">
403- <div class="photos bottom"><img src="../img/overlay/folders.png" alt=""/> My photos<div class="app-list"></div>
404- </div>
405- </div>
406- <div id="display-chat" class="app-container">
407- <div class="message">
408- <p>Sorry, there is nothing that matches your search</p>
409- </div>
410- </div>
411- <div id="display-search" class="app-container">
412- <div class="applications bottom"><img src="../img/overlay/search-apps-logo.jpg" alt=""/> Applications<div class="app-list"></div>
413- </div>
414- <div class="files"><img src="../img/overlay/search-files-logo.jpg" alt=""/> Files &amp; Folders<div class="app-list"></div>
415- </div>
416- </div>
417- </div>
418- <div id="dash-bottom-bar">
419- <div class="bottom-wrapper">
420- <div class="home-icon active"></div>
421- <div class="applications-icon"></div>
422- <div class="files-icon"></div>
423- <div class="music-icon"></div>
424- <div class="video-icon"></div>
425- <div class="photos-icon"></div>
426- <div class="chat-icon last"></div>
427- </div>
428- </div>
429- <div id="preview">
430- <div class="image"></div>
431- <div class="info"></div>
432- <div class="buttons">
433- <a class="email">E-mail</a>
434- <a class="showInFolder">Show in Folder</a>
435- <a class="open">Open</a>
436- </div>
437- </div>
438- </div>
439- <div id="ubuntuone-window" class="uone window">
440- <div class="control">
441- <div class="close"></div>
442- <div class="window-title">
443- Ubuntu One Control Panel
444- </div>
445- </div>
446- <div class="content">
447- <div class="header"></div>
448- <div class="body">
449- <h1>The Power of Your Personal Cloud</h1>
450- <div class="features">
451- <div class="files-anywhere">
452- <span class="logo"></span>
453- <div>
454- <h3>Files Anywhere</h3>
455- <p>
456- Backup and access your files from Ubuntu, Windows, Web or Mobile
457- </p>
458- </div>
459- </div>
460- <div class="rock-out">
461- <span class="logo"></span>
462- <div>
463- <h3>Rock Out</h3>
464- <p>
465- Your entire collection follows you around with music streaming to Android and iPhone
466- </p>
467- </div>
468- </div>
469- <div class="keep-connected">
470- <span class="logo"></span>
471- <div>
472- <h3>Keep Connected</h3>
473- <p>
474- Unify your contacts across Desktop, Mobile and Web
475- </p>
476- </div>
477- </div>
478- <div class="stay-productive">
479- <span class="logo"></span>
480- <div>
481- <h3>Stay Productive</h3>
482- <p>
483- Keep your Firefox bookmarks and Tomboy notes synced
484- </p>
485- </div>
486- </div>
487- </div>
488- <div class="ubuntuone-buttons">
489- <div class="learn-more"><img src="../img/ubuntuone/ubuntuone-logo.jpg" width="47" height="48" alt=""/>
490- <div>
491- Learn More
492- </div>
493- </div>
494- <div class="join-now">
495- <h2>Join now</h2>
496- </div>
497- <div class="have-account">
498- I already have an account!
499- </div>
500- </div>
501- </div>
502- </div>
503- </div>
504- <div id="libreoffice-calc-window" class="calc window">
505- <div class="control">
506- <div class="close"></div>
507- <div class="min"></div>
508- <div class="max"></div>
509- <div class="window-title">
510- Untitled 1 - LibreOffice Calc
511- </div>
512- </div>
513- <div class="content">
514-
515- </div>
516- </div>
517- <div id="libreoffice-writer-window" class="writer window">
518- <div class="control">
519- <div class="close"></div>
520- <div class="min"></div>
521- <div class="max"></div>
522- <div class="window-title">
523- Untitled 1 - LibreOffice Writer
524- </div>
525- </div>
526- <div class="content">
527-
528- </div>
529- </div>
530- <div id="libreoffice-impress-window" class="impress window">
531- <div class="control">
532- <div class="close"></div>
533- <div class="min"></div>
534- <div class="max"></div>
535- <div class="window-title">
536- Untitled 1 - LibreOffice Impress
537- </div>
538- </div>
539- <div class="content">
540-
541- </div>
542- </div>
543- <div class="error-window window">
544- <div class="control">
545- <div class="close"></div>
546- <div class="window-title"></div>
547- </div>
548- <div class="error-container">
549- <h1>Thanks for exploring Ubuntu!</h1>
550- <a class="download" href="http://www.ubuntu.com/download/ubuntu/download?utm_source=tour&utm_medium=online&utm_campaign=tour" target="_blank">
551- Download Ubuntu
552- </a>
553- <h2>Remember, this is just a demo. You'll have to download it to enjoy the real thing!</h2>
554- </div>
555- </div>
556- <!--<div id="error-window" class="error-window window">
557+ <li class="divider"></li>--><li class="disabled">Connection Information</li><li class="disabled">Edit Connections…</li></ul></div><div id="bluetooth"><img src="../img/top/bluetooth.png" alt=""><ul class="drop-down"><li class="disabled bluetooth">Bluetooth On</li><li>Turn Off Bluetooth</li><li class="divider"></li><li class="disabled BtOn">Visible</li><li class="divider BtOn"></li><li class="disabled BtOn">Send files to device…</li><li class="disabled BtOn">Browse files on device…</li><li class="divider"></li><li class="disabled BtOn">Setup new device…</li><li class="divider BtOn"></li><li class="disabled">Preferences</li></ul></div><div id="message"><img src="../img/top/nomessage.jpg" class="message-logo" alt=""><ul class="drop-down"><li class="system-message"></li></ul></div><div id="speakers"><img src="../img/top/speakers3.png" class="speakers-logo" alt=""><ul class="drop-down"><li>Mute</li><li class="system-volume"><div class="large-icon"></div><div class="small-icon"></div><div class="slider"></div><div class="slider-active"></div></li><li class="divider"></li><li class="disabled"><img src="../img/top/rhythmbox.png" alt=""> Rhythmbox</li><li class="banshee"><div class="banshee-rewind"></div><div class="banshee-forward"></div><div class="banshee-play"></div></li><li class="divider"></li><li class="disabled">Sound Settings…</li></ul></div><div id="time"><p></p><ul class="drop-down"><li class="system-calendar"></li></ul></div><div id="power"><img src="../img/top/power.png" alt=""><ul class="drop-down"><li class="disabled">About This Computer</li><li class="disabled">Ubuntu Help</li><li class="divider"></li><li class="disabled">System Settings&hellip;</li><li class="divider"></li><li class="disabled">Lock <span class="key-combo">Ctrl+Alt+L</span></li><li class="disabled user">Guest Session</li><li class="divider"></li><li class="disabled">Logout</li><li class="divider"></li><li class="disabled">Suspend</li><li class="disabled">Restart&hellip;</li><li>Shut Down…</li></ul></div></div></div><div id="tooltip"><div class="shadow-arrow"></div><div class="arrow-right"></div><div id="tooltip-text"></div></div><div id="menu"><ul><li class="dash"><span>Dash home</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""></li><li class="home"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""><span>Home Folder</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""></li><li class="firefox"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""><span>Firefox Web Browser</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""></li><li class="writer"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""><span>LibreOffice Writer</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""></li><li class="calc"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""><span>LibreOffice Calc</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""></li><li class="impress"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""><span>LibreOffice Impress</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""></li><li class="software"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""><span>Ubuntu Software Centre</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""></li><li class="amazon"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""><span>Amazon</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""></li><li class="settings"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""><span>System Settings</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""></li><li class="email temp"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""><span>Thunderbird Mail</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""></li><li class="shotwell temp"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""><span>Shotwell Photo Manager</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""></li><li class="movieplayer temp"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""><span>Movie Player</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""></li><!--<li class="workspace"><span>Workspace Switcher</span></li>--><li class="rubbish bottom"><span>Rubbish bin</span></li></ul></div><div id="systemOverlay"><div class="copyDash"></div><div id="overlayContents"><input type="text" name="search" value="Search your computer and online sources"><div id="display-home" class="app-container"><div class="recent-apps bottom"><img src="../img/overlay/recentapps.png" alt=""> Applications<div class="app-list"></div></div><div class="recent-files bottom"><img src="../img/overlay/recentfiles.png" alt=""> Files &amp; Folders<div class="app-list"></div></div></div><div id="display-apps" class="app-container"><div class="frequently bottom"><img src="../img/overlay/recentapps.png" alt=""> Recently Used<div class="app-list"></div></div><div class="installed"><img src="../img/overlay/installed.png" alt=""> Installed<div class="app-list"></div></div></div><div id="display-find-files" class="app-container"><div class="files bottom"><img src="../img/overlay/recentfiles.png" alt=""> Recent<div class="app-list"></div></div><div class="downloads bottom"><img src="../img/overlay/downloaded.png" alt=""> Downloads<div class="app-list"></div></div><div class="folders"><img src="../img/overlay/folders.png" alt=""> Folders<div class="app-list"></div></div></div><div id="display-find-music" class="app-container"><div class="songs bottom"><img src="../img/overlay/folders.png" alt=""> Songs<div class="app-list"></div></div><div class="albums"><img src="../img/overlay/folders.png" alt=""> Albums<div class="app-list"></div></div></div><div id="display-find-video" class="app-container"><div class="videos bottom"><img src="../img/overlay/folders.png" alt=""> Videos<div class="app-list"></div></div></div><div id="display-find-photos" class="app-container"><div class="photos bottom"><img src="../img/overlay/folders.png" alt=""> My photos<div class="app-list"></div></div></div><div id="display-chat" class="app-container"><div class="message"><p>Sorry, there is nothing that matches your search</p></div></div><div id="display-search" class="app-container"><div class="applications bottom"><img src="../img/overlay/search-apps-logo.jpg" alt=""> Applications<div class="app-list"></div></div><div class="files"><img src="../img/overlay/search-files-logo.jpg" alt=""> Files &amp; Folders<div class="app-list"></div></div></div></div><div id="dash-bottom-bar"><div class="bottom-wrapper"><div class="home-icon active"></div><div class="applications-icon"></div><div class="files-icon"></div><div class="music-icon"></div><div class="video-icon"></div><div class="photos-icon"></div><div class="chat-icon last"></div></div></div><div id="preview"><div class="image"></div><div class="info"></div><div class="buttons"><a class="email">E-mail</a> <a class="showInFolder">Show in Folder</a> <a class="open">Open</a></div></div></div><div id="ubuntuone-window" class="uone window"><div class="control"><div class="close"></div><div class="window-title">Ubuntu One Control Panel</div></div><div class="content"><div class="header"></div><div class="body"><h1>The Power of Your Personal Cloud</h1><div class="features"><div class="files-anywhere"><span class="logo"></span><div><h3>Files Anywhere</h3><p>Backup and access your files from Ubuntu, Windows, Web or Mobile</p></div></div><div class="rock-out"><span class="logo"></span><div><h3>Rock Out</h3><p>Your entire collection follows you around with music streaming to Android and iPhone</p></div></div><div class="keep-connected"><span class="logo"></span><div><h3>Keep Connected</h3><p>Unify your contacts across Desktop, Mobile and Web</p></div></div><div class="stay-productive"><span class="logo"></span><div><h3>Stay Productive</h3><p>Keep your Firefox bookmarks and Tomboy notes synced</p></div></div></div><div class="ubuntuone-buttons"><div class="learn-more"><img src="../img/ubuntuone/ubuntuone-logo.jpg" width="47" height="48" alt=""><div>Learn More</div></div><div class="join-now"><h2>Join now</h2></div><div class="have-account">I already have an account!</div></div></div></div></div><div id="libreoffice-calc-window" class="calc window"><div class="control"><div class="close"></div><div class="min"></div><div class="max"></div><div class="window-title">Untitled 1 - LibreOffice Calc</div></div><div class="content"></div></div><div id="libreoffice-writer-window" class="writer window"><div class="control"><div class="close"></div><div class="min"></div><div class="max"></div><div class="window-title">Untitled 1 - LibreOffice Writer</div></div><div class="content"></div></div><div id="libreoffice-impress-window" class="impress window"><div class="control"><div class="close"></div><div class="min"></div><div class="max"></div><div class="window-title">Untitled 1 - LibreOffice Impress</div></div><div class="content"></div></div><div class="error-window window"><div class="control"><div class="close"></div><div class="window-title"></div></div><div class="error-container"><h1>Thanks for exploring Ubuntu!</h1><a class="download" href="http://www.ubuntu.com/download/ubuntu/download?utm_source=tour&utm_medium=online&utm_campaign=tour" target="_blank">Download Ubuntu</a><h2>Remember, this is just a demo. You'll have to download it to enjoy the real thing!</h2></div></div><!--<div id="error-window" class="error-window window">
558 <div class="control">
559 <div class="close"></div>
560 <div class="window-title"></div>
561@@ -427,8 +26,7 @@
562 </div>
563 <div class="error-buttons"><div class="download highlight">Download Ubuntu</div></div>
564 </div>
565- </div>-->
566- <!--<div id="workspaces">
567+ </div>--><!--<div id="workspaces">
568 <div id="void">
569 <div id="workspace-container">
570 <div id="workspace1"><div class="fadedOverlay"></div></div>
571@@ -439,1093 +37,25 @@
572 <div class="reflection"></div>
573 </div>
574 </div>
575- </div>-->
576- <div id="email-window" class="email-window window">
577- <div class="control">
578- <div class="close"></div>
579- <div class="min"></div>
580- <div class="max"></div>
581- <div class="window-title">
582- Email
583- </div>
584- </div>
585- <div class="buttons">
586- <div class="email-get-mail">
587- Get Mail
588- </div>
589- <div class="email-divider"></div>
590- <div class="email-write">
591- Write
592- </div>
593- <!--<div class="email-address-book"></div>
594+ </div>--><div id="email-window" class="email-window window"><div class="control"><div class="close"></div><div class="min"></div><div class="max"></div><div class="window-title">Email</div></div><div class="buttons"><div class="email-get-mail">Get Mail</div><div class="email-divider"></div><div class="email-write">Write</div><!--<div class="email-address-book"></div>
595 <div class="email-divider"></div>
596 <div class="email-tag"></div>
597- <div class="email-search"><input type="text" name="submitEmailSearch" id="submitEmailSearch"/></div>-->
598- </div>
599- <div style="clear:both;"></div>
600- <div class="email-content">
601- <div class="folder-list">
602- <div class="bottom-buttons">
603- All Folders
604- </div>
605- <div style="clear:both;"></div>
606- <div class="list">
607- <div id="folder-inbox" class="selected"><img src="../img/email/inbox.png" alt=""/> Inbox
608- </div>
609- <div id="folder-draft"><img src="../img/email/drafts.png" alt=""/> Draft
610- </div>
611- <div id="folder-sent"><img src="../img/email/sent.png" alt=""/> Sent
612- </div>
613- <div id="folder-archive"><img src="../img/email/archive-logo.png" alt=""/> Archive
614- </div>
615- <div id="folder-trash"><img src="../img/email/trash.png" alt=""/> Trash
616- </div>
617- </div>
618- </div>
619- <div class="email-contents">
620- <div class="email-categories">
621- <div><img src="../img/email/t.png" alt=""/>
622- </div>
623- <div><img src="../img/email/star.png" alt=""/>
624- </div>
625- <div><img src="../img/email/clip.png" alt=""/>
626- </div>
627- <div class="subject">
628- Subject
629- </div>
630- <div><img src="../img/email/glasses.png" alt=""/>
631- </div>
632- <div class="from">
633- From
634- </div>
635- <div><img src="../img/email/fire.png" alt=""/>
636- </div>
637- <div class="date">
638- Date
639- </div>
640- </div>
641- <div style="clear:both;"></div>
642- <div class="email-list"></div>
643- <div class="email-body">
644- <div class="message-header">
645- <div class="email-buttons">
646- <div>
647- <span class="message-reply">reply</span>
648- <span class="message-forward">forward</span>
649- <span class="message-archive">archive</span>
650- <span class="message-junk">junk</span>
651- <span class="message-delete">delete</span>
652- </div>
653- </div>
654- <div style="clear:both;"></div>
655- <div class="date"></div>
656- <dl class="from">
657- <dt>
658- from
659- </dt><dd></dd>
660- </dl>
661- <dl class="subject">
662- <dt>
663- subject
664- </dt><dd></dd>
665- </dl>
666- <dl class="to">
667- <dt>
668- to
669- </dt><dd></dd>
670- </dl>
671- <dl class="cc">
672- <dt>
673- cc
674- </dt><dd></dd>
675- </dl>
676- </div>
677- <div class="junk-mail-banner"><img src="../img/email/large-fire.jpg" alt=""/> Junk Mail
678- <div class="not-junk">
679- Not Junk
680- </div>
681- </div>
682- <div class="message-body"></div>
683- </div>
684- </div>
685- <div style="clear:both;"></div>
686- <div class="emails-info">
687- <div>
688- Unread: <span id="details-unread">1</span> Total: <span id="details-total">1</span>
689- </div>
690- </div>
691- </div>
692- </div>
693- <div id="email-write" class="email-write window">
694- <div class="control">
695- <div class="close"></div>
696- <div class="min"></div>
697- <div class="max"></div>
698- <div class="window-title">
699- Write: (no subject)
700- </div>
701- </div>
702- <div class="buttons">
703- <div id="write-send">
704- Send
705- </div>
706- <div class="email-divider"></div>
707- <div id="write-attach">
708- Attach
709- </div>
710- </div>
711- <div style="clear:both;"></div>
712- <div id="write-from">
713- <div>
714- From:
715- </div>
716- <input type="text" name="from" value="You"/>
717- </div>
718- <div id="write-to">
719- <div>
720- To:
721- </div>
722- <input type="text" name="to"/>
723- </div>
724- <div id="write-subject">
725- <div>
726- Subject:
727- </div>
728- <input type="text" name="subject"/>
729- </div>
730- <div><img src="../img/email/disabled-format-buttons.jpg" width="853" height="32" alt=""/>
731- </div>
732- <div id="write-body">
733- <textarea name="body"></textarea>
734-</div> <div class="loading-bar">
735- <div class="progress"></div>
736- </div>
737- </div>
738- <div id="software-centre" class="software window">
739- <div class="control">
740- <div class="close"></div>
741- <div class="min"></div>
742- <div class="max"></div>
743- <div class="window-title">
744- Ubuntu Software Centre
745- </div>
746- </div>
747- <div class="top-panel">
748- <div class="back disabled"></div>
749- <div class="forward disabled"></div>
750- <div class="all-software selected"><img src="../img/software-centre/all-software.png" alt=""/>All Software
751- </div>
752- <div class="installed"><img src="../img/software-centre/installed.png" alt=""/>Installed
753- </div>
754- <div class="history"><img src="../img/software-centre/history.png" alt=""/>History
755- </div>
756- </div>
757- <div class="container detailed">
758- <div class="title"><img src="../img/software-centre/visolate.png" class="app-image" width="100" alt=""/><h1>Visolate</h1>
759- <p class="subheading">
760- PCB CNC converter
761- </p>
762- <p class="rating"><img src="../img/software-centre/rating.jpg" alt="" /> (91 Ratings)
763- </p>
764- </div>
765- <div class="price">
766- <span class="theprice">Free</span><span class="button">Install</span>
767- <div class="loading-bar">
768- <div class="progress"></div>
769- </div>
770- </div>
771- <div class="description-container">
772- <div class="description-image"><img src="../img/software-centre/screenshot-blender.jpg" alt="" />
773- </div>
774- <div class="description"><img src="../img/software-centre/screenshot-blender.jpg" alt="" />Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse quam augue, convallis id commodo id, tristique ac mi. Ut dapibus, neque eget elementum pretium, nunc turpis congue eros, et interdum nisi nisi at diam. Duis dictum, justo eget imperdiet pulvinar, dolor est fermentum nisl, luctus imperdiet metus elit a purus. Quisque nisl enim, lacinia ut venenatis in, porttitor eget orci. Quisque non nibh nec risus tincidunt sollicitudin vitae et nisl. Proin odio lacus, vulputate non auctor sit amet, dapibus quis tortor. Donec elit libero, pellentesque quis dictum sed, hendrerit non libero. Aliquam eu diam id leo auctor tincidunt. Phasellus cursus felis at nulla facilisis semper. Cras mauris urna, adipiscing sed scelerisque ut, gravida id neque. Mauris ut vestibulum justo. Curabitur convallis elementum pellentesque. Duis sit amet arcu ac eros pretium scelerisque. Nunc nec nisi nulla.
775- </div>
776- <div style="clear:both;"></div>
777- </div>
778- </div>
779- <div class="container home">
780- <div class="header-image">
781- <span class="header-title">Our star apps</span>
782- <span class="header-subtitle">Come and explore our favourites</span>
783- </div>
784- <div class="navigation">
785- <ul>
786- <li>
787- Accessories
788- </li>
789- <li>
790- Developer Tools
791- </li>
792- <li>
793- Education
794- </li>
795- <li>
796- Fonts
797- </li>
798- <li>
799- Games
800- </li>
801- <li>
802- Graphics
803- </li>
804- <li>
805- Internet
806- </li>
807- <li>
808- Office
809- </li>
810- <li>
811- Science &amp; Engineering
812- </li>
813- <li>
814- Sound &amp; Video
815- </li>
816- <li>
817- System
818- </li>
819- <li>
820- Themes &amp; Tweaks
821- </li>
822- </ul>
823- </div>
824- <div class="whats-new">
825- <h2> What's New</h2>
826- <div class="app-container">
827- <div class="chromium">
828- <h3>Chromium</h3>
829- <p>
830- Internet
831- </p>
832- <p class="cost">
833- Free
834- </p>
835- </div>
836- <div class="beep">
837- <h3>BEEP</h3>
838- <p>
839- Games
840- </p>
841- <p class="cost">
842- $9.99
843- </p>
844- </div>
845- <div class="inkscape">
846- <h3>Inkscape</h3>
847- <p>
848- Graphics
849- </p>
850- <p class="cost">
851- Free
852- </p>
853- </div>
854- <div class="worldofgoo">
855- <h3>World of Goo</h3>
856- <p>
857- Games
858- </p>
859- <p class="cost">
860- $19.99
861- </p>
862- </div>
863- <div class="blender">
864- <h3>Blender</h3>
865- <p>
866- Graphics
867- </p>
868- <p class="cost">
869- Free
870- </p>
871- </div>
872- <div class="braid">
873- <h3>Braid</h3>
874- <p>
875- Games
876- </p>
877- <p class="cost">
878- $9.99
879- </p>
880- </div>
881- </div>
882- </div>
883- <div class="whats-new">
884- <h2> Top Rated</h2>
885- <div class="app-container">
886- <div class="beep">
887- <h3>BEEP</h3>
888- <p>
889- Games
890- </p>
891- <p class="cost">
892- $9.99
893- </p>
894- </div>
895- <div class="chromium">
896- <h3>Chromium</h3>
897- <p>
898- Internet
899- </p>
900- <p class="cost">
901- Free
902- </p>
903- </div>
904- <div class="worldofgoo">
905- <h3>World of Goo</h3>
906- <p>
907- Games
908- </p>
909- <p class="cost">
910- $19.99
911- </p>
912- </div>
913- <div class="braid">
914- <h3>Braid</h3>
915- <p>
916- Games
917- </p>
918- <p class="cost">
919- $9.99
920- </p>
921- </div>
922- <div class="inkscape">
923- <h3>Inkscape</h3>
924- <p>
925- Graphics
926- </p>
927- <p class="cost">
928- Free
929- </p>
930- </div>
931- <div class="blender">
932- <h3>Blender</h3>
933- <p>
934- Graphics
935- </p>
936- <p class="cost">
937- Free
938- </p>
939- </div>
940- </div>
941- </div>
942- </div>
943- </div>
944- <div id="shotwell" class="shotwell window">
945- <div class="control">
946- <div class="close"></div>
947- <div class="min"></div>
948- <div class="max"></div>
949- <div class="window-title">
950- Shotwell
951- </div>
952- </div>
953- <div class="sidebar">
954- <div class="nav">
955- <ul>
956- <li class="library">
957- Library
958- </li>
959- </ul>
960- </div>
961- <div class="details">
962- <div class="overall">
963- <div>
964- Items: <span class="items">16 Photos</span>
965- </div>
966- <div>
967- Starting: <span class="from">Fri 26 Oct, 2001</span>
968- </div>
969- <div>
970- Ending: <span class="to">Mon 11 October, 2010</span>
971- </div>
972- </div>
973- <div class="single">
974- <div>
975- Title: <span class="title"></span>
976- </div>
977- <div>
978- Date: <span class="date"></span>
979- </div>
980- <div>
981- Size: <span class="size"></span>
982- </div>
983- </div>
984- </div>
985- </div>
986- <div class="container">
987- <div class="images"></div>
988- <div class="tools">
989- <div class="jump-image">
990- <div class="next"></div><div class="prev"></div>
991- </div>
992- <div class="slider-container">
993- <div class="small-icon"></div><div class="slider"></div><div class="slider-active"></div><div class="large-icon"></div>
994- </div>
995- </div>
996- </div>
997- </div>
998- <div id="movieplayer" class="movieplayer window">
999- <div class="control">
1000- <div class="close"></div>
1001- <div class="min"></div>
1002- <div class="max"></div>
1003- <div class="window-title">
1004- Movie Player
1005- </div>
1006- </div>
1007- <div class="container">
1008- <div class="video"></div>
1009- </div>
1010- </div>
1011- <div id="firefox-window" class="firefox-window window">
1012- <div class="control">
1013- <div class="close"></div>
1014- <div class="min"></div>
1015- <div class="max"></div>
1016- <div class="window-title">
1017- Browse the web
1018- </div>
1019- </div>
1020- <div class="buttons">
1021- <div class="firefox-back"></div>
1022- <div class="firefox-forward"></div>
1023- <div class="firefox-url">
1024- <input type="text" name="submitURL" id="submitURL" value="http://www.ubuntu.com"/>
1025- </div>
1026- <div class="firefox-search">
1027- <input type="text" name="submitSearch" id="submitSearch" value="Wikipedia" class="fade-text"/>
1028- </div>
1029- </div>
1030- <div style="clear:both;"></div>
1031- <div class="firefox-internet">
1032- <div class="web-overlay-tran"></div>
1033- <div class="theIframe">
1034- <iframe src="http://start.ubuntu.com" id="firefoxInternet" >
1035- <p>
1036- Your browser does not support iframes.
1037- </p>
1038- </iframe>
1039- </div>
1040- </div>
1041- </div>
1042- <div id="shutdown-window" class="window">
1043- <div class="control">
1044- <div class="close"></div>
1045- <div class="window-title">
1046- Shut Down
1047- </div>
1048- </div>
1049- <div class="content">
1050- <img src="../img/powerwarning.jpg" alt=""/>
1051- <div class="message">
1052- <p>
1053- Are you sure you want to close all programs and shutdown the computer?
1054- </p>
1055- </div>
1056- <div class="shutdown-buttons">
1057- <div class="shutdown highlight">
1058- Shut Down
1059- </div>
1060- <div class="cancel">
1061- Cancel
1062- </div>
1063- </div>
1064- </div>
1065- </div>
1066- <div id="folder-window" class="folder window">
1067- <div class="control">
1068- <div class="close"></div>
1069- <div class="min"></div>
1070- <div class="max"></div>
1071- <div class="window-title"></div>
1072- </div>
1073-
1074- <div class="buttons">
1075- <div class="folder-back"></div>
1076- <div class="folder-forward"></div>
1077- </div>
1078- <div class="bottom-buttons"></div>
1079- <div style="clear:both;"></div>
1080- <div class="folder-flex-container">
1081- <div class="folder-list">
1082- <div class="list">
1083- <p>
1084- Places
1085- </p>
1086- <ul>
1087- <li class="home selected" data-folder="home">Home</li>
1088- <li class="desktop" data-folder="5">Desktop</li>
1089- <li class="documents" data-folder="0">Documents</li>
1090- <li class="downloads" data-folder="1">Downloads</li>
1091- <li class="music" data-folder="2">Music</li>
1092- <li class="pictures" data-folder="4">Pictures</li>
1093- <li class="videos" data-folder="3">Videos</li>
1094- <li class="rubbish" data-folder="bin">Rubbish bin</li>
1095- </ul>
1096- </div>
1097- </div>
1098- <div class="folder-contents">
1099- <div class="contents"></div>
1100- <div class="selected-details"></div>
1101- </div>
1102- </div>
1103- </div>
1104- <div id="welcome">
1105- <div id="welcome-screen" class="selected-window">
1106- <div class="control">
1107- <div class="window-title">Ubuntu tour</div>
1108- </div>
1109- <div class="welcome-header">
1110- <h1>Welcome to the Ubuntu 14.04 tour!</h1>
1111- <h2>Take Ubuntu for a test drive with our online demo.</h2>
1112- </div>
1113- <ul>
1114- <li>
1115- <a class="browse-files" href="#browse-files">Browse files</a>
1116- </li>
1117- <li>
1118- <a class="check-email" href="#check-email">Check email</a>
1119- </li>
1120- <li>
1121- <a class="surf-the-web" href="#surf-the-web">Surf the web</a>
1122- </li>
1123- <li>
1124- <a class="find-apps" href="#find-apps">Find apps</a>
1125- </li>
1126- <li>
1127- <a class="create-documents" href="#create-documents">Create documents</a>
1128- </li>
1129- <li>
1130- <a class="view-photos" href="#view-photos">View photos</a>
1131- </li>
1132- <li>
1133- <a class="create-presentations" href="#create-presentations">Create presentations</a>
1134- </li>
1135- <li>
1136- <a class="create-spreadsheets" href="#create-spreadsheets">Create spreadsheets</a>
1137- </li>
1138- <li>
1139- <a class="watch-video" href="#watch-video">Watch videos</a>
1140- </li>
1141- </ul>
1142- <div class="language-mode">
1143- <span class="active">English</span>
1144- <a href="/zh-CN/">中文</a>
1145- </div>
1146- <a class="explore-mode primary" href="#">Show yourself around</a>
1147- <a class="tour-mode" href="#">Take the guided tour</a>
1148- </div>
1149- </div>
1150- <div id="tour-guide">
1151- <div class="next-button">&rsaquo;</div>
1152- <div class="prev-button">&lsaquo;</div>
1153- <div class="guide-container welcome">
1154- <div class="guide-logo"><img src="../img/tourguide/back-to-welcome.png" /></div>
1155- <h3>Ubuntu online tour</h3>
1156- <p>
1157- We hope you've enjoyed the Ubuntu online tour. <a href="http://www.ubuntu.com/download/ubuntu/download?utm_source=tour&utm_medium=online&utm_campaign=tour" target="_blank">Ready to download?</a> or <a href="http://www.ubuntu.com/desktop/take-the-tour" >back to the site</a>
1158- </p>
1159- </div>
1160- <div class="guide-container home">
1161- <div class="guide-logo"><img src="../img/tourguide/file-small.png" />
1162- </div>
1163- <h3>Browse files</h3>
1164- <p>
1165- It’s quick and easy to access your folders and files from Ubuntu’s home folder.
1166- </p>
1167- </div>
1168- <div class="guide-container firefox">
1169- <div class="guide-logo"><img src="../img/tourguide/firefox-small.png" />
1170- </div>
1171- <h3>Surf the web</h3>
1172- <p>
1173- Browsing the web is fast and secure with Ubuntu and Firefox.
1174- </p>
1175- </div>
1176- <div class="guide-container email">
1177- <div class="guide-logo"><img src="../img/tourguide/mail-small.png" />
1178- </div>
1179- <h3>Check email</h3>
1180- <p>
1181- Read, write and send emails with Thunderbird. It’s easy and fast.
1182- </p>
1183- </div>
1184- <div class="guide-container shotwell">
1185- <div class="guide-logo"><img src="../img/tourguide/shotwell-small.png" />
1186- </div>
1187- <h3>View photos</h3>
1188- <p>
1189- You can upload, organise, edit and share your photos with Shotwell.
1190- </p>
1191- </div>
1192- <div class="guide-container software">
1193- <div class="guide-logo"><img src="../img/tourguide/apps-small.png" />
1194- </div>
1195- <h3>Find apps</h3>
1196- <p>
1197- Search and download apps fast from the Ubuntu Software Centre.
1198- </p>
1199- </div>
1200- <div class="guide-container writer">
1201- <div class="guide-logo"><img src="../img/tourguide/document-small.png" />
1202- </div>
1203- <h3>Create documents</h3>
1204- <p>
1205- LibreOffice Writer makes it easy to draft professional documents.
1206- </p>
1207- </div>
1208- <div class="guide-container calc">
1209- <div class="guide-logo"><img src="../img/tourguide/calc-small.png" />
1210- </div>
1211- <h3>Create spreadsheets</h3>
1212- <p>
1213- LibreOffice Calc has everything you need to create clear and accurate spreadsheets.
1214- </p>
1215- </div>
1216- <div class="guide-container impress">
1217- <div class="guide-logo"><img src="../img/tourguide/impress-small.png" />
1218- </div>
1219- <h3>Create presentations</h3>
1220- <p>
1221- Make a good impression with the intuitive LibreOffice Impress presentation tool.
1222- </p>
1223- </div>
1224- <div class="guide-container movieplayer">
1225- <div class="guide-logo"><img src="../img/tourguide/video-small.png" />
1226- </div>
1227- <h3>Watch videos</h3>
1228- <p>
1229- You can watch all your favourite films and videos, DVDs, downloads or movies you've created yourself.
1230- </p>
1231- </div>
1232- <div class=" tour-buttons">
1233- <div class="explore-to-welcome">Welcome screen</div>
1234- <div class="explore-to-download">Download Ubuntu</div>
1235- <div class="explore-to-exit">Exit the Tour</div>
1236- </div>
1237- </div>
1238- <div id="Translation-Strings">
1239- <!--
1240+ <div class="email-search"><input type="text" name="submitEmailSearch" id="submitEmailSearch"/></div>--></div><div style="clear:both"></div><div class="email-content"><div class="folder-list"><div class="bottom-buttons">All Folders</div><div style="clear:both"></div><div class="list"><div id="folder-inbox" class="selected"><img src="../img/email/inbox.png" alt=""> Inbox</div><div id="folder-draft"><img src="../img/email/drafts.png" alt=""> Draft</div><div id="folder-sent"><img src="../img/email/sent.png" alt=""> Sent</div><div id="folder-archive"><img src="../img/email/archive-logo.png" alt=""> Archive</div><div id="folder-trash"><img src="../img/email/trash.png" alt=""> Trash</div></div></div><div class="email-contents"><div class="email-categories"><div><img src="../img/email/t.png" alt=""></div><div><img src="../img/email/star.png" alt=""></div><div><img src="../img/email/clip.png" alt=""></div><div class="subject">Subject</div><div><img src="../img/email/glasses.png" alt=""></div><div class="from">From</div><div><img src="../img/email/fire.png" alt=""></div><div class="date">Date</div></div><div style="clear:both"></div><div class="email-list"></div><div class="email-body"><div class="message-header"><div class="email-buttons"><div><span class="message-reply">reply</span> <span class="message-forward">forward</span> <span class="message-archive">archive</span> <span class="message-junk">junk</span> <span class="message-delete">delete</span></div></div><div style="clear:both"></div><div class="date"></div><dl class="from"><dt>from</dt><dd></dd></dl><dl class="subject"><dt>subject</dt><dd></dd></dl><dl class="to"><dt>to</dt><dd></dd></dl><dl class="cc"><dt>cc</dt><dd></dd></dl></div><div class="junk-mail-banner"><img src="../img/email/large-fire.jpg" alt=""> Junk Mail<div class="not-junk">Not Junk</div></div><div class="message-body"></div></div></div><div style="clear:both"></div><div class="emails-info"><div>Unread: <span id="details-unread">1</span> Total: <span id="details-total">1</span></div></div></div></div><div id="email-write" class="email-write window"><div class="control"><div class="close"></div><div class="min"></div><div class="max"></div><div class="window-title">Write: (no subject)</div></div><div class="buttons"><div id="write-send">Send</div><div class="email-divider"></div><div id="write-attach">Attach</div></div><div style="clear:both"></div><div id="write-from"><div>From:</div><input type="text" name="from" value="You"></div><div id="write-to"><div>To:</div><input type="text" name="to"></div><div id="write-subject"><div>Subject:</div><input type="text" name="subject"></div><div><img src="../img/email/disabled-format-buttons.jpg" width="853" height="32" alt=""></div><div id="write-body"><textarea name="body"></textarea></div><div class="loading-bar"><div class="progress"></div></div></div><div id="software-centre" class="software window"><div class="control"><div class="close"></div><div class="min"></div><div class="max"></div><div class="window-title">Ubuntu Software Centre</div></div><div class="top-panel"><div class="back disabled"></div><div class="forward disabled"></div><div class="all-software selected"><img src="../img/software-centre/all-software.png" alt="">All Software</div><div class="installed"><img src="../img/software-centre/installed.png" alt="">Installed</div><div class="history"><img src="../img/software-centre/history.png" alt="">History</div></div><div class="container detailed"><div class="title"><img src="../img/software-centre/visolate.png" class="app-image" width="100" alt=""><h1>Visolate</h1><p class="subheading">PCB CNC converter</p><p class="rating"><img src="../img/software-centre/rating.jpg" alt=""> (91 Ratings)</p></div><div class="price"><span class="theprice">Free</span><span class="button">Install</span><div class="loading-bar"><div class="progress"></div></div></div><div class="description-container"><div class="description-image"><img src="../img/software-centre/screenshot-blender.jpg" alt=""></div><div class="description"><img src="../img/software-centre/screenshot-blender.jpg" alt="">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse quam augue, convallis id commodo id, tristique ac mi. Ut dapibus, neque eget elementum pretium, nunc turpis congue eros, et interdum nisi nisi at diam. Duis dictum, justo eget imperdiet pulvinar, dolor est fermentum nisl, luctus imperdiet metus elit a purus. Quisque nisl enim, lacinia ut venenatis in, porttitor eget orci. Quisque non nibh nec risus tincidunt sollicitudin vitae et nisl. Proin odio lacus, vulputate non auctor sit amet, dapibus quis tortor. Donec elit libero, pellentesque quis dictum sed, hendrerit non libero. Aliquam eu diam id leo auctor tincidunt. Phasellus cursus felis at nulla facilisis semper. Cras mauris urna, adipiscing sed scelerisque ut, gravida id neque. Mauris ut vestibulum justo. Curabitur convallis elementum pellentesque. Duis sit amet arcu ac eros pretium scelerisque. Nunc nec nisi nulla.</div><div style="clear:both"></div></div></div><div class="container home"><div class="header-image"><span class="header-title">Our star apps</span> <span class="header-subtitle">Come and explore our favourites</span></div><div class="navigation"><ul><li>Accessories</li><li>Developer Tools</li><li>Education</li><li>Fonts</li><li>Games</li><li>Graphics</li><li>Internet</li><li>Office</li><li>Science &amp; Engineering</li><li>Sound &amp; Video</li><li>System</li><li>Themes &amp; Tweaks</li></ul></div><div class="whats-new"><h2>What's New</h2><div class="app-container"><div class="chromium"><h3>Chromium</h3><p>Internet</p><p class="cost">Free</p></div><div class="beep"><h3>BEEP</h3><p>Games</p><p class="cost">$9.99</p></div><div class="inkscape"><h3>Inkscape</h3><p>Graphics</p><p class="cost">Free</p></div><div class="worldofgoo"><h3>World of Goo</h3><p>Games</p><p class="cost">$19.99</p></div><div class="blender"><h3>Blender</h3><p>Graphics</p><p class="cost">Free</p></div><div class="braid"><h3>Braid</h3><p>Games</p><p class="cost">$9.99</p></div></div></div><div class="whats-new"><h2>Top Rated</h2><div class="app-container"><div class="beep"><h3>BEEP</h3><p>Games</p><p class="cost">$9.99</p></div><div class="chromium"><h3>Chromium</h3><p>Internet</p><p class="cost">Free</p></div><div class="worldofgoo"><h3>World of Goo</h3><p>Games</p><p class="cost">$19.99</p></div><div class="braid"><h3>Braid</h3><p>Games</p><p class="cost">$9.99</p></div><div class="inkscape"><h3>Inkscape</h3><p>Graphics</p><p class="cost">Free</p></div><div class="blender"><h3>Blender</h3><p>Graphics</p><p class="cost">Free</p></div></div></div></div></div><div id="shotwell" class="shotwell window"><div class="control"><div class="close"></div><div class="min"></div><div class="max"></div><div class="window-title">Shotwell</div></div><div class="sidebar"><div class="nav"><ul><li class="library">Library</li></ul></div><div class="details"><div class="overall"><div>Items: <span class="items">16 Photos</span></div><div>Starting: <span class="from">Fri 26 Oct, 2001</span></div><div>Ending: <span class="to">Mon 11 October, 2010</span></div></div><div class="single"><div>Title: <span class="title"></span></div><div>Date: <span class="date"></span></div><div>Size: <span class="size"></span></div></div></div></div><div class="container"><div class="images"></div><div class="tools"><div class="jump-image"><div class="next"></div><div class="prev"></div></div><div class="slider-container"><div class="small-icon"></div><div class="slider"></div><div class="slider-active"></div><div class="large-icon"></div></div></div></div></div><div id="movieplayer" class="movieplayer window"><div class="control"><div class="close"></div><div class="min"></div><div class="max"></div><div class="window-title">Movie Player</div></div><div class="container"><div class="video"></div></div></div><div id="firefox-window" class="firefox-window window"><div class="control"><div class="close"></div><div class="min"></div><div class="max"></div><div class="window-title">Browse the web</div></div><div class="buttons"><div class="firefox-back"></div><div class="firefox-forward"></div><div class="firefox-url"><input type="text" name="submitURL" id="submitURL" value="http://www.ubuntu.com"></div><div class="firefox-search"><input type="text" name="submitSearch" id="submitSearch" value="Wikipedia" class="fade-text"></div></div><div style="clear:both"></div><div class="firefox-internet"><div class="web-overlay-tran"></div><div class="theIframe"><iframe src="http://start.ubuntu.com" id="firefoxInternet"><p>Your browser does not support iframes.</p></iframe></div></div></div><div id="shutdown-window" class="window"><div class="control"><div class="close"></div><div class="window-title">Shut Down</div></div><div class="content"><img src="../img/powerwarning.jpg" alt=""><div class="message"><p>Are you sure you want to close all programs and shutdown the computer?</p></div><div class="shutdown-buttons"><div class="shutdown highlight">Shut Down</div><div class="cancel">Cancel</div></div></div></div><div id="folder-window" class="folder window"><div class="control"><div class="close"></div><div class="min"></div><div class="max"></div><div class="window-title"></div></div><div class="buttons"><div class="folder-back"></div><div class="folder-forward"></div></div><div class="bottom-buttons"></div><div style="clear:both"></div><div class="folder-flex-container"><div class="folder-list"><div class="list"><p>Places</p><ul><li class="home selected" data-folder="home">Home</li><li class="desktop" data-folder="5">Desktop</li><li class="documents" data-folder="0">Documents</li><li class="downloads" data-folder="1">Downloads</li><li class="music" data-folder="2">Music</li><li class="pictures" data-folder="4">Pictures</li><li class="videos" data-folder="3">Videos</li><li class="rubbish" data-folder="bin">Rubbish bin</li></ul></div></div><div class="folder-contents"><div class="contents"></div><div class="selected-details"></div></div></div></div><div id="welcome"><div id="welcome-screen" class="selected-window"><div class="control"><div class="window-title">Ubuntu tour</div></div><div class="welcome-header"><h1>Welcome to the Ubuntu 14.04 tour!</h1><h2>Take Ubuntu for a test drive with our online demo.</h2></div><ul><li><a class="browse-files" href="#browse-files">Browse files</a></li><li><a class="check-email" href="#check-email">Check email</a></li><li><a class="surf-the-web" href="#surf-the-web">Surf the web</a></li><li><a class="find-apps" href="#find-apps">Find apps</a></li><li><a class="create-documents" href="#create-documents">Create documents</a></li><li><a class="view-photos" href="#view-photos">View photos</a></li><li><a class="create-presentations" href="#create-presentations">Create presentations</a></li><li><a class="create-spreadsheets" href="#create-spreadsheets">Create spreadsheets</a></li><li><a class="watch-video" href="#watch-video">Watch videos</a></li></ul><div class="language-mode"><span class="active">English</span> <a href="/zh-CN/">中文</a></div><a class="explore-mode primary" href="#">Show yourself around</a> <a class="tour-mode" href="#">Take the guided tour</a></div></div><div id="tour-guide"><div class="next-button">&rsaquo;</div><div class="prev-button">&lsaquo;</div><div class="guide-container welcome"><div class="guide-logo"><img src="../img/tourguide/back-to-welcome.png"></div><h3>Ubuntu online tour</h3><p>We hope you've enjoyed the Ubuntu online tour. <a href="http://www.ubuntu.com/download/ubuntu/download?utm_source=tour&utm_medium=online&utm_campaign=tour" target="_blank">Ready to download?</a> or <a href="http://www.ubuntu.com/desktop/take-the-tour">back to the site</a></p></div><div class="guide-container home"><div class="guide-logo"><img src="../img/tourguide/file-small.png"></div><h3>Browse files</h3><p>It’s quick and easy to access your folders and files from Ubuntu’s home folder.</p></div><div class="guide-container firefox"><div class="guide-logo"><img src="../img/tourguide/firefox-small.png"></div><h3>Surf the web</h3><p>Browsing the web is fast and secure with Ubuntu and Firefox.</p></div><div class="guide-container email"><div class="guide-logo"><img src="../img/tourguide/mail-small.png"></div><h3>Check email</h3><p>Read, write and send emails with Thunderbird. It’s easy and fast.</p></div><div class="guide-container shotwell"><div class="guide-logo"><img src="../img/tourguide/shotwell-small.png"></div><h3>View photos</h3><p>You can upload, organise, edit and share your photos with Shotwell.</p></div><div class="guide-container software"><div class="guide-logo"><img src="../img/tourguide/apps-small.png"></div><h3>Find apps</h3><p>Search and download apps fast from the Ubuntu Software Centre.</p></div><div class="guide-container writer"><div class="guide-logo"><img src="../img/tourguide/document-small.png"></div><h3>Create documents</h3><p>LibreOffice Writer makes it easy to draft professional documents.</p></div><div class="guide-container calc"><div class="guide-logo"><img src="../img/tourguide/calc-small.png"></div><h3>Create spreadsheets</h3><p>LibreOffice Calc has everything you need to create clear and accurate spreadsheets.</p></div><div class="guide-container impress"><div class="guide-logo"><img src="../img/tourguide/impress-small.png"></div><h3>Create presentations</h3><p>Make a good impression with the intuitive LibreOffice Impress presentation tool.</p></div><div class="guide-container movieplayer"><div class="guide-logo"><img src="../img/tourguide/video-small.png"></div><h3>Watch videos</h3><p>You can watch all your favourite films and videos, DVDs, downloads or movies you've created yourself.</p></div><div class="tour-buttons"><div class="explore-to-welcome">Welcome screen</div><div class="explore-to-download">Download Ubuntu</div><div class="explore-to-exit">Exit the Tour</div></div></div><div id="Translation-Strings"><!--
1241 * Email system
1242- -->
1243- <p class="_email_1_title_">
1244- Accessible
1245- </p>
1246- <p class="_email_2_title_">
1247- Fast
1248- </p>
1249- <p class="_email_3_title_">
1250- Compatible
1251- </p>
1252- <p class="_email_4_title_">
1253- Secure
1254- </p>
1255- <p class="_email_5_title_">
1256- Your Ubuntu, your way
1257- </p>
1258- <p class="_email_1_body_">
1259- Accessibility is central to the Ubuntu philosophy. We believe that computing is for everyone regardless of nationality, race, gender or disability. Fully translated into 38 languages, Ubuntu also includes essential assistive technologies, which are, of course, completely free.
1260- </p>
1261- <p class="_email_2_body_">
1262- Ubuntu loads quickly on any computer, but it's super-fast on newer machines. With no unnecessary programs and trial software slowing things down, booting up and opening a browser takes seconds. Unlike other operating systems that leave you staring at the screen, waiting to get online. And Ubuntu won’t grow sluggish over time. It’s fast. And it stays fast.
1263- </p>
1264- <p class="_email_3_body_">
1265- Ubuntu works brilliantly with a range of devices. Simply plug in your mp3 player, camera or printer and you’ll be up and running straight away. No installation CDs. No fuss. And it’s compatible with Windows too! So you can open, edit and share Microsoft Office documents stress-free.
1266- </p>
1267- <p class="_email_4_body_">
1268- You can surf in safety with Ubuntu – confident that your files and data will stay protected. A built-in firewall and virus protection come as standard. And if a potential threat appears, we provide automatic updates which you can install in a single click. You get added security with AppArmor, which protects your important applications so attackers can’t access your system. And thanks to Firefox and gnome-keyring, Ubuntu helps you keep your private information private. So whether it’s accessing your bank account or sharing sensitive data with friends or colleagues, you’ll have peace of mind when you need it the most.
1269- </p>
1270- <p class="_email_5_body_">
1271- Enjoy the simplicity of Ubuntu's stylish, intuitive interface. Fast, secure and with thousands of apps to choose from, Ubuntu gives you a clean and streamlined experience that you can really make your own.
1272- </p>
1273- <p class="_random_reply_">
1274- Thanks for exploring Ubuntu! Remember, this is just a demo. You'll have to download it to enjoy the real thing!
1275- <br/>
1276- <br/>
1277- <a href="http://www.ubuntu.com/download/ubuntu/download?utm_source=tour&utm_medium=online&utm_campaign=tour" target="_blank">Download Ubuntu</a>
1278- </p>
1279- <p class="_write_">
1280- Write
1281- </p>
1282- <p class="_no_subject_">
1283- no subject
1284- </p>
1285- <p class="_recipient_">
1286- Recipient
1287- </p>
1288- <p class="_from_">
1289- From
1290- </p>
1291- <p class="_you_">
1292- You
1293- </p>
1294- <p class="_on_">
1295- On
1296- </p>
1297- <p class="_wrote_">
1298- wrote
1299- </p>
1300- <p class="_original_message_">
1301- Original Message
1302- </p>
1303- <p class="_fwd_">
1304- Fwd
1305- </p>
1306- <!--
1307+ --><p class="_email_1_title_">Accessible</p><p class="_email_2_title_">Fast</p><p class="_email_3_title_">Compatible</p><p class="_email_4_title_">Secure</p><p class="_email_5_title_">Your Ubuntu, your way</p><p class="_email_1_body_">Accessibility is central to the Ubuntu philosophy. We believe that computing is for everyone regardless of nationality, race, gender or disability. Fully translated into 38 languages, Ubuntu also includes essential assistive technologies, which are, of course, completely free.</p><p class="_email_2_body_">Ubuntu loads quickly on any computer, but it's super-fast on newer machines. With no unnecessary programs and trial software slowing things down, booting up and opening a browser takes seconds. Unlike other operating systems that leave you staring at the screen, waiting to get online. And Ubuntu won’t grow sluggish over time. It’s fast. And it stays fast.</p><p class="_email_3_body_">Ubuntu works brilliantly with a range of devices. Simply plug in your mp3 player, camera or printer and you’ll be up and running straight away. No installation CDs. No fuss. And it’s compatible with Windows too! So you can open, edit and share Microsoft Office documents stress-free.</p><p class="_email_4_body_">You can surf in safety with Ubuntu – confident that your files and data will stay protected. A built-in firewall and virus protection come as standard. And if a potential threat appears, we provide automatic updates which you can install in a single click. You get added security with AppArmor, which protects your important applications so attackers can’t access your system. And thanks to Firefox and gnome-keyring, Ubuntu helps you keep your private information private. So whether it’s accessing your bank account or sharing sensitive data with friends or colleagues, you’ll have peace of mind when you need it the most.</p><p class="_email_5_body_">Enjoy the simplicity of Ubuntu's stylish, intuitive interface. Fast, secure and with thousands of apps to choose from, Ubuntu gives you a clean and streamlined experience that you can really make your own.</p><p class="_random_reply_">Thanks for exploring Ubuntu! Remember, this is just a demo. You'll have to download it to enjoy the real thing!<br><br><a href="http://www.ubuntu.com/download/ubuntu/download?utm_source=tour&utm_medium=online&utm_campaign=tour" target="_blank">Download Ubuntu</a></p><p class="_write_">Write</p><p class="_no_subject_">no subject</p><p class="_recipient_">Recipient</p><p class="_from_">From</p><p class="_you_">You</p><p class="_on_">On</p><p class="_wrote_">wrote</p><p class="_original_message_">Original Message</p><p class="_fwd_">Fwd</p><!--
1308 * Folder System
1309- -->
1310- <p class="_home_folder_">
1311- Home
1312- </p>
1313- <p class="_desktop_folder_">
1314- Desktop
1315- </p>
1316- <p class="_pictures_folder_">
1317- Pictures
1318- </p>
1319- <p class="_videos_folder_">
1320- Videos
1321- </p>
1322- <p class="_music_folder_">
1323- Music
1324- </p>
1325- <p class="_downloads_folder_">
1326- Downloads
1327- </p>
1328- <p class="_documents_folder_">
1329- Documents
1330- </p>
1331- <p class="_canonical_folder_">
1332- Canonical
1333- </p>
1334- <p class="_backup_folder_">
1335- Backup
1336- </p>
1337- <p class="_local_folder_">
1338- Local
1339- </p>
1340- <p class="_work_folder_">
1341- work
1342- </p>
1343- <p class="_branches_folder_">
1344- branches
1345- </p>
1346- <p class="_rubbish_bin_folder_">
1347- Rubbish bin
1348- </p>
1349- <p class="_string_selected_">
1350- selected
1351- </p>
1352- <p class="_string_containing_">
1353- containing
1354- </p>
1355- <p class="_string_items_">
1356- items
1357- </p>
1358- <!--
1359+ --><p class="_home_folder_">Home</p><p class="_desktop_folder_">Desktop</p><p class="_pictures_folder_">Pictures</p><p class="_videos_folder_">Videos</p><p class="_music_folder_">Music</p><p class="_downloads_folder_">Downloads</p><p class="_documents_folder_">Documents</p><p class="_canonical_folder_">Canonical</p><p class="_backup_folder_">Backup</p><p class="_local_folder_">Local</p><p class="_work_folder_">work</p><p class="_branches_folder_">branches</p><p class="_rubbish_bin_folder_">Rubbish bin</p><p class="_string_selected_">selected</p><p class="_string_containing_">containing</p><p class="_string_items_">items</p><!--
1360 * Software Center System
1361- -->
1362- <p class="_remove_">
1363- Remove
1364- </p>
1365- <p class="_price_free_">
1366- Free
1367- </p>
1368- <p class="_installed_">
1369- Installed
1370- </p>
1371- <p class="_install_">
1372- Install
1373- </p>
1374- <p class="_installing_">
1375- Installing
1376- </p>
1377- <p class="_chromium_app_">
1378- Chromium Web Browser
1379- </p>
1380- <p class="_chromium_sub_">
1381- Access the Internet
1382- </p>
1383- <p class="_chromium_desc_">
1384- Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all Internet users to experience the web.
1385- <br/>
1386- <br/>
1387- Chromium serves as a base for Google Chrome, which is Chromium rebranded (name and logo) with very few additions such as usage tracking and an auto-updater system.
1388- <br/>
1389- <br/>
1390- This package contains the Chromium browser
1391- </p>
1392- <p class="_beep_app_">
1393- BEEP
1394- </p>
1395- <p class="_beep_sub_">
1396- A 2D platformer/shooter game with physics-based puzzles
1397- </p>
1398- <p class="_beep_desc_">
1399- BEEP is a 2D side-scrolling platformer with physics-based gameplay. You control a small robot equipped with an anti-gravity device, a jet-pack and a gun. Drive, jump, fly, swim and shoot your way through 24 levels scattered across 6 unique environments.
1400- <br/>
1401- <br/>
1402- Use BEEP’s anti-gravity device to directly manipulate the physics-based environments. The anti-gravity device is both a tool and a weapon. Use it to smash enemy robots, build towers and solve puzzles.
1403- <br/>
1404- <br/>
1405- BEEP has traveled for thousands of years through deep space to explore the Galaxy. Traverse a foreign star system with the BEEP-ship and send robots to the surface of the planets.
1406- </p>
1407- <p class="_inkscape_app_">
1408- Inkscape Vector Graphics Editor
1409- </p>
1410- <p class="_inkscape_sub_">
1411- Create and edit Scalable Vector Graphics images
1412- </p>
1413- <p class="_inkscape_desc_">
1414- Inkscape loads and saves a subset of the SVG (Scalable Vector Graphics) format, a standard maintained by the WWW consortium.
1415- <br/>
1416- <br/>
1417- Inkscape user interface should be familiar from CorelDraw and similar drawing programs. There are rectangles, ellipses, text items, bitmap images and freehand curves. As an added bonus, both vector and bitmap objects can have alpha transparency and can be arbitrarily transformed.
1418- <br/>
1419- <br/>
1420- Inkscape supports multiple opened files and multiple views per file. Graphics can be printed and exported to png bitmaps.
1421- <br/>
1422- <br/>
1423- Some of the import and export features are provided using the packages dia, libwmf-bin, pstoedit, skencil, imagemagick, and perlmagick.
1424- <br/>
1425- <br/>
1426- Other extensions use ruby, libxml-xql-perl, python-numpy, and python-lxml. You must have these packages to make full use of all extensions and effects.
1427- <br/>
1428- <br/>
1429- If you want to use the spellchecker, you have to install aspell and the respective language-pack, e.g. aspell-en or aspell-de.
1430- </p>
1431- <p class="_world_of_goo_app_">
1432- World of Goo
1433- </p>
1434- <p class="_world_of_goo_sub_">
1435- Physics based puzzle/construction game
1436- </p>
1437- <p class="_world_of_goo_desc_">
1438- Drag and drop living, squirming, talking globs of goo to build structures, bridges, cannonballs, zeppelins, and giant tongues. The millions of innocent goo balls that live in the beautiful World of Goo are curious to explore.
1439- <br/>
1440- <br/>
1441- But they don't know that they are in a game, or that they are extremely delicious. The most addicting and awe-inspiring puzzle game will set you on an adventure that you'll never forget!
1442- </p>
1443- <p class="_blender_app_">
1444- Blender
1445- </p>
1446- <p class="_blender_sub_">
1447- Create and edit 3D models and animations
1448- </p>
1449- <p class="_blender_desc_">
1450- Blender is an integrated 3d suite for modelling, animation, rendering, post-production, interactive creation and playback (games). Blender has its own particular user interface, which is implemented entirely in OpenGL and designed with speed in mind. Python bindings are available for scripting; import/export features for popular file formats like 3D Studio and Wavefront Obj are implemented as scripts by the community. Stills, animations, models for games or other third party engines and interactive content in the form of a standalone binary and/or a web plug-in are common products of Blender use.
1451- </p>
1452- <p class="_braid_app_">
1453- Braid
1454- </p>
1455- <p class="_braid_sub_">
1456- Manipulate the flow of time to solve puzzles!
1457- </p>
1458- <p class="_braid_desc_">
1459- Braid is a platform game in painterly style where you manipulate the flow of time to solve puzzles. Every puzzle in Braid is unique; there is no filler.
1460- <br/>
1461- <br/>
1462- Braid treats your time and attention as precious, and it does everything it can to give you a mind-expanding experience.
1463- <br/>
1464- <br/>
1465- All gameplay is based on time manipulation. Journey into worlds where time behaves strangely; observe, learn from, and then master these worlds.
1466- </p>
1467- <p class="_rhythmbox_app_">
1468- Rhythmbox Media Player
1469- </p>
1470- <p class="_brasero_app_">
1471- Brasero Disc Burner
1472- </p>
1473- <p class="_movie_player_app_">
1474- Movie Player
1475- </p>
1476- <p class="_shotwell_app_">
1477- Shotwell Photo Manager
1478- </p>
1479- <p class="_pitivi_app_">
1480- PiTiVi Video Editor
1481- </p>
1482- <p class="_sound_recorder_app_">
1483- Sound Recorder
1484- </p>
1485- <p class="_empathy_app_">
1486- Empathy Internet Messageing
1487- </p>
1488- <p class="_thunderbird_app_">
1489- Thunderbird Mail/News
1490- </p>
1491- <p class="_firefox_app_">
1492- Firefox Web Browser
1493- </p>
1494- <p class="_gwibber_app_">
1495- Gwibber Social Client
1496- </p>
1497- <p class="_remote_desktop_app_">
1498- Remote Desktop Viewer
1499- </p>
1500- <p class="_terminal_app_">
1501- Terminal Server Client
1502- </p>
1503- <p class="_ubuntu_one_app_">
1504- Ubuntu One
1505- </p>
1506- <p class="_ubuntu_software_center_app_">
1507- Ubuntu Software Center
1508- </p>
1509- <p class="_ubuntu_one_music_app_">
1510- Ubuntu One Music
1511- </p>
1512- <p class="_amazon_app_">
1513- Amazon
1514- </p>
1515- <p class="_about_me_app_">
1516- About Me
1517- </p>
1518- <p class="_additional_drivers_app_">
1519- Additional Drivers
1520- </p>
1521- <p class="_aisleroit_app_">
1522- AisleRoit Solitaire
1523- </p>
1524- <p class="_appearance_app_">
1525- Appearance
1526- </p>
1527- <p class="_bluetooth_app_">
1528- Bluetooth
1529- </p>
1530- <!--
1531+ --><p class="_remove_">Remove</p><p class="_price_free_">Free</p><p class="_installed_">Installed</p><p class="_install_">Install</p><p class="_installing_">Installing</p><p class="_chromium_app_">Chromium Web Browser</p><p class="_chromium_sub_">Access the Internet</p><p class="_chromium_desc_">Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all Internet users to experience the web.<br><br>Chromium serves as a base for Google Chrome, which is Chromium rebranded (name and logo) with very few additions such as usage tracking and an auto-updater system.<br><br>This package contains the Chromium browser</p><p class="_beep_app_">BEEP</p><p class="_beep_sub_">A 2D platformer/shooter game with physics-based puzzles</p><p class="_beep_desc_">BEEP is a 2D side-scrolling platformer with physics-based gameplay. You control a small robot equipped with an anti-gravity device, a jet-pack and a gun. Drive, jump, fly, swim and shoot your way through 24 levels scattered across 6 unique environments.<br><br>Use BEEP’s anti-gravity device to directly manipulate the physics-based environments. The anti-gravity device is both a tool and a weapon. Use it to smash enemy robots, build towers and solve puzzles.<br><br>BEEP has traveled for thousands of years through deep space to explore the Galaxy. Traverse a foreign star system with the BEEP-ship and send robots to the surface of the planets.</p><p class="_inkscape_app_">Inkscape Vector Graphics Editor</p><p class="_inkscape_sub_">Create and edit Scalable Vector Graphics images</p><p class="_inkscape_desc_">Inkscape loads and saves a subset of the SVG (Scalable Vector Graphics) format, a standard maintained by the WWW consortium.<br><br>Inkscape user interface should be familiar from CorelDraw and similar drawing programs. There are rectangles, ellipses, text items, bitmap images and freehand curves. As an added bonus, both vector and bitmap objects can have alpha transparency and can be arbitrarily transformed.<br><br>Inkscape supports multiple opened files and multiple views per file. Graphics can be printed and exported to png bitmaps.<br><br>Some of the import and export features are provided using the packages dia, libwmf-bin, pstoedit, skencil, imagemagick, and perlmagick.<br><br>Other extensions use ruby, libxml-xql-perl, python-numpy, and python-lxml. You must have these packages to make full use of all extensions and effects.<br><br>If you want to use the spellchecker, you have to install aspell and the respective language-pack, e.g. aspell-en or aspell-de.</p><p class="_world_of_goo_app_">World of Goo</p><p class="_world_of_goo_sub_">Physics based puzzle/construction game</p><p class="_world_of_goo_desc_">Drag and drop living, squirming, talking globs of goo to build structures, bridges, cannonballs, zeppelins, and giant tongues. The millions of innocent goo balls that live in the beautiful World of Goo are curious to explore.<br><br>But they don't know that they are in a game, or that they are extremely delicious. The most addicting and awe-inspiring puzzle game will set you on an adventure that you'll never forget!</p><p class="_blender_app_">Blender</p><p class="_blender_sub_">Create and edit 3D models and animations</p><p class="_blender_desc_">Blender is an integrated 3d suite for modelling, animation, rendering, post-production, interactive creation and playback (games). Blender has its own particular user interface, which is implemented entirely in OpenGL and designed with speed in mind. Python bindings are available for scripting; import/export features for popular file formats like 3D Studio and Wavefront Obj are implemented as scripts by the community. Stills, animations, models for games or other third party engines and interactive content in the form of a standalone binary and/or a web plug-in are common products of Blender use.</p><p class="_braid_app_">Braid</p><p class="_braid_sub_">Manipulate the flow of time to solve puzzles!</p><p class="_braid_desc_">Braid is a platform game in painterly style where you manipulate the flow of time to solve puzzles. Every puzzle in Braid is unique; there is no filler.<br><br>Braid treats your time and attention as precious, and it does everything it can to give you a mind-expanding experience.<br><br>All gameplay is based on time manipulation. Journey into worlds where time behaves strangely; observe, learn from, and then master these worlds.</p><p class="_rhythmbox_app_">Rhythmbox Media Player</p><p class="_brasero_app_">Brasero Disc Burner</p><p class="_movie_player_app_">Movie Player</p><p class="_shotwell_app_">Shotwell Photo Manager</p><p class="_pitivi_app_">PiTiVi Video Editor</p><p class="_sound_recorder_app_">Sound Recorder</p><p class="_empathy_app_">Empathy Internet Messageing</p><p class="_thunderbird_app_">Thunderbird Mail/News</p><p class="_firefox_app_">Firefox Web Browser</p><p class="_gwibber_app_">Gwibber Social Client</p><p class="_remote_desktop_app_">Remote Desktop Viewer</p><p class="_terminal_app_">Terminal Server Client</p><p class="_ubuntu_one_app_">Ubuntu One</p><p class="_ubuntu_software_center_app_">Ubuntu Software Center</p><p class="_ubuntu_one_music_app_">Ubuntu One Music</p><p class="_amazon_app_">Amazon</p><p class="_about_me_app_">About Me</p><p class="_additional_drivers_app_">Additional Drivers</p><p class="_aisleroit_app_">AisleRoit Solitaire</p><p class="_appearance_app_">Appearance</p><p class="_bluetooth_app_">Bluetooth</p><!--
1532 * Dash
1533- -->
1534- <p class="_search_">Search your computer and online sources</p>
1535- <!--
1536+ --><p class="_search_">Search your computer and online sources</p><!--
1537 * Notifications
1538- -->
1539- <p class="_turn_off_bluetooth_">
1540- Turn Off Bluetooth
1541- </p>
1542- <p class="_turn_on_bluetooth_">
1543- Turn On Bluetooth
1544- </p>
1545- <p class="_visible_">
1546- Visible
1547- </p>
1548- <p class="_mute_">
1549- Mute
1550- </p>
1551- <p class="_unmute_">
1552- Unmute
1553- </p>
1554- <p class="_shut_down_">
1555- Shut Down…
1556- </p>
1557- <!--
1558+ --><p class="_turn_off_bluetooth_">Turn Off Bluetooth</p><p class="_turn_on_bluetooth_">Turn On Bluetooth</p><p class="_visible_">Visible</p><p class="_mute_">Mute</p><p class="_unmute_">Unmute</p><p class="_shut_down_">Shut Down…</p><!--
1559 Files Details - Images
1560- -->
1561- <p class="_photo_size_">
1562- 15.2KB
1563- </p>
1564- <p class="_photo_date_">
1565- Fri 26 Oct, 2001
1566- </p>
1567- <p class="_buck_off_title_">
1568- Buck Off
1569- </p>
1570- <p class="_darkening_clockwork_title_">
1571- Darkening Clockwork
1572- </p>
1573- <p class="_dybbølsbro_station_title_">
1574- Dybbølsbro Station
1575- </p>
1576- <p class="_federica_miglio_title_">
1577- Federica Miglio
1578- </p>
1579- <p class="_jardin_polar_title_">
1580- Jardin Polar
1581- </p>
1582- <p class="_langelinie_alle_title_">
1583- Langelinie Alle
1584- </p>
1585- <p class="_momiji_dream_title_">
1586- Momiji Dream
1587- </p>
1588- <p class="_mount_snowdon_title_">
1589- Mount Snowdon
1590- </p>
1591- <p class="_not_alone_title_">
1592- Not Alone
1593- </p>
1594- <p class="_power_of_words_title_">
1595- Power Of Words
1596- </p>
1597- <p class="_purple_dancers_title_">
1598- Purple Dancers
1599- </p>
1600- <p class="_sand_maze_title_">
1601- Sand Maze
1602- </p>
1603- <p class="_small_flowers_title_">
1604- Small Flowers
1605- </p>
1606- <p class="_stalking_ocelot_title_">
1607- Stalking Ocelot
1608- </p>
1609- <p class="_the_grass_aint_greener_title_">
1610- The Grass Aint Greener
1611- </p>
1612- <p class="_wildWheat_title_">
1613- WildWheat
1614- </p>
1615- <!--
1616+ --><p class="_photo_size_">15.2KB</p><p class="_photo_date_">Fri 26 Oct, 2001</p><p class="_buck_off_title_">Buck Off</p><p class="_darkening_clockwork_title_">Darkening Clockwork</p><p class="_dybbølsbro_station_title_">Dybbølsbro Station</p><p class="_federica_miglio_title_">Federica Miglio</p><p class="_jardin_polar_title_">Jardin Polar</p><p class="_langelinie_alle_title_">Langelinie Alle</p><p class="_momiji_dream_title_">Momiji Dream</p><p class="_mount_snowdon_title_">Mount Snowdon</p><p class="_not_alone_title_">Not Alone</p><p class="_power_of_words_title_">Power Of Words</p><p class="_purple_dancers_title_">Purple Dancers</p><p class="_sand_maze_title_">Sand Maze</p><p class="_small_flowers_title_">Small Flowers</p><p class="_stalking_ocelot_title_">Stalking Ocelot</p><p class="_the_grass_aint_greener_title_">The Grass Aint Greener</p><p class="_wildWheat_title_">WildWheat</p><!--
1617 Files Details - Video
1618- -->
1619- <p class="_introduction_ubuntu_title_">
1620- Introduction Ubuntu
1621- </p>
1622- <p class="_video_size_">
1623- 5.3MB
1624- </p>
1625- <p class="_video_date_">
1626- Mon 11 October, 2010
1627- </p>
1628- <!--
1629+ --><p class="_introduction_ubuntu_title_">Introduction Ubuntu</p><p class="_video_size_">5.3MB</p><p class="_video_date_">Mon 11 October, 2010</p><!--
1630 Files Details - Music
1631- -->
1632- <p class="_Happiness_title_">
1633- Happiness
1634- </p>
1635- <p class="_music_size_">
1636- 3.3MB
1637- </p>
1638- <p class="_music_date_">
1639- Weds 14 October, 2010
1640- </p>
1641- <!--
1642+ --><p class="_Happiness_title_">Happiness</p><p class="_music_size_">3.3MB</p><p class="_music_date_">Weds 14 October, 2010</p><!--
1643 Error Container
1644- -->
1645- <p class="_download_cta_">
1646- Download Ubuntu
1647- </p>
1648- </div>
1649- <script type="text/javascript" src="../js/jquery.min.js"></script>
1650- <script type="text/javascript" src="../js/jquery-ui.min.js"></script>
1651- <script type="text/javascript" src="../js/lang.js"></script>
1652- <script type="text/javascript" src="../js/scripts.js"></script>
1653- <script type="text/javascript" src="../js/welcomesystem.js"></script>
1654- <script type="text/javascript" src="../js/guidedtoursystem.js"></script>
1655- <script type="text/javascript" src="../js/filesystem.js"></script>
1656- <script type="text/javascript" src="../js/folders.js"></script>
1657- <script type="text/javascript" src="../js/systemoverlay.js"></script>
1658- <script type="text/javascript" src="../js/systemmenu.js"></script>
1659- <script type="text/javascript" src="../js/internetsystem.js"></script>
1660- <script type="text/javascript" src="../js/emailsystem.js"></script>
1661- <script type="text/javascript" src="../js/systemsettings.js"></script>
1662- <script type="text/javascript" src="../js/email.js"></script>
1663- <script type="text/javascript" src="../js/errormessage.js"></script>
1664- <script type="text/javascript" src="../js/ubuntuonesystem.js"></script>
1665- <script type="text/javascript" src="../js/file.js"></script>
1666- <script type="text/javascript" src="../js/shotwellsystem.js"></script>
1667- <script type="text/javascript" src="../js/shutdownSystem.js"></script>
1668- <script type="text/javascript" src="../js/movieplayersystem.js"></script>
1669- <script type="text/javascript" src="../js/libresystem.js"></script>
1670- <script type="text/javascript" src="../js/softwaresystem.js"></script>
1671- <script type="text/javascript" src="../js/notificationsystem.js"></script>
1672- <script type="text/javascript" src="../js/analytics.js"></script>
1673- </body>
1674-</html>
1675+ --><p class="_download_cta_">Download Ubuntu</p></div><script type="text/javascript" src="../js/jquery.min.js"></script><script type="text/javascript" src="../js/jquery-ui.min.js"></script><script type="text/javascript" src="../js/lang.js"></script><script type="text/javascript" src="../js/scripts.js"></script><script type="text/javascript" src="../js/welcomesystem.js"></script><script type="text/javascript" src="../js/guidedtoursystem.js"></script><script type="text/javascript" src="../js/filesystem.js"></script><script type="text/javascript" src="../js/folders.js"></script><script type="text/javascript" src="../js/systemoverlay.js"></script><script type="text/javascript" src="../js/systemmenu.js"></script><script type="text/javascript" src="../js/internetsystem.js"></script><script type="text/javascript" src="../js/emailsystem.js"></script><script type="text/javascript" src="../js/systemsettings.js"></script><script type="text/javascript" src="../js/email.js"></script><script type="text/javascript" src="../js/errormessage.js"></script><script type="text/javascript" src="../js/ubuntuonesystem.js"></script><script type="text/javascript" src="../js/file.js"></script><script type="text/javascript" src="../js/shotwellsystem.js"></script><script type="text/javascript" src="../js/shutdownSystem.js"></script><script type="text/javascript" src="../js/movieplayersystem.js"></script><script type="text/javascript" src="../js/libresystem.js"></script><script type="text/javascript" src="../js/softwaresystem.js"></script><script type="text/javascript" src="../js/notificationsystem.js"></script><script type="text/javascript" src="../js/analytics.js"></script></body></html>
1676\ No newline at end of file
1677
1678=== added directory 'en/src'
1679=== added file 'en/src/index.html'
1680--- en/src/index.html 1970-01-01 00:00:00 +0000
1681+++ en/src/index.html 2016-01-12 12:40:40 +0000
1682@@ -0,0 +1,1519 @@
1683+<!DOCTYPE html>
1684+<html lang="en" dir="ltr">
1685+ <head>
1686+ <title>Ubuntu online tour</title>
1687+ <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
1688+ <meta charset="UTF-8" />
1689+ <meta name="description" content="Enjoy the simplicity of Ubuntu's stylish, intuitive interface. Take Ubuntu for a test drive with our online tour and download when you're ready!" />
1690+ <meta name="keywords" content="ubuntu, ubuntu online, ubuntu tour" />
1691+ <link rel="stylesheet" href="../css/style.min.css" type="text/css" />
1692+ <!--[if IE 8]>
1693+ <link rel="stylesheet" href="../css/iefix.css" type="text/css" />
1694+ <![endif]-->
1695+ <link href='http://fonts.googleapis.com/css?family=Ubuntu:300,400,700' rel='stylesheet' type='text/css' />
1696+ <script type="text/javascript">
1697+ WebFontConfig = {
1698+ google : {
1699+ families : ['Ubuntu:400,700:latin']
1700+ }
1701+ }; (function() {
1702+ var wf = document.createElement('script');
1703+ wf.src = ('https:' == document.location.protocol ? 'https' : 'http') + '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
1704+ wf.type = 'text/javascript';
1705+ wf.async = 'true';
1706+ var s = document.getElementsByTagName('script')[0];
1707+ s.parentNode.insertBefore(wf, s);
1708+ })();
1709+
1710+ </script>
1711+ </head>
1712+ <body>
1713+ <div id="loader">
1714+ <div id="dot-container">
1715+ <noscript>
1716+ <p>
1717+ This demo uses JavaScript. Either your browser doesn't support JavaScript, or it's currently switched off.
1718+ <br/>
1719+ <br/>
1720+ Don't panic. We've got <a href="http://www.ubuntu.com/desktop/take-the-tour-gallery">a non-JavaScript version</a> of the online tour you can view instead. :)
1721+ </p>
1722+ </noscript>
1723+ </div>
1724+ </div>
1725+ <div id="top" class="dropShadow">
1726+ <div id="top-left">
1727+ <div id="control-buttons">
1728+ <div id="close"></div>
1729+ <div id="min"></div>
1730+ <div id="max"></div>
1731+ </div>
1732+ <div id="dash-control-buttons">
1733+ <div class="close"></div>
1734+ <div class="min"></div>
1735+ <div class="max"></div>
1736+ </div>
1737+ <div id="title"></div>
1738+ </div>
1739+ <div id="top-right">
1740+ <div id="connection"><img src="../img/top/connection.png" alt=""/>
1741+ <ul class="drop-down">
1742+ <li class="disabled">
1743+ Auto eth0
1744+ </li>
1745+ <li class="disabled">
1746+ Disconnect
1747+ </li>
1748+ <li class="divider"></li>
1749+ <!--<li class="disabled"><img src="../img/top/wireless-icon.png" alt=""/> My Wireless Connection</li>
1750+ <li class="disabled">Disconnect</li>
1751+ <li class="divider"></li>-->
1752+ <li class="disabled">
1753+ Connection Information
1754+ </li>
1755+ <li class="disabled">
1756+ Edit Connections…
1757+ </li>
1758+ </ul>
1759+ </div>
1760+ <div id="bluetooth"><img src="../img/top/bluetooth.png" alt=""/>
1761+ <ul class="drop-down">
1762+ <li class="disabled bluetooth">
1763+ Bluetooth On
1764+ </li>
1765+ <li>
1766+ Turn Off Bluetooth
1767+ </li>
1768+ <li class="divider"></li>
1769+ <li class="disabled BtOn">
1770+ Visible
1771+ </li>
1772+ <li class="divider BtOn"></li>
1773+ <li class="disabled BtOn">
1774+ Send files to device…
1775+ </li>
1776+ <li class="disabled BtOn">
1777+ Browse files on device…
1778+ </li>
1779+ <li class="divider"></li>
1780+ <li class="disabled BtOn">
1781+ Setup new device…
1782+ </li>
1783+ <li class="divider BtOn"></li>
1784+ <li class="disabled">
1785+ Preferences
1786+ </li>
1787+ </ul>
1788+ </div>
1789+ <div id="message"><img src="../img/top/nomessage.jpg" class="message-logo" alt="" />
1790+ <ul class="drop-down">
1791+ <li class="system-message"></li>
1792+ </ul>
1793+ </div>
1794+ <div id="speakers"><img src="../img/top/speakers3.png" class="speakers-logo" alt=""/>
1795+ <ul class="drop-down">
1796+ <li>
1797+ Mute
1798+ </li>
1799+ <li class="system-volume">
1800+ <div class="large-icon"></div><div class="small-icon"></div><div class="slider"></div><div class="slider-active"></div>
1801+ </li>
1802+ <li class="divider"></li>
1803+ <li class="disabled"><img src="../img/top/rhythmbox.png" alt=""/> Rhythmbox
1804+ </li>
1805+ <li class="banshee">
1806+ <div class="banshee-rewind"></div><div class="banshee-forward"></div><div class="banshee-play"></div>
1807+ </li>
1808+ <li class="divider"></li>
1809+ <li class="disabled">
1810+ Sound Settings…
1811+ </li>
1812+ </ul>
1813+ </div>
1814+ <div id="time">
1815+ <p></p>
1816+ <ul class="drop-down">
1817+ <li class="system-calendar"></li>
1818+ </ul>
1819+ </div>
1820+ <div id="power"><img src="../img/top/power.png" alt=""/>
1821+ <ul class="drop-down">
1822+ <li class="disabled">
1823+ About This Computer
1824+ </li>
1825+ <li class="disabled">
1826+ Ubuntu Help
1827+ </li>
1828+ <li class="divider"></li>
1829+ <li class="disabled">
1830+ System Settings&hellip;
1831+ </li>
1832+ <li class="divider"></li>
1833+ <li class="disabled">
1834+ Lock <span class="key-combo">Ctrl+Alt+L</span>
1835+ </li>
1836+ <li class="disabled user">
1837+ Guest Session
1838+ </li>
1839+ <li class="divider"></li>
1840+ <li class="disabled">
1841+ Logout
1842+ </li>
1843+ <li class="divider"></li>
1844+ <li class="disabled">
1845+ Suspend
1846+ </li>
1847+ <li class="disabled">
1848+ Restart&hellip;
1849+ </li>
1850+ <li>
1851+ Shut Down…
1852+ </li>
1853+ </ul>
1854+ </div>
1855+ </div>
1856+ </div>
1857+ <div id="tooltip">
1858+ <div class="shadow-arrow"></div>
1859+ <div class="arrow-right"></div>
1860+ <div id="tooltip-text"></div>
1861+ </div>
1862+ <div id="menu">
1863+ <ul>
1864+ <li class="dash">
1865+ <span>Dash home</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
1866+ </li>
1867+ <li class="home"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>Home Folder</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
1868+ </li>
1869+ <li class="firefox"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>Firefox Web Browser</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
1870+ </li>
1871+ <li class="writer"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>LibreOffice Writer</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
1872+ </li>
1873+ <li class="calc"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>LibreOffice Calc</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
1874+ </li>
1875+ <li class="impress"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>LibreOffice Impress</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
1876+ </li>
1877+ <li class="software"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>Ubuntu Software Centre</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
1878+ </li>
1879+ <li class="amazon"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>Amazon</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
1880+ </li>
1881+ <li class="settings"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>System Settings</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
1882+ </li>
1883+ <li class="email temp"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""><span>Thunderbird Mail</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt="">
1884+ </li>
1885+ <li class="shotwell temp"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>Shotwell Photo Manager</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
1886+ </li>
1887+ <li class="movieplayer temp"><img src="../img/menu/open-arrow.png" class="open-arrow" alt=""/><span>Movie Player</span><img src="../img/menu/selected-arrow.png" class="selected-window-arrow" alt=""/>
1888+ </li>
1889+ <!--<li class="workspace"><span>Workspace Switcher</span></li>-->
1890+ <li class="rubbish bottom">
1891+ <span>Rubbish bin</span>
1892+ </li>
1893+ </ul>
1894+ </div>
1895+ <div id="systemOverlay">
1896+ <div class="copyDash"></div>
1897+ <div id="overlayContents">
1898+ <input type="text" name="search" value="Search your computer and online sources"/>
1899+ <div id="display-home" class="app-container">
1900+ <div class="recent-apps bottom"><img src="../img/overlay/recentapps.png" alt=""/> Applications <div class="app-list"></div>
1901+ </div>
1902+ <div class="recent-files bottom"><img src="../img/overlay/recentfiles.png" alt=""/> Files &amp; Folders<div class="app-list"></div>
1903+ </div>
1904+ </div>
1905+ <div id="display-apps" class="app-container">
1906+ <div class="frequently bottom"><img src="../img/overlay/recentapps.png" alt=""/> Recently Used <div class="app-list"></div>
1907+ </div>
1908+ <div class="installed"><img src="../img/overlay/installed.png" alt=""/> Installed<div class="app-list"></div>
1909+ </div>
1910+ </div>
1911+ <div id="display-find-files" class="app-container">
1912+ <div class="files bottom"><img src="../img/overlay/recentfiles.png" alt=""/> Recent<div class="app-list"></div>
1913+ </div>
1914+ <div class="downloads bottom"><img src="../img/overlay/downloaded.png" alt=""/> Downloads<div class="app-list"></div>
1915+ </div>
1916+ <div class="folders"><img src="../img/overlay/folders.png" alt=""/> Folders<div class="app-list"></div>
1917+ </div>
1918+
1919+ </div>
1920+ <div id="display-find-music" class="app-container">
1921+ <div class="songs bottom"><img src="../img/overlay/folders.png" alt=""/> Songs<div class="app-list"></div>
1922+ </div>
1923+ <div class="albums"><img src="../img/overlay/folders.png" alt=""/> Albums<div class="app-list"></div>
1924+ </div>
1925+ </div>
1926+ <div id="display-find-video" class="app-container">
1927+ <div class="videos bottom"><img src="../img/overlay/folders.png" alt=""/> Videos<div class="app-list"></div>
1928+ </div>
1929+ </div>
1930+ <div id="display-find-photos" class="app-container">
1931+ <div class="photos bottom"><img src="../img/overlay/folders.png" alt=""/> My photos<div class="app-list"></div>
1932+ </div>
1933+ </div>
1934+ <div id="display-chat" class="app-container">
1935+ <div class="message">
1936+ <p>Sorry, there is nothing that matches your search</p>
1937+ </div>
1938+ </div>
1939+ <div id="display-search" class="app-container">
1940+ <div class="applications bottom"><img src="../img/overlay/search-apps-logo.jpg" alt=""/> Applications<div class="app-list"></div>
1941+ </div>
1942+ <div class="files"><img src="../img/overlay/search-files-logo.jpg" alt=""/> Files &amp; Folders<div class="app-list"></div>
1943+ </div>
1944+ </div>
1945+ </div>
1946+ <div id="dash-bottom-bar">
1947+ <div class="bottom-wrapper">
1948+ <div class="home-icon active"></div>
1949+ <div class="applications-icon"></div>
1950+ <div class="files-icon"></div>
1951+ <div class="music-icon"></div>
1952+ <div class="video-icon"></div>
1953+ <div class="photos-icon"></div>
1954+ <div class="chat-icon last"></div>
1955+ </div>
1956+ </div>
1957+ <div id="preview">
1958+ <div class="image"></div>
1959+ <div class="info"></div>
1960+ <div class="buttons">
1961+ <a class="email">E-mail</a>
1962+ <a class="showInFolder">Show in Folder</a>
1963+ <a class="open">Open</a>
1964+ </div>
1965+ </div>
1966+ </div>
1967+ <div id="ubuntuone-window" class="uone window">
1968+ <div class="control">
1969+ <div class="close"></div>
1970+ <div class="window-title">
1971+ Ubuntu One Control Panel
1972+ </div>
1973+ </div>
1974+ <div class="content">
1975+ <div class="header"></div>
1976+ <div class="body">
1977+ <h1>The Power of Your Personal Cloud</h1>
1978+ <div class="features">
1979+ <div class="files-anywhere">
1980+ <span class="logo"></span>
1981+ <div>
1982+ <h3>Files Anywhere</h3>
1983+ <p>
1984+ Backup and access your files from Ubuntu, Windows, Web or Mobile
1985+ </p>
1986+ </div>
1987+ </div>
1988+ <div class="rock-out">
1989+ <span class="logo"></span>
1990+ <div>
1991+ <h3>Rock Out</h3>
1992+ <p>
1993+ Your entire collection follows you around with music streaming to Android and iPhone
1994+ </p>
1995+ </div>
1996+ </div>
1997+ <div class="keep-connected">
1998+ <span class="logo"></span>
1999+ <div>
2000+ <h3>Keep Connected</h3>
2001+ <p>
2002+ Unify your contacts across Desktop, Mobile and Web
2003+ </p>
2004+ </div>
2005+ </div>
2006+ <div class="stay-productive">
2007+ <span class="logo"></span>
2008+ <div>
2009+ <h3>Stay Productive</h3>
2010+ <p>
2011+ Keep your Firefox bookmarks and Tomboy notes synced
2012+ </p>
2013+ </div>
2014+ </div>
2015+ </div>
2016+ <div class="ubuntuone-buttons">
2017+ <div class="learn-more"><img src="../img/ubuntuone/ubuntuone-logo.jpg" width="47" height="48" alt=""/>
2018+ <div>
2019+ Learn More
2020+ </div>
2021+ </div>
2022+ <div class="join-now">
2023+ <h2>Join now</h2>
2024+ </div>
2025+ <div class="have-account">
2026+ I already have an account!
2027+ </div>
2028+ </div>
2029+ </div>
2030+ </div>
2031+ </div>
2032+ <div id="libreoffice-calc-window" class="calc window">
2033+ <div class="control">
2034+ <div class="close"></div>
2035+ <div class="min"></div>
2036+ <div class="max"></div>
2037+ <div class="window-title">
2038+ Untitled 1 - LibreOffice Calc
2039+ </div>
2040+ </div>
2041+ <div class="content">
2042+
2043+ </div>
2044+ </div>
2045+ <div id="libreoffice-writer-window" class="writer window">
2046+ <div class="control">
2047+ <div class="close"></div>
2048+ <div class="min"></div>
2049+ <div class="max"></div>
2050+ <div class="window-title">
2051+ Untitled 1 - LibreOffice Writer
2052+ </div>
2053+ </div>
2054+ <div class="content">
2055+
2056+ </div>
2057+ </div>
2058+ <div id="libreoffice-impress-window" class="impress window">
2059+ <div class="control">
2060+ <div class="close"></div>
2061+ <div class="min"></div>
2062+ <div class="max"></div>
2063+ <div class="window-title">
2064+ Untitled 1 - LibreOffice Impress
2065+ </div>
2066+ </div>
2067+ <div class="content">
2068+
2069+ </div>
2070+ </div>
2071+ <div class="error-window window">
2072+ <div class="control">
2073+ <div class="close"></div>
2074+ <div class="window-title"></div>
2075+ </div>
2076+ <div class="error-container">
2077+ <h1>Thanks for exploring Ubuntu!</h1>
2078+ <a class="download" href="http://www.ubuntu.com/download/ubuntu/download?utm_source=tour&utm_medium=online&utm_campaign=tour" target="_blank">
2079+ Download Ubuntu
2080+ </a>
2081+ <h2>Remember, this is just a demo. You'll have to download it to enjoy the real thing!</h2>
2082+ </div>
2083+ </div>
2084+ <!--<div id="error-window" class="error-window window">
2085+ <div class="control">
2086+ <div class="close"></div>
2087+ <div class="window-title"></div>
2088+ </div>
2089+ <div class="content">
2090+ <img src="../img/error/warning.jpg"/>
2091+ <div class="message">
2092+ <p>Thanks for exploring Ubuntu</p>
2093+ <p>Remember, this is just a demo. You'll have to download it to enjoy the real thing!</p>
2094+ </div>
2095+ <div class="error-buttons"><div class="download highlight">Download Ubuntu</div></div>
2096+ </div>
2097+ </div>-->
2098+ <!--<div id="workspaces">
2099+ <div id="void">
2100+ <div id="workspace-container">
2101+ <div id="workspace1"><div class="fadedOverlay"></div></div>
2102+ <div id="workspace2"><div class="fadedOverlay"></div></div>
2103+ <div id="workspace3"><div class="fadedOverlay"></div></div>
2104+ <div id="workspace4"><div class="fadedOverlay"></div></div>
2105+ <div class="reflection" style="clear:both;"></div>
2106+ <div class="reflection"></div>
2107+ </div>
2108+ </div>
2109+ </div>-->
2110+ <div id="email-window" class="email-window window">
2111+ <div class="control">
2112+ <div class="close"></div>
2113+ <div class="min"></div>
2114+ <div class="max"></div>
2115+ <div class="window-title">
2116+ Email
2117+ </div>
2118+ </div>
2119+ <div class="buttons">
2120+ <div class="email-get-mail">
2121+ Get Mail
2122+ </div>
2123+ <div class="email-divider"></div>
2124+ <div class="email-write">
2125+ Write
2126+ </div>
2127+ <!--<div class="email-address-book"></div>
2128+ <div class="email-divider"></div>
2129+ <div class="email-tag"></div>
2130+ <div class="email-search"><input type="text" name="submitEmailSearch" id="submitEmailSearch"/></div>-->
2131+ </div>
2132+ <div style="clear:both;"></div>
2133+ <div class="email-content">
2134+ <div class="folder-list">
2135+ <div class="bottom-buttons">
2136+ All Folders
2137+ </div>
2138+ <div style="clear:both;"></div>
2139+ <div class="list">
2140+ <div id="folder-inbox" class="selected"><img src="../img/email/inbox.png" alt=""/> Inbox
2141+ </div>
2142+ <div id="folder-draft"><img src="../img/email/drafts.png" alt=""/> Draft
2143+ </div>
2144+ <div id="folder-sent"><img src="../img/email/sent.png" alt=""/> Sent
2145+ </div>
2146+ <div id="folder-archive"><img src="../img/email/archive-logo.png" alt=""/> Archive
2147+ </div>
2148+ <div id="folder-trash"><img src="../img/email/trash.png" alt=""/> Trash
2149+ </div>
2150+ </div>
2151+ </div>
2152+ <div class="email-contents">
2153+ <div class="email-categories">
2154+ <div><img src="../img/email/t.png" alt=""/>
2155+ </div>
2156+ <div><img src="../img/email/star.png" alt=""/>
2157+ </div>
2158+ <div><img src="../img/email/clip.png" alt=""/>
2159+ </div>
2160+ <div class="subject">
2161+ Subject
2162+ </div>
2163+ <div><img src="../img/email/glasses.png" alt=""/>
2164+ </div>
2165+ <div class="from">
2166+ From
2167+ </div>
2168+ <div><img src="../img/email/fire.png" alt=""/>
2169+ </div>
2170+ <div class="date">
2171+ Date
2172+ </div>
2173+ </div>
2174+ <div style="clear:both;"></div>
2175+ <div class="email-list"></div>
2176+ <div class="email-body">
2177+ <div class="message-header">
2178+ <div class="email-buttons">
2179+ <div>
2180+ <span class="message-reply">reply</span>
2181+ <span class="message-forward">forward</span>
2182+ <span class="message-archive">archive</span>
2183+ <span class="message-junk">junk</span>
2184+ <span class="message-delete">delete</span>
2185+ </div>
2186+ </div>
2187+ <div style="clear:both;"></div>
2188+ <div class="date"></div>
2189+ <dl class="from">
2190+ <dt>
2191+ from
2192+ </dt><dd></dd>
2193+ </dl>
2194+ <dl class="subject">
2195+ <dt>
2196+ subject
2197+ </dt><dd></dd>
2198+ </dl>
2199+ <dl class="to">
2200+ <dt>
2201+ to
2202+ </dt><dd></dd>
2203+ </dl>
2204+ <dl class="cc">
2205+ <dt>
2206+ cc
2207+ </dt><dd></dd>
2208+ </dl>
2209+ </div>
2210+ <div class="junk-mail-banner"><img src="../img/email/large-fire.jpg" alt=""/> Junk Mail
2211+ <div class="not-junk">
2212+ Not Junk
2213+ </div>
2214+ </div>
2215+ <div class="message-body"></div>
2216+ </div>
2217+ </div>
2218+ <div style="clear:both;"></div>
2219+ <div class="emails-info">
2220+ <div>
2221+ Unread: <span id="details-unread">1</span> Total: <span id="details-total">1</span>
2222+ </div>
2223+ </div>
2224+ </div>
2225+ </div>
2226+ <div id="email-write" class="email-write window">
2227+ <div class="control">
2228+ <div class="close"></div>
2229+ <div class="min"></div>
2230+ <div class="max"></div>
2231+ <div class="window-title">
2232+ Write: (no subject)
2233+ </div>
2234+ </div>
2235+ <div class="buttons">
2236+ <div id="write-send">
2237+ Send
2238+ </div>
2239+ <div class="email-divider"></div>
2240+ <div id="write-attach">
2241+ Attach
2242+ </div>
2243+ </div>
2244+ <div style="clear:both;"></div>
2245+ <div id="write-from">
2246+ <div>
2247+ From:
2248+ </div>
2249+ <input type="text" name="from" value="You"/>
2250+ </div>
2251+ <div id="write-to">
2252+ <div>
2253+ To:
2254+ </div>
2255+ <input type="text" name="to"/>
2256+ </div>
2257+ <div id="write-subject">
2258+ <div>
2259+ Subject:
2260+ </div>
2261+ <input type="text" name="subject"/>
2262+ </div>
2263+ <div><img src="../img/email/disabled-format-buttons.jpg" width="853" height="32" alt=""/>
2264+ </div>
2265+ <div id="write-body">
2266+ <textarea name="body"></textarea>
2267+</div> <div class="loading-bar">
2268+ <div class="progress"></div>
2269+ </div>
2270+ </div>
2271+ <div id="software-centre" class="software window">
2272+ <div class="control">
2273+ <div class="close"></div>
2274+ <div class="min"></div>
2275+ <div class="max"></div>
2276+ <div class="window-title">
2277+ Ubuntu Software Centre
2278+ </div>
2279+ </div>
2280+ <div class="top-panel">
2281+ <div class="back disabled"></div>
2282+ <div class="forward disabled"></div>
2283+ <div class="all-software selected"><img src="../img/software-centre/all-software.png" alt=""/>All Software
2284+ </div>
2285+ <div class="installed"><img src="../img/software-centre/installed.png" alt=""/>Installed
2286+ </div>
2287+ <div class="history"><img src="../img/software-centre/history.png" alt=""/>History
2288+ </div>
2289+ </div>
2290+ <div class="container detailed">
2291+ <div class="title"><img src="../img/software-centre/visolate.png" class="app-image" width="100" alt=""/><h1>Visolate</h1>
2292+ <p class="subheading">
2293+ PCB CNC converter
2294+ </p>
2295+ <p class="rating"><img src="../img/software-centre/rating.jpg" alt="" /> (91 Ratings)
2296+ </p>
2297+ </div>
2298+ <div class="price">
2299+ <span class="theprice">Free</span><span class="button">Install</span>
2300+ <div class="loading-bar">
2301+ <div class="progress"></div>
2302+ </div>
2303+ </div>
2304+ <div class="description-container">
2305+ <div class="description-image"><img src="../img/software-centre/screenshot-blender.jpg" alt="" />
2306+ </div>
2307+ <div class="description"><img src="../img/software-centre/screenshot-blender.jpg" alt="" />Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse quam augue, convallis id commodo id, tristique ac mi. Ut dapibus, neque eget elementum pretium, nunc turpis congue eros, et interdum nisi nisi at diam. Duis dictum, justo eget imperdiet pulvinar, dolor est fermentum nisl, luctus imperdiet metus elit a purus. Quisque nisl enim, lacinia ut venenatis in, porttitor eget orci. Quisque non nibh nec risus tincidunt sollicitudin vitae et nisl. Proin odio lacus, vulputate non auctor sit amet, dapibus quis tortor. Donec elit libero, pellentesque quis dictum sed, hendrerit non libero. Aliquam eu diam id leo auctor tincidunt. Phasellus cursus felis at nulla facilisis semper. Cras mauris urna, adipiscing sed scelerisque ut, gravida id neque. Mauris ut vestibulum justo. Curabitur convallis elementum pellentesque. Duis sit amet arcu ac eros pretium scelerisque. Nunc nec nisi nulla.
2308+ </div>
2309+ <div style="clear:both;"></div>
2310+ </div>
2311+ </div>
2312+ <div class="container home">
2313+ <div class="header-image">
2314+ <span class="header-title">Our star apps</span>
2315+ <span class="header-subtitle">Come and explore our favourites</span>
2316+ </div>
2317+ <div class="navigation">
2318+ <ul>
2319+ <li>
2320+ Accessories
2321+ </li>
2322+ <li>
2323+ Developer Tools
2324+ </li>
2325+ <li>
2326+ Education
2327+ </li>
2328+ <li>
2329+ Fonts
2330+ </li>
2331+ <li>
2332+ Games
2333+ </li>
2334+ <li>
2335+ Graphics
2336+ </li>
2337+ <li>
2338+ Internet
2339+ </li>
2340+ <li>
2341+ Office
2342+ </li>
2343+ <li>
2344+ Science &amp; Engineering
2345+ </li>
2346+ <li>
2347+ Sound &amp; Video
2348+ </li>
2349+ <li>
2350+ System
2351+ </li>
2352+ <li>
2353+ Themes &amp; Tweaks
2354+ </li>
2355+ </ul>
2356+ </div>
2357+ <div class="whats-new">
2358+ <h2> What's New</h2>
2359+ <div class="app-container">
2360+ <div class="chromium">
2361+ <h3>Chromium</h3>
2362+ <p>
2363+ Internet
2364+ </p>
2365+ <p class="cost">
2366+ Free
2367+ </p>
2368+ </div>
2369+ <div class="beep">
2370+ <h3>BEEP</h3>
2371+ <p>
2372+ Games
2373+ </p>
2374+ <p class="cost">
2375+ $9.99
2376+ </p>
2377+ </div>
2378+ <div class="inkscape">
2379+ <h3>Inkscape</h3>
2380+ <p>
2381+ Graphics
2382+ </p>
2383+ <p class="cost">
2384+ Free
2385+ </p>
2386+ </div>
2387+ <div class="worldofgoo">
2388+ <h3>World of Goo</h3>
2389+ <p>
2390+ Games
2391+ </p>
2392+ <p class="cost">
2393+ $19.99
2394+ </p>
2395+ </div>
2396+ <div class="blender">
2397+ <h3>Blender</h3>
2398+ <p>
2399+ Graphics
2400+ </p>
2401+ <p class="cost">
2402+ Free
2403+ </p>
2404+ </div>
2405+ <div class="braid">
2406+ <h3>Braid</h3>
2407+ <p>
2408+ Games
2409+ </p>
2410+ <p class="cost">
2411+ $9.99
2412+ </p>
2413+ </div>
2414+ </div>
2415+ </div>
2416+ <div class="whats-new">
2417+ <h2> Top Rated</h2>
2418+ <div class="app-container">
2419+ <div class="beep">
2420+ <h3>BEEP</h3>
2421+ <p>
2422+ Games
2423+ </p>
2424+ <p class="cost">
2425+ $9.99
2426+ </p>
2427+ </div>
2428+ <div class="chromium">
2429+ <h3>Chromium</h3>
2430+ <p>
2431+ Internet
2432+ </p>
2433+ <p class="cost">
2434+ Free
2435+ </p>
2436+ </div>
2437+ <div class="worldofgoo">
2438+ <h3>World of Goo</h3>
2439+ <p>
2440+ Games
2441+ </p>
2442+ <p class="cost">
2443+ $19.99
2444+ </p>
2445+ </div>
2446+ <div class="braid">
2447+ <h3>Braid</h3>
2448+ <p>
2449+ Games
2450+ </p>
2451+ <p class="cost">
2452+ $9.99
2453+ </p>
2454+ </div>
2455+ <div class="inkscape">
2456+ <h3>Inkscape</h3>
2457+ <p>
2458+ Graphics
2459+ </p>
2460+ <p class="cost">
2461+ Free
2462+ </p>
2463+ </div>
2464+ <div class="blender">
2465+ <h3>Blender</h3>
2466+ <p>
2467+ Graphics
2468+ </p>
2469+ <p class="cost">
2470+ Free
2471+ </p>
2472+ </div>
2473+ </div>
2474+ </div>
2475+ </div>
2476+ </div>
2477+ <div id="shotwell" class="shotwell window">
2478+ <div class="control">
2479+ <div class="close"></div>
2480+ <div class="min"></div>
2481+ <div class="max"></div>
2482+ <div class="window-title">
2483+ Shotwell
2484+ </div>
2485+ </div>
2486+ <div class="sidebar">
2487+ <div class="nav">
2488+ <ul>
2489+ <li class="library">
2490+ Library
2491+ </li>
2492+ </ul>
2493+ </div>
2494+ <div class="details">
2495+ <div class="overall">
2496+ <div>
2497+ Items: <span class="items">16 Photos</span>
2498+ </div>
2499+ <div>
2500+ Starting: <span class="from">Fri 26 Oct, 2001</span>
2501+ </div>
2502+ <div>
2503+ Ending: <span class="to">Mon 11 October, 2010</span>
2504+ </div>
2505+ </div>
2506+ <div class="single">
2507+ <div>
2508+ Title: <span class="title"></span>
2509+ </div>
2510+ <div>
2511+ Date: <span class="date"></span>
2512+ </div>
2513+ <div>
2514+ Size: <span class="size"></span>
2515+ </div>
2516+ </div>
2517+ </div>
2518+ </div>
2519+ <div class="container">
2520+ <div class="images"></div>
2521+ <div class="tools">
2522+ <div class="jump-image">
2523+ <div class="next"></div><div class="prev"></div>
2524+ </div>
2525+ <div class="slider-container">
2526+ <div class="small-icon"></div><div class="slider"></div><div class="slider-active"></div><div class="large-icon"></div>
2527+ </div>
2528+ </div>
2529+ </div>
2530+ </div>
2531+ <div id="movieplayer" class="movieplayer window">
2532+ <div class="control">
2533+ <div class="close"></div>
2534+ <div class="min"></div>
2535+ <div class="max"></div>
2536+ <div class="window-title">
2537+ Movie Player
2538+ </div>
2539+ </div>
2540+ <div class="container">
2541+ <div class="video"></div>
2542+ </div>
2543+ </div>
2544+ <div id="firefox-window" class="firefox-window window">
2545+ <div class="control">
2546+ <div class="close"></div>
2547+ <div class="min"></div>
2548+ <div class="max"></div>
2549+ <div class="window-title">
2550+ Browse the web
2551+ </div>
2552+ </div>
2553+ <div class="buttons">
2554+ <div class="firefox-back"></div>
2555+ <div class="firefox-forward"></div>
2556+ <div class="firefox-url">
2557+ <input type="text" name="submitURL" id="submitURL" value="http://www.ubuntu.com"/>
2558+ </div>
2559+ <div class="firefox-search">
2560+ <input type="text" name="submitSearch" id="submitSearch" value="Wikipedia" class="fade-text"/>
2561+ </div>
2562+ </div>
2563+ <div style="clear:both;"></div>
2564+ <div class="firefox-internet">
2565+ <div class="web-overlay-tran"></div>
2566+ <div class="theIframe">
2567+ <iframe src="http://start.ubuntu.com" id="firefoxInternet" >
2568+ <p>
2569+ Your browser does not support iframes.
2570+ </p>
2571+ </iframe>
2572+ </div>
2573+ </div>
2574+ </div>
2575+ <div id="shutdown-window" class="window">
2576+ <div class="control">
2577+ <div class="close"></div>
2578+ <div class="window-title">
2579+ Shut Down
2580+ </div>
2581+ </div>
2582+ <div class="content">
2583+ <img src="../img/powerwarning.jpg" alt=""/>
2584+ <div class="message">
2585+ <p>
2586+ Are you sure you want to close all programs and shutdown the computer?
2587+ </p>
2588+ </div>
2589+ <div class="shutdown-buttons">
2590+ <div class="shutdown highlight">
2591+ Shut Down
2592+ </div>
2593+ <div class="cancel">
2594+ Cancel
2595+ </div>
2596+ </div>
2597+ </div>
2598+ </div>
2599+ <div id="folder-window" class="folder window">
2600+ <div class="control">
2601+ <div class="close"></div>
2602+ <div class="min"></div>
2603+ <div class="max"></div>
2604+ <div class="window-title"></div>
2605+ </div>
2606+
2607+ <div class="buttons">
2608+ <div class="folder-back"></div>
2609+ <div class="folder-forward"></div>
2610+ </div>
2611+ <div class="bottom-buttons"></div>
2612+ <div style="clear:both;"></div>
2613+ <div class="folder-flex-container">
2614+ <div class="folder-list">
2615+ <div class="list">
2616+ <p>
2617+ Places
2618+ </p>
2619+ <ul>
2620+ <li class="home selected" data-folder="home">Home</li>
2621+ <li class="desktop" data-folder="5">Desktop</li>
2622+ <li class="documents" data-folder="0">Documents</li>
2623+ <li class="downloads" data-folder="1">Downloads</li>
2624+ <li class="music" data-folder="2">Music</li>
2625+ <li class="pictures" data-folder="4">Pictures</li>
2626+ <li class="videos" data-folder="3">Videos</li>
2627+ <li class="rubbish" data-folder="bin">Rubbish bin</li>
2628+ </ul>
2629+ </div>
2630+ </div>
2631+ <div class="folder-contents">
2632+ <div class="contents"></div>
2633+ <div class="selected-details"></div>
2634+ </div>
2635+ </div>
2636+ </div>
2637+ <div id="welcome">
2638+ <div id="welcome-screen" class="selected-window">
2639+ <div class="control">
2640+ <div class="window-title">Ubuntu tour</div>
2641+ </div>
2642+ <div class="welcome-header">
2643+ <h1>Welcome to the Ubuntu 14.04 tour!</h1>
2644+ <h2>Take Ubuntu for a test drive with our online demo.</h2>
2645+ </div>
2646+ <ul>
2647+ <li>
2648+ <a class="browse-files" href="#browse-files">Browse files</a>
2649+ </li>
2650+ <li>
2651+ <a class="check-email" href="#check-email">Check email</a>
2652+ </li>
2653+ <li>
2654+ <a class="surf-the-web" href="#surf-the-web">Surf the web</a>
2655+ </li>
2656+ <li>
2657+ <a class="find-apps" href="#find-apps">Find apps</a>
2658+ </li>
2659+ <li>
2660+ <a class="create-documents" href="#create-documents">Create documents</a>
2661+ </li>
2662+ <li>
2663+ <a class="view-photos" href="#view-photos">View photos</a>
2664+ </li>
2665+ <li>
2666+ <a class="create-presentations" href="#create-presentations">Create presentations</a>
2667+ </li>
2668+ <li>
2669+ <a class="create-spreadsheets" href="#create-spreadsheets">Create spreadsheets</a>
2670+ </li>
2671+ <li>
2672+ <a class="watch-video" href="#watch-video">Watch videos</a>
2673+ </li>
2674+ </ul>
2675+ <div class="language-mode">
2676+ <span class="active">English</span>
2677+ <a href="/zh-CN/">中文</a>
2678+ </div>
2679+ <a class="explore-mode primary" href="#">Show yourself around</a>
2680+ <a class="tour-mode" href="#">Take the guided tour</a>
2681+ </div>
2682+ </div>
2683+ <div id="tour-guide">
2684+ <div class="next-button">&rsaquo;</div>
2685+ <div class="prev-button">&lsaquo;</div>
2686+ <div class="guide-container welcome">
2687+ <div class="guide-logo"><img src="../img/tourguide/back-to-welcome.png" /></div>
2688+ <h3>Ubuntu online tour</h3>
2689+ <p>
2690+ We hope you've enjoyed the Ubuntu online tour. <a href="http://www.ubuntu.com/download/ubuntu/download?utm_source=tour&utm_medium=online&utm_campaign=tour" target="_blank">Ready to download?</a> or <a href="http://www.ubuntu.com/desktop/take-the-tour" >back to the site</a>
2691+ </p>
2692+ </div>
2693+ <div class="guide-container home">
2694+ <div class="guide-logo"><img src="../img/tourguide/file-small.png" />
2695+ </div>
2696+ <h3>Browse files</h3>
2697+ <p>
2698+ It’s quick and easy to access your folders and files from Ubuntu’s home folder.
2699+ </p>
2700+ </div>
2701+ <div class="guide-container firefox">
2702+ <div class="guide-logo"><img src="../img/tourguide/firefox-small.png" />
2703+ </div>
2704+ <h3>Surf the web</h3>
2705+ <p>
2706+ Browsing the web is fast and secure with Ubuntu and Firefox.
2707+ </p>
2708+ </div>
2709+ <div class="guide-container email">
2710+ <div class="guide-logo"><img src="../img/tourguide/mail-small.png" />
2711+ </div>
2712+ <h3>Check email</h3>
2713+ <p>
2714+ Read, write and send emails with Thunderbird. It’s easy and fast.
2715+ </p>
2716+ </div>
2717+ <div class="guide-container shotwell">
2718+ <div class="guide-logo"><img src="../img/tourguide/shotwell-small.png" />
2719+ </div>
2720+ <h3>View photos</h3>
2721+ <p>
2722+ You can upload, organise, edit and share your photos with Shotwell.
2723+ </p>
2724+ </div>
2725+ <div class="guide-container software">
2726+ <div class="guide-logo"><img src="../img/tourguide/apps-small.png" />
2727+ </div>
2728+ <h3>Find apps</h3>
2729+ <p>
2730+ Search and download apps fast from the Ubuntu Software Centre.
2731+ </p>
2732+ </div>
2733+ <div class="guide-container writer">
2734+ <div class="guide-logo"><img src="../img/tourguide/document-small.png" />
2735+ </div>
2736+ <h3>Create documents</h3>
2737+ <p>
2738+ LibreOffice Writer makes it easy to draft professional documents.
2739+ </p>
2740+ </div>
2741+ <div class="guide-container calc">
2742+ <div class="guide-logo"><img src="../img/tourguide/calc-small.png" />
2743+ </div>
2744+ <h3>Create spreadsheets</h3>
2745+ <p>
2746+ LibreOffice Calc has everything you need to create clear and accurate spreadsheets.
2747+ </p>
2748+ </div>
2749+ <div class="guide-container impress">
2750+ <div class="guide-logo"><img src="../img/tourguide/impress-small.png" />
2751+ </div>
2752+ <h3>Create presentations</h3>
2753+ <p>
2754+ Make a good impression with the intuitive LibreOffice Impress presentation tool.
2755+ </p>
2756+ </div>
2757+ <div class="guide-container movieplayer">
2758+ <div class="guide-logo"><img src="../img/tourguide/video-small.png" />
2759+ </div>
2760+ <h3>Watch videos</h3>
2761+ <p>
2762+ You can watch all your favourite films and videos, DVDs, downloads or movies you've created yourself.
2763+ </p>
2764+ </div>
2765+ <div class=" tour-buttons">
2766+ <div class="explore-to-welcome">Welcome screen</div>
2767+ <div class="explore-to-download">Download Ubuntu</div>
2768+ <div class="explore-to-exit">Exit the Tour</div>
2769+ </div>
2770+ </div>
2771+ <div id="Translation-Strings">
2772+ <!--
2773+ * Email system
2774+ -->
2775+ <p class="_email_1_title_">
2776+ Accessible
2777+ </p>
2778+ <p class="_email_2_title_">
2779+ Fast
2780+ </p>
2781+ <p class="_email_3_title_">
2782+ Compatible
2783+ </p>
2784+ <p class="_email_4_title_">
2785+ Secure
2786+ </p>
2787+ <p class="_email_5_title_">
2788+ Your Ubuntu, your way
2789+ </p>
2790+ <p class="_email_1_body_">
2791+ Accessibility is central to the Ubuntu philosophy. We believe that computing is for everyone regardless of nationality, race, gender or disability. Fully translated into 38 languages, Ubuntu also includes essential assistive technologies, which are, of course, completely free.
2792+ </p>
2793+ <p class="_email_2_body_">
2794+ Ubuntu loads quickly on any computer, but it's super-fast on newer machines. With no unnecessary programs and trial software slowing things down, booting up and opening a browser takes seconds. Unlike other operating systems that leave you staring at the screen, waiting to get online. And Ubuntu won’t grow sluggish over time. It’s fast. And it stays fast.
2795+ </p>
2796+ <p class="_email_3_body_">
2797+ Ubuntu works brilliantly with a range of devices. Simply plug in your mp3 player, camera or printer and you’ll be up and running straight away. No installation CDs. No fuss. And it’s compatible with Windows too! So you can open, edit and share Microsoft Office documents stress-free.
2798+ </p>
2799+ <p class="_email_4_body_">
2800+ You can surf in safety with Ubuntu – confident that your files and data will stay protected. A built-in firewall and virus protection come as standard. And if a potential threat appears, we provide automatic updates which you can install in a single click. You get added security with AppArmor, which protects your important applications so attackers can’t access your system. And thanks to Firefox and gnome-keyring, Ubuntu helps you keep your private information private. So whether it’s accessing your bank account or sharing sensitive data with friends or colleagues, you’ll have peace of mind when you need it the most.
2801+ </p>
2802+ <p class="_email_5_body_">
2803+ Enjoy the simplicity of Ubuntu's stylish, intuitive interface. Fast, secure and with thousands of apps to choose from, Ubuntu gives you a clean and streamlined experience that you can really make your own.
2804+ </p>
2805+ <p class="_random_reply_">
2806+ Thanks for exploring Ubuntu! Remember, this is just a demo. You'll have to download it to enjoy the real thing!
2807+ <br/>
2808+ <br/>
2809+ <a href="http://www.ubuntu.com/download/ubuntu/download?utm_source=tour&utm_medium=online&utm_campaign=tour" target="_blank">Download Ubuntu</a>
2810+ </p>
2811+ <p class="_write_">
2812+ Write
2813+ </p>
2814+ <p class="_no_subject_">
2815+ no subject
2816+ </p>
2817+ <p class="_recipient_">
2818+ Recipient
2819+ </p>
2820+ <p class="_from_">
2821+ From
2822+ </p>
2823+ <p class="_you_">
2824+ You
2825+ </p>
2826+ <p class="_on_">
2827+ On
2828+ </p>
2829+ <p class="_wrote_">
2830+ wrote
2831+ </p>
2832+ <p class="_original_message_">
2833+ Original Message
2834+ </p>
2835+ <p class="_fwd_">
2836+ Fwd
2837+ </p>
2838+ <!--
2839+ * Folder System
2840+ -->
2841+ <p class="_home_folder_">
2842+ Home
2843+ </p>
2844+ <p class="_desktop_folder_">
2845+ Desktop
2846+ </p>
2847+ <p class="_pictures_folder_">
2848+ Pictures
2849+ </p>
2850+ <p class="_videos_folder_">
2851+ Videos
2852+ </p>
2853+ <p class="_music_folder_">
2854+ Music
2855+ </p>
2856+ <p class="_downloads_folder_">
2857+ Downloads
2858+ </p>
2859+ <p class="_documents_folder_">
2860+ Documents
2861+ </p>
2862+ <p class="_canonical_folder_">
2863+ Canonical
2864+ </p>
2865+ <p class="_backup_folder_">
2866+ Backup
2867+ </p>
2868+ <p class="_local_folder_">
2869+ Local
2870+ </p>
2871+ <p class="_work_folder_">
2872+ work
2873+ </p>
2874+ <p class="_branches_folder_">
2875+ branches
2876+ </p>
2877+ <p class="_rubbish_bin_folder_">
2878+ Rubbish bin
2879+ </p>
2880+ <p class="_string_selected_">
2881+ selected
2882+ </p>
2883+ <p class="_string_containing_">
2884+ containing
2885+ </p>
2886+ <p class="_string_items_">
2887+ items
2888+ </p>
2889+ <!--
2890+ * Software Center System
2891+ -->
2892+ <p class="_remove_">
2893+ Remove
2894+ </p>
2895+ <p class="_price_free_">
2896+ Free
2897+ </p>
2898+ <p class="_installed_">
2899+ Installed
2900+ </p>
2901+ <p class="_install_">
2902+ Install
2903+ </p>
2904+ <p class="_installing_">
2905+ Installing
2906+ </p>
2907+ <p class="_chromium_app_">
2908+ Chromium Web Browser
2909+ </p>
2910+ <p class="_chromium_sub_">
2911+ Access the Internet
2912+ </p>
2913+ <p class="_chromium_desc_">
2914+ Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all Internet users to experience the web.
2915+ <br/>
2916+ <br/>
2917+ Chromium serves as a base for Google Chrome, which is Chromium rebranded (name and logo) with very few additions such as usage tracking and an auto-updater system.
2918+ <br/>
2919+ <br/>
2920+ This package contains the Chromium browser
2921+ </p>
2922+ <p class="_beep_app_">
2923+ BEEP
2924+ </p>
2925+ <p class="_beep_sub_">
2926+ A 2D platformer/shooter game with physics-based puzzles
2927+ </p>
2928+ <p class="_beep_desc_">
2929+ BEEP is a 2D side-scrolling platformer with physics-based gameplay. You control a small robot equipped with an anti-gravity device, a jet-pack and a gun. Drive, jump, fly, swim and shoot your way through 24 levels scattered across 6 unique environments.
2930+ <br/>
2931+ <br/>
2932+ Use BEEP’s anti-gravity device to directly manipulate the physics-based environments. The anti-gravity device is both a tool and a weapon. Use it to smash enemy robots, build towers and solve puzzles.
2933+ <br/>
2934+ <br/>
2935+ BEEP has traveled for thousands of years through deep space to explore the Galaxy. Traverse a foreign star system with the BEEP-ship and send robots to the surface of the planets.
2936+ </p>
2937+ <p class="_inkscape_app_">
2938+ Inkscape Vector Graphics Editor
2939+ </p>
2940+ <p class="_inkscape_sub_">
2941+ Create and edit Scalable Vector Graphics images
2942+ </p>
2943+ <p class="_inkscape_desc_">
2944+ Inkscape loads and saves a subset of the SVG (Scalable Vector Graphics) format, a standard maintained by the WWW consortium.
2945+ <br/>
2946+ <br/>
2947+ Inkscape user interface should be familiar from CorelDraw and similar drawing programs. There are rectangles, ellipses, text items, bitmap images and freehand curves. As an added bonus, both vector and bitmap objects can have alpha transparency and can be arbitrarily transformed.
2948+ <br/>
2949+ <br/>
2950+ Inkscape supports multiple opened files and multiple views per file. Graphics can be printed and exported to png bitmaps.
2951+ <br/>
2952+ <br/>
2953+ Some of the import and export features are provided using the packages dia, libwmf-bin, pstoedit, skencil, imagemagick, and perlmagick.
2954+ <br/>
2955+ <br/>
2956+ Other extensions use ruby, libxml-xql-perl, python-numpy, and python-lxml. You must have these packages to make full use of all extensions and effects.
2957+ <br/>
2958+ <br/>
2959+ If you want to use the spellchecker, you have to install aspell and the respective language-pack, e.g. aspell-en or aspell-de.
2960+ </p>
2961+ <p class="_world_of_goo_app_">
2962+ World of Goo
2963+ </p>
2964+ <p class="_world_of_goo_sub_">
2965+ Physics based puzzle/construction game
2966+ </p>
2967+ <p class="_world_of_goo_desc_">
2968+ Drag and drop living, squirming, talking globs of goo to build structures, bridges, cannonballs, zeppelins, and giant tongues. The millions of innocent goo balls that live in the beautiful World of Goo are curious to explore.
2969+ <br/>
2970+ <br/>
2971+ But they don't know that they are in a game, or that they are extremely delicious. The most addicting and awe-inspiring puzzle game will set you on an adventure that you'll never forget!
2972+ </p>
2973+ <p class="_blender_app_">
2974+ Blender
2975+ </p>
2976+ <p class="_blender_sub_">
2977+ Create and edit 3D models and animations
2978+ </p>
2979+ <p class="_blender_desc_">
2980+ Blender is an integrated 3d suite for modelling, animation, rendering, post-production, interactive creation and playback (games). Blender has its own particular user interface, which is implemented entirely in OpenGL and designed with speed in mind. Python bindings are available for scripting; import/export features for popular file formats like 3D Studio and Wavefront Obj are implemented as scripts by the community. Stills, animations, models for games or other third party engines and interactive content in the form of a standalone binary and/or a web plug-in are common products of Blender use.
2981+ </p>
2982+ <p class="_braid_app_">
2983+ Braid
2984+ </p>
2985+ <p class="_braid_sub_">
2986+ Manipulate the flow of time to solve puzzles!
2987+ </p>
2988+ <p class="_braid_desc_">
2989+ Braid is a platform game in painterly style where you manipulate the flow of time to solve puzzles. Every puzzle in Braid is unique; there is no filler.
2990+ <br/>
2991+ <br/>
2992+ Braid treats your time and attention as precious, and it does everything it can to give you a mind-expanding experience.
2993+ <br/>
2994+ <br/>
2995+ All gameplay is based on time manipulation. Journey into worlds where time behaves strangely; observe, learn from, and then master these worlds.
2996+ </p>
2997+ <p class="_rhythmbox_app_">
2998+ Rhythmbox Media Player
2999+ </p>
3000+ <p class="_brasero_app_">
3001+ Brasero Disc Burner
3002+ </p>
3003+ <p class="_movie_player_app_">
3004+ Movie Player
3005+ </p>
3006+ <p class="_shotwell_app_">
3007+ Shotwell Photo Manager
3008+ </p>
3009+ <p class="_pitivi_app_">
3010+ PiTiVi Video Editor
3011+ </p>
3012+ <p class="_sound_recorder_app_">
3013+ Sound Recorder
3014+ </p>
3015+ <p class="_empathy_app_">
3016+ Empathy Internet Messageing
3017+ </p>
3018+ <p class="_thunderbird_app_">
3019+ Thunderbird Mail/News
3020+ </p>
3021+ <p class="_firefox_app_">
3022+ Firefox Web Browser
3023+ </p>
3024+ <p class="_gwibber_app_">
3025+ Gwibber Social Client
3026+ </p>
3027+ <p class="_remote_desktop_app_">
3028+ Remote Desktop Viewer
3029+ </p>
3030+ <p class="_terminal_app_">
3031+ Terminal Server Client
3032+ </p>
3033+ <p class="_ubuntu_one_app_">
3034+ Ubuntu One
3035+ </p>
3036+ <p class="_ubuntu_software_center_app_">
3037+ Ubuntu Software Center
3038+ </p>
3039+ <p class="_ubuntu_one_music_app_">
3040+ Ubuntu One Music
3041+ </p>
3042+ <p class="_amazon_app_">
3043+ Amazon
3044+ </p>
3045+ <p class="_about_me_app_">
3046+ About Me
3047+ </p>
3048+ <p class="_additional_drivers_app_">
3049+ Additional Drivers
3050+ </p>
3051+ <p class="_aisleroit_app_">
3052+ AisleRoit Solitaire
3053+ </p>
3054+ <p class="_appearance_app_">
3055+ Appearance
3056+ </p>
3057+ <p class="_bluetooth_app_">
3058+ Bluetooth
3059+ </p>
3060+ <!--
3061+ * Dash
3062+ -->
3063+ <p class="_search_">Search your computer and online sources</p>
3064+ <!--
3065+ * Notifications
3066+ -->
3067+ <p class="_turn_off_bluetooth_">
3068+ Turn Off Bluetooth
3069+ </p>
3070+ <p class="_turn_on_bluetooth_">
3071+ Turn On Bluetooth
3072+ </p>
3073+ <p class="_visible_">
3074+ Visible
3075+ </p>
3076+ <p class="_mute_">
3077+ Mute
3078+ </p>
3079+ <p class="_unmute_">
3080+ Unmute
3081+ </p>
3082+ <p class="_shut_down_">
3083+ Shut Down…
3084+ </p>
3085+ <!--
3086+ Files Details - Images
3087+ -->
3088+ <p class="_photo_size_">
3089+ 15.2KB
3090+ </p>
3091+ <p class="_photo_date_">
3092+ Fri 26 Oct, 2001
3093+ </p>
3094+ <p class="_buck_off_title_">
3095+ Buck Off
3096+ </p>
3097+ <p class="_darkening_clockwork_title_">
3098+ Darkening Clockwork
3099+ </p>
3100+ <p class="_dybbølsbro_station_title_">
3101+ Dybbølsbro Station
3102+ </p>
3103+ <p class="_federica_miglio_title_">
3104+ Federica Miglio
3105+ </p>
3106+ <p class="_jardin_polar_title_">
3107+ Jardin Polar
3108+ </p>
3109+ <p class="_langelinie_alle_title_">
3110+ Langelinie Alle
3111+ </p>
3112+ <p class="_momiji_dream_title_">
3113+ Momiji Dream
3114+ </p>
3115+ <p class="_mount_snowdon_title_">
3116+ Mount Snowdon
3117+ </p>
3118+ <p class="_not_alone_title_">
3119+ Not Alone
3120+ </p>
3121+ <p class="_power_of_words_title_">
3122+ Power Of Words
3123+ </p>
3124+ <p class="_purple_dancers_title_">
3125+ Purple Dancers
3126+ </p>
3127+ <p class="_sand_maze_title_">
3128+ Sand Maze
3129+ </p>
3130+ <p class="_small_flowers_title_">
3131+ Small Flowers
3132+ </p>
3133+ <p class="_stalking_ocelot_title_">
3134+ Stalking Ocelot
3135+ </p>
3136+ <p class="_the_grass_aint_greener_title_">
3137+ The Grass Aint Greener
3138+ </p>
3139+ <p class="_wildWheat_title_">
3140+ WildWheat
3141+ </p>
3142+ <!--
3143+ Files Details - Video
3144+ -->
3145+ <p class="_introduction_ubuntu_title_">
3146+ Introduction Ubuntu
3147+ </p>
3148+ <p class="_video_size_">
3149+ 5.3MB
3150+ </p>
3151+ <p class="_video_date_">
3152+ Mon 11 October, 2010
3153+ </p>
3154+ <!--
3155+ Files Details - Music
3156+ -->
3157+ <p class="_Happiness_title_">
3158+ Happiness
3159+ </p>
3160+ <p class="_music_size_">
3161+ 3.3MB
3162+ </p>
3163+ <p class="_music_date_">
3164+ Weds 14 October, 2010
3165+ </p>
3166+ <!--
3167+ Error Container
3168+ -->
3169+ <p class="_download_cta_">
3170+ Download Ubuntu
3171+ </p>
3172+ </div>
3173+
3174+ <script type="text/javascript" src="../js/jquery.min.js"></script>
3175+ <script type="text/javascript" src="../js/jquery-ui.min.js"></script>
3176+
3177+ <script type="text/javascript" src="../js/lang.js"></script>
3178+ <script type="text/javascript" src="../js/scripts.js"></script>
3179+ <script type="text/javascript" src="../js/welcomesystem.js"></script>
3180+ <script type="text/javascript" src="../js/guidedtoursystem.js"></script>
3181+ <script type="text/javascript" src="../js/filesystem.js"></script>
3182+ <script type="text/javascript" src="../js/folders.js"></script>
3183+ <script type="text/javascript" src="../js/systemoverlay.js"></script>
3184+ <script type="text/javascript" src="../js/systemmenu.js"></script>
3185+ <script type="text/javascript" src="../js/internetsystem.js"></script>
3186+ <script type="text/javascript" src="../js/emailsystem.js"></script>
3187+ <script type="text/javascript" src="../js/systemsettings.js"></script>
3188+ <script type="text/javascript" src="../js/email.js"></script>
3189+ <script type="text/javascript" src="../js/errormessage.js"></script>
3190+ <script type="text/javascript" src="../js/ubuntuonesystem.js"></script>
3191+ <script type="text/javascript" src="../js/file.js"></script>
3192+ <script type="text/javascript" src="../js/shotwellsystem.js"></script>
3193+ <script type="text/javascript" src="../js/shutdownSystem.js"></script>
3194+ <script type="text/javascript" src="../js/movieplayersystem.js"></script>
3195+ <script type="text/javascript" src="../js/libresystem.js"></script>
3196+ <script type="text/javascript" src="../js/softwaresystem.js"></script>
3197+ <script type="text/javascript" src="../js/notificationsystem.js"></script>
3198+ <script type="text/javascript" src="../js/analytics.js"></script>
3199+
3200+ </body>
3201+</html>
3202
3203=== modified file 'img/applications/aboutme.png'
3204Binary files img/applications/aboutme.png 2014-03-05 15:11:18 +0000 and img/applications/aboutme.png 2016-01-12 12:40:40 +0000 differ
3205=== modified file 'img/applications/aboutubuntu.png'
3206Binary files img/applications/aboutubuntu.png 2014-03-05 15:11:18 +0000 and img/applications/aboutubuntu.png 2016-01-12 12:40:40 +0000 differ
3207=== modified file 'img/applications/additionaldrivers.png'
3208Binary files img/applications/additionaldrivers.png 2014-03-05 15:11:18 +0000 and img/applications/additionaldrivers.png 2016-01-12 12:40:40 +0000 differ
3209=== modified file 'img/applications/amazon.png'
3210Binary files img/applications/amazon.png 2014-03-05 15:11:18 +0000 and img/applications/amazon.png 2016-01-12 12:40:40 +0000 differ
3211=== modified file 'img/applications/appearance.png'
3212Binary files img/applications/appearance.png 2014-03-05 15:11:18 +0000 and img/applications/appearance.png 2016-01-12 12:40:40 +0000 differ
3213=== modified file 'img/applications/assistive.png'
3214Binary files img/applications/assistive.png 2014-03-05 15:11:18 +0000 and img/applications/assistive.png 2016-01-12 12:40:40 +0000 differ
3215=== modified file 'img/applications/audio.png'
3216Binary files img/applications/audio.png 2014-03-05 15:11:18 +0000 and img/applications/audio.png 2016-01-12 12:40:40 +0000 differ
3217=== modified file 'img/applications/bluetooth.png'
3218Binary files img/applications/bluetooth.png 2014-03-05 15:11:18 +0000 and img/applications/bluetooth.png 2016-01-12 12:40:40 +0000 differ
3219=== modified file 'img/applications/blur/aboutme.png'
3220Binary files img/applications/blur/aboutme.png 2014-03-05 15:11:18 +0000 and img/applications/blur/aboutme.png 2016-01-12 12:40:40 +0000 differ
3221=== modified file 'img/applications/blur/aboutubuntu.png'
3222Binary files img/applications/blur/aboutubuntu.png 2014-03-05 15:11:18 +0000 and img/applications/blur/aboutubuntu.png 2016-01-12 12:40:40 +0000 differ
3223=== modified file 'img/applications/blur/additionaldrivers.png'
3224Binary files img/applications/blur/additionaldrivers.png 2014-03-05 15:11:18 +0000 and img/applications/blur/additionaldrivers.png 2016-01-12 12:40:40 +0000 differ
3225=== modified file 'img/applications/blur/amazon.png'
3226Binary files img/applications/blur/amazon.png 2014-03-05 15:11:18 +0000 and img/applications/blur/amazon.png 2016-01-12 12:40:40 +0000 differ
3227=== modified file 'img/applications/blur/appearance.png'
3228Binary files img/applications/blur/appearance.png 2014-03-05 15:11:18 +0000 and img/applications/blur/appearance.png 2016-01-12 12:40:40 +0000 differ
3229=== modified file 'img/applications/blur/assistive.png'
3230Binary files img/applications/blur/assistive.png 2014-03-05 15:11:18 +0000 and img/applications/blur/assistive.png 2016-01-12 12:40:40 +0000 differ
3231=== modified file 'img/applications/blur/audio.png'
3232Binary files img/applications/blur/audio.png 2014-03-05 15:11:18 +0000 and img/applications/blur/audio.png 2016-01-12 12:40:40 +0000 differ
3233=== modified file 'img/applications/blur/bluetooth.png'
3234Binary files img/applications/blur/bluetooth.png 2014-03-05 15:11:18 +0000 and img/applications/blur/bluetooth.png 2016-01-12 12:40:40 +0000 differ
3235=== modified file 'img/applications/blur/brasero.png'
3236Binary files img/applications/blur/brasero.png 2014-03-05 15:11:18 +0000 and img/applications/blur/brasero.png 2016-01-12 12:40:40 +0000 differ
3237=== modified file 'img/applications/blur/calc.png'
3238Binary files img/applications/blur/calc.png 2014-03-05 15:11:18 +0000 and img/applications/blur/calc.png 2016-01-12 12:40:40 +0000 differ
3239=== modified file 'img/applications/blur/draw.png'
3240Binary files img/applications/blur/draw.png 2014-03-05 15:11:18 +0000 and img/applications/blur/draw.png 2016-01-12 12:40:40 +0000 differ
3241=== modified file 'img/applications/blur/empathy.png'
3242Binary files img/applications/blur/empathy.png 2014-03-05 15:11:18 +0000 and img/applications/blur/empathy.png 2016-01-12 12:40:40 +0000 differ
3243=== modified file 'img/applications/blur/firefox.png'
3244Binary files img/applications/blur/firefox.png 2014-03-05 15:11:18 +0000 and img/applications/blur/firefox.png 2016-01-12 12:40:40 +0000 differ
3245=== modified file 'img/applications/blur/folder-desktop.png'
3246Binary files img/applications/blur/folder-desktop.png 2014-03-05 15:11:18 +0000 and img/applications/blur/folder-desktop.png 2016-01-12 12:40:40 +0000 differ
3247=== modified file 'img/applications/blur/folder-documents.png'
3248Binary files img/applications/blur/folder-documents.png 2014-03-05 15:11:18 +0000 and img/applications/blur/folder-documents.png 2016-01-12 12:40:40 +0000 differ
3249=== modified file 'img/applications/blur/folder-downloads.png'
3250Binary files img/applications/blur/folder-downloads.png 2014-03-05 15:11:18 +0000 and img/applications/blur/folder-downloads.png 2016-01-12 12:40:40 +0000 differ
3251=== modified file 'img/applications/blur/folder-generic.png'
3252Binary files img/applications/blur/folder-generic.png 2014-03-05 15:11:18 +0000 and img/applications/blur/folder-generic.png 2016-01-12 12:40:40 +0000 differ
3253=== modified file 'img/applications/blur/folder-music.png'
3254Binary files img/applications/blur/folder-music.png 2014-03-05 15:11:18 +0000 and img/applications/blur/folder-music.png 2016-01-12 12:40:40 +0000 differ
3255=== modified file 'img/applications/blur/folder-pictures.png'
3256Binary files img/applications/blur/folder-pictures.png 2014-03-05 15:11:18 +0000 and img/applications/blur/folder-pictures.png 2016-01-12 12:40:40 +0000 differ
3257=== modified file 'img/applications/blur/folder-videos.png'
3258Binary files img/applications/blur/folder-videos.png 2014-03-05 15:11:18 +0000 and img/applications/blur/folder-videos.png 2016-01-12 12:40:40 +0000 differ
3259=== modified file 'img/applications/blur/gimp.png'
3260Binary files img/applications/blur/gimp.png 2014-03-05 15:11:18 +0000 and img/applications/blur/gimp.png 2016-01-12 12:40:40 +0000 differ
3261=== modified file 'img/applications/blur/gwibber.png'
3262Binary files img/applications/blur/gwibber.png 2014-03-05 15:11:18 +0000 and img/applications/blur/gwibber.png 2016-01-12 12:40:40 +0000 differ
3263=== modified file 'img/applications/blur/impress.png'
3264Binary files img/applications/blur/impress.png 2014-03-05 15:11:18 +0000 and img/applications/blur/impress.png 2016-01-12 12:40:40 +0000 differ
3265=== modified file 'img/applications/blur/math.png'
3266Binary files img/applications/blur/math.png 2014-03-05 15:11:18 +0000 and img/applications/blur/math.png 2016-01-12 12:40:40 +0000 differ
3267=== modified file 'img/applications/blur/movieplayer.png'
3268Binary files img/applications/blur/movieplayer.png 2014-03-05 15:11:18 +0000 and img/applications/blur/movieplayer.png 2016-01-12 12:40:40 +0000 differ
3269=== modified file 'img/applications/blur/pitivi.png'
3270Binary files img/applications/blur/pitivi.png 2014-03-05 15:11:18 +0000 and img/applications/blur/pitivi.png 2016-01-12 12:40:40 +0000 differ
3271=== modified file 'img/applications/blur/remotedesktop.png'
3272Binary files img/applications/blur/remotedesktop.png 2014-03-05 15:11:18 +0000 and img/applications/blur/remotedesktop.png 2016-01-12 12:40:40 +0000 differ
3273=== modified file 'img/applications/blur/rhythmbox.png'
3274Binary files img/applications/blur/rhythmbox.png 2014-03-05 15:11:18 +0000 and img/applications/blur/rhythmbox.png 2016-01-12 12:40:40 +0000 differ
3275=== modified file 'img/applications/blur/screenshot.png'
3276Binary files img/applications/blur/screenshot.png 2014-03-05 15:11:18 +0000 and img/applications/blur/screenshot.png 2016-01-12 12:40:40 +0000 differ
3277=== modified file 'img/applications/blur/shotwell.png'
3278Binary files img/applications/blur/shotwell.png 2014-03-05 15:11:18 +0000 and img/applications/blur/shotwell.png 2016-01-12 12:40:40 +0000 differ
3279=== modified file 'img/applications/blur/solitaire.png'
3280Binary files img/applications/blur/solitaire.png 2014-03-05 15:11:18 +0000 and img/applications/blur/solitaire.png 2016-01-12 12:40:40 +0000 differ
3281=== modified file 'img/applications/blur/soundrecorder.png'
3282Binary files img/applications/blur/soundrecorder.png 2014-03-05 15:11:18 +0000 and img/applications/blur/soundrecorder.png 2016-01-12 12:40:40 +0000 differ
3283=== modified file 'img/applications/blur/systemsettings.png'
3284Binary files img/applications/blur/systemsettings.png 2014-03-05 15:11:18 +0000 and img/applications/blur/systemsettings.png 2016-01-12 12:40:40 +0000 differ
3285=== modified file 'img/applications/blur/terminalserver.png'
3286Binary files img/applications/blur/terminalserver.png 2014-03-05 15:11:18 +0000 and img/applications/blur/terminalserver.png 2016-01-12 12:40:40 +0000 differ
3287=== modified file 'img/applications/blur/thunderbird.png'
3288Binary files img/applications/blur/thunderbird.png 2014-03-05 15:11:18 +0000 and img/applications/blur/thunderbird.png 2016-01-12 12:40:40 +0000 differ
3289=== modified file 'img/applications/blur/ubuntuone.png'
3290Binary files img/applications/blur/ubuntuone.png 2014-03-05 15:11:18 +0000 and img/applications/blur/ubuntuone.png 2016-01-12 12:40:40 +0000 differ
3291=== modified file 'img/applications/blur/ubuntuonemusic.png'
3292Binary files img/applications/blur/ubuntuonemusic.png 2014-03-05 15:11:18 +0000 and img/applications/blur/ubuntuonemusic.png 2016-01-12 12:40:40 +0000 differ
3293=== modified file 'img/applications/blur/unknown.png'
3294Binary files img/applications/blur/unknown.png 2014-03-05 15:11:18 +0000 and img/applications/blur/unknown.png 2016-01-12 12:40:40 +0000 differ
3295=== modified file 'img/applications/blur/writer.png'
3296Binary files img/applications/blur/writer.png 2014-03-05 15:11:18 +0000 and img/applications/blur/writer.png 2016-01-12 12:40:40 +0000 differ
3297=== modified file 'img/applications/blur/xchat.png'
3298Binary files img/applications/blur/xchat.png 2014-03-05 15:11:18 +0000 and img/applications/blur/xchat.png 2016-01-12 12:40:40 +0000 differ
3299=== modified file 'img/applications/brasero.png'
3300Binary files img/applications/brasero.png 2014-03-05 15:11:18 +0000 and img/applications/brasero.png 2016-01-12 12:40:40 +0000 differ
3301=== modified file 'img/applications/calc.png'
3302Binary files img/applications/calc.png 2014-03-05 15:11:18 +0000 and img/applications/calc.png 2016-01-12 12:40:40 +0000 differ
3303=== modified file 'img/applications/draw.png'
3304Binary files img/applications/draw.png 2014-03-05 15:11:18 +0000 and img/applications/draw.png 2016-01-12 12:40:40 +0000 differ
3305=== modified file 'img/applications/empathy.png'
3306Binary files img/applications/empathy.png 2014-03-05 15:11:18 +0000 and img/applications/empathy.png 2016-01-12 12:40:40 +0000 differ
3307=== modified file 'img/applications/firefox.png'
3308Binary files img/applications/firefox.png 2014-03-05 15:11:18 +0000 and img/applications/firefox.png 2016-01-12 12:40:40 +0000 differ
3309=== modified file 'img/applications/folder-desktop.png'
3310Binary files img/applications/folder-desktop.png 2014-03-05 15:11:18 +0000 and img/applications/folder-desktop.png 2016-01-12 12:40:40 +0000 differ
3311=== modified file 'img/applications/folder-documents.png'
3312Binary files img/applications/folder-documents.png 2014-03-05 15:11:18 +0000 and img/applications/folder-documents.png 2016-01-12 12:40:40 +0000 differ
3313=== modified file 'img/applications/folder-downloads.png'
3314Binary files img/applications/folder-downloads.png 2014-03-05 15:11:18 +0000 and img/applications/folder-downloads.png 2016-01-12 12:40:40 +0000 differ
3315=== modified file 'img/applications/folder-generic.png'
3316Binary files img/applications/folder-generic.png 2014-03-05 15:11:18 +0000 and img/applications/folder-generic.png 2016-01-12 12:40:40 +0000 differ
3317=== modified file 'img/applications/folder-music.png'
3318Binary files img/applications/folder-music.png 2014-03-05 15:11:18 +0000 and img/applications/folder-music.png 2016-01-12 12:40:40 +0000 differ
3319=== modified file 'img/applications/folder-pictures.png'
3320Binary files img/applications/folder-pictures.png 2014-03-05 15:11:18 +0000 and img/applications/folder-pictures.png 2016-01-12 12:40:40 +0000 differ
3321=== modified file 'img/applications/folder-videos.png'
3322Binary files img/applications/folder-videos.png 2014-03-05 15:11:18 +0000 and img/applications/folder-videos.png 2016-01-12 12:40:40 +0000 differ
3323=== modified file 'img/applications/folder.png'
3324Binary files img/applications/folder.png 2014-04-11 14:43:39 +0000 and img/applications/folder.png 2016-01-12 12:40:40 +0000 differ
3325=== modified file 'img/applications/gimp.png'
3326Binary files img/applications/gimp.png 2014-03-05 15:11:18 +0000 and img/applications/gimp.png 2016-01-12 12:40:40 +0000 differ
3327=== modified file 'img/applications/gwibber.png'
3328Binary files img/applications/gwibber.png 2014-03-05 15:11:18 +0000 and img/applications/gwibber.png 2016-01-12 12:40:40 +0000 differ
3329=== modified file 'img/applications/impress.png'
3330Binary files img/applications/impress.png 2014-03-05 15:11:18 +0000 and img/applications/impress.png 2016-01-12 12:40:40 +0000 differ
3331=== modified file 'img/applications/math.png'
3332Binary files img/applications/math.png 2014-03-05 15:11:18 +0000 and img/applications/math.png 2016-01-12 12:40:40 +0000 differ
3333=== modified file 'img/applications/movieplayer.png'
3334Binary files img/applications/movieplayer.png 2014-03-05 15:11:18 +0000 and img/applications/movieplayer.png 2016-01-12 12:40:40 +0000 differ
3335=== modified file 'img/applications/pitivi.png'
3336Binary files img/applications/pitivi.png 2014-03-05 15:11:18 +0000 and img/applications/pitivi.png 2016-01-12 12:40:40 +0000 differ
3337=== modified file 'img/applications/remotedesktop.png'
3338Binary files img/applications/remotedesktop.png 2014-03-05 15:11:18 +0000 and img/applications/remotedesktop.png 2016-01-12 12:40:40 +0000 differ
3339=== modified file 'img/applications/rhythmbox.png'
3340Binary files img/applications/rhythmbox.png 2014-03-19 16:11:40 +0000 and img/applications/rhythmbox.png 2016-01-12 12:40:40 +0000 differ
3341=== modified file 'img/applications/screenshot.png'
3342Binary files img/applications/screenshot.png 2014-03-05 15:11:18 +0000 and img/applications/screenshot.png 2016-01-12 12:40:40 +0000 differ
3343=== modified file 'img/applications/shotwell.png'
3344Binary files img/applications/shotwell.png 2014-03-05 15:11:18 +0000 and img/applications/shotwell.png 2016-01-12 12:40:40 +0000 differ
3345=== modified file 'img/applications/solitaire.png'
3346Binary files img/applications/solitaire.png 2014-03-05 15:11:18 +0000 and img/applications/solitaire.png 2016-01-12 12:40:40 +0000 differ
3347=== modified file 'img/applications/soundrecorder.png'
3348Binary files img/applications/soundrecorder.png 2014-03-05 15:11:18 +0000 and img/applications/soundrecorder.png 2016-01-12 12:40:40 +0000 differ
3349=== modified file 'img/applications/systemsettings.png'
3350Binary files img/applications/systemsettings.png 2014-03-05 15:11:18 +0000 and img/applications/systemsettings.png 2016-01-12 12:40:40 +0000 differ
3351=== modified file 'img/applications/terminalserver.png'
3352Binary files img/applications/terminalserver.png 2014-03-05 15:11:18 +0000 and img/applications/terminalserver.png 2016-01-12 12:40:40 +0000 differ
3353=== modified file 'img/applications/thunderbird.png'
3354Binary files img/applications/thunderbird.png 2014-03-05 15:11:18 +0000 and img/applications/thunderbird.png 2016-01-12 12:40:40 +0000 differ
3355=== modified file 'img/applications/ubuntuone.png'
3356Binary files img/applications/ubuntuone.png 2014-03-05 15:11:18 +0000 and img/applications/ubuntuone.png 2016-01-12 12:40:40 +0000 differ
3357=== modified file 'img/applications/ubuntuonemusic.png'
3358Binary files img/applications/ubuntuonemusic.png 2014-03-05 15:11:18 +0000 and img/applications/ubuntuonemusic.png 2016-01-12 12:40:40 +0000 differ
3359=== modified file 'img/applications/ubuntusoftwarecenter.png'
3360Binary files img/applications/ubuntusoftwarecenter.png 2014-03-19 16:17:18 +0000 and img/applications/ubuntusoftwarecenter.png 2016-01-12 12:40:40 +0000 differ
3361=== modified file 'img/applications/unknown.png'
3362Binary files img/applications/unknown.png 2014-03-05 15:11:18 +0000 and img/applications/unknown.png 2016-01-12 12:40:40 +0000 differ
3363=== modified file 'img/applications/writer.png'
3364Binary files img/applications/writer.png 2014-03-05 15:11:18 +0000 and img/applications/writer.png 2016-01-12 12:40:40 +0000 differ
3365=== modified file 'img/applications/xchat.png'
3366Binary files img/applications/xchat.png 2014-03-05 15:11:18 +0000 and img/applications/xchat.png 2016-01-12 12:40:40 +0000 differ
3367=== modified file 'img/archive-logo.png'
3368Binary files img/archive-logo.png 2016-01-04 16:51:31 +0000 and img/archive-logo.png 2016-01-12 12:40:40 +0000 differ
3369=== modified file 'img/background-slider.png'
3370Binary files img/background-slider.png 2011-10-14 09:49:36 +0000 and img/background-slider.png 2016-01-12 12:40:40 +0000 differ
3371=== modified file 'img/black-bg-00.png'
3372Binary files img/black-bg-00.png 2011-10-14 09:49:36 +0000 and img/black-bg-00.png 2016-01-12 12:40:40 +0000 differ
3373=== modified file 'img/black-bg-20.png'
3374Binary files img/black-bg-20.png 2011-10-14 09:49:36 +0000 and img/black-bg-20.png 2016-01-12 12:40:40 +0000 differ
3375=== modified file 'img/black-bg-30.png'
3376Binary files img/black-bg-30.png 2011-10-14 09:49:36 +0000 and img/black-bg-30.png 2016-01-12 12:40:40 +0000 differ
3377=== modified file 'img/black-bg-40.png'
3378Binary files img/black-bg-40.png 2011-10-14 09:49:36 +0000 and img/black-bg-40.png 2016-01-12 12:40:40 +0000 differ
3379=== modified file 'img/black-bg-60.png'
3380Binary files img/black-bg-60.png 2011-10-14 09:49:36 +0000 and img/black-bg-60.png 2016-01-12 12:40:40 +0000 differ
3381=== modified file 'img/black-bg-80.png'
3382Binary files img/black-bg-80.png 2011-10-14 09:49:36 +0000 and img/black-bg-80.png 2016-01-12 12:40:40 +0000 differ
3383=== modified file 'img/blur/background-slider.png'
3384Binary files img/blur/background-slider.png 2011-10-14 09:49:36 +0000 and img/blur/background-slider.png 2016-01-12 12:40:40 +0000 differ
3385=== modified file 'img/blur/black-bg-40.png'
3386Binary files img/blur/black-bg-40.png 2011-10-14 09:49:36 +0000 and img/blur/black-bg-40.png 2016-01-12 12:40:40 +0000 differ
3387=== modified file 'img/blur/black-bg-80.png'
3388Binary files img/blur/black-bg-80.png 2011-10-14 09:49:36 +0000 and img/blur/black-bg-80.png 2016-01-12 12:40:40 +0000 differ
3389=== modified file 'img/blur/button-slider.png'
3390Binary files img/blur/button-slider.png 2011-10-14 09:49:36 +0000 and img/blur/button-slider.png 2016-01-12 12:40:40 +0000 differ
3391=== modified file 'img/blur/librecalc.jpg'
3392Binary files img/blur/librecalc.jpg 2014-03-05 12:27:32 +0000 and img/blur/librecalc.jpg 2016-01-12 12:40:40 +0000 differ
3393=== modified file 'img/blur/libreimpress.jpg'
3394Binary files img/blur/libreimpress.jpg 2014-03-05 12:27:32 +0000 and img/blur/libreimpress.jpg 2016-01-12 12:40:40 +0000 differ
3395=== modified file 'img/blur/librewriter.jpg'
3396Binary files img/blur/librewriter.jpg 2014-03-05 12:27:32 +0000 and img/blur/librewriter.jpg 2016-01-12 12:40:40 +0000 differ
3397=== modified file 'img/blur/speaker-bg-slider.png'
3398Binary files img/blur/speaker-bg-slider.png 2011-10-14 09:49:36 +0000 and img/blur/speaker-bg-slider.png 2016-01-12 12:40:40 +0000 differ
3399=== modified file 'img/blur/topleft-button.png'
3400Binary files img/blur/topleft-button.png 2011-10-14 09:49:36 +0000 and img/blur/topleft-button.png 2016-01-12 12:40:40 +0000 differ
3401=== modified file 'img/button-slider.png'
3402Binary files img/button-slider.png 2011-10-14 09:49:36 +0000 and img/button-slider.png 2016-01-12 12:40:40 +0000 differ
3403=== modified file 'img/dash-bg-60.png'
3404Binary files img/dash-bg-60.png 2011-10-14 09:49:36 +0000 and img/dash-bg-60.png 2016-01-12 12:40:40 +0000 differ
3405=== modified file 'img/dash/dash-applications.png'
3406Binary files img/dash/dash-applications.png 2013-10-02 11:21:33 +0000 and img/dash/dash-applications.png 2016-01-12 12:40:40 +0000 differ
3407=== modified file 'img/dash/dash-chat.png'
3408Binary files img/dash/dash-chat.png 2014-03-19 16:17:18 +0000 and img/dash/dash-chat.png 2016-01-12 12:40:40 +0000 differ
3409=== modified file 'img/dash/dash-close-clicked.png'
3410Binary files img/dash/dash-close-clicked.png 2012-04-05 10:02:01 +0000 and img/dash/dash-close-clicked.png 2016-01-12 12:40:40 +0000 differ
3411=== modified file 'img/dash/dash-close.png'
3412Binary files img/dash/dash-close.png 2012-04-05 10:02:01 +0000 and img/dash/dash-close.png 2016-01-12 12:40:40 +0000 differ
3413=== modified file 'img/dash/dash-files.png'
3414Binary files img/dash/dash-files.png 2013-10-02 11:21:33 +0000 and img/dash/dash-files.png 2016-01-12 12:40:40 +0000 differ
3415=== modified file 'img/dash/dash-home.png'
3416Binary files img/dash/dash-home.png 2013-10-02 11:21:33 +0000 and img/dash/dash-home.png 2016-01-12 12:40:40 +0000 differ
3417=== modified file 'img/dash/dash-max.png'
3418Binary files img/dash/dash-max.png 2014-03-05 12:27:32 +0000 and img/dash/dash-max.png 2016-01-12 12:40:40 +0000 differ
3419=== modified file 'img/dash/dash-min.png'
3420Binary files img/dash/dash-min.png 2014-03-05 12:27:32 +0000 and img/dash/dash-min.png 2016-01-12 12:40:40 +0000 differ
3421=== modified file 'img/dash/dash-music.png'
3422Binary files img/dash/dash-music.png 2013-10-02 11:21:33 +0000 and img/dash/dash-music.png 2016-01-12 12:40:40 +0000 differ
3423=== modified file 'img/dash/dash-photos.png'
3424Binary files img/dash/dash-photos.png 2014-03-19 16:17:18 +0000 and img/dash/dash-photos.png 2016-01-12 12:40:40 +0000 differ
3425=== modified file 'img/dash/dash-video.png'
3426Binary files img/dash/dash-video.png 2013-10-02 11:21:33 +0000 and img/dash/dash-video.png 2016-01-12 12:40:40 +0000 differ
3427=== modified file 'img/dash/min_normal.png'
3428Binary files img/dash/min_normal.png 2012-04-05 10:02:01 +0000 and img/dash/min_normal.png 2016-01-12 12:40:40 +0000 differ
3429=== modified file 'img/dash/unmax_normal.png'
3430Binary files img/dash/unmax_normal.png 2012-04-05 10:02:01 +0000 and img/dash/unmax_normal.png 2016-01-12 12:40:40 +0000 differ
3431=== modified file 'img/email/archive-logo.png'
3432Binary files img/email/archive-logo.png 2011-10-14 09:49:36 +0000 and img/email/archive-logo.png 2016-01-12 12:40:40 +0000 differ
3433=== modified file 'img/email/blur/archive-logo.png'
3434Binary files img/email/blur/archive-logo.png 2011-10-14 09:49:36 +0000 and img/email/blur/archive-logo.png 2016-01-12 12:40:40 +0000 differ
3435=== modified file 'img/email/blur/archive.png'
3436Binary files img/email/blur/archive.png 2012-04-11 09:12:37 +0000 and img/email/blur/archive.png 2016-01-12 12:40:40 +0000 differ
3437=== modified file 'img/email/blur/divider.png'
3438Binary files img/email/blur/divider.png 2011-10-14 09:49:36 +0000 and img/email/blur/divider.png 2016-01-12 12:40:40 +0000 differ
3439=== modified file 'img/email/blur/forward-logo.png'
3440Binary files img/email/blur/forward-logo.png 2011-10-14 09:49:36 +0000 and img/email/blur/forward-logo.png 2016-01-12 12:40:40 +0000 differ
3441=== modified file 'img/email/blur/forward-reply-logo.png'
3442Binary files img/email/blur/forward-reply-logo.png 2011-10-14 09:49:36 +0000 and img/email/blur/forward-reply-logo.png 2016-01-12 12:40:40 +0000 differ
3443=== modified file 'img/email/blur/glasses.png'
3444Binary files img/email/blur/glasses.png 2011-10-14 09:49:36 +0000 and img/email/blur/glasses.png 2016-01-12 12:40:40 +0000 differ
3445=== modified file 'img/email/blur/inbox.png'
3446Binary files img/email/blur/inbox.png 2011-10-14 09:49:36 +0000 and img/email/blur/inbox.png 2016-01-12 12:40:40 +0000 differ
3447=== modified file 'img/email/blur/message-glasses.png'
3448Binary files img/email/blur/message-glasses.png 2011-10-14 09:49:36 +0000 and img/email/blur/message-glasses.png 2016-01-12 12:40:40 +0000 differ
3449=== modified file 'img/email/blur/message-starred.png'
3450Binary files img/email/blur/message-starred.png 2011-10-14 09:49:36 +0000 and img/email/blur/message-starred.png 2016-01-12 12:40:40 +0000 differ
3451=== modified file 'img/email/blur/read.png'
3452Binary files img/email/blur/read.png 2011-10-14 09:49:36 +0000 and img/email/blur/read.png 2016-01-12 12:40:40 +0000 differ
3453=== modified file 'img/email/blur/reply-logo.png'
3454Binary files img/email/blur/reply-logo.png 2011-10-14 09:49:36 +0000 and img/email/blur/reply-logo.png 2016-01-12 12:40:40 +0000 differ
3455=== modified file 'img/email/blur/sent.png'
3456Binary files img/email/blur/sent.png 2011-10-14 09:49:36 +0000 and img/email/blur/sent.png 2016-01-12 12:40:40 +0000 differ
3457=== modified file 'img/email/blur/star.png'
3458Binary files img/email/blur/star.png 2011-10-14 09:49:36 +0000 and img/email/blur/star.png 2016-01-12 12:40:40 +0000 differ
3459=== modified file 'img/email/blur/trash.png'
3460Binary files img/email/blur/trash.png 2011-10-14 09:49:36 +0000 and img/email/blur/trash.png 2016-01-12 12:40:40 +0000 differ
3461=== modified file 'img/email/clip.png'
3462Binary files img/email/clip.png 2011-10-14 09:49:36 +0000 and img/email/clip.png 2016-01-12 12:40:40 +0000 differ
3463=== modified file 'img/email/disabled-format-buttons.jpg'
3464Binary files img/email/disabled-format-buttons.jpg 2012-01-05 14:29:33 +0000 and img/email/disabled-format-buttons.jpg 2016-01-12 12:40:40 +0000 differ
3465=== modified file 'img/email/divider.png'
3466Binary files img/email/divider.png 2012-04-05 16:27:59 +0000 and img/email/divider.png 2016-01-12 12:40:40 +0000 differ
3467=== modified file 'img/email/drafts.png'
3468Binary files img/email/drafts.png 2011-10-14 09:49:36 +0000 and img/email/drafts.png 2016-01-12 12:40:40 +0000 differ
3469=== modified file 'img/email/fire.png'
3470Binary files img/email/fire.png 2011-10-14 09:49:36 +0000 and img/email/fire.png 2016-01-12 12:40:40 +0000 differ
3471=== modified file 'img/email/forward-logo.png'
3472Binary files img/email/forward-logo.png 2011-10-14 09:49:36 +0000 and img/email/forward-logo.png 2016-01-12 12:40:40 +0000 differ
3473=== modified file 'img/email/forward-reply-logo.png'
3474Binary files img/email/forward-reply-logo.png 2011-10-14 09:49:36 +0000 and img/email/forward-reply-logo.png 2016-01-12 12:40:40 +0000 differ
3475=== modified file 'img/email/glasses.png'
3476Binary files img/email/glasses.png 2011-10-14 09:49:36 +0000 and img/email/glasses.png 2016-01-12 12:40:40 +0000 differ
3477=== modified file 'img/email/icons/archive.png'
3478Binary files img/email/icons/archive.png 2016-01-06 13:57:16 +0000 and img/email/icons/archive.png 2016-01-12 12:40:40 +0000 differ
3479=== modified file 'img/email/icons/attach-dark.png'
3480Binary files img/email/icons/attach-dark.png 2016-01-06 13:57:16 +0000 and img/email/icons/attach-dark.png 2016-01-12 12:40:40 +0000 differ
3481=== modified file 'img/email/icons/attach-light.png'
3482Binary files img/email/icons/attach-light.png 2016-01-06 13:57:16 +0000 and img/email/icons/attach-light.png 2016-01-12 12:40:40 +0000 differ
3483=== modified file 'img/email/icons/delete.png'
3484Binary files img/email/icons/delete.png 2016-01-06 13:57:16 +0000 and img/email/icons/delete.png 2016-01-12 12:40:40 +0000 differ
3485=== modified file 'img/email/icons/forward.png'
3486Binary files img/email/icons/forward.png 2016-01-06 13:57:16 +0000 and img/email/icons/forward.png 2016-01-12 12:40:40 +0000 differ
3487=== modified file 'img/email/icons/get-mail.png'
3488Binary files img/email/icons/get-mail.png 2016-01-06 13:57:16 +0000 and img/email/icons/get-mail.png 2016-01-12 12:40:40 +0000 differ
3489=== modified file 'img/email/icons/junk.png'
3490Binary files img/email/icons/junk.png 2016-01-06 13:57:16 +0000 and img/email/icons/junk.png 2016-01-12 12:40:40 +0000 differ
3491=== modified file 'img/email/icons/reply.png'
3492Binary files img/email/icons/reply.png 2016-01-06 13:57:16 +0000 and img/email/icons/reply.png 2016-01-12 12:40:40 +0000 differ
3493=== modified file 'img/email/icons/write-send-dark.png'
3494Binary files img/email/icons/write-send-dark.png 2016-01-06 13:57:16 +0000 and img/email/icons/write-send-dark.png 2016-01-12 12:40:40 +0000 differ
3495=== modified file 'img/email/icons/write-send-light.png'
3496Binary files img/email/icons/write-send-light.png 2016-01-06 13:57:16 +0000 and img/email/icons/write-send-light.png 2016-01-12 12:40:40 +0000 differ
3497=== modified file 'img/email/icons/write.png'
3498Binary files img/email/icons/write.png 2016-01-06 13:57:16 +0000 and img/email/icons/write.png 2016-01-12 12:40:40 +0000 differ
3499=== modified file 'img/email/inbox.png'
3500Binary files img/email/inbox.png 2011-10-14 09:49:36 +0000 and img/email/inbox.png 2016-01-12 12:40:40 +0000 differ
3501=== modified file 'img/email/message-glasses.png'
3502Binary files img/email/message-glasses.png 2011-10-14 09:49:36 +0000 and img/email/message-glasses.png 2016-01-12 12:40:40 +0000 differ
3503=== modified file 'img/email/message-starred.png'
3504Binary files img/email/message-starred.png 2011-10-14 09:49:36 +0000 and img/email/message-starred.png 2016-01-12 12:40:40 +0000 differ
3505=== modified file 'img/email/read.png'
3506Binary files img/email/read.png 2011-10-14 09:49:36 +0000 and img/email/read.png 2016-01-12 12:40:40 +0000 differ
3507=== modified file 'img/email/reply-logo.png'
3508Binary files img/email/reply-logo.png 2011-10-14 09:49:36 +0000 and img/email/reply-logo.png 2016-01-12 12:40:40 +0000 differ
3509=== modified file 'img/email/sent.png'
3510Binary files img/email/sent.png 2011-10-14 09:49:36 +0000 and img/email/sent.png 2016-01-12 12:40:40 +0000 differ
3511=== modified file 'img/email/star.png'
3512Binary files img/email/star.png 2011-10-14 09:49:36 +0000 and img/email/star.png 2016-01-12 12:40:40 +0000 differ
3513=== modified file 'img/email/t.png'
3514Binary files img/email/t.png 2011-10-14 09:49:36 +0000 and img/email/t.png 2016-01-12 12:40:40 +0000 differ
3515=== modified file 'img/email/trash.png'
3516Binary files img/email/trash.png 2011-10-14 09:49:36 +0000 and img/email/trash.png 2016-01-12 12:40:40 +0000 differ
3517=== modified file 'img/error/background-download.png'
3518Binary files img/error/background-download.png 2011-10-14 09:49:36 +0000 and img/error/background-download.png 2016-01-12 12:40:40 +0000 differ
3519=== modified file 'img/error/blur/background-download.png'
3520Binary files img/error/blur/background-download.png 2011-10-14 09:49:36 +0000 and img/error/blur/background-download.png 2016-01-12 12:40:40 +0000 differ
3521=== modified file 'img/error/blur/button-fade.png'
3522Binary files img/error/blur/button-fade.png 2011-10-14 09:49:36 +0000 and img/error/blur/button-fade.png 2016-01-12 12:40:40 +0000 differ
3523=== modified file 'img/error/blur/close-button.png'
3524Binary files img/error/blur/close-button.png 2011-10-14 09:49:36 +0000 and img/error/blur/close-button.png 2016-01-12 12:40:40 +0000 differ
3525=== modified file 'img/error/close-button.png'
3526Binary files img/error/close-button.png 2011-10-14 09:49:36 +0000 and img/error/close-button.png 2016-01-12 12:40:40 +0000 differ
3527=== modified file 'img/error/small-warning.png'
3528Binary files img/error/small-warning.png 2011-10-14 09:49:36 +0000 and img/error/small-warning.png 2016-01-12 12:40:40 +0000 differ
3529=== modified file 'img/error/warning.png'
3530Binary files img/error/warning.png 2011-10-14 09:49:36 +0000 and img/error/warning.png 2016-01-12 12:40:40 +0000 differ
3531=== modified file 'img/folder/audio.png'
3532Binary files img/folder/audio.png 2011-10-14 09:49:36 +0000 and img/folder/audio.png 2016-01-12 12:40:40 +0000 differ
3533=== modified file 'img/folder/blur/audio.png'
3534Binary files img/folder/blur/audio.png 2011-10-14 09:49:36 +0000 and img/folder/blur/audio.png 2016-01-12 12:40:40 +0000 differ
3535=== modified file 'img/folder/blur/back.png'
3536Binary files img/folder/blur/back.png 2013-04-24 08:12:18 +0000 and img/folder/blur/back.png 2016-01-12 12:40:40 +0000 differ
3537=== modified file 'img/folder/blur/breadcrumb-selected.png'
3538Binary files img/folder/blur/breadcrumb-selected.png 2013-04-24 08:12:18 +0000 and img/folder/blur/breadcrumb-selected.png 2016-01-12 12:40:40 +0000 differ
3539=== modified file 'img/folder/blur/documents-icon.png'
3540Binary files img/folder/blur/documents-icon.png 2013-04-24 08:12:18 +0000 and img/folder/blur/documents-icon.png 2016-01-12 12:40:40 +0000 differ
3541=== modified file 'img/folder/blur/downloads-icon.png'
3542Binary files img/folder/blur/downloads-icon.png 2013-04-24 08:12:18 +0000 and img/folder/blur/downloads-icon.png 2016-01-12 12:40:40 +0000 differ
3543=== modified file 'img/folder/blur/folder-icon-list.png'
3544Binary files img/folder/blur/folder-icon-list.png 2011-10-14 09:49:36 +0000 and img/folder/blur/folder-icon-list.png 2016-01-12 12:40:40 +0000 differ
3545=== modified file 'img/folder/blur/folder-icon.png'
3546Binary files img/folder/blur/folder-icon.png 2012-04-05 10:02:01 +0000 and img/folder/blur/folder-icon.png 2016-01-12 12:40:40 +0000 differ
3547=== modified file 'img/folder/blur/forward.png'
3548Binary files img/folder/blur/forward.png 2013-04-24 08:12:18 +0000 and img/folder/blur/forward.png 2016-01-12 12:40:40 +0000 differ
3549=== modified file 'img/folder/blur/home-icon.png'
3550Binary files img/folder/blur/home-icon.png 2013-04-24 08:12:18 +0000 and img/folder/blur/home-icon.png 2016-01-12 12:40:40 +0000 differ
3551=== modified file 'img/folder/blur/icon-nautilus-folder-desktop.png'
3552Binary files img/folder/blur/icon-nautilus-folder-desktop.png 2014-03-04 16:41:44 +0000 and img/folder/blur/icon-nautilus-folder-desktop.png 2016-01-12 12:40:40 +0000 differ
3553=== modified file 'img/folder/blur/icon-nautilus-folder-documents.png'
3554Binary files img/folder/blur/icon-nautilus-folder-documents.png 2014-03-04 16:41:44 +0000 and img/folder/blur/icon-nautilus-folder-documents.png 2016-01-12 12:40:40 +0000 differ
3555=== modified file 'img/folder/blur/icon-nautilus-folder-downloads.png'
3556Binary files img/folder/blur/icon-nautilus-folder-downloads.png 2014-03-04 16:41:44 +0000 and img/folder/blur/icon-nautilus-folder-downloads.png 2016-01-12 12:40:40 +0000 differ
3557=== modified file 'img/folder/blur/icon-nautilus-folder-generic.png'
3558Binary files img/folder/blur/icon-nautilus-folder-generic.png 2014-03-04 16:41:44 +0000 and img/folder/blur/icon-nautilus-folder-generic.png 2016-01-12 12:40:40 +0000 differ
3559=== modified file 'img/folder/blur/icon-nautilus-folder-music.png'
3560Binary files img/folder/blur/icon-nautilus-folder-music.png 2014-03-04 16:41:44 +0000 and img/folder/blur/icon-nautilus-folder-music.png 2016-01-12 12:40:40 +0000 differ
3561=== modified file 'img/folder/blur/icon-nautilus-folder-pictures.png'
3562Binary files img/folder/blur/icon-nautilus-folder-pictures.png 2014-03-04 16:41:44 +0000 and img/folder/blur/icon-nautilus-folder-pictures.png 2016-01-12 12:40:40 +0000 differ
3563=== modified file 'img/folder/blur/icon-nautilus-folder-videos.png'
3564Binary files img/folder/blur/icon-nautilus-folder-videos.png 2014-03-04 16:41:44 +0000 and img/folder/blur/icon-nautilus-folder-videos.png 2016-01-12 12:40:40 +0000 differ
3565=== modified file 'img/folder/blur/icon-nautilus-mono-desktop.png'
3566Binary files img/folder/blur/icon-nautilus-mono-desktop.png 2014-03-04 16:41:44 +0000 and img/folder/blur/icon-nautilus-mono-desktop.png 2016-01-12 12:40:40 +0000 differ
3567=== modified file 'img/folder/blur/icon-nautilus-mono-documents.png'
3568Binary files img/folder/blur/icon-nautilus-mono-documents.png 2014-03-04 16:41:44 +0000 and img/folder/blur/icon-nautilus-mono-documents.png 2016-01-12 12:40:40 +0000 differ
3569=== modified file 'img/folder/blur/icon-nautilus-mono-downloads.png'
3570Binary files img/folder/blur/icon-nautilus-mono-downloads.png 2014-03-04 16:41:44 +0000 and img/folder/blur/icon-nautilus-mono-downloads.png 2016-01-12 12:40:40 +0000 differ
3571=== modified file 'img/folder/blur/icon-nautilus-mono-home.png'
3572Binary files img/folder/blur/icon-nautilus-mono-home.png 2014-03-04 16:41:44 +0000 and img/folder/blur/icon-nautilus-mono-home.png 2016-01-12 12:40:40 +0000 differ
3573=== modified file 'img/folder/blur/icon-nautilus-mono-music.png'
3574Binary files img/folder/blur/icon-nautilus-mono-music.png 2014-03-04 16:41:44 +0000 and img/folder/blur/icon-nautilus-mono-music.png 2016-01-12 12:40:40 +0000 differ
3575=== modified file 'img/folder/blur/icon-nautilus-mono-pictures.png'
3576Binary files img/folder/blur/icon-nautilus-mono-pictures.png 2014-03-04 16:41:44 +0000 and img/folder/blur/icon-nautilus-mono-pictures.png 2016-01-12 12:40:40 +0000 differ
3577=== modified file 'img/folder/blur/icon-nautilus-mono-trash.png'
3578Binary files img/folder/blur/icon-nautilus-mono-trash.png 2014-03-04 16:41:44 +0000 and img/folder/blur/icon-nautilus-mono-trash.png 2016-01-12 12:40:40 +0000 differ
3579=== modified file 'img/folder/blur/icon-nautilus-mono-videos.png'
3580Binary files img/folder/blur/icon-nautilus-mono-videos.png 2014-03-04 16:41:44 +0000 and img/folder/blur/icon-nautilus-mono-videos.png 2016-01-12 12:40:40 +0000 differ
3581=== modified file 'img/folder/blur/image-nautilus-back.png'
3582Binary files img/folder/blur/image-nautilus-back.png 2014-03-04 16:41:44 +0000 and img/folder/blur/image-nautilus-back.png 2016-01-12 12:40:40 +0000 differ
3583=== modified file 'img/folder/blur/image-nautilus-background.png'
3584Binary files img/folder/blur/image-nautilus-background.png 2014-03-04 16:41:44 +0000 and img/folder/blur/image-nautilus-background.png 2016-01-12 12:40:40 +0000 differ
3585=== modified file 'img/folder/blur/image-nautilus-breadcrumb-selected.png'
3586Binary files img/folder/blur/image-nautilus-breadcrumb-selected.png 2014-03-04 16:41:44 +0000 and img/folder/blur/image-nautilus-breadcrumb-selected.png 2016-01-12 12:40:40 +0000 differ
3587=== modified file 'img/folder/blur/image-nautilus-breadcrumb.png'
3588Binary files img/folder/blur/image-nautilus-breadcrumb.png 2014-03-04 16:41:44 +0000 and img/folder/blur/image-nautilus-breadcrumb.png 2016-01-12 12:40:40 +0000 differ
3589=== modified file 'img/folder/blur/image-nautilus-forward.png'
3590Binary files img/folder/blur/image-nautilus-forward.png 2014-03-04 16:41:44 +0000 and img/folder/blur/image-nautilus-forward.png 2016-01-12 12:40:40 +0000 differ
3591=== modified file 'img/folder/blur/image-nautilus-options.png'
3592Binary files img/folder/blur/image-nautilus-options.png 2014-03-04 16:41:44 +0000 and img/folder/blur/image-nautilus-options.png 2016-01-12 12:40:40 +0000 differ
3593=== modified file 'img/folder/blur/orange-overlay.png'
3594Binary files img/folder/blur/orange-overlay.png 2011-10-14 09:49:36 +0000 and img/folder/blur/orange-overlay.png 2016-01-12 12:40:40 +0000 differ
3595=== modified file 'img/folder/blur/pictures-icon.png'
3596Binary files img/folder/blur/pictures-icon.png 2013-04-24 08:12:18 +0000 and img/folder/blur/pictures-icon.png 2016-01-12 12:40:40 +0000 differ
3597=== modified file 'img/folder/blur/rubbish-icon.png'
3598Binary files img/folder/blur/rubbish-icon.png 2013-04-24 08:12:18 +0000 and img/folder/blur/rubbish-icon.png 2016-01-12 12:40:40 +0000 differ
3599=== modified file 'img/folder/blur/unknown.png'
3600Binary files img/folder/blur/unknown.png 2011-10-14 09:49:36 +0000 and img/folder/blur/unknown.png 2016-01-12 12:40:40 +0000 differ
3601=== modified file 'img/folder/breadcrumb-selected.png'
3602Binary files img/folder/breadcrumb-selected.png 2013-04-22 15:22:25 +0000 and img/folder/breadcrumb-selected.png 2016-01-12 12:40:40 +0000 differ
3603=== modified file 'img/folder/desktop-icon.png'
3604Binary files img/folder/desktop-icon.png 2013-04-22 15:22:25 +0000 and img/folder/desktop-icon.png 2016-01-12 12:40:40 +0000 differ
3605=== modified file 'img/folder/documents-icon.png'
3606Binary files img/folder/documents-icon.png 2013-04-22 15:22:25 +0000 and img/folder/documents-icon.png 2016-01-12 12:40:40 +0000 differ
3607=== modified file 'img/folder/downloads-icon.png'
3608Binary files img/folder/downloads-icon.png 2013-04-22 15:22:25 +0000 and img/folder/downloads-icon.png 2016-01-12 12:40:40 +0000 differ
3609=== modified file 'img/folder/folder-icon-list.png'
3610Binary files img/folder/folder-icon-list.png 2011-10-14 09:49:36 +0000 and img/folder/folder-icon-list.png 2016-01-12 12:40:40 +0000 differ
3611=== modified file 'img/folder/folder-icon.png'
3612Binary files img/folder/folder-icon.png 2012-04-05 10:02:01 +0000 and img/folder/folder-icon.png 2016-01-12 12:40:40 +0000 differ
3613=== modified file 'img/folder/home-icon.png'
3614Binary files img/folder/home-icon.png 2013-04-22 15:22:25 +0000 and img/folder/home-icon.png 2016-01-12 12:40:40 +0000 differ
3615=== modified file 'img/folder/icon-nautilus-folder-desktop.png'
3616Binary files img/folder/icon-nautilus-folder-desktop.png 2014-03-04 15:03:39 +0000 and img/folder/icon-nautilus-folder-desktop.png 2016-01-12 12:40:40 +0000 differ
3617=== modified file 'img/folder/icon-nautilus-folder-document.png'
3618Binary files img/folder/icon-nautilus-folder-document.png 2014-03-04 15:03:39 +0000 and img/folder/icon-nautilus-folder-document.png 2016-01-12 12:40:40 +0000 differ
3619=== modified file 'img/folder/icon-nautilus-folder-documents.png'
3620Binary files img/folder/icon-nautilus-folder-documents.png 2014-03-05 15:13:54 +0000 and img/folder/icon-nautilus-folder-documents.png 2016-01-12 12:40:40 +0000 differ
3621=== modified file 'img/folder/icon-nautilus-folder-downloads.png'
3622Binary files img/folder/icon-nautilus-folder-downloads.png 2014-03-04 15:03:39 +0000 and img/folder/icon-nautilus-folder-downloads.png 2016-01-12 12:40:40 +0000 differ
3623=== modified file 'img/folder/icon-nautilus-folder-generic.png'
3624Binary files img/folder/icon-nautilus-folder-generic.png 2014-03-04 15:03:39 +0000 and img/folder/icon-nautilus-folder-generic.png 2016-01-12 12:40:40 +0000 differ
3625=== modified file 'img/folder/icon-nautilus-folder-music.png'
3626Binary files img/folder/icon-nautilus-folder-music.png 2014-03-04 15:03:39 +0000 and img/folder/icon-nautilus-folder-music.png 2016-01-12 12:40:40 +0000 differ
3627=== modified file 'img/folder/icon-nautilus-folder-pictures.png'
3628Binary files img/folder/icon-nautilus-folder-pictures.png 2014-03-04 15:03:39 +0000 and img/folder/icon-nautilus-folder-pictures.png 2016-01-12 12:40:40 +0000 differ
3629=== modified file 'img/folder/icon-nautilus-folder-videos.png'
3630Binary files img/folder/icon-nautilus-folder-videos.png 2014-03-04 15:03:39 +0000 and img/folder/icon-nautilus-folder-videos.png 2016-01-12 12:40:40 +0000 differ
3631=== modified file 'img/folder/icon-nautilus-folders.png'
3632Binary files img/folder/icon-nautilus-folders.png 2014-03-04 15:03:39 +0000 and img/folder/icon-nautilus-folders.png 2016-01-12 12:40:40 +0000 differ
3633=== modified file 'img/folder/icon-nautilus-mono-documents.png'
3634Binary files img/folder/icon-nautilus-mono-documents.png 2014-03-05 15:13:54 +0000 and img/folder/icon-nautilus-mono-documents.png 2016-01-12 12:40:40 +0000 differ
3635=== modified file 'img/folder/icon-nautilus-mono-downloads.png'
3636Binary files img/folder/icon-nautilus-mono-downloads.png 2014-03-05 15:13:54 +0000 and img/folder/icon-nautilus-mono-downloads.png 2016-01-12 12:40:40 +0000 differ
3637=== modified file 'img/folder/icon-nautilus-mono-music.png'
3638Binary files img/folder/icon-nautilus-mono-music.png 2014-03-05 15:13:54 +0000 and img/folder/icon-nautilus-mono-music.png 2016-01-12 12:40:40 +0000 differ
3639=== modified file 'img/folder/icon-nautilus-mono-pictures.png'
3640Binary files img/folder/icon-nautilus-mono-pictures.png 2014-03-05 15:13:54 +0000 and img/folder/icon-nautilus-mono-pictures.png 2016-01-12 12:40:40 +0000 differ
3641=== modified file 'img/folder/icon-nautilus-mono-trash.png'
3642Binary files img/folder/icon-nautilus-mono-trash.png 2014-03-05 15:13:54 +0000 and img/folder/icon-nautilus-mono-trash.png 2016-01-12 12:40:40 +0000 differ
3643=== modified file 'img/folder/icon-nautilus-mono-videos.png'
3644Binary files img/folder/icon-nautilus-mono-videos.png 2014-03-05 15:13:54 +0000 and img/folder/icon-nautilus-mono-videos.png 2016-01-12 12:40:40 +0000 differ
3645=== modified file 'img/folder/image-nautilus-back.png'
3646Binary files img/folder/image-nautilus-back.png 2014-03-05 15:13:54 +0000 and img/folder/image-nautilus-back.png 2016-01-12 12:40:40 +0000 differ
3647=== modified file 'img/folder/image-nautilus-background.png'
3648Binary files img/folder/image-nautilus-background.png 2014-03-05 15:13:54 +0000 and img/folder/image-nautilus-background.png 2016-01-12 12:40:40 +0000 differ
3649=== modified file 'img/folder/image-nautilus-breadcrumb-selected.png'
3650Binary files img/folder/image-nautilus-breadcrumb-selected.png 2014-03-05 15:13:54 +0000 and img/folder/image-nautilus-breadcrumb-selected.png 2016-01-12 12:40:40 +0000 differ
3651=== modified file 'img/folder/image-nautilus-breadcrumb.png'
3652Binary files img/folder/image-nautilus-breadcrumb.png 2014-03-05 15:13:54 +0000 and img/folder/image-nautilus-breadcrumb.png 2016-01-12 12:40:40 +0000 differ
3653=== modified file 'img/folder/image-nautilus-forward.png'
3654Binary files img/folder/image-nautilus-forward.png 2014-03-05 15:13:54 +0000 and img/folder/image-nautilus-forward.png 2016-01-12 12:40:40 +0000 differ
3655=== modified file 'img/folder/image-nautilus-options.png'
3656Binary files img/folder/image-nautilus-options.png 2014-03-05 15:13:54 +0000 and img/folder/image-nautilus-options.png 2016-01-12 12:40:40 +0000 differ
3657=== modified file 'img/folder/music-icon.png'
3658Binary files img/folder/music-icon.png 2014-04-22 11:42:44 +0000 and img/folder/music-icon.png 2016-01-12 12:40:40 +0000 differ
3659=== modified file 'img/folder/orange-overlay.png'
3660Binary files img/folder/orange-overlay.png 2011-10-14 09:49:36 +0000 and img/folder/orange-overlay.png 2016-01-12 12:40:40 +0000 differ
3661=== modified file 'img/folder/pictures-icon.png'
3662Binary files img/folder/pictures-icon.png 2013-04-22 15:22:25 +0000 and img/folder/pictures-icon.png 2016-01-12 12:40:40 +0000 differ
3663=== modified file 'img/folder/rubbish-icon.png'
3664Binary files img/folder/rubbish-icon.png 2013-04-22 15:22:25 +0000 and img/folder/rubbish-icon.png 2016-01-12 12:40:40 +0000 differ
3665=== modified file 'img/folder/unknown.png'
3666Binary files img/folder/unknown.png 2011-10-14 09:49:36 +0000 and img/folder/unknown.png 2016-01-12 12:40:40 +0000 differ
3667=== modified file 'img/folder/videos-icon.png'
3668Binary files img/folder/videos-icon.png 2013-04-22 15:22:25 +0000 and img/folder/videos-icon.png 2016-01-12 12:40:40 +0000 differ
3669=== modified file 'img/grey-bg-50.png'
3670Binary files img/grey-bg-50.png 2011-10-14 09:49:36 +0000 and img/grey-bg-50.png 2016-01-12 12:40:40 +0000 differ
3671=== modified file 'img/librecalc.jpg'
3672Binary files img/librecalc.jpg 2014-03-05 12:27:32 +0000 and img/librecalc.jpg 2016-01-12 12:40:40 +0000 differ
3673=== modified file 'img/libreimpress.jpg'
3674Binary files img/libreimpress.jpg 2014-03-05 12:27:32 +0000 and img/libreimpress.jpg 2016-01-12 12:40:40 +0000 differ
3675=== modified file 'img/librewriter.jpg'
3676Binary files img/librewriter.jpg 2014-03-05 12:27:32 +0000 and img/librewriter.jpg 2016-01-12 12:40:40 +0000 differ
3677=== modified file 'img/loader/ubuntu-logo.jpg'
3678Binary files img/loader/ubuntu-logo.jpg 2011-10-14 09:49:36 +0000 and img/loader/ubuntu-logo.jpg 2016-01-12 12:40:40 +0000 differ
3679=== modified file 'img/loading/boot.png'
3680Binary files img/loading/boot.png 2011-10-14 09:49:36 +0000 and img/loading/boot.png 2016-01-12 12:40:40 +0000 differ
3681=== modified file 'img/menu/blur/open-arrow.png'
3682Binary files img/menu/blur/open-arrow.png 2011-10-14 09:49:36 +0000 and img/menu/blur/open-arrow.png 2016-01-12 12:40:40 +0000 differ
3683=== modified file 'img/menu/blur/selected-arrow.png'
3684Binary files img/menu/blur/selected-arrow.png 2011-10-14 09:49:36 +0000 and img/menu/blur/selected-arrow.png 2016-01-12 12:40:40 +0000 differ
3685=== modified file 'img/menu/icon-amazon-active.png'
3686Binary files img/menu/icon-amazon-active.png 2014-03-05 12:27:32 +0000 and img/menu/icon-amazon-active.png 2016-01-12 12:40:40 +0000 differ
3687=== modified file 'img/menu/icon-amazon.png'
3688Binary files img/menu/icon-amazon.png 2014-03-05 12:27:32 +0000 and img/menu/icon-amazon.png 2016-01-12 12:40:40 +0000 differ
3689=== modified file 'img/menu/icon-applications.png'
3690Binary files img/menu/icon-applications.png 2011-10-14 09:49:36 +0000 and img/menu/icon-applications.png 2016-01-12 12:40:40 +0000 differ
3691=== modified file 'img/menu/icon-calc-active.png'
3692Binary files img/menu/icon-calc-active.png 2014-03-05 12:27:32 +0000 and img/menu/icon-calc-active.png 2016-01-12 12:40:40 +0000 differ
3693=== modified file 'img/menu/icon-calc.png'
3694Binary files img/menu/icon-calc.png 2014-03-05 12:27:32 +0000 and img/menu/icon-calc.png 2016-01-12 12:40:40 +0000 differ
3695=== modified file 'img/menu/icon-dash.png'
3696Binary files img/menu/icon-dash.png 2014-03-05 12:27:32 +0000 and img/menu/icon-dash.png 2016-01-12 12:40:40 +0000 differ
3697=== modified file 'img/menu/icon-files.png'
3698Binary files img/menu/icon-files.png 2011-10-14 09:49:36 +0000 and img/menu/icon-files.png 2016-01-12 12:40:40 +0000 differ
3699=== modified file 'img/menu/icon-firefox-active.png'
3700Binary files img/menu/icon-firefox-active.png 2014-03-05 12:27:32 +0000 and img/menu/icon-firefox-active.png 2016-01-12 12:40:40 +0000 differ
3701=== modified file 'img/menu/icon-firefox.png'
3702Binary files img/menu/icon-firefox.png 2014-03-05 12:27:32 +0000 and img/menu/icon-firefox.png 2016-01-12 12:40:40 +0000 differ
3703=== modified file 'img/menu/icon-folder-active.png'
3704Binary files img/menu/icon-folder-active.png 2013-04-22 15:22:25 +0000 and img/menu/icon-folder-active.png 2016-01-12 12:40:40 +0000 differ
3705=== modified file 'img/menu/icon-folder.png'
3706Binary files img/menu/icon-folder.png 2013-04-23 13:07:34 +0000 and img/menu/icon-folder.png 2016-01-12 12:40:40 +0000 differ
3707=== modified file 'img/menu/icon-impress-active.png'
3708Binary files img/menu/icon-impress-active.png 2014-03-05 12:27:32 +0000 and img/menu/icon-impress-active.png 2016-01-12 12:40:40 +0000 differ
3709=== modified file 'img/menu/icon-impress.png'
3710Binary files img/menu/icon-impress.png 2014-03-05 12:27:32 +0000 and img/menu/icon-impress.png 2016-01-12 12:40:40 +0000 differ
3711=== modified file 'img/menu/icon-movieplayer-active.png'
3712Binary files img/menu/icon-movieplayer-active.png 2014-03-05 12:27:32 +0000 and img/menu/icon-movieplayer-active.png 2016-01-12 12:40:40 +0000 differ
3713=== modified file 'img/menu/icon-movieplayer.png'
3714Binary files img/menu/icon-movieplayer.png 2014-03-05 12:27:32 +0000 and img/menu/icon-movieplayer.png 2016-01-12 12:40:40 +0000 differ
3715=== modified file 'img/menu/icon-nautilus-active.png'
3716Binary files img/menu/icon-nautilus-active.png 2014-03-05 12:27:32 +0000 and img/menu/icon-nautilus-active.png 2016-01-12 12:40:40 +0000 differ
3717=== modified file 'img/menu/icon-nautilus.png'
3718Binary files img/menu/icon-nautilus.png 2014-03-05 12:27:32 +0000 and img/menu/icon-nautilus.png 2016-01-12 12:40:40 +0000 differ
3719=== modified file 'img/menu/icon-shotwell-active.png'
3720Binary files img/menu/icon-shotwell-active.png 2014-03-05 12:27:32 +0000 and img/menu/icon-shotwell-active.png 2016-01-12 12:40:40 +0000 differ
3721=== modified file 'img/menu/icon-shotwell.png'
3722Binary files img/menu/icon-shotwell.png 2014-03-05 12:27:32 +0000 and img/menu/icon-shotwell.png 2016-01-12 12:40:40 +0000 differ
3723=== modified file 'img/menu/icon-software-active.png'
3724Binary files img/menu/icon-software-active.png 2014-03-05 12:27:32 +0000 and img/menu/icon-software-active.png 2016-01-12 12:40:40 +0000 differ
3725=== modified file 'img/menu/icon-software.png'
3726Binary files img/menu/icon-software.png 2014-03-05 12:27:32 +0000 and img/menu/icon-software.png 2016-01-12 12:40:40 +0000 differ
3727=== modified file 'img/menu/icon-systemsettings-active.png'
3728Binary files img/menu/icon-systemsettings-active.png 2014-03-05 12:27:32 +0000 and img/menu/icon-systemsettings-active.png 2016-01-12 12:40:40 +0000 differ
3729=== modified file 'img/menu/icon-systemsettings.png'
3730Binary files img/menu/icon-systemsettings.png 2014-03-05 12:27:32 +0000 and img/menu/icon-systemsettings.png 2016-01-12 12:40:40 +0000 differ
3731=== modified file 'img/menu/icon-thunderbird-active.png'
3732Binary files img/menu/icon-thunderbird-active.png 2014-03-05 12:27:32 +0000 and img/menu/icon-thunderbird-active.png 2016-01-12 12:40:40 +0000 differ
3733=== modified file 'img/menu/icon-thunderbird.png'
3734Binary files img/menu/icon-thunderbird.png 2014-03-05 12:27:32 +0000 and img/menu/icon-thunderbird.png 2016-01-12 12:40:40 +0000 differ
3735=== modified file 'img/menu/icon-trashempty-active.png'
3736Binary files img/menu/icon-trashempty-active.png 2014-03-05 12:27:32 +0000 and img/menu/icon-trashempty-active.png 2016-01-12 12:40:40 +0000 differ
3737=== modified file 'img/menu/icon-trashempty.png'
3738Binary files img/menu/icon-trashempty.png 2014-03-05 12:27:32 +0000 and img/menu/icon-trashempty.png 2016-01-12 12:40:40 +0000 differ
3739=== modified file 'img/menu/icon-trashfull-active.png'
3740Binary files img/menu/icon-trashfull-active.png 2014-03-05 12:27:32 +0000 and img/menu/icon-trashfull-active.png 2016-01-12 12:40:40 +0000 differ
3741=== modified file 'img/menu/icon-trashfull.png'
3742Binary files img/menu/icon-trashfull.png 2014-03-05 12:27:32 +0000 and img/menu/icon-trashfull.png 2016-01-12 12:40:40 +0000 differ
3743=== modified file 'img/menu/icon-ubuntuone-active.png'
3744Binary files img/menu/icon-ubuntuone-active.png 2014-03-05 12:27:32 +0000 and img/menu/icon-ubuntuone-active.png 2016-01-12 12:40:40 +0000 differ
3745=== modified file 'img/menu/icon-ubuntuone.png'
3746Binary files img/menu/icon-ubuntuone.png 2014-03-05 12:27:32 +0000 and img/menu/icon-ubuntuone.png 2016-01-12 12:40:40 +0000 differ
3747=== modified file 'img/menu/icon-ubuntuonemusic-active.png'
3748Binary files img/menu/icon-ubuntuonemusic-active.png 2014-03-05 12:27:32 +0000 and img/menu/icon-ubuntuonemusic-active.png 2016-01-12 12:40:40 +0000 differ
3749=== modified file 'img/menu/icon-ubuntuonemusic.png'
3750Binary files img/menu/icon-ubuntuonemusic.png 2014-03-05 12:27:32 +0000 and img/menu/icon-ubuntuonemusic.png 2016-01-12 12:40:40 +0000 differ
3751=== modified file 'img/menu/icon-workspace.png'
3752Binary files img/menu/icon-workspace.png 2011-10-14 09:49:36 +0000 and img/menu/icon-workspace.png 2016-01-12 12:40:40 +0000 differ
3753=== modified file 'img/menu/icon-writer-active.png'
3754Binary files img/menu/icon-writer-active.png 2014-03-05 12:27:32 +0000 and img/menu/icon-writer-active.png 2016-01-12 12:40:40 +0000 differ
3755=== modified file 'img/menu/icon-writer.png'
3756Binary files img/menu/icon-writer.png 2014-03-05 12:27:32 +0000 and img/menu/icon-writer.png 2016-01-12 12:40:40 +0000 differ
3757=== modified file 'img/menu/open-arrow.png'
3758Binary files img/menu/open-arrow.png 2012-04-05 10:02:01 +0000 and img/menu/open-arrow.png 2016-01-12 12:40:40 +0000 differ
3759=== modified file 'img/menu/selected-arrow.png'
3760Binary files img/menu/selected-arrow.png 2012-04-05 10:02:01 +0000 and img/menu/selected-arrow.png 2016-01-12 12:40:40 +0000 differ
3761=== modified file 'img/menu/tooltip-background.png'
3762Binary files img/menu/tooltip-background.png 2012-04-05 10:02:01 +0000 and img/menu/tooltip-background.png 2016-01-12 12:40:40 +0000 differ
3763=== modified file 'img/movieplayer/back.png'
3764Binary files img/movieplayer/back.png 2011-10-14 09:49:36 +0000 and img/movieplayer/back.png 2016-01-12 12:40:40 +0000 differ
3765=== modified file 'img/movieplayer/cursor.png'
3766Binary files img/movieplayer/cursor.png 2011-10-14 09:49:36 +0000 and img/movieplayer/cursor.png 2016-01-12 12:40:40 +0000 differ
3767=== modified file 'img/movieplayer/forward.png'
3768Binary files img/movieplayer/forward.png 2011-10-14 09:49:36 +0000 and img/movieplayer/forward.png 2016-01-12 12:40:40 +0000 differ
3769=== modified file 'img/movieplayer/fullscreen.png'
3770Binary files img/movieplayer/fullscreen.png 2011-10-14 09:49:36 +0000 and img/movieplayer/fullscreen.png 2016-01-12 12:40:40 +0000 differ
3771=== modified file 'img/movieplayer/pause.png'
3772Binary files img/movieplayer/pause.png 2011-10-14 09:49:36 +0000 and img/movieplayer/pause.png 2016-01-12 12:40:40 +0000 differ
3773=== modified file 'img/movieplayer/play-over.png'
3774Binary files img/movieplayer/play-over.png 2011-10-14 09:49:36 +0000 and img/movieplayer/play-over.png 2016-01-12 12:40:40 +0000 differ
3775=== modified file 'img/movieplayer/play.png'
3776Binary files img/movieplayer/play.png 2011-10-14 09:49:36 +0000 and img/movieplayer/play.png 2016-01-12 12:40:40 +0000 differ
3777=== modified file 'img/movieplayer/splash.jpg'
3778Binary files img/movieplayer/splash.jpg 2011-10-14 09:49:36 +0000 and img/movieplayer/splash.jpg 2016-01-12 12:40:40 +0000 differ
3779=== modified file 'img/movieplayer/volume.png'
3780Binary files img/movieplayer/volume.png 2011-10-14 09:49:36 +0000 and img/movieplayer/volume.png 2016-01-12 12:40:40 +0000 differ
3781=== modified file 'img/notification/blur/dropbox.png'
3782Binary files img/notification/blur/dropbox.png 2011-10-14 09:49:36 +0000 and img/notification/blur/dropbox.png 2016-01-12 12:40:40 +0000 differ
3783=== modified file 'img/notification/dropbox.png'
3784Binary files img/notification/dropbox.png 2011-10-14 09:49:36 +0000 and img/notification/dropbox.png 2016-01-12 12:40:40 +0000 differ
3785=== modified file 'img/overlay/blur/available.png'
3786Binary files img/overlay/blur/available.png 2011-10-14 09:49:36 +0000 and img/overlay/blur/available.png 2016-01-12 12:40:40 +0000 differ
3787=== modified file 'img/overlay/blur/browse-the-web.png'
3788Binary files img/overlay/blur/browse-the-web.png 2011-10-14 09:49:36 +0000 and img/overlay/blur/browse-the-web.png 2016-01-12 12:40:40 +0000 differ
3789=== modified file 'img/overlay/blur/cancel-logo.png'
3790Binary files img/overlay/blur/cancel-logo.png 2011-10-14 09:49:36 +0000 and img/overlay/blur/cancel-logo.png 2016-01-12 12:40:40 +0000 differ
3791=== modified file 'img/overlay/blur/check-email.png'
3792Binary files img/overlay/blur/check-email.png 2011-10-14 09:49:36 +0000 and img/overlay/blur/check-email.png 2016-01-12 12:40:40 +0000 differ
3793=== modified file 'img/overlay/blur/dash-close.png'
3794Binary files img/overlay/blur/dash-close.png 2011-10-14 09:49:36 +0000 and img/overlay/blur/dash-close.png 2016-01-12 12:40:40 +0000 differ
3795=== modified file 'img/overlay/blur/dash-max.png'
3796Binary files img/overlay/blur/dash-max.png 2011-10-14 09:49:36 +0000 and img/overlay/blur/dash-max.png 2016-01-12 12:40:40 +0000 differ
3797=== modified file 'img/overlay/blur/dash-min.png'
3798Binary files img/overlay/blur/dash-min.png 2011-10-14 09:49:36 +0000 and img/overlay/blur/dash-min.png 2016-01-12 12:40:40 +0000 differ
3799=== modified file 'img/overlay/blur/downloaded.png'
3800Binary files img/overlay/blur/downloaded.png 2012-04-20 13:28:47 +0000 and img/overlay/blur/downloaded.png 2016-01-12 12:40:40 +0000 differ
3801=== modified file 'img/overlay/blur/find-files.png'
3802Binary files img/overlay/blur/find-files.png 2011-10-14 09:49:36 +0000 and img/overlay/blur/find-files.png 2016-01-12 12:40:40 +0000 differ
3803=== modified file 'img/overlay/blur/folders.png'
3804Binary files img/overlay/blur/folders.png 2012-04-20 13:28:47 +0000 and img/overlay/blur/folders.png 2016-01-12 12:40:40 +0000 differ
3805=== modified file 'img/overlay/blur/hr.png'
3806Binary files img/overlay/blur/hr.png 2011-10-14 09:49:36 +0000 and img/overlay/blur/hr.png 2016-01-12 12:40:40 +0000 differ
3807=== modified file 'img/overlay/blur/installed.png'
3808Binary files img/overlay/blur/installed.png 2011-10-14 09:49:36 +0000 and img/overlay/blur/installed.png 2016-01-12 12:40:40 +0000 differ
3809=== modified file 'img/overlay/blur/internet-apps.png'
3810Binary files img/overlay/blur/internet-apps.png 2011-10-14 09:49:36 +0000 and img/overlay/blur/internet-apps.png 2016-01-12 12:40:40 +0000 differ
3811=== modified file 'img/overlay/blur/listen-to-music.png'
3812Binary files img/overlay/blur/listen-to-music.png 2011-10-14 09:49:36 +0000 and img/overlay/blur/listen-to-music.png 2016-01-12 12:40:40 +0000 differ
3813=== modified file 'img/overlay/blur/media-apps.png'
3814Binary files img/overlay/blur/media-apps.png 2011-10-14 09:49:36 +0000 and img/overlay/blur/media-apps.png 2016-01-12 12:40:40 +0000 differ
3815=== modified file 'img/overlay/blur/more-apps.png'
3816Binary files img/overlay/blur/more-apps.png 2011-10-14 09:49:36 +0000 and img/overlay/blur/more-apps.png 2016-01-12 12:40:40 +0000 differ
3817=== modified file 'img/overlay/blur/mostfrequently.png'
3818Binary files img/overlay/blur/mostfrequently.png 2011-10-14 09:49:36 +0000 and img/overlay/blur/mostfrequently.png 2016-01-12 12:40:40 +0000 differ
3819=== modified file 'img/overlay/blur/recentapps.png'
3820Binary files img/overlay/blur/recentapps.png 2012-04-20 13:28:47 +0000 and img/overlay/blur/recentapps.png 2016-01-12 12:40:40 +0000 differ
3821=== modified file 'img/overlay/blur/recentfiles.png'
3822Binary files img/overlay/blur/recentfiles.png 2012-04-20 13:28:47 +0000 and img/overlay/blur/recentfiles.png 2016-01-12 12:40:40 +0000 differ
3823=== modified file 'img/overlay/blur/search-logo.png'
3824Binary files img/overlay/blur/search-logo.png 2011-10-14 09:49:36 +0000 and img/overlay/blur/search-logo.png 2016-01-12 12:40:40 +0000 differ
3825=== modified file 'img/overlay/blur/view-photos.png'
3826Binary files img/overlay/blur/view-photos.png 2011-10-14 09:49:36 +0000 and img/overlay/blur/view-photos.png 2016-01-12 12:40:40 +0000 differ
3827=== modified file 'img/overlay/browse-the-web.png'
3828Binary files img/overlay/browse-the-web.png 2011-10-14 09:49:36 +0000 and img/overlay/browse-the-web.png 2016-01-12 12:40:40 +0000 differ
3829=== modified file 'img/overlay/cancel-logo.png'
3830Binary files img/overlay/cancel-logo.png 2011-10-14 09:49:36 +0000 and img/overlay/cancel-logo.png 2016-01-12 12:40:40 +0000 differ
3831=== modified file 'img/overlay/check-email (copy).png'
3832Binary files img/overlay/check-email (copy).png 2011-10-14 09:49:36 +0000 and img/overlay/check-email (copy).png 2016-01-12 12:40:40 +0000 differ
3833=== modified file 'img/overlay/check-email.png'
3834Binary files img/overlay/check-email.png 2011-10-14 09:49:36 +0000 and img/overlay/check-email.png 2016-01-12 12:40:40 +0000 differ
3835=== modified file 'img/overlay/dash-close.png'
3836Binary files img/overlay/dash-close.png 2011-10-14 09:49:36 +0000 and img/overlay/dash-close.png 2016-01-12 12:40:40 +0000 differ
3837=== modified file 'img/overlay/dash-max.png'
3838Binary files img/overlay/dash-max.png 2011-10-14 09:49:36 +0000 and img/overlay/dash-max.png 2016-01-12 12:40:40 +0000 differ
3839=== modified file 'img/overlay/dash-min.png'
3840Binary files img/overlay/dash-min.png 2011-10-14 09:49:36 +0000 and img/overlay/dash-min.png 2016-01-12 12:40:40 +0000 differ
3841=== modified file 'img/overlay/downloaded.png'
3842Binary files img/overlay/downloaded.png 2012-04-20 13:28:47 +0000 and img/overlay/downloaded.png 2016-01-12 12:40:40 +0000 differ
3843=== modified file 'img/overlay/find-files.png'
3844Binary files img/overlay/find-files.png 2011-10-14 09:49:36 +0000 and img/overlay/find-files.png 2016-01-12 12:40:40 +0000 differ
3845=== modified file 'img/overlay/folders.png'
3846Binary files img/overlay/folders.png 2012-04-20 13:28:47 +0000 and img/overlay/folders.png 2016-01-12 12:40:40 +0000 differ
3847=== modified file 'img/overlay/hr.png'
3848Binary files img/overlay/hr.png 2011-10-14 09:49:36 +0000 and img/overlay/hr.png 2016-01-12 12:40:40 +0000 differ
3849=== modified file 'img/overlay/installed.png'
3850Binary files img/overlay/installed.png 2011-10-14 09:49:36 +0000 and img/overlay/installed.png 2016-01-12 12:40:40 +0000 differ
3851=== modified file 'img/overlay/internet-apps.png'
3852Binary files img/overlay/internet-apps.png 2011-10-14 09:49:36 +0000 and img/overlay/internet-apps.png 2016-01-12 12:40:40 +0000 differ
3853=== modified file 'img/overlay/listen-to-music.png'
3854Binary files img/overlay/listen-to-music.png 2011-10-14 09:49:36 +0000 and img/overlay/listen-to-music.png 2016-01-12 12:40:40 +0000 differ
3855=== modified file 'img/overlay/media-apps.png'
3856Binary files img/overlay/media-apps.png 2011-10-14 09:49:36 +0000 and img/overlay/media-apps.png 2016-01-12 12:40:40 +0000 differ
3857=== modified file 'img/overlay/more-apps.png'
3858Binary files img/overlay/more-apps.png 2011-10-14 09:49:36 +0000 and img/overlay/more-apps.png 2016-01-12 12:40:40 +0000 differ
3859=== modified file 'img/overlay/mostfrequently.png'
3860Binary files img/overlay/mostfrequently.png 2011-10-14 09:49:36 +0000 and img/overlay/mostfrequently.png 2016-01-12 12:40:40 +0000 differ
3861=== modified file 'img/overlay/recentapps.png'
3862Binary files img/overlay/recentapps.png 2012-04-20 13:28:47 +0000 and img/overlay/recentapps.png 2016-01-12 12:40:40 +0000 differ
3863=== modified file 'img/overlay/recentfiles.png'
3864Binary files img/overlay/recentfiles.png 2013-10-02 11:21:33 +0000 and img/overlay/recentfiles.png 2016-01-12 12:40:40 +0000 differ
3865=== modified file 'img/overlay/search-logo.png'
3866Binary files img/overlay/search-logo.png 2012-10-03 16:51:49 +0000 and img/overlay/search-logo.png 2016-01-12 12:40:40 +0000 differ
3867=== modified file 'img/overlay/shortcuts-logo.png'
3868Binary files img/overlay/shortcuts-logo.png 2011-10-14 09:49:36 +0000 and img/overlay/shortcuts-logo.png 2016-01-12 12:40:40 +0000 differ
3869=== modified file 'img/overlay/shoutcurts-down.png'
3870Binary files img/overlay/shoutcurts-down.png 2011-10-14 09:49:36 +0000 and img/overlay/shoutcurts-down.png 2016-01-12 12:40:40 +0000 differ
3871=== modified file 'img/overlay/shoutcurts-right.png'
3872Binary files img/overlay/shoutcurts-right.png 2011-10-14 09:49:36 +0000 and img/overlay/shoutcurts-right.png 2016-01-12 12:40:40 +0000 differ
3873=== modified file 'img/overlay/surf-the-web.png'
3874Binary files img/overlay/surf-the-web.png 2011-10-14 09:49:36 +0000 and img/overlay/surf-the-web.png 2016-01-12 12:40:40 +0000 differ
3875=== modified file 'img/overlay/view-photos.png'
3876Binary files img/overlay/view-photos.png 2011-10-14 09:49:36 +0000 and img/overlay/view-photos.png 2016-01-12 12:40:40 +0000 differ
3877=== modified file 'img/shotwell/blur/library-icon.png'
3878Binary files img/shotwell/blur/library-icon.png 2011-10-14 09:49:36 +0000 and img/shotwell/blur/library-icon.png 2016-01-12 12:40:40 +0000 differ
3879=== modified file 'img/shotwell/library-icon.png'
3880Binary files img/shotwell/library-icon.png 2011-10-14 09:49:36 +0000 and img/shotwell/library-icon.png 2016-01-12 12:40:40 +0000 differ
3881=== modified file 'img/shotwell/library/Buckoff.jpg'
3882Binary files img/shotwell/library/Buckoff.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/Buckoff.jpg 2016-01-12 12:40:40 +0000 differ
3883=== modified file 'img/shotwell/library/DarkeningClockwork.jpg'
3884Binary files img/shotwell/library/DarkeningClockwork.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/DarkeningClockwork.jpg 2016-01-12 12:40:40 +0000 differ
3885=== modified file 'img/shotwell/library/DybblsbroStation.jpg'
3886Binary files img/shotwell/library/DybblsbroStation.jpg 2012-04-20 13:28:47 +0000 and img/shotwell/library/DybblsbroStation.jpg 2016-01-12 12:40:40 +0000 differ
3887=== modified file 'img/shotwell/library/FedericaMiglio.jpg'
3888Binary files img/shotwell/library/FedericaMiglio.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/FedericaMiglio.jpg 2016-01-12 12:40:40 +0000 differ
3889=== modified file 'img/shotwell/library/JardinPolar.jpg'
3890Binary files img/shotwell/library/JardinPolar.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/JardinPolar.jpg 2016-01-12 12:40:40 +0000 differ
3891=== modified file 'img/shotwell/library/LangelinieAlle.jpg'
3892Binary files img/shotwell/library/LangelinieAlle.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/LangelinieAlle.jpg 2016-01-12 12:40:40 +0000 differ
3893=== modified file 'img/shotwell/library/MomijiDream.jpg'
3894Binary files img/shotwell/library/MomijiDream.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/MomijiDream.jpg 2016-01-12 12:40:40 +0000 differ
3895=== modified file 'img/shotwell/library/MountSnowdon.jpg'
3896Binary files img/shotwell/library/MountSnowdon.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/MountSnowdon.jpg 2016-01-12 12:40:40 +0000 differ
3897=== modified file 'img/shotwell/library/NotAlone.jpg'
3898Binary files img/shotwell/library/NotAlone.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/NotAlone.jpg 2016-01-12 12:40:40 +0000 differ
3899=== modified file 'img/shotwell/library/PowerOfWords.jpg'
3900Binary files img/shotwell/library/PowerOfWords.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/PowerOfWords.jpg 2016-01-12 12:40:40 +0000 differ
3901=== modified file 'img/shotwell/library/PurpleDancers.jpg'
3902Binary files img/shotwell/library/PurpleDancers.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/PurpleDancers.jpg 2016-01-12 12:40:40 +0000 differ
3903=== modified file 'img/shotwell/library/SandMaze.jpg'
3904Binary files img/shotwell/library/SandMaze.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/SandMaze.jpg 2016-01-12 12:40:40 +0000 differ
3905=== modified file 'img/shotwell/library/SmallFlowers.jpg'
3906Binary files img/shotwell/library/SmallFlowers.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/SmallFlowers.jpg 2016-01-12 12:40:40 +0000 differ
3907=== modified file 'img/shotwell/library/TheGrassAintGreener.jpg'
3908Binary files img/shotwell/library/TheGrassAintGreener.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/TheGrassAintGreener.jpg 2016-01-12 12:40:40 +0000 differ
3909=== modified file 'img/shotwell/library/WildWheat.jpg'
3910Binary files img/shotwell/library/WildWheat.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/WildWheat.jpg 2016-01-12 12:40:40 +0000 differ
3911=== modified file 'img/shotwell/library/blur/Buckoff.jpg'
3912Binary files img/shotwell/library/blur/Buckoff.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/blur/Buckoff.jpg 2016-01-12 12:40:40 +0000 differ
3913=== modified file 'img/shotwell/library/blur/DarkeningClockwork.jpg'
3914Binary files img/shotwell/library/blur/DarkeningClockwork.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/blur/DarkeningClockwork.jpg 2016-01-12 12:40:40 +0000 differ
3915=== modified file 'img/shotwell/library/blur/DybblsbroStation.jpg'
3916Binary files img/shotwell/library/blur/DybblsbroStation.jpg 2012-04-20 13:28:47 +0000 and img/shotwell/library/blur/DybblsbroStation.jpg 2016-01-12 12:40:40 +0000 differ
3917=== modified file 'img/shotwell/library/blur/FedericaMiglio.jpg'
3918Binary files img/shotwell/library/blur/FedericaMiglio.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/blur/FedericaMiglio.jpg 2016-01-12 12:40:40 +0000 differ
3919=== modified file 'img/shotwell/library/blur/JardinPolar.jpg'
3920Binary files img/shotwell/library/blur/JardinPolar.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/blur/JardinPolar.jpg 2016-01-12 12:40:40 +0000 differ
3921=== modified file 'img/shotwell/library/blur/LangelinieAlle.jpg'
3922Binary files img/shotwell/library/blur/LangelinieAlle.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/blur/LangelinieAlle.jpg 2016-01-12 12:40:40 +0000 differ
3923=== modified file 'img/shotwell/library/blur/MomijiDream.jpg'
3924Binary files img/shotwell/library/blur/MomijiDream.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/blur/MomijiDream.jpg 2016-01-12 12:40:40 +0000 differ
3925=== modified file 'img/shotwell/library/blur/MountSnowdon.jpg'
3926Binary files img/shotwell/library/blur/MountSnowdon.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/blur/MountSnowdon.jpg 2016-01-12 12:40:40 +0000 differ
3927=== modified file 'img/shotwell/library/blur/NotAlone.jpg'
3928Binary files img/shotwell/library/blur/NotAlone.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/blur/NotAlone.jpg 2016-01-12 12:40:40 +0000 differ
3929=== modified file 'img/shotwell/library/blur/PowerOfWords.jpg'
3930Binary files img/shotwell/library/blur/PowerOfWords.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/blur/PowerOfWords.jpg 2016-01-12 12:40:40 +0000 differ
3931=== modified file 'img/shotwell/library/blur/SandMaze.jpg'
3932Binary files img/shotwell/library/blur/SandMaze.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/blur/SandMaze.jpg 2016-01-12 12:40:40 +0000 differ
3933=== modified file 'img/shotwell/library/blur/SmallFlowers.jpg'
3934Binary files img/shotwell/library/blur/SmallFlowers.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/blur/SmallFlowers.jpg 2016-01-12 12:40:40 +0000 differ
3935=== modified file 'img/shotwell/library/blur/TheGrassAintGreener.jpg'
3936Binary files img/shotwell/library/blur/TheGrassAintGreener.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/blur/TheGrassAintGreener.jpg 2016-01-12 12:40:40 +0000 differ
3937=== modified file 'img/shotwell/library/blur/WildWheat.jpg'
3938Binary files img/shotwell/library/blur/WildWheat.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/blur/WildWheat.jpg 2016-01-12 12:40:40 +0000 differ
3939=== modified file 'img/shotwell/library/blur/landscape.jpg'
3940Binary files img/shotwell/library/blur/landscape.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/blur/landscape.jpg 2016-01-12 12:40:40 +0000 differ
3941=== modified file 'img/shotwell/library/blur/plant.jpg'
3942Binary files img/shotwell/library/blur/plant.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/blur/plant.jpg 2016-01-12 12:40:40 +0000 differ
3943=== modified file 'img/shotwell/library/blur/river.jpg'
3944Binary files img/shotwell/library/blur/river.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/blur/river.jpg 2016-01-12 12:40:40 +0000 differ
3945=== modified file 'img/shotwell/library/blur/trees.jpg'
3946Binary files img/shotwell/library/blur/trees.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/blur/trees.jpg 2016-01-12 12:40:40 +0000 differ
3947=== modified file 'img/shotwell/library/dam.jpg'
3948Binary files img/shotwell/library/dam.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/dam.jpg 2016-01-12 12:40:40 +0000 differ
3949=== modified file 'img/shotwell/library/landscape.jpg'
3950Binary files img/shotwell/library/landscape.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/landscape.jpg 2016-01-12 12:40:40 +0000 differ
3951=== modified file 'img/shotwell/library/plant.jpg'
3952Binary files img/shotwell/library/plant.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/plant.jpg 2016-01-12 12:40:40 +0000 differ
3953=== modified file 'img/shotwell/library/river.jpg'
3954Binary files img/shotwell/library/river.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/river.jpg 2016-01-12 12:40:40 +0000 differ
3955=== modified file 'img/shotwell/library/trees.jpg'
3956Binary files img/shotwell/library/trees.jpg 2011-10-14 09:49:36 +0000 and img/shotwell/library/trees.jpg 2016-01-12 12:40:40 +0000 differ
3957=== modified file 'img/software-centre/all-software.png'
3958Binary files img/software-centre/all-software.png 2011-10-14 09:49:36 +0000 and img/software-centre/all-software.png 2016-01-12 12:40:40 +0000 differ
3959=== modified file 'img/software-centre/blur/all-software.png'
3960Binary files img/software-centre/blur/all-software.png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/all-software.png 2016-01-12 12:40:40 +0000 differ
3961=== modified file 'img/software-centre/blur/gladish.png'
3962Binary files img/software-centre/blur/gladish.png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/gladish.png 2016-01-12 12:40:40 +0000 differ
3963=== modified file 'img/software-centre/blur/history (copy).png'
3964Binary files img/software-centre/blur/history (copy).png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/history (copy).png 2016-01-12 12:40:40 +0000 differ
3965=== modified file 'img/software-centre/blur/history.png'
3966Binary files img/software-centre/blur/history.png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/history.png 2016-01-12 12:40:40 +0000 differ
3967=== modified file 'img/software-centre/blur/install-tick.png'
3968Binary files img/software-centre/blur/install-tick.png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/install-tick.png 2016-01-12 12:40:40 +0000 differ
3969=== modified file 'img/software-centre/blur/installed (copy).png'
3970Binary files img/software-centre/blur/installed (copy).png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/installed (copy).png 2016-01-12 12:40:40 +0000 differ
3971=== modified file 'img/software-centre/blur/installed.png'
3972Binary files img/software-centre/blur/installed.png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/installed.png 2016-01-12 12:40:40 +0000 differ
3973=== modified file 'img/software-centre/blur/logo-beep.png'
3974Binary files img/software-centre/blur/logo-beep.png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/logo-beep.png 2016-01-12 12:40:40 +0000 differ
3975=== modified file 'img/software-centre/blur/logo-blender.png'
3976Binary files img/software-centre/blur/logo-blender.png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/logo-blender.png 2016-01-12 12:40:40 +0000 differ
3977=== modified file 'img/software-centre/blur/logo-braid.png'
3978Binary files img/software-centre/blur/logo-braid.png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/logo-braid.png 2016-01-12 12:40:40 +0000 differ
3979=== modified file 'img/software-centre/blur/logo-chromium.png'
3980Binary files img/software-centre/blur/logo-chromium.png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/logo-chromium.png 2016-01-12 12:40:40 +0000 differ
3981=== modified file 'img/software-centre/blur/logo-inkscape.png'
3982Binary files img/software-centre/blur/logo-inkscape.png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/logo-inkscape.png 2016-01-12 12:40:40 +0000 differ
3983=== modified file 'img/software-centre/blur/logo-world-of-goo.png'
3984Binary files img/software-centre/blur/logo-world-of-goo.png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/logo-world-of-goo.png 2016-01-12 12:40:40 +0000 differ
3985=== modified file 'img/software-centre/blur/netsurf.png'
3986Binary files img/software-centre/blur/netsurf.png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/netsurf.png 2016-01-12 12:40:40 +0000 differ
3987=== modified file 'img/software-centre/blur/okular.png'
3988Binary files img/software-centre/blur/okular.png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/okular.png 2016-01-12 12:40:40 +0000 differ
3989=== modified file 'img/software-centre/blur/openjdk.png'
3990Binary files img/software-centre/blur/openjdk.png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/openjdk.png 2016-01-12 12:40:40 +0000 differ
3991=== modified file 'img/software-centre/blur/screenshot-blender.jpg'
3992Binary files img/software-centre/blur/screenshot-blender.jpg 2011-10-14 09:49:36 +0000 and img/software-centre/blur/screenshot-blender.jpg 2016-01-12 12:40:40 +0000 differ
3993=== modified file 'img/software-centre/blur/steadyflow.png'
3994Binary files img/software-centre/blur/steadyflow.png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/steadyflow.png 2016-01-12 12:40:40 +0000 differ
3995=== modified file 'img/software-centre/blur/visolate.png'
3996Binary files img/software-centre/blur/visolate.png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/visolate.png 2016-01-12 12:40:40 +0000 differ
3997=== modified file 'img/software-centre/blur/vitables.png'
3998Binary files img/software-centre/blur/vitables.png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/vitables.png 2016-01-12 12:40:40 +0000 differ
3999=== modified file 'img/software-centre/blur/xyscan.png'
4000Binary files img/software-centre/blur/xyscan.png 2011-10-14 09:49:36 +0000 and img/software-centre/blur/xyscan.png 2016-01-12 12:40:40 +0000 differ
4001=== modified file 'img/software-centre/gladish.png'
4002Binary files img/software-centre/gladish.png 2011-10-14 09:49:36 +0000 and img/software-centre/gladish.png 2016-01-12 12:40:40 +0000 differ
4003=== modified file 'img/software-centre/header.jpg'
4004Binary files img/software-centre/header.jpg 2012-04-20 13:28:47 +0000 and img/software-centre/header.jpg 2016-01-12 12:40:40 +0000 differ
4005=== modified file 'img/software-centre/history (copy).png'
4006Binary files img/software-centre/history (copy).png 2011-10-14 09:49:36 +0000 and img/software-centre/history (copy).png 2016-01-12 12:40:40 +0000 differ
4007=== modified file 'img/software-centre/history.png'
4008Binary files img/software-centre/history.png 2011-10-14 09:49:36 +0000 and img/software-centre/history.png 2016-01-12 12:40:40 +0000 differ
4009=== modified file 'img/software-centre/install-tick.png'
4010Binary files img/software-centre/install-tick.png 2011-10-14 09:49:36 +0000 and img/software-centre/install-tick.png 2016-01-12 12:40:40 +0000 differ
4011=== modified file 'img/software-centre/installed (copy).png'
4012Binary files img/software-centre/installed (copy).png 2011-10-14 09:49:36 +0000 and img/software-centre/installed (copy).png 2016-01-12 12:40:40 +0000 differ
4013=== modified file 'img/software-centre/installed.png'
4014Binary files img/software-centre/installed.png 2011-10-14 09:49:36 +0000 and img/software-centre/installed.png 2016-01-12 12:40:40 +0000 differ
4015=== modified file 'img/software-centre/logo-beep.png'
4016Binary files img/software-centre/logo-beep.png 2011-10-14 09:49:36 +0000 and img/software-centre/logo-beep.png 2016-01-12 12:40:40 +0000 differ
4017=== modified file 'img/software-centre/logo-blender.png'
4018Binary files img/software-centre/logo-blender.png 2011-10-14 09:49:36 +0000 and img/software-centre/logo-blender.png 2016-01-12 12:40:40 +0000 differ
4019=== modified file 'img/software-centre/logo-braid.png'
4020Binary files img/software-centre/logo-braid.png 2011-10-14 09:49:36 +0000 and img/software-centre/logo-braid.png 2016-01-12 12:40:40 +0000 differ
4021=== modified file 'img/software-centre/logo-chromium.png'
4022Binary files img/software-centre/logo-chromium.png 2011-10-14 09:49:36 +0000 and img/software-centre/logo-chromium.png 2016-01-12 12:40:40 +0000 differ
4023=== modified file 'img/software-centre/logo-inkscape.png'
4024Binary files img/software-centre/logo-inkscape.png 2011-10-14 09:49:36 +0000 and img/software-centre/logo-inkscape.png 2016-01-12 12:40:40 +0000 differ
4025=== modified file 'img/software-centre/logo-world-of-goo.png'
4026Binary files img/software-centre/logo-world-of-goo.png 2011-10-14 09:49:36 +0000 and img/software-centre/logo-world-of-goo.png 2016-01-12 12:40:40 +0000 differ
4027=== modified file 'img/software-centre/netsurf.png'
4028Binary files img/software-centre/netsurf.png 2011-10-14 09:49:36 +0000 and img/software-centre/netsurf.png 2016-01-12 12:40:40 +0000 differ
4029=== modified file 'img/software-centre/okular.png'
4030Binary files img/software-centre/okular.png 2011-10-14 09:49:36 +0000 and img/software-centre/okular.png 2016-01-12 12:40:40 +0000 differ
4031=== modified file 'img/software-centre/openjdk.png'
4032Binary files img/software-centre/openjdk.png 2011-10-14 09:49:36 +0000 and img/software-centre/openjdk.png 2016-01-12 12:40:40 +0000 differ
4033=== modified file 'img/software-centre/screenshot-beep.jpg'
4034Binary files img/software-centre/screenshot-beep.jpg 2011-10-14 09:49:36 +0000 and img/software-centre/screenshot-beep.jpg 2016-01-12 12:40:40 +0000 differ
4035=== modified file 'img/software-centre/screenshot-blender.jpg'
4036Binary files img/software-centre/screenshot-blender.jpg 2011-10-14 09:49:36 +0000 and img/software-centre/screenshot-blender.jpg 2016-01-12 12:40:40 +0000 differ
4037=== modified file 'img/software-centre/screenshot-braid.jpg'
4038Binary files img/software-centre/screenshot-braid.jpg 2011-10-14 09:49:36 +0000 and img/software-centre/screenshot-braid.jpg 2016-01-12 12:40:40 +0000 differ
4039=== modified file 'img/software-centre/screenshot-chromium.jpg'
4040Binary files img/software-centre/screenshot-chromium.jpg 2011-10-14 09:49:36 +0000 and img/software-centre/screenshot-chromium.jpg 2016-01-12 12:40:40 +0000 differ
4041=== modified file 'img/software-centre/screenshot-inkscape.jpg'
4042Binary files img/software-centre/screenshot-inkscape.jpg 2011-10-14 09:49:36 +0000 and img/software-centre/screenshot-inkscape.jpg 2016-01-12 12:40:40 +0000 differ
4043=== modified file 'img/software-centre/screenshot-worldofgoo.jpg'
4044Binary files img/software-centre/screenshot-worldofgoo.jpg 2011-10-14 09:49:36 +0000 and img/software-centre/screenshot-worldofgoo.jpg 2016-01-12 12:40:40 +0000 differ
4045=== modified file 'img/software-centre/steadyflow.png'
4046Binary files img/software-centre/steadyflow.png 2011-10-14 09:49:36 +0000 and img/software-centre/steadyflow.png 2016-01-12 12:40:40 +0000 differ
4047=== modified file 'img/software-centre/visolate.png'
4048Binary files img/software-centre/visolate.png 2011-10-14 09:49:36 +0000 and img/software-centre/visolate.png 2016-01-12 12:40:40 +0000 differ
4049=== modified file 'img/software-centre/vitables.png'
4050Binary files img/software-centre/vitables.png 2011-10-14 09:49:36 +0000 and img/software-centre/vitables.png 2016-01-12 12:40:40 +0000 differ
4051=== modified file 'img/software-centre/xyscan.png'
4052Binary files img/software-centre/xyscan.png 2011-10-14 09:49:36 +0000 and img/software-centre/xyscan.png 2016-01-12 12:40:40 +0000 differ
4053=== modified file 'img/speaker-bg-slider.png'
4054Binary files img/speaker-bg-slider.png 2011-10-14 09:49:36 +0000 and img/speaker-bg-slider.png 2016-01-12 12:40:40 +0000 differ
4055=== modified file 'img/top/active-background.png'
4056Binary files img/top/active-background.png 2012-04-20 13:28:47 +0000 and img/top/active-background.png 2016-01-12 12:40:40 +0000 differ
4057=== modified file 'img/top/available.png'
4058Binary files img/top/available.png 2011-10-14 09:49:36 +0000 and img/top/available.png 2016-01-12 12:40:40 +0000 differ
4059=== modified file 'img/top/away.png'
4060Binary files img/top/away.png 2011-10-14 09:49:36 +0000 and img/top/away.png 2016-01-12 12:40:40 +0000 differ
4061=== modified file 'img/top/banshee-forward.png'
4062Binary files img/top/banshee-forward.png 2011-10-14 09:49:36 +0000 and img/top/banshee-forward.png 2016-01-12 12:40:40 +0000 differ
4063=== modified file 'img/top/banshee-play-highlight.png'
4064Binary files img/top/banshee-play-highlight.png 2011-10-14 09:49:36 +0000 and img/top/banshee-play-highlight.png 2016-01-12 12:40:40 +0000 differ
4065=== modified file 'img/top/banshee-play.png'
4066Binary files img/top/banshee-play.png 2011-10-14 09:49:36 +0000 and img/top/banshee-play.png 2016-01-12 12:40:40 +0000 differ
4067=== modified file 'img/top/banshee-rewind.png'
4068Binary files img/top/banshee-rewind.png 2011-10-14 09:49:36 +0000 and img/top/banshee-rewind.png 2016-01-12 12:40:40 +0000 differ
4069=== modified file 'img/top/banshee.png'
4070Binary files img/top/banshee.png 2011-10-14 09:49:36 +0000 and img/top/banshee.png 2016-01-12 12:40:40 +0000 differ
4071=== modified file 'img/top/bluetooth.png'
4072Binary files img/top/bluetooth.png 2011-10-14 09:49:36 +0000 and img/top/bluetooth.png 2016-01-12 12:40:40 +0000 differ
4073=== modified file 'img/top/blur/active-background.png'
4074Binary files img/top/blur/active-background.png 2012-04-20 13:28:47 +0000 and img/top/blur/active-background.png 2016-01-12 12:40:40 +0000 differ
4075=== modified file 'img/top/blur/available.png'
4076Binary files img/top/blur/available.png 2011-10-14 09:49:36 +0000 and img/top/blur/available.png 2016-01-12 12:40:40 +0000 differ
4077=== modified file 'img/top/blur/away.png'
4078Binary files img/top/blur/away.png 2011-10-14 09:49:36 +0000 and img/top/blur/away.png 2016-01-12 12:40:40 +0000 differ
4079=== modified file 'img/top/blur/banshee-forward.png'
4080Binary files img/top/blur/banshee-forward.png 2011-10-14 09:49:36 +0000 and img/top/blur/banshee-forward.png 2016-01-12 12:40:40 +0000 differ
4081=== modified file 'img/top/blur/banshee-play-highlight.png'
4082Binary files img/top/blur/banshee-play-highlight.png 2011-10-14 09:49:36 +0000 and img/top/blur/banshee-play-highlight.png 2016-01-12 12:40:40 +0000 differ
4083=== modified file 'img/top/blur/banshee-play.png'
4084Binary files img/top/blur/banshee-play.png 2011-10-14 09:49:36 +0000 and img/top/blur/banshee-play.png 2016-01-12 12:40:40 +0000 differ
4085=== modified file 'img/top/blur/banshee-rewind.png'
4086Binary files img/top/blur/banshee-rewind.png 2011-10-14 09:49:36 +0000 and img/top/blur/banshee-rewind.png 2016-01-12 12:40:40 +0000 differ
4087=== modified file 'img/top/blur/banshee.png'
4088Binary files img/top/blur/banshee.png 2011-10-14 09:49:36 +0000 and img/top/blur/banshee.png 2016-01-12 12:40:40 +0000 differ
4089=== modified file 'img/top/blur/bluetooth.png'
4090Binary files img/top/blur/bluetooth.png 2011-10-14 09:49:36 +0000 and img/top/blur/bluetooth.png 2016-01-12 12:40:40 +0000 differ
4091=== modified file 'img/top/blur/broadcast.png'
4092Binary files img/top/blur/broadcast.png 2011-10-14 09:49:36 +0000 and img/top/blur/broadcast.png 2016-01-12 12:40:40 +0000 differ
4093=== modified file 'img/top/blur/busy.png'
4094Binary files img/top/blur/busy.png 2011-10-14 09:49:36 +0000 and img/top/blur/busy.png 2016-01-12 12:40:40 +0000 differ
4095=== modified file 'img/top/blur/calendar.jpg'
4096Binary files img/top/blur/calendar.jpg 2014-03-05 15:11:18 +0000 and img/top/blur/calendar.jpg 2016-01-12 12:40:40 +0000 differ
4097=== modified file 'img/top/blur/chat.png'
4098Binary files img/top/blur/chat.png 2011-10-14 09:49:36 +0000 and img/top/blur/chat.png 2016-01-12 12:40:40 +0000 differ
4099=== modified file 'img/top/blur/connection.png'
4100Binary files img/top/blur/connection.png 2011-10-14 09:49:36 +0000 and img/top/blur/connection.png 2016-01-12 12:40:40 +0000 differ
4101=== modified file 'img/top/blur/gotmessage-old.jpg'
4102Binary files img/top/blur/gotmessage-old.jpg 2013-04-23 13:07:34 +0000 and img/top/blur/gotmessage-old.jpg 2016-01-12 12:40:40 +0000 differ
4103=== modified file 'img/top/blur/gotmessage.png'
4104Binary files img/top/blur/gotmessage.png 2013-04-23 13:07:34 +0000 and img/top/blur/gotmessage.png 2016-01-12 12:40:40 +0000 differ
4105=== modified file 'img/top/blur/invisible.png'
4106Binary files img/top/blur/invisible.png 2011-10-14 09:49:36 +0000 and img/top/blur/invisible.png 2016-01-12 12:40:40 +0000 differ
4107=== modified file 'img/top/blur/logoff.png'
4108Binary files img/top/blur/logoff.png 2011-10-14 09:49:36 +0000 and img/top/blur/logoff.png 2016-01-12 12:40:40 +0000 differ
4109=== modified file 'img/top/blur/mail.png'
4110Binary files img/top/blur/mail.png 2011-10-14 09:49:36 +0000 and img/top/blur/mail.png 2016-01-12 12:40:40 +0000 differ
4111=== modified file 'img/top/blur/message.png'
4112Binary files img/top/blur/message.png 2011-10-14 09:49:36 +0000 and img/top/blur/message.png 2016-01-12 12:40:40 +0000 differ
4113=== modified file 'img/top/blur/nomessage.jpg'
4114Binary files img/top/blur/nomessage.jpg 2012-10-03 16:51:49 +0000 and img/top/blur/nomessage.jpg 2016-01-12 12:40:40 +0000 differ
4115=== modified file 'img/top/blur/offline.png'
4116Binary files img/top/blur/offline.png 2011-10-14 09:49:36 +0000 and img/top/blur/offline.png 2016-01-12 12:40:40 +0000 differ
4117=== modified file 'img/top/blur/rhythmbox.png'
4118Binary files img/top/blur/rhythmbox.png 2012-04-20 13:28:47 +0000 and img/top/blur/rhythmbox.png 2016-01-12 12:40:40 +0000 differ
4119=== modified file 'img/top/blur/speakers1.png'
4120Binary files img/top/blur/speakers1.png 2011-10-14 09:49:36 +0000 and img/top/blur/speakers1.png 2016-01-12 12:40:40 +0000 differ
4121=== modified file 'img/top/blur/speakers2.png'
4122Binary files img/top/blur/speakers2.png 2011-10-14 09:49:36 +0000 and img/top/blur/speakers2.png 2016-01-12 12:40:40 +0000 differ
4123=== modified file 'img/top/blur/speakers3.png'
4124Binary files img/top/blur/speakers3.png 2011-10-14 09:49:36 +0000 and img/top/blur/speakers3.png 2016-01-12 12:40:40 +0000 differ
4125=== modified file 'img/top/blur/uone.png'
4126Binary files img/top/blur/uone.png 2011-10-14 09:49:36 +0000 and img/top/blur/uone.png 2016-01-12 12:40:40 +0000 differ
4127=== modified file 'img/top/blur/wireless-icon.png'
4128Binary files img/top/blur/wireless-icon.png 2011-10-14 09:49:36 +0000 and img/top/blur/wireless-icon.png 2016-01-12 12:40:40 +0000 differ
4129=== modified file 'img/top/blur/wireless.png'
4130Binary files img/top/blur/wireless.png 2011-10-14 09:49:36 +0000 and img/top/blur/wireless.png 2016-01-12 12:40:40 +0000 differ
4131=== modified file 'img/top/broadcast.png'
4132Binary files img/top/broadcast.png 2011-10-14 09:49:36 +0000 and img/top/broadcast.png 2016-01-12 12:40:40 +0000 differ
4133=== modified file 'img/top/busy.png'
4134Binary files img/top/busy.png 2011-10-14 09:49:36 +0000 and img/top/busy.png 2016-01-12 12:40:40 +0000 differ
4135=== modified file 'img/top/calendar.jpg'
4136Binary files img/top/calendar.jpg 2014-03-05 15:11:18 +0000 and img/top/calendar.jpg 2016-01-12 12:40:40 +0000 differ
4137=== modified file 'img/top/chat.jpg'
4138Binary files img/top/chat.jpg 2014-03-10 16:38:18 +0000 and img/top/chat.jpg 2016-01-12 12:40:40 +0000 differ
4139=== modified file 'img/top/chat.png'
4140Binary files img/top/chat.png 2011-10-14 09:49:36 +0000 and img/top/chat.png 2016-01-12 12:40:40 +0000 differ
4141=== modified file 'img/top/connection.png'
4142Binary files img/top/connection.png 2011-10-14 09:49:36 +0000 and img/top/connection.png 2016-01-12 12:40:40 +0000 differ
4143=== modified file 'img/top/disconnected.png'
4144Binary files img/top/disconnected.png 2011-10-14 09:49:36 +0000 and img/top/disconnected.png 2016-01-12 12:40:40 +0000 differ
4145=== modified file 'img/top/ethernetconnection.png'
4146Binary files img/top/ethernetconnection.png 2011-10-14 09:49:36 +0000 and img/top/ethernetconnection.png 2016-01-12 12:40:40 +0000 differ
4147=== modified file 'img/top/invisible.png'
4148Binary files img/top/invisible.png 2011-10-14 09:49:36 +0000 and img/top/invisible.png 2016-01-12 12:40:40 +0000 differ
4149=== modified file 'img/top/logoff.png'
4150Binary files img/top/logoff.png 2011-10-14 09:49:36 +0000 and img/top/logoff.png 2016-01-12 12:40:40 +0000 differ
4151=== modified file 'img/top/mail.png'
4152Binary files img/top/mail.png 2011-10-14 09:49:36 +0000 and img/top/mail.png 2016-01-12 12:40:40 +0000 differ
4153=== modified file 'img/top/nobluetooth.png'
4154Binary files img/top/nobluetooth.png 2011-10-14 09:49:36 +0000 and img/top/nobluetooth.png 2016-01-12 12:40:40 +0000 differ
4155=== modified file 'img/top/offline.png'
4156Binary files img/top/offline.png 2011-10-14 09:49:36 +0000 and img/top/offline.png 2016-01-12 12:40:40 +0000 differ
4157=== modified file 'img/top/power.png'
4158Binary files img/top/power.png 2011-10-14 09:49:36 +0000 and img/top/power.png 2016-01-12 12:40:40 +0000 differ
4159=== modified file 'img/top/rhythmbox.png'
4160Binary files img/top/rhythmbox.png 2012-04-20 13:28:47 +0000 and img/top/rhythmbox.png 2016-01-12 12:40:40 +0000 differ
4161=== modified file 'img/top/slider.png'
4162Binary files img/top/slider.png 2011-10-14 09:49:36 +0000 and img/top/slider.png 2016-01-12 12:40:40 +0000 differ
4163=== modified file 'img/top/speakers0.png'
4164Binary files img/top/speakers0.png 2011-10-14 09:49:36 +0000 and img/top/speakers0.png 2016-01-12 12:40:40 +0000 differ
4165=== modified file 'img/top/speakers1.png'
4166Binary files img/top/speakers1.png 2011-10-14 09:49:36 +0000 and img/top/speakers1.png 2016-01-12 12:40:40 +0000 differ
4167=== modified file 'img/top/speakers2.png'
4168Binary files img/top/speakers2.png 2011-10-14 09:49:36 +0000 and img/top/speakers2.png 2016-01-12 12:40:40 +0000 differ
4169=== modified file 'img/top/speakers3.png'
4170Binary files img/top/speakers3.png 2011-10-14 09:49:36 +0000 and img/top/speakers3.png 2016-01-12 12:40:40 +0000 differ
4171=== modified file 'img/top/speakers4.png'
4172Binary files img/top/speakers4.png 2011-10-14 09:49:36 +0000 and img/top/speakers4.png 2016-01-12 12:40:40 +0000 differ
4173=== modified file 'img/top/tick.png'
4174Binary files img/top/tick.png 2011-10-14 09:49:36 +0000 and img/top/tick.png 2016-01-12 12:40:40 +0000 differ
4175=== modified file 'img/top/uone.png'
4176Binary files img/top/uone.png 2011-10-14 09:49:36 +0000 and img/top/uone.png 2016-01-12 12:40:40 +0000 differ
4177=== modified file 'img/top/wireless-icon.png'
4178Binary files img/top/wireless-icon.png 2011-10-14 09:49:36 +0000 and img/top/wireless-icon.png 2016-01-12 12:40:40 +0000 differ
4179=== modified file 'img/top/wireless.png'
4180Binary files img/top/wireless.png 2011-10-14 09:49:36 +0000 and img/top/wireless.png 2016-01-12 12:40:40 +0000 differ
4181=== modified file 'img/topleft-button.png'
4182Binary files img/topleft-button.png 2011-10-14 09:49:36 +0000 and img/topleft-button.png 2016-01-12 12:40:40 +0000 differ
4183=== modified file 'img/tourguide/apps (copy).png'
4184Binary files img/tourguide/apps (copy).png 2011-10-14 09:49:36 +0000 and img/tourguide/apps (copy).png 2016-01-12 12:40:40 +0000 differ
4185=== modified file 'img/tourguide/apps-small.png'
4186Binary files img/tourguide/apps-small.png 2013-04-23 13:07:34 +0000 and img/tourguide/apps-small.png 2016-01-12 12:40:40 +0000 differ
4187=== modified file 'img/tourguide/apps.png'
4188Binary files img/tourguide/apps.png 2011-10-14 09:49:36 +0000 and img/tourguide/apps.png 2016-01-12 12:40:40 +0000 differ
4189=== modified file 'img/tourguide/back-to-download.png'
4190Binary files img/tourguide/back-to-download.png 2011-10-14 09:49:36 +0000 and img/tourguide/back-to-download.png 2016-01-12 12:40:40 +0000 differ
4191=== modified file 'img/tourguide/back-to-welcome.png'
4192Binary files img/tourguide/back-to-welcome.png 2011-10-14 09:49:36 +0000 and img/tourguide/back-to-welcome.png 2016-01-12 12:40:40 +0000 differ
4193=== modified file 'img/tourguide/button-bg.png'
4194Binary files img/tourguide/button-bg.png 2011-10-14 09:49:36 +0000 and img/tourguide/button-bg.png 2016-01-12 12:40:40 +0000 differ
4195=== modified file 'img/tourguide/calc.png'
4196Binary files img/tourguide/calc.png 2011-10-14 09:49:36 +0000 and img/tourguide/calc.png 2016-01-12 12:40:40 +0000 differ
4197=== modified file 'img/tourguide/close.png'
4198Binary files img/tourguide/close.png 2013-04-23 13:07:34 +0000 and img/tourguide/close.png 2016-01-12 12:40:40 +0000 differ
4199=== modified file 'img/tourguide/document.png'
4200Binary files img/tourguide/document.png 2011-10-14 09:49:36 +0000 and img/tourguide/document.png 2016-01-12 12:40:40 +0000 differ
4201=== modified file 'img/tourguide/file-small.png'
4202Binary files img/tourguide/file-small.png 2013-04-23 13:07:34 +0000 and img/tourguide/file-small.png 2016-01-12 12:40:40 +0000 differ
4203=== modified file 'img/tourguide/file.png'
4204Binary files img/tourguide/file.png 2011-10-14 09:49:36 +0000 and img/tourguide/file.png 2016-01-12 12:40:40 +0000 differ
4205=== modified file 'img/tourguide/firefox-small.png'
4206Binary files img/tourguide/firefox-small.png 2011-10-14 09:49:36 +0000 and img/tourguide/firefox-small.png 2016-01-12 12:40:40 +0000 differ
4207=== modified file 'img/tourguide/firefox.png'
4208Binary files img/tourguide/firefox.png 2011-10-14 09:49:36 +0000 and img/tourguide/firefox.png 2016-01-12 12:40:40 +0000 differ
4209=== modified file 'img/tourguide/impress.png'
4210Binary files img/tourguide/impress.png 2011-10-14 09:49:36 +0000 and img/tourguide/impress.png 2016-01-12 12:40:40 +0000 differ
4211=== modified file 'img/tourguide/info.png'
4212Binary files img/tourguide/info.png 2011-10-14 09:49:36 +0000 and img/tourguide/info.png 2016-01-12 12:40:40 +0000 differ
4213=== modified file 'img/tourguide/mail-small.png'
4214Binary files img/tourguide/mail-small.png 2011-10-14 09:49:36 +0000 and img/tourguide/mail-small.png 2016-01-12 12:40:40 +0000 differ
4215=== modified file 'img/tourguide/mail.png'
4216Binary files img/tourguide/mail.png 2011-10-14 09:49:36 +0000 and img/tourguide/mail.png 2016-01-12 12:40:40 +0000 differ
4217=== modified file 'img/tourguide/shotwell-small.png'
4218Binary files img/tourguide/shotwell-small.png 2011-10-14 09:49:36 +0000 and img/tourguide/shotwell-small.png 2016-01-12 12:40:40 +0000 differ
4219=== modified file 'img/tourguide/shotwell.png'
4220Binary files img/tourguide/shotwell.png 2011-10-14 09:49:36 +0000 and img/tourguide/shotwell.png 2016-01-12 12:40:40 +0000 differ
4221=== modified file 'img/tourguide/video-small.png'
4222Binary files img/tourguide/video-small.png 2012-10-05 10:50:21 +0000 and img/tourguide/video-small.png 2016-01-12 12:40:40 +0000 differ
4223=== modified file 'img/ubuntuone/blur/header.jpg'
4224Binary files img/ubuntuone/blur/header.jpg 2011-10-14 09:49:36 +0000 and img/ubuntuone/blur/header.jpg 2016-01-12 12:40:40 +0000 differ
4225=== modified file 'img/ubuntuone/header.jpg'
4226Binary files img/ubuntuone/header.jpg 2011-10-14 09:49:36 +0000 and img/ubuntuone/header.jpg 2016-01-12 12:40:40 +0000 differ
4227=== modified file 'img/welcome/background-link-download.png'
4228Binary files img/welcome/background-link-download.png 2011-10-14 09:49:36 +0000 and img/welcome/background-link-download.png 2016-01-12 12:40:40 +0000 differ
4229=== modified file 'img/welcome/background-link-explore.png'
4230Binary files img/welcome/background-link-explore.png 2011-10-14 09:49:36 +0000 and img/welcome/background-link-explore.png 2016-01-12 12:40:40 +0000 differ
4231=== modified file 'img/welcome/background-welcome.jpg'
4232Binary files img/welcome/background-welcome.jpg 2011-10-14 09:49:36 +0000 and img/welcome/background-welcome.jpg 2016-01-12 12:40:40 +0000 differ
4233=== modified file 'img/welcome/background-welcome.png'
4234Binary files img/welcome/background-welcome.png 2011-10-14 09:49:36 +0000 and img/welcome/background-welcome.png 2016-01-12 12:40:40 +0000 differ
4235=== modified file 'img/welcome/blur/background-welcome.png'
4236Binary files img/welcome/blur/background-welcome.png 2011-10-14 09:49:36 +0000 and img/welcome/blur/background-welcome.png 2016-01-12 12:40:40 +0000 differ
4237=== modified file 'img/welcome/browse-files.png'
4238Binary files img/welcome/browse-files.png 2014-03-05 12:27:32 +0000 and img/welcome/browse-files.png 2016-01-12 12:40:40 +0000 differ
4239=== modified file 'img/welcome/check-email.png'
4240Binary files img/welcome/check-email.png 2014-03-05 12:27:32 +0000 and img/welcome/check-email.png 2016-01-12 12:40:40 +0000 differ
4241=== modified file 'img/welcome/create-documents.png'
4242Binary files img/welcome/create-documents.png 2014-03-05 12:27:32 +0000 and img/welcome/create-documents.png 2016-01-12 12:40:40 +0000 differ
4243=== modified file 'img/welcome/create-presentations.png'
4244Binary files img/welcome/create-presentations.png 2014-03-05 12:27:32 +0000 and img/welcome/create-presentations.png 2016-01-12 12:40:40 +0000 differ
4245=== modified file 'img/welcome/create-spreadsheets.png'
4246Binary files img/welcome/create-spreadsheets.png 2014-03-05 12:27:32 +0000 and img/welcome/create-spreadsheets.png 2016-01-12 12:40:40 +0000 differ
4247=== modified file 'img/welcome/find-apps.png'
4248Binary files img/welcome/find-apps.png 2014-03-05 12:27:32 +0000 and img/welcome/find-apps.png 2016-01-12 12:40:40 +0000 differ
4249=== modified file 'img/welcome/surf-the-web.png'
4250Binary files img/welcome/surf-the-web.png 2014-03-05 12:27:32 +0000 and img/welcome/surf-the-web.png 2016-01-12 12:40:40 +0000 differ
4251=== modified file 'img/welcome/view-photos.png'
4252Binary files img/welcome/view-photos.png 2014-03-05 12:27:32 +0000 and img/welcome/view-photos.png 2016-01-12 12:40:40 +0000 differ
4253=== modified file 'img/welcome/watch-video.png'
4254Binary files img/welcome/watch-video.png 2014-03-05 12:27:32 +0000 and img/welcome/watch-video.png 2016-01-12 12:40:40 +0000 differ
4255=== modified file 'img/white-bg-40.png'
4256Binary files img/white-bg-40.png 2011-10-14 09:49:36 +0000 and img/white-bg-40.png 2016-01-12 12:40:40 +0000 differ
4257=== modified file 'img/workspaces/overlay.png'
4258Binary files img/workspaces/overlay.png 2011-10-14 09:49:36 +0000 and img/workspaces/overlay.png 2016-01-12 12:40:40 +0000 differ
4259=== modified file 'img/workspaces/reflection.png'
4260Binary files img/workspaces/reflection.png 2011-10-14 09:49:36 +0000 and img/workspaces/reflection.png 2016-01-12 12:40:40 +0000 differ
4261=== added file 'js/script.min.js'
4262--- js/script.min.js 1970-01-01 00:00:00 +0000
4263+++ js/script.min.js 2016-01-12 12:40:40 +0000
4264@@ -0,0 +1,4 @@
4265+function setup(){var e=new Image;$(e).attr("src","../img/welcome/background-welcome.jpg").load(function(){$("#loader").hide()}),setupSystemSettings(),setupGuidedTourSystem(),setupShotwellSystem(),setupSystemMenu(),setupSystemOverlay(),setupFirefoxSystem(),setupEmailSystem(),setupErrorMessage(),setupUbuntuOneSystem(),setupFileSystem(),setupShutdownSystem(),setupMoviePlayerSystem(),setupLibreSystem(),setupNotificationSystem(),setupSoftwareSystem(),setupWelcomeSystem(),init()}function init(){$(window).resize(function(){systemOverlay.resize(),ubuntuOneSystem.isOpen()&&ubuntuOneSystem.resize(),welcomeSystem.isOpen()&&welcomeSystem.resize(),systemMenu.resize()}),$(document).mousemove(function(e){null!=movingFolder&&(movingFolder.css("left",e.pageX-folderXOffset),movingFolder.css("top",Math.max(24,e.pageY-folderYOffset)))}),$(".control").mousedown(function(e){movingFolder=$(this).parent(),folderXOffset=e.pageX-movingFolder.position().left,folderYOffset=e.pageY-movingFolder.position().top}),$("#tour-guide").mousedown(function(e){movingFolder=$(this),folderXOffset=e.pageX-movingFolder.position().left,folderYOffset=e.pageY-movingFolder.position().top}),$(document).mouseup(function(){movingFolder=null}),$(".window").mousedown(function(){if(-1!=$(this).attr("class").indexOf("firefox-window")?-1==$(this).attr("class").indexOf("fullsize")?($(".firefox-window .web-overlay-tran").css("width","100%"),$(".firefox-window .web-overlay-tran").hide()):($(".firefox-window .web-ubuntuOneSystemoverlay-tran").css("width","100px"),$(".firefox-window .web-overlay-tran").show()):($(".firefox-window .web-overlay-tran").css("width","100%"),$(".firefox-window .web-overlay-tran").show()),$(".window").css("z-index",2),$(".window").removeClass("selected-window"),$("#top #top-left #title").text($(".window-title",this).text()),$("."+currentSystemSelected).css("z-index",3),$(this).css("z-index",4),$("css3-container").length>0&&($("css3-container").css("z-index",2),$("."+currentSystemSelected).prev().css("z-index",3),$(this).prev().css("z-index",4)),$(this).addClass("selected-window"),openWindows[$(this).attr("id")]=!0,currentSystemSelected!=$(this).attr("class").replace(" window","").replace(" fullsize","").replace(" selected-window","").replace(" window","")){currentSystemSelected=$(this).attr("class").replace(" fullsize",""),currentSystemSelected=currentSystemSelected.replace(" selected-window",""),currentSystemSelected=currentSystemSelected.replace(" window",""),$("#menu ul li .selected-window-arrow").hide();var e=currentSystemSelected;"folder"==e&&(e="home"),"firefox-window"==e&&(e="firefox"),"email-window"==e&&(e="email"),$("#menu ul li."+e+" .selected-window-arrow").show(),guidedTourSystem.setSystem(e)}}),setupTopMenu()}function noWIndowSelected(){currentSystemSelected=null,$("#menu ul li .selected-window-arrow").hide()}function setupTopMenu(){$("#top #top-right div").bind("click",function(){var e=$(this).hasClass("selected");closeTopRightDropDowns(),e?$("#top #top-right div").unbind("mouseover"):($(this).addClass("selected"),$(".drop-down",this).show(),addTransOverlay(),$("#top #top-right div").bind("mouseover",function(){$(this).hasClass("selected")||($("#top #top-right div").removeClass("selected"),$("#top #top-right .drop-down").hide(),$(this).addClass("selected"),$(".drop-down",this).show())}))}),$("#top #top-right div ul li").bind("click",function(){switch($.trim($(this).text())){case _turn_off_bluetooth_:systemSettings.setBluetooth(!1),$(this).text(_turn_on_bluetooth_);break;case _turn_on_bluetooth_:systemSettings.setBluetooth(!0),$(this).text(_turn_off_bluetooth_);break;case _visible_:systemSettings.bluetoothVisible()?(systemSettings.setBluetoothVisible(!1),$(this).removeClass("ticked")):(systemSettings.setBluetoothVisible(!0),$(this).addClass("ticked"));break;case _mute_:systemSettings.setMute(!0),sliderUpdate(0,1),$(this).text(_unmute_);break;case _unmute_:systemSettings.setMute(!1),sliderUpdate(systemSettings.volume(),0),$(this).text(_mute_);break;case _shut_down_:shutdownSystem.open();break;default:errorMessage.open()}}),$("#top #top-right #speakers .slider").slider({min:0,max:100,step:1,value:30,slide:function(e,t){currentPercent=$(this).slider("option","value"),_this.sliderUpdate(currentPercent)},stop:function(e,t){currentPercent=$(this).slider("option","value"),_this.sliderUpdate(currentPercent),_this.systemSettings.setVolume(currentPercent)}}),$("#top #top-left #control-buttons div").bind("click",function(){var e=$(this).attr("id");$("."+currentSystemSelected+" .control ."+e).trigger("click")}),$("#top #top-right #speakers .banshee").mouseover(function(){$("#top #top-right #speakers .banshee .banshee-play").css("background-image","url(../img/top/banshee-play-highlight.png)")}),$("#top #top-right #speakers .banshee").mouseout(function(){$("#top #top-right #speakers .banshee .banshee-play").css("background-image","url(../img/top/banshee-play.png)")})}function sliderUpdate(e,t){var i=parseInt(195*e/100);10>i&&(i=0),$("#top #top-right #speakers .drop-down .slider-active").css("width",i);var s=0;systemSettings.mute()?s=0:1>=e?s=1:35>=e?s=2:75>=e?s=3:e>=75&&(s=4),void 0!=t&&(t?$("#top #top-right #speakers .slider").slider({value:0}):$("#top #top-right #speakers .slider").slider({value:systemSettings.volume()})),$("#top #top-right #speakers img.speakers-logo").attr("src","../img/top/speakers"+s+".png")}function closeTopRightDropDowns(){$("#top #top-right div").removeClass("selected"),$("#top #top-right .drop-down").hide(),$(".fullscreenTransOverlay").unbind("click"),$(".fullscreenTransOverlay").remove(),$("#top #top-right div").unbind("mouseover")}function addTransOverlay(){$("body").append('<div class="fullscreenTransOverlay"></div>'),$(".fullscreenTransOverlay").bind("click",function(){closeTopRightDropDowns()})}function setupSystemSettings(){systemSettings=new SystemSettings(this),systemSettings.init()}function setupErrorMessage(){errorMessage=new ErrorMessage(this),errorMessage.init()}function setupSystemOverlay(){systemOverlay=new SystemOverlay(this),systemOverlay.init()}function setupSystemMenu(){systemMenu=new SystemMenu(this),systemMenu.init()}function setupLibreSystem(){libreSystem=new LibreSystem(this),libreSystem.init()}function setupSoftwareSystem(){softwareSystem=new SoftwareSystem(this),softwareSystem.init()}function setupNotificationSystem(){notificationSystem=new NotificationSystem,notificationSystem.init()}function setupShutdownSystem(){shutdownSystem=new ShutdownSystem,shutdownSystem.init()}function setupFirefoxSystem(){firefoxSystem=new FirefoxSystem(this),firefoxSystem.init()}function setupMoviePlayerSystem(){moviePlayerSystem=new MoviePlayerSystem(this),moviePlayerSystem.init()}function setupEmailSystem(){emailSystem=new EmailSystem(this),emailSystem.init()}function setupUbuntuOneSystem(){ubuntuOneSystem=new UbuntuOneSystem(this),ubuntuOneSystem.init()}function setupFileSystem(){fileSystem=new FileSystem(this),fileSystem.init()}function setupWelcomeSystem(){welcomeSystem=new WelcomeSystem(this),welcomeSystem.init()}function setupGuidedTourSystem(){guidedTourSystem=new GuidedTourSystem(this),guidedTourSystem.init()}function closeAllWindows(e){var t=e;$("#systemOverlay").hide(),errorMessage.close(),firefoxSystem.close(),emailSystem.close(),ubuntuOneSystem.close(),fileSystem.close(),shotwellSystem.close(),libreSystem.close("writer"),libreSystem.close("calc"),libreSystem.close("impress"),softwareSystem.close(),moviePlayerSystem.close(),guidedTourSystem.setIndex(t)}function setupShotwellSystem(){fileLibrary.push(new File(fileLibrary.length,"../img/shotwell/library/Buckoff.jpg","photo",_buck_off_title_,_photo_size_,_photo_date_,"/"+_home_folder_+"/"+_pictures_folder_)),fileLibrary.push(new File(fileLibrary.length,"../img/shotwell/library/DarkeningClockwork.jpg","photo",_darkening_clockwork_title_,_photo_size_,_photo_date_,"/"+_home_folder_+"/"+_pictures_folder_)),fileLibrary.push(new File(fileLibrary.length,"../img/shotwell/library/DybblsbroStation.jpg","photo",_dybbølsbro_station_title_,_photo_size_,_photo_date_,"/"+_home_folder_+"/"+_pictures_folder_)),fileLibrary.push(new File(fileLibrary.length,"../img/shotwell/library/FedericaMiglio.jpg","photo",_federica_miglio_title_,_photo_size_,_photo_date_,"/"+_home_folder_+"/"+_pictures_folder_)),fileLibrary.push(new File(fileLibrary.length,"../img/shotwell/library/JardinPolar.jpg","photo",_jardin_polar_title_,_photo_size_,_photo_date_,"/"+_home_folder_+"/"+_pictures_folder_)),fileLibrary.push(new File(fileLibrary.length,"../img/shotwell/library/LangelinieAlle.jpg","photo",_langelinie_alle_title_,_photo_size_,_photo_date_,"/"+_home_folder_+"/"+_pictures_folder_)),fileLibrary.push(new File(fileLibrary.length,"../img/shotwell/library/MomijiDream.jpg","photo",_momiji_dream_title_,_photo_size_,_photo_date_,"/"+_home_folder_+"/"+_pictures_folder_)),fileLibrary.push(new File(fileLibrary.length,"../img/shotwell/library/MountSnowdon.jpg","photo",_mount_snowdon_title_,_photo_size_,_photo_date_,"/"+_home_folder_+"/"+_pictures_folder_)),fileLibrary.push(new File(fileLibrary.length,"../img/shotwell/library/NotAlone.jpg","photo",_not_alone_title_,_photo_size_,_photo_date_,"/"+_home_folder_+"/"+_pictures_folder_)),fileLibrary.push(new File(fileLibrary.length,"../img/shotwell/library/PowerOfWords.jpg","photo",_power_of_words_title_,_photo_size_,_photo_date_,"/"+_home_folder_+"/"+_pictures_folder_)),fileLibrary.push(new File(fileLibrary.length,"../img/shotwell/library/PurpleDancers.jpg","photo",_purple_dancers_title_,_photo_size_,_photo_date_,"/"+_home_folder_+"/"+_pictures_folder_)),fileLibrary.push(new File(fileLibrary.length,"../img/shotwell/library/SandMaze.jpg","photo",_sand_maze_title_,_photo_size_,_photo_date_,"/"+_home_folder_+"/"+_pictures_folder_)),fileLibrary.push(new File(fileLibrary.length,"../img/shotwell/library/SmallFlowers.jpg","photo",_small_flowers_title_,_photo_size_,_photo_date_,"/"+_home_folder_+"/"+_pictures_folder_)),fileLibrary.push(new File(fileLibrary.length,"../img/shotwell/library/StalkingOcelot.jpg","photo",_stalking_ocelot_title_,_photo_size_,_photo_date_,"/"+_home_folder_+"/"+_pictures_folder_)),fileLibrary.push(new File(fileLibrary.length,"../img/shotwell/library/TheGrassAintGreener.jpg","photo",_the_grass_aint_greener_title_,_photo_size_,_photo_date_,"/"+_home_folder_+"/"+_pictures_folder_)),fileLibrary.push(new File(fileLibrary.length,"../img/shotwell/library/WildWheat.jpg","photo",_wildWheat_title_,_photo_size_,_photo_date_,"/"+_home_folder_+"/"+_pictures_folder_)),fileLibrary.push(new File(fileLibrary.length,"../videos/IAmWeAre.flv","video",_introduction_ubuntu_title_,_video_size_,_video_date_,"/"+_home_folder_+"/"+_videos_folder_)),fileLibrary.push(new File(fileLibrary.length,"../audio/preview.mp3","audio",_Happiness_title_,_music_size_,_music_date_,"/"+_home_folder_+"/"+_music_folder_)),shotwellSystem=new ShotwellSystem(this),shotwellSystem.init()}function topShadow(e){e?($("#top").addClass("dropShadow"),$("#control-buttons").hide(),$("#top").unbind("mouseover"),$("#top").unbind("mouseout")):($("#top").removeClass("dropShadow"),$("#top").bind("mouseover",function(){currentSystemSelected=currentSystemSelected.replace(" pie_hover","");var e=$("."+currentSystemSelected).hasClass("fullsize");!$("#systemOverlay").is(":visible")&&e&&$("#control-buttons").show()}),$("#top").bind("mouseout",function(){$("#control-buttons").hide()}))}function blurWindows(){var e="",t=0,s="";for(i in openWindows)1==openWindows[i]&&($("#"+i).addClass("blurred"),$.each($("#"+i+" *"),function(){$(this).is("img")?(e=$(this).attr("src"),t=e.lastIndexOf("/"),s=e.substr(0,t)+"/blur"+e.substr(t),$(this).attr("src",s)):(e=$(this).css("background-image"),"none"!=e&&(t=e.lastIndexOf("/"),s=e.substr(0,t)+"/blur"+e.substr(t),$(this).css("background-image",s)))}));$.each($("#top-right *"),function(){$(this).is("img")?(e=$(this).attr("src"),t=e.lastIndexOf("/"),s=e.substr(0,t)+"/blur"+e.substr(t),$(this).attr("src",s)):(e=$(this).css("background-image"),"none"!=e&&(t=e.lastIndexOf("/"),s=e.substr(0,t)+"/blur"+e.substr(t),$(this).css("background-image",s)))})}function unblurWindows(){var e="",t="";for(i in openWindows)1==openWindows[i]&&($("#"+i).removeClass("blurred"),$.each($("#"+i+" *"),function(){$(this).is("img")?(e=$(this).attr("src"),t=e.replace("/blur",""),$(this).attr("src",t)):(e=$(this).css("background-image"),"none"!=e&&(t=e.replace("/blur",""),$(this).css("background-image",t)))}));$.each($("#menu *"),function(){$(this).is("img")?(e=$(this).attr("src"),t=e.replace("/blur",""),$(this).attr("src",t)):(e=$(this).css("background-image"),"none"!=e&&(t=e.replace("/blur",""),$(this).css("background-image",t)))}),$.each($("#top-right *"),function(){$(this).is("img")?(e=$(this).attr("src"),t=e.replace("/blur",""),$(this).attr("src",t)):(e=$(this).css("background-image"),"none"!=e&&(t=e.replace("/blur",""),$(this).css("background-image",t)))})}function WelcomeSystem(e){var t=e,i=this,s=!1,n=500,o=$("#welcome #welcome-screen").outerWidth();this.init=function(){this.center(),this.open(),$("#welcome #welcome-screen ul a").bind("click",function(e){i.startTour($(this).attr("class"))}),$("#welcome #welcome-screen .explore-mode").bind("click",function(e){i.startTour("explore-mode")}),$("#welcome #welcome-screen .tour-mode").bind("click",function(e){i.startTour("tour-mode")}),$("#welcome #welcome-screen .close").bind("click",function(e){i.startTour("explore-mode")}),$("#welcome #welcome-screen").show();var e=window.location.hash;void 0!=e&&i.startTour(e.substring(1))},this.startTour=function(e){switch(e){case"browse-files":$("#welcome").hide(),s=!1,t.guidedTourSystem.setCurrentIndex(0),t.systemMenu.handleMenuClick("home");break;case"surf-the-web":$("#welcome").hide(),s=!1,t.guidedTourSystem.setCurrentIndex(1),t.systemMenu.handleMenuClick("firefox");break;case"check-email":$("#welcome").hide(),s=!1,t.guidedTourSystem.setCurrentIndex(2),t.systemMenu.handleMenuClick("email");break;case"view-photos":$("#welcome").hide(),s=!1,t.guidedTourSystem.setCurrentIndex(3),t.systemMenu.handleMenuClick("shotwell");break;case"find-apps":$("#welcome").hide(),s=!1,t.guidedTourSystem.setCurrentIndex(4),t.systemMenu.handleMenuClick("software");break;case"create-documents":$("#welcome").hide(),s=!1,t.guidedTourSystem.setCurrentIndex(5),t.systemMenu.handleMenuClick("writer");break;case"create-presentations":$("#welcome").hide(),s=!1,t.guidedTourSystem.setCurrentIndex(6),t.systemMenu.handleMenuClick("impress");break;case"create-spreadsheets":$("#welcome").hide(),s=!1,t.guidedTourSystem.setCurrentIndex(7),t.systemMenu.handleMenuClick("calc");break;case"watch-video":$("#welcome").hide(),s=!1,t.guidedTourSystem.setCurrentIndex(8),t.systemMenu.handleMenuClick("movieplayer"),t.moviePlayerSystem.addVideo();break;case"explore-mode":$("#welcome").hide(),s=!1;break;case"tour-mode":$("#welcome").hide(),s=!1,t.guidedTourSystem.setCurrentIndex(0),t.systemMenu.handleMenuClick("home");break;default:return!1}$("#tour-guide .explore-to-welcome").bind("click",function(){i.open()}),$("#tour-guide .explore-to-download").bind("click",function(){t.errorMessage.open()}),$("#tour-guide .explore-to-exit").bind("click",function(){window.location.replace("http://www.ubuntu.com")})},this.open=function(){s=!0,$("#welcome").show()},this.center=function(){var e=$(document).width()/2-o/2,t=Math.max(24,$(document).height()/2-n/2);$("#welcome #welcome-screen").css("left",e),$("#welcome #welcome-screen").css("top",t)},this.resize=function(){this.center()},this.isOpen=function(){return s}}function GuidedTourSystem(e){var t,s,n,o,r,a,l,d,c,m,h=e,u=this,p=!1,f=-1,_=0;this.init=function(){homeGuide={system:"welcome",icon:null,title:null,desc:'We hope you\'ve enjoyed the Ubuntu online tour. <a href="http://www.ubuntu.com/download/ubuntu/download#tour" target="_blank">Ready to download?</a> or <a href="/ubuntu/take-the-tour" >Back to the site</a>',hash:"#"},t={system:"home",icon:"img/tourguide/file-small.png",title:"Browse files",desc:"It’s quick and easy to access your folders and files from Ubuntu’s home folder.",hash:"browser-files"},s={system:"firefox",icon:"img/tourguide/firefox-small.png",title:"Surf the web",desc:"Browsing the web is fast and secure with Ubuntu and Firefox.",hash:"surf-the-web"},n={system:"email",icon:"img/tourguide/mail-small.png",title:"Check email",desc:"Read, write and send emails with Thunderbird. It’s easy and fast.",hash:"check-email"},o={system:"shotwell",icon:"img/tourguide/shotwell-small.png",title:"View photos",desc:"You can upload, organise, edit and share your photos with Shotwell.",hash:"view-photos"},r={system:"software",icon:"img/tourguide/apps-small.png",title:"Find apps",desc:"Search and download apps fast from the Ubuntu Software Centre.",hash:"find-apps"},a={system:"writer",icon:"img/tourguide/document-small.png",title:"Create documents",desc:"LibreOffice Writer makes it easy to draft professional documents.",hash:"create-documents"},d={system:"calc",icon:"img/tourguide/calc-small.png",title:"Create spreadsheets",desc:"LibreOffice Calc has everything you need to create clear and accurate spreadsheets.",hash:"create-spreadsheets"},l={system:"impress",icon:"img/tourguide/impress-small.png",title:"Create presentations",desc:"Make a good impression with the intuitive LibreOffice Impress presentation tool.",hash:"create-presentations"},c={system:"movieplayer",icon:"img/tourguide/impress-small.png",title:"Watch videos",desc:"You can watch all your favourite films and videos, DVDs, downloads or movies youve created yourself.",hash:"watch-video"},m=new Array(t,s,n,o,r,a,d,l,c),_=m.length,$("#tour-guide .next-button").bind("click",function(){$(this).hasClass("disabled")||u.next()}),$("#tour-guide .prev-button").bind("click",function(){$(this).hasClass("disabled")||u.prev()}),$("#tour-guide .back-to-download").bind("click",function(){h.errorMessage.open()}),this.update()},this.close=function(){h.closeAllWindows(closeAllWindows)},this.setSystem=function(e){if("email-write"==e&&(e="email"),!p){var t=!1;for(i=0;i<m.length;i++)if(m[i].system==e){this.setCurrentIndex(i),t=!0;break}t||this.setCurrentIndex(-1)}},this.setIndex=function(e){f=e},this.setCurrentIndex=function(e,t){f=e,this.update()},this.next=function(){p=!0,h.closeAllWindows(f),f==_-1?f=0:f++,this.update(),this.updateHash(),h.systemMenu.handleMenuClick(m[f].system),p=!1},this.prev=function(){p=!0,h.closeAllWindows(f),0==f?f=_-1:f--,this.update(),this.updateHash(),h.systemMenu.handleMenuClick(m[f].system),p=!1},this.update=function(){$("#tour-guide .guide-container").hide(),-1==f?$("#tour-guide .welcome").show():($("#tour-guide ."+m[f].system).show(),$("#tour-guide .prev-button").show(),$("#tour-guide .next-button").show())},this.updateHash=function(){window.location.hash=m[f].hash}}function FileSystem(e,t){var i=e,s="/"+_home_folder_;void 0==t&&(t=s);var n=t,o=new Array,r=new Array,a=-1,l="",d=this,c=0,m=-1,h=!1,u=!1,p=!1,f="display-icon",_=-1,w=0;this.init=function(){o.push(new Folder(_documents_folder_,"/"+_home_folder_,"icon-documents")),o.push(new Folder(_downloads_folder_,"/"+_home_folder_,"icon-downloads")),o.push(new Folder(_music_folder_,"/"+_home_folder_,"icon-music")),o.push(new Folder(_videos_folder_,"/"+_home_folder_,"icon-videos")),o.push(new Folder(_pictures_folder_,"/"+_home_folder_,"icon-pictures")),o.push(new Folder(_desktop_folder_,"/"+_home_folder_,"icon-desktop")),o.push(new Folder(_canonical_folder_,"/"+_home_folder_+"/"+_documents_folder_)),o.push(new Folder(_backup_folder_,"/"+_home_folder_+"/"+_documents_folder_)),o.push(new Folder(_local_folder_,"/"+_home_folder_+"/"+_documents_folder_)),o.push(new Folder(_work_folder_,"/"+_home_folder_+"/"+_documents_folder_+"/"+_canonical_folder_)),o.push(new Folder(_branches_folder_,"/"+_home_folder_+"/"+_documents_folder_+"/"+_canonical_folder_)),o=o.concat(i.fileLibrary),this.setupControl()},this.setupControl=function(){$(".folder .control .close").click(function(){d.close()}),$(".folder .control .min").click(function(){u&&i.systemSettings.decreaseFullscreen(),$(".folder").hide(),i.systemMenu.wiggle("home"),h=!0}),$(".folder .control .max").click(function(){u?(u=!1,$(".folder").css("height","500px"),$(".folder").css("width","730px"),$(".folder").removeClass("fullsize"),i.systemSettings.decreaseFullscreen()):(u=!0,$(".folder").css("height",$(document).height()+"px"),$(".folder").css("width",$(document).width()-70+"px"),$(".folder").addClass("fullsize"),i.systemSettings.increaseFullscreen()),d.resize(),d.center()}),$("#folder-window .folder-list .list ul li").click(function(){$("#folder-window .folder-list .list ul li").removeClass("selected"),$(this).addClass("selected");var e=!0,t=$(this).attr("data-folder"),i="";"home"==t?i="/"+_home_folder_:"bin"==t?(i="/"+_rubbish_bin_folder_,e=!1):i=o[t].location()+"/"+o[t].name(),d.clickedNewFolder(i),d.updateDir(i,e)}),this.updateDir(n),this.center()},this.reset=function(e){e&&(n="/"+_home_folder_,r=new Array,a=-1,l="",c=0,m=-1,h=!1),this.updateDir(n)},this.open=function(){$(".folder").show(),p=!0,$("css3-container").length>0&&($(".folder").prev().css("top",$(".folder").css("top")),$(".folder").prev().css("left",$(".folder").css("left")))},this.isMinified=function(){return h},this.isMaximised=function(){return u},this.in_bin=function(){return _in_bin},this.close=function(){p&&(i.openWindows["folder-window"]=!1,u&&i.systemSettings.decreaseFullscreen(),$(".folder").hide(),i.systemMenu.closeWindow("home"),$(".folder").removeClass("fullsize"),d.resize(),d.center(),p=!1,h=!1,u=!1)},this.isOpen=function(){return p},this.setupFolderControl=function(){$(".folder-contents .contents div").mouseover(function(){$(this).addClass("over")}),$(".folder-contents .contents div").mouseout(function(){$(this).removeClass("over")}),$(".folder-contents .contents").mousedown(function(){$(".folder-contents .contents div").removeClass("selected"),$(".selected-details").hide()}),$(".folder-contents .contents div").mousedown(function(e){e.stopPropagation(),$(".folder-contents .contents div").removeClass("selected"),$(this).addClass("selected"),d.showSelectedDetails(parseInt($(this).attr("data-id")))}),$(".folder-contents .contents div").dblclick(function(){switch(_=$(this).attr("data-id"),$(this).attr("data-type")){case"folder":var e=n+"/"+o[_].name();d.clickedNewFolder(e),d.updateDir(e);break;case"photo":i.shotwellSystem.selectImage(o[$(this).attr("data-id")].id()),i.shotwellSystem.open();break;case"video":i.moviePlayerSystem.open(),i.moviePlayerSystem.addVideo();break;case"audio":i.errorMessage.open();break;default:i.errorMessage.open()}})},this.showSelectedDetails=function(e){var t=o[e].name(),i=0;if("folder"==o[e].type()){for(var s=o.length;s--;)o[s].location()==o[e].location()+"/"+t&&i++;$(".selected-details").text('"'+t+'" '+_string_selected_+" ("+_string_containing_+" "+i+" "+_string_items_+")")}else $(".selected-details").text('"'+t+'" '+_string_selected_+" ("+o[e].size()+")");$(".selected-details").show()},this.setupBreadcrumbControl=function(){$("#folder-window .bottom-buttons div").bind("click",function(){$(this).addClass("selected");var e=$(this).attr("data-id");d.history_index=e,d.updateDir(r[e])})},this.clickedNewFolder=function(){var e=$.inArray(n,r);if(e>-1)for(var t=r.length-1-e;t--;)r.pop();$(".selected-details").hide()},this.refresh=function(){c=0,$(".folder-contents .contents").html(""),l="";for(var e=o.length;e--;)o[e].location()==n&&(l+=o[e].drawIcon(e,f),c++);$(".folder-contents .contents").html(l),$("#folder-window .bottom-buttons div").unbind("click");var t="";for(e=0;e<r.length;e++){var i=r[e].split("/");i=i[i.length-1],"Home"==i&&(i='<span class="home"></span>'+i),"Desktop"==$.trim(i)&&(i='<img src="../img/folder/desktop-icon.png"/>'+i),t+=e==a?'<div data-id="'+e+'" class="selected">'+i+"</div>":'<div data-id="'+e+'">'+i+"</div>"}i=r[a].split("/"),i=i[i.length-1],$("#folder-window .bottom-buttons").html(t),$(".folder .window-title").text(i),this.setupBreadcrumbControl(),this.setupFolderControl()},this.getFiles=function(){return o},this.backDir=function(){a--,this.updateDir(r[a])},this.forwardDir=function(){a++,this.updateDir(r[a])},this.updateDir=function(e,t){var i=e.split("/"),s=i[i.length-1].toLowerCase();"rubbish bin"==s&&(s="rubbish"),void 0==t&&($("#folder-window .folder-list .list ul li").removeClass("selected"),$('#folder-window .folder-list .list ul li[data-folder="'+_+'"]').addClass("selected")),n=e,void 0==t&&(t=!1);var o=$.inArray(e,r);o>-1?a=o:t?(a=1,r=new Array("/"+_home_folder_,e)):n.split("/").length>2?(a++,r.push(e)):(a=0,r=new Array,r.push(e)),a>0?this.backButton(!0):this.backButton(!1),a<r.length-1?this.forwardButton(!0):this.forwardButton(!1),this.refresh()},this.backButton=function(e){e?$(".buttons .folder-back").hasClass("disabled")&&($(".buttons .folder-back").bind("click",function(){d.backDir()}),$(".buttons .folder-back").removeClass("disabled")):$(".buttons .folder-back").hasClass("disabled")||($(".buttons .folder-back").unbind("click"),$(".buttons .folder-back").addClass("disabled"))},this.forwardButton=function(e){e?$(".buttons .folder-forward").hasClass("disabled")&&($(".buttons .folder-forward").bind("click",function(){d.forwardDir()}),$(".buttons .folder-forward").removeClass("disabled")):$(".buttons .folder-forward").hasClass("disabled")||($(".buttons .folder-forward").unbind("click"),$(".buttons .folder-forward").addClass("disabled"))},this.center=function(){var e=$(document).width()/2-$(".folder").width()/2,t=Math.max(24,$(document).height()/2-$(".folder").height()/2);$(".folder").css("left",e),$(".folder").css("top",t)},this.resize=function(){w=$(".folder").width()-146,folderListHeight=$(".folder").height()-51,$(".folder .folder-list .list").css("height",folderListHeight-30),$(".folder .folder-contents .contents").css("height",folderListHeight-17),$(".folder .folder-contents .contents").css("width",w)}}function Folder(e,t,i){void 0==e&&(e="Untitled Folder"),void 0==t&&(t="/Home"),void 0==i&&(i="");var s=e,n="6.2 GB",o=t,r=!1,a=i;this.name=function(){return s},this.size=function(){return n},this.location=function(){return o},this.in_bin=function(){return r},this.icon=function(){return a},this.rename=function(e){s=e},this.bin=function(e){r=e},this.move=function(e){o=e},this.drawIcon=function(e,t){return"<div class='file-folder "+this.icon()+" "+t+"' data-type='folder' data-id='"+e+"'><p></p><span>"+s+"</span></div>"},this.type=function(){return"folder"}}function SystemOverlay(e){var t,i,s,n,o=e,r=this,a=!1;this.totalApps;var l;this.init=function(){n=new Array({name:_chromium_app_,image:"img/software-centre/logo-chromium.png"},{name:_beep_app_,image:"img/software-centre/logo-beep.png"},{name:_inkscape_app_,image:"img/software-centre/logo-inkscape.png"},{name:_world_of_goo_app_,image:"img/software-centre/logo-world-of-goo.png"},{name:_blender_app_,image:"img/software-centre/logo-blender.png"},{name:_braid_app_,image:"img/software-centre/logo-braid.png"}),t=new Array({name:_rhythmbox_app_,image:"rhythmbox.png"},{name:_brasero_app_,image:"brasero.png"},{name:_movie_player_app_,image:"movieplayer.png"},{name:_shotwell_app_,image:"shotwell.png"},{name:_pitivi_app_,image:"pitivi.png"},{name:_ubuntu_one_music_app_,image:"ubuntuonemusic.png"},{name:_sound_recorder_app_,image:"soundrecorder.png"}),i=new Array({name:_empathy_app_,image:"empathy.png"},{name:_thunderbird_app_,image:"thunderbird.png"},{name:_firefox_app_,image:"firefox.png"},{name:_gwibber_app_,image:"gwibber.png"},{name:_remote_desktop_app_,image:"remotedesktop.png"},{name:_terminal_app_,image:"terminalserver.png"},{name:_amazon_app_,image:"amazon.png"},{name:_ubuntu_one_app_,image:"ubuntuone.png"}),s=new Array({name:_about_me_app_,image:"aboutme.png"},{name:_additional_drivers_app_,image:"additionaldrivers.png"},{name:_aisleroit_app_,image:"solitaire.png"},{name:_appearance_app_,image:"appearance.png"},{name:_ubuntu_software_center_app_,image:"ubuntusoftwarecenter.png"},{name:_bluetooth_app_,image:"bluetooth.png"}),this.totalApps=t.concat(i,s),$("#systemOverlay input").val(_search_),this.setupTopControl()},this.open=function(){o.closeTopRightDropDowns(),a?r.closeOverlay():r.openOverlay(),this.resize()},this.setupTopControl=function(){$("#systemOverlay .copyDash").bind("click",function(e){r.closeOverlay()}),$("#top #top-left #dash-control-buttons .close").bind("click",function(e){r.closeOverlay()}),$("#systemOverlay input").keyup(function(){r.appSearch($(this).val())}),this.resize(),$("#systemOverlay #dash-bottom-bar .bottom-wrapper div").click(function(){switch($("#systemOverlay #dash-bottom-bar .bottom-wrapper div").removeClass("active"),$(this).attr("class").replace(" last","")){case"home-icon":r.showHome();break;case"applications-icon":r.displayApps();break;case"files-icon":r.displayFindApps();break;case"music-icon":r.displayMusic();break;case"video-icon":r.displayVideo();break;case"photos-icon":r.displayPhotos();break;case"chat-icon":r.displayChat()}$(this).addClass("active")});var e=$("#systemOverlay input");e.focus(function(){$(this).val()==_search_&&($(this).val(""),$(this).css("font-style","normal"),$(this).css("color","#fff"))}),e.blur(function(){""==$(this).val()&&($(this).val(_search_),$(this).css("font-style","italic"),$(this).css("color","#aaa"),r.reset())})},this.removeApps=function(e){for(var t=0;t<this.totalApps.length;t++)if(this.totalApps[t].name==e){this.totalApps.splice(t,1);break}},this.appSearch=function(e){if(""!=e){var t="";l=o.fileSystem.getFiles();for(var i="",s=this.totalApps.length,n=new Array,a=new RegExp(e,"gi");s--;)n=this.totalApps[s].name.match(a),null!=n&&(i+="../img/"==this.totalApps[s].image.substr(0,7)?'<div><img src="'+this.totalApps[s].image+'" /><p>'+this.totalApps[s].name+"</p></div>":'<div><img src="../img/applications/'+this.totalApps[s].image+'" /><p>'+this.totalApps[s].name+"</p></div>");for(var s=0;s<l.length;s++)n=l[s].name().match(a),null!=n&&(t+=this.getDisplayIcon(l[s],s));this.hideAll(),$("#systemOverlay #display-search .files .app-list").html(t),$("#systemOverlay #display-search .applications .app-list").html(i),$("#systemOverlay #display-search").show(),$("#systemOverlay .app-container .app-list div").bind("mouseover",function(){$("img",this).addClass("hover")}),$("#systemOverlay .app-container .app-list div").bind("mouseout",function(){$("img",this).removeClass("hover")}),$("#systemOverlay .app-container .applications .app-list div").bind("click",function(){var e=!1;"download"==$(this).attr("data-type")&&(e=!0),r.appClicked($("img",this).attr("src"),e)}),$("#systemOverlay .app-container .files .app-list div").bind("click",function(){r.fileClicked($(this).attr("data-id"))})}else this.showHome()},this.getDisplayIcon=function(e,t){switch(e.type()){case"folder":return'<div data-id="'+t+'"><img src="../img/applications/folder-generic.png" /><p>'+e.name()+"</p></div>";case"audio":return'<div data-id="'+t+'"><img src="../img/applications/audio.png" /><p>'+e.name()+"</p></div>";case"video":return'<div data-id="'+t+'"><img src="../img/'+e.url().replace("flv","jpg").replace("../","")+'" /><p>'+e.name()+"</p></div>";case"photo":return'<div data-id="'+t+'"><img src="'+e.url()+'" /><p>'+e.name()+"</p></div>";default:return'<div data-id="'+t+'"><img src="../img/applications/unknown.png" /><p>'+e.name()+"</p></div>"}},this.hideAll=function(){$("#systemOverlay #overlayContents #display-home").hide(),$("#systemOverlay #overlayContents #display-apps").hide(),$("#systemOverlay #overlayContents #display-find-files").hide(),$("#systemOverlay #overlayContents #display-search").hide(),$("#systemOverlay #overlayContents #display-find-music").hide(),$("#systemOverlay #overlayContents #display-find-photos").hide(),$("#systemOverlay #overlayContents #display-chat").hide(),$("#systemOverlay #overlayContents #display-find-video").hide(),$("#systemOverlay #preview").hide()},this.showHome=function(){$("#systemOverlay #overlayContents #display-apps").hide(),$("#systemOverlay #overlayContents #display-find-files").hide(),$("#systemOverlay #overlayContents #display-search").hide(),
4266+$("#systemOverlay #overlayContents #display-find-music").hide(),$("#systemOverlay #overlayContents #display-find-video").hide(),$("#systemOverlay #overlayContents #display-find-photos").hide(),$("#systemOverlay #overlayContents #display-chat").hide(),$("#systemOverlay #preview").hide(),$("#systemOverlay #overlayContents #display-home").show()},this.displayHome=function(){var e,t="",i="",s="",a=this.totalApps;e=a.slice(),e.sort(this.randOrd),n.sort(this.randOrd),l=o.fileSystem.getFiles();for(var d=0;d<a.length;d++)t+="../img"==a[d].image.substr(0,7)?'<div><img src="'+a[d].image+'" /><p>'+a[d].name+"</p></div>":'<div><img src="../img/applications/'+a[d].image+'" /><p>'+a[d].name+"</p></div>";for(var d=0;d<l.length;d++)"folder"!=l[d].type()&&(i+=this.getDisplayIcon(l[d],d));for(var d=l.length;d--;)"folder"!=l[d].type()&&(s+=this.getDisplayIcon(l[d],d));$("#systemOverlay #display-home .recent-apps .app-list").html(t),$("#systemOverlay #display-home .recent-files .app-list").html(i),$("#systemOverlay #display-home .downloads .app-list").html(s),$("#systemOverlay #display-find-files .downloads .app-list").html(s),$("#systemOverlay .app-container .app-list div").bind("mouseover",function(){$("img",this).addClass("hover")}),$("#systemOverlay .app-container .app-list div").bind("mouseout",function(){$("img",this).removeClass("hover")}),$("#systemOverlay #display-home .recent-apps .app-list div").bind("click",function(){r.appClicked($("img",this).attr("src"),"download"==$(this).attr("data-type"))}),$("#systemOverlay #display-home .recent-files .app-list div").bind("click",function(){r.fileClicked($(this).attr("data-id"))}),$("#systemOverlay #display-home .downloads .app-list div").bind("click",function(){r.fileClicked($(this).attr("data-id"))})},this.displayApps=function(e){this.hideAll();var o,a,l="",d="",c="";o="media"==e?t:"internet"==e?i:"more"==e?s:this.totalApps,a=o.slice(),a.sort(this.randOrd),n.sort(this.randOrd);for(var m=0;m<o.length;m++)l+="img/"==o[m].image.substr(0,4)?'<div><img src="../'+o[m].image+'" /><p>'+o[m].name+"</p></div>":'<div><img src="../img/applications/'+o[m].image+'" /><p>'+o[m].name+"</p></div>";for(var m=0;m<a.length;m++)d+="img/"==a[m].image.substr(0,4)?'<div><img src="../'+a[m].image+'" /><p>'+a[m].name+"</p></div>":'<div><img src="../img/applications/'+a[m].image+'" /><p>'+a[m].name+"</p></div>";for(var m=0;m<n.length;m++)c+="img/"==n[m].image.substr(0,4)?'<div data-type="download"><img src="../'+n[m].image+'" /><p>'+n[m].name+"</p></div>":'<div data-type="download"><img src="../img/applications/'+n[m].image+'" /><p>'+n[m].name+"</p></div>";$("#systemOverlay #display-home").hide(),$("#systemOverlay #display-apps .available .app-list").html(c),$("#systemOverlay #display-apps .installed .app-list").html(l),$("#systemOverlay #display-apps .frequently .app-list").html(d),$("#systemOverlay #display-apps").show(),$("#systemOverlay .app-container .app-list div").bind("mouseover",function(){$("img",this).addClass("hover")}),$("#systemOverlay .app-container .app-list div").bind("mouseout",function(){$("img",this).removeClass("hover")}),$("#systemOverlay .app-container .app-list div").bind("click",function(){r.appClicked($("img",this).attr("src"),"download"==$(this).attr("data-type"))})},this.randOrd=function(){return Math.round(Math.random())-.5},this.displayMusic=function(){this.hideAll();var e="",t="";l=o.fileSystem.getFiles();for(var i=0;i<l.length;i++)"audio"==l[i].type()&&(e+=this.getDisplayIcon(l[i],i));$("#systemOverlay #display-find-music .songs .app-list").html(e),$("#systemOverlay #display-find-music .albums .app-list").html(t),$("#systemOverlay #display-home").hide(),$("#systemOverlay #display-find-music").show(),$("#systemOverlay .app-container .app-list div").bind("mouseover",function(){$("img",this).addClass("hover")}),$("#systemOverlay .app-container .app-list div").bind("mouseout",function(){$("img",this).removeClass("hover")}),$("#systemOverlay .app-container .app-list div").bind("click",function(){r.appClicked($("img",this).attr("src"),"download"==$(this).attr("data-type"))})},this.displayVideo=function(){this.hideAll();var e="";l=o.fileSystem.getFiles();for(var t=0;t<l.length;t++)"video"==l[t].type()&&(e+=this.getDisplayIcon(l[t],t));$("#systemOverlay #display-find-video .videos .app-list").html(e),$("#systemOverlay #display-home").hide(),$("#systemOverlay #display-find-video").show(),$("#systemOverlay .app-container .app-list div").bind("mouseover",function(){$("img",this).addClass("hover")}),$("#systemOverlay .app-container .app-list div").bind("mouseout",function(){$("img",this).removeClass("hover")}),$("#systemOverlay .app-container .app-list div").bind("click",function(){r.fileClicked($(this).attr("data-id"))})},this.displayPhotos=function(){this.hideAll();var e="";l=o.fileSystem.getFiles();for(var t=0;t<l.length;t++)"photo"==l[t].type()&&(e+=this.getDisplayIcon(l[t],t));$("#systemOverlay #display-find-photos .photos .app-list").html(e),$("#systemOverlay #display-home").hide(),$("#systemOverlay #display-find-photos").show(),$("#systemOverlay .app-container .app-list div").bind("mouseover",function(){$("img",this).addClass("hover")}),$("#systemOverlay .app-container .app-list div").bind("mouseout",function(){$("img",this).removeClass("hover")}),$("#systemOverlay .app-container .app-list div").bind("click",function(){r.fileClicked($(this).attr("data-id"))})},this.displayChat=function(){this.hideAll(),$("#systemOverlay #display-home").hide(),$("#systemOverlay #display-chat").show(),$("#systemOverlay .app-container .app-list div").bind("mouseover",function(){$("img",this).addClass("hover")}),$("#systemOverlay .app-container .app-list div").bind("mouseout",function(){$("img",this).removeClass("hover")}),$("#systemOverlay .app-container .app-list div").bind("click",function(){r.fileClicked($(this).attr("data-id"))})},this.displayFindApps=function(){this.hideAll();var e="",t="";l=o.fileSystem.getFiles();for(var i=0;i<l.length;i++)"folder"==l[i].type()?t+=this.getDisplayIcon(l[i],i):e+=this.getDisplayIcon(l[i],i);$("#systemOverlay #display-find-files .folders .app-list").html(t),$("#systemOverlay #display-find-files .files .app-list").html(e),$("#systemOverlay #display-home").hide(),$("#systemOverlay #display-find-files").show(),$("#systemOverlay .app-container .app-list div").bind("mouseover",function(){$("img",this).addClass("hover")}),$("#systemOverlay .app-container .app-list div").bind("mouseout",function(){$("img",this).removeClass("hover")}),$("#systemOverlay .app-container .app-list div").bind("click",function(){r.fileClicked($(this).attr("data-id"))})},this.fileClicked=function(e){var t=l[e];switch(t.type()){case"folder":r.closeOverlay(),o.fileSystem.reset(!o.fileSystem.isMinified()),o.fileSystem.updateDir(t.location()+"/"+t.name()),o.fileSystem.open();break;case"photo":r.openPreview(t.id());break;case"video":r.closeOverlay(),o.moviePlayerSystem.open(),o.moviePlayerSystem.addVideo();break;default:r.closeOverlay(),o.errorMessage.open()}},this.openPreview=function(e){console.log(e);var t=o.fileLibrary[e],i='<img src="'+t.url()+'" width="400" />',s=t.name()+".jpg",n=s.length>23?s.substring(0,23)+"...":s,a='<p class="filename">'+n+"</p>",l='<p class="date">'+t.date()+"</p>",d='<p class="type">Format: JPEG image</p>',c='<p class="size">Size: '+t.size()+"</p>";$("#systemOverlay #preview .image").html(i),$("#systemOverlay #preview .info").html(a+l+d+c),r.hideAll(),r.centerPreview(),$("#systemOverlay #preview .email").bind("click",function(e){r.closePreview(),r.closeOverlay(),o.errorMessage.open()}),$("#systemOverlay #preview .showInFolder").bind("click",function(e){r.closeOverlay(),r.closeOverlay(),o.errorMessage.open()}),$("#systemOverlay #preview .open").bind("click",function(e){r.closeOverlay(),o.shotwellSystem.selectImage(t.id()),o.shotwellSystem.open()}),$("#systemOverlay #preview").show()},this.closePreview=function(){$("#systemOverlay #preview").hide()},this.centerPreview=function(){var e=$(document).width()/2-$("#systemOverlay #preview").width()/2,t=Math.max(24,$(document).height()/2-$("#systemOverlay #preview").height()/2);$("#systemOverlay #preview").css("left",e),$("#systemOverlay #preview").css("top",t+"px"),$("css3-container").length>0&&($("#systemOverlay #preview").prev().css("top",$("#systemOverlay #preview").css("top")),$("#systemOverlay #preview").prev().css("left",$("#systemOverlay #preview").css("left")))},this.appClicked=function(e,t){r.closeOverlay();var i=e.substring(e.lastIndexOf("/")+1,e.length-4);if(t)i=i.replace("logo-",""),"world-of-goo"==i&&(i="worldofgoo"),o.softwareSystem.open(i);else switch(i){case"shotwell":o.systemMenu.handleMenuClick("shotwell");break;case"thunderbird":o.systemMenu.handleMenuClick("email");break;case"firefox":o.systemMenu.handleMenuClick("firefox");break;case"movieplayer":o.moviePlayerSystem.open();break;default:o.errorMessage.open()}},this.reset=function(){$("#systemOverlay input").val(_search_),$("#systemOverlay input").css("font-style","italic"),$("#systemOverlay input").css("color","#aaa"),this.hideAll(),$("#systemOverlay #display-home").show(),$("#systemOverlay #dash-bottom-bar .bottom-wrapper div").removeClass("active"),$("#systemOverlay #dash-bottom-bar .bottom-wrapper .home-icon").addClass("active")},this.hide=function(){o.unblurWindows(),$("#systemOverlay").hide(),r.reset()},this.openOverlay=function(){$("#top").addClass("dashOpen"),$("#menu").addClass("dashOpen"),$("#top").removeClass("dropShadow"),a=!0,this.reset(),this.displayHome(),$("#top #top-button-bg").addClass("open"),$("#systemOverlay").fadeTo(300,1,o.blurWindows),$("#systemOverlay input").focus()},this.closeOverlay=function(){$("#top").removeClass("dashOpen"),$("#menu").removeClass("dashOpen"),$("#top").addClass("dropShadow"),a=!1,$("#top #top-button-bg").removeClass("open"),$("#systemOverlay").fadeTo(300,0,function(){r.hide()}),$("#systemOverlay .app-container .app-list div").unbind("mouseover"),$("#systemOverlay .app-container .app-list div").unbind("mouseout"),$("#systemOverlay .app-container .app-list div").unbind("click"),$("#menu .dash .selected-window-arrow").hide(),$("#menu ."+o.systemMenu.getSelectedMenu()+" .selected-window-arrow").show()},this.resize=function(){$("#systemOverlay .bottom-wrapper").css("left",$("#dash-bottom-bar").width()/2-$("#dash-bottom-bar .bottom-wrapper").width()/2),$("#systemOverlay").css("height",$(document).height()),$("#systemOverlay input").css("width",$("#dash-bottom-bar").width()-250)}}function SystemMenu(e){var t,i=e,s=this,n=!1;this.init=function(){$("#menu ul li").mouseover(function(){$("#tooltip-text").text($(this).text()),$("#tooltip").css("top",$(this).position().top+$("#menu ul").position().top+45),$("#tooltip").show()}),$("#menu ul li").click(function(){var e=$(this).attr("class").replace(" bottom","");e=e.replace(" temp","").replace(" glow",""),s.handleMenuClick(e)}),$("#menu ul li").mouseout(function(){$("#tooltip").hide()}),this.resize()},this.resize=function(){var e=$(window).height()-24;$("#menu").css("height",e),this.scrollCheck()},this.scrollCheck=function(){var e=0;$.each($("#menu ul li"),function(){$(this).is(":visible")&&(e+=$(this).height()+8)}),$("#menu ul").height()<e?n||(this.addScrolling(),$("#menu .rubbish").removeClass("bottom")):n&&(this.removeScrolling(),$("#menu .rubbish").addClass("bottom"))},this.addScrolling=function(){n=!0,$("#menu").append('<div class="scroll-up"></div><div class="scroll-down"></div>'),$("#menu .scroll-up").bind("mouseover",function(){scrollingUp=!0,scrollUp()}),$("#menu .scroll-down").bind("mouseover",function(){scrollingDown=!0,scrollDown()}),$("#menu .scroll-up").bind("mouseout",function(){s.stopScrolling()}),$("#menu .scroll-down").bind("mouseout",function(){s.stopScrolling()}),$("#menu").bind("mouseleave",function(){s.resetScroll()})},this.stopScrolling=function(){clearTimeout(scrollingTimer),scrollingTimer=null},this.removeScrolling=function(){n=!1,$("#menu").unbind("mousemove"),$("#menu").unbind("mouseout"),$("#menu .scroll-up").remove(),$("#menu .scroll-down").remove(),$("#menu .scroll-up").unbind("mouseover"),$("#menu .scroll-down").unbind("mouseover"),$("#menu .scroll-up").unbind("mouseoout"),$("#menu .scroll-down").unbind("mouseoout")},this.resetScroll=function(){$("#menu ul").css("top","0px")},this.handleMenuClick=function(e){var s=!0;switch("dash"!=e&&(t=e),e){case"dash":$("#menu .selected-window-arrow").hide(),$("#menu .dash .selected-window-arrow").show(),i.systemOverlay.open();break;case"home":var n=$(".folder");n.is(":visible")||(fileSystem.isMinified()?(fileSystem.isMaximised()&&systemSettings.increaseFullscreen(),fileSystem.reset(!1)):fileSystem.reset(!0)),fileSystem.open(),$(".folder ").trigger("mousedown");break;case"firefox":var n=$(".firefox-window");n.is(":visible")||(i.firefoxSystem.open(),i.firefoxSystem.isMaximised()&&i.systemSettings.increaseFullscreen()),$(".firefox-window ").trigger("mousedown");break;case"shotwell":var n=$("#shotwell");n.is(":visible")||(i.shotwellSystem.open(),i.shotwellSystem.isMaximised()&&i.systemSettings.increaseFullscreen()),n.trigger("mousedown");break;case"writer":var n=$("#libreoffice-writer-window");n.is(":visible")||i.libreSystem.open("writer"),n.trigger("mousedown");break;case"impress":var n=$("#libreoffice-impress-window");n.is(":visible")||i.libreSystem.open("impress"),n.trigger("mousedown");break;case"calc":var n=$("#libreoffice-calc-window");n.is(":visible")||i.libreSystem.open("calc"),n.trigger("mousedown");break;case"uone":var n=$("#ubuntuone-window");n.is(":visible")||i.ubuntuOneSystem.open(),$("#ubuntuone-window ").trigger("mousedown");break;case"software":var n=$("#software-centre");n.is(":visible")||i.softwareSystem.open(),n.trigger("mousedown");break;case"email":var n=$(".email-window ");n.is(":visible")||(i.emailSystem.open(),i.emailSystem.isMaximised()&&i.systemSettings.increaseFullscreen()),i.emailSystem.isWriteMinified()?($("#email-write").show(),$("#email-write ").trigger("mousedown")):$(".email-window ").trigger("mousedown");break;case"movieplayer":var n=$("#movieplayer");n.is(":visible")||(moviePlayerSystem.center(),i.moviePlayerSystem.open(),i.moviePlayerSystem.isMaximised()&&i.systemSettings.increaseFullscreen()),$("#movieplayer ").trigger("mousedown");break;case"rubbish":var n=$(".folder");n.is(":visible")?i.fileSystem.updateDir("/"+_rubbish_bin_folder_):(null==i.fileSystem?(i.fileSystem=new FileSystem(this,"/"+_rubbish_bin_folder_),i.fileSystem.init()):i.fileSystem.updateDir("/"+_rubbish_bin_folder_),$(".folder").show(),$("#menu ul li.home img").show()),i.fileSystem.open(),$(".folder ").trigger("mousedown");break;case"workspace":i.workspaces.isOpen()?i.workspaces.close():i.workspaces.open();break;default:s=!1,i.errorMessage.open()}if(s){$("#menu ul li."+e+" img.open-arrow").show();var o=$("#menu ul li."+e).css("background-image");"dash"!=e&&"rubbish"!=e&&-1==o.indexOf("-active")&&($indexLastSlash=o.lastIndexOf("."),$newBackgroundLink=o.substr(0,$indexLastSlash)+"-active.png",$("#menu ul li."+e).css("background-image",$newBackgroundLink).css("display"," list-item"))}},this.getSelectedMenu=function(){return t},this.increaseFullscreen=function(){},this.decreaseFullscreen=function(){},this.wiggle=function(e){$("#menu").css("overflow","visible"),i.noWIndowSelected(),$("#menu ul li."+e).addClass("glow").delay(600).queue(function(e){$(this).removeClass("glow"),e()})},this.closeWindow=function(e){$("#menu ul li."+e+" img").hide();var t=$("#menu ul li."+e).css("background-image");$("#menu ul li."+e).css("background-image",t.replace("-active","")),$("#menu ul li."+e).hasClass("temp")&&$("#menu ul li."+e).hide(),$("#top #top-left #title").text(""),i.guidedTourSystem.setCurrentIndex(-1),this.scrollCheck()},this.openWindow=function(e){$("#menu ul li."+e).hasClass("temp")&&$("#menu ul li."+e).show(),$("#menu ul li."+e+" img").show(),this.scrollCheck()}}function scrollUp(){var e=Math.min(0,$("#menu ul").position().top+5);$("#menu ul").css("top",e+"px"),scrollingTimer=setTimeout("scrollUp()",50)}function scrollDown(){var e=$(window).height()-24-($("#menu ul .rubbish").position().top+$("#menu ul .rubbish").height()+30),t=Math.max(e,Math.min(0,$("#menu ul").position().top-5));$("#menu ul").css("top",t+"px"),scrollingTimer=setTimeout("scrollDown()",50)}function FirefoxSystem(e){function t(e){$("#submitURL ").attr("value",e),$("#firefoxInternet").attr("src",e),i()}function i(){$(".buttons .firefox-back").unbind("click"),$(".buttons .firefox-forward").unbind("click"),l.length<=1?$(".buttons .firefox-back").addClass("inactive"):($(".buttons .firefox-back").removeClass("inactive"),$(".buttons .firefox-back").bind("click",function(){s()})),d.length<=0?$(".buttons .firefox-forward").addClass("inactive"):($(".buttons .firefox-forward").removeClass("inactive"),$(".buttons .firefox-forward").bind("click",function(){n()}))}function s(){d.push(l[l.length-1]),l.pop(),h=$(".firefox-window").height()-($(".firefox-window .control").height()+$(".firefox-window .buttons").height()+12),$(".firefox-window .firefox-internet").css("height",h),u=$(".firefox-window").width()-310,$(".firefox-window .buttons .firefox-url input").css("width",u),_=!0,t(l[l.length-1])}function n(){var e=d[d.length-1];l.push(e),d.pop(),_=!0,t(e)}function o(){h=$(".firefox-window").height()-($(".firefox-window .control").height()+$(".firefox-window .buttons").height()+12),p&&(h-=27),$(".firefox-window .firefox-internet .theIframe").css("height",h),$(".firefox-window .web-overlay-tran").css("height",h),u=$(".firefox-window").width()-310,$(".firefox-window .buttons .firefox-url input").css("width",u)}function r(){var e=$(document).width()/2-$(".firefox-window").width()/2,t=Math.max(24,$(document).height()/2-$(".firefox-window").height()/2);$(".firefox-window").css("left",e),$(".firefox-window").css("top",t)}function a(){_||($("#submitURL").addClass("fade-text"),"..."!=$("#submitURL").val().substr($("#submitURL").val().length-3,3)&&$("#submitURL").val($("#submitURL").val()+"...")),_=!1}var l=new Array,d=new Array,c=e,m=this,h=0,u=0,p=!1,f="http://start.ubuntu.com",_=!0,w=!1;this.init=function(){$(".firefox-window .control .close").click(function(){m.close()}),$(".firefox-window .control .min").click(function(){p&&c.systemSettings.decreaseFullscreen(),$(".firefox-window ").hide(),c.systemMenu.wiggle("firefox")}),$(".firefox-window .control .max").click(function(){p?(p=!1,$(".firefox-window").removeClass("fullsize"),$(".firefox-window").css("height","600px"),$(".firefox-window").css("width","900px"),$(".firefox-window .web-overlay-tran").css("width","100%"),$(".firefox-window .web-overlay-tran").hide(),c.systemSettings.decreaseFullscreen()):(p=!0,$(".firefox-window").addClass("fullsize"),$(".firefox-window").css("height",$(document).height()+"px"),$(".firefox-window").css("width",$(document).width()-70+"px"),$(".firefox-window .web-overlay-tran").css("width","100px"),$(".firefox-window .web-overlay-tran").show(),c.systemSettings.increaseFullscreen()),o()}),$("#submitURL").keypress(function(e){if(13==e.keyCode){var i=$("#submitURL ").val();"http"!=i.slice(0,4)&&(i="www"!=i.slice(0,3)?"http://www."+i:"http://"+i),_=!0,d=new Array,l.push(i),t(i)}}),$("#submitSearch ").keypress(function(e){if(13==e.keyCode){var i="http://www.wikipedia.org/w/index.php?title=Special%3ASearch&search="+$("#submitSearch ").val().replace(" ","+");d=new Array,l.push(i),_=!0,t(i)}}),this.close=function(){c.openWindows["firefox-window"]=!1,$(".firefox-window ").hide(),p&&c.systemSettings.decreaseFullscreen(),r(),_=!1,t(f),p=!1,$(".firefox-window").removeClass("fullsize"),m.resize(),m.center(),c.systemMenu.closeWindow("firefox")},this.open=function(){r(),$(".firefox-window ").show(),w=!0,$("css3-container").length>0&&($(".firefox-window").prev().css("top",$(".firefox-window").css("top")),$(".firefox-window").prev().css("left",$(".firefox-window").css("left")))},this.isMaximised=function(){return p},this.resize=function(){o()},this.center=function(){r()},$("#submitSearch").focus(function(){"Wikipedia"==$(this).val()&&($(this).val(""),$(this).removeClass("fade-text"))}),$("#submitSearch").blur(function(){""==$(this).val()&&($(this).val("Wikipedia"),$(this).addClass("fade-text"))}),$("#submitURL").focus(function(){"..."==$(this).val().substr($(this).val().length-3,3)&&($(this).removeClass("fade-text"),$(this).val($(this).val().substr(0,$(this).val().length-3)))}),$("#firefoxInternet").load(function(){a()}),o(),r(),l.push(f),t(f)}}function EmailSystem(e){var t=new Array,i=e,s=this,n=!1,o=!1,r=!1,a=!1,l="inbox",d=0,c=-1,m=0,h=!1,u=new Array,p=new Array,f=null,_=null,w="";this.init=function(){t.push(new Email(0,"inbox",$.trim(_email_1_title_),$.trim(_email_1_body_),"Inayaili de Leon",$.trim(_you_))),t.push(new Email(1,"inbox",$.trim(_email_2_title_),$.trim(_email_2_body_),"John Oxton",$.trim(_you_))),t.push(new Email(2,"inbox",$.trim(_email_3_title_),$.trim(_email_3_body_),"Ellen Arnold",$.trim(_you_))),t.push(new Email(3,"inbox",$.trim(_email_4_title_),$.trim(_email_4_body_),"Steve Edwards",$.trim(_you_))),t.push(new Email(4,"inbox",$.trim(_email_5_title_),$.trim(_email_5_body_),"Anthony Dillon",$.trim(_you_))),u.push(_random_reply_),p.push(new Email(t.length,"inbox","Hiya there again","Just checking how you are? Been along time...\n\nRegards,\nJoe","Joe Bloggs <joe@bloggs.com>")),p.push(new Email(t.length,"inbox","Hiya there again","Great ... Sounds good! Lets meet for lunch tomorrow to talk it over! What you think?\n\nThanks,\nSue","Sue White <suewhite@googlemail.com>")),p.push(new Email(t.length,"inbox","Hiya there again","Did you catch the game last night! What a goal... fancy coming over next time?","Jack Smith <j_swan@gmail.com>")),p.push(new Email(t.length,"inbox","Hiya there again","Ok, ill do my best but no promises. It will take some time so let you know when its done./\n/\nThanks,/\nPaul","Paul Swan <paul@hotmail.com>")),this.setupControl(),$("#write-from input").val($.trim(_you_))},this.setupControl=function(){this.resetMessage(),$("#email-write #write-send").bind("click",function(){s.sendEmail()}),$("#email-write #write-subject input[name=subject]").keyup(function(){var e=$(this).val();""!=e?$("#email-write .window-title").text(_write_+": "+e):$("#email-write .window-title").text(_write_+": ("+_no_subject_+")")}),$("#email-write input").focus(function(){$(this).css("border-color","#dd4814")}),$("#email-write input").blur(function(){$(this).css("border-color","#ADA9A5")}),$("#email-write .control .close").click(function(){s.closeWrite()}),$("#email-write .control .min").click(function(){$("#email-write").hide(),a&&i.systemSettings.decreaseFullscreen(),i.systemMenu.wiggle("email"),o=!0}),$("#email-write .control .max").click(function(){a?(a=!1,$("#email-write").css("width","900px"),$("#email-write").css("height","610px"),$("#email-write").removeClass("fullsize"),i.systemSettings.decreaseFullscreen()):(a=!0,$("#email-write").css("width",$(document).width()-70+"px"),$("#email-write").css("height",$(document).height()+"px"),$("#email-write").addClass("fullsize"),i.systemSettings.increaseFullscreen()),s.resizeMessage()}),$(".email-window .control .close").click(function(){s.close()}),$(".email-window .control .min").click(function(){$(".email-window").hide(),r&&i.systemSettings.decreaseFullscreen(),i.systemMenu.wiggle("email"),n=!0}),$(".email-window .control .max").click(function(){r?(r=!1,$(".email-window").css("width","900px"),$(".email-window").css("height","600px"),$(".email-window").removeClass("fullsize"),i.systemSettings.decreaseFullscreen()):(r=!0,$(".email-window").css("width",$(document).width()-70+"px"),$(".email-window").css("height",$(document).height()+"px"),$(".email-window").addClass("fullsize"),i.systemSettings.increaseFullscreen()),s.resize()}),$(".email-content .folder-list .list div").click(function(){$(".email-window .folder-list .list div").removeClass("selected"),$(this).addClass("selected"),s.setFolder($(this).attr("id").split("-")[1])}),$(".email-window .buttons .email-write").bind("click",function(e){s.showWrite()}),$(".email-window .buttons .email-get-mail").bind("click",function(e){s.updateDisplay()}),$(".message-header .email-buttons span.message-delete").bind("click",function(e){-1!=c&&("trash"!=t[c].folder()?t[c].setFolder("trash"):t[c].setDeleted(!0),c=-1,s.updateDisplay(),s.updateMessage())}),$(".message-header .email-buttons span.message-archive").bind("click",function(e){-1!=c&&(t[c].setFolder("archive"),c=-1,s.updateDisplay(),s.updateMessage())}),$(".message-header .email-buttons span.message-junk").bind("click",function(e){-1!=c&&(t[c].fire()?t[c].setFire(!1):t[c].setFire(!0),s.updateDisplay(),s.updateMessage())}),$(".message-header .email-buttons span.message-forward").bind("click",function(e){s.showWrite("forward")}),$(".message-header .email-buttons span.message-reply").bind("click",function(e){"sent"==l?s.showWrite("sentreply"):s.showWrite("reply")}),$(".not-junk").bind("click",function(e){-1!=c&&(t[c].setFire(!1),s.updateDisplay(),s.updateMessage())}),this.updateDisplay(),this.updateMessage()},this.setupRandomEmail=function(){var e=Math.floor(Math.random()*p.length);f=p[e];var t=1e4*Math.random()+2e3;setTimeout("recieveMessage()",t)},this.showWrite=function(e){if(-1!=c){_=t[c],w=e;var i=$.trim(_.subject());"Re:"!=i.substr(0,3)&&(i="Re: "+$.trim(i)),"reply"==w?($("#email-write .window-title").text(_write_+": "+i),$("#email-write #write-from input[name=from]").val($.trim(_you_)),$("#email-write #write-subject input[name=subject]").val(i),$("#email-write #write-to input[name=to]").val(_.from()),$("#email-write #write-body textarea[name=body]").val("\n\n"+$.trim(_on_)+" "+$.trim(_.date())+", "+$.trim(_.from())+" "+$.trim(_wrote_)+": \n\n"+$.trim(_.body()))):"forward"==w?($("#email-write .window-title").text($.trim(_write_)+": Fwd: "+$.trim(_.subject())),$("#email-write #write-subject input[name=subject]").val($.trim(_fwd_)+": "+$.trim(_.subject())),$("#email-write #write-to input[name=to]").val(""),$("#email-write #write-body textarea[name=body]").val("\n\n-------- "+$.trim(_original_message_)+" --------\n\n"+$.trim(_.body()))):"sentreply"==w&&($("#email-write .window-title").text($.trim(_write_)+": "+$.trim(i)),$("#email-write #write-from input[name=from]").val($.trim(_you_)),$("#email-write #write-subject input[name=subject]").val($.trim(i)),$("#email-write #write-to input[name=to]").val($.trim(_.to())),$("#email-write #write-body textarea[name=body]").val("\n\n"+$.trim(_on_)+" "+$.trim(_.date())+", "+$.trim(_.from())+" "+$.trim(_wrote_)+": \n\n"+$.trim(_.body())))}$("#email-write").show(),$("#email-write").css("z-index",3),$("#email-write").trigger("mousedown"),$("css3-container").length>0&&($("#email-write").prev().css("top",$("#email-write").css("top")),$("#email-write").prev().css("left",$("#email-write").css("left")))},this.closeWrite=function(){i.openWindows["email-write"]=!1,this.resetMessage(),$("#email-write").hide()},this.isMaximised=function(){return r},this.isWriteMaximised=function(){return a},this.isWriteMinified=function(){return o},this.open=function(){h=!0,this.center(),$(".email-window").show(),i.systemMenu.openWindow("email")},this.close=function(){h&&(h=!1,i.openWindows["email-window"]=!1,$(".email-window").hide(),$("#email-write").hide(),r&&i.systemSettings.decreaseFullscreen(),i.systemMenu.closeWindow("email"),$(".email-window").removeClass("fullsize"),a=o=r=r=!1,$("#folder-inbox").trigger("click"),this.resize(),this.center())},this.updateDisplay=function(){d=m=0,emailLIstContents="";for(var e="",n=t.length;n--;)t[n].read()||i.systemSettings.gotMail(!0),t[n].folder()!=l||t[n].deleted()||(e+=t[n].draw(n),d++,t[n].read()||m++);this.checkMessageNotification(),$(".email-window .email-list").html(e),$(".email-window .email-list .message:even").addClass("grey"),-1!=c&&$(".email-window .email-list #email-"+c).addClass("selected"),$(".email-list div").bind("click",function(){c=$(this).attr("id").split("-")[1],t[c].setRead(!0),$(".email-list div").removeClass("selected"),$(this).addClass("selected"),$(this).hasClass("unread")&&(m--,s.checkMessageNotification()),$(this).removeClass("unread"),s.updateMessage(),s.updateDetails()}),$(".email-list div li.message-star").bind("click",function(e){e.stopPropagation(),c=$(this).parent().parent().attr("id").split("-")[1],t[c].starred()?(t[c].setStarred(!1),$(this).parent().parent().removeClass("starred")):(t[c].setStarred(!0),$(this).parent().parent().addClass("starred"))}),$(".email-list div li.message-fire").bind("click",function(e){e.stopPropagation();var i=$(this).parent().parent().attr("id").split("-")[1];t[i].fire()?(t[i].setFire(!1),$(this).parent().parent().removeClass("fire")):(t[i].setFire(!0),$(this).parent().parent().addClass("fire")),s.updateMessage()}),$(".email-list div li.message-glasses").bind("click",function(e){e.stopPropagation(),c=$(this).parent().parent().attr("id").split("-")[1],t[c].read()?(t[c].setRead(!1),$(this).parent().parent().addClass("unread"),m++):(t[c].setRead(!0),$(this).parent().parent().removeClass("unread"),m--),s.updateDetails()})},this.checkMessageNotification=function(){m>0?i.systemSettings.gotMail(!0):i.systemSettings.gotMail(!1)},this.updateMessage=function(){if(-1!=c){var e=t[c].body();e=e.replace(/\n/g,"<br/>"),$(".email-window .email-contents .message-body").html(e),$(".email-window .email-contents .email-body .message-header .from dd").html(t[c].from()),$(".email-window .email-contents .email-body .message-header .subject dd").html(t[c].subject()),$(".email-window .email-contents .email-body .message-header .to dd").html(t[c].to()),$(".email-window .email-contents .email-body .message-header .date").html(t[c].date()),t[c].cc()?$(".email-window .email-contents .email-body .message-header .cc dd").html(t[c].cc()):$(".email-window .email-contents .email-body .message-header .cc").hide(),$(".email-window .email-contents .email-body div").show();var i=$(".email-window .email-contents .email-body").height()-($(".email-window .email-contents .email-body .message-header").height()+21);t[c].fire()?(i-=39,$(".message-header .email-buttons span.message-junk").hide(),$(".email-window .email-contents .junk-mail-banner ").show()):($(".message-header .email-buttons span.message-junk").show(),$(".email-window .email-contents .junk-mail-banner ").hide()),i+="px",$(".email-window .email-contents .message-body").css("height",i)}else $(".email-window .email-contents .email-body div").hide();this.updateDetails()},this.setFolder=function(e){l=e,c=-1,"sent"==l?$(".email-window .email-content .email-contents .email-categories .from").text(_recipient_):$(".email-window .email-content .email-contents .email-categories .from").text(_from_),this.updateDisplay(),this.updateMessage()},this.resize=function(){var e=$(".email-window").width()-188,t=$(".email-window").height()-130;$(".email-window .email-content .email-contents").css("width",e),$(".email-window .email-content .folder-list .list").css("height",t),$(".email-window .email-content .email-contents .email-list").css("height",t/2-3),$(".email-window .email-content .email-contents .email-body").css("height",t/2-3),this.updateMessage()},this.resizeMessage=function(){var e=$("#email-write").width()-6,t=$("#email-write").height()-250;$("#email-write #write-body textarea").css("width",e),$("#email-write #write-body textarea").css("height",t)},this.updateDetails=function(){$(".email-window .email-content .emails-info #details-unread").text(m),$(".email-window .email-content .emails-info #details-total").text(d)},this.resetMessage=function(){$("#email-write").hide(),$("#email-write .window-title").text(_write_+": ("+_no_subject_+")"),$("#email-write #write-subject input[name=subject]").val(""),$("#email-write #write-to input[name=to]").val(""),$("#email-write #write-body textarea[name=body]").val(""),$("#email-write .loading-bar .progress").css("width","0")},this.sendEmail=function(){var e=s.safeValue($("#email-write #write-subject input[name=subject]").val()),i=s.safeValue($("#email-write #write-body textarea[name=body]").val()),n=_you_,o=s.safeValue($("#email-write #write-to input[name=to]").val()),r=new Date,a=r.getMinutes(),l=r.getDate(),d=r.getMonth(),c=""+r.getFullYear();
4267+c=c.substr(2,2),10>a&&(a="0"+a),10>l&&(l="0"+l),10>d&&(d="0"+d),10>a&&(a="0"+a),r=l+"/"+d+"/"+c+" "+r.getHours()+":"+a+" ";var m=new Email(t.length,"sent",e,i,n,o,r);t.push(m),"reply"==w?_.setReplied(!0):"forward"==w&&_.setForwarded(!0),$("#email-write .loading-bar .progress").animate({width:96},500,function(){s.resetMessage(),s.updateDisplay(),s.setupRandomReply(m)})},this.safeValue=function(e){var t=/</g,i=/>/g,s=/'/g,n=/"/g;return e=e.toString().replace(t,"&lt;").replace(i,"&gt;").replace(s,"&#39;").replace(n,"&#34;")},this.setupRandomReply=function(e){var i=Math.floor(Math.random()*u.length),s=u[i]+"\n\n"+$.trim(_on_)+" "+$.trim(e.date())+", "+$.trim(e.from())+" "+$.trim(_fwd_)+" "+$.trim(_wrote_)+": \n\n"+e.body(),n=e.subject();"Re:"!=n.substr(0,3)&&(n="Re: "+n),t.push(new Email(t.length,"inbox",n,s,e.to(),_you_));var o=2e3*Math.random()+2e3;setTimeout("recieveMessage()",o)},this.center=function(){var e=$(document).width()/2-$(".email-window").width()/2,t=Math.max(24,$(document).height()/2-$(".email-window").height()/2);$(".email-window").css("left",e),$(".email-window").css("top",t+"px"),$("css3-container").length>0&&($(".email-window").prev().css("top",$(".email-window").css("top")),$(".email-window").prev().css("left",$(".email-window").css("left")))}}function recieveMessage(){emailSystem.updateDisplay()}function SystemSettings(e){var t,i,s,n,o,r,a,l,d,c,m,h,u,p;this.init=function(){t=e,i=this,s=new Date,n=30,o=!0,r=!1,a=0,l=!1,d="Ubuntu Play",c=!1,m=!1,h=9,u=setInterval(function(){i.updateClock()},1e3),p=s.getMinutes(),this.setClock(),this.setSystem()},this.setSystem=function(){},this.gotMail=function(e){m=e,e&&"../img/top/nomessage.jpg"==$("#top #top-right #message .message-logo").attr("src")?$("#top #top-right #message .message-logo").attr("src","../img/top/gotmessage.jpg"):e||"../img/top/gotmessage.jpg"!=$("#top #top-right #message .message-logo").attr("src")||$("#top #top-right #message .message-logo").attr("src","../img/top/nomessage.jpg")},this.setGuidedTour=function(e){l=e},this.setDate=function(e){s=e},this.setVolume=function(e){n=e},this.setMute=function(e){c=e},this.setActiveIcons=function(e){h=e},this.setBluetooth=function(e){o=e,o?($("#top #top-right #bluetooth ul li.bluetooth").text(_turn_on_bluetooth_),$("#top #top-right #bluetooth img").removeClass("disabled"),$("#top #top-right #bluetooth ul li.BtOn").show()):($("#top #top-right #bluetooth ul li.bluetooth").text(_turn_off_bluetooth_),$("#top #top-right #bluetooth img").addClass("disabled"),$("#top #top-right #bluetooth ul li.BtOn").hide())},this.increaseFullscreen=function(){a++,t.topShadow(!1)},this.decreaseFullscreen=function(){a--,0>=a&&(t.topShadow(!0),t.noWIndowSelected())},this.setBluetoothVisible=function(e){r=e},this.updateTime=function(){s.setMinutes(s.getMinutes()+1),this.setClock()},this.setClock=function(){var e=s.getHours(),t=s.getMinutes();10>t&&(t="0"+t),10>e&&(e="0"+e),$("#time p").text(e+":"+t+" ")},this.updateClock=function(){p!=(new Date).getMinutes()&&(clearInterval(u),this.updateTime(),setInterval(function(){i.updateTime()},6e4))},this.onGuidedTour=function(){return l},this.date=function(){return s},this.fullscreenCount=function(){return a},this.volume=function(){return n},this.bluetooth=function(){return o},this.bluetoothVisible=function(){return r},this.mute=function(){return c},this.mail=function(){return m}}function Email(e,t,i,s,n,o,r,a){if(void 0==i&&(i="Untitled Message"),void 0==n&&(n="Welcome <welcome@ubuntu.com>"),void 0==o&&(o="Me <me@canonical.com>"),void 0==a&&(a=!1),void 0==s&&(s="There is no body for message "+i),void 0==r){var l=new Date,d=l.getMinutes(),c=l.getDate(),m=l.getMonth()+1,h=""+l.getFullYear();h=h.substr(2,2),10>d&&(d="0"+d),10>c&&(c="0"+c),10>m&&(m="0"+m),10>d&&(d="0"+d),r=c+"/"+m+"/"+h+" "+l.getHours()+":"+d+" "}var u=e,p=r,f=i,_=n,w=o,$=a,g=!1,y=!1,b=!1,v=!1,x=!1,k=!1,S=t,C=s,O=!1;"sent"==S&&(x=!0),this.subject=function(){return f},this.date=function(){return p},this.from=function(){return _},this.to=function(){return w},this.cc=function(){return $},this.replied=function(){return g},this.attachment=function(){return b},this.starred=function(){return v},this.read=function(){return x},this.folder=function(){return S},this.fire=function(){return k},this.body=function(){return C},this.deleted=function(){return O},this.forwarded=function(){return y},this.setReplied=function(e){g=e},this.setAttachment=function(e){b=e},this.setStarred=function(e){v=e},this.setRead=function(e){x=e},this.setFolder=function(e){S=e},this.setFire=function(e){k=e},this.setDeleted=function(e){O=e},this.setForwarded=function(e){y=e},this.draw=function(){var e='class="message ';return x||(e+="unread "),b&&(e+="attachment "),v&&(e+="starred "),k&&(e+="fire "),g&&y?e+="repliedforwarded ":(g&&(e+="replied "),y&&(e+="forwarded ")),e+='"',"sent"==S?'<div id="email-'+u+'" '+e+'><ul><li class="message-t"></li><li class="message-star"></li><li class="message-clip"></il><li class="message-subject">'+f+'</li><li class="message-glasses"></li><li class="message-from">'+w+'</li><li class="message-fire"></li><li class="message-date">'+p+"</li></div>":'<div id="email-'+u+'" '+e+'><ul><li class="message-t"></li><li class="message-star"></li><li class="message-clip"></il><li class="message-subject">'+f+'</li><li class="message-glasses"></li><li class="message-from">'+_+'</li><li class="message-fire"></li><li class="message-date">'+p+"</li></div>"},this.toString=function(){return"ID = "+u+" | Subject = "+f}}function ErrorMessage(e){var t=this;this.init=function(){$(".error-window .control .close").bind("click",function(){t.close()}),$(".error-window .content .error-buttons div").bind("click",function(){var e=$(this).attr("class").replace(" highlight","");switch(e){case"continue":t.continueClicked();break;case"download":t.downloadClicked()}}),this.center()},this.continueClicked=function(){this.close()},this.downloadClicked=function(){window.open("http://www.ubuntu.com/download/ubuntu/download")},this.open=function(){this.resize(),$(".error-window").show(),$(".error-window ").trigger("mousedown"),$("body").append('<div class="fullscreenErrorTransOverlay"></div>'),$(".fullscreenErrorTransOverlay").bind("click",function(){t.close()}),$("css3-container").length>0&&($(".error-window").prev().css("top",$(".error-window").css("top")),$(".error-window").prev().css("left",$(".error-window").css("left")))},this.close=function(){$(".error-window").is(":visible")&&($(".fullscreenErrorTransOverlay").unbind("click"),$(".fullscreenErrorTransOverlay").remove(),$(".error-window").hide(),this.center())},this.resize=function(){var e=$(document).width()/2-$(".error-window").width()/2,t=$(document).height()/2-$(".error-window").height()/2;$(".error-window").css("left",e),$(".error-window").css("top",t)},this.center=function(){var e=$(document).width()/2-$(".error-window").width()/2,t=$(document).height()/2-$(".error-window").height()/2;$(".error-window").css("left",e),$(".error-window").css("top",t)}}function UbuntuOneSystem(e){var t=!1,i=e,s=this;this.init=function(){$("#ubuntuone-window").hide(),$("#ubuntuone-window .control .close").bind("click",function(){s.close()}),$("#ubuntuone-window .content .body .ubuntuone-buttons .join-now").bind("click",function(){s.openUbuntu1Page()}),$("#ubuntuone-window .content .body .ubuntuone-buttons .learn-more").bind("click",function(){s.openUbuntu1Page()}),$("#ubuntuone-window .content .body .ubuntuone-buttons .have-account").bind("click",function(){s.openUbuntu1Page()})},this.open=function(){this.center(),$("#ubuntuone-window ").show(),t=!0,$("css3-container").length>0&&($("#ubuntuone-window").prev().css("top",$("#ubuntuone-window").css("top")),$("#ubuntuone-window").prev().css("left",$("#ubuntuone-window").css("left")))},this.openUbuntu1Page=function(){window.open("http://one.ubuntu.com")},this.close=function(){t&&(i.openWindows["ubuntuone-window"]=!1,$("#ubuntuone-window .control .close").unbind("click"),$("#ubuntuone-window").hide(),i.systemMenu.closeWindow("uone"),t=!1)},this.isOpen=function(){return t},this.resize=function(){this.center()},this.center=function(){var e=$(document).width()/2-$("#ubuntuone-window ").width()/2,t=Math.max(24,$(document).height()/2-$("#ubuntuone-window ").height()/2);$("#ubuntuone-window ").css("left",e),$("#ubuntuone-window ").css("top",t)}}function File(e,t,i,s,n,o,r){if(void 0==s){var a=d.split("/");s=a[a.length-1].split(".")[0]}void 0==n&&(n="11.5MB"),void 0==o&&(o=(new Date).toString()),void 0==r&&(r="/Home"),void 0==i&&(i="photo");var l=e,d=t,c=i,m=s,h=n,u=o,p=r;this.url=function(){return d},this.name=function(){return m},this.size=function(){return h},this.date=function(){return u},this.location=function(){return p},this.id=function(){return l},this.type=function(){return c},this.setURL=function(e){d=e},this.setName=function(e){m=e},this.setSize=function(e){h=e},this.setDate=function(e){u=e},this.setLocation=function(e){p=e},this.setType=function(e){c=e},this.drawIcon=function(e,t){switch(c){case"photo":return"display-icon"==t?'<div class="file '+t+'" data-type="photo" data-id='+e+'><p class="border"><img src="'+d+'" width="53px" /></p><span>'+m+"</span></div>":'<div class="file '+t+'" data-type="photo" data-id='+e+"><p></p><span>"+m+"</span></div>";case"video":var i=d.split("/");return i=i[i.length-1].split(".")[0],"display-icon"==t?'<div class="file '+t+'" data-type="video" data-id='+e+'><p class="border"><img src="../img/videos/'+i+'.jpg" width="53px" /></p><span>'+m+"</span></div>":'<div class="file '+t+'" data-type="video" data-id='+e+"><p></p><span>"+m+"</span></div>";case"audio":return"display-icon"==t?'<div class="file '+t+'" data-type="audio" data-id='+e+'><p><img src="../img/folder/audio.png" /></p><span>'+m+"</span></div>":'<div class="file '+t+'" data-type="audio" data-id='+e+"><p></p><span>"+m+"</span></div>";default:return"display-icon"==t?'<div class="file '+t+'" data-type="unknown" data-id='+e+'><p><img src="../img/folder/unknown.png" /></p><span>'+m+"</span></div>":'<div class="file '+t+'" data-type="unknown" data-id='+e+"><p></p><span>"+m+"</span></div>"}}}function ShotwellSystem(e){var t=e,i=this,s=!1,n=!1,o=0,r=72,a=360,l=0,d=.3,c=0;this.init=function(){l=Math.floor($("#shotwell .container .images").width()/158),o=t.fileLibrary.length-2,this.setupControl()},this.setupControl=function(){$("#shotwell .control .close").click(function(){i.close()}),$("#shotwell .control .min").click(function(){i.min()}),$("#shotwell .control .max").click(function(){n?(n=!1,$("#shotwell").css("width","800px"),$("#shotwell").css("height","550px"),$("#shotwell ").removeClass("fullsize"),t.systemSettings.decreaseFullscreen()):(n=!0,$("#shotwell").css("width",$(document).width()-70+"px"),$("#shotwell").css("height",$(document).height()+"px"),$("#shotwell ").addClass("fullsize"),t.systemSettings.increaseFullscreen()),i.resize()}),$("#shotwell .nav ul").click(function(){$(this).addClass("selected"),$("#shotwell .container .images").removeClass("singleImage"),$("#shotwell .container .tools .jump-image").hide(),$("#shotwell .container .tools .slider-container").show(),$("#shotwell .sidebar .details .overall").show(),$("#shotwell .sidebar .details .single").hide(),i.display(),i.sliderUpdate(d)}),$("#shotwell .container .tools .jump-image .next").bind("click",function(){$(this).hasClass("disabled")||(c++,i.updateImageDetails(c),i.display(c),i.checkNextPrev())}),$("#shotwell .container .tools .jump-image .prev").bind("click",function(){$(this).hasClass("disabled")||(c--,i.updateImageDetails(c),i.display(c),i.checkNextPrev())}),$("#shotwell .container .tools .slider-container .slider").slider({min:0,max:100,step:1,value:30,slide:function(e,t){i.getSliderValueAndUpdate($(this))},change:function(e,t){i.getSliderValueAndUpdate($(this))}}),$("#shotwell .container .images").click(function(){$("#shotwell .nav ul").removeClass("selected"),$("#shotwell .container .images img").removeClass("selected"),$("#shotwell .sidebar .details .overall").show(),$("#shotwell .sidebar .details .single").hide()}),$("#shotwell .sidebar .details .single").hide(),$("#shotwell .container .tools .jump-image").hide(),this.display(),this.sliderUpdate(d,1),this.center()},this.getSliderValueAndUpdate=function(e){var t=e.slider("option","value")/100;i.sliderUpdate(t)},this.checkNextPrev=function(){$("#shotwell .container .tools .jump-image div").removeClass("disabled"),0>=c&&$("#shotwell .container .tools .jump-image .prev").addClass("disabled"),c>=o-1&&$("#shotwell .container .tools .jump-image .next").addClass("disabled")},this.sliderUpdate=function(e,t){var i=$("#shotwell .container .images").width()-15,s=$("#shotwell .container .tools .slider-container .slider .ui-slider-handle").position();void 0!=t&&(s="60.45px; "),$("#shotwell .container .tools .slider-container .slider-active").css("width",s.left);var n=Math.floor((a-r)*e+r)-5;$("#shotwell .container .images img").css("width",n),l=Math.min(o,Math.floor(i/n));var d=Math.floor(i/l);$("#shotwell .container .images div").css("width",d+"px")},this.display=function(e){var s="";if(void 0==e)for(var n=0;o>n;n++)"photo"==t.fileLibrary[n].type()&&(s+='<div><img src="'+t.fileLibrary[n].url()+'" alt="'+t.fileLibrary[n].name()+'" id="'+n+'" /></div>');else s+='<div class="large"><img src="'+t.fileLibrary[e].url()+'" alt="'+t.fileLibrary[e].name()+'" id="-1" /></div>';$("#shotwell .container .images").html(s),$("#shotwell .container .images img").click(function(e){e.stopPropagation(),$("#shotwell .container .images img").removeClass("selected"),$(this).addClass("selected"),$("#shotwell .sidebar .details .overall").hide(),$("#shotwell .sidebar .details .single").show(),$("#shotwell .sidebar .details .title").text(t.fileLibrary[$(this).attr("id")].name()),$("#shotwell .sidebar .details .date").text(t.fileLibrary[$(this).attr("id")].date()),$("#shotwell .sidebar .details .size").text(t.fileLibrary[$(this).attr("id")].size())}),$("#shotwell .container .images img").dblclick(function(){$("#shotwell .container .images").addClass("singleImage"),$("#shotwell .container .tools .jump-image").show(),$("#shotwell .container .tools .slider-container").hide(),c=$(this).attr("id"),i.display(c),i.checkNextPrev()}),this.resize()},this.showImageDetails=function(e){this.updateImageDetails(e),$("#shotwell .sidebar .details .overall").hide(),$("#shotwell .sidebar .details .single").show()},this.updateImageDetails=function(e){$("#shotwell .sidebar .details .title").text(t.fileLibrary[e].name()),$("#shotwell .sidebar .details .date").text(t.fileLibrary[e].date()),$("#shotwell .sidebar .details .size").text(t.fileLibrary[e].size())},this.selectImage=function(e){$("#shotwell .container .images").addClass("singleImage"),$("#shotwell .container .tools .jump-image").show(),$("#shotwell .container .tools .slider-container").hide(),c=e,this.showImageDetails(c),i.display(c),i.checkNextPrev(),$("#shotwell").show(),s=!0,this.resize(),t.systemMenu.openWindow("shotwell"),$("#shotwell").trigger("mousedown")},this.open=function(){this.resize(),this.center(),$("#shotwell").show(),s=!0,t.systemMenu.openWindow("shotwell"),$("css3-container").length>0&&($("#shotwell").prev().css("top",$("#shotwell").css("top")),$("#shotwell").prev().css("left",$("#shotwell").css("left")))},this.close=function(){s&&(t.openWindows.shotwell=!1,$("#shotwell .container .images").removeClass("singleImage"),$("#shotwell .container .tools .jump-image").hide(),$("#shotwell .container .tools .slider-container").show(),$("#shotwell .sidebar .details .overall").show(),$("#shotwell .sidebar .details .single").hide(),i.display(),i.sliderUpdate(d),n&&t.systemSettings.decreaseFullscreen(),$("#shotwell ").hide(),t.systemMenu.closeWindow("shotwell"),$("#shotwell ").removeClass("fullsize"),i.resize(),minified=s=!1,i.center())},this.min=function(){n&&t.systemSettings.decreaseFullscreen(),$("#shotwell ").hide(),t.systemMenu.wiggle("shotwell"),minified=!0},this.isMaximised=function(){return n},this.resize=function(){var e=$("#shotwell").width()-228;$("#shotwell .container").css("width",e);var t=$("#shotwell").height()-33;$("#shotwell .container").css("height",t),$("#shotwell .sidebar .nav").css("height",t-138),$("#shotwell .container .images").css("height",t-40)},this.center=function(){var e=$(document).width()/2-$("#shotwell").width()/2,t=Math.max(24,$(document).height()/2-$("#shotwell").height()/2);$("#shotwell").css("left",e),$("#shotwell").css("top",t)}}function ShutdownSystem(){var e=this;this.init=function(){$("#shutdown-window .control .close").bind("click",function(){e.close()}),$("#shutdown-window .content .shutdown-buttons div").bind("click",function(){var t=$(this).attr("class").replace(" highlight","");switch(t){case"shutdown":e.shutdownClicked();break;case"cancel":e.cancelClicked()}}),this.center()},this.cancelClicked=function(){this.close()},this.shutdownClicked=function(){window.location.href="http://www.ubuntu.com/ubuntu/take-the-tour"},this.open=function(){this.resize(),$("#shutdown-window").show(),$("#shutdown-window ").trigger("mousedown")},this.close=function(){$("#shutdown-window").hide(),this.center()},this.resize=function(){var e=$(document).width()/2-$("#shutdown-window").width()/2,t=$(document).height()/2-$("#shutdown-window").height()/2;$("#shutdown-window").css("left",e),$("#shutdown-window").css("top",t-100)},this.center=function(){var e=$(document).width()/2-$("#shutdown-window").width()/2,t=$(document).height()/2-$("#shutdown-window").height()/2;$("#shutdown-window").css("left",e),$("#shutdown-window").css("top",t-100)}}function MoviePlayerSystem(e){var t=e,i=this,s=!1,n=!1,o=!1;this.init=function(){this.setupControl()},this.setupControl=function(){$("#movieplayer .control .close").click(function(){i.close()}),$("#movieplayer .control .min").click(function(){i.min()}),$("#movieplayer .control .max").click(function(){n?(n=!1,$("#movieplayer").css("width","700px"),$("#movieplayer").css("height","497px"),$("#movieplayer").removeClass("fullsize"),t.systemSettings.decreaseFullscreen()):(n=!0,$("#movieplayer").css("width",$(document).width()-70+"px"),$("#movieplayer").css("height",$(document).height()+"px"),$("#movieplayer").addClass("fullsize"),t.systemSettings.increaseFullscreen()),i.resize()}),$("#movieplayer .container .tools .controlbuttons .left .play").click(function(){playClicked()})},this.addVideo=function(){var e='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" width="'+$("#movieplayer .container .video").width()+'" height="'+$("#movieplayer .container .video").height()+'" id="videoPlayer"><param name="movie" value="../videoplayer.swf" /> <param name="wmode" value="transparent" /> <param name="quality" value="high" /> <param name="bgcolor" value="#000000" /> <embed wmode="transparent" src="../videoplayer.swf" quality="high" bgcolor="#000000" width="'+$("#movieplayer .container .video").width()+'" height="'+$("#movieplayer .container .video").height()+'" name="videoPlayer" align="" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"> </embed></object>';$("#movieplayer .container .video").html(e)},this.removeVideo=function(){$("#movieplayer .container .video").html("")},this.open=function(e){s||(this.resize(),this.center(),$("#movieplayer").show()),$("#movieplayer").mousedown(),t.systemMenu.openWindow("movieplayer"),s=!0,$("css3-container").length>0&&($("#movieplayer").prev().css("top",$("#movieplayer").css("top")),$("#movieplayer").prev().css("left",$("#movieplayer").css("left")))},this.close=function(){t.openWindows.movieplayer=!1,n&&t.systemSettings.decreaseFullscreen(),$("#movieplayer ").hide(),t.systemMenu.closeWindow("movieplayer"),$("#movieplayer ").removeClass("fullsize"),i.resize(),o=s=!1,this.removeVideo(),i.center()},this.min=function(){n&&t.systemSettings.decreaseFullscreen(),$("#movieplayer ").hide(),t.systemMenu.wiggle("movieplayer"),o=!0,s=!1},this.isMaximised=function(){return n},this.resize=function(){var e=$("#movieplayer").width(),t=$("#movieplayer").height();$("#videoPlayer embed").attr("width",e),$("#videoPlayer").attr("width",e),$("#videoPlayer").attr("height",t),$("#videoPlayer embed").attr("height",t-27)},this.center=function(){var e=$(document).width()/2-$("#movieplayer").width()/2,t=Math.max(24,$(document).height()/2-$("#movieplayer").height()/2);$("#movieplayer").css("left",e),$("#movieplayer").css("top",t)}}function getFlashMovieObject(e){return window.document[e]?window.document[e]:-1!=navigator.appName.indexOf("Microsoft Internet")?document.getElementById(e):document.embeds&&document.embeds[e]?document.embeds[e]:void 0}function playClicked(){var e=getFlashMovieObject("videoPlayer");e.playClicked("fg")}function LibreSystem(e){var t=this,i=e;this.init=function(){$("#libreoffice-calc-window .control .close").bind("click",function(){t.close("calc")}),$("#libreoffice-writer-window .control .close").bind("click",function(){t.close("writer")}),$("#libreoffice-impress-window .control .close").bind("click",function(){t.close("impress")}),$("#libreoffice-calc-window .content").bind("click",function(){i.errorMessage.open()}),$("#libreoffice-writer-window .content").bind("click",function(){i.errorMessage.open()}),$("#libreoffice-impress-window .content").bind("click",function(){i.errorMessage.open()}),this.center("calc"),this.center("writer")},this.open=function(e){$("#libreoffice-"+e+"-window").show(),$("#libreoffice-"+e+"-window ").trigger("mousedown"),this.center(e),$("css3-container").length>0&&($("#libreoffice-"+e+"-window").prev().css("top",$("#libreoffice-"+e+"-window").css("top")),$("#libreoffice-"+e+"-window").prev().css("left",$("#libreoffice-"+e+"-window").css("left")))},this.close=function(e){$("#libreoffice-"+e+"-window").is(":visible")&&(i.openWindows["libreoffice-"+e+"-window"]=!1,$("#libreoffice-"+e+"-window").hide(),this.center(e),i.systemMenu.closeWindow(e))},this.center=function(e){var t=$(document).width()/2-$("#libreoffice-"+e+"-window").width()/2,i=Math.max(24,$(document).height()/2-$("#libreoffice-"+e+"-window").height()/2);$("#libreoffice-"+e+"-window").css("left",t),$("#libreoffice-"+e+"-window").css("top",i)}}function SoftwareSystem(e){var t=this,i=e,s=!1,n=!1,o=!1,r=null,a=new Array,l="",d="",c="",m="",h="",u="";this.init=function(){$("#software-centre .loading-bar").hide(),$("#software-centre .detailed .price .progress").css("width","0"),$("#software-centre .control .close").click(function(){t.close()}),$("#software-centre .control .min").click(function(){t.min()}),$("#software-centre .control .max").click(function(){n?(n=!1,$("#software-centre").css("width","800px"),$("#software-centre").css("height","550px"),$("#software-centre").removeClass("fullsize"),i.systemSettings.decreaseFullscreen()):(n=!0,$("#software-centre").css("width",$(document).width()-70+"px"),$("#software-centre").css("height",$(document).height()+"px"),$("#software-centre").addClass("fullsize"),i.systemSettings.increaseFullscreen()),t.resize()}),$("#software-centre .top-panel .back").bind("click",function(){$(this).hasClass("disabled")||($("#software-centre .home").show(),$("#software-centre .detailed").hide(),$(this).addClass("disabled"),$("#software-centre .top-panel .forward").removeClass("disabled"))}),$("#software-centre .top-panel .forward").bind("click",function(){$(this).hasClass("disabled")||(t.loadApp(),$(this).addClass("disabled"))}),$("#software-centre .whats-new .app-container div").click(function(){r=$(this).attr("class"),$("#software-centre .top-panel .forward").addClass("disabled"),t.loadApp()}),this.setupInstall(),this.setupTopButtons(),this.center()},this.loadApp=function(){var e=!1;switch($("#software-centre .top-panel .back").removeClass("disabled"),$("#software-centre .detailed .price .theprice").removeClass("installed"),$("#software-centre .detailed .price .button").text(_install_),1==a[r]&&t.installedApp(),r){case"chromium":l=_price_free_,d=_chromium_app_,c=_chromium_sub_,m="../img/software-centre/logo-chromium.png",h=_chromium_desc_,u="../img/software-centre/screenshot-chromium.jpg";break;case"beep":l="$9.99",d=_beep_app_,c=_beep_sub_,m="../img/software-centre/logo-beep.png",h=_beep_desc_,u="../img/software-centre/screenshot-beep.jpg";break;case"inkscape":l=_price_free_,d=_inkscape_app_,c=_inkscape_sub_,m="../img/software-centre/logo-inkscape.png",h=_inkscape_desc_,u="../img/software-centre/screenshot-inkscape.jpg";break;case"worldofgoo":l="$19.95",d=_world_of_goo_app_,c=_world_of_goo_sub_,m="../img/software-centre/logo-world-of-goo.png",h=_world_of_goo_desc_,u="../img/software-centre/screenshot-worldofgoo.jpg";break;case"blender":l=_price_free_,d=_blender_app_,c=_blender_sub_,m="../img/software-centre/logo-blender.png",h=_blender_desc_,u="../img/software-centre/screenshot-blender.jpg";break;case"braid":l="$9.99",d=_braid_app_,c=_braid_sub_,m="../img/software-centre/logo-braid.png",h=_braid_desc_,u="../img/software-centre/screenshot-braid.jpg";break;default:i.errorMessage.open(),e=!0}$("#software-centre .detailed .title h1").text(d),$("#software-centre .detailed .title p.subheading").text(c),$("#software-centre .detailed .title img.app-image").attr("src",m),$("#software-centre .detailed .description").html(h),$("#software-centre .detailed .description-image img").attr("src",u),$("#software-centre .detailed .price .theprice").hasClass(_installed_)?$("#software-centre .detailed .price .theprice").text(_installed_):$("#software-centre .detailed .price .theprice").text(l),e||($("#software-centre .home").hide(),$("#software-centre .detailed").show())},this.setupInstall=function(){$("#software-centre .detailed .price .button").bind("click",function(){1==a[r]?t.removeApp():($(this).hide(),$("#software-centre .loading-bar").show(),$("#software-centre .detailed .price .theprice").text(_installing_+"…"),$("#software-centre .loading-bar .progress").animate({width:150},1500,function(){t.installedApp(),$("#software-centre .loading-bar").hide(),$("#software-centre .detailed .price .button").show()}))})},this.removeApp=function(){$("#software-centre .detailed .price .theprice").text(l),$("#software-centre .detailed .price .theprice").removeClass("installed"),$("#software-centre .detailed .price .theprice").css("background-image","none"),$("#software-centre .detailed .price .button").text(_install_),i.systemOverlay.removeApps(d),a[r]=!1},this.installedApp=function(){$("#software-centre .detailed .price .theprice").text(_installed_),$("#software-centre .detailed .price .theprice").addClass("installed"),$("#software-centre .detailed .price .button").text(_remove_),$("#software-centre .detailed .price .progress").css("width","0"),i.systemOverlay.totalApps.push({name:d,image:m}),a[r]=!0},this.setupTopButtons=function(){$("#software-centre .all-software").bind("click",function(){$("#software-centre .home").show(),$("#software-centre .detailed").hide(),$("#software-centre .top-panel .back").addClass("disabled")})},this.close=function(){o&&($("#software-centre .home").show(),$("#software-centre .detailed").hide(),n&&i.systemSettings.decreaseFullscreen(),$("#software-centre ").hide(),i.systemMenu.closeWindow("software"),$("#software-centre ").removeClass("fullsize"),t.resize(),s=o=!1,t.center(),$("css3-container").length>0&&($("#software-centre").prev().css("top",$("#software-centre").css("top")),$("#software-centre").prev().css("left",$("#software-centre").css("left"))))},this.min=function(){n&&i.systemSettings.decreaseFullscreen(),$("#software-centre ").hide(),i.systemMenu.wiggle("software"),s=!0},this.resize=function(){var e=$("#software-centre").height()-($("#software-centre .top-panel").height()+$("#software-centre .control").height()+6),t=$("#software-centre").width()-($("#software-centre .navigation").width()+50);n&&(e-=27),$("#software-centre .container").css("height",e),$("#software-centre .container .whats-new").css("width",t)},this.center=function(){var e=$(document).width()/2-$("#software-centre ").width()/2,t=Math.max(24,$(document).height()/2-$("#software-centre ").height()/2);$("#software-centre ").css("left",e),$("#software-centre ").css("top",t)},this.isMaximised=function(){return n},this.open=function(e){void 0!=e&&(r=e,this.loadApp()),this.resize(),this.center(),$("#software-centre").show(),o=!0,i.systemMenu.openWindow("software"),$("css3-container").length>0&&($("#software-centre").prev().css("top",$("#software-centre").css("top")),$("#software-centre").prev().css("left",$("#software-centre").css("left")))}}function NotificationSystem(){var e,t,i,s;this.init=function(){e=this,t=!1,i=new Array,s=null},this.displayNotification=function(e,s,n){i.push({img:e,title:s,desc:n}),t||this.showNotification()},this.showNotification=function(){t=!0,$("body").append('<div class="notification"><img src="'+i[0].img+'"/><p class="title">'+i[0].title+'</p><p class="description">'+i[0].desc+"</p></div>"),$(".notification").bind("mouseover",function(){e.stopTimeout()}),$(".notification").bind("mouseout",function(){e.startTimeout()}),$(".notification").fadeTo(1e3,1,e.startTimeout)},this.startTimeout=function(){s=setTimeout(function(){$(".notification").fadeTo(1e3,0,e.killTimeout)},3e3)},this.killTimeout=function(){$(".notification").remove(),$(".notification").unbind("mouseover"),$(".notification").unbind("mouseout"),clearInterval(s),s=null,t=!1,e.runNext()},this.runNext=function(){i.splice(0,1),i.length>0&&this.showNotification()},this.stopTimeout=function(){clearInterval(s),s=null}}var hiddenTranslation=$("#Translation-Strings"),_email_1_title_=$.trim(hiddenTranslation.find("._email_1_title_").text()),_email_2_title_=$.trim(hiddenTranslation.find("._email_2_title_").text()),_email_3_title_=$.trim(hiddenTranslation.find("._email_3_title_").text()),_email_4_title_=$.trim(hiddenTranslation.find("._email_4_title_").text()),_email_5_title_=$.trim(hiddenTranslation.find("._email_5_title_").text()),_email_1_body_=$.trim(hiddenTranslation.find("._email_1_body_").text()),_email_2_body_=$.trim(hiddenTranslation.find("._email_2_body_").text()),_email_3_body_=$.trim(hiddenTranslation.find("._email_3_body_").text()),_email_4_body_=$.trim(hiddenTranslation.find("._email_4_body_").text()),_email_5_body_=$.trim(hiddenTranslation.find("._email_5_body_").text()),_random_reply_=$.trim(hiddenTranslation.find("._random_reply_").text()),_write_=$.trim(hiddenTranslation.find("._write_").text()),_no_subject_=$.trim(hiddenTranslation.find("._no_subject_").text()),_recipient_=$.trim(hiddenTranslation.find("._recipient_").text()),_from_=$.trim(hiddenTranslation.find("._from_").text()),_you_=$.trim(hiddenTranslation.find("._you_").text()),_on_=$.trim(hiddenTranslation.find("._on_").text()),_wrote_=$.trim(hiddenTranslation.find("._wrote_").text()),_original_message_=$.trim(hiddenTranslation.find("._original_message_").text()),_fwd_=$.trim(hiddenTranslation.find("._fwd_").text()),_home_folder_=$.trim(hiddenTranslation.find("._home_folder_").text()),_desktop_folder_=$.trim(hiddenTranslation.find("._desktop_folder_").text()),_pictures_folder_=$.trim(hiddenTranslation.find("._pictures_folder_").text()),_videos_folder_=$.trim(hiddenTranslation.find("._videos_folder_").text()),_music_folder_=$.trim(hiddenTranslation.find("._music_folder_").text()),_downloads_folder_=$.trim(hiddenTranslation.find("._downloads_folder_").text()),_documents_folder_=$.trim(hiddenTranslation.find("._documents_folder_").text()),_canonical_folder_=$.trim(hiddenTranslation.find("._canonical_folder_").text()),_backup_folder_=$.trim(hiddenTranslation.find("._backup_folder_").text()),_local_folder_=$.trim(hiddenTranslation.find("._local_folder_").text()),_work_folder_=$.trim(hiddenTranslation.find("._work_folder_").text()),_branches_folder_=$.trim(hiddenTranslation.find("._branches_folder_").text()),_rubbish_bin_folder_=$.trim(hiddenTranslation.find("._rubbish_bin_folder_").text()),_string_selected_=$.trim(hiddenTranslation.find("._string_selected_").text()),_string_containing_=$.trim(hiddenTranslation.find("._string_containing_").text()),_string_items_=$.trim(hiddenTranslation.find("._string_items_").text()),_remove_=$.trim(hiddenTranslation.find("._remove_").text()),_price_free_=$.trim(hiddenTranslation.find("._price_free_").text()),_installed_=$.trim(hiddenTranslation.find("._installed_").text()),_install_=$.trim(hiddenTranslation.find("._install_").text()),_installing_=$.trim(hiddenTranslation.find("._installing_").text()),_chromium_app_=$.trim(hiddenTranslation.find("._chromium_app_").text()),_chromium_sub_=$.trim(hiddenTranslation.find("._chromium_sub_").text()),_chromium_desc_=$.trim(hiddenTranslation.find("._chromium_desc_").text()),_beep_app_=$.trim(hiddenTranslation.find("._beep_app_").text()),_beep_sub_=$.trim(hiddenTranslation.find("._beep_sub_").text()),_beep_desc_=$.trim(hiddenTranslation.find("._beep_desc_").text()),_inkscape_app_=$.trim(hiddenTranslation.find("._inkscape_app_").text()),_inkscape_sub_=$.trim(hiddenTranslation.find("._inkscape_sub_").text()),_inkscape_desc_=$.trim(hiddenTranslation.find("._inkscape_desc_").text()),_world_of_goo_app_=$.trim(hiddenTranslation.find("._world_of_goo_app_").text()),_world_of_goo_sub_=$.trim(hiddenTranslation.find("._world_of_goo_sub_").text()),_world_of_goo_desc_=$.trim(hiddenTranslation.find("._world_of_goo_desc_").text()),_blender_app_=$.trim(hiddenTranslation.find("._blender_app_").text()),_blender_sub_=$.trim(hiddenTranslation.find("._blender_sub_").text()),_blender_desc_=$.trim(hiddenTranslation.find("._blender_desc_").text()),_braid_app_=$.trim(hiddenTranslation.find("._braid_app_").text()),_braid_sub_=$.trim(hiddenTranslation.find("._braid_sub_").text()),_braid_desc_=$.trim(hiddenTranslation.find("._braid_desc_").text()),_rhythmbox_app_=$.trim(hiddenTranslation.find("._rhythmbox_app_").text()),_brasero_app_=$.trim(hiddenTranslation.find("._brasero_app_").text()),_movie_player_app_=$.trim(hiddenTranslation.find("._movie_player_app_").text()),_shotwell_app_=$.trim(hiddenTranslation.find("._shotwell_app_").text()),_pitivi_app_=$.trim(hiddenTranslation.find("._pitivi_app_").text()),_sound_recorder_app_=$.trim(hiddenTranslation.find("._sound_recorder_app_").text()),_empathy_app_=$.trim(hiddenTranslation.find("._empathy_app_").text()),_thunderbird_app_=$.trim(hiddenTranslation.find("._thunderbird_app_").text()),_ubuntu_one_app_=$.trim(hiddenTranslation.find("._ubuntu_one_app_").text()),_firefox_app_=$.trim(hiddenTranslation.find("._firefox_app_").text()),_gwibber_app_=$.trim(hiddenTranslation.find("._gwibber_app_").text()),_remote_desktop_app_=$.trim(hiddenTranslation.find("._remote_desktop_app_").text()),_terminal_app_=$.trim(hiddenTranslation.find("._terminal_app_").text()),_about_me_app_=$.trim(hiddenTranslation.find("._about_me_app_").text()),_additional_drivers_app_=$.trim(hiddenTranslation.find("._additional_drivers_app_").text()),_aisleroit_app_=$.trim(hiddenTranslation.find("._aisleroit_app_").text()),_appearance_app_=$.trim(hiddenTranslation.find("._appearance_app_").text()),_bluetooth_app_=$.trim(hiddenTranslation.find("._bluetooth_app_").text()),_ubuntu_software_center_app_=$.trim(hiddenTranslation.find("._ubuntu_software_center_app_").text()),_ubuntu_one_music_app_=$.trim(hiddenTranslation.find("._ubuntu_one_music_app_").text()),_amazon_app_=$.trim(hiddenTranslation.find("._amazon_app_").text()),_search_=$.trim(hiddenTranslation.find("._search_").text()),_turn_off_bluetooth_=$.trim(hiddenTranslation.find("._turn_off_bluetooth_").text()),_turn_on_bluetooth_=$.trim(hiddenTranslation.find("._turn_on_bluetooth_").text()),_visible_=$.trim(hiddenTranslation.find("._visible_").text()),_mute_=$.trim(hiddenTranslation.find("._mute_").text()),_unmute_=$.trim(hiddenTranslation.find("._unmute_").text()),_shut_down_=$.trim(hiddenTranslation.find("._shut_down_").text()),_photo_size_=$.trim(hiddenTranslation.find("._photo_size_").text()),_photo_date_=$.trim(hiddenTranslation.find("._photo_date_").text()),_buck_off_title_=$.trim(hiddenTranslation.find("._buck_off_title_").text()),_darkening_clockwork_title_=$.trim(hiddenTranslation.find("._darkening_clockwork_title_").text()),_darkening_clockwork_size_=$.trim(hiddenTranslation.find("._darkening_clockwork_size_").text()),_dybbølsbro_station_title_=$.trim(hiddenTranslation.find("._dybbølsbro_station_title_").text()),_federica_miglio_title_=$.trim(hiddenTranslation.find("._federica_miglio_title_").text()),_jardin_polar_title_=$.trim(hiddenTranslation.find("._jardin_polar_title_").text()),_langelinie_alle_title_=$.trim(hiddenTranslation.find("._langelinie_alle_title_").text()),_momiji_dream_title_=$.trim(hiddenTranslation.find("._momiji_dream_title_").text()),_mount_snowdon_title_=$.trim(hiddenTranslation.find("._mount_snowdon_title_").text()),_not_alone_title_=$.trim(hiddenTranslation.find("._not_alone_title_").text()),_power_of_words_title_=$.trim(hiddenTranslation.find("._power_of_words_title_").text()),_purple_dancers_title_=$.trim(hiddenTranslation.find("._purple_dancers_title_").text()),_sand_maze_title_=$.trim(hiddenTranslation.find("._sand_maze_title_").text()),_small_flowers_title_=$.trim(hiddenTranslation.find("._small_flowers_title_").text()),_stalking_ocelot_title_=$.trim(hiddenTranslation.find("._stalking_ocelot_title_").text()),_the_grass_aint_greener_title_=$.trim(hiddenTranslation.find("._the_grass_aint_greener_title_").text()),_wildWheat_title_=$.trim(hiddenTranslation.find("._wildWheat_title_").text()),_introduction_ubuntu_title_=$.trim(hiddenTranslation.find("._introduction_ubuntu_title_").text()),_video_size_=$.trim(hiddenTranslation.find("._video_size_").text()),_video_date_=$.trim(hiddenTranslation.find("._video_date_").text()),_Happiness_title_=$.trim(hiddenTranslation.find("._Happiness_title_").text()),_music_size_=$.trim(hiddenTranslation.find("._music_size_").text()),_music_date_=$.trim(hiddenTranslation.find("._music_date_").text()),_download_cta_=$.trim(hiddenTranslation.find("._download_cta_").text()),_this=this,movingFolder=null,folderXOffset=0,folderYOffset=0,fileSystem=null,systemOverlay=null,systemMenu=null,firefoxSystem=null,emailSystem=null,ubuntuOneSystem=null,systemSettings=null,errorMessage=null,shutdownSystem=null,libreSystem=null,currentSystemSelected=null,currentSelectedFullscreen=!1,shotwellSystem=null,welcomeSystem=null,moviePlayerSystem=null,guidedTourSystem=null,notificationSystem=null,softwareSystem=null,fileLibrary=new Array,openWindows=new Array;
4268+$(document).ready(function(){$.browser.msie&&"8.0"!=$.browser.version&&"9.0"!=$.browser.version?window.location.href="/ubuntu/take-the-tour-gallery":setup()});var scrollingTimer=null,_gaq=_gaq||[];if(_gaq.push(["_setAccount","UA-1018242-4"]),_gaq.push(["_trackPageview"]),-1!=window.location.pathname.indexOf("search/google-appliance")){var qs=window.location.pathname.substring(25);pageTracker._trackPageview("/site_search?query="+qs)}!function(){var e=document.createElement("script");e.type="text/javascript",e.async=!0,e.src=("https:"==document.location.protocol?"https://ssl":"http://www")+".google-analytics.com/ga.js";var t=document.getElementsByTagName("script")[0];t.parentNode.insertBefore(e,t)}();
4269\ No newline at end of file
4270
4271=== added file 'package.json'
4272--- package.json 1970-01-01 00:00:00 +0000
4273+++ package.json 2016-01-12 12:40:40 +0000
4274@@ -0,0 +1,21 @@
4275+{
4276+ "name": "ubuntu-online-tour",
4277+ "version": "1.0.0",
4278+ "description": "An online tour guiding the user through the main features of Ubuntu.",
4279+ "main": "en/index.html",
4280+ "scripts": {
4281+ "test": "echo \"Error: no test specified\" && exit 1"
4282+ },
4283+ "author": "",
4284+ "license": "ISC",
4285+ "devDependencies": {
4286+ "gulp": "^3.9.0",
4287+ "gulp-concat": "^2.6.0",
4288+ "gulp-htmlmin": "^1.3.0",
4289+ "gulp-imagemin": "^2.4.0",
4290+ "gulp-minify-css": "^1.2.3",
4291+ "gulp-rename": "^1.2.2",
4292+ "gulp-uglify": "^1.5.1",
4293+ "imagemin-pngquant": "^4.2.0"
4294+ }
4295+}

Subscribers

People subscribed via source and target branches