Merge lp:~jml/launchpad/code-to-branches into lp:launchpad/db-devel

Proposed by Jonathan Lange
Status: Merged
Merged at revision: not available
Proposed branch: lp:~jml/launchpad/code-to-branches
Merge into: lp:launchpad/db-devel
Diff against target: 669 lines
35 files modified
lib/canonical/launchpad/browser/launchpad.py (+1/-1)
lib/canonical/launchpad/browser/personproduct.py (+1/-1)
lib/canonical/launchpad/pagetests/launchpad-root/front-pages.txt (+2/-2)
lib/canonical/launchpad/pagetests/packaging/xx-sourcepackage-packaging.txt (+1/-1)
lib/canonical/launchpad/pagetitles.py (+1/-1)
lib/canonical/launchpad/webapp/__init__.py (+1/-1)
lib/lp/bugs/pagetests/cve/cve-pages.txt (+3/-3)
lib/lp/bugs/stories/bug-release-management/nomination-navigation.txt (+1/-1)
lib/lp/bugs/stories/bugs/xx-bug-activity.txt (+1/-1)
lib/lp/bugs/stories/bugs/xx-bug-index.txt (+1/-1)
lib/lp/bugs/stories/bugs/xx-malone-homepage.txt (+1/-1)
lib/lp/bugs/stories/bugtracker/bugtrackers-index.txt (+1/-1)
lib/lp/bugs/stories/bugtracker/xx-bugtracker-remote-bug.txt (+2/-2)
lib/lp/code/stories/branches/xx-branch-index.txt (+2/-2)
lib/lp/code/stories/branches/xx-distribution-branches.txt (+1/-1)
lib/lp/code/stories/branches/xx-distroseries-branches.txt (+1/-1)
lib/lp/code/stories/branches/xx-project-branches.txt (+1/-1)
lib/lp/registry/browser/distribution.py (+1/-1)
lib/lp/registry/browser/person.py (+1/-1)
lib/lp/registry/browser/product.py (+1/-1)
lib/lp/registry/browser/productseries.py (+1/-1)
lib/lp/registry/browser/project.py (+1/-1)
lib/lp/registry/stories/distribution/xx-distribution-packages.txt (+3/-3)
lib/lp/registry/stories/milestone/object-milestones.txt (+2/-2)
lib/lp/registry/stories/product/xx-product-launchpad-usage.txt (+3/-3)
lib/lp/registry/stories/team-polls/create-polls.txt (+1/-1)
lib/lp/soyuz/stories/packaging/package-pages-navigation.txt (+10/-10)
lib/lp/soyuz/stories/ppa/xx-ppa-navigation.txt (+3/-3)
lib/lp/soyuz/stories/ppa/xx-ppa-packages.txt (+1/-1)
lib/lp/soyuz/stories/ppa/xx-ubuntu-ppas.txt (+1/-1)
lib/lp/soyuz/stories/soyuz/xx-distributionsourcepackagerelease-pages.txt (+1/-1)
lib/lp/soyuz/stories/soyuz/xx-sourcepackage-changelog.txt (+1/-1)
lib/lp/translations/stories/navigation-links/pofile.txt (+2/-2)
lib/lp/translations/stories/navigation-links/pomsgset.txt (+2/-2)
lib/lp/translations/stories/navigation-links/potemplate.txt (+2/-2)
To merge this branch: bzr merge lp:~jml/launchpad/code-to-branches
Reviewer Review Type Date Requested Status
Brad Crittenden (community) release-critical Approve
Michael Nelson (community) code Approve
Martin Albisetti (community) ui Approve
Review via email: mp+12288@code.launchpad.net

Commit message

Change 'Code' tab to 'Branches'.

To post a comment you must log in.
Revision history for this message
Jonathan Lange (jml) wrote :

This branch changes the "Code" tab to be a "Branches" tab. It also changes the "launchpad usage" text to say, "Uses Launchpad for Answers and Branches".

None of the changes are very surprising, I think.

Revision history for this message
Martin Albisetti (beuno) wrote :

Thank you kind sir.

review: Approve (ui)
Revision history for this message
Jonathan Lange (jml) wrote :

... and all the tests pass.

Revision history for this message
Michael Nelson (michael.nelson) wrote :

> This branch changes the "Code" tab to be a "Branches" tab. It also changes the
> "launchpad usage" text to say, "Uses Launchpad for Answers and Branches".
>
> None of the changes are very surprising, I think.

Hi Jonathan,

Thanks for getting this done!

I think the main issue is conflicts with other RC-mp's... for example,
my own one at:

https://code.edge.launchpad.net/~michael.nelson/launchpad/sprint-index-should-hide-heading-db-devel/+merge/12284

adds a print_location call to a test. What's the best way to solve it?
I can obviously update my branch to expect 'Branches' and pre-empt the
failure - but I'd need to be sure that yours is landing at the same time...
or perhaps you merge any other of the branches on the CRB that use
print_location (maybe mine's the only one).

Anyway, I'll update CRB so that this is obvious.

--
Michael

review: Approve (code)
Revision history for this message
Michael Nelson (michael.nelson) wrote :

> adds a print_location call to a test. What's the best way to solve it?
> I can obviously update my branch to expect 'Branches' and pre-empt the
> failure - but I'd need to be sure that yours is landing at the same time...
> or perhaps you merge any other of the branches on the CRB that use
> print_location (maybe mine's the only one).

Actually, I'll just update my branch to use ... within the print_location.

> Anyway, I'll update CRB so that this is obvious.
>
> --
> Michael

Revision history for this message
Michael Nelson (michael.nelson) wrote :

>
> Actually, I'll just update my branch to use ... within the print_location.
>
Done.

Just watch out - I'm not sure with which version of db-devel you ran ec2test, but it might be worth checking for any other occurrences of print_location that are in diffs since that rev?

Revision history for this message
Brad Crittenden (bac) :
review: Approve (release-critical)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'lib/canonical/launchpad/browser/launchpad.py'
--- lib/canonical/launchpad/browser/launchpad.py 2009-09-22 04:42:31 +0000
+++ lib/canonical/launchpad/browser/launchpad.py 2009-09-24 17:43:12 +0000
@@ -399,7 +399,7 @@
399399
400 def branches(self):400 def branches(self):
401 target = ''401 target = ''
402 text = 'Code'402 text = 'Branches'
403 summary = 'The Code Bazaar'403 summary = 'The Code Bazaar'
404 return Link(target, text, summary)404 return Link(target, text, summary)
405405
406406
=== modified file 'lib/canonical/launchpad/browser/personproduct.py'
--- lib/canonical/launchpad/browser/personproduct.py 2009-08-24 17:47:34 +0000
+++ lib/canonical/launchpad/browser/personproduct.py 2009-09-24 17:43:12 +0000
@@ -59,7 +59,7 @@
59 enable_only = ['branches']59 enable_only = ['branches']
6060
61 def branches(self):61 def branches(self):
62 text = 'Code'62 text = 'Branches'
63 summary = ('Bazaar Branches of %s owned by %s' %63 summary = ('Bazaar Branches of %s owned by %s' %
64 (self.context.product.displayname,64 (self.context.product.displayname,
65 self.context.person.displayname))65 self.context.person.displayname))
6666
=== modified file 'lib/canonical/launchpad/pagetests/launchpad-root/front-pages.txt'
--- lib/canonical/launchpad/pagetests/launchpad-root/front-pages.txt 2009-09-18 23:46:11 +0000
+++ lib/canonical/launchpad/pagetests/launchpad-root/front-pages.txt 2009-09-24 17:43:12 +0000
@@ -57,7 +57,7 @@
57 >>> anon_browser.open('http://code.launchpad.dev/')57 >>> anon_browser.open('http://code.launchpad.dev/')
58 >>> print_location_apps(anon_browser.contents)58 >>> print_location_apps(anon_browser.contents)
59 * Launchpad Home - http://launchpad.dev/59 * Launchpad Home - http://launchpad.dev/
60 * Code (selected) - http://code.launchpad.dev/60 * Branches (selected) - http://code.launchpad.dev/
61 * Bugs - http://bugs.launchpad.dev/61 * Bugs - http://bugs.launchpad.dev/
62 * Blueprints - http://blueprints.launchpad.dev/62 * Blueprints - http://blueprints.launchpad.dev/
63 * Translations - http://translations.launchpad.dev/63 * Translations - http://translations.launchpad.dev/
@@ -66,7 +66,7 @@
66 >>> user_browser.open('http://answers.launchpad.dev/')66 >>> user_browser.open('http://answers.launchpad.dev/')
67 >>> print_location_apps(user_browser.contents)67 >>> print_location_apps(user_browser.contents)
68 * Launchpad Home - http://launchpad.dev/68 * Launchpad Home - http://launchpad.dev/
69 * Code - http://code.launchpad.dev/69 * Branches - http://code.launchpad.dev/
70 * Bugs - http://bugs.launchpad.dev/70 * Bugs - http://bugs.launchpad.dev/
71 * Blueprints - http://blueprints.launchpad.dev/71 * Blueprints - http://blueprints.launchpad.dev/
72 * Translations - http://translations.launchpad.dev/72 * Translations - http://translations.launchpad.dev/
7373
=== modified file 'lib/canonical/launchpad/pagetests/packaging/xx-sourcepackage-packaging.txt'
--- lib/canonical/launchpad/pagetests/packaging/xx-sourcepackage-packaging.txt 2009-09-22 13:10:45 +0000
+++ lib/canonical/launchpad/pagetests/packaging/xx-sourcepackage-packaging.txt 2009-09-24 17:43:11 +0000
@@ -10,7 +10,7 @@
10 Hierarchy: Ubuntu > 4.10 > ...mozilla... source package > Upstream links10 Hierarchy: Ubuntu > 4.10 > ...mozilla... source package > Upstream links
11 Tabs:11 Tabs:
12 * Overview (selected) - http://launchpad.dev/ubuntu/warty/+source/mozilla12 * Overview (selected) - http://launchpad.dev/ubuntu/warty/+source/mozilla
13 * Code - http://code.launchpad.dev/ubuntu/warty/+source/mozilla13 * Branches - http://code.launchpad.dev/ubuntu/warty/+source/mozilla
14 * Bugs - http://bugs.launchpad.dev/ubuntu/warty/+source/mozilla14 * Bugs - http://bugs.launchpad.dev/ubuntu/warty/+source/mozilla
15 * Blueprints - not linked15 * Blueprints - not linked
16 * Translations - http://translations.launchpad.dev/ubuntu/warty/+source/mozilla16 * Translations - http://translations.launchpad.dev/ubuntu/warty/+source/mozilla
1717
=== modified file 'lib/canonical/launchpad/pagetitles.py'
--- lib/canonical/launchpad/pagetitles.py 2009-09-23 03:36:55 +0000
+++ lib/canonical/launchpad/pagetitles.py 2009-09-24 17:43:11 +0000
@@ -134,7 +134,7 @@
134134
135bazaar_all_branches = 'All branches in the Launchpad Bazaar'135bazaar_all_branches = 'All branches in the Launchpad Bazaar'
136136
137bazaar_index = 'Launchpad Code'137bazaar_index = 'Launchpad Branches'
138138
139bazaar_sync_review = (139bazaar_sync_review = (
140 'Review upstream repositories for Launchpad Bazaar syncing')140 'Review upstream repositories for Launchpad Bazaar syncing')
141141
=== modified file 'lib/canonical/launchpad/webapp/__init__.py'
--- lib/canonical/launchpad/webapp/__init__.py 2009-08-27 07:05:16 +0000
+++ lib/canonical/launchpad/webapp/__init__.py 2009-09-24 17:43:12 +0000
@@ -124,6 +124,6 @@
124 def branches(self):124 def branches(self):
125 # this is disabled by default, because relatively few objects have125 # this is disabled by default, because relatively few objects have
126 # branch views126 # branch views
127 text = 'Code'127 text = 'Branches'
128 summary = 'View related branches of code'128 summary = 'View related branches of code'
129 return Link('', text, summary=summary)129 return Link('', text, summary=summary)
130130
=== modified file 'lib/lp/bugs/pagetests/cve/cve-pages.txt'
--- lib/lp/bugs/pagetests/cve/cve-pages.txt 2009-06-12 16:36:02 +0000
+++ lib/lp/bugs/pagetests/cve/cve-pages.txt 2009-09-24 17:43:12 +0000
@@ -21,7 +21,7 @@
21 Hierarchy: Launchpad21 Hierarchy: Launchpad
22 Tabs:22 Tabs:
23 * Launchpad Home - http://launchpad.dev/23 * Launchpad Home - http://launchpad.dev/
24 * Code - http://code.launchpad.dev/24 * Branches - http://code.launchpad.dev/
25 * Bugs (selected) - http://bugs.launchpad.dev/25 * Bugs (selected) - http://bugs.launchpad.dev/
26 * Blueprints - http://blueprints.launchpad.dev/26 * Blueprints - http://blueprints.launchpad.dev/
27 * Translations - http://translations.launchpad.dev/27 * Translations - http://translations.launchpad.dev/
@@ -41,7 +41,7 @@
41 Hierarchy: Launchpad41 Hierarchy: Launchpad
42 Tabs:42 Tabs:
43 * Launchpad Home - http://launchpad.dev/43 * Launchpad Home - http://launchpad.dev/
44 * Code - http://code.launchpad.dev/44 * Branches - http://code.launchpad.dev/
45 * Bugs (selected) - http://bugs.launchpad.dev/45 * Bugs (selected) - http://bugs.launchpad.dev/
46 * Blueprints - http://blueprints.launchpad.dev/46 * Blueprints - http://blueprints.launchpad.dev/
47 * Translations - http://translations.launchpad.dev/47 * Translations - http://translations.launchpad.dev/
@@ -86,7 +86,7 @@
86 Hierarchy: Launchpad86 Hierarchy: Launchpad
87 Tabs:87 Tabs:
88 * Launchpad Home - http://launchpad.dev/88 * Launchpad Home - http://launchpad.dev/
89 * Code - http://code.launchpad.dev/89 * Branches - http://code.launchpad.dev/
90 * Bugs (selected) - http://bugs.launchpad.dev/90 * Bugs (selected) - http://bugs.launchpad.dev/
91 * Blueprints - http://blueprints.launchpad.dev/91 * Blueprints - http://blueprints.launchpad.dev/
92 * Translations - http://translations.launchpad.dev/92 * Translations - http://translations.launchpad.dev/
9393
=== modified file 'lib/lp/bugs/stories/bug-release-management/nomination-navigation.txt'
--- lib/lp/bugs/stories/bug-release-management/nomination-navigation.txt 2009-09-23 14:40:53 +0000
+++ lib/lp/bugs/stories/bug-release-management/nomination-navigation.txt 2009-09-24 17:43:12 +0000
@@ -14,7 +14,7 @@
14 Hierarchy: Ubuntu > ?mozilla-firefox? package > Bugs > Bug #1...14 Hierarchy: Ubuntu > ?mozilla-firefox? package > Bugs > Bug #1...
15 Tabs:15 Tabs:
16 * Overview - http://launchpad.dev/ubuntu/+source/mozilla-firefox16 * Overview - http://launchpad.dev/ubuntu/+source/mozilla-firefox
17 * Code - http://code.launchpad.dev/ubuntu/+source/mozilla-firefox17 * Branches - http://code.launchpad.dev/ubuntu/+source/mozilla-firefox
18 * Bugs (selected) - http://bugs.launchpad.dev/ubuntu/+source/mozilla-firefox18 * Bugs (selected) - http://bugs.launchpad.dev/ubuntu/+source/mozilla-firefox
19 * Blueprints - not linked19 * Blueprints - not linked
20 * Translations - not linked20 * Translations - not linked
2121
=== modified file 'lib/lp/bugs/stories/bugs/xx-bug-activity.txt'
--- lib/lp/bugs/stories/bugs/xx-bug-activity.txt 2009-09-23 14:40:53 +0000
+++ lib/lp/bugs/stories/bugs/xx-bug-activity.txt 2009-09-24 17:43:12 +0000
@@ -14,7 +14,7 @@
14 Hierarchy: Debian > ?mozilla-firefox? package > Bugs > Bug #3...14 Hierarchy: Debian > ?mozilla-firefox? package > Bugs > Bug #3...
15 Tabs:15 Tabs:
16 * Overview - http://launchpad.dev/debian/+source/mozilla-firefox16 * Overview - http://launchpad.dev/debian/+source/mozilla-firefox
17 * Code - http://code.launchpad.dev/debian/+source/mozilla-firefox17 * Branches - http://code.launchpad.dev/debian/+source/mozilla-firefox
18 * Bugs (selected) - http://bugs.launchpad.dev/debian/+source/mozilla-firefox18 * Bugs (selected) - http://bugs.launchpad.dev/debian/+source/mozilla-firefox
19 * Blueprints - not linked19 * Blueprints - not linked
20 * Translations - not linked20 * Translations - not linked
2121
=== modified file 'lib/lp/bugs/stories/bugs/xx-bug-index.txt'
--- lib/lp/bugs/stories/bugs/xx-bug-index.txt 2009-09-20 17:17:35 +0000
+++ lib/lp/bugs/stories/bugs/xx-bug-index.txt 2009-09-24 17:43:12 +0000
@@ -16,7 +16,7 @@
16 Hierarchy: Debian > ?mozilla-firefox? package > Bug #2 (blackhole)16 Hierarchy: Debian > ?mozilla-firefox? package > Bug #2 (blackhole)
17 Tabs:17 Tabs:
18 * Overview - http://launchpad.dev/debian/+source/mozilla-firefox18 * Overview - http://launchpad.dev/debian/+source/mozilla-firefox
19 * Code - http://code.launchpad.dev/debian/+source/mozilla-firefox19 * Branches - http://code.launchpad.dev/debian/+source/mozilla-firefox
20 * Bugs (selected) - http://bugs.launchpad.dev/debian/+source/mozilla-firefox20 * Bugs (selected) - http://bugs.launchpad.dev/debian/+source/mozilla-firefox
21 * Blueprints - not linked21 * Blueprints - not linked
22 * Translations - not linked22 * Translations - not linked
2323
=== modified file 'lib/lp/bugs/stories/bugs/xx-malone-homepage.txt'
--- lib/lp/bugs/stories/bugs/xx-malone-homepage.txt 2009-09-04 15:06:34 +0000
+++ lib/lp/bugs/stories/bugs/xx-malone-homepage.txt 2009-09-24 17:43:12 +0000
@@ -8,7 +8,7 @@
8 Hierarchy: None displayed8 Hierarchy: None displayed
9 Tabs:9 Tabs:
10 * Launchpad Home - http://launchpad.dev/10 * Launchpad Home - http://launchpad.dev/
11 * Code - http://code.launchpad.dev/11 * Branches - http://code.launchpad.dev/
12 * Bugs (selected) - http://bugs.launchpad.dev/12 * Bugs (selected) - http://bugs.launchpad.dev/
13 * Blueprints - http://blueprints.launchpad.dev/13 * Blueprints - http://blueprints.launchpad.dev/
14 * Translations - http://translations.launchpad.dev/14 * Translations - http://translations.launchpad.dev/
1515
=== modified file 'lib/lp/bugs/stories/bugtracker/bugtrackers-index.txt'
--- lib/lp/bugs/stories/bugtracker/bugtrackers-index.txt 2009-09-01 16:24:52 +0000
+++ lib/lp/bugs/stories/bugtracker/bugtrackers-index.txt 2009-09-24 17:43:12 +0000
@@ -8,7 +8,7 @@
8 Hierarchy: None displayed8 Hierarchy: None displayed
9 Tabs:9 Tabs:
10 * Launchpad Home - http://launchpad.dev/10 * Launchpad Home - http://launchpad.dev/
11 * Code - http://code.launchpad.dev/11 * Branches - http://code.launchpad.dev/
12 * Bugs (selected) - http://bugs.launchpad.dev/12 * Bugs (selected) - http://bugs.launchpad.dev/
13 * Blueprints - http://blueprints.launchpad.dev/13 * Blueprints - http://blueprints.launchpad.dev/
14 * Translations - http://translations.launchpad.dev/14 * Translations - http://translations.launchpad.dev/
1515
=== modified file 'lib/lp/bugs/stories/bugtracker/xx-bugtracker-remote-bug.txt'
--- lib/lp/bugs/stories/bugtracker/xx-bugtracker-remote-bug.txt 2009-09-01 16:56:20 +0000
+++ lib/lp/bugs/stories/bugtracker/xx-bugtracker-remote-bug.txt 2009-09-24 17:43:12 +0000
@@ -17,7 +17,7 @@
17 Hierarchy: Bug trackers > The Mozilla.org Bug Tracker17 Hierarchy: Bug trackers > The Mozilla.org Bug Tracker
18 Tabs:18 Tabs:
19 * Launchpad Home - http://launchpad.dev/19 * Launchpad Home - http://launchpad.dev/
20 * Code - http://code.launchpad.dev/20 * Branches - http://code.launchpad.dev/
21 * Bugs (selected) - http://bugs.launchpad.dev/21 * Bugs (selected) - http://bugs.launchpad.dev/
22 * Blueprints - http://blueprints.launchpad.dev/22 * Blueprints - http://blueprints.launchpad.dev/
23 * Translations - http://translations.launchpad.dev/23 * Translations - http://translations.launchpad.dev/
@@ -73,7 +73,7 @@
73 Hierarchy: Bug trackers > The Mozilla.org Bug Tracker73 Hierarchy: Bug trackers > The Mozilla.org Bug Tracker
74 Tabs:74 Tabs:
75 * Launchpad Home - http://launchpad.dev/75 * Launchpad Home - http://launchpad.dev/
76 * Code - http://code.launchpad.dev/76 * Branches - http://code.launchpad.dev/
77 * Bugs (selected) - http://bugs.launchpad.dev/77 * Bugs (selected) - http://bugs.launchpad.dev/
78 * Blueprints - http://blueprints.launchpad.dev/78 * Blueprints - http://blueprints.launchpad.dev/
79 * Translations - http://translations.launchpad.dev/79 * Translations - http://translations.launchpad.dev/
8080
=== modified file 'lib/lp/code/stories/branches/xx-branch-index.txt'
--- lib/lp/code/stories/branches/xx-branch-index.txt 2009-09-23 14:40:53 +0000
+++ lib/lp/code/stories/branches/xx-branch-index.txt 2009-09-24 17:43:11 +0000
@@ -415,7 +415,7 @@
415 Hierarchy: GNOME Terminal > Branches > scanned415 Hierarchy: GNOME Terminal > Branches > scanned
416 Tabs:416 Tabs:
417 * Overview - http://launchpad.dev/gnome-terminal417 * Overview - http://launchpad.dev/gnome-terminal
418 * Code (selected) - http://code.launchpad.dev/gnome-terminal418 * Branches (selected) - http://code.launchpad.dev/gnome-terminal
419 * Bugs - http://bugs.launchpad.dev/gnome-terminal419 * Bugs - http://bugs.launchpad.dev/gnome-terminal
420 * Blueprints - http://blueprints.launchpad.dev/gnome-terminal420 * Blueprints - http://blueprints.launchpad.dev/gnome-terminal
421 * Translations - http://translations.launchpad.dev/gnome-terminal421 * Translations - http://translations.launchpad.dev/gnome-terminal
@@ -427,7 +427,7 @@
427 Hierarchy: Sample Person > Branches > junk.dev427 Hierarchy: Sample Person > Branches > junk.dev
428 Tabs:428 Tabs:
429 * Overview - http://launchpad.dev/~name12429 * Overview - http://launchpad.dev/~name12
430 * Code (selected) - http://code.launchpad.dev/~name12430 * Branches (selected) - http://code.launchpad.dev/~name12
431 * Bugs - http://bugs.launchpad.dev/~name12431 * Bugs - http://bugs.launchpad.dev/~name12
432 * Blueprints - http://blueprints.launchpad.dev/~name12432 * Blueprints - http://blueprints.launchpad.dev/~name12
433 * Translations - http://translations.launchpad.dev/~name12433 * Translations - http://translations.launchpad.dev/~name12
434434
=== modified file 'lib/lp/code/stories/branches/xx-distribution-branches.txt'
--- lib/lp/code/stories/branches/xx-distribution-branches.txt 2009-07-06 04:01:18 +0000
+++ lib/lp/code/stories/branches/xx-distribution-branches.txt 2009-09-24 17:43:12 +0000
@@ -23,7 +23,7 @@
2323
24 >>> print_location_apps(browser.contents)24 >>> print_location_apps(browser.contents)
25 * Overview (selected) ...25 * Overview (selected) ...
26 * Code - http://code.launchpad.dev/mint26 * Branches - http://code.launchpad.dev/mint
27 ...27 ...
2828
29Going to this page shows us a listing ordered by most recently changed first.29Going to this page shows us a listing ordered by most recently changed first.
3030
=== modified file 'lib/lp/code/stories/branches/xx-distroseries-branches.txt'
--- lib/lp/code/stories/branches/xx-distroseries-branches.txt 2009-07-06 04:48:04 +0000
+++ lib/lp/code/stories/branches/xx-distroseries-branches.txt 2009-09-24 17:43:12 +0000
@@ -23,7 +23,7 @@
2323
24 >>> print_location_apps(browser.contents)24 >>> print_location_apps(browser.contents)
25 * Overview (selected) ...25 * Overview (selected) ...
26 * Code - http://code.launchpad.dev/mint/stable26 * Branches - http://code.launchpad.dev/mint/stable
27 ...27 ...
2828
29Going to this page shows us a listing of all branches associated with that29Going to this page shows us a listing of all branches associated with that
3030
=== modified file 'lib/lp/code/stories/branches/xx-project-branches.txt'
--- lib/lp/code/stories/branches/xx-project-branches.txt 2009-09-23 14:40:53 +0000
+++ lib/lp/code/stories/branches/xx-project-branches.txt 2009-09-24 17:43:11 +0000
@@ -8,7 +8,7 @@
8Projects link their branch listing page.8Projects link their branch listing page.
99
10 >>> browser.open('http://launchpad.dev/mozilla')10 >>> browser.open('http://launchpad.dev/mozilla')
11 >>> browser.getLink('Code').click()11 >>> browser.getLink('Branches').click()
12 >>> print browser.title12 >>> print browser.title
13 Branches : the Mozilla Project13 Branches : the Mozilla Project
1414
1515
=== modified file 'lib/lp/registry/browser/distribution.py'
--- lib/lp/registry/browser/distribution.py 2009-09-22 19:52:18 +0000
+++ lib/lp/registry/browser/distribution.py 2009-09-24 17:43:12 +0000
@@ -113,7 +113,7 @@
113 if IProduct.providedBy(self.context):113 if IProduct.providedBy(self.context):
114 if self.context.official_codehosting:114 if self.context.official_codehosting:
115 url = canonical_url(self.context, rootsite='code')115 url = canonical_url(self.context, rootsite='code')
116 uses.append(href_template % (url, 'Code'))116 uses.append(href_template % (url, 'Branches'))
117 if self.context.official_rosetta:117 if self.context.official_rosetta:
118 url = canonical_url(self.context, rootsite='translations')118 url = canonical_url(self.context, rootsite='translations')
119 uses.append(href_template % (url, 'Translations'))119 uses.append(href_template % (url, 'Translations'))
120120
=== modified file 'lib/lp/registry/browser/person.py'
--- lib/lp/registry/browser/person.py 2009-09-23 16:06:53 +0000
+++ lib/lp/registry/browser/person.py 2009-09-24 17:43:12 +0000
@@ -713,7 +713,7 @@
713 return Link('', text, summary)713 return Link('', text, summary)
714714
715 def branches(self):715 def branches(self):
716 text = 'Code'716 text = 'Branches'
717 summary = ('Bazaar Branches and revisions registered and authored '717 summary = ('Bazaar Branches and revisions registered and authored '
718 'by %s' % self.context.displayname)718 'by %s' % self.context.displayname)
719 return Link('', text, summary)719 return Link('', text, summary)
720720
=== modified file 'lib/lp/registry/browser/product.py'
--- lib/lp/registry/browser/product.py 2009-09-22 15:02:41 +0000
+++ lib/lp/registry/browser/product.py 2009-09-24 17:43:11 +0000
@@ -271,7 +271,7 @@
271 return Link('', text, summary)271 return Link('', text, summary)
272272
273 def branches(self):273 def branches(self):
274 text = 'Code'274 text = 'Branches'
275 summary = 'Branches for %s' % self.context.displayname275 summary = 'Branches for %s' % self.context.displayname
276 return Link('', text, summary)276 return Link('', text, summary)
277277
278278
=== modified file 'lib/lp/registry/browser/productseries.py'
--- lib/lp/registry/browser/productseries.py 2009-09-22 19:52:18 +0000
+++ lib/lp/registry/browser/productseries.py 2009-09-24 17:43:12 +0000
@@ -143,7 +143,7 @@
143 def branches(self):143 def branches(self):
144 """Return a link to view the branches related to this series."""144 """Return a link to view the branches related to this series."""
145 # Override to go to the branches for the product.145 # Override to go to the branches for the product.
146 text = 'Code'146 text = 'Branches'
147 summary = 'View related branches of code'147 summary = 'View related branches of code'
148 link = canonical_url(self.context.product, rootsite='code')148 link = canonical_url(self.context.product, rootsite='code')
149 return Link(link, text, summary=summary)149 return Link(link, text, summary=summary)
150150
=== modified file 'lib/lp/registry/browser/project.py'
--- lib/lp/registry/browser/project.py 2009-09-22 15:02:41 +0000
+++ lib/lp/registry/browser/project.py 2009-09-24 17:43:12 +0000
@@ -134,7 +134,7 @@
134 'answers', 'translations']134 'answers', 'translations']
135135
136 def branches(self):136 def branches(self):
137 text = 'Code'137 text = 'Branches'
138 return Link('', text, enabled=self.context.hasProducts())138 return Link('', text, enabled=self.context.hasProducts())
139139
140 def bugs(self):140 def bugs(self):
141141
=== modified file 'lib/lp/registry/stories/distribution/xx-distribution-packages.txt'
--- lib/lp/registry/stories/distribution/xx-distribution-packages.txt 2009-09-22 13:27:30 +0000
+++ lib/lp/registry/stories/distribution/xx-distribution-packages.txt 2009-09-24 17:43:12 +0000
@@ -199,7 +199,7 @@
199 Hierarchy: Ubuntu > ?iceweasel? package199 Hierarchy: Ubuntu > ?iceweasel? package
200 Tabs:200 Tabs:
201 * Overview (selected) - not linked201 * Overview (selected) - not linked
202 * Code - http://code.launchpad.dev/ubuntu/+source/iceweasel202 * Branches - http://code.launchpad.dev/ubuntu/+source/iceweasel
203 * Bugs - http://bugs.launchpad.dev/ubuntu/+source/iceweasel203 * Bugs - http://bugs.launchpad.dev/ubuntu/+source/iceweasel
204 * Blueprints - not linked204 * Blueprints - not linked
205 * Translations - not linked205 * Translations - not linked
@@ -381,7 +381,7 @@
381 Hierarchy: Ubuntu > ?foobar? package > Change log381 Hierarchy: Ubuntu > ?foobar? package > Change log
382 Tabs:382 Tabs:
383 * Overview (selected) - http://launchpad.dev/ubuntu/+source/foobar383 * Overview (selected) - http://launchpad.dev/ubuntu/+source/foobar
384 * Code - http://code.launchpad.dev/ubuntu/+source/foobar384 * Branches - http://code.launchpad.dev/ubuntu/+source/foobar
385 * Bugs - http://bugs.launchpad.dev/ubuntu/+source/foobar385 * Bugs - http://bugs.launchpad.dev/ubuntu/+source/foobar
386 * Blueprints - not linked386 * Blueprints - not linked
387 * Translations - not linked387 * Translations - not linked
@@ -575,7 +575,7 @@
575 Hierarchy: Ubuntu > ?alsa-utils? package > Publishing history575 Hierarchy: Ubuntu > ?alsa-utils? package > Publishing history
576 Tabs:576 Tabs:
577 * Overview (selected) - http://launchpad.dev/ubuntu/+source/alsa-utils577 * Overview (selected) - http://launchpad.dev/ubuntu/+source/alsa-utils
578 * Code - http://code.launchpad.dev/ubuntu/+source/alsa-utils578 * Branches - http://code.launchpad.dev/ubuntu/+source/alsa-utils
579 * Bugs - http://bugs.launchpad.dev/ubuntu/+source/alsa-utils579 * Bugs - http://bugs.launchpad.dev/ubuntu/+source/alsa-utils
580 * Blueprints - not linked580 * Blueprints - not linked
581 * Translations - not linked581 * Translations - not linked
582582
=== modified file 'lib/lp/registry/stories/milestone/object-milestones.txt'
--- lib/lp/registry/stories/milestone/object-milestones.txt 2009-09-19 00:09:57 +0000
+++ lib/lp/registry/stories/milestone/object-milestones.txt 2009-09-24 17:43:11 +0000
@@ -143,7 +143,7 @@
143 Hierarchy: None displayed143 Hierarchy: None displayed
144 Tabs:144 Tabs:
145 * Overview (selected) - http://launchpad.dev/firefox145 * Overview (selected) - http://launchpad.dev/firefox
146 * Code - http://code.launchpad.dev/firefox146 * Branches - http://code.launchpad.dev/firefox
147 * Bugs - http://bugs.launchpad.dev/firefox147 * Bugs - http://bugs.launchpad.dev/firefox
148 * Blueprints - http://blueprints.launchpad.dev/firefox148 * Blueprints - http://blueprints.launchpad.dev/firefox
149 * Translations - http://translations.launchpad.dev/firefox149 * Translations - http://translations.launchpad.dev/firefox
@@ -161,7 +161,7 @@
161 Hierarchy: None displayed161 Hierarchy: None displayed
162 Tabs:162 Tabs:
163 * Overview (selected) - http://launchpad.dev/debian163 * Overview (selected) - http://launchpad.dev/debian
164 * Code - http://code.launchpad.dev/debian164 * Branches - http://code.launchpad.dev/debian
165 * Bugs - http://bugs.launchpad.dev/debian165 * Bugs - http://bugs.launchpad.dev/debian
166 * Blueprints - http://blueprints.launchpad.dev/debian166 * Blueprints - http://blueprints.launchpad.dev/debian
167 * Translations - http://translations.launchpad.dev/debian167 * Translations - http://translations.launchpad.dev/debian
168168
=== modified file 'lib/lp/registry/stories/product/xx-product-launchpad-usage.txt'
--- lib/lp/registry/stories/product/xx-product-launchpad-usage.txt 2009-08-11 12:43:24 +0000
+++ lib/lp/registry/stories/product/xx-product-launchpad-usage.txt 2009-09-24 17:43:12 +0000
@@ -67,7 +67,7 @@
6767
68 >>> uses = find_tag_by_id(registrant_browser.contents, id='uses')68 >>> uses = find_tag_by_id(registrant_browser.contents, id='uses')
69 >>> print extract_text(uses)69 >>> print extract_text(uses)
70 Uses Launchpad for: Answers and Code.70 Uses Launchpad for: Answers and Branches.
7171
72 >>> anon_browser.open('http://bugs.launchpad.dev/firefox')72 >>> anon_browser.open('http://bugs.launchpad.dev/firefox')
73 >>> print extract_text(73 >>> print extract_text(
@@ -87,7 +87,7 @@
87 >>> registrant_browser.getControl('Change').click()87 >>> registrant_browser.getControl('Change').click()
88 >>> uses = find_tag_by_id(registrant_browser.contents, id='uses')88 >>> uses = find_tag_by_id(registrant_browser.contents, id='uses')
89 >>> print extract_text(uses)89 >>> print extract_text(uses)
90 Uses Launchpad for: Answers and Code.90 Uses Launchpad for: Answers and Branches.
9191
92 >>> anon_browser.open('http://bugs.launchpad.dev/firefox')92 >>> anon_browser.open('http://bugs.launchpad.dev/firefox')
93 >>> print extract_text(93 >>> print extract_text(
@@ -109,7 +109,7 @@
109 >>> registrant_browser.getControl('Change').click()109 >>> registrant_browser.getControl('Change').click()
110 >>> uses = find_tag_by_id(registrant_browser.contents, id='uses')110 >>> uses = find_tag_by_id(registrant_browser.contents, id='uses')
111 >>> print extract_text(uses)111 >>> print extract_text(uses)
112 Uses Launchpad for: Answers, Bug Tracking, and Code.112 Uses Launchpad for: Answers, Bug Tracking, and Branches.
113113
114114
115Tracking bugs by email115Tracking bugs by email
116116
=== modified file 'lib/lp/registry/stories/team-polls/create-polls.txt'
--- lib/lp/registry/stories/team-polls/create-polls.txt 2009-09-18 15:24:30 +0000
+++ lib/lp/registry/stories/team-polls/create-polls.txt 2009-09-24 17:43:12 +0000
@@ -114,7 +114,7 @@
114 Hierarchy: None displayed114 Hierarchy: None displayed
115 Tabs:115 Tabs:
116 * Overview (selected) - http://launchpad.dev/~ubuntu-team116 * Overview (selected) - http://launchpad.dev/~ubuntu-team
117 * Code - http://code.launchpad.dev/~ubuntu-team117 * Branches - http://code.launchpad.dev/~ubuntu-team
118 * Bugs - http://bugs.launchpad.dev/~ubuntu-team118 * Bugs - http://bugs.launchpad.dev/~ubuntu-team
119 * Blueprints - http://blueprints.launchpad.dev/~ubuntu-team119 * Blueprints - http://blueprints.launchpad.dev/~ubuntu-team
120 * Translations - http://translations.launchpad.dev/~ubuntu-team120 * Translations - http://translations.launchpad.dev/~ubuntu-team
121121
=== modified file 'lib/lp/soyuz/stories/packaging/package-pages-navigation.txt'
--- lib/lp/soyuz/stories/packaging/package-pages-navigation.txt 2009-09-23 14:40:53 +0000
+++ lib/lp/soyuz/stories/packaging/package-pages-navigation.txt 2009-09-24 17:43:11 +0000
@@ -22,7 +22,7 @@
22 Hierarchy: Ubuntu > ?alsa-utils? package22 Hierarchy: Ubuntu > ?alsa-utils? package
23 Tabs:23 Tabs:
24 * Overview (selected) - not linked24 * Overview (selected) - not linked
25 * Code - http://code.launchpad.dev/ubuntu/+source/alsa-utils25 * Branches - http://code.launchpad.dev/ubuntu/+source/alsa-utils
26 * Bugs - http://bugs.launchpad.dev/ubuntu/+source/alsa-utils26 * Bugs - http://bugs.launchpad.dev/ubuntu/+source/alsa-utils
27 * Blueprints - not linked27 * Blueprints - not linked
28 * Translations - not linked28 * Translations - not linked
@@ -34,7 +34,7 @@
34 Hierarchy: Ubuntu > ?alsa-utils? package > Bugs34 Hierarchy: Ubuntu > ?alsa-utils? package > Bugs
35 Tabs:35 Tabs:
36 * Overview - http://launchpad.dev/ubuntu/+source/alsa-utils36 * Overview - http://launchpad.dev/ubuntu/+source/alsa-utils
37 * Code - http://code.launchpad.dev/ubuntu/+source/alsa-utils37 * Branches - http://code.launchpad.dev/ubuntu/+source/alsa-utils
38 * Bugs (selected) - not linked38 * Bugs (selected) - not linked
39 * Blueprints - not linked39 * Blueprints - not linked
40 * Translations - not linked40 * Translations - not linked
@@ -55,7 +55,7 @@
55 Hierarchy: Ubuntu > ?alsa-utils? package55 Hierarchy: Ubuntu > ?alsa-utils? package
56 Tabs:56 Tabs:
57 * Overview (selected) - http://launchpad.dev/ubuntu/+source/alsa-utils57 * Overview (selected) - http://launchpad.dev/ubuntu/+source/alsa-utils
58 * Code - http://code.launchpad.dev/ubuntu/+source/alsa-utils58 * Branches - http://code.launchpad.dev/ubuntu/+source/alsa-utils
59 * Bugs - http://bugs.launchpad.dev/ubuntu/+source/alsa-utils59 * Bugs - http://bugs.launchpad.dev/ubuntu/+source/alsa-utils
60 * Blueprints - not linked60 * Blueprints - not linked
61 * Translations - not linked61 * Translations - not linked
@@ -77,7 +77,7 @@
77 Hierarchy: Ubuntu > ?alsa-utils? package77 Hierarchy: Ubuntu > ?alsa-utils? package
78 Tabs:78 Tabs:
79 * Overview (selected) - http://launchpad.dev/ubuntu/+source/alsa-utils79 * Overview (selected) - http://launchpad.dev/ubuntu/+source/alsa-utils
80 * Code - http://code.launchpad.dev/ubuntu/+source/alsa-utils80 * Branches - http://code.launchpad.dev/ubuntu/+source/alsa-utils
81 * Bugs - http://bugs.launchpad.dev/ubuntu/+source/alsa-utils81 * Bugs - http://bugs.launchpad.dev/ubuntu/+source/alsa-utils
82 * Blueprints - not linked82 * Blueprints - not linked
83 * Translations - not linked83 * Translations - not linked
@@ -96,7 +96,7 @@
96 Hierarchy: Ubuntu > 5.04 > ?alsa-utils? source package96 Hierarchy: Ubuntu > 5.04 > ?alsa-utils? source package
97 Tabs:97 Tabs:
98 * Overview (selected) - not linked98 * Overview (selected) - not linked
99 * Code - http://code.launchpad.dev/ubuntu/hoary/+source/alsa-utils99 * Branches - http://code.launchpad.dev/ubuntu/hoary/+source/alsa-utils
100 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary/+source/alsa-utils100 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary/+source/alsa-utils
101 * Blueprints - not linked101 * Blueprints - not linked
102 * Translations - http://translations.launchpad.dev/ubuntu/hoary/+source/alsa-utils102 * Translations - http://translations.launchpad.dev/ubuntu/hoary/+source/alsa-utils
@@ -112,7 +112,7 @@
112 Hierarchy: Ubuntu > 5.04 > ?alsa-utils? source package > Questions112 Hierarchy: Ubuntu > 5.04 > ?alsa-utils? source package > Questions
113 Tabs:113 Tabs:
114 * Overview - http://launchpad.dev/ubuntu/hoary/+source/alsa-utils114 * Overview - http://launchpad.dev/ubuntu/hoary/+source/alsa-utils
115 * Code - http://code.launchpad.dev/ubuntu/hoary/+source/alsa-utils115 * Branches - http://code.launchpad.dev/ubuntu/hoary/+source/alsa-utils
116 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary/+source/alsa-utils116 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary/+source/alsa-utils
117 * Blueprints - not linked117 * Blueprints - not linked
118 * Translations - http://translations.launchpad.dev/ubuntu/hoary/+source/alsa-utils118 * Translations - http://translations.launchpad.dev/ubuntu/hoary/+source/alsa-utils
@@ -134,7 +134,7 @@
134 Hierarchy: Ubuntu > 5.04 > ?alsa-utils? source package134 Hierarchy: Ubuntu > 5.04 > ?alsa-utils? source package
135 Tabs:135 Tabs:
136 * Overview (selected) - http://launchpad.dev/ubuntu/hoary/+source/alsa-utils136 * Overview (selected) - http://launchpad.dev/ubuntu/hoary/+source/alsa-utils
137 * Code - http://code.launchpad.dev/ubuntu/hoary/+source/alsa-utils137 * Branches - http://code.launchpad.dev/ubuntu/hoary/+source/alsa-utils
138 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary/+source/alsa-utils138 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary/+source/alsa-utils
139 * Blueprints - not linked139 * Blueprints - not linked
140 * Translations - http://translations.launchpad.dev/ubuntu/hoary/+source/alsa-utils140 * Translations - http://translations.launchpad.dev/ubuntu/hoary/+source/alsa-utils
@@ -153,7 +153,7 @@
153 Hierarchy: Ubuntu > 5.04 > i386153 Hierarchy: Ubuntu > 5.04 > i386
154 Tabs:154 Tabs:
155 * Overview (selected) - http://launchpad.dev/ubuntu/hoary155 * Overview (selected) - http://launchpad.dev/ubuntu/hoary
156 * Code - http://code.launchpad.dev/ubuntu/hoary156 * Branches - http://code.launchpad.dev/ubuntu/hoary
157 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary157 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary
158 * Blueprints - http://blueprints.launchpad.dev/ubuntu/hoary158 * Blueprints - http://blueprints.launchpad.dev/ubuntu/hoary
159 * Translations - http://translations.launchpad.dev/ubuntu/hoary159 * Translations - http://translations.launchpad.dev/ubuntu/hoary
@@ -171,7 +171,7 @@
171 Hierarchy: Ubuntu > 5.04 > i386 > pmount171 Hierarchy: Ubuntu > 5.04 > i386 > pmount
172 Tabs:172 Tabs:
173 * Overview (selected) - http://launchpad.dev/ubuntu/hoary173 * Overview (selected) - http://launchpad.dev/ubuntu/hoary
174 * Code - http://code.launchpad.dev/ubuntu/hoary174 * Branches - http://code.launchpad.dev/ubuntu/hoary
175 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary175 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary
176 * Blueprints - http://blueprints.launchpad.dev/ubuntu/hoary176 * Blueprints - http://blueprints.launchpad.dev/ubuntu/hoary
177 * Translations - http://translations.launchpad.dev/ubuntu/hoary177 * Translations - http://translations.launchpad.dev/ubuntu/hoary
@@ -190,7 +190,7 @@
190 Hierarchy: Ubuntu > 5.04 > i386 > pmount > 0.1-1190 Hierarchy: Ubuntu > 5.04 > i386 > pmount > 0.1-1
191 Tabs:191 Tabs:
192 * Overview (selected) - http://launchpad.dev/ubuntu/hoary192 * Overview (selected) - http://launchpad.dev/ubuntu/hoary
193 * Code - http://code.launchpad.dev/ubuntu/hoary193 * Branches - http://code.launchpad.dev/ubuntu/hoary
194 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary194 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary
195 * Blueprints - http://blueprints.launchpad.dev/ubuntu/hoary195 * Blueprints - http://blueprints.launchpad.dev/ubuntu/hoary
196 * Translations - http://translations.launchpad.dev/ubuntu/hoary196 * Translations - http://translations.launchpad.dev/ubuntu/hoary
197197
=== modified file 'lib/lp/soyuz/stories/ppa/xx-ppa-navigation.txt'
--- lib/lp/soyuz/stories/ppa/xx-ppa-navigation.txt 2009-09-18 01:34:06 +0000
+++ lib/lp/soyuz/stories/ppa/xx-ppa-navigation.txt 2009-09-24 17:43:12 +0000
@@ -51,7 +51,7 @@
51 Hierarchy: Celso Providelo > PPA for Celso Providelo51 Hierarchy: Celso Providelo > PPA for Celso Providelo
52 Tabs:52 Tabs:
53 * Overview (selected) - http://launchpad.dev/~cprov53 * Overview (selected) - http://launchpad.dev/~cprov
54 * Code - http://code.launchpad.dev/~cprov54 * Branches - http://code.launchpad.dev/~cprov
55 * Bugs - http://bugs.launchpad.dev/~cprov55 * Bugs - http://bugs.launchpad.dev/~cprov
56 * Blueprints - http://blueprints.launchpad.dev/~cprov56 * Blueprints - http://blueprints.launchpad.dev/~cprov
57 * Translations - http://translations.launchpad.dev/~cprov57 * Translations - http://translations.launchpad.dev/~cprov
@@ -72,7 +72,7 @@
72 Hierarchy: Celso Providelo > Default PPA72 Hierarchy: Celso Providelo > Default PPA
73 Tabs:73 Tabs:
74 * Overview (selected) - http://launchpad.dev/~cprov74 * Overview (selected) - http://launchpad.dev/~cprov
75 * Code - http://code.launchpad.dev/~cprov75 * Branches - http://code.launchpad.dev/~cprov
76 * Bugs - http://bugs.launchpad.dev/~cprov76 * Bugs - http://bugs.launchpad.dev/~cprov
77 * Blueprints - http://blueprints.launchpad.dev/~cprov77 * Blueprints - http://blueprints.launchpad.dev/~cprov
78 * Translations - http://translations.launchpad.dev/~cprov78 * Translations - http://translations.launchpad.dev/~cprov
@@ -117,7 +117,7 @@
117 Hierarchy: Celso Providelo > Default PPA117 Hierarchy: Celso Providelo > Default PPA
118 Tabs:118 Tabs:
119 * Overview (selected) - http://launchpad.dev/~cprov119 * Overview (selected) - http://launchpad.dev/~cprov
120 * Code - http://code.launchpad.dev/~cprov120 * Branches - http://code.launchpad.dev/~cprov
121 * Bugs - http://bugs.launchpad.dev/~cprov121 * Bugs - http://bugs.launchpad.dev/~cprov
122 * Blueprints - http://blueprints.launchpad.dev/~cprov122 * Blueprints - http://blueprints.launchpad.dev/~cprov
123 * Translations - http://translations.launchpad.dev/~cprov123 * Translations - http://translations.launchpad.dev/~cprov
124124
=== modified file 'lib/lp/soyuz/stories/ppa/xx-ppa-packages.txt'
--- lib/lp/soyuz/stories/ppa/xx-ppa-packages.txt 2009-09-17 15:14:02 +0000
+++ lib/lp/soyuz/stories/ppa/xx-ppa-packages.txt 2009-09-24 17:43:12 +0000
@@ -23,7 +23,7 @@
23 Hierarchy: Celso Providelo > PPA for Celso Providelo > Packages in...23 Hierarchy: Celso Providelo > PPA for Celso Providelo > Packages in...
24 Tabs:24 Tabs:
25 * Overview (selected) - http://launchpad.dev/~cprov25 * Overview (selected) - http://launchpad.dev/~cprov
26 * Code - http://code.launchpad.dev/~cprov26 * Branches - http://code.launchpad.dev/~cprov
27 * Bugs - http://bugs.launchpad.dev/~cprov27 * Bugs - http://bugs.launchpad.dev/~cprov
28 * Blueprints - http://blueprints.launchpad.dev/~cprov28 * Blueprints - http://blueprints.launchpad.dev/~cprov
29 * Translations - http://translations.launchpad.dev/~cprov29 * Translations - http://translations.launchpad.dev/~cprov
3030
=== modified file 'lib/lp/soyuz/stories/ppa/xx-ubuntu-ppas.txt'
--- lib/lp/soyuz/stories/ppa/xx-ubuntu-ppas.txt 2009-09-22 10:05:26 +0000
+++ lib/lp/soyuz/stories/ppa/xx-ubuntu-ppas.txt 2009-09-24 17:43:11 +0000
@@ -8,7 +8,7 @@
8 Hierarchy: Ubuntu > Personal Package Archives8 Hierarchy: Ubuntu > Personal Package Archives
9 Tabs:9 Tabs:
10 * Overview (selected) - http://launchpad.dev/ubuntu10 * Overview (selected) - http://launchpad.dev/ubuntu
11 * Code - http://code.launchpad.dev/ubuntu11 * Branches - http://code.launchpad.dev/ubuntu
12 * Bugs - http://bugs.launchpad.dev/ubuntu12 * Bugs - http://bugs.launchpad.dev/ubuntu
13 * Blueprints - http://blueprints.launchpad.dev/ubuntu13 * Blueprints - http://blueprints.launchpad.dev/ubuntu
14 * Translations - http://translations.launchpad.dev/ubuntu14 * Translations - http://translations.launchpad.dev/ubuntu
1515
=== modified file 'lib/lp/soyuz/stories/soyuz/xx-distributionsourcepackagerelease-pages.txt'
--- lib/lp/soyuz/stories/soyuz/xx-distributionsourcepackagerelease-pages.txt 2009-09-22 13:11:13 +0000
+++ lib/lp/soyuz/stories/soyuz/xx-distributionsourcepackagerelease-pages.txt 2009-09-24 17:43:12 +0000
@@ -48,7 +48,7 @@
48 Hierarchy: ubuntutest > ?testing-dspr? package48 Hierarchy: ubuntutest > ?testing-dspr? package
49 Tabs:49 Tabs:
50 * Overview (selected) - http://launchpad.dev/ubuntutest/+source/testing-dspr50 * Overview (selected) - http://launchpad.dev/ubuntutest/+source/testing-dspr
51 * Code - http://code.launchpad.dev/ubuntutest/+source/testing-dspr51 * Branches - http://code.launchpad.dev/ubuntutest/+source/testing-dspr
52 * Bugs - http://bugs.launchpad.dev/ubuntutest/+source/testing-dspr52 * Bugs - http://bugs.launchpad.dev/ubuntutest/+source/testing-dspr
53 * Blueprints - not linked53 * Blueprints - not linked
54 * Translations - not linked54 * Translations - not linked
5555
=== modified file 'lib/lp/soyuz/stories/soyuz/xx-sourcepackage-changelog.txt'
--- lib/lp/soyuz/stories/soyuz/xx-sourcepackage-changelog.txt 2009-09-22 11:55:32 +0000
+++ lib/lp/soyuz/stories/soyuz/xx-sourcepackage-changelog.txt 2009-09-24 17:43:11 +0000
@@ -8,7 +8,7 @@
8 Hierarchy: Ubuntu > 5.04 > ...pmount... source package > Change log8 Hierarchy: Ubuntu > 5.04 > ...pmount... source package > Change log
9 Tabs:9 Tabs:
10 * Overview (selected) - http://launchpad.dev/ubuntu/hoary/+source/pmount10 * Overview (selected) - http://launchpad.dev/ubuntu/hoary/+source/pmount
11 * Code - http://code.launchpad.dev/ubuntu/hoary/+source/pmount11 * Branches - http://code.launchpad.dev/ubuntu/hoary/+source/pmount
12 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary/+source/pmount12 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary/+source/pmount
13 * Blueprints - not linked13 * Blueprints - not linked
14 * Translations - http://translations.launchpad.dev/ubuntu/hoary/+source/pmount14 * Translations - http://translations.launchpad.dev/ubuntu/hoary/+source/pmount
1515
=== modified file 'lib/lp/translations/stories/navigation-links/pofile.txt'
--- lib/lp/translations/stories/navigation-links/pofile.txt 2009-09-15 16:33:12 +0000
+++ lib/lp/translations/stories/navigation-links/pofile.txt 2009-09-24 17:43:11 +0000
@@ -15,7 +15,7 @@
1515
16 >>> print_location_apps(admin_browser.contents)16 >>> print_location_apps(admin_browser.contents)
17 * Overview - http://launchpad.dev/evolution/trunk17 * Overview - http://launchpad.dev/evolution/trunk
18 * Code - http://code.launchpad.dev/evolution18 * Branches - http://code.launchpad.dev/evolution
19 * Bugs - http://bugs.launchpad.dev/evolution/trunk19 * Bugs - http://bugs.launchpad.dev/evolution/trunk
20 * Blueprints - http://blueprints.launchpad.dev/evolution/trunk20 * Blueprints - http://blueprints.launchpad.dev/evolution/trunk
21 * Translations (selected) - http://translations.launchpad.dev/evolution/trunk21 * Translations (selected) - http://translations.launchpad.dev/evolution/trunk
@@ -33,7 +33,7 @@
3333
34 >>> print_location_apps(admin_browser.contents)34 >>> print_location_apps(admin_browser.contents)
35 * Overview - http://launchpad.dev/ubuntu/hoary/+source/evolution35 * Overview - http://launchpad.dev/ubuntu/hoary/+source/evolution
36 * Code - http://code.launchpad.dev/ubuntu/hoary/+source/evolution36 * Branches - http://code.launchpad.dev/ubuntu/hoary/+source/evolution
37 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary/+source/evolution37 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary/+source/evolution
38 * Blueprints - not linked38 * Blueprints - not linked
39 * Translations (selected) - http://translations.launchpad.dev/ubuntu/hoary/+source/evolution39 * Translations (selected) - http://translations.launchpad.dev/ubuntu/hoary/+source/evolution
4040
=== modified file 'lib/lp/translations/stories/navigation-links/pomsgset.txt'
--- lib/lp/translations/stories/navigation-links/pomsgset.txt 2009-07-01 20:45:39 +0000
+++ lib/lp/translations/stories/navigation-links/pomsgset.txt 2009-09-24 17:43:11 +0000
@@ -17,7 +17,7 @@
1717
18 >>> print_location_apps(browser.contents)18 >>> print_location_apps(browser.contents)
19 * Overview - http://launchpad.dev/evolution/trunk19 * Overview - http://launchpad.dev/evolution/trunk
20 * Code - http://code.launchpad.dev/evolution20 * Branches - http://code.launchpad.dev/evolution
21 * Bugs - http://bugs.launchpad.dev/evolution/trunk21 * Bugs - http://bugs.launchpad.dev/evolution/trunk
22 * Blueprints - http://blueprints.launchpad.dev/evolution/trunk22 * Blueprints - http://blueprints.launchpad.dev/evolution/trunk
23 * Translations (selected) - http://translations.launchpad.dev/evolution/trunk23 * Translations (selected) - http://translations.launchpad.dev/evolution/trunk
@@ -39,7 +39,7 @@
3939
40 >>> print_location_apps(browser.contents)40 >>> print_location_apps(browser.contents)
41 * Overview - http://launchpad.dev/ubuntu/hoary/+source/evolution41 * Overview - http://launchpad.dev/ubuntu/hoary/+source/evolution
42 * Code - http://code.launchpad.dev/ubuntu/hoary/+source/evolution42 * Branches - http://code.launchpad.dev/ubuntu/hoary/+source/evolution
43 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary/+source/evolution43 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary/+source/evolution
44 * Blueprints - not linked44 * Blueprints - not linked
45 * Translations (selected) - http://translations.launchpad.dev/ubuntu/hoary/+source/evolution45 * Translations (selected) - http://translations.launchpad.dev/ubuntu/hoary/+source/evolution
4646
=== modified file 'lib/lp/translations/stories/navigation-links/potemplate.txt'
--- lib/lp/translations/stories/navigation-links/potemplate.txt 2009-09-17 10:22:14 +0000
+++ lib/lp/translations/stories/navigation-links/potemplate.txt 2009-09-24 17:43:11 +0000
@@ -13,7 +13,7 @@
1313
14 >>> print_location_apps(admin_browser.contents)14 >>> print_location_apps(admin_browser.contents)
15 * Overview - http://launchpad.dev/evolution/trunk15 * Overview - http://launchpad.dev/evolution/trunk
16 * Code - http://code.launchpad.dev/evolution16 * Branches - http://code.launchpad.dev/evolution
17 * Bugs - http://bugs.launchpad.dev/evolution/trunk17 * Bugs - http://bugs.launchpad.dev/evolution/trunk
18 * Blueprints - http://blueprints.launchpad.dev/evolution/trunk18 * Blueprints - http://blueprints.launchpad.dev/evolution/trunk
19 * Translations (selected) - http://translations.launchpad.dev/evolution/trunk19 * Translations (selected) - http://translations.launchpad.dev/evolution/trunk
@@ -31,7 +31,7 @@
3131
32 >>> print_location_apps(admin_browser.contents)32 >>> print_location_apps(admin_browser.contents)
33 * Overview - http://launchpad.dev/ubuntu/hoary/+source/evolution33 * Overview - http://launchpad.dev/ubuntu/hoary/+source/evolution
34 * Code - http://code.launchpad.dev/ubuntu/hoary/+source/evolution34 * Branches - http://code.launchpad.dev/ubuntu/hoary/+source/evolution
35 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary/+source/evolution35 * Bugs - http://bugs.launchpad.dev/ubuntu/hoary/+source/evolution
36 * Blueprints - not linked36 * Blueprints - not linked
37 * Translations (selected) - http://translations.launchpad.dev/ubuntu/hoary/+source/evolution37 * Translations (selected) - http://translations.launchpad.dev/ubuntu/hoary/+source/evolution

Subscribers

People subscribed via source and target branches

to status/vote changes: