Merge lp:~dobey/ubuntuone-installer/le-appertif into lp:ubuntuone-installer

Proposed by dobey
Status: Merged
Approved by: dobey
Approved revision: 4
Merged at revision: 8
Proposed branch: lp:~dobey/ubuntuone-installer/le-appertif
Merge into: lp:ubuntuone-installer
Diff against target: 43 lines (+18/-4)
1 file modified
ubuntuone/installer/gui.py (+18/-4)
To merge this branch: bzr merge lp:~dobey/ubuntuone-installer/le-appertif
Reviewer Review Type Date Requested Status
Roberto Alsina (community) Approve
Review via email: mp+70499@code.launchpad.net

Commit message

Add some textual content to the installer

To post a comment you must log in.
Revision history for this message
Roberto Alsina (ralsina) wrote :

+1

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'ubuntuone/installer/gui.py'
2--- ubuntuone/installer/gui.py 2011-08-03 16:55:35 +0000
3+++ ubuntuone/installer/gui.py 2011-08-04 22:08:36 +0000
4@@ -138,10 +138,18 @@
5 def __construct_info_page(self):
6 """Build the initial info page."""
7 page = Gtk.VBox()
8- page.set_border_width(12)
9+ page.set_border_width(24)
10 page.show()
11
12- label = Gtk.Label('')
13+ label = Gtk.Label(
14+ u'<big><b>{}</b></big>\n\n {}\n {}\n {}'.format(
15+ u'The personal cloud that brings your digital life together',
16+ u'• Synchronize files across devices\n',
17+ u'• Access files from anywhere\n',
18+ (u'• Add Music Streaming for unlimited'
19+ u' music on the go')))
20+ label.set_use_markup(True)
21+ label.set_alignment(0.0, 0.0)
22 page.add(label)
23 label.show()
24
25@@ -150,10 +158,16 @@
26 def __construct_progress_page(self):
27 """Build the install progress page."""
28 page = Gtk.VBox()
29- page.set_border_width(12)
30+ page.set_border_width(24)
31+ page.set_spacing(6)
32 page.show()
33
34- page.pack_start(self.__apt_progress, True, False, 0)
35+ label = Gtk.Label(u'Ubuntu One is installing…')
36+ label.set_alignment(0.0, 0.0)
37+ page.pack_start(label, False, True, 0)
38+ label.show()
39+
40+ page.pack_start(self.__apt_progress, False, True, 0)
41 self.__apt_progress.show()
42
43 return page

Subscribers

People subscribed via source and target branches

to all changes: