Merge lp:~sinzui/launchpad/delete-unused-0 into lp:launchpad

Proposed by Curtis Hovey
Status: Merged
Approved by: Brad Crittenden
Approved revision: no longer in the source branch.
Merged at revision: 11149
Proposed branch: lp:~sinzui/launchpad/delete-unused-0
Merge into: lp:launchpad
Diff against target: 3901 lines (+32/-2989)
27 files modified
lib/canonical/launchpad/browser/launchpad.py (+1/-192)
lib/canonical/launchpad/doc/tales.txt (+0/-14)
lib/canonical/launchpad/icing-sources/app-people-and-teams.svg (+0/-23)
lib/canonical/launchpad/icing-sources/navigation-menu-groove.svg (+0/-92)
lib/canonical/launchpad/icing-sources/navigation-n.svg (+0/-118)
lib/canonical/launchpad/icing-sources/navigation-ne-e-normal.svg (+0/-208)
lib/canonical/launchpad/icing-sources/navigation-ne-e-selected.svg (+0/-208)
lib/canonical/launchpad/icing-sources/navigation-nw-w-normal.svg (+0/-182)
lib/canonical/launchpad/icing-sources/navigation-nw-w-selected.svg (+0/-179)
lib/canonical/launchpad/icing-sources/navigation-se-normal.svg (+0/-162)
lib/canonical/launchpad/icing-sources/navigation-se-selected.svg (+0/-162)
lib/canonical/launchpad/icing-sources/navigation-sw-normal.svg (+0/-161)
lib/canonical/launchpad/icing-sources/navigation-sw-selected.svg (+0/-161)
lib/canonical/launchpad/icing-sources/navigation-sw-w-normal.svg (+0/-208)
lib/canonical/launchpad/icing-sources/navigation-tab-bottom-overview-normal.svg (+0/-140)
lib/canonical/launchpad/icing-sources/navigation-tab-bottom-untinted-normal.svg (+0/-133)
lib/canonical/launchpad/icing-sources/navigation-tab-bottom-untinted-selected.svg (+0/-123)
lib/canonical/launchpad/interfaces/launchpad.py (+0/-34)
lib/canonical/launchpad/pagetitles.py (+1/-431)
lib/canonical/launchpad/zcml/launchpad.zcml (+0/-8)
lib/lp/bugs/browser/bug.py (+9/-2)
lib/lp/bugs/browser/bugtask.py (+12/-35)
lib/lp/bugs/configure.zcml (+0/-5)
lib/lp/bugs/stories/bugs/xx-bug-obfuscation.txt (+6/-6)
lib/lp/bugs/stories/bugtask-management/xx-bugtask-edit-forms.txt (+1/-1)
lib/lp/bugs/stories/bugtask-management/xx-view-editable-bug-task.txt (+1/-1)
lib/lp/registry/browser/peoplemerge.py (+1/-0)
To merge this branch: bzr merge lp:~sinzui/launchpad/delete-unused-0
Reviewer Review Type Date Requested Status
Brad Crittenden (community) code Approve
Review via email: mp+29739@code.launchpad.net

Description of the change

This is my branch to delete obsolete StructuralObjectPresentation.

    lp:~sinzui/launchpad/delete-unused-0
    Diff size: 296
    Launchpad bug:
          https://bugs.launchpad.net/bugs/241631
    Test command: ./bin/test -vv -t bugtask-management/.*
    Pre-implementation: no one
    Target release: 10.08

Delete obsolete code and files
------------------------------

Bug #241631 [StructuralHeaderPresentation and StructuralObjectPresentation
    are obsolete]
    As of 2008-2.0-1-header, StructuralHeaderPresentation and
    StructuralObjectPresentation are no longer used. Well this is not
    true, BugTaskView and BugTaskEditView used the objects to create
    page titles.

Rules
-----

    * Inline the SOP title logic into BugTaskView.
    * Remove the class and the obsolete pagetitle helpers.
    * ADDENDUM: Make sane BugTaskStatusView and BugTaskEditStatusView
      page_titles. They inherit the rules from pagetitles to make
      redundant and confusing titles eg, this bug:
          Bug #241631 in Launchpad Foundations: “StructuralHeaderPresentation
          and StructuralObjectPresentation are obsolete” : Bug #241631 :
          Bugs : Launchpad Foundations

QA
--

    * Visit https://bugs.edge.launchpad.net/launchpad-foundations/+bug/241631
      And verify its page title is
      Bug #241631 in Launchpad Foundations: “StructuralHeaderPresentation
      and StructuralObjectPresentation are obsolete”
    * Visit https://bugs.edge.launchpad.net/launchpad-foundations/+bug/241631/+editstatus
      Verify it is a standard lp page title/bread crumb:
      Edit status : Bug #241631 : Bugs : Launchpad Foundations

Lint
----

Linting changed files:
  lib/canonical/launchpad/pagetitles.py
  lib/canonical/launchpad/browser/launchpad.py
  lib/canonical/launchpad/interfaces/launchpad.py
  lib/lp/bugs/configure.zcml
  lib/lp/bugs/browser/bugtask.py
  lib/lp/bugs/stories/bugtask-management/xx-bugtask-edit-forms.txt
  lib/lp/bugs/stories/bugtask-management/xx-view-editable-bug-task.txt

^ There are a number of issues reported. I do not think I should fix
  pagetitles because it is obsolete. I can fix the other style issues
  reported.

Test
----

    * lib/lp/bugs/stories/bugtask-management/xx-bugtask-edit-forms.txt
      * Updated the test...the ellipsises were hiding the insane title.
    * lib/lp/bugs/stories/bugtask-management/xx-view-editable-bug-task.txt
      * Updated the test...the ellipsises were hiding the insane title.

Implementation
--------------

    * lib/canonical/launchpad/pagetitles.py
      * Removed the obsolete pagetitles by inlining the logic into the view.
    * lib/canonical/launchpad/browser/launchpad.py
      * Removed the obsolete classes.
    * lib/canonical/launchpad/interfaces/launchpad.py
      * Removed the obsolete interfaces.
    * lib/lp/bugs/configure.zcml
      * Unregistered the class
    * lib/lp/bugs/browser/bugtask.py
      * Inlined the title rules
      * Fixed the insane status and editstatus rules
      * Removed BugTaskSOP.

To post a comment you must log in.
Revision history for this message
Brad Crittenden (bac) wrote :

Nice branch. Fix lint.

review: Approve (code)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'lib/canonical/launchpad/browser/launchpad.py'
2--- lib/canonical/launchpad/browser/launchpad.py 2010-05-11 17:43:20 +0000
3+++ lib/canonical/launchpad/browser/launchpad.py 2010-07-15 08:42:46 +0000
4@@ -6,7 +6,6 @@
5 __metaclass__ = type
6 __all__ = [
7 'AppFrontPageSearchView',
8- 'ApplicationButtons',
9 'DoesNotExistView',
10 'Hierarchy',
11 'IcingContribFolder',
12@@ -17,12 +16,9 @@
13 'LinkView',
14 'LoginStatus',
15 'MaintenanceMessage',
16- 'MenuBox',
17 'NavigationMenuTabs',
18 'RDFIndexView',
19 'SoftTimeoutView',
20- 'StructuralHeaderPresentation',
21- 'StructuralObjectPresentation',
22 'get_launchpad_views',
23 ]
24
25@@ -45,7 +41,6 @@
26 from zope.publisher.interfaces.browser import IBrowserPublisher
27 from zope.publisher.interfaces.xmlrpc import IXMLRPCRequest
28 from zope.security.interfaces import Unauthorized
29-from zope.traversing.interfaces import ITraversable
30
31 from canonical.cachedproperty import cachedproperty
32 from canonical.config import config
33@@ -55,8 +50,7 @@
34 from canonical.launchpad.interfaces.account import AccountStatus
35 from canonical.launchpad.interfaces.launchpad import (
36 IAppFrontPageSearchForm, IBazaarApplication, ILaunchpadCelebrities,
37- IRosettaApplication, IStructuralHeaderPresentation,
38- IStructuralObjectPresentation)
39+ IRosettaApplication)
40 from canonical.launchpad.interfaces.launchpadstatistic import (
41 ILaunchpadStatisticSet)
42 from canonical.launchpad.interfaces.logintoken import ILoginTokenSet
43@@ -126,44 +120,6 @@
44 from lp.answers.interfaces.questioncollection import IQuestionSet
45
46
47-class MenuBox(LaunchpadView):
48- """View class that helps its template render the actions menu box.
49-
50- Nothing at all is rendered if there are no contextmenu items and also
51- no applicationmenu items.
52-
53- If there is at least one item, the template is rendered.
54-
55- The context may be another view, or a content object.
56- """
57-
58- def initialize(self):
59- menuapi = MenuAPI(self.context)
60- # We are only interested on enabled links in non development mode.
61- self.contextmenuitems = sorted([
62- link for link in menuapi.context.values()
63- if link.enabled or config.devmode],
64- key=operator.attrgetter('sort_key'))
65- facet = menuapi.selectedfacetname()
66- if facet != 'unknown':
67- # XXX sinzui 2008-06-23 bug=242453:
68- # Why are we getting unknown? Bounties are borked. We need
69- # to end the facet hacks to get a clear state for the menus.
70- application_links = getattr(menuapi, facet).values()
71- else:
72- application_links = []
73- self.applicationmenuitems = sorted([
74- link for link in application_links
75- if link.enabled or config.devmode],
76- key=operator.attrgetter('sort_key'))
77-
78- def render(self):
79- if (not self.contextmenuitems and not self.applicationmenuitems):
80- return u''
81- else:
82- return self.template()
83-
84-
85 class NavigationMenuTabs(LaunchpadView):
86 """View class that helps its template render the navigation menu tabs.
87
88@@ -762,13 +718,6 @@
89 ' %s ms to render.' % (soft_timeout, time_to_generate_page))
90
91
92-class ObjectForTemplate:
93-
94- def __init__(self, **kw):
95- for name, value in kw.items():
96- setattr(self, name, value)
97-
98-
99 class IcingFolder(ExportedFolder):
100 """Export the Launchpad icing."""
101
102@@ -840,146 +789,6 @@
103 return self, ()
104
105
106-class StructuralHeaderPresentation:
107- """Base class for StructuralHeaderPresentation adapters."""
108-
109- implements(IStructuralHeaderPresentation)
110-
111- def __init__(self, context):
112- self.context = context
113-
114- def getIntroHeading(self):
115- return None
116-
117- def getMainHeading(self):
118- raise NotImplementedError()
119-
120-
121-class StructuralObjectPresentation(StructuralHeaderPresentation):
122- """Base class for StructuralObjectPresentation adapters."""
123-
124- implements(IStructuralObjectPresentation)
125-
126- def listChildren(self, num):
127- return []
128-
129- def countChildren(self):
130- raise NotImplementedError()
131-
132- def listAltChildren(self, num):
133- return None
134-
135- def countAltChildren(self):
136- raise NotImplementedError()
137-
138-
139-class Button:
140-
141- def __init__(self, **kw):
142- assert len(kw) == 1
143- self.name = kw.keys()[0]
144- self.text = kw.values()[0]
145- self.replacement_dict = self.makeReplacementDict()
146-
147- def makeReplacementDict(self):
148- return dict(
149- url=allvhosts.configs[self.name].rooturl,
150- buttonname=self.name,
151- text=self.text)
152-
153- def renderActive(self):
154- return (
155- '<a href="%(url)s">\n'
156- ' <img'
157- ' width="64"'
158- ' height="64"'
159- ' alt="%(buttonname)s"'
160- ' src="/+icing/app-%(buttonname)s-sml-active.gif"'
161- ' title="%(text)s"'
162- ' />\n'
163- '</a>\n' % self.replacement_dict)
164-
165- def renderInactive(self):
166- return (
167- '<a href="%(url)s">\n'
168- ' <img'
169- ' width="64"'
170- ' height="64"'
171- ' alt="%(buttonname)s"'
172- ' src="/+icing/app-%(buttonname)s-sml.gif"'
173- ' title="%(text)s"'
174- ' />\n'
175- '</a>\n' % self.replacement_dict)
176-
177- def renderFrontPage(self):
178- return (
179- '<a href="%(url)s">\n'
180- ' <img'
181- ' width="146"'
182- ' height="146"'
183- ' alt="%(buttonname)s"'
184- ' src="/+icing/app-%(buttonname)s.gif"'
185- ' title="%(text)s"'
186- ' />\n'
187- '</a>\n' % self.replacement_dict)
188-
189- def renderButton(self, is_active, is_front_page):
190- if (is_front_page):
191- return self.renderFrontPage()
192- elif is_active:
193- return self.renderActive()
194- else:
195- return self.renderInactive()
196-
197-
198-class PeopleButton(Button):
199-
200- def makeReplacementDict(self):
201- return dict(
202- url='%speople/' % allvhosts.configs['mainsite'].rooturl,
203- buttonname=self.name,
204- text=self.text)
205-
206-
207-class ApplicationButtons(LaunchpadView):
208- """Those buttons that you get on the index pages."""
209-
210- implements(ITraversable)
211-
212- def __init__(self, context, request):
213- LaunchpadView.__init__(self, context, request)
214- self.name = None
215-
216- buttons = [
217- PeopleButton(people="Join thousands of people and teams collaborating"
218- " in software development."),
219- Button(code="Publish your code for people to merge and branch from."),
220- Button(bugs="Share bug reports and fixes."),
221- Button(blueprints="Track blueprints through approval and "
222- "implementation."),
223- Button(translations="Localize software into your favorite language."),
224- Button(answers="Ask and answer questions about software."),
225- ]
226-
227- def render(self):
228- L = []
229- for button in self.buttons:
230- if self.name:
231- is_active = button.name == self.name
232- else:
233- is_active = True
234- is_front_page = self.name == 'main'
235- L.append(button.renderButton(is_active, is_front_page))
236- return u'\n'.join(L)
237-
238- def traverse(self, name, furtherPath):
239- self.name = name
240- if furtherPath:
241- raise AssertionError(
242- 'Max of one path item after +applicationbuttons')
243- return self
244-
245-
246 class AppFrontPageSearchView(LaunchpadFormView):
247
248 schema = IAppFrontPageSearchForm
249
250=== modified file 'lib/canonical/launchpad/doc/tales.txt'
251--- lib/canonical/launchpad/doc/tales.txt 2010-05-21 14:58:50 +0000
252+++ lib/canonical/launchpad/doc/tales.txt 2010-07-15 08:42:46 +0000
253@@ -1175,20 +1175,6 @@
254 Test the 'fmt:' namespace where the context is a dict.
255 ------------------------------------------------------
256
257-fmt:pagetitle takes a page template CONTEXTS dict, and gives you a
258-string for use in the <title> element of a page.
259-
260-This case ought to apply only to a page template's CONTEXTS dict.
261-However, we have to make this namespace available for all dicts, as
262-there is no type information to distinguish a page template CONTEXTS
263-dict from any other dict.
264-
265- >>> class MockPageTemplateFile:
266- ... filename = '/blah/blah/debug-root-index.pt'
267- >>> CONTEXTS = {'template': MockPageTemplateFile}
268- >>> test_tales('foo/fmt:pagetitle', foo=CONTEXTS)
269- 'Launchpad Debug Home Page'
270-
271 Test the 'fmt:url' namespace for canonical urls.
272
273 >>> from canonical.launchpad.webapp.interfaces import ICanonicalUrlData
274
275=== removed file 'lib/canonical/launchpad/icing-sources/app-people-and-teams.svg'
276--- lib/canonical/launchpad/icing-sources/app-people-and-teams.svg 2008-07-14 17:28:02 +0000
277+++ lib/canonical/launchpad/icing-sources/app-people-and-teams.svg 1970-01-01 00:00:00 +0000
278@@ -1,23 +0,0 @@
279-<?xml version="1.0" encoding="UTF-8"?>
280-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
281-<!-- Creator: CorelDRAW -->
282-<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="150px" height="150px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
283-viewBox="0 0 150 150">
284- <defs>
285- <style type="text/css">
286- <![CDATA[
287- .fil2 {fill:white}
288- .fil0 {fill:#8DB833}
289- .fil1 {fill:white;fill-rule:nonzero}
290- ]]>
291- </style>
292- </defs>
293- <g id="Capa_x0020_1">
294- <metadata id="CorelCorpID_0Corel-Layer"/>
295- <path class="fil0" d="M136.854 126.085c0,4.78937 -3.98031,8.67165 -8.89252,8.67165l-105.924 0c-4.9122,0 -8.89252,-3.88228 -8.89252,-8.67165l0 -103.29c0,-4.78937 3.98031,-8.67165 8.89252,-8.67165l105.924 0c4.9122,0 8.89252,3.88228 8.89252,8.67165l0 103.29z"/>
296- <path class="fil1" d="M33.3248 121.578c0,0.874016 -0.259843,1.60276 -0.778346,2.18622 -0.518504,0.583465 -1.11614,0.876378 -1.79055,0.876378l-2.71181 0 0 3.37323 -1.94646 0 0 -9.45945 4.45039 0c0.916535,0 1.60866,0.26811 2.07638,0.804331 0.466535,0.53622 0.700394,1.27677 0.700394,2.21929zm-1.8815 -0.116929c0,-0.389764 -0.103937,-0.700394 -0.31063,-0.934252 -0.207874,-0.233858 -0.498425,-0.350787 -0.870472,-0.350787l-2.21811 0 0 2.84173 2.27008 0c0.311811,0 0.579921,-0.167717 0.805512,-0.505512 0.216142,-0.311811 0.323622,-0.661417 0.323622,-1.05118zm9.15 3.04961c0,0.207874 -0.0129921,0.393307 -0.0377953,0.55748l-4.65827 0c-0.0177165,0.0519685 -0.0259843,0.134646 -0.0259843,0.24685 0,0.458268 0.140551,0.827953 0.422835,1.10906 0.283465,0.281102 0.651969,0.421654 1.10551,0.421654 0.301181,0 0.579921,-0.0862205 0.837402,-0.258661 0.231496,-0.165354 0.375591,-0.350787 0.437008,-0.558661l1.84252 0c-0.243307,0.683858 -0.668504,1.23307 -1.27913,1.64764 -0.609449,0.415748 -1.29094,0.623622 -2.04331,0.623622 -0.838583,0 -1.5437,-0.264567 -2.11535,-0.791339 -0.682677,-0.63189 -1.02402,-1.53543 -1.02402,-2.71299 0,-1.2626 0.274016,-2.23346 0.823228,-2.9126 0.549213,-0.679134 1.33937,-1.01811 2.36811,-1.01811 1.00394,0 1.81181,0.335433 2.42598,1.00512 0.614173,0.670866 0.92126,1.55079 0.92126,2.64094zm-1.91929 -0.662598c-0.0519685,-0.976772 -0.506693,-1.46575 -1.36299,-1.46575 -0.864567,0 -1.34528,0.488976 -1.43976,1.46575l2.80276 0zm9.69213 0.740551c0,1.18465 -0.309449,2.10118 -0.928346,2.75079 -0.617717,0.648425 -1.48937,0.973228 -2.61378,0.973228 -1.04764,0 -1.87323,-0.337795 -2.47913,-1.0122 -0.604724,-0.675591 -0.908268,-1.59685 -0.908268,-2.76378 0,-1.15039 0.303543,-2.05039 0.908268,-2.69882 0.605906,-0.649606 1.45748,-0.973228 2.55709,-0.973228 1.08898,0 1.93937,0.328346 2.54882,0.98622 0.61063,0.656693 0.915354,1.56969 0.915354,2.7378zm-1.81654 0.0129921c0,-0.649606 -0.155906,-1.17638 -0.467717,-1.58386 -0.31063,-0.406299 -0.705118,-0.609449 -1.17992,-0.609449 -0.475984,0 -0.86811,0.216142 -1.1752,0.648425 -0.307087,0.433465 -0.46063,0.98622 -0.46063,1.66181 0,0.562205 0.162992,1.04173 0.486614,1.43976 0.324803,0.398031 0.715748,0.596457 1.1752,0.596457 0.474803,0 0.864567,-0.200787 1.16693,-0.602362 0.303543,-0.402756 0.454724,-0.920079 0.454724,-1.55079zm9.80669 0.129921c0,1.03701 -0.255118,1.89331 -0.765354,2.5689 -0.510236,0.674409 -1.17638,1.0122 -1.99843,1.0122 -0.467717,0 -0.825591,-0.0566929 -1.07717,-0.168898 -0.294094,-0.129921 -0.640157,-0.406299 -1.03819,-0.830315l0 3.54213 -1.81654 0 0 -9.87402 1.81654 0 0 1.06299c0.527953,-0.786614 1.19409,-1.17992 1.99843,-1.17992 0.822047,0 1.50709,0.367323 2.0563,1.10315 0.549213,0.734646 0.824409,1.65591 0.824409,2.76378zm-1.82953 -0.155906c0,-0.63189 -0.142913,-1.13976 -0.42874,-1.5248 -0.284646,-0.385039 -0.661417,-0.577559 -1.12795,-0.577559 -0.415748,0 -0.767717,0.200787 -1.05827,0.603543 -0.28937,0.401575 -0.434646,0.905906 -0.434646,1.51181 0,0.666142 0.140551,1.20236 0.421654,1.60866 0.281102,0.406299 0.650787,0.609449 1.11024,0.609449 0.448819,0 0.814961,-0.20315 1.09606,-0.609449 0.281102,-0.406299 0.421654,-0.947244 0.421654,-1.62165zm4.99724 3.43819l-1.81654 0 0 -9.45945 1.81654 0 0 9.45945zm7.74567 -3.50315c0,0.207874 -0.0129921,0.393307 -0.0377953,0.55748l-4.65827 0c-0.0177165,0.0519685 -0.0259843,0.134646 -0.0259843,0.24685 0,0.458268 0.140551,0.827953 0.422835,1.10906 0.283465,0.281102 0.651969,0.421654 1.10551,0.421654 0.301181,0 0.579921,-0.0862205 0.837402,-0.258661 0.231496,-0.165354 0.375591,-0.350787 0.437008,-0.558661l1.84252 0c-0.243307,0.683858 -0.668504,1.23307 -1.27913,1.64764 -0.609449,0.415748 -1.29094,0.623622 -2.04331,0.623622 -0.838583,0 -1.5437,-0.264567 -2.11535,-0.791339 -0.682677,-0.63189 -1.02402,-1.53543 -1.02402,-2.71299 0,-1.2626 0.274016,-2.23346 0.823228,-2.9126 0.549213,-0.679134 1.33937,-1.01811 2.36811,-1.01811 1.00394,0 1.81181,0.335433 2.42598,1.00512 0.614173,0.670866 0.92126,1.55079 0.92126,2.64094zm-1.91929 -0.662598c-0.0519685,-0.976772 -0.506693,-1.46575 -1.36299,-1.46575 -0.864567,0 -1.34528,0.488976 -1.43976,1.46575l2.80276 0zm14.9055 4.16575l-2.04921 0 -0.662598 -0.804331c-0.414567,0.354331 -0.791339,0.605906 -1.12913,0.752362 -0.432283,0.199606 -0.916535,0.298819 -1.45276,0.298819 -0.864567,0 -1.56614,-0.225591 -2.10236,-0.675591 -0.596457,-0.510236 -0.895276,-1.24134 -0.895276,-2.19213 0,-1.06417 0.670866,-1.9252 2.01142,-2.58189 -0.432283,-0.545669 -0.713386,-0.960236 -0.843307,-1.24606 -0.112205,-0.233858 -0.168898,-0.505512 -0.168898,-0.817323 0,-0.597638 0.242126,-1.11142 0.726378,-1.5437 0.485433,-0.433465 1.09961,-0.649606 1.84252,-0.649606 0.744094,0 1.31575,0.233858 1.71378,0.700394 0.336614,0.405118 0.505512,0.907087 0.505512,1.50354 0,0.715748 -0.517323,1.42559 -1.55079,2.12598l1.42087 1.76929c0.294094,-0.337795 0.454724,-0.839764 0.480709,-1.50591l1.45276 0c-0.0259843,1.15039 -0.346063,2.06575 -0.957874,2.74843l1.65827 2.11772zm-4.07362 -7.44803c0,-0.372047 -0.242126,-0.55748 -0.727559,-0.55748 -0.518504,0 -0.778346,0.20315 -0.778346,0.609449 0,0.259843 0.080315,0.484252 0.240945,0.674409 0.159449,0.190157 0.32126,0.381496 0.486614,0.571654 0.344882,-0.18189 0.565748,-0.355512 0.661417,-0.519685 0.0779528,-0.138189 0.116929,-0.398031 0.116929,-0.778346zm0.388583 5.47559l-1.69961 -2.14134c-0.614173,0.36378 -0.94252,0.566929 -0.98622,0.61063 -0.164173,0.155906 -0.24685,0.414567 -0.24685,0.778346 0,0.414567 0.16063,0.773622 0.480709,1.07717 0.285827,0.276378 0.592913,0.414567 0.92126,0.414567 0.510236,0 1.02047,-0.245669 1.53071,-0.73937zm15.4287 -5.86535l-2.76378 0 0 7.8378 -1.94646 0 0 -7.8378 -2.86772 0 0 -1.62165 7.57795 0 0 1.62165zm6.99449 4.33465c0,0.207874 -0.0129921,0.393307 -0.0377953,0.55748l-4.65827 0c-0.0177165,0.0519685 -0.0259843,0.134646 -0.0259843,0.24685 0,0.458268 0.140551,0.827953 0.422835,1.10906 0.283465,0.281102 0.651969,0.421654 1.10551,0.421654 0.301181,0 0.579921,-0.0862205 0.837402,-0.258661 0.231496,-0.165354 0.375591,-0.350787 0.437008,-0.558661l1.84252 0c-0.243307,0.683858 -0.668504,1.23307 -1.27913,1.64764 -0.609449,0.415748 -1.29094,0.623622 -2.04331,0.623622 -0.838583,0 -1.5437,-0.264567 -2.11535,-0.791339 -0.682677,-0.63189 -1.02402,-1.53543 -1.02402,-2.71299 0,-1.2626 0.274016,-2.23346 0.823228,-2.9126 0.549213,-0.679134 1.33937,-1.01811 2.36811,-1.01811 1.00394,0 1.81181,0.335433 2.42598,1.00512 0.614173,0.670866 0.92126,1.55079 0.92126,2.64094zm-1.91929 -0.662598c-0.0519685,-0.976772 -0.506693,-1.46575 -1.36299,-1.46575 -0.864567,0 -1.34528,0.488976 -1.43976,1.46575l2.80276 0zm9.10748 4.16575l-1.93228 0c-0.0874016,-0.138189 -0.152362,-0.367323 -0.194882,-0.687402 -0.666142,0.666142 -1.41496,0.999213 -2.24528,0.999213 -0.674409,0 -1.18937,-0.188976 -1.5437,-0.564567 -0.354331,-0.376772 -0.532677,-0.91063 -0.532677,-1.60276 0,-0.570472 0.168898,-1.05945 0.506693,-1.46575 0.337795,-0.40748 0.791339,-0.65315 1.36181,-0.740551 0.26811,-0.034252 0.722835,-0.0944882 1.36299,-0.180709 0.380315,-0.0614173 0.655512,-0.153543 0.824409,-0.279921 0.167717,-0.125197 0.261024,-0.325984 0.27874,-0.602362 0.0259843,-0.475984 -0.350787,-0.714567 -1.12913,-0.714567 -0.812598,0 -1.23307,0.381496 -1.25906,1.14213l-1.72559 0c0.0354331,-0.830315 0.283465,-1.44685 0.746457,-1.84843 0.462992,-0.402756 1.18701,-0.603543 2.17323,-0.603543 1.93819,0 2.90669,0.747638 2.90669,2.24409l0 3.87992c0,0.302362 0.133465,0.566929 0.401575,0.791339l0 0.233858zm-2.11417 -3.0626l0 -0.271654c-0.262205,0.146457 -0.525591,0.237402 -0.796063,0.271654 -0.634252,0.0779528 -1.05945,0.173622 -1.27795,0.285827 -0.304724,0.147638 -0.455906,0.406299 -0.455906,0.778346 0,0.53622 0.334252,0.804331 1.00276,0.804331 1.01811,0 1.52717,-0.622441 1.52717,-1.8685zm13.2213 3.0626l-1.81654 0 0 -4.89213c0,-0.146457 -0.0779528,-0.28937 -0.232677,-0.427559 -0.199606,-0.18189 -0.467717,-0.272835 -0.805512,-0.272835 -0.294094,0 -0.565748,0.122835 -0.817323,0.369685 -0.250394,0.24685 -0.375591,0.512598 -0.375591,0.798425l0 4.42441 -1.81654 0 0 -4.75984c0,-0.216142 -0.0826772,-0.403937 -0.24685,-0.559843 -0.190157,-0.18189 -0.454724,-0.272835 -0.791339,-0.272835 -0.329528,0 -0.61063,0.116929 -0.843307,0.350787 -0.233858,0.235039 -0.350787,0.50315 -0.350787,0.806693l0 4.43504 -1.81654 0 0 -7.03228 1.81654 0 0 1.02402c0.320079,-0.432283 0.616535,-0.729921 0.88937,-0.895276 0.271654,-0.164173 0.594094,-0.245669 0.966142,-0.245669 0.804331,0 1.46575,0.341339 1.98543,1.0252 0.466535,-0.683858 1.11969,-1.0252 1.95945,-1.0252 0.682677,0 1.22362,0.164173 1.62165,0.49252 0.45,0.354331 0.674409,0.882283 0.674409,1.58268l0 5.07402zm7.59213 -2.14134c0,0.727559 -0.26811,1.31693 -0.805512,1.77165 -0.53622,0.453543 -1.24488,0.681496 -2.12717,0.681496 -1.08189,0 -1.91457,-0.205512 -2.49803,-0.616535 -0.583465,-0.411024 -0.897638,-0.99685 -0.941339,-1.75866l1.79055 0c0.069685,0.355512 0.298819,0.618898 0.688583,0.791339 0.302362,0.147638 0.661417,0.220866 1.07717,0.220866 0.26811,0 0.490157,-0.0732283 0.667323,-0.220866 0.178346,-0.148819 0.266929,-0.325984 0.266929,-0.53622 0,-0.206693 -0.0614173,-0.359055 -0.18189,-0.455906 -0.0956693,-0.069685 -0.304724,-0.151181 -0.634252,-0.24685l-2.05157 -0.590551c-0.908268,-0.26811 -1.36299,-0.877559 -1.36299,-1.82953 0,-0.666142 0.259843,-1.20236 0.778346,-1.60866 0.519685,-0.406299 1.2378,-0.609449 2.15433,-0.609449 0.890551,0 1.61102,0.216142 2.16024,0.648425 0.549213,0.432283 0.827953,1.0122 0.837402,1.73858l-1.75157 0c0.0259843,-0.302362 -0.080315,-0.54685 -0.318898,-0.733465 -0.237402,-0.185433 -0.594094,-0.27874 -1.07008,-0.27874 -0.259843,0 -0.488976,0.0602362 -0.687402,0.18189 -0.233858,0.129921 -0.350787,0.298819 -0.350787,0.505512 0,0.233858 0.0779528,0.372047 0.233858,0.415748l2.59488 0.713386c1.02047,0.277559 1.53189,0.882283 1.53189,1.81654z"/>
297- <path class="fil2" d="M90.2598 42.0283c2.9752,0 6.00945,-3.07677 6.00945,-6.3378 0,-3.25748 -2.88661,-6.5752 -5.86417,-6.5752 -2.97402,0 -5.93268,3.39803 -5.93268,6.65315 0,3.25984 2.8122,6.25984 5.7874,6.25984zm11.7201 18.8717c0,-3.17717 0,-6.54449 0,-9.77835 0,-3.1937 0.194882,-2.88898 0,-4.88622 -0.744094,-2.44606 -2.22874,-3.25748 -3.71693,-3.25748 -3.18543,0 -4.23543,0 -6.69449,0 -2.98701,0 -4.43976,-0.011811 -7.41614,-0.011811 -0.414567,0 -0.787795,-0.0106299 -1.13622,0.0011811 -0.347244,1.40787 -1.21299,2.69764 -2.32323,3.61654l4.48228 0c1.48819,0 2.97283,0.812598 3.71693,3.25866 0.134646,1.38189 0.0826772,1.66063 0.0377953,2.75787 0.12874,1.54252 -0.0366142,1.51772 -0.0377953,4.4185l0 0.0472441 0 0.106299 0 0.0448819 0 0.108661 0 0.0437008 0 0.109843 0 0.0413386 0 0.113386 0 0.0389764 0 0.114567 0 0.0377953 0 0.116929 0 0.0354331 0 0.11811 0 0.034252 0 0.120472 0 0.034252 0 0.119291 0 0.0330709 0 0.121654 0 0.0307087 0 0.124016 0 0.0283465 0 0.125197 0 0.0295276 0 0.125197 0 0.0271654 0 0.126378 0 0.0271654 0 0.127559 0 0.0271654 0 0.126378 0 0.0271654 0 0.127559 0 0.0259843 0 0.126378 0 0.0283465 0 0.126378 0 0.0271654 0 0.126378 0 0.0283465 0 0.126378 0 0.0271654 0 0.125197 0 0.0295276 0 0.124016 0 0.0295276 0 0.124016 0 0.0307087 0 0.124016 0 0.0295276 0 0.122835 0 0.0318898 0 0.121654 0 0.0318898 0 0.120472 0 0.034252 0 0.120472 0 0.0330709 0 0.119291 0 0.0354331 0 0.116929 0 0.0366142 0 0.116929 0 0.0377953 0 0.115748 0 0.0366142 0 0.114567 0 0.0401575 0 0.112205 0 0.0413386 0 0.111024 0 0.0437008 0 0.108661 0 0.0437008 0 0.106299 0 0.0484252 0 0.103937 0 0.0496063 0 0.100394 0 0.0531496 0 0.0992126 0 0.0531496 0 0.0968504 0 0.0566929 0 0.0933071 0 0.0590551 0 0.092126 0 0.0625984 0 0.0874016 0 0.0649606 0 0.0850394 0 0.0685039 0 0.0814961 0 0.0708661 0 0.0779528 0 0.0755906 0 0.0744094c0,0.525591 0.0106299,1.14213 0,1.78583l0 0.553937c0,3.34724 0.315354,8.7378 -4.80472,8.74961l0.0425197 17.8913c0,1.62638 0.794882,3.37677 3.03425,3.37677 2.23346,0 3.16417,-1.43386 3.16417,-3.0626 0,-2.9374 0,-15.7205 0,-17.1106 0,-1.6252 0.0519685,-2.41417 0.421654,-2.41417 0.374409,0 0.322441,0.788976 0.322441,2.41417 0,1.47165 0,14.0988 0,17.1106 0,1.01102 0.982677,3.21378 3.21496,3.21378 1.48937,0 2.85709,-2.09646 2.85709,-3.17953 0,-6.5185 0.0330709,-35.5169 0.0330709,-37.5661 0,-1.10906 -0.0885827,-2.52165 0.295276,-2.52165 0.377953,0 0.368504,0.382677 0.368504,1.9878 0,1.83425 0,3.69331 0,6.27047 0,4.28386 0.609449,5.40827 2.09764,5.40827 2.22874,0 2.04094,-4.18228 2.04094,-6.51378z"/>
298- <path class="fil2" d="M59.7402 42.0283c-2.9752,0 -6.00945,-3.07677 -6.00945,-6.3378 0,-3.25748 2.88661,-6.5752 5.86417,-6.5752 2.97402,0 5.93268,3.39803 5.93268,6.65315 0,3.25984 -2.8122,6.25984 -5.7874,6.25984zm-11.7201 18.8717c0,-3.17717 0,-6.54449 0,-9.77835 0,-3.1937 -0.194882,-2.88898 0,-4.88622 0.744094,-2.44606 2.22874,-3.25748 3.71693,-3.25748 3.18543,0 4.23543,0 6.69449,0 2.98701,0 4.43976,-0.011811 7.41614,-0.011811 0.414567,0 0.787795,-0.0106299 1.13622,0.0011811 0.347244,1.40787 1.21299,2.69764 2.32323,3.61654l-4.48228 0c-1.48819,0 -2.97283,0.812598 -3.71693,3.25866 -0.134646,1.38189 -0.0826772,1.66063 -0.0377953,2.75787 -0.12874,1.54252 0.0366142,1.51772 0.0377953,4.4185l0 0.0472441 0 0.106299 0 0.0448819 0 0.108661 0 0.0437008 0 0.109843 0 0.0413386 0 0.113386 0 0.0389764 0 0.114567 0 0.0377953 0 0.116929 0 0.0354331 0 0.11811 0 0.034252 0 0.120472 0 0.034252 0 0.119291 0 0.0330709 0 0.121654 0 0.0307087 0 0.124016 0 0.0283465 0 0.125197 0 0.0295276 0 0.125197 0 0.0271654 0 0.126378 0 0.0271654 0 0.127559 0 0.0271654 0 0.126378 0 0.0271654 0 0.127559 0 0.0259843 0 0.126378 0 0.0283465 0 0.126378 0 0.0271654 0 0.126378 0 0.0283465 0 0.126378 0 0.0271654 0 0.125197 0 0.0295276 0 0.124016 0 0.0295276 0 0.124016 0 0.0307087 0 0.124016 0 0.0295276 0 0.122835 0 0.0318898 0 0.121654 0 0.0318898 0 0.120472 0 0.034252 0 0.120472 0 0.0330709 0 0.119291 0 0.0354331 0 0.116929 0 0.0366142 0 0.116929 0 0.0377953 0 0.115748 0 0.0366142 0 0.114567 0 0.0401575 0 0.112205 0 0.0413386 0 0.111024 0 0.0437008 0 0.108661 0 0.0437008 0 0.106299 0 0.0484252 0 0.103937 0 0.0496063 0 0.100394 0 0.0531496 0 0.0992126 0 0.0531496 0 0.0968504 0 0.0566929 0 0.0933071 0 0.0590551 0 0.092126 0 0.0625984 0 0.0874016 0 0.0649606 0 0.0850394 0 0.0685039 0 0.0814961 0 0.0708661 0 0.0779528 0 0.0755906 0 0.0744094c0,0.525591 -0.0106299,1.14213 0,1.78583l0 0.553937c0,3.34724 -0.315354,8.7378 4.80472,8.74961l-0.0425197 17.8913c0,1.62638 -0.794882,3.37677 -3.03425,3.37677 -2.23346,0 -3.16417,-1.43386 -3.16417,-3.0626 0,-2.9374 0,-15.7205 0,-17.1106 0,-1.6252 -0.0519685,-2.41417 -0.421654,-2.41417 -0.374409,0 -0.322441,0.788976 -0.322441,2.41417 0,1.47165 0,14.0988 0,17.1106 0,1.01102 -0.982677,3.21378 -3.21496,3.21378 -1.48937,0 -2.85709,-2.09646 -2.85709,-3.17953 0,-6.5185 -0.0330709,-35.5169 -0.0330709,-37.5661 0,-1.10906 0.0885827,-2.52165 -0.295276,-2.52165 -0.377953,0 -0.368504,0.382677 -0.368504,1.9878 0,1.83425 0,3.69331 0,6.27047 0,4.28386 -0.609449,5.40827 -2.09764,5.40827 -2.22874,0 -2.04094,-4.18228 -2.04094,-6.51378z"/>
299- <path class="fil2" d="M74.6209 47.9988c2.97402,0 6.00709,-3.07795 6.00709,-6.33898 0,-3.25748 -2.88543,-6.5752 -5.86299,-6.5752 -2.97402,0 -5.93268,3.39803 -5.93268,6.65433 0,3.25866 2.81339,6.25984 5.78858,6.25984zm11.7189 18.8705c0,-3.17835 0,-6.54567 0,-9.77717 0,-3.19606 0.194882,-2.89016 0,-4.88858 -0.742913,-2.44488 -2.22992,-3.2563 -3.71811,-3.2563 -3.18307,0 -4.23543,0 -6.69213,0 -2.98937,0 -4.44094,-0.00944882 -7.41732,-0.00944882 -1.48583,0 -2.45551,-0.109843 -3.55866,0.987402 -1.50472,1.86969 -1.35591,2.03268 -1.35591,7.24724 0,2.57717 0,7.07362 0,9.94724 0,2.5748 -0.394488,6.57874 1.95709,6.57874 2.23465,0 2.21339,-1.74331 2.21339,-4.34409 0,-3.66969 -0.00826772,-4.6252 -0.00826772,-6.79488 0,-2.37402 -0.122835,-2.77441 0.311811,-2.77441 0.437008,0 0.433465,0.0318898 0.433465,2.55118 0,2.33622 -0.0153543,35.2169 -0.0153543,37.1173 0,1.62992 0.794882,3.37913 3.03425,3.37913 2.23346,0 3.16654,-1.43622 3.16654,-3.06378 0,-2.93622 0,-15.7193 0,-17.1083 0,-1.62756 0.0484252,-2.41654 0.41811,-2.41654 0.375591,0 0.325984,0.788976 0.325984,2.41654 0,1.47047 0,14.0965 0,17.1083 0,1.0122 0.981496,3.21378 3.21142,3.21378 1.49055,0 2.85827,-2.09409 2.85827,-3.17953 0,-6.51614 0.034252,-35.5146 0.034252,-37.565 0,-1.10906 -0.0897638,-2.52047 0.292913,-2.52047 0.379134,0 0.370866,0.381496 0.370866,1.98543 0,1.83543 0,3.69449 0,6.27047 0,4.2874 0.609449,5.40945 2.09528,5.40945 2.2311,0 2.04213,-4.1811 2.04213,-6.51378z"/>
300- </g>
301-</svg>
302
303=== removed file 'lib/canonical/launchpad/icing-sources/navigation-menu-groove.svg'
304--- lib/canonical/launchpad/icing-sources/navigation-menu-groove.svg 2008-07-03 18:51:41 +0000
305+++ lib/canonical/launchpad/icing-sources/navigation-menu-groove.svg 1970-01-01 00:00:00 +0000
306@@ -1,92 +0,0 @@
307-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
308-<!-- Created with Inkscape (http://www.inkscape.org/) -->
309-<svg
310- xmlns:dc="http://purl.org/dc/elements/1.1/"
311- xmlns:cc="http://creativecommons.org/ns#"
312- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
313- xmlns:svg="http://www.w3.org/2000/svg"
314- xmlns="http://www.w3.org/2000/svg"
315- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
316- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
317- width="1"
318- height="2"
319- id="svg2"
320- sodipodi:version="0.32"
321- inkscape:version="0.46"
322- version="1.0"
323- sodipodi:docname="navigation-menu-groove.svg"
324- inkscape:output_extension="org.inkscape.output.svg.inkscape"
325- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-launchpad-2.0/lib/canonical/launchpad/images/navigation-menu-groove.png"
326- inkscape:export-xdpi="90"
327- inkscape:export-ydpi="90">
328- <defs
329- id="defs4">
330- <inkscape:perspective
331- sodipodi:type="inkscape:persp3d"
332- inkscape:vp_x="0 : 526.18109 : 1"
333- inkscape:vp_y="0 : 1000 : 0"
334- inkscape:vp_z="744.09448 : 526.18109 : 1"
335- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
336- id="perspective10" />
337- </defs>
338- <sodipodi:namedview
339- id="base"
340- pagecolor="#ffffff"
341- bordercolor="#666666"
342- borderopacity="1.0"
343- gridtolerance="10000"
344- guidetolerance="10"
345- objecttolerance="10"
346- inkscape:pageopacity="0"
347- inkscape:pageshadow="2"
348- inkscape:zoom="255"
349- inkscape:cx="0.4254902"
350- inkscape:cy="1"
351- inkscape:document-units="px"
352- inkscape:current-layer="layer1"
353- showgrid="true"
354- inkscape:window-width="741"
355- inkscape:window-height="644"
356- inkscape:window-x="0"
357- inkscape:window-y="25">
358- <inkscape:grid
359- type="xygrid"
360- id="grid2383"
361- visible="true"
362- enabled="true" />
363- </sodipodi:namedview>
364- <metadata
365- id="metadata7">
366- <rdf:RDF>
367- <cc:Work
368- rdf:about="">
369- <dc:format>image/svg+xml</dc:format>
370- <dc:type
371- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
372- </cc:Work>
373- </rdf:RDF>
374- </metadata>
375- <g
376- inkscape:label="Layer 1"
377- inkscape:groupmode="layer"
378- id="layer1">
379- <rect
380- style="fill:#dddddd;fill-opacity:0.5;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
381- id="rect2385"
382- width="1"
383- height="1"
384- x="0"
385- y="-2"
386- transform="scale(1,-1)"
387- inkscape:export-xdpi="90"
388- inkscape:export-ydpi="90" />
389- <rect
390- style="fill:#000000;fill-opacity:0.25;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078000000000"
391- id="rect3157"
392- width="1"
393- height="1"
394- x="0"
395- y="-1"
396- transform="scale(1,-1)" />
397- </g>
398-</svg>
399
400=== removed file 'lib/canonical/launchpad/icing-sources/navigation-n.svg'
401--- lib/canonical/launchpad/icing-sources/navigation-n.svg 2008-07-01 12:34:09 +0000
402+++ lib/canonical/launchpad/icing-sources/navigation-n.svg 1970-01-01 00:00:00 +0000
403@@ -1,118 +0,0 @@
404-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
405-<!-- Created with Inkscape (http://www.inkscape.org/) -->
406-<svg
407- xmlns:dc="http://purl.org/dc/elements/1.1/"
408- xmlns:cc="http://creativecommons.org/ns#"
409- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
410- xmlns:svg="http://www.w3.org/2000/svg"
411- xmlns="http://www.w3.org/2000/svg"
412- xmlns:xlink="http://www.w3.org/1999/xlink"
413- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
414- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
415- width="1"
416- height="4"
417- id="svg2"
418- sodipodi:version="0.32"
419- inkscape:version="0.46"
420- version="1.0"
421- sodipodi:docname="navigation-top-border-and-gradient.svg"
422- inkscape:output_extension="org.inkscape.output.svg.inkscape"
423- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-launchpad-2.0/lib/canonical/launchpad/images/navigation-top-border-and-gradient.png"
424- inkscape:export-xdpi="90"
425- inkscape:export-ydpi="90">
426- <defs
427- id="defs4">
428- <linearGradient
429- id="linearGradient3163">
430- <stop
431- style="stop-color:#ffffff;stop-opacity:1;"
432- offset="0"
433- id="stop3165" />
434- <stop
435- style="stop-color:#ffffff;stop-opacity:0;"
436- offset="1"
437- id="stop3167" />
438- </linearGradient>
439- <inkscape:perspective
440- sodipodi:type="inkscape:persp3d"
441- inkscape:vp_x="0 : 526.18109 : 1"
442- inkscape:vp_y="0 : 1000 : 0"
443- inkscape:vp_z="744.09448 : 526.18109 : 1"
444- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
445- id="perspective10" />
446- <linearGradient
447- inkscape:collect="always"
448- xlink:href="#linearGradient3163"
449- id="linearGradient3169"
450- x1="0"
451- y1="1"
452- x2="0"
453- y2="4"
454- gradientUnits="userSpaceOnUse" />
455- </defs>
456- <sodipodi:namedview
457- id="base"
458- pagecolor="#ff0000"
459- bordercolor="#666666"
460- borderopacity="1.0"
461- gridtolerance="10000"
462- guidetolerance="10"
463- objecttolerance="10"
464- inkscape:pageopacity="0"
465- inkscape:pageshadow="2"
466- inkscape:zoom="139.75"
467- inkscape:cx="0.49284436"
468- inkscape:cy="2"
469- inkscape:document-units="px"
470- inkscape:current-layer="layer1"
471- showgrid="true"
472- borderlayer="false"
473- inkscape:window-width="1024"
474- inkscape:window-height="693"
475- inkscape:window-x="0"
476- inkscape:window-y="25">
477- <inkscape:grid
478- type="xygrid"
479- id="grid2385"
480- visible="true"
481- enabled="true"
482- empspacing="1" />
483- </sodipodi:namedview>
484- <metadata
485- id="metadata7">
486- <rdf:RDF>
487- <cc:Work
488- rdf:about="">
489- <dc:format>image/svg+xml</dc:format>
490- <dc:type
491- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
492- </cc:Work>
493- </rdf:RDF>
494- </metadata>
495- <g
496- inkscape:label="Layer 1"
497- inkscape:groupmode="layer"
498- id="layer1">
499- <rect
500- style="fill:#000000;fill-opacity:0.25098039;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
501- id="rect2387"
502- width="40"
503- height="0"
504- x="520"
505- y="-796" />
506- <rect
507- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078000000000"
508- id="rect2389"
509- width="1"
510- height="1"
511- x="0"
512- y="0" />
513- <rect
514- style="fill:url(#linearGradient3169);fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078000000000"
515- id="rect3161"
516- width="1"
517- height="3"
518- x="0"
519- y="1" />
520- </g>
521-</svg>
522
523=== removed file 'lib/canonical/launchpad/icing-sources/navigation-ne-e-normal.svg'
524--- lib/canonical/launchpad/icing-sources/navigation-ne-e-normal.svg 2008-07-01 12:34:09 +0000
525+++ lib/canonical/launchpad/icing-sources/navigation-ne-e-normal.svg 1970-01-01 00:00:00 +0000
526@@ -1,208 +0,0 @@
527-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
528-<!-- Created with Inkscape (http://www.inkscape.org/) -->
529-<svg
530- xmlns:dc="http://purl.org/dc/elements/1.1/"
531- xmlns:cc="http://creativecommons.org/ns#"
532- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
533- xmlns:svg="http://www.w3.org/2000/svg"
534- xmlns="http://www.w3.org/2000/svg"
535- xmlns:xlink="http://www.w3.org/1999/xlink"
536- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
537- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
538- width="4"
539- height="300"
540- id="svg3191"
541- sodipodi:version="0.32"
542- inkscape:version="0.46"
543- version="1.0"
544- sodipodi:docname="navigation-ne-e.svg"
545- inkscape:output_extension="org.inkscape.output.svg.inkscape"
546- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-launchpad-2.0/lib/canonical/launchpad/images/navigation-ne-e.png"
547- inkscape:export-xdpi="90"
548- inkscape:export-ydpi="90">
549- <defs
550- id="defs3193">
551- <linearGradient
552- id="linearGradient6188">
553- <stop
554- id="stop6190"
555- offset="0"
556- style="stop-color:#eeeeee;stop-opacity:1;" />
557- <stop
558- id="stop6192"
559- offset="1"
560- style="stop-color:#cccccc;stop-opacity:1;" />
561- </linearGradient>
562- <linearGradient
563- id="linearGradient3716">
564- <stop
565- style="stop-color:#eeeeee;stop-opacity:1;"
566- offset="0"
567- id="stop3718" />
568- <stop
569- style="stop-color:#ffffff;stop-opacity:1;"
570- offset="1"
571- id="stop3720" />
572- </linearGradient>
573- <inkscape:perspective
574- sodipodi:type="inkscape:persp3d"
575- inkscape:vp_x="0 : 526.18109 : 1"
576- inkscape:vp_y="0 : 1000 : 0"
577- inkscape:vp_z="744.09448 : 526.18109 : 1"
578- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
579- id="perspective3199" />
580- <radialGradient
581- inkscape:collect="always"
582- xlink:href="#linearGradient3716"
583- id="radialGradient3722"
584- cx="4"
585- cy="4"
586- fx="4"
587- fy="4"
588- r="3"
589- gradientUnits="userSpaceOnUse"
590- gradientTransform="matrix(0,-1,1,0,0,8)" />
591- <linearGradient
592- inkscape:collect="always"
593- xlink:href="#linearGradient6188"
594- id="linearGradient3740"
595- x1="4"
596- y1="299"
597- x2="1"
598- y2="299"
599- gradientUnits="userSpaceOnUse"
600- gradientTransform="matrix(1,0,0,148,-4.0000001,-44100)" />
601- <radialGradient
602- inkscape:collect="always"
603- xlink:href="#linearGradient3716"
604- id="radialGradient6182"
605- gradientUnits="userSpaceOnUse"
606- gradientTransform="matrix(0,-1,1,0,0,8)"
607- cx="4"
608- cy="4"
609- fx="4"
610- fy="4"
611- r="3" />
612- <radialGradient
613- inkscape:collect="always"
614- xlink:href="#linearGradient6188"
615- id="radialGradient6186"
616- gradientUnits="userSpaceOnUse"
617- gradientTransform="matrix(0,-1,1,0,0,8)"
618- cx="4"
619- cy="4"
620- fx="4"
621- fy="4"
622- r="3" />
623- </defs>
624- <sodipodi:namedview
625- id="base"
626- pagecolor="#ffffff"
627- bordercolor="#666666"
628- borderopacity="1.0"
629- gridtolerance="10000"
630- guidetolerance="10"
631- objecttolerance="10"
632- inkscape:pageopacity="0.0"
633- inkscape:pageshadow="2"
634- inkscape:zoom="63.75"
635- inkscape:cx="3.4585707"
636- inkscape:cy="296.10879"
637- inkscape:document-units="px"
638- inkscape:current-layer="layer1"
639- showgrid="true"
640- inkscape:window-width="1024"
641- inkscape:window-height="693"
642- inkscape:window-x="0"
643- inkscape:window-y="25"
644- inkscape:snap-bbox="true">
645- <inkscape:grid
646- type="xygrid"
647- id="grid3201"
648- visible="true"
649- enabled="true"
650- empspacing="4" />
651- </sodipodi:namedview>
652- <metadata
653- id="metadata3196">
654- <rdf:RDF>
655- <cc:Work
656- rdf:about="">
657- <dc:format>image/svg+xml</dc:format>
658- <dc:type
659- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
660- </cc:Work>
661- </rdf:RDF>
662- </metadata>
663- <g
664- inkscape:label="Layer 1"
665- inkscape:groupmode="layer"
666- id="layer1">
667- <path
668- sodipodi:type="arc"
669- style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
670- id="path6178"
671- sodipodi:cx="3.5"
672- sodipodi:cy="0"
673- sodipodi:rx="2.5"
674- sodipodi:ry="2"
675- d="M 6,0 A 2.5,2 0 0 1 3.4949908,1.999996 L 3.5,0 z"
676- transform="matrix(1.2,0,0,-1.5,-4.1939889,4)"
677- sodipodi:start="0"
678- sodipodi:end="1.5728" />
679- <path
680- sodipodi:type="arc"
681- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
682- id="path3203"
683- sodipodi:cx="4"
684- sodipodi:cy="4"
685- sodipodi:rx="4"
686- sodipodi:ry="4"
687- d="M 8,4 A 4,4 0 0 1 4.0000001,8 L 4,4 z"
688- sodipodi:start="0"
689- sodipodi:end="1.5707963"
690- transform="matrix(1,0,0,-1,-4,8)" />
691- <path
692- sodipodi:type="arc"
693- style="fill:url(#radialGradient6182);fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
694- id="path3714"
695- sodipodi:cx="4"
696- sodipodi:cy="4"
697- sodipodi:rx="3"
698- sodipodi:ry="3"
699- d="M 6.1213204,6.1213203 A 3,3 0 0 1 4,7 L 4,4 z"
700- sodipodi:start="0.78539816"
701- sodipodi:end="1.5707963"
702- transform="matrix(1,0,0,-1,-4,8)" />
703- <rect
704- style="fill:url(#linearGradient3740);fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
705- id="rect3732"
706- width="3"
707- height="296"
708- x="-3"
709- y="4"
710- transform="scale(-1,1)" />
711- <rect
712- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
713- id="rect3730"
714- width="1"
715- height="296"
716- x="-4"
717- y="4"
718- inkscape:export-xdpi="90"
719- inkscape:export-ydpi="90"
720- transform="scale(-1,1)" />
721- <path
722- transform="matrix(0,-1,1,0,-4,8)"
723- sodipodi:end="1.5707963"
724- sodipodi:start="0.78539816"
725- d="M 6.1213204,6.1213203 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
726- sodipodi:ry="3"
727- sodipodi:rx="3"
728- sodipodi:cy="4"
729- sodipodi:cx="4"
730- id="path6184"
731- style="fill:url(#radialGradient6186);fill-opacity:1.0;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078000000000"
732- sodipodi:type="arc" />
733- </g>
734-</svg>
735
736=== removed file 'lib/canonical/launchpad/icing-sources/navigation-ne-e-selected.svg'
737--- lib/canonical/launchpad/icing-sources/navigation-ne-e-selected.svg 2008-07-01 13:07:09 +0000
738+++ lib/canonical/launchpad/icing-sources/navigation-ne-e-selected.svg 1970-01-01 00:00:00 +0000
739@@ -1,208 +0,0 @@
740-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
741-<!-- Created with Inkscape (http://www.inkscape.org/) -->
742-<svg
743- xmlns:dc="http://purl.org/dc/elements/1.1/"
744- xmlns:cc="http://creativecommons.org/ns#"
745- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
746- xmlns:svg="http://www.w3.org/2000/svg"
747- xmlns="http://www.w3.org/2000/svg"
748- xmlns:xlink="http://www.w3.org/1999/xlink"
749- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
750- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
751- width="4"
752- height="300"
753- id="svg3191"
754- sodipodi:version="0.32"
755- inkscape:version="0.46"
756- version="1.0"
757- sodipodi:docname="navigation-ne-e-selected.svg"
758- inkscape:output_extension="org.inkscape.output.svg.inkscape"
759- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-2.0-5-nav-menu/lib/canonical/launchpad/icing/navigation-ne-e-selected.png"
760- inkscape:export-xdpi="90"
761- inkscape:export-ydpi="90">
762- <defs
763- id="defs3193">
764- <linearGradient
765- id="linearGradient6188">
766- <stop
767- id="stop6190"
768- offset="0"
769- style="stop-color:#dddddd;stop-opacity:1;" />
770- <stop
771- id="stop6192"
772- offset="1"
773- style="stop-color:#cccccc;stop-opacity:1;" />
774- </linearGradient>
775- <linearGradient
776- id="linearGradient3716">
777- <stop
778- style="stop-color:#eeeeee;stop-opacity:1;"
779- offset="0"
780- id="stop3718" />
781- <stop
782- style="stop-color:#ffffff;stop-opacity:1;"
783- offset="1"
784- id="stop3720" />
785- </linearGradient>
786- <inkscape:perspective
787- sodipodi:type="inkscape:persp3d"
788- inkscape:vp_x="0 : 526.18109 : 1"
789- inkscape:vp_y="0 : 1000 : 0"
790- inkscape:vp_z="744.09448 : 526.18109 : 1"
791- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
792- id="perspective3199" />
793- <radialGradient
794- inkscape:collect="always"
795- xlink:href="#linearGradient3716"
796- id="radialGradient3722"
797- cx="4"
798- cy="4"
799- fx="4"
800- fy="4"
801- r="3"
802- gradientUnits="userSpaceOnUse"
803- gradientTransform="matrix(0,-1,1,0,0,8)" />
804- <linearGradient
805- inkscape:collect="always"
806- xlink:href="#linearGradient6188"
807- id="linearGradient3740"
808- x1="4"
809- y1="299"
810- x2="1"
811- y2="299"
812- gradientUnits="userSpaceOnUse"
813- gradientTransform="matrix(1,0,0,148,-4.0000001,-44100)" />
814- <radialGradient
815- inkscape:collect="always"
816- xlink:href="#linearGradient3716"
817- id="radialGradient6182"
818- gradientUnits="userSpaceOnUse"
819- gradientTransform="matrix(0,-1,1,0,0,8)"
820- cx="4"
821- cy="4"
822- fx="4"
823- fy="4"
824- r="3" />
825- <radialGradient
826- inkscape:collect="always"
827- xlink:href="#linearGradient6188"
828- id="radialGradient6186"
829- gradientUnits="userSpaceOnUse"
830- gradientTransform="matrix(0,-1,1,0,0,8)"
831- cx="4"
832- cy="4"
833- fx="4"
834- fy="4"
835- r="3" />
836- </defs>
837- <sodipodi:namedview
838- id="base"
839- pagecolor="#ffffff"
840- bordercolor="#666666"
841- borderopacity="1.0"
842- gridtolerance="10000"
843- guidetolerance="10"
844- objecttolerance="10"
845- inkscape:pageopacity="0.0"
846- inkscape:pageshadow="2"
847- inkscape:zoom="63.75"
848- inkscape:cx="0.77621776"
849- inkscape:cy="297.01703"
850- inkscape:document-units="px"
851- inkscape:current-layer="layer1"
852- showgrid="true"
853- inkscape:window-width="1024"
854- inkscape:window-height="693"
855- inkscape:window-x="0"
856- inkscape:window-y="49"
857- inkscape:snap-bbox="true">
858- <inkscape:grid
859- type="xygrid"
860- id="grid3201"
861- visible="true"
862- enabled="true"
863- empspacing="4" />
864- </sodipodi:namedview>
865- <metadata
866- id="metadata3196">
867- <rdf:RDF>
868- <cc:Work
869- rdf:about="">
870- <dc:format>image/svg+xml</dc:format>
871- <dc:type
872- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
873- </cc:Work>
874- </rdf:RDF>
875- </metadata>
876- <g
877- inkscape:label="Layer 1"
878- inkscape:groupmode="layer"
879- id="layer1">
880- <path
881- sodipodi:type="arc"
882- style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
883- id="path6178"
884- sodipodi:cx="3.5"
885- sodipodi:cy="0"
886- sodipodi:rx="2.5"
887- sodipodi:ry="2"
888- d="M 6,0 A 2.5,2 0 0 1 3.4949908,1.999996 L 3.5,0 z"
889- transform="matrix(1.2,0,0,-1.5,-4.1939889,4)"
890- sodipodi:start="0"
891- sodipodi:end="1.5728" />
892- <path
893- sodipodi:type="arc"
894- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
895- id="path3203"
896- sodipodi:cx="4"
897- sodipodi:cy="4"
898- sodipodi:rx="4"
899- sodipodi:ry="4"
900- d="M 8,4 A 4,4 0 0 1 4.0000001,8 L 4,4 z"
901- sodipodi:start="0"
902- sodipodi:end="1.5707963"
903- transform="matrix(1,0,0,-1,-4,8)" />
904- <path
905- sodipodi:type="arc"
906- style="fill:url(#radialGradient6182);fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
907- id="path3714"
908- sodipodi:cx="4"
909- sodipodi:cy="4"
910- sodipodi:rx="3"
911- sodipodi:ry="3"
912- d="M 6.1213204,6.1213203 A 3,3 0 0 1 4,7 L 4,4 z"
913- sodipodi:start="0.78539816"
914- sodipodi:end="1.5707963"
915- transform="matrix(1,0,0,-1,-4,8)" />
916- <rect
917- style="fill:url(#linearGradient3740);fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
918- id="rect3732"
919- width="3"
920- height="296"
921- x="-3"
922- y="4"
923- transform="scale(-1,1)" />
924- <rect
925- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
926- id="rect3730"
927- width="1"
928- height="296"
929- x="-4"
930- y="4"
931- inkscape:export-xdpi="90"
932- inkscape:export-ydpi="90"
933- transform="scale(-1,1)" />
934- <path
935- transform="matrix(0,-1,1,0,-4,8)"
936- sodipodi:end="1.5707963"
937- sodipodi:start="0.78539816"
938- d="M 6.1213204,6.1213203 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
939- sodipodi:ry="3"
940- sodipodi:rx="3"
941- sodipodi:cy="4"
942- sodipodi:cx="4"
943- id="path6184"
944- style="fill:url(#radialGradient6186);fill-opacity:1.0;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078000000000"
945- sodipodi:type="arc" />
946- </g>
947-</svg>
948
949=== removed file 'lib/canonical/launchpad/icing-sources/navigation-nw-w-normal.svg'
950--- lib/canonical/launchpad/icing-sources/navigation-nw-w-normal.svg 2008-07-01 13:07:09 +0000
951+++ lib/canonical/launchpad/icing-sources/navigation-nw-w-normal.svg 1970-01-01 00:00:00 +0000
952@@ -1,182 +0,0 @@
953-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
954-<!-- Created with Inkscape (http://www.inkscape.org/) -->
955-<svg
956- xmlns:dc="http://purl.org/dc/elements/1.1/"
957- xmlns:cc="http://creativecommons.org/ns#"
958- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
959- xmlns:svg="http://www.w3.org/2000/svg"
960- xmlns="http://www.w3.org/2000/svg"
961- xmlns:xlink="http://www.w3.org/1999/xlink"
962- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
963- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
964- width="4"
965- height="300"
966- id="svg3191"
967- sodipodi:version="0.32"
968- inkscape:version="0.46"
969- version="1.0"
970- sodipodi:docname="navigation-nw-w-normal.svg"
971- inkscape:output_extension="org.inkscape.output.svg.inkscape"
972- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-2.0-5-nav-menu/lib/canonical/launchpad/icing/navigation-nw-w-normal.png"
973- inkscape:export-xdpi="90"
974- inkscape:export-ydpi="90">
975- <defs
976- id="defs3193">
977- <linearGradient
978- id="linearGradient3716">
979- <stop
980- style="stop-color:#eeeeee;stop-opacity:1;"
981- offset="0"
982- id="stop3718" />
983- <stop
984- style="stop-color:#ffffff;stop-opacity:1;"
985- offset="1"
986- id="stop3720" />
987- </linearGradient>
988- <inkscape:perspective
989- sodipodi:type="inkscape:persp3d"
990- inkscape:vp_x="0 : 526.18109 : 1"
991- inkscape:vp_y="0 : 1000 : 0"
992- inkscape:vp_z="744.09448 : 526.18109 : 1"
993- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
994- id="perspective3199" />
995- <radialGradient
996- inkscape:collect="always"
997- xlink:href="#linearGradient3716"
998- id="radialGradient3722"
999- cx="4"
1000- cy="4"
1001- fx="4"
1002- fy="4"
1003- r="3"
1004- gradientUnits="userSpaceOnUse"
1005- gradientTransform="matrix(0,-1,1,0,0,8)" />
1006- <radialGradient
1007- inkscape:collect="always"
1008- xlink:href="#linearGradient3716"
1009- id="radialGradient3728"
1010- gradientUnits="userSpaceOnUse"
1011- gradientTransform="matrix(0,-1,1,0,0,8)"
1012- cx="4"
1013- cy="4"
1014- fx="4"
1015- fy="4"
1016- r="3" />
1017- <linearGradient
1018- inkscape:collect="always"
1019- xlink:href="#linearGradient3716"
1020- id="linearGradient3740"
1021- x1="4"
1022- y1="299"
1023- x2="1"
1024- y2="299"
1025- gradientUnits="userSpaceOnUse"
1026- gradientTransform="matrix(1,0,0,148,0,-44100)" />
1027- </defs>
1028- <sodipodi:namedview
1029- id="base"
1030- pagecolor="#ffffff"
1031- bordercolor="#666666"
1032- borderopacity="1.0"
1033- gridtolerance="10000"
1034- guidetolerance="10"
1035- objecttolerance="10"
1036- inkscape:pageopacity="0.0"
1037- inkscape:pageshadow="2"
1038- inkscape:zoom="63.75"
1039- inkscape:cx="0.77621776"
1040- inkscape:cy="296.10879"
1041- inkscape:document-units="px"
1042- inkscape:current-layer="layer1"
1043- showgrid="true"
1044- inkscape:window-width="1024"
1045- inkscape:window-height="693"
1046- inkscape:window-x="0"
1047- inkscape:window-y="49"
1048- inkscape:snap-bbox="true">
1049- <inkscape:grid
1050- type="xygrid"
1051- id="grid3201"
1052- visible="true"
1053- enabled="true"
1054- empspacing="4" />
1055- </sodipodi:namedview>
1056- <metadata
1057- id="metadata3196">
1058- <rdf:RDF>
1059- <cc:Work
1060- rdf:about="">
1061- <dc:format>image/svg+xml</dc:format>
1062- <dc:type
1063- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
1064- </cc:Work>
1065- </rdf:RDF>
1066- </metadata>
1067- <g
1068- inkscape:label="Layer 1"
1069- inkscape:groupmode="layer"
1070- id="layer1">
1071- <path
1072- sodipodi:type="arc"
1073- style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
1074- id="path6178"
1075- sodipodi:cx="3.5"
1076- sodipodi:cy="0"
1077- sodipodi:rx="2.5"
1078- sodipodi:ry="2"
1079- d="M 6,0 A 2.5,2 0 0 1 3.4949908,1.999996 L 3.5,0 z"
1080- transform="matrix(-1.2,0,0,-1.5,8.193989,4)"
1081- sodipodi:start="0"
1082- sodipodi:end="1.5728" />
1083- <path
1084- sodipodi:type="arc"
1085- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
1086- id="path3203"
1087- sodipodi:cx="4"
1088- sodipodi:cy="4"
1089- sodipodi:rx="4"
1090- sodipodi:ry="4"
1091- d="M 8,4 A 4,4 0 0 1 4.0000001,8 L 4,4 z"
1092- sodipodi:start="0"
1093- sodipodi:end="1.5707963"
1094- transform="matrix(-1,0,0,-1,8.0000001,8)" />
1095- <path
1096- sodipodi:type="arc"
1097- style="fill:url(#radialGradient3728);fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
1098- id="path3714"
1099- sodipodi:cx="4"
1100- sodipodi:cy="4"
1101- sodipodi:rx="3"
1102- sodipodi:ry="3"
1103- d="M 7,4 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
1104- sodipodi:start="0"
1105- sodipodi:end="1.5707963"
1106- transform="matrix(-1,0,0,-1,8.0000001,8)"
1107- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-2.0-5-nav-menu/lib/canonical/launchpad/icing/navigation-nw-w-normal.png"
1108- inkscape:export-xdpi="90"
1109- inkscape:export-ydpi="90" />
1110- <rect
1111- style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
1112- id="rect6172"
1113- width="3"
1114- height="296"
1115- x="1"
1116- y="4" />
1117- <rect
1118- style="fill:url(#linearGradient3740);fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
1119- id="rect3732"
1120- width="3"
1121- height="296"
1122- x="1"
1123- y="4" />
1124- <rect
1125- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
1126- id="rect3730"
1127- width="1"
1128- height="296"
1129- x="0"
1130- y="4"
1131- inkscape:export-xdpi="90"
1132- inkscape:export-ydpi="90" />
1133- </g>
1134-</svg>
1135
1136=== removed file 'lib/canonical/launchpad/icing-sources/navigation-nw-w-selected.svg'
1137--- lib/canonical/launchpad/icing-sources/navigation-nw-w-selected.svg 2008-07-01 12:34:09 +0000
1138+++ lib/canonical/launchpad/icing-sources/navigation-nw-w-selected.svg 1970-01-01 00:00:00 +0000
1139@@ -1,179 +0,0 @@
1140-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
1141-<!-- Created with Inkscape (http://www.inkscape.org/) -->
1142-<svg
1143- xmlns:dc="http://purl.org/dc/elements/1.1/"
1144- xmlns:cc="http://creativecommons.org/ns#"
1145- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
1146- xmlns:svg="http://www.w3.org/2000/svg"
1147- xmlns="http://www.w3.org/2000/svg"
1148- xmlns:xlink="http://www.w3.org/1999/xlink"
1149- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
1150- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
1151- width="4"
1152- height="300"
1153- id="svg3191"
1154- sodipodi:version="0.32"
1155- inkscape:version="0.46"
1156- version="1.0"
1157- sodipodi:docname="navigation-nw-w.svg"
1158- inkscape:output_extension="org.inkscape.output.svg.inkscape"
1159- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-launchpad-2.0/lib/canonical/launchpad/images/navigation-top-left-border-and-gradient.png"
1160- inkscape:export-xdpi="90"
1161- inkscape:export-ydpi="90">
1162- <defs
1163- id="defs3193">
1164- <linearGradient
1165- id="linearGradient3716">
1166- <stop
1167- style="stop-color:#ffffff;stop-opacity:0;"
1168- offset="0"
1169- id="stop3718" />
1170- <stop
1171- style="stop-color:#ffffff;stop-opacity:1;"
1172- offset="1"
1173- id="stop3720" />
1174- </linearGradient>
1175- <inkscape:perspective
1176- sodipodi:type="inkscape:persp3d"
1177- inkscape:vp_x="0 : 526.18109 : 1"
1178- inkscape:vp_y="0 : 1000 : 0"
1179- inkscape:vp_z="744.09448 : 526.18109 : 1"
1180- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
1181- id="perspective3199" />
1182- <radialGradient
1183- inkscape:collect="always"
1184- xlink:href="#linearGradient3716"
1185- id="radialGradient3722"
1186- cx="4"
1187- cy="4"
1188- fx="4"
1189- fy="4"
1190- r="3"
1191- gradientUnits="userSpaceOnUse"
1192- gradientTransform="matrix(0,-1,1,0,0,8)" />
1193- <radialGradient
1194- inkscape:collect="always"
1195- xlink:href="#linearGradient3716"
1196- id="radialGradient3728"
1197- gradientUnits="userSpaceOnUse"
1198- gradientTransform="matrix(0,-1,1,0,0,8)"
1199- cx="4"
1200- cy="4"
1201- fx="4"
1202- fy="4"
1203- r="3" />
1204- <linearGradient
1205- inkscape:collect="always"
1206- xlink:href="#linearGradient3716"
1207- id="linearGradient3740"
1208- x1="4"
1209- y1="299"
1210- x2="1"
1211- y2="299"
1212- gradientUnits="userSpaceOnUse"
1213- gradientTransform="matrix(1,0,0,148,0,-44100)" />
1214- </defs>
1215- <sodipodi:namedview
1216- id="base"
1217- pagecolor="#ffffff"
1218- bordercolor="#666666"
1219- borderopacity="1.0"
1220- gridtolerance="10000"
1221- guidetolerance="10"
1222- objecttolerance="10"
1223- inkscape:pageopacity="0.0"
1224- inkscape:pageshadow="2"
1225- inkscape:zoom="63.75"
1226- inkscape:cx="3.4585707"
1227- inkscape:cy="296.10879"
1228- inkscape:document-units="px"
1229- inkscape:current-layer="layer1"
1230- showgrid="true"
1231- inkscape:window-width="1024"
1232- inkscape:window-height="693"
1233- inkscape:window-x="0"
1234- inkscape:window-y="25"
1235- inkscape:snap-bbox="true">
1236- <inkscape:grid
1237- type="xygrid"
1238- id="grid3201"
1239- visible="true"
1240- enabled="true"
1241- empspacing="4" />
1242- </sodipodi:namedview>
1243- <metadata
1244- id="metadata3196">
1245- <rdf:RDF>
1246- <cc:Work
1247- rdf:about="">
1248- <dc:format>image/svg+xml</dc:format>
1249- <dc:type
1250- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
1251- </cc:Work>
1252- </rdf:RDF>
1253- </metadata>
1254- <g
1255- inkscape:label="Layer 1"
1256- inkscape:groupmode="layer"
1257- id="layer1">
1258- <path
1259- sodipodi:type="arc"
1260- style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
1261- id="path6178"
1262- sodipodi:cx="3.5"
1263- sodipodi:cy="0"
1264- sodipodi:rx="2.5"
1265- sodipodi:ry="2"
1266- d="M 6,0 A 2.5,2 0 0 1 3.4949908,1.999996 L 3.5,0 z"
1267- transform="matrix(-1.2,0,0,-1.5,8.193989,4)"
1268- sodipodi:start="0"
1269- sodipodi:end="1.5728" />
1270- <path
1271- sodipodi:type="arc"
1272- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
1273- id="path3203"
1274- sodipodi:cx="4"
1275- sodipodi:cy="4"
1276- sodipodi:rx="4"
1277- sodipodi:ry="4"
1278- d="M 8,4 A 4,4 0 0 1 4.0000001,8 L 4,4 z"
1279- sodipodi:start="0"
1280- sodipodi:end="1.5707963"
1281- transform="matrix(-1,0,0,-1,8.0000001,8)" />
1282- <path
1283- sodipodi:type="arc"
1284- style="fill:url(#radialGradient3728);fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
1285- id="path3714"
1286- sodipodi:cx="4"
1287- sodipodi:cy="4"
1288- sodipodi:rx="3"
1289- sodipodi:ry="3"
1290- d="M 7,4 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
1291- sodipodi:start="0"
1292- sodipodi:end="1.5707963"
1293- transform="matrix(-1,0,0,-1,8.0000001,8)" />
1294- <rect
1295- style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
1296- id="rect6172"
1297- width="3"
1298- height="296"
1299- x="1"
1300- y="4" />
1301- <rect
1302- style="fill:url(#linearGradient3740);fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
1303- id="rect3732"
1304- width="3"
1305- height="296"
1306- x="1"
1307- y="4" />
1308- <rect
1309- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
1310- id="rect3730"
1311- width="1"
1312- height="296"
1313- x="0"
1314- y="4"
1315- inkscape:export-xdpi="90"
1316- inkscape:export-ydpi="90" />
1317- </g>
1318-</svg>
1319
1320=== removed file 'lib/canonical/launchpad/icing-sources/navigation-se-normal.svg'
1321--- lib/canonical/launchpad/icing-sources/navigation-se-normal.svg 2008-07-01 12:34:09 +0000
1322+++ lib/canonical/launchpad/icing-sources/navigation-se-normal.svg 1970-01-01 00:00:00 +0000
1323@@ -1,162 +0,0 @@
1324-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
1325-<!-- Created with Inkscape (http://www.inkscape.org/) -->
1326-<svg
1327- xmlns:dc="http://purl.org/dc/elements/1.1/"
1328- xmlns:cc="http://creativecommons.org/ns#"
1329- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
1330- xmlns:svg="http://www.w3.org/2000/svg"
1331- xmlns="http://www.w3.org/2000/svg"
1332- xmlns:xlink="http://www.w3.org/1999/xlink"
1333- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
1334- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
1335- width="4"
1336- height="4"
1337- id="svg3191"
1338- sodipodi:version="0.32"
1339- inkscape:version="0.46"
1340- version="1.0"
1341- sodipodi:docname="navigation-se-normal.svg"
1342- inkscape:output_extension="org.inkscape.output.svg.inkscape"
1343- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-launchpad-2.0/lib/canonical/launchpad/images/navigation-se-normal.png"
1344- inkscape:export-xdpi="90"
1345- inkscape:export-ydpi="90">
1346- <defs
1347- id="defs3193">
1348- <linearGradient
1349- id="linearGradient3716">
1350- <stop
1351- style="stop-color:#eeeeee;stop-opacity:1;"
1352- offset="0"
1353- id="stop3718" />
1354- <stop
1355- style="stop-color:#cccccc;stop-opacity:1;"
1356- offset="1"
1357- id="stop3720" />
1358- </linearGradient>
1359- <inkscape:perspective
1360- sodipodi:type="inkscape:persp3d"
1361- inkscape:vp_x="0 : 526.18109 : 1"
1362- inkscape:vp_y="0 : 1000 : 0"
1363- inkscape:vp_z="744.09448 : 526.18109 : 1"
1364- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
1365- id="perspective3199" />
1366- <radialGradient
1367- inkscape:collect="always"
1368- xlink:href="#linearGradient3716"
1369- id="radialGradient3722"
1370- cx="4"
1371- cy="4"
1372- fx="4"
1373- fy="4"
1374- r="3"
1375- gradientUnits="userSpaceOnUse"
1376- gradientTransform="matrix(0,-1,1,0,0,8)" />
1377- <radialGradient
1378- inkscape:collect="always"
1379- xlink:href="#linearGradient3716"
1380- id="radialGradient3728"
1381- gradientUnits="userSpaceOnUse"
1382- gradientTransform="matrix(0,-1,1,0,0,8)"
1383- cx="4"
1384- cy="4"
1385- fx="4"
1386- fy="4"
1387- r="3" />
1388- <linearGradient
1389- inkscape:collect="always"
1390- xlink:href="#linearGradient3716"
1391- id="linearGradient3740"
1392- x1="4"
1393- y1="299"
1394- x2="1"
1395- y2="299"
1396- gradientUnits="userSpaceOnUse"
1397- gradientTransform="matrix(1,0,0,148,0,-44100)" />
1398- <radialGradient
1399- inkscape:collect="always"
1400- xlink:href="#linearGradient3716"
1401- id="radialGradient2393"
1402- gradientUnits="userSpaceOnUse"
1403- gradientTransform="matrix(0,-1,1,0,0,8)"
1404- cx="4"
1405- cy="4"
1406- fx="4"
1407- fy="4"
1408- r="3" />
1409- </defs>
1410- <sodipodi:namedview
1411- id="base"
1412- pagecolor="#fafafa"
1413- bordercolor="#666666"
1414- borderopacity="1.0"
1415- gridtolerance="10000"
1416- guidetolerance="10"
1417- objecttolerance="10"
1418- inkscape:pageopacity="0"
1419- inkscape:pageshadow="2"
1420- inkscape:zoom="63.75"
1421- inkscape:cx="1.93832"
1422- inkscape:cy="2.9829748"
1423- inkscape:document-units="px"
1424- inkscape:current-layer="layer1"
1425- showgrid="true"
1426- inkscape:window-width="688"
1427- inkscape:window-height="690"
1428- inkscape:window-x="300"
1429- inkscape:window-y="25">
1430- <inkscape:grid
1431- type="xygrid"
1432- id="grid3201"
1433- visible="true"
1434- enabled="true"
1435- empspacing="4" />
1436- </sodipodi:namedview>
1437- <metadata
1438- id="metadata3196">
1439- <rdf:RDF>
1440- <cc:Work
1441- rdf:about="">
1442- <dc:format>image/svg+xml</dc:format>
1443- <dc:type
1444- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
1445- </cc:Work>
1446- </rdf:RDF>
1447- </metadata>
1448- <g
1449- inkscape:label="Layer 1"
1450- inkscape:groupmode="layer"
1451- id="layer1">
1452- <rect
1453- style="fill:#fafafa;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
1454- id="rect2399"
1455- width="4"
1456- height="4"
1457- x="-4"
1458- y="0"
1459- transform="scale(-1,1)" />
1460- <path
1461- sodipodi:type="arc"
1462- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
1463- id="path3203"
1464- sodipodi:cx="4"
1465- sodipodi:cy="4"
1466- sodipodi:rx="4"
1467- sodipodi:ry="4"
1468- d="M 8,4 A 4,4 0 0 1 4.0000001,8 L 4,4 z"
1469- sodipodi:start="0"
1470- sodipodi:end="1.5707963"
1471- transform="matrix(0,1,1,0,-4,-4)" />
1472- <path
1473- sodipodi:type="arc"
1474- style="fill:url(#radialGradient2393);fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
1475- id="path3714"
1476- sodipodi:cx="4"
1477- sodipodi:cy="4"
1478- sodipodi:rx="3"
1479- sodipodi:ry="3"
1480- d="M 7,4 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
1481- sodipodi:start="0"
1482- sodipodi:end="1.5707963"
1483- transform="matrix(0,1,1,0,-3.9999998,-4)" />
1484- </g>
1485-</svg>
1486
1487=== removed file 'lib/canonical/launchpad/icing-sources/navigation-se-selected.svg'
1488--- lib/canonical/launchpad/icing-sources/navigation-se-selected.svg 2008-07-01 13:07:09 +0000
1489+++ lib/canonical/launchpad/icing-sources/navigation-se-selected.svg 1970-01-01 00:00:00 +0000
1490@@ -1,162 +0,0 @@
1491-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
1492-<!-- Created with Inkscape (http://www.inkscape.org/) -->
1493-<svg
1494- xmlns:dc="http://purl.org/dc/elements/1.1/"
1495- xmlns:cc="http://creativecommons.org/ns#"
1496- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
1497- xmlns:svg="http://www.w3.org/2000/svg"
1498- xmlns="http://www.w3.org/2000/svg"
1499- xmlns:xlink="http://www.w3.org/1999/xlink"
1500- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
1501- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
1502- width="4"
1503- height="4"
1504- id="svg3191"
1505- sodipodi:version="0.32"
1506- inkscape:version="0.46"
1507- version="1.0"
1508- sodipodi:docname="navigation-se-selected.svg"
1509- inkscape:output_extension="org.inkscape.output.svg.inkscape"
1510- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-2.0-5-nav-menu/lib/canonical/launchpad/icing/navigation-se-selected.png"
1511- inkscape:export-xdpi="90"
1512- inkscape:export-ydpi="90">
1513- <defs
1514- id="defs3193">
1515- <linearGradient
1516- id="linearGradient3716">
1517- <stop
1518- style="stop-color:#dddddd;stop-opacity:1;"
1519- offset="0"
1520- id="stop3718" />
1521- <stop
1522- style="stop-color:#cccccc;stop-opacity:1;"
1523- offset="1"
1524- id="stop3720" />
1525- </linearGradient>
1526- <inkscape:perspective
1527- sodipodi:type="inkscape:persp3d"
1528- inkscape:vp_x="0 : 526.18109 : 1"
1529- inkscape:vp_y="0 : 1000 : 0"
1530- inkscape:vp_z="744.09448 : 526.18109 : 1"
1531- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
1532- id="perspective3199" />
1533- <radialGradient
1534- inkscape:collect="always"
1535- xlink:href="#linearGradient3716"
1536- id="radialGradient3722"
1537- cx="4"
1538- cy="4"
1539- fx="4"
1540- fy="4"
1541- r="3"
1542- gradientUnits="userSpaceOnUse"
1543- gradientTransform="matrix(0,-1,1,0,0,8)" />
1544- <radialGradient
1545- inkscape:collect="always"
1546- xlink:href="#linearGradient3716"
1547- id="radialGradient3728"
1548- gradientUnits="userSpaceOnUse"
1549- gradientTransform="matrix(0,-1,1,0,0,8)"
1550- cx="4"
1551- cy="4"
1552- fx="4"
1553- fy="4"
1554- r="3" />
1555- <linearGradient
1556- inkscape:collect="always"
1557- xlink:href="#linearGradient3716"
1558- id="linearGradient3740"
1559- x1="4"
1560- y1="299"
1561- x2="1"
1562- y2="299"
1563- gradientUnits="userSpaceOnUse"
1564- gradientTransform="matrix(1,0,0,148,0,-44100)" />
1565- <radialGradient
1566- inkscape:collect="always"
1567- xlink:href="#linearGradient3716"
1568- id="radialGradient2393"
1569- gradientUnits="userSpaceOnUse"
1570- gradientTransform="matrix(0,-1,1,0,0,8)"
1571- cx="4"
1572- cy="4"
1573- fx="4"
1574- fy="4"
1575- r="3" />
1576- </defs>
1577- <sodipodi:namedview
1578- id="base"
1579- pagecolor="#fafafa"
1580- bordercolor="#666666"
1581- borderopacity="1.0"
1582- gridtolerance="10000"
1583- guidetolerance="10"
1584- objecttolerance="10"
1585- inkscape:pageopacity="0"
1586- inkscape:pageshadow="2"
1587- inkscape:zoom="63.75"
1588- inkscape:cx="-0.74403294"
1589- inkscape:cy="2.9829748"
1590- inkscape:document-units="px"
1591- inkscape:current-layer="layer1"
1592- showgrid="true"
1593- inkscape:window-width="1024"
1594- inkscape:window-height="693"
1595- inkscape:window-x="0"
1596- inkscape:window-y="49">
1597- <inkscape:grid
1598- type="xygrid"
1599- id="grid3201"
1600- visible="true"
1601- enabled="true"
1602- empspacing="4" />
1603- </sodipodi:namedview>
1604- <metadata
1605- id="metadata3196">
1606- <rdf:RDF>
1607- <cc:Work
1608- rdf:about="">
1609- <dc:format>image/svg+xml</dc:format>
1610- <dc:type
1611- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
1612- </cc:Work>
1613- </rdf:RDF>
1614- </metadata>
1615- <g
1616- inkscape:label="Layer 1"
1617- inkscape:groupmode="layer"
1618- id="layer1">
1619- <rect
1620- style="fill:#fafafa;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
1621- id="rect2399"
1622- width="4"
1623- height="4"
1624- x="-4"
1625- y="0"
1626- transform="scale(-1,1)" />
1627- <path
1628- sodipodi:type="arc"
1629- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
1630- id="path3203"
1631- sodipodi:cx="4"
1632- sodipodi:cy="4"
1633- sodipodi:rx="4"
1634- sodipodi:ry="4"
1635- d="M 8,4 A 4,4 0 0 1 4.0000001,8 L 4,4 z"
1636- sodipodi:start="0"
1637- sodipodi:end="1.5707963"
1638- transform="matrix(0,1,1,0,-4,-4)" />
1639- <path
1640- sodipodi:type="arc"
1641- style="fill:url(#radialGradient2393);fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
1642- id="path3714"
1643- sodipodi:cx="4"
1644- sodipodi:cy="4"
1645- sodipodi:rx="3"
1646- sodipodi:ry="3"
1647- d="M 7,4 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
1648- sodipodi:start="0"
1649- sodipodi:end="1.5707963"
1650- transform="matrix(0,1,1,0,-3.9999998,-4)" />
1651- </g>
1652-</svg>
1653
1654=== removed file 'lib/canonical/launchpad/icing-sources/navigation-sw-normal.svg'
1655--- lib/canonical/launchpad/icing-sources/navigation-sw-normal.svg 2008-07-01 13:07:09 +0000
1656+++ lib/canonical/launchpad/icing-sources/navigation-sw-normal.svg 1970-01-01 00:00:00 +0000
1657@@ -1,161 +0,0 @@
1658-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
1659-<!-- Created with Inkscape (http://www.inkscape.org/) -->
1660-<svg
1661- xmlns:dc="http://purl.org/dc/elements/1.1/"
1662- xmlns:cc="http://creativecommons.org/ns#"
1663- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
1664- xmlns:svg="http://www.w3.org/2000/svg"
1665- xmlns="http://www.w3.org/2000/svg"
1666- xmlns:xlink="http://www.w3.org/1999/xlink"
1667- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
1668- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
1669- width="4"
1670- height="4"
1671- id="svg3191"
1672- sodipodi:version="0.32"
1673- inkscape:version="0.46"
1674- version="1.0"
1675- sodipodi:docname="navigation-sw-normal.svg"
1676- inkscape:output_extension="org.inkscape.output.svg.inkscape"
1677- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-2.0-5-nav-menu/lib/canonical/launchpad/icing/navigation-sw-normal.png"
1678- inkscape:export-xdpi="90"
1679- inkscape:export-ydpi="90">
1680- <defs
1681- id="defs3193">
1682- <linearGradient
1683- id="linearGradient3716">
1684- <stop
1685- style="stop-color:#eeeeee;stop-opacity:1;"
1686- offset="0"
1687- id="stop3718" />
1688- <stop
1689- style="stop-color:#ffffff;stop-opacity:1;"
1690- offset="1"
1691- id="stop3720" />
1692- </linearGradient>
1693- <inkscape:perspective
1694- sodipodi:type="inkscape:persp3d"
1695- inkscape:vp_x="0 : 526.18109 : 1"
1696- inkscape:vp_y="0 : 1000 : 0"
1697- inkscape:vp_z="744.09448 : 526.18109 : 1"
1698- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
1699- id="perspective3199" />
1700- <radialGradient
1701- inkscape:collect="always"
1702- xlink:href="#linearGradient3716"
1703- id="radialGradient3722"
1704- cx="4"
1705- cy="4"
1706- fx="4"
1707- fy="4"
1708- r="3"
1709- gradientUnits="userSpaceOnUse"
1710- gradientTransform="matrix(0,-1,1,0,0,8)" />
1711- <radialGradient
1712- inkscape:collect="always"
1713- xlink:href="#linearGradient3716"
1714- id="radialGradient3728"
1715- gradientUnits="userSpaceOnUse"
1716- gradientTransform="matrix(0,-1,1,0,0,8)"
1717- cx="4"
1718- cy="4"
1719- fx="4"
1720- fy="4"
1721- r="3" />
1722- <linearGradient
1723- inkscape:collect="always"
1724- xlink:href="#linearGradient3716"
1725- id="linearGradient3740"
1726- x1="4"
1727- y1="299"
1728- x2="1"
1729- y2="299"
1730- gradientUnits="userSpaceOnUse"
1731- gradientTransform="matrix(1,0,0,148,0,-44100)" />
1732- <radialGradient
1733- inkscape:collect="always"
1734- xlink:href="#linearGradient3716"
1735- id="radialGradient2393"
1736- gradientUnits="userSpaceOnUse"
1737- gradientTransform="matrix(0,-1,1,0,0,8)"
1738- cx="4"
1739- cy="4"
1740- fx="4"
1741- fy="4"
1742- r="3" />
1743- </defs>
1744- <sodipodi:namedview
1745- id="base"
1746- pagecolor="#fafafa"
1747- bordercolor="#666666"
1748- borderopacity="1.0"
1749- gridtolerance="10000"
1750- guidetolerance="10"
1751- objecttolerance="10"
1752- inkscape:pageopacity="0"
1753- inkscape:pageshadow="2"
1754- inkscape:zoom="63.75"
1755- inkscape:cx="-1.2"
1756- inkscape:cy="2.9829748"
1757- inkscape:document-units="px"
1758- inkscape:current-layer="layer1"
1759- showgrid="true"
1760- inkscape:window-width="1024"
1761- inkscape:window-height="693"
1762- inkscape:window-x="0"
1763- inkscape:window-y="49">
1764- <inkscape:grid
1765- type="xygrid"
1766- id="grid3201"
1767- visible="true"
1768- enabled="true"
1769- empspacing="4" />
1770- </sodipodi:namedview>
1771- <metadata
1772- id="metadata3196">
1773- <rdf:RDF>
1774- <cc:Work
1775- rdf:about="">
1776- <dc:format>image/svg+xml</dc:format>
1777- <dc:type
1778- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
1779- </cc:Work>
1780- </rdf:RDF>
1781- </metadata>
1782- <g
1783- inkscape:label="Layer 1"
1784- inkscape:groupmode="layer"
1785- id="layer1">
1786- <rect
1787- style="fill:#fafafa;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
1788- id="rect2399"
1789- width="4"
1790- height="4"
1791- x="0"
1792- y="0" />
1793- <path
1794- sodipodi:type="arc"
1795- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
1796- id="path3203"
1797- sodipodi:cx="4"
1798- sodipodi:cy="4"
1799- sodipodi:rx="4"
1800- sodipodi:ry="4"
1801- d="M 8,4 A 4,4 0 0 1 4.0000001,8 L 4,4 z"
1802- sodipodi:start="0"
1803- sodipodi:end="1.5707963"
1804- transform="matrix(0,1,-1,0,8.0000001,-4)" />
1805- <path
1806- sodipodi:type="arc"
1807- style="fill:url(#radialGradient2393);fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
1808- id="path3714"
1809- sodipodi:cx="4"
1810- sodipodi:cy="4"
1811- sodipodi:rx="3"
1812- sodipodi:ry="3"
1813- d="M 7,4 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
1814- sodipodi:start="0"
1815- sodipodi:end="1.5707963"
1816- transform="matrix(0,1,-1,0,7.9999999,-4)" />
1817- </g>
1818-</svg>
1819
1820=== removed file 'lib/canonical/launchpad/icing-sources/navigation-sw-selected.svg'
1821--- lib/canonical/launchpad/icing-sources/navigation-sw-selected.svg 2008-07-01 12:34:09 +0000
1822+++ lib/canonical/launchpad/icing-sources/navigation-sw-selected.svg 1970-01-01 00:00:00 +0000
1823@@ -1,161 +0,0 @@
1824-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
1825-<!-- Created with Inkscape (http://www.inkscape.org/) -->
1826-<svg
1827- xmlns:dc="http://purl.org/dc/elements/1.1/"
1828- xmlns:cc="http://creativecommons.org/ns#"
1829- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
1830- xmlns:svg="http://www.w3.org/2000/svg"
1831- xmlns="http://www.w3.org/2000/svg"
1832- xmlns:xlink="http://www.w3.org/1999/xlink"
1833- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
1834- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
1835- width="4"
1836- height="4"
1837- id="svg3191"
1838- sodipodi:version="0.32"
1839- inkscape:version="0.46"
1840- version="1.0"
1841- sodipodi:docname="navigation-bottom-left-border-and-gradient.svg"
1842- inkscape:output_extension="org.inkscape.output.svg.inkscape"
1843- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-launchpad-2.0/lib/canonical/launchpad/images/navigation-bottom-left-border-and-gradient.png"
1844- inkscape:export-xdpi="90"
1845- inkscape:export-ydpi="90">
1846- <defs
1847- id="defs3193">
1848- <linearGradient
1849- id="linearGradient3716">
1850- <stop
1851- style="stop-color:#ffffff;stop-opacity:0;"
1852- offset="0"
1853- id="stop3718" />
1854- <stop
1855- style="stop-color:#ffffff;stop-opacity:1;"
1856- offset="1"
1857- id="stop3720" />
1858- </linearGradient>
1859- <inkscape:perspective
1860- sodipodi:type="inkscape:persp3d"
1861- inkscape:vp_x="0 : 526.18109 : 1"
1862- inkscape:vp_y="0 : 1000 : 0"
1863- inkscape:vp_z="744.09448 : 526.18109 : 1"
1864- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
1865- id="perspective3199" />
1866- <radialGradient
1867- inkscape:collect="always"
1868- xlink:href="#linearGradient3716"
1869- id="radialGradient3722"
1870- cx="4"
1871- cy="4"
1872- fx="4"
1873- fy="4"
1874- r="3"
1875- gradientUnits="userSpaceOnUse"
1876- gradientTransform="matrix(0,-1,1,0,0,8)" />
1877- <radialGradient
1878- inkscape:collect="always"
1879- xlink:href="#linearGradient3716"
1880- id="radialGradient3728"
1881- gradientUnits="userSpaceOnUse"
1882- gradientTransform="matrix(0,-1,1,0,0,8)"
1883- cx="4"
1884- cy="4"
1885- fx="4"
1886- fy="4"
1887- r="3" />
1888- <linearGradient
1889- inkscape:collect="always"
1890- xlink:href="#linearGradient3716"
1891- id="linearGradient3740"
1892- x1="4"
1893- y1="299"
1894- x2="1"
1895- y2="299"
1896- gradientUnits="userSpaceOnUse"
1897- gradientTransform="matrix(1,0,0,148,0,-44100)" />
1898- <radialGradient
1899- inkscape:collect="always"
1900- xlink:href="#linearGradient3716"
1901- id="radialGradient2393"
1902- gradientUnits="userSpaceOnUse"
1903- gradientTransform="matrix(0,-1,1,0,0,8)"
1904- cx="4"
1905- cy="4"
1906- fx="4"
1907- fy="4"
1908- r="3" />
1909- </defs>
1910- <sodipodi:namedview
1911- id="base"
1912- pagecolor="#fafafa"
1913- bordercolor="#666666"
1914- borderopacity="1.0"
1915- gridtolerance="10000"
1916- guidetolerance="10"
1917- objecttolerance="10"
1918- inkscape:pageopacity="0"
1919- inkscape:pageshadow="2"
1920- inkscape:zoom="63.75"
1921- inkscape:cx="-1.0241749"
1922- inkscape:cy="2.9829748"
1923- inkscape:document-units="px"
1924- inkscape:current-layer="layer1"
1925- showgrid="true"
1926- inkscape:window-width="1024"
1927- inkscape:window-height="693"
1928- inkscape:window-x="0"
1929- inkscape:window-y="25">
1930- <inkscape:grid
1931- type="xygrid"
1932- id="grid3201"
1933- visible="true"
1934- enabled="true"
1935- empspacing="4" />
1936- </sodipodi:namedview>
1937- <metadata
1938- id="metadata3196">
1939- <rdf:RDF>
1940- <cc:Work
1941- rdf:about="">
1942- <dc:format>image/svg+xml</dc:format>
1943- <dc:type
1944- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
1945- </cc:Work>
1946- </rdf:RDF>
1947- </metadata>
1948- <g
1949- inkscape:label="Layer 1"
1950- inkscape:groupmode="layer"
1951- id="layer1">
1952- <rect
1953- style="fill:#fafafa;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
1954- id="rect2399"
1955- width="4"
1956- height="4"
1957- x="0"
1958- y="0" />
1959- <path
1960- sodipodi:type="arc"
1961- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
1962- id="path3203"
1963- sodipodi:cx="4"
1964- sodipodi:cy="4"
1965- sodipodi:rx="4"
1966- sodipodi:ry="4"
1967- d="M 8,4 A 4,4 0 0 1 4.0000001,8 L 4,4 z"
1968- sodipodi:start="0"
1969- sodipodi:end="1.5707963"
1970- transform="matrix(0,1,-1,0,8.0000001,-4)" />
1971- <path
1972- sodipodi:type="arc"
1973- style="fill:url(#radialGradient2393);fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
1974- id="path3714"
1975- sodipodi:cx="4"
1976- sodipodi:cy="4"
1977- sodipodi:rx="3"
1978- sodipodi:ry="3"
1979- d="M 7,4 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
1980- sodipodi:start="0"
1981- sodipodi:end="1.5707963"
1982- transform="matrix(0,1,-1,0,7.9999999,-4)" />
1983- </g>
1984-</svg>
1985
1986=== removed file 'lib/canonical/launchpad/icing-sources/navigation-sw-w-normal.svg'
1987--- lib/canonical/launchpad/icing-sources/navigation-sw-w-normal.svg 2008-07-08 15:40:50 +0000
1988+++ lib/canonical/launchpad/icing-sources/navigation-sw-w-normal.svg 1970-01-01 00:00:00 +0000
1989@@ -1,208 +0,0 @@
1990-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
1991-<!-- Created with Inkscape (http://www.inkscape.org/) -->
1992-<svg
1993- xmlns:dc="http://purl.org/dc/elements/1.1/"
1994- xmlns:cc="http://creativecommons.org/ns#"
1995- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
1996- xmlns:svg="http://www.w3.org/2000/svg"
1997- xmlns="http://www.w3.org/2000/svg"
1998- xmlns:xlink="http://www.w3.org/1999/xlink"
1999- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
2000- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
2001- width="4"
2002- height="300"
2003- id="svg3191"
2004- sodipodi:version="0.32"
2005- inkscape:version="0.46"
2006- version="1.0"
2007- sodipodi:docname="navigation-sw-w-normal.svg"
2008- inkscape:output_extension="org.inkscape.output.svg.inkscape"
2009- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-2.0-6-tabs/lib/canonical/launchpad/icing/navigation-sw-w-normal.png"
2010- inkscape:export-xdpi="90"
2011- inkscape:export-ydpi="90">
2012- <defs
2013- id="defs3193">
2014- <linearGradient
2015- id="linearGradient6188">
2016- <stop
2017- id="stop6190"
2018- offset="0"
2019- style="stop-color:#eeeeee;stop-opacity:1;" />
2020- <stop
2021- id="stop6192"
2022- offset="1"
2023- style="stop-color:#ffffff;stop-opacity:1;" />
2024- </linearGradient>
2025- <linearGradient
2026- id="linearGradient3716">
2027- <stop
2028- style="stop-color:#eeeeee;stop-opacity:1;"
2029- offset="0"
2030- id="stop3718" />
2031- <stop
2032- style="stop-color:#cccccc;stop-opacity:1;"
2033- offset="1"
2034- id="stop3720" />
2035- </linearGradient>
2036- <inkscape:perspective
2037- sodipodi:type="inkscape:persp3d"
2038- inkscape:vp_x="0 : 526.18109 : 1"
2039- inkscape:vp_y="0 : 1000 : 0"
2040- inkscape:vp_z="744.09448 : 526.18109 : 1"
2041- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
2042- id="perspective3199" />
2043- <radialGradient
2044- inkscape:collect="always"
2045- xlink:href="#linearGradient3716"
2046- id="radialGradient3722"
2047- cx="4"
2048- cy="4"
2049- fx="4"
2050- fy="4"
2051- r="3"
2052- gradientUnits="userSpaceOnUse"
2053- gradientTransform="matrix(0,-1,1,0,0,8)" />
2054- <linearGradient
2055- inkscape:collect="always"
2056- xlink:href="#linearGradient6188"
2057- id="linearGradient3740"
2058- x1="4"
2059- y1="299"
2060- x2="1"
2061- y2="299"
2062- gradientUnits="userSpaceOnUse"
2063- gradientTransform="matrix(1,0,0,148,-1e-7,-44400)" />
2064- <radialGradient
2065- inkscape:collect="always"
2066- xlink:href="#linearGradient3716"
2067- id="radialGradient6182"
2068- gradientUnits="userSpaceOnUse"
2069- gradientTransform="matrix(0,-1,1,0,0,8)"
2070- cx="4"
2071- cy="4"
2072- fx="4"
2073- fy="4"
2074- r="3" />
2075- <radialGradient
2076- inkscape:collect="always"
2077- xlink:href="#linearGradient6188"
2078- id="radialGradient6186"
2079- gradientUnits="userSpaceOnUse"
2080- gradientTransform="matrix(0,-1,1,0,0,8)"
2081- cx="4"
2082- cy="4"
2083- fx="4"
2084- fy="4"
2085- r="3" />
2086- </defs>
2087- <sodipodi:namedview
2088- id="base"
2089- pagecolor="#ffffff"
2090- bordercolor="#666666"
2091- borderopacity="1.0"
2092- gridtolerance="10000"
2093- guidetolerance="10"
2094- objecttolerance="10"
2095- inkscape:pageopacity="0.0"
2096- inkscape:pageshadow="2"
2097- inkscape:zoom="63.75"
2098- inkscape:cx="3.4585707"
2099- inkscape:cy="4.7868647"
2100- inkscape:document-units="px"
2101- inkscape:current-layer="layer1"
2102- showgrid="true"
2103- inkscape:window-width="1024"
2104- inkscape:window-height="693"
2105- inkscape:window-x="0"
2106- inkscape:window-y="25"
2107- inkscape:snap-bbox="true">
2108- <inkscape:grid
2109- type="xygrid"
2110- id="grid3201"
2111- visible="true"
2112- enabled="true"
2113- empspacing="4" />
2114- </sodipodi:namedview>
2115- <metadata
2116- id="metadata3196">
2117- <rdf:RDF>
2118- <cc:Work
2119- rdf:about="">
2120- <dc:format>image/svg+xml</dc:format>
2121- <dc:type
2122- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
2123- </cc:Work>
2124- </rdf:RDF>
2125- </metadata>
2126- <g
2127- inkscape:label="Layer 1"
2128- inkscape:groupmode="layer"
2129- id="layer1">
2130- <path
2131- sodipodi:type="arc"
2132- style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
2133- id="path6178"
2134- sodipodi:cx="3.5"
2135- sodipodi:cy="0"
2136- sodipodi:rx="2.5"
2137- sodipodi:ry="2"
2138- d="M 6,0 A 2.5,2 0 0 1 3.4949908,1.999996 L 3.5,0 z"
2139- transform="matrix(-1.2,0,0,1.5,8.1939889,296)"
2140- sodipodi:start="0"
2141- sodipodi:end="1.5728" />
2142- <path
2143- sodipodi:type="arc"
2144- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
2145- id="path3203"
2146- sodipodi:cx="4"
2147- sodipodi:cy="4"
2148- sodipodi:rx="4"
2149- sodipodi:ry="4"
2150- d="M 8,4 A 4,4 0 0 1 4.0000001,8 L 4,4 z"
2151- sodipodi:start="0"
2152- sodipodi:end="1.5707963"
2153- transform="matrix(-1,0,0,1,8,292)" />
2154- <path
2155- sodipodi:type="arc"
2156- style="fill:url(#radialGradient6182);fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
2157- id="path3714"
2158- sodipodi:cx="4"
2159- sodipodi:cy="4"
2160- sodipodi:rx="3"
2161- sodipodi:ry="3"
2162- d="M 6.1213204,6.1213203 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
2163- sodipodi:start="0.78539816"
2164- sodipodi:end="1.5707963"
2165- transform="matrix(-1,0,0,1,8,292)" />
2166- <rect
2167- style="fill:url(#linearGradient3740);fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
2168- id="rect3732"
2169- width="3"
2170- height="296"
2171- x="1"
2172- y="-296"
2173- transform="scale(1,-1)" />
2174- <rect
2175- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
2176- id="rect3730"
2177- width="1"
2178- height="296"
2179- x="0"
2180- y="-296"
2181- inkscape:export-xdpi="90"
2182- inkscape:export-ydpi="90"
2183- transform="scale(1,-1)" />
2184- <path
2185- transform="matrix(0,1,-1,0,8,292)"
2186- sodipodi:end="1.5707963"
2187- sodipodi:start="0.78539816"
2188- d="M 6.1213204,6.1213203 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
2189- sodipodi:ry="3"
2190- sodipodi:rx="3"
2191- sodipodi:cy="4"
2192- sodipodi:cx="4"
2193- id="path6184"
2194- style="fill:url(#radialGradient6186);fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
2195- sodipodi:type="arc" />
2196- </g>
2197-</svg>
2198
2199=== removed file 'lib/canonical/launchpad/icing-sources/navigation-tab-bottom-overview-normal.svg'
2200--- lib/canonical/launchpad/icing-sources/navigation-tab-bottom-overview-normal.svg 2008-07-03 16:54:50 +0000
2201+++ lib/canonical/launchpad/icing-sources/navigation-tab-bottom-overview-normal.svg 1970-01-01 00:00:00 +0000
2202@@ -1,140 +0,0 @@
2203-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2204-<!-- Created with Inkscape (http://www.inkscape.org/) -->
2205-<svg
2206- xmlns:dc="http://purl.org/dc/elements/1.1/"
2207- xmlns:cc="http://creativecommons.org/ns#"
2208- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
2209- xmlns:svg="http://www.w3.org/2000/svg"
2210- xmlns="http://www.w3.org/2000/svg"
2211- xmlns:xlink="http://www.w3.org/1999/xlink"
2212- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
2213- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
2214- width="1"
2215- height="4"
2216- id="svg2"
2217- sodipodi:version="0.32"
2218- inkscape:version="0.46"
2219- version="1.0"
2220- sodipodi:docname="navigation-tab-bottom-overview-normal.svg"
2221- inkscape:output_extension="org.inkscape.output.svg.inkscape"
2222- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-2.0-6-tabs/lib/canonical/launchpad/icing/navigation-tab-bottom-overview-normal.png"
2223- inkscape:export-xdpi="90"
2224- inkscape:export-ydpi="90">
2225- <defs
2226- id="defs4">
2227- <linearGradient
2228- id="linearGradient3189">
2229- <stop
2230- style="stop-color:#83ad23;stop-opacity:1;"
2231- offset="0"
2232- id="stop3191" />
2233- <stop
2234- style="stop-color:#83ad23;stop-opacity:0;"
2235- offset="1"
2236- id="stop3193" />
2237- </linearGradient>
2238- <linearGradient
2239- id="linearGradient3159">
2240- <stop
2241- style="stop-color:#cccccf;stop-opacity:0.94117647;"
2242- offset="0"
2243- id="stop3161" />
2244- <stop
2245- style="stop-color:#eeeeee;stop-opacity:1;"
2246- offset="1"
2247- id="stop3163" />
2248- </linearGradient>
2249- <inkscape:perspective
2250- sodipodi:type="inkscape:persp3d"
2251- inkscape:vp_x="0 : 526.18109 : 1"
2252- inkscape:vp_y="0 : 1000 : 0"
2253- inkscape:vp_z="744.09448 : 526.18109 : 1"
2254- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
2255- id="perspective10" />
2256- <linearGradient
2257- inkscape:collect="always"
2258- xlink:href="#linearGradient3159"
2259- id="linearGradient3165"
2260- x1="0"
2261- y1="4"
2262- x2="0"
2263- y2="1"
2264- gradientUnits="userSpaceOnUse"
2265- gradientTransform="scale(1,0.75)" />
2266- <linearGradient
2267- inkscape:collect="always"
2268- xlink:href="#linearGradient3189"
2269- id="linearGradient3195"
2270- x1="0"
2271- y1="6"
2272- x2="0"
2273- y2="4"
2274- gradientUnits="userSpaceOnUse"
2275- gradientTransform="translate(0,-2)" />
2276- </defs>
2277- <sodipodi:namedview
2278- id="base"
2279- pagecolor="#eeeeee"
2280- bordercolor="#666666"
2281- borderopacity="1.0"
2282- gridtolerance="10000"
2283- guidetolerance="10"
2284- objecttolerance="10"
2285- inkscape:pageopacity="1"
2286- inkscape:pageshadow="2"
2287- inkscape:zoom="102"
2288- inkscape:cx="0.34821108"
2289- inkscape:cy="1.8888438"
2290- inkscape:document-units="px"
2291- inkscape:current-layer="layer1"
2292- showgrid="true"
2293- inkscape:window-width="853"
2294- inkscape:window-height="644"
2295- inkscape:window-x="0"
2296- inkscape:window-y="25">
2297- <inkscape:grid
2298- type="xygrid"
2299- id="grid2383"
2300- visible="true"
2301- enabled="true"
2302- spacingy="0.5px"
2303- empspacing="2" />
2304- </sodipodi:namedview>
2305- <metadata
2306- id="metadata7">
2307- <rdf:RDF>
2308- <cc:Work
2309- rdf:about="">
2310- <dc:format>image/svg+xml</dc:format>
2311- <dc:type
2312- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
2313- </cc:Work>
2314- </rdf:RDF>
2315- </metadata>
2316- <g
2317- inkscape:label="Layer 1"
2318- inkscape:groupmode="layer"
2319- id="layer1">
2320- <rect
2321- style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6"
2322- id="rect2385"
2323- width="1"
2324- height="1"
2325- x="0"
2326- y="3" />
2327- <rect
2328- style="fill:url(#linearGradient3165);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6"
2329- id="rect3157"
2330- width="1"
2331- height="3"
2332- x="0"
2333- y="0" />
2334- <rect
2335- style="fill:url(#linearGradient3195);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6"
2336- id="rect3167"
2337- width="1"
2338- height="2"
2339- x="0"
2340- y="2" />
2341- </g>
2342-</svg>
2343
2344=== removed file 'lib/canonical/launchpad/icing-sources/navigation-tab-bottom-untinted-normal.svg'
2345--- lib/canonical/launchpad/icing-sources/navigation-tab-bottom-untinted-normal.svg 2008-07-03 16:54:50 +0000
2346+++ lib/canonical/launchpad/icing-sources/navigation-tab-bottom-untinted-normal.svg 1970-01-01 00:00:00 +0000
2347@@ -1,133 +0,0 @@
2348-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2349-<!-- Created with Inkscape (http://www.inkscape.org/) -->
2350-<svg
2351- xmlns:dc="http://purl.org/dc/elements/1.1/"
2352- xmlns:cc="http://creativecommons.org/ns#"
2353- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
2354- xmlns:svg="http://www.w3.org/2000/svg"
2355- xmlns="http://www.w3.org/2000/svg"
2356- xmlns:xlink="http://www.w3.org/1999/xlink"
2357- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
2358- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
2359- width="1"
2360- height="4"
2361- id="svg2"
2362- sodipodi:version="0.32"
2363- inkscape:version="0.46"
2364- version="1.0"
2365- sodipodi:docname="navigation-tab-bottom-untinted-normal.svg"
2366- inkscape:output_extension="org.inkscape.output.svg.inkscape"
2367- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-2.0-6-tabs/lib/canonical/launchpad/icing/navigation-tab-bottom-overview-normal.png"
2368- inkscape:export-xdpi="90"
2369- inkscape:export-ydpi="90">
2370- <defs
2371- id="defs4">
2372- <linearGradient
2373- id="linearGradient3189">
2374- <stop
2375- style="stop-color:#83ad23;stop-opacity:1;"
2376- offset="0"
2377- id="stop3191" />
2378- <stop
2379- style="stop-color:#83ad23;stop-opacity:0;"
2380- offset="1"
2381- id="stop3193" />
2382- </linearGradient>
2383- <linearGradient
2384- id="linearGradient3159">
2385- <stop
2386- style="stop-color:#cccccf;stop-opacity:0.94117647;"
2387- offset="0"
2388- id="stop3161" />
2389- <stop
2390- style="stop-color:#eeeeee;stop-opacity:1;"
2391- offset="1"
2392- id="stop3163" />
2393- </linearGradient>
2394- <inkscape:perspective
2395- sodipodi:type="inkscape:persp3d"
2396- inkscape:vp_x="0 : 526.18109 : 1"
2397- inkscape:vp_y="0 : 1000 : 0"
2398- inkscape:vp_z="744.09448 : 526.18109 : 1"
2399- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
2400- id="perspective10" />
2401- <linearGradient
2402- inkscape:collect="always"
2403- xlink:href="#linearGradient3159"
2404- id="linearGradient3165"
2405- x1="0"
2406- y1="4"
2407- x2="0"
2408- y2="1"
2409- gradientUnits="userSpaceOnUse"
2410- gradientTransform="scale(1,0.75)" />
2411- <linearGradient
2412- inkscape:collect="always"
2413- xlink:href="#linearGradient3189"
2414- id="linearGradient3195"
2415- x1="0"
2416- y1="6"
2417- x2="0"
2418- y2="4"
2419- gradientUnits="userSpaceOnUse"
2420- gradientTransform="matrix(1,0,0,1.5,1,-5)" />
2421- </defs>
2422- <sodipodi:namedview
2423- id="base"
2424- pagecolor="#eeeeee"
2425- bordercolor="#666666"
2426- borderopacity="1.0"
2427- gridtolerance="10000"
2428- guidetolerance="10"
2429- objecttolerance="10"
2430- inkscape:pageopacity="1"
2431- inkscape:pageshadow="2"
2432- inkscape:zoom="102"
2433- inkscape:cx="0.34821108"
2434- inkscape:cy="1.8888438"
2435- inkscape:document-units="px"
2436- inkscape:current-layer="layer1"
2437- showgrid="true"
2438- inkscape:window-width="853"
2439- inkscape:window-height="644"
2440- inkscape:window-x="0"
2441- inkscape:window-y="25">
2442- <inkscape:grid
2443- type="xygrid"
2444- id="grid2383"
2445- visible="true"
2446- enabled="true"
2447- spacingy="0.5px"
2448- empspacing="2" />
2449- </sodipodi:namedview>
2450- <metadata
2451- id="metadata7">
2452- <rdf:RDF>
2453- <cc:Work
2454- rdf:about="">
2455- <dc:format>image/svg+xml</dc:format>
2456- <dc:type
2457- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
2458- </cc:Work>
2459- </rdf:RDF>
2460- </metadata>
2461- <g
2462- inkscape:label="Layer 1"
2463- inkscape:groupmode="layer"
2464- id="layer1">
2465- <rect
2466- style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6"
2467- id="rect2385"
2468- width="1"
2469- height="1"
2470- x="0"
2471- y="3" />
2472- <rect
2473- style="fill:url(#linearGradient3165);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6"
2474- id="rect3157"
2475- width="1"
2476- height="3"
2477- x="0"
2478- y="0" />
2479- </g>
2480-</svg>
2481
2482=== removed file 'lib/canonical/launchpad/icing-sources/navigation-tab-bottom-untinted-selected.svg'
2483--- lib/canonical/launchpad/icing-sources/navigation-tab-bottom-untinted-selected.svg 2008-07-08 15:40:50 +0000
2484+++ lib/canonical/launchpad/icing-sources/navigation-tab-bottom-untinted-selected.svg 1970-01-01 00:00:00 +0000
2485@@ -1,123 +0,0 @@
2486-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2487-<!-- Created with Inkscape (http://www.inkscape.org/) -->
2488-<svg
2489- xmlns:dc="http://purl.org/dc/elements/1.1/"
2490- xmlns:cc="http://creativecommons.org/ns#"
2491- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
2492- xmlns:svg="http://www.w3.org/2000/svg"
2493- xmlns="http://www.w3.org/2000/svg"
2494- xmlns:xlink="http://www.w3.org/1999/xlink"
2495- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
2496- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
2497- width="1"
2498- height="4"
2499- id="svg2"
2500- sodipodi:version="0.32"
2501- inkscape:version="0.46"
2502- version="1.0"
2503- sodipodi:docname="navigation-tab-bottom-untinted-selected.svg"
2504- inkscape:output_extension="org.inkscape.output.svg.inkscape"
2505- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-2.0-6-tabs/lib/canonical/launchpad/icing/navigation-tab-bottom-untinted-selected.png"
2506- inkscape:export-xdpi="90"
2507- inkscape:export-ydpi="90">
2508- <defs
2509- id="defs4">
2510- <linearGradient
2511- id="linearGradient3189">
2512- <stop
2513- style="stop-color:#83ad23;stop-opacity:1;"
2514- offset="0"
2515- id="stop3191" />
2516- <stop
2517- style="stop-color:#83ad23;stop-opacity:0;"
2518- offset="1"
2519- id="stop3193" />
2520- </linearGradient>
2521- <linearGradient
2522- id="linearGradient3159">
2523- <stop
2524- style="stop-color:#cccccf;stop-opacity:0.94117647;"
2525- offset="0"
2526- id="stop3161" />
2527- <stop
2528- style="stop-color:#cccccc;stop-opacity:0;"
2529- offset="1"
2530- id="stop3163" />
2531- </linearGradient>
2532- <inkscape:perspective
2533- sodipodi:type="inkscape:persp3d"
2534- inkscape:vp_x="0 : 526.18109 : 1"
2535- inkscape:vp_y="0 : 1000 : 0"
2536- inkscape:vp_z="744.09448 : 526.18109 : 1"
2537- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
2538- id="perspective10" />
2539- <linearGradient
2540- inkscape:collect="always"
2541- xlink:href="#linearGradient3159"
2542- id="linearGradient3165"
2543- x1="0"
2544- y1="4"
2545- x2="0"
2546- y2="1"
2547- gradientUnits="userSpaceOnUse"
2548- gradientTransform="scale(1,0.75)" />
2549- </defs>
2550- <sodipodi:namedview
2551- id="base"
2552- pagecolor="#dddddd"
2553- bordercolor="#666666"
2554- borderopacity="1.0"
2555- gridtolerance="10000"
2556- guidetolerance="10"
2557- objecttolerance="10"
2558- inkscape:pageopacity="1"
2559- inkscape:pageshadow="2"
2560- inkscape:zoom="102"
2561- inkscape:cx="0.34821108"
2562- inkscape:cy="1.8888438"
2563- inkscape:document-units="px"
2564- inkscape:current-layer="layer1"
2565- showgrid="true"
2566- inkscape:window-width="853"
2567- inkscape:window-height="644"
2568- inkscape:window-x="0"
2569- inkscape:window-y="25">
2570- <inkscape:grid
2571- type="xygrid"
2572- id="grid2383"
2573- visible="true"
2574- enabled="true"
2575- spacingy="0.5px"
2576- empspacing="2" />
2577- </sodipodi:namedview>
2578- <metadata
2579- id="metadata7">
2580- <rdf:RDF>
2581- <cc:Work
2582- rdf:about="">
2583- <dc:format>image/svg+xml</dc:format>
2584- <dc:type
2585- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
2586- </cc:Work>
2587- </rdf:RDF>
2588- </metadata>
2589- <g
2590- inkscape:label="Layer 1"
2591- inkscape:groupmode="layer"
2592- id="layer1">
2593- <rect
2594- style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6"
2595- id="rect2385"
2596- width="1"
2597- height="1"
2598- x="0"
2599- y="3" />
2600- <rect
2601- style="fill:url(#linearGradient3165);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6"
2602- id="rect3157"
2603- width="1"
2604- height="3"
2605- x="0"
2606- y="0" />
2607- </g>
2608-</svg>
2609
2610=== removed file 'lib/canonical/launchpad/icing/answers-feature-contact.png'
2611Binary files lib/canonical/launchpad/icing/answers-feature-contact.png 2007-03-30 23:31:10 +0000 and lib/canonical/launchpad/icing/answers-feature-contact.png 1970-01-01 00:00:00 +0000 differ
2612=== removed file 'lib/canonical/launchpad/icing/answers-feature-knowledge-base.png'
2613Binary files lib/canonical/launchpad/icing/answers-feature-knowledge-base.png 2007-03-30 23:31:10 +0000 and lib/canonical/launchpad/icing/answers-feature-knowledge-base.png 1970-01-01 00:00:00 +0000 differ
2614=== removed file 'lib/canonical/launchpad/icing/answers-feature-language.png'
2615Binary files lib/canonical/launchpad/icing/answers-feature-language.png 2007-03-30 23:31:10 +0000 and lib/canonical/launchpad/icing/answers-feature-language.png 1970-01-01 00:00:00 +0000 differ
2616=== removed file 'lib/canonical/launchpad/icing/answers-feature-structured.png'
2617Binary files lib/canonical/launchpad/icing/answers-feature-structured.png 2007-03-30 23:31:10 +0000 and lib/canonical/launchpad/icing/answers-feature-structured.png 1970-01-01 00:00:00 +0000 differ
2618=== removed file 'lib/canonical/launchpad/icing/answers-tour-screenshot1.png'
2619Binary files lib/canonical/launchpad/icing/answers-tour-screenshot1.png 2007-04-17 16:47:42 +0000 and lib/canonical/launchpad/icing/answers-tour-screenshot1.png 1970-01-01 00:00:00 +0000 differ
2620=== removed file 'lib/canonical/launchpad/icing/answers-tour-screenshot2.png'
2621Binary files lib/canonical/launchpad/icing/answers-tour-screenshot2.png 2007-04-17 16:47:42 +0000 and lib/canonical/launchpad/icing/answers-tour-screenshot2.png 1970-01-01 00:00:00 +0000 differ
2622=== removed file 'lib/canonical/launchpad/icing/app-answers-over.gif'
2623Binary files lib/canonical/launchpad/icing/app-answers-over.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-answers-over.gif 1970-01-01 00:00:00 +0000 differ
2624=== removed file 'lib/canonical/launchpad/icing/app-answers-sml-active.gif'
2625Binary files lib/canonical/launchpad/icing/app-answers-sml-active.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-answers-sml-active.gif 1970-01-01 00:00:00 +0000 differ
2626=== removed file 'lib/canonical/launchpad/icing/app-answers-sml-down.gif'
2627Binary files lib/canonical/launchpad/icing/app-answers-sml-down.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-answers-sml-down.gif 1970-01-01 00:00:00 +0000 differ
2628=== removed file 'lib/canonical/launchpad/icing/app-answers-sml-over.gif'
2629Binary files lib/canonical/launchpad/icing/app-answers-sml-over.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-answers-sml-over.gif 1970-01-01 00:00:00 +0000 differ
2630=== removed file 'lib/canonical/launchpad/icing/app-answers-sml.gif'
2631Binary files lib/canonical/launchpad/icing/app-answers-sml.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-answers-sml.gif 1970-01-01 00:00:00 +0000 differ
2632=== removed file 'lib/canonical/launchpad/icing/app-answers-wm.gif'
2633Binary files lib/canonical/launchpad/icing/app-answers-wm.gif 2007-03-13 01:21:22 +0000 and lib/canonical/launchpad/icing/app-answers-wm.gif 1970-01-01 00:00:00 +0000 differ
2634=== removed file 'lib/canonical/launchpad/icing/app-answers.gif'
2635Binary files lib/canonical/launchpad/icing/app-answers.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-answers.gif 1970-01-01 00:00:00 +0000 differ
2636=== removed file 'lib/canonical/launchpad/icing/app-blueprints-over.gif'
2637Binary files lib/canonical/launchpad/icing/app-blueprints-over.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-blueprints-over.gif 1970-01-01 00:00:00 +0000 differ
2638=== removed file 'lib/canonical/launchpad/icing/app-blueprints-sml-active.gif'
2639Binary files lib/canonical/launchpad/icing/app-blueprints-sml-active.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-blueprints-sml-active.gif 1970-01-01 00:00:00 +0000 differ
2640=== removed file 'lib/canonical/launchpad/icing/app-blueprints-sml-down.gif'
2641Binary files lib/canonical/launchpad/icing/app-blueprints-sml-down.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-blueprints-sml-down.gif 1970-01-01 00:00:00 +0000 differ
2642=== removed file 'lib/canonical/launchpad/icing/app-blueprints-sml-over.gif'
2643Binary files lib/canonical/launchpad/icing/app-blueprints-sml-over.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-blueprints-sml-over.gif 1970-01-01 00:00:00 +0000 differ
2644=== removed file 'lib/canonical/launchpad/icing/app-blueprints-sml.gif'
2645Binary files lib/canonical/launchpad/icing/app-blueprints-sml.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-blueprints-sml.gif 1970-01-01 00:00:00 +0000 differ
2646=== removed file 'lib/canonical/launchpad/icing/app-blueprints-wm.gif'
2647Binary files lib/canonical/launchpad/icing/app-blueprints-wm.gif 2007-03-13 01:21:22 +0000 and lib/canonical/launchpad/icing/app-blueprints-wm.gif 1970-01-01 00:00:00 +0000 differ
2648=== removed file 'lib/canonical/launchpad/icing/app-blueprints.gif'
2649Binary files lib/canonical/launchpad/icing/app-blueprints.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-blueprints.gif 1970-01-01 00:00:00 +0000 differ
2650=== removed file 'lib/canonical/launchpad/icing/app-bugs-over.gif'
2651Binary files lib/canonical/launchpad/icing/app-bugs-over.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-bugs-over.gif 1970-01-01 00:00:00 +0000 differ
2652=== removed file 'lib/canonical/launchpad/icing/app-bugs-sml-active.gif'
2653Binary files lib/canonical/launchpad/icing/app-bugs-sml-active.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-bugs-sml-active.gif 1970-01-01 00:00:00 +0000 differ
2654=== removed file 'lib/canonical/launchpad/icing/app-bugs-sml-down.gif'
2655Binary files lib/canonical/launchpad/icing/app-bugs-sml-down.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-bugs-sml-down.gif 1970-01-01 00:00:00 +0000 differ
2656=== removed file 'lib/canonical/launchpad/icing/app-bugs-sml-over.gif'
2657Binary files lib/canonical/launchpad/icing/app-bugs-sml-over.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-bugs-sml-over.gif 1970-01-01 00:00:00 +0000 differ
2658=== removed file 'lib/canonical/launchpad/icing/app-bugs-sml.gif'
2659Binary files lib/canonical/launchpad/icing/app-bugs-sml.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-bugs-sml.gif 1970-01-01 00:00:00 +0000 differ
2660=== removed file 'lib/canonical/launchpad/icing/app-bugs-wm.gif'
2661Binary files lib/canonical/launchpad/icing/app-bugs-wm.gif 2007-03-13 01:21:22 +0000 and lib/canonical/launchpad/icing/app-bugs-wm.gif 1970-01-01 00:00:00 +0000 differ
2662=== removed file 'lib/canonical/launchpad/icing/app-bugs.gif'
2663Binary files lib/canonical/launchpad/icing/app-bugs.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-bugs.gif 1970-01-01 00:00:00 +0000 differ
2664=== removed file 'lib/canonical/launchpad/icing/app-code-over.gif'
2665Binary files lib/canonical/launchpad/icing/app-code-over.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-code-over.gif 1970-01-01 00:00:00 +0000 differ
2666=== removed file 'lib/canonical/launchpad/icing/app-code-sml-active.gif'
2667Binary files lib/canonical/launchpad/icing/app-code-sml-active.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-code-sml-active.gif 1970-01-01 00:00:00 +0000 differ
2668=== removed file 'lib/canonical/launchpad/icing/app-code-sml-down.gif'
2669Binary files lib/canonical/launchpad/icing/app-code-sml-down.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-code-sml-down.gif 1970-01-01 00:00:00 +0000 differ
2670=== removed file 'lib/canonical/launchpad/icing/app-code-sml-over.gif'
2671Binary files lib/canonical/launchpad/icing/app-code-sml-over.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-code-sml-over.gif 1970-01-01 00:00:00 +0000 differ
2672=== removed file 'lib/canonical/launchpad/icing/app-code-sml.gif'
2673Binary files lib/canonical/launchpad/icing/app-code-sml.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-code-sml.gif 1970-01-01 00:00:00 +0000 differ
2674=== removed file 'lib/canonical/launchpad/icing/app-code-wm.gif'
2675Binary files lib/canonical/launchpad/icing/app-code-wm.gif 2007-03-13 01:21:22 +0000 and lib/canonical/launchpad/icing/app-code-wm.gif 1970-01-01 00:00:00 +0000 differ
2676=== removed file 'lib/canonical/launchpad/icing/app-code.gif'
2677Binary files lib/canonical/launchpad/icing/app-code.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-code.gif 1970-01-01 00:00:00 +0000 differ
2678=== removed file 'lib/canonical/launchpad/icing/app-people-over.gif'
2679Binary files lib/canonical/launchpad/icing/app-people-over.gif 2008-07-14 17:28:02 +0000 and lib/canonical/launchpad/icing/app-people-over.gif 1970-01-01 00:00:00 +0000 differ
2680=== removed file 'lib/canonical/launchpad/icing/app-people-sml-active.gif'
2681Binary files lib/canonical/launchpad/icing/app-people-sml-active.gif 2008-07-14 17:28:02 +0000 and lib/canonical/launchpad/icing/app-people-sml-active.gif 1970-01-01 00:00:00 +0000 differ
2682=== removed file 'lib/canonical/launchpad/icing/app-people-sml-down.gif'
2683Binary files lib/canonical/launchpad/icing/app-people-sml-down.gif 2008-07-14 17:28:02 +0000 and lib/canonical/launchpad/icing/app-people-sml-down.gif 1970-01-01 00:00:00 +0000 differ
2684=== removed file 'lib/canonical/launchpad/icing/app-people-sml-over.gif'
2685Binary files lib/canonical/launchpad/icing/app-people-sml-over.gif 2008-07-14 17:28:02 +0000 and lib/canonical/launchpad/icing/app-people-sml-over.gif 1970-01-01 00:00:00 +0000 differ
2686=== removed file 'lib/canonical/launchpad/icing/app-people-sml.gif'
2687Binary files lib/canonical/launchpad/icing/app-people-sml.gif 2008-07-14 17:28:02 +0000 and lib/canonical/launchpad/icing/app-people-sml.gif 1970-01-01 00:00:00 +0000 differ
2688=== removed file 'lib/canonical/launchpad/icing/app-people-wm.gif'
2689Binary files lib/canonical/launchpad/icing/app-people-wm.gif 2008-07-14 17:28:02 +0000 and lib/canonical/launchpad/icing/app-people-wm.gif 1970-01-01 00:00:00 +0000 differ
2690=== removed file 'lib/canonical/launchpad/icing/app-people.gif'
2691Binary files lib/canonical/launchpad/icing/app-people.gif 2008-07-14 17:28:02 +0000 and lib/canonical/launchpad/icing/app-people.gif 1970-01-01 00:00:00 +0000 differ
2692=== removed file 'lib/canonical/launchpad/icing/app-register-over.gif'
2693Binary files lib/canonical/launchpad/icing/app-register-over.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-register-over.gif 1970-01-01 00:00:00 +0000 differ
2694=== removed file 'lib/canonical/launchpad/icing/app-register-sml-active.gif'
2695Binary files lib/canonical/launchpad/icing/app-register-sml-active.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-register-sml-active.gif 1970-01-01 00:00:00 +0000 differ
2696=== removed file 'lib/canonical/launchpad/icing/app-register-sml-down.gif'
2697Binary files lib/canonical/launchpad/icing/app-register-sml-down.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-register-sml-down.gif 1970-01-01 00:00:00 +0000 differ
2698=== removed file 'lib/canonical/launchpad/icing/app-register-sml-over.gif'
2699Binary files lib/canonical/launchpad/icing/app-register-sml-over.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-register-sml-over.gif 1970-01-01 00:00:00 +0000 differ
2700=== removed file 'lib/canonical/launchpad/icing/app-register-sml.gif'
2701Binary files lib/canonical/launchpad/icing/app-register-sml.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-register-sml.gif 1970-01-01 00:00:00 +0000 differ
2702=== removed file 'lib/canonical/launchpad/icing/app-register-wm.gif'
2703Binary files lib/canonical/launchpad/icing/app-register-wm.gif 2007-03-13 01:21:22 +0000 and lib/canonical/launchpad/icing/app-register-wm.gif 1970-01-01 00:00:00 +0000 differ
2704=== removed file 'lib/canonical/launchpad/icing/app-register.gif'
2705Binary files lib/canonical/launchpad/icing/app-register.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-register.gif 1970-01-01 00:00:00 +0000 differ
2706=== removed file 'lib/canonical/launchpad/icing/app-translations-over.gif'
2707Binary files lib/canonical/launchpad/icing/app-translations-over.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-translations-over.gif 1970-01-01 00:00:00 +0000 differ
2708=== removed file 'lib/canonical/launchpad/icing/app-translations-sml-active.gif'
2709Binary files lib/canonical/launchpad/icing/app-translations-sml-active.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-translations-sml-active.gif 1970-01-01 00:00:00 +0000 differ
2710=== removed file 'lib/canonical/launchpad/icing/app-translations-sml-down.gif'
2711Binary files lib/canonical/launchpad/icing/app-translations-sml-down.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-translations-sml-down.gif 1970-01-01 00:00:00 +0000 differ
2712=== removed file 'lib/canonical/launchpad/icing/app-translations-sml-over.gif'
2713Binary files lib/canonical/launchpad/icing/app-translations-sml-over.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-translations-sml-over.gif 1970-01-01 00:00:00 +0000 differ
2714=== removed file 'lib/canonical/launchpad/icing/app-translations-sml.gif'
2715Binary files lib/canonical/launchpad/icing/app-translations-sml.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-translations-sml.gif 1970-01-01 00:00:00 +0000 differ
2716=== removed file 'lib/canonical/launchpad/icing/app-translations-wm.gif'
2717Binary files lib/canonical/launchpad/icing/app-translations-wm.gif 2007-03-13 01:21:22 +0000 and lib/canonical/launchpad/icing/app-translations-wm.gif 1970-01-01 00:00:00 +0000 differ
2718=== removed file 'lib/canonical/launchpad/icing/app-translations.gif'
2719Binary files lib/canonical/launchpad/icing/app-translations.gif 2007-02-20 02:53:55 +0000 and lib/canonical/launchpad/icing/app-translations.gif 1970-01-01 00:00:00 +0000 differ
2720=== removed file 'lib/canonical/launchpad/icing/appchoose_a.gif'
2721Binary files lib/canonical/launchpad/icing/appchoose_a.gif 2007-07-31 08:24:28 +0000 and lib/canonical/launchpad/icing/appchoose_a.gif 1970-01-01 00:00:00 +0000 differ
2722=== removed file 'lib/canonical/launchpad/icing/appchoose_tab1_a.gif'
2723Binary files lib/canonical/launchpad/icing/appchoose_tab1_a.gif 2007-07-31 08:24:28 +0000 and lib/canonical/launchpad/icing/appchoose_tab1_a.gif 1970-01-01 00:00:00 +0000 differ
2724=== removed file 'lib/canonical/launchpad/icing/appchoose_tab2_a.gif'
2725Binary files lib/canonical/launchpad/icing/appchoose_tab2_a.gif 2007-07-31 08:24:28 +0000 and lib/canonical/launchpad/icing/appchoose_tab2_a.gif 1970-01-01 00:00:00 +0000 differ
2726=== removed file 'lib/canonical/launchpad/icing/appchoose_tab4_a.gif'
2727Binary files lib/canonical/launchpad/icing/appchoose_tab4_a.gif 2007-07-31 08:24:28 +0000 and lib/canonical/launchpad/icing/appchoose_tab4_a.gif 1970-01-01 00:00:00 +0000 differ
2728=== removed file 'lib/canonical/launchpad/icing/appchoose_tab5_a.gif'
2729Binary files lib/canonical/launchpad/icing/appchoose_tab5_a.gif 2007-07-31 08:24:28 +0000 and lib/canonical/launchpad/icing/appchoose_tab5_a.gif 1970-01-01 00:00:00 +0000 differ
2730=== removed file 'lib/canonical/launchpad/icing/appchoose_tab6_a.gif'
2731Binary files lib/canonical/launchpad/icing/appchoose_tab6_a.gif 2007-07-31 08:24:28 +0000 and lib/canonical/launchpad/icing/appchoose_tab6_a.gif 1970-01-01 00:00:00 +0000 differ
2732=== removed file 'lib/canonical/launchpad/icing/blueprints-feature-discuss.png'
2733Binary files lib/canonical/launchpad/icing/blueprints-feature-discuss.png 2007-03-30 23:31:10 +0000 and lib/canonical/launchpad/icing/blueprints-feature-discuss.png 1970-01-01 00:00:00 +0000 differ
2734=== removed file 'lib/canonical/launchpad/icing/blueprints-feature-release.png'
2735Binary files lib/canonical/launchpad/icing/blueprints-feature-release.png 2007-03-30 23:31:10 +0000 and lib/canonical/launchpad/icing/blueprints-feature-release.png 1970-01-01 00:00:00 +0000 differ
2736=== removed file 'lib/canonical/launchpad/icing/blueprints-feature-roadmap.png'
2737Binary files lib/canonical/launchpad/icing/blueprints-feature-roadmap.png 2007-03-30 23:31:10 +0000 and lib/canonical/launchpad/icing/blueprints-feature-roadmap.png 1970-01-01 00:00:00 +0000 differ
2738=== removed file 'lib/canonical/launchpad/icing/blueprints-feature-sprints.png'
2739Binary files lib/canonical/launchpad/icing/blueprints-feature-sprints.png 2007-03-30 23:31:10 +0000 and lib/canonical/launchpad/icing/blueprints-feature-sprints.png 1970-01-01 00:00:00 +0000 differ
2740=== removed file 'lib/canonical/launchpad/icing/blueprints-tour-screenshot1.png'
2741Binary files lib/canonical/launchpad/icing/blueprints-tour-screenshot1.png 2007-04-17 16:47:42 +0000 and lib/canonical/launchpad/icing/blueprints-tour-screenshot1.png 1970-01-01 00:00:00 +0000 differ
2742=== removed file 'lib/canonical/launchpad/icing/blueprints-tour-screenshot2.png'
2743Binary files lib/canonical/launchpad/icing/blueprints-tour-screenshot2.png 2007-04-17 16:47:42 +0000 and lib/canonical/launchpad/icing/blueprints-tour-screenshot2.png 1970-01-01 00:00:00 +0000 differ
2744=== removed file 'lib/canonical/launchpad/icing/blueprints-tour-screenshot3.png'
2745Binary files lib/canonical/launchpad/icing/blueprints-tour-screenshot3.png 2007-04-10 21:51:14 +0000 and lib/canonical/launchpad/icing/blueprints-tour-screenshot3.png 1970-01-01 00:00:00 +0000 differ
2746=== removed file 'lib/canonical/launchpad/icing/bugs-feature-tagging.png'
2747Binary files lib/canonical/launchpad/icing/bugs-feature-tagging.png 2007-03-30 15:43:56 +0000 and lib/canonical/launchpad/icing/bugs-feature-tagging.png 1970-01-01 00:00:00 +0000 differ
2748=== removed file 'lib/canonical/launchpad/icing/bugs-feature-teams.png'
2749Binary files lib/canonical/launchpad/icing/bugs-feature-teams.png 2007-03-30 15:43:56 +0000 and lib/canonical/launchpad/icing/bugs-feature-teams.png 1970-01-01 00:00:00 +0000 differ
2750=== removed file 'lib/canonical/launchpad/icing/bugs-feature-tracker.png'
2751Binary files lib/canonical/launchpad/icing/bugs-feature-tracker.png 2007-03-30 15:43:56 +0000 and lib/canonical/launchpad/icing/bugs-feature-tracker.png 1970-01-01 00:00:00 +0000 differ
2752=== removed file 'lib/canonical/launchpad/icing/bugs-feature-web-email-ui.png'
2753Binary files lib/canonical/launchpad/icing/bugs-feature-web-email-ui.png 2007-03-30 15:43:56 +0000 and lib/canonical/launchpad/icing/bugs-feature-web-email-ui.png 1970-01-01 00:00:00 +0000 differ
2754=== removed file 'lib/canonical/launchpad/icing/bugs-tour-screenshot1.png'
2755Binary files lib/canonical/launchpad/icing/bugs-tour-screenshot1.png 2007-04-17 16:47:42 +0000 and lib/canonical/launchpad/icing/bugs-tour-screenshot1.png 1970-01-01 00:00:00 +0000 differ
2756=== removed file 'lib/canonical/launchpad/icing/bugs-tour-screenshot2.png'
2757Binary files lib/canonical/launchpad/icing/bugs-tour-screenshot2.png 2007-04-17 16:47:42 +0000 and lib/canonical/launchpad/icing/bugs-tour-screenshot2.png 1970-01-01 00:00:00 +0000 differ
2758=== removed file 'lib/canonical/launchpad/icing/but-lrg-askaquestion-down.gif'
2759Binary files lib/canonical/launchpad/icing/but-lrg-askaquestion-down.gif 2007-02-20 00:41:11 +0000 and lib/canonical/launchpad/icing/but-lrg-askaquestion-down.gif 1970-01-01 00:00:00 +0000 differ
2760=== removed file 'lib/canonical/launchpad/icing/but-lrg-askaquestion-over.gif'
2761Binary files lib/canonical/launchpad/icing/but-lrg-askaquestion-over.gif 2007-02-20 00:41:11 +0000 and lib/canonical/launchpad/icing/but-lrg-askaquestion-over.gif 1970-01-01 00:00:00 +0000 differ
2762=== removed file 'lib/canonical/launchpad/icing/but-lrg-askaquestion.gif'
2763Binary files lib/canonical/launchpad/icing/but-lrg-askaquestion.gif 2007-02-20 00:41:11 +0000 and lib/canonical/launchpad/icing/but-lrg-askaquestion.gif 1970-01-01 00:00:00 +0000 differ
2764=== removed file 'lib/canonical/launchpad/icing/but-lrg-importyourproject-down.gif'
2765Binary files lib/canonical/launchpad/icing/but-lrg-importyourproject-down.gif 2007-02-20 00:41:11 +0000 and lib/canonical/launchpad/icing/but-lrg-importyourproject-down.gif 1970-01-01 00:00:00 +0000 differ
2766=== removed file 'lib/canonical/launchpad/icing/but-lrg-importyourproject-over.gif'
2767Binary files lib/canonical/launchpad/icing/but-lrg-importyourproject-over.gif 2007-02-20 00:41:11 +0000 and lib/canonical/launchpad/icing/but-lrg-importyourproject-over.gif 1970-01-01 00:00:00 +0000 differ
2768=== removed file 'lib/canonical/launchpad/icing/but-lrg-registerabranch-down.gif'
2769Binary files lib/canonical/launchpad/icing/but-lrg-registerabranch-down.gif 2007-02-20 00:41:11 +0000 and lib/canonical/launchpad/icing/but-lrg-registerabranch-down.gif 1970-01-01 00:00:00 +0000 differ
2770=== removed file 'lib/canonical/launchpad/icing/but-lrg-registerabranch-over.gif'
2771Binary files lib/canonical/launchpad/icing/but-lrg-registerabranch-over.gif 2007-02-20 00:41:11 +0000 and lib/canonical/launchpad/icing/but-lrg-registerabranch-over.gif 1970-01-01 00:00:00 +0000 differ
2772=== removed file 'lib/canonical/launchpad/icing/but-lrg-registeraspec-down.gif'
2773Binary files lib/canonical/launchpad/icing/but-lrg-registeraspec-down.gif 2007-03-13 01:21:22 +0000 and lib/canonical/launchpad/icing/but-lrg-registeraspec-down.gif 1970-01-01 00:00:00 +0000 differ
2774=== removed file 'lib/canonical/launchpad/icing/but-lrg-registeraspec-over.gif'
2775Binary files lib/canonical/launchpad/icing/but-lrg-registeraspec-over.gif 2007-03-13 01:21:22 +0000 and lib/canonical/launchpad/icing/but-lrg-registeraspec-over.gif 1970-01-01 00:00:00 +0000 differ
2776=== removed file 'lib/canonical/launchpad/icing/but-lrg-registerproj-down.gif'
2777Binary files lib/canonical/launchpad/icing/but-lrg-registerproj-down.gif 2007-03-20 09:08:01 +0000 and lib/canonical/launchpad/icing/but-lrg-registerproj-down.gif 1970-01-01 00:00:00 +0000 differ
2778=== removed file 'lib/canonical/launchpad/icing/but-lrg-registerproj-over.gif'
2779Binary files lib/canonical/launchpad/icing/but-lrg-registerproj-over.gif 2007-03-20 09:08:01 +0000 and lib/canonical/launchpad/icing/but-lrg-registerproj-over.gif 1970-01-01 00:00:00 +0000 differ
2780=== removed file 'lib/canonical/launchpad/icing/but-lrg-registerproj.gif'
2781Binary files lib/canonical/launchpad/icing/but-lrg-registerproj.gif 2007-03-20 09:08:01 +0000 and lib/canonical/launchpad/icing/but-lrg-registerproj.gif 1970-01-01 00:00:00 +0000 differ
2782=== removed file 'lib/canonical/launchpad/icing/but-lrg-reportabug-down.gif'
2783Binary files lib/canonical/launchpad/icing/but-lrg-reportabug-down.gif 2007-02-20 00:41:11 +0000 and lib/canonical/launchpad/icing/but-lrg-reportabug-down.gif 1970-01-01 00:00:00 +0000 differ
2784=== removed file 'lib/canonical/launchpad/icing/but-lrg-reportabug-over.gif'
2785Binary files lib/canonical/launchpad/icing/but-lrg-reportabug-over.gif 2007-02-20 00:41:11 +0000 and lib/canonical/launchpad/icing/but-lrg-reportabug-over.gif 1970-01-01 00:00:00 +0000 differ
2786=== removed file 'lib/canonical/launchpad/icing/but-lrg-reportabug.gif'
2787Binary files lib/canonical/launchpad/icing/but-lrg-reportabug.gif 2007-02-20 00:41:11 +0000 and lib/canonical/launchpad/icing/but-lrg-reportabug.gif 1970-01-01 00:00:00 +0000 differ
2788=== removed file 'lib/canonical/launchpad/icing/but-lrg-takeatour-down.gif'
2789Binary files lib/canonical/launchpad/icing/but-lrg-takeatour-down.gif 2007-02-20 00:41:11 +0000 and lib/canonical/launchpad/icing/but-lrg-takeatour-down.gif 1970-01-01 00:00:00 +0000 differ
2790=== removed file 'lib/canonical/launchpad/icing/but-lrg-takeatour-over.gif'
2791Binary files lib/canonical/launchpad/icing/but-lrg-takeatour-over.gif 2007-02-20 00:41:11 +0000 and lib/canonical/launchpad/icing/but-lrg-takeatour-over.gif 1970-01-01 00:00:00 +0000 differ
2792=== removed file 'lib/canonical/launchpad/icing/but-sml-askaquestion-over.gif'
2793Binary files lib/canonical/launchpad/icing/but-sml-askaquestion-over.gif 2007-02-20 02:30:48 +0000 and lib/canonical/launchpad/icing/but-sml-askaquestion-over.gif 1970-01-01 00:00:00 +0000 differ
2794=== removed file 'lib/canonical/launchpad/icing/but-sml-helptranslate-down.gif'
2795Binary files lib/canonical/launchpad/icing/but-sml-helptranslate-down.gif 2007-02-26 01:33:08 +0000 and lib/canonical/launchpad/icing/but-sml-helptranslate-down.gif 1970-01-01 00:00:00 +0000 differ
2796=== removed file 'lib/canonical/launchpad/icing/but-sml-helptranslate-over.gif'
2797Binary files lib/canonical/launchpad/icing/but-sml-helptranslate-over.gif 2007-02-26 01:33:08 +0000 and lib/canonical/launchpad/icing/but-sml-helptranslate-over.gif 1970-01-01 00:00:00 +0000 differ
2798=== removed file 'lib/canonical/launchpad/icing/but-sml-helptranslate.gif'
2799Binary files lib/canonical/launchpad/icing/but-sml-helptranslate.gif 2007-02-26 01:33:08 +0000 and lib/canonical/launchpad/icing/but-sml-helptranslate.gif 1970-01-01 00:00:00 +0000 differ
2800=== removed file 'lib/canonical/launchpad/icing/but-sml-jointhisteam.gif'
2801Binary files lib/canonical/launchpad/icing/but-sml-jointhisteam.gif 2007-04-02 09:26:43 +0000 and lib/canonical/launchpad/icing/but-sml-jointhisteam.gif 1970-01-01 00:00:00 +0000 differ
2802=== removed file 'lib/canonical/launchpad/icing/but-sml-mentoring-down.gif'
2803Binary files lib/canonical/launchpad/icing/but-sml-mentoring-down.gif 2007-04-26 09:56:09 +0000 and lib/canonical/launchpad/icing/but-sml-mentoring-down.gif 1970-01-01 00:00:00 +0000 differ
2804=== removed file 'lib/canonical/launchpad/icing/but-sml-mentoring-off.gif'
2805Binary files lib/canonical/launchpad/icing/but-sml-mentoring-off.gif 2007-04-26 09:56:09 +0000 and lib/canonical/launchpad/icing/but-sml-mentoring-off.gif 1970-01-01 00:00:00 +0000 differ
2806=== removed file 'lib/canonical/launchpad/icing/but-sml-mentoring-over.gif'
2807Binary files lib/canonical/launchpad/icing/but-sml-mentoring-over.gif 2007-04-26 09:56:09 +0000 and lib/canonical/launchpad/icing/but-sml-mentoring-over.gif 1970-01-01 00:00:00 +0000 differ
2808=== removed file 'lib/canonical/launchpad/icing/but-sml-mentoring.gif'
2809Binary files lib/canonical/launchpad/icing/but-sml-mentoring.gif 2007-04-26 09:56:09 +0000 and lib/canonical/launchpad/icing/but-sml-mentoring.gif 1970-01-01 00:00:00 +0000 differ
2810=== removed file 'lib/canonical/launchpad/icing/but-sml-registerablueprint-down.gif'
2811Binary files lib/canonical/launchpad/icing/but-sml-registerablueprint-down.gif 2007-07-03 21:57:29 +0000 and lib/canonical/launchpad/icing/but-sml-registerablueprint-down.gif 1970-01-01 00:00:00 +0000 differ
2812=== removed file 'lib/canonical/launchpad/icing/but-sml-registerablueprint-over.gif'
2813Binary files lib/canonical/launchpad/icing/but-sml-registerablueprint-over.gif 2007-07-03 21:57:29 +0000 and lib/canonical/launchpad/icing/but-sml-registerablueprint-over.gif 1970-01-01 00:00:00 +0000 differ
2814=== removed file 'lib/canonical/launchpad/icing/but-sml-registerablueprint.gif'
2815Binary files lib/canonical/launchpad/icing/but-sml-registerablueprint.gif 2007-07-03 21:57:29 +0000 and lib/canonical/launchpad/icing/but-sml-registerablueprint.gif 1970-01-01 00:00:00 +0000 differ
2816=== removed file 'lib/canonical/launchpad/icing/but-sml-reportabug-down.gif'
2817Binary files lib/canonical/launchpad/icing/but-sml-reportabug-down.gif 2007-02-20 02:30:48 +0000 and lib/canonical/launchpad/icing/but-sml-reportabug-down.gif 1970-01-01 00:00:00 +0000 differ
2818=== removed file 'lib/canonical/launchpad/icing/but-sml-reportabug-over.gif'
2819Binary files lib/canonical/launchpad/icing/but-sml-reportabug-over.gif 2007-02-20 02:30:48 +0000 and lib/canonical/launchpad/icing/but-sml-reportabug-over.gif 1970-01-01 00:00:00 +0000 differ
2820=== removed file 'lib/canonical/launchpad/icing/code-feature-bug-branches.png'
2821Binary files lib/canonical/launchpad/icing/code-feature-bug-branches.png 2007-03-30 15:06:02 +0000 and lib/canonical/launchpad/icing/code-feature-bug-branches.png 1970-01-01 00:00:00 +0000 differ
2822=== removed file 'lib/canonical/launchpad/icing/code-feature-everyone.png'
2823Binary files lib/canonical/launchpad/icing/code-feature-everyone.png 2007-03-30 15:06:02 +0000 and lib/canonical/launchpad/icing/code-feature-everyone.png 1970-01-01 00:00:00 +0000 differ
2824=== removed file 'lib/canonical/launchpad/icing/code-feature-hosting.png'
2825Binary files lib/canonical/launchpad/icing/code-feature-hosting.png 2007-03-30 15:06:02 +0000 and lib/canonical/launchpad/icing/code-feature-hosting.png 1970-01-01 00:00:00 +0000 differ
2826=== removed file 'lib/canonical/launchpad/icing/code-feature-import.png'
2827Binary files lib/canonical/launchpad/icing/code-feature-import.png 2007-03-30 15:06:02 +0000 and lib/canonical/launchpad/icing/code-feature-import.png 1970-01-01 00:00:00 +0000 differ
2828=== removed file 'lib/canonical/launchpad/icing/code-tour-screenshot1.png'
2829Binary files lib/canonical/launchpad/icing/code-tour-screenshot1.png 2007-04-17 16:47:42 +0000 and lib/canonical/launchpad/icing/code-tour-screenshot1.png 1970-01-01 00:00:00 +0000 differ
2830=== removed file 'lib/canonical/launchpad/icing/code-tour-screenshot2.png'
2831Binary files lib/canonical/launchpad/icing/code-tour-screenshot2.png 2007-04-17 16:47:42 +0000 and lib/canonical/launchpad/icing/code-tour-screenshot2.png 1970-01-01 00:00:00 +0000 differ
2832=== removed file 'lib/canonical/launchpad/icing/code-tour-screenshot3.png'
2833Binary files lib/canonical/launchpad/icing/code-tour-screenshot3.png 2007-04-17 16:47:42 +0000 and lib/canonical/launchpad/icing/code-tour-screenshot3.png 1970-01-01 00:00:00 +0000 differ
2834=== removed file 'lib/canonical/launchpad/icing/globalheader_bg.gif'
2835Binary files lib/canonical/launchpad/icing/globalheader_bg.gif 2006-09-18 09:38:09 +0000 and lib/canonical/launchpad/icing/globalheader_bg.gif 1970-01-01 00:00:00 +0000 differ
2836=== removed file 'lib/canonical/launchpad/icing/globalheader_home.gif'
2837Binary files lib/canonical/launchpad/icing/globalheader_home.gif 2006-09-18 09:38:09 +0000 and lib/canonical/launchpad/icing/globalheader_home.gif 1970-01-01 00:00:00 +0000 differ
2838=== removed file 'lib/canonical/launchpad/icing/help-bottom.gif'
2839Binary files lib/canonical/launchpad/icing/help-bottom.gif 2007-04-12 12:18:19 +0000 and lib/canonical/launchpad/icing/help-bottom.gif 1970-01-01 00:00:00 +0000 differ
2840=== removed file 'lib/canonical/launchpad/icing/launchpad-tour-screenshot1.png'
2841Binary files lib/canonical/launchpad/icing/launchpad-tour-screenshot1.png 2007-04-03 20:47:40 +0000 and lib/canonical/launchpad/icing/launchpad-tour-screenshot1.png 1970-01-01 00:00:00 +0000 differ
2842=== removed file 'lib/canonical/launchpad/icing/launchpad-tour-screenshot2.png'
2843Binary files lib/canonical/launchpad/icing/launchpad-tour-screenshot2.png 2007-04-03 20:47:40 +0000 and lib/canonical/launchpad/icing/launchpad-tour-screenshot2.png 1970-01-01 00:00:00 +0000 differ
2844=== removed file 'lib/canonical/launchpad/icing/launchpad-tour-screenshot3.png'
2845Binary files lib/canonical/launchpad/icing/launchpad-tour-screenshot3.png 2007-04-03 20:47:40 +0000 and lib/canonical/launchpad/icing/launchpad-tour-screenshot3.png 1970-01-01 00:00:00 +0000 differ
2846=== removed file 'lib/canonical/launchpad/icing/launchpad-tour-screenshot4.png'
2847Binary files lib/canonical/launchpad/icing/launchpad-tour-screenshot4.png 2007-04-05 22:45:23 +0000 and lib/canonical/launchpad/icing/launchpad-tour-screenshot4.png 1970-01-01 00:00:00 +0000 differ
2848=== removed file 'lib/canonical/launchpad/icing/leftnav-{}.gif'
2849Binary files lib/canonical/launchpad/icing/leftnav-{}.gif 2006-09-18 09:38:09 +0000 and lib/canonical/launchpad/icing/leftnav-{}.gif 1970-01-01 00:00:00 +0000 differ
2850=== removed file 'lib/canonical/launchpad/icing/leftnav_left_bg.gif'
2851Binary files lib/canonical/launchpad/icing/leftnav_left_bg.gif 2006-09-18 09:38:09 +0000 and lib/canonical/launchpad/icing/leftnav_left_bg.gif 1970-01-01 00:00:00 +0000 differ
2852=== removed file 'lib/canonical/launchpad/icing/leftnav_right_bg.gif'
2853Binary files lib/canonical/launchpad/icing/leftnav_right_bg.gif 2006-09-18 09:38:09 +0000 and lib/canonical/launchpad/icing/leftnav_right_bg.gif 1970-01-01 00:00:00 +0000 differ
2854=== removed file 'lib/canonical/launchpad/icing/mainarea_bottom.gif'
2855Binary files lib/canonical/launchpad/icing/mainarea_bottom.gif 2007-07-31 08:24:28 +0000 and lib/canonical/launchpad/icing/mainarea_bottom.gif 1970-01-01 00:00:00 +0000 differ
2856=== removed file 'lib/canonical/launchpad/icing/navigation-n.png'
2857Binary files lib/canonical/launchpad/icing/navigation-n.png 2008-09-11 22:46:37 +0000 and lib/canonical/launchpad/icing/navigation-n.png 1970-01-01 00:00:00 +0000 differ
2858=== removed file 'lib/canonical/launchpad/icing/navigation-ne-e-normal.png'
2859Binary files lib/canonical/launchpad/icing/navigation-ne-e-normal.png 2008-09-11 22:46:37 +0000 and lib/canonical/launchpad/icing/navigation-ne-e-normal.png 1970-01-01 00:00:00 +0000 differ
2860=== removed file 'lib/canonical/launchpad/icing/navigation-ne-e-selected.png'
2861Binary files lib/canonical/launchpad/icing/navigation-ne-e-selected.png 2008-09-11 22:46:37 +0000 and lib/canonical/launchpad/icing/navigation-ne-e-selected.png 1970-01-01 00:00:00 +0000 differ
2862=== removed file 'lib/canonical/launchpad/icing/navigation-nw-w-normal.png'
2863Binary files lib/canonical/launchpad/icing/navigation-nw-w-normal.png 2008-09-11 22:46:37 +0000 and lib/canonical/launchpad/icing/navigation-nw-w-normal.png 1970-01-01 00:00:00 +0000 differ
2864=== removed file 'lib/canonical/launchpad/icing/navigation-nw-w-selected.png'
2865Binary files lib/canonical/launchpad/icing/navigation-nw-w-selected.png 2008-09-11 22:46:37 +0000 and lib/canonical/launchpad/icing/navigation-nw-w-selected.png 1970-01-01 00:00:00 +0000 differ
2866=== removed file 'lib/canonical/launchpad/icing/navigation-parent-ne-e-normal.png'
2867Binary files lib/canonical/launchpad/icing/navigation-parent-ne-e-normal.png 2008-09-15 18:23:51 +0000 and lib/canonical/launchpad/icing/navigation-parent-ne-e-normal.png 1970-01-01 00:00:00 +0000 differ
2868=== removed file 'lib/canonical/launchpad/icing/navigation-parent-nw-w-normal.png'
2869Binary files lib/canonical/launchpad/icing/navigation-parent-nw-w-normal.png 2008-09-15 18:23:51 +0000 and lib/canonical/launchpad/icing/navigation-parent-nw-w-normal.png 1970-01-01 00:00:00 +0000 differ
2870=== removed file 'lib/canonical/launchpad/icing/navigation-parent-se-normal.png'
2871Binary files lib/canonical/launchpad/icing/navigation-parent-se-normal.png 2008-09-15 18:23:51 +0000 and lib/canonical/launchpad/icing/navigation-parent-se-normal.png 1970-01-01 00:00:00 +0000 differ
2872=== removed file 'lib/canonical/launchpad/icing/navigation-parent-sw-normal.png'
2873Binary files lib/canonical/launchpad/icing/navigation-parent-sw-normal.png 2008-09-15 18:23:51 +0000 and lib/canonical/launchpad/icing/navigation-parent-sw-normal.png 1970-01-01 00:00:00 +0000 differ
2874=== removed file 'lib/canonical/launchpad/icing/navigation-se-e-normal.png'
2875Binary files lib/canonical/launchpad/icing/navigation-se-e-normal.png 2008-07-10 14:48:18 +0000 and lib/canonical/launchpad/icing/navigation-se-e-normal.png 1970-01-01 00:00:00 +0000 differ
2876=== removed file 'lib/canonical/launchpad/icing/navigation-se-normal.png'
2877Binary files lib/canonical/launchpad/icing/navigation-se-normal.png 2008-09-11 22:46:37 +0000 and lib/canonical/launchpad/icing/navigation-se-normal.png 1970-01-01 00:00:00 +0000 differ
2878=== removed file 'lib/canonical/launchpad/icing/navigation-se-selected.png'
2879Binary files lib/canonical/launchpad/icing/navigation-se-selected.png 2008-09-11 22:46:37 +0000 and lib/canonical/launchpad/icing/navigation-se-selected.png 1970-01-01 00:00:00 +0000 differ
2880=== removed file 'lib/canonical/launchpad/icing/navigation-sw-normal.png'
2881Binary files lib/canonical/launchpad/icing/navigation-sw-normal.png 2008-09-11 22:46:37 +0000 and lib/canonical/launchpad/icing/navigation-sw-normal.png 1970-01-01 00:00:00 +0000 differ
2882=== removed file 'lib/canonical/launchpad/icing/navigation-sw-selected.png'
2883Binary files lib/canonical/launchpad/icing/navigation-sw-selected.png 2008-09-11 22:46:37 +0000 and lib/canonical/launchpad/icing/navigation-sw-selected.png 1970-01-01 00:00:00 +0000 differ
2884=== removed file 'lib/canonical/launchpad/icing/navigation-sw-w-normal.png'
2885Binary files lib/canonical/launchpad/icing/navigation-sw-w-normal.png 2008-07-08 15:40:50 +0000 and lib/canonical/launchpad/icing/navigation-sw-w-normal.png 1970-01-01 00:00:00 +0000 differ
2886=== removed file 'lib/canonical/launchpad/icing/navigation-tab-bottom-overview-normal.png'
2887Binary files lib/canonical/launchpad/icing/navigation-tab-bottom-overview-normal.png 2008-07-03 16:54:50 +0000 and lib/canonical/launchpad/icing/navigation-tab-bottom-overview-normal.png 1970-01-01 00:00:00 +0000 differ
2888=== removed file 'lib/canonical/launchpad/icing/navigation-tab-bottom-untinted-normal.png'
2889Binary files lib/canonical/launchpad/icing/navigation-tab-bottom-untinted-normal.png 2008-07-03 16:54:50 +0000 and lib/canonical/launchpad/icing/navigation-tab-bottom-untinted-normal.png 1970-01-01 00:00:00 +0000 differ
2890=== removed file 'lib/canonical/launchpad/icing/navigation-tab-bottom-untinted-selected.png'
2891Binary files lib/canonical/launchpad/icing/navigation-tab-bottom-untinted-selected.png 2008-07-03 16:54:50 +0000 and lib/canonical/launchpad/icing/navigation-tab-bottom-untinted-selected.png 1970-01-01 00:00:00 +0000 differ
2892=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-answers'
2893Binary files lib/canonical/launchpad/icing/navigation-tabs-se-answers 2008-07-09 12:19:07 +0000 and lib/canonical/launchpad/icing/navigation-tabs-se-answers 1970-01-01 00:00:00 +0000 differ
2894=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-answers-active'
2895Binary files lib/canonical/launchpad/icing/navigation-tabs-se-answers-active 2008-07-09 14:15:13 +0000 and lib/canonical/launchpad/icing/navigation-tabs-se-answers-active 1970-01-01 00:00:00 +0000 differ
2896=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-blueprints'
2897Binary files lib/canonical/launchpad/icing/navigation-tabs-se-blueprints 2008-07-09 12:19:07 +0000 and lib/canonical/launchpad/icing/navigation-tabs-se-blueprints 1970-01-01 00:00:00 +0000 differ
2898=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-blueprints-active'
2899Binary files lib/canonical/launchpad/icing/navigation-tabs-se-blueprints-active 2008-07-09 14:15:13 +0000 and lib/canonical/launchpad/icing/navigation-tabs-se-blueprints-active 1970-01-01 00:00:00 +0000 differ
2900=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-bugs'
2901Binary files lib/canonical/launchpad/icing/navigation-tabs-se-bugs 2008-07-09 12:19:07 +0000 and lib/canonical/launchpad/icing/navigation-tabs-se-bugs 1970-01-01 00:00:00 +0000 differ
2902=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-bugs-active'
2903Binary files lib/canonical/launchpad/icing/navigation-tabs-se-bugs-active 2008-07-09 14:15:13 +0000 and lib/canonical/launchpad/icing/navigation-tabs-se-bugs-active 1970-01-01 00:00:00 +0000 differ
2904=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-code'
2905Binary files lib/canonical/launchpad/icing/navigation-tabs-se-code 2008-07-09 12:19:07 +0000 and lib/canonical/launchpad/icing/navigation-tabs-se-code 1970-01-01 00:00:00 +0000 differ
2906=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-code-active'
2907Binary files lib/canonical/launchpad/icing/navigation-tabs-se-code-active 2008-07-09 14:15:13 +0000 and lib/canonical/launchpad/icing/navigation-tabs-se-code-active 1970-01-01 00:00:00 +0000 differ
2908=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-disabled'
2909Binary files lib/canonical/launchpad/icing/navigation-tabs-se-disabled 2008-07-09 14:15:13 +0000 and lib/canonical/launchpad/icing/navigation-tabs-se-disabled 1970-01-01 00:00:00 +0000 differ
2910=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-overview'
2911Binary files lib/canonical/launchpad/icing/navigation-tabs-se-overview 2008-07-09 12:19:07 +0000 and lib/canonical/launchpad/icing/navigation-tabs-se-overview 1970-01-01 00:00:00 +0000 differ
2912=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-overview-active'
2913Binary files lib/canonical/launchpad/icing/navigation-tabs-se-overview-active 2008-07-09 14:15:13 +0000 and lib/canonical/launchpad/icing/navigation-tabs-se-overview-active 1970-01-01 00:00:00 +0000 differ
2914=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-translations'
2915Binary files lib/canonical/launchpad/icing/navigation-tabs-se-translations 2008-07-09 12:19:07 +0000 and lib/canonical/launchpad/icing/navigation-tabs-se-translations 1970-01-01 00:00:00 +0000 differ
2916=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-translations-active'
2917Binary files lib/canonical/launchpad/icing/navigation-tabs-se-translations-active 2008-07-09 14:15:13 +0000 and lib/canonical/launchpad/icing/navigation-tabs-se-translations-active 1970-01-01 00:00:00 +0000 differ
2918=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw'
2919Binary files lib/canonical/launchpad/icing/navigation-tabs-sw 2008-07-08 18:41:12 +0000 and lib/canonical/launchpad/icing/navigation-tabs-sw 1970-01-01 00:00:00 +0000 differ
2920=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-answers'
2921Binary files lib/canonical/launchpad/icing/navigation-tabs-sw-answers 2008-07-09 12:19:07 +0000 and lib/canonical/launchpad/icing/navigation-tabs-sw-answers 1970-01-01 00:00:00 +0000 differ
2922=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-answers-active'
2923Binary files lib/canonical/launchpad/icing/navigation-tabs-sw-answers-active 2008-07-09 14:15:13 +0000 and lib/canonical/launchpad/icing/navigation-tabs-sw-answers-active 1970-01-01 00:00:00 +0000 differ
2924=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-blueprints'
2925Binary files lib/canonical/launchpad/icing/navigation-tabs-sw-blueprints 2008-07-09 12:19:07 +0000 and lib/canonical/launchpad/icing/navigation-tabs-sw-blueprints 1970-01-01 00:00:00 +0000 differ
2926=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-blueprints-active'
2927Binary files lib/canonical/launchpad/icing/navigation-tabs-sw-blueprints-active 2008-07-09 14:15:13 +0000 and lib/canonical/launchpad/icing/navigation-tabs-sw-blueprints-active 1970-01-01 00:00:00 +0000 differ
2928=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-bugs'
2929Binary files lib/canonical/launchpad/icing/navigation-tabs-sw-bugs 2008-07-09 12:19:07 +0000 and lib/canonical/launchpad/icing/navigation-tabs-sw-bugs 1970-01-01 00:00:00 +0000 differ
2930=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-bugs-active'
2931Binary files lib/canonical/launchpad/icing/navigation-tabs-sw-bugs-active 2008-07-09 14:15:13 +0000 and lib/canonical/launchpad/icing/navigation-tabs-sw-bugs-active 1970-01-01 00:00:00 +0000 differ
2932=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-code'
2933Binary files lib/canonical/launchpad/icing/navigation-tabs-sw-code 2008-07-09 12:19:07 +0000 and lib/canonical/launchpad/icing/navigation-tabs-sw-code 1970-01-01 00:00:00 +0000 differ
2934=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-code-active'
2935Binary files lib/canonical/launchpad/icing/navigation-tabs-sw-code-active 2008-07-09 14:15:13 +0000 and lib/canonical/launchpad/icing/navigation-tabs-sw-code-active 1970-01-01 00:00:00 +0000 differ
2936=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-disabled'
2937Binary files lib/canonical/launchpad/icing/navigation-tabs-sw-disabled 2008-07-09 14:15:13 +0000 and lib/canonical/launchpad/icing/navigation-tabs-sw-disabled 1970-01-01 00:00:00 +0000 differ
2938=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-overview'
2939Binary files lib/canonical/launchpad/icing/navigation-tabs-sw-overview 2008-07-09 12:19:07 +0000 and lib/canonical/launchpad/icing/navigation-tabs-sw-overview 1970-01-01 00:00:00 +0000 differ
2940=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-overview-active'
2941Binary files lib/canonical/launchpad/icing/navigation-tabs-sw-overview-active 2008-07-09 14:15:13 +0000 and lib/canonical/launchpad/icing/navigation-tabs-sw-overview-active 1970-01-01 00:00:00 +0000 differ
2942=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-translations'
2943Binary files lib/canonical/launchpad/icing/navigation-tabs-sw-translations 2008-07-09 12:19:07 +0000 and lib/canonical/launchpad/icing/navigation-tabs-sw-translations 1970-01-01 00:00:00 +0000 differ
2944=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-translations-active'
2945Binary files lib/canonical/launchpad/icing/navigation-tabs-sw-translations-active 2008-07-09 14:15:13 +0000 and lib/canonical/launchpad/icing/navigation-tabs-sw-translations-active 1970-01-01 00:00:00 +0000 differ
2946=== removed file 'lib/canonical/launchpad/icing/translations-add-more-lines.gif'
2947Binary files lib/canonical/launchpad/icing/translations-add-more-lines.gif 2008-07-25 18:09:42 +0000 and lib/canonical/launchpad/icing/translations-add-more-lines.gif 1970-01-01 00:00:00 +0000 differ
2948=== removed file 'lib/canonical/launchpad/icing/translations-feature-everyone.png'
2949Binary files lib/canonical/launchpad/icing/translations-feature-everyone.png 2007-03-30 23:31:10 +0000 and lib/canonical/launchpad/icing/translations-feature-everyone.png 1970-01-01 00:00:00 +0000 differ
2950=== removed file 'lib/canonical/launchpad/icing/translations-feature-flexible.png'
2951Binary files lib/canonical/launchpad/icing/translations-feature-flexible.png 2007-03-30 23:31:10 +0000 and lib/canonical/launchpad/icing/translations-feature-flexible.png 1970-01-01 00:00:00 +0000 differ
2952=== removed file 'lib/canonical/launchpad/icing/translations-feature-gettext.png'
2953Binary files lib/canonical/launchpad/icing/translations-feature-gettext.png 2007-03-30 23:31:10 +0000 and lib/canonical/launchpad/icing/translations-feature-gettext.png 1970-01-01 00:00:00 +0000 differ
2954=== removed file 'lib/canonical/launchpad/icing/translations-feature-suggestions.png'
2955Binary files lib/canonical/launchpad/icing/translations-feature-suggestions.png 2007-03-30 23:31:10 +0000 and lib/canonical/launchpad/icing/translations-feature-suggestions.png 1970-01-01 00:00:00 +0000 differ
2956=== removed file 'lib/canonical/launchpad/icing/translations-tour-screenshot1.png'
2957Binary files lib/canonical/launchpad/icing/translations-tour-screenshot1.png 2007-04-17 16:47:42 +0000 and lib/canonical/launchpad/icing/translations-tour-screenshot1.png 1970-01-01 00:00:00 +0000 differ
2958=== removed file 'lib/canonical/launchpad/icing/translations-tour-screenshot2.png'
2959Binary files lib/canonical/launchpad/icing/translations-tour-screenshot2.png 2007-04-11 16:03:28 +0000 and lib/canonical/launchpad/icing/translations-tour-screenshot2.png 1970-01-01 00:00:00 +0000 differ
2960=== modified file 'lib/canonical/launchpad/interfaces/launchpad.py'
2961--- lib/canonical/launchpad/interfaces/launchpad.py 2010-07-13 10:57:31 +0000
2962+++ lib/canonical/launchpad/interfaces/launchpad.py 2010-07-15 08:42:46 +0000
2963@@ -61,8 +61,6 @@
2964 'IPrivacy',
2965 'IReadZODBAnnotation',
2966 'IRosettaApplication',
2967- 'IStructuralHeaderPresentation',
2968- 'IStructuralObjectPresentation',
2969 'IWebServiceApplication',
2970 'IWriteZODBAnnotation',
2971 'IZODBAnnotation',
2972@@ -489,38 +487,6 @@
2973 datecreated = Attribute("The date on which I was created.")
2974
2975
2976-class IStructuralHeaderPresentation(Interface):
2977- """Adapter for common aspects of a structural object's presentation."""
2978-
2979- def getIntroHeading():
2980- """Any heading introduction needed (e.g. "Ubuntu source package:")."""
2981-
2982- def getMainHeading():
2983- """can be None"""
2984-
2985-
2986-class IStructuralObjectPresentation(IStructuralHeaderPresentation):
2987- """Adapter for less common parts of a structural object's presentation."""
2988-
2989- def listChildren(num):
2990- """List up to num children. Return empty string for none of these"""
2991-
2992- def countChildren():
2993- """Return the total number of children."""
2994-
2995- def listAltChildren(num):
2996- """List up to num alternative children.
2997-
2998- Return None if alt children are not supported.
2999- """
3000-
3001- def countAltChildren():
3002- """Return the total number of alt children.
3003-
3004- Will be called only if listAltChildren returns something.
3005- """
3006-
3007-
3008 class IAppFrontPageSearchForm(Interface):
3009 """Schema for the app-specific front page search question forms."""
3010
3011
3012=== modified file 'lib/canonical/launchpad/pagetitles.py'
3013--- lib/canonical/launchpad/pagetitles.py 2010-06-02 16:40:02 +0000
3014+++ lib/canonical/launchpad/pagetitles.py 2010-07-15 08:42:46 +0000
3015@@ -46,20 +46,13 @@
3016 from zope.component import getUtility
3017
3018 from canonical.launchpad.interfaces import (
3019- ILaunchBag, IMaloneApplication, IPerson, IStructuralObjectPresentation)
3020+ ILaunchBag, IMaloneApplication)
3021 from canonical.lazr.utils import smartquote
3022
3023 DEFAULT_LAUNCHPAD_TITLE = 'Launchpad'
3024
3025 # Helpers.
3026
3027-class BugTaskPageTitle:
3028- """Return the page title for a BugTask."""
3029- def __call__(self, context, view):
3030- return smartquote('%s: "%s"') % (
3031- IStructuralObjectPresentation(context).getMainHeading(),
3032- context.bug.title)
3033-
3034
3035 class SubstitutionHelper:
3036 """An abstract class for substituting values into formatted strings."""
3037@@ -87,11 +80,6 @@
3038 def __call__(self, context, view):
3039 return self.text % context.title
3040
3041-class ContextBrowsername(SubstitutionHelper):
3042- """Return the formatted string with context's browsername."""
3043- def __call__(self, context, view):
3044- return self.text % context.displayname
3045-
3046
3047 class LaunchbagBugID(SubstitutionHelper):
3048 """Return the formatted string with the bug's id from LaunchBag."""
3049@@ -112,8 +100,6 @@
3050 return view.label
3051
3052
3053-# Functions and strings used as the titles of pages.
3054-
3055 archive_admin = ContextDisplayName('Administer %s')
3056
3057 archive_activate = 'Activate Personal Package Archive'
3058@@ -124,30 +110,13 @@
3059
3060 archive_edit = ContextDisplayName('Edit %s')
3061
3062-bazaar_all_branches = 'All branches in the Launchpad Bazaar'
3063-
3064 bazaar_index = 'Launchpad Branches'
3065
3066-bazaar_sync_review = (
3067- 'Review upstream repositories for Launchpad Bazaar syncing')
3068-
3069-def binarypackagerelease_index(context, view):
3070- """Return the page title for context's binary packages."""
3071- return "%s binary package in Launchpad" % context.title
3072-
3073-binarypackagenames_index = 'Binary package name set'
3074-
3075 branch_bug_links = ContextDisplayName(smartquote('Bug links for %s'))
3076
3077 branch_index = ContextDisplayName(smartquote(
3078 '"%s" branch in Launchpad'))
3079
3080-def branch_merges(context, view):
3081- return 'Merges involving "%s" in Launchpad' % context.bzr_identity
3082-
3083-branch_landing_candidates = ContextDisplayName(smartquote(
3084- 'Landing candidates for "%s"'))
3085-
3086 def branchmergeproposal_index(context, view):
3087 return 'Proposal to merge %s' % context.source_branch.bzr_identity
3088
3089@@ -159,15 +128,6 @@
3090
3091 bug_edit = ContextBugId('Bug #%d - Edit')
3092
3093-bug_edit_confirm = ContextBugId('Bug #%d - Edit confirmation')
3094-
3095-bug_extref_add = LaunchbagBugID("Bug #%d - Add a web link")
3096-
3097-def bug_extref_edit(context, view):
3098- """Return the page title for editing a bugs external web link."""
3099- return smartquote('Bug #%d - Edit web link "%s"') % (
3100- context.bug.id, context.title)
3101-
3102 bug_mark_as_duplicate = ContextBugId('Bug #%d - Mark as duplicate')
3103
3104 bug_mark_as_affecting_user = ContextBugId(
3105@@ -181,14 +141,8 @@
3106
3107 bugbranch_delete = 'Delete bug branch link'
3108
3109-bugbranch_edit = "Edit branch fix status"
3110-
3111-buglinktarget_linkbug = 'Link to bug report'
3112-
3113 buglinktarget_unlinkbugs = 'Remove links to bug reports'
3114
3115-buglisting_advanced = ContextTitle("Bugs in %s")
3116-
3117 buglisting_default = ContextTitle("Bugs in %s")
3118
3119 def buglisting_embedded_advanced_search(context, view):
3120@@ -200,15 +154,6 @@
3121 return 'Manage nomination for bug #%d in %s' % (
3122 context.bug.id, context.target.bugtargetdisplayname)
3123
3124-def bugs_assigned(context, view):
3125- """Return the page title for the bugs assigned to the logged-in user."""
3126- if view.user:
3127- return 'Bugs assigned to %s' % view.user.displayname
3128- else:
3129- return 'No-one to display bugs for'
3130-
3131-bugtarget_advanced_search = ContextTitle("Search bugs in %s")
3132-
3133 bugtarget_bugs = ContextTitle('Bugs in %s')
3134
3135 def bugtarget_filebug_advanced(context, view):
3136@@ -235,50 +180,13 @@
3137 bugtask_confirm_bugtracker_creation = LaunchbagBugID(
3138 'Bug #%d - Record as affecting another software')
3139
3140-bugtask_edit = BugTaskPageTitle()
3141-
3142 bugtask_requestfix = LaunchbagBugID(
3143 'Bug #%d - Record as affecting another distribution/package')
3144
3145 bugtask_requestfix_upstream = LaunchbagBugID('Bug #%d - Confirm project')
3146
3147-bugtask_view = BugTaskPageTitle()
3148-
3149-# bugtask_macros_buglisting contains only macros
3150-# bugtasks_index is a redirect
3151-
3152-calendar_index = ContextTitle('%s')
3153-
3154-calendar_event_addform = ContextTitle('Add event to %s')
3155-
3156-calendar_event_display = ContextTitle(smartquote('Event "%s"'))
3157-
3158-calendar_event_editform = ContextTitle(
3159- smartquote('Change "%s" event details'))
3160-
3161-calendar_subscribe = ContextTitle(smartquote('Subscribe to "%s"'))
3162-
3163-calendar_subscriptions = 'Calendar subscriptions'
3164-
3165-def calendar_view(context, view):
3166- """Return calendar's page title with the date."""
3167- return '%s - %s' % (context.calendar.title, view.datestring)
3168-
3169-calendar_view_day = calendar_view
3170-calendar_view_week = calendar_view
3171-calendar_view_month = calendar_view
3172-calendar_view_year = calendar_view
3173-
3174-canbementored_mentoringoffer = 'Offer to mentor this work'
3175-
3176-canbementored_retractmentoring = 'Retract offer of mentorship'
3177-
3178 code_in_branches = 'Projects with active branches'
3179
3180-def codeimport(context, view):
3181- """Return the view's title."""
3182- return view.title
3183-
3184 codeimport_list = 'Code Imports'
3185
3186 codeimport_machines = ViewLabel()
3187@@ -305,47 +213,28 @@
3188
3189 cve_unlinkbugs = ContextDisplayName('Remove links between %s and bug reports')
3190
3191-debug_root_index = 'Launchpad Debug Home Page'
3192-
3193-distributionmirror_index = ContextTitle('Mirror %s')
3194-
3195 distribution_archive_list = ContextTitle('%s Copy Archives')
3196
3197 distribution_upstream_bug_report = ContextTitle('Upstream Bug Report for %s')
3198
3199 distribution_cvereport = ContextTitle('CVE reports for %s')
3200
3201-distribution_members = ContextTitle('%s distribution members')
3202-
3203 distribution_mirrors = ContextTitle("Mirrors of %s")
3204
3205 distribution_translations = ContextDisplayName('Translating %s')
3206
3207-distribution_translation_settings = ContextTitle(
3208- smartquote("Change %s's translation settings"))
3209-
3210 distribution_search = ContextDisplayName(smartquote("Search %s's packages"))
3211
3212 distribution_index = ContextTitle('%s in Launchpad')
3213
3214-distributionsourcepackage_bugs = ContextTitle('Bugs in %s')
3215-
3216 distributionsourcepackage_index = ContextTitle('%s')
3217
3218-distributionsourcepackage_publishinghistory = ContextTitle(
3219- 'Publishing history of %s')
3220-
3221 distroarchseries_index = ContextTitle('%s in Launchpad')
3222
3223-distroarchseries_search = ContextTitle(
3224- smartquote("Search %s's binary packages"))
3225-
3226 distroarchseriesbinarypackage_index = ContextTitle('%s')
3227
3228 distroarchseriesbinarypackagerelease_index = ContextTitle('%s')
3229
3230-distroseries_bugs = ContextTitle('Bugs in %s')
3231-
3232 distroseries_cvereport = ContextDisplayName('CVE report for %s')
3233
3234 def distroseries_language_packs(context, view):
3235@@ -357,47 +246,14 @@
3236
3237 distroseriessourcepackagerelease_index = ContextTitle('%s')
3238
3239-errorservice_config = 'Configure error log'
3240-
3241-errorservice_entry = 'Error log entry'
3242-
3243-errorservice_index = 'Error log report'
3244-
3245-errorservice_tbentry = 'Traceback entry'
3246-
3247-faq = 'Launchpad Frequently Asked Questions'
3248-
3249-def hasmentoringoffers_mentoring(context, view):
3250- """Return the mentoring title for the context."""
3251- if IPerson.providedBy(context):
3252- if context.teamowner is None:
3253- return 'Mentoring offered by %s' % context.title
3254- else:
3255- return ('Mentoring available for newcomers to %s' %
3256- context.displayname)
3257- else:
3258- return 'Mentoring available in %s' % context.displayname
3259-
3260 hasannouncements_index = ContextDisplayName('%s news and announcements')
3261
3262 hassprints_sprints = ContextTitle("Events related to %s")
3263
3264-# launchpad_debug doesn't need a title.
3265-
3266 launchpad_feedback = 'Help improve Launchpad'
3267
3268 launchpad_forbidden = 'Forbidden'
3269
3270-# launchpad_css is a css file
3271-
3272-# launchpad_js is standard javascript
3273-
3274-launchpad_legal = 'Launchpad legalese'
3275-
3276-launchpad_login = 'Log in or register with Launchpad'
3277-
3278-launchpad_onezerostatus = 'One-Zero Page Template Status'
3279-
3280 def launchpad_search(context, view):
3281 """Return the page title corresponding to the user's search."""
3282 return view.page_title
3283@@ -406,135 +262,17 @@
3284
3285 launchpad_librarianfailure = "Sorry, you can't do this right now"
3286
3287-# launchpad_widget_macros doesn't need a title.
3288-
3289-loginservice_email_sent = 'Launchpad Login Service - Email sent'
3290-
3291-def loginservice_authorize(context, view):
3292- """Return the page title for authenticating to a system."""
3293- rpconfig = view.rpconfig
3294- if rpconfig is None:
3295- displayname = view.openid_request.trust_root
3296- else:
3297- displayname = rpconfig.displayname
3298- return 'Authenticate to %s' % displayname
3299-
3300-loginservice_login = 'Launchpad Login Service'
3301-
3302-loginservice_standalone_login = loginservice_login
3303-
3304-# main_template has the code to insert one of these titles.
3305-
3306-malone_about = 'About Launchpad Bugs'
3307-
3308-malone_distros_index = 'Report a bug about a distribution'
3309-
3310-malone_index = 'Launchpad Bugs'
3311-
3312-# malone_people_index is a redirect
3313-
3314-# malone_template is a means to include the mainmaster template
3315-
3316-# marketing_about_template is used by the marketing pages
3317-
3318-marketing_answers_about = "About Answers"
3319-
3320-marketing_answers_faq = "FAQs about Answers"
3321-
3322-marketing_blueprints_about = "About Blueprints"
3323-
3324-marketing_blueprints_faq = "FAQs about Blueprints"
3325-
3326-marketing_bugs_about = "About Bugs"
3327-
3328-marketing_bugs_faq = "FAQs about Bugs"
3329-
3330-marketing_code_about = "About Code"
3331-
3332-marketing_code_faq = "FAQs about Code"
3333-
3334-# marketing_faq_template is used by the marketing pages
3335-
3336-marketing_home = "About Launchpad"
3337-
3338-# marketing_main_template is used by the marketing pages
3339-
3340-def marketing_tour(context, view):
3341- """Return the view's pagetitle."""
3342- return view.pagetitle
3343-
3344-marketing_translations_faq = "FAQs about Translations"
3345-
3346-mentoringofferset_success = "Successful mentorships over the past year."
3347-
3348-# messagechunk_snippet is a fragment
3349-
3350-# messages_index is a redirect
3351-
3352-milestone_add = ContextTitle('Add new milestone for %s')
3353-
3354-milestone_edit = ContextTitle('Edit %s')
3355-
3356-milestone_delete = ContextTitle('Delete %s')
3357-
3358 oauth_authorize = 'Authorize application to access Launchpad on your behalf'
3359
3360-def object_driver(context, view):
3361- """Return the page title to change the driver."""
3362- return view.page_title
3363-
3364-# object_pots is a fragment.
3365-
3366-object_translations = ContextDisplayName('Translation templates for %s')
3367-
3368 object_templates = ContextDisplayName('Translation templates for %s')
3369
3370 oops = 'Oops!'
3371
3372-openid_account_change_password = 'Change your password'
3373-
3374-def openid_account_edit(context, view):
3375- return smartquote("%s's details") % view.account.displayname
3376-
3377-def openid_account_edit_emails(context, view):
3378- return smartquote("%s's e-mail addresses") % view.account.displayname
3379-
3380-openid_default = 'OpenID Endpoint'
3381-
3382-def openid_index(context, view):
3383- return 'Welcome %s' % view.account.displayname
3384-
3385-def openid_invalid_identity(context, view):
3386- """Return the page title to the invalid identity page."""
3387- return 'Invalid OpenID identity %s' % view.openid_request.identity
3388-
3389-def package_bugs(context, view):
3390- """Return the page title bug in a package."""
3391- return 'Bugs in %s' % context.name
3392-
3393-people_adminrequestmerge = 'Merge Launchpad accounts'
3394-
3395-def people_list(context, view):
3396- """Return the view's header."""
3397- return view.header
3398-
3399 people_mergerequest_sent = 'Merge request sent'
3400
3401 person_answer_contact_for = ContextDisplayName(
3402 'Projects for which %s is an answer contact')
3403
3404-# person_foaf is an rdf file
3405-
3406-person_images = ContextDisplayName(smartquote("%s's hackergotchi and emblem"))
3407-
3408-person_karma = ContextDisplayName(smartquote("%s's karma in Launchpad"))
3409-
3410-person_mentoringoffers = ContextTitle('Mentoring offered by %s')
3411-
3412-def person_mergeproposals(context, view):
3413- """Return the view's heading."""
3414- return view.heading
3415-
3416 person_packagebugs = ContextDisplayName("%s's package bug reports")
3417
3418 person_packagebugs_overview = person_packagebugs
3419@@ -548,113 +286,45 @@
3420 person_translations_to_review = ContextDisplayName(
3421 'Translations for review by %s')
3422
3423-# portlet_* are portlets
3424-
3425 poll_edit = ContextTitle(smartquote('Edit poll "%s"'))
3426
3427 poll_index = ContextTitle(smartquote('Poll: "%s"'))
3428
3429 poll_newoption = ContextTitle(smartquote('New option for poll "%s"'))
3430
3431-def poll_new(context, view):
3432- """Return a page title to create a new poll."""
3433- return 'Create a new Poll in team %s' % context.team.displayname
3434-
3435 def polloption_edit(context, view):
3436 """Return the page title to edit a poll's option."""
3437 return 'Edit option: %s' % context.title
3438
3439-poll_options = ContextTitle(smartquote('Options for poll "%s"'))
3440-
3441 poll_vote_condorcet = ContextTitle(smartquote('Vote in poll "%s"'))
3442
3443 poll_vote_simple = ContextTitle(smartquote('Vote in poll "%s"'))
3444
3445-product_admin = ContextTitle('Administer %s in Launchpad')
3446-
3447-product_bugs = ContextDisplayName('Bugs in %s')
3448-
3449-product_code_index = ContextDisplayName("Bazaar branches of %s")
3450-
3451 product_cvereport = ContextTitle('CVE reports for %s')
3452
3453-product_edit = 'Change project details'
3454-# We don't mention its name here, because that might be what you're changing.
3455-
3456-product_edit_people = "Change the roles of people"
3457-
3458 product_index = ContextTitle('%s in Launchpad')
3459
3460-def product_mergeproposals(context, view):
3461- """Return the view's heading."""
3462- return view.heading
3463-
3464-product_new_guided = 'Before you register your project...'
3465-
3466 product_purchase_subscription = ContextDisplayName(
3467 'Purchase Subscription for %s')
3468
3469-product_review_license = ContextTitle('Review %s')
3470-
3471-product_timeline = ContextTitle('Timeline Diagram for %s')
3472-
3473 product_translations = ContextTitle('Translations of %s in Launchpad')
3474
3475-productrelease_admin = ContextTitle('Administer %s in Launchpad')
3476-
3477-productrelease_index = ContextDisplayName('%s in Launchpad')
3478-
3479 productseries_translations = ContextTitle('Translations overview for %s')
3480
3481 productseries_translations_settings = 'Settings for translations'
3482
3483 project_index = ContextTitle('%s in Launchpad')
3484
3485-project_bugs = ContextTitle('Bugs in %s')
3486-
3487-project_edit = 'Change project group details'
3488-# We don't mention its name here, because that might be what you're changing.
3489-
3490-project_filebug_search = bugtarget_filebug_advanced
3491-
3492-project_interest = 'Launchpad Translations: Project group not translatable'
3493-
3494-project_rosetta_index = ContextTitle('Launchpad Translations: %s')
3495-
3496-project_specs = ContextTitle('Blueprints for %s')
3497-
3498 project_translations = ContextTitle('Translatable projects for %s')
3499
3500-projects_request = 'Launchpad Translations: Request a project group'
3501-
3502-projects_search = 'Search for project groups in Launchpad'
3503-
3504-# redirect_up is a redirect
3505-
3506-def reference_index(context, view):
3507- """Return the page title for bug reference web links."""
3508- return 'Web links for bug %s' % context.bug.id
3509-
3510-# references_index is a redirect
3511-
3512-registry_about = 'About the Launchpad Registry'
3513-
3514-registry_index = 'Project and group registration in Launchpad'
3515-
3516 remotebug_index = ContextTitle('%s')
3517
3518 root_index = 'Launchpad'
3519
3520-rosetta_about = 'About Launchpad Translations'
3521-
3522 rosetta_index = 'Launchpad Translations'
3523
3524 rosetta_products = 'Projects with Translations in Launchpad'
3525
3526-question_confirm_answer = ContextId('Confirm an answer to question #%s')
3527-
3528-questions_index = 'Launchpad Answers'
3529-
3530 series_bug_nominations = ContextDisplayName('Bugs nominated for %s')
3531
3532 shipit_adminrequest = 'ShipIt admin request'
3533@@ -701,116 +371,16 @@
3534
3535 signedcodeofconduct_deactivate = ContextDisplayName('Deactivating %s')
3536
3537-sourcepackage_bugs = ContextDisplayName('Bugs in %s')
3538-
3539-sourcepackage_changelog = 'Source package changelog'
3540-
3541-sourcepackage_filebug = ContextTitle("Report a bug about %s")
3542-
3543-sourcepackagenames_index = 'Source package name set'
3544-
3545-sourcepackagerelease_index = ContextTitle('Source package %s')
3546-
3547-def sourcepackages(context, view):
3548- """Return the page title for a source package in a distroseries."""
3549- return '%s source packages' % context.distroseries.title
3550-
3551-sources_index = 'Bazaar: Upstream revision control imports to Bazaar'
3552-
3553-sources_list = 'Available code imports'
3554-
3555-sourcesource_index = 'Upstream source import'
3556-
3557-specification_add = 'Register a blueprint in Launchpad'
3558-
3559-specification_addsubscriber = 'Subscribe someone else to this blueprint'
3560-
3561-specification_linkbug = ContextTitle(
3562- u'Link blueprint \N{left double quotation mark}%s'
3563- u'\N{right double quotation mark} to a bug report')
3564-
3565-specification_new = 'Register a proposal as a blueprint in Launchpad'
3566-
3567-specification_unlinkbugs = 'Remove links to bug reports'
3568-
3569-specification_retargeting = 'Attach blueprint to a different project'
3570-
3571-specification_superseding = 'Mark blueprint as superseded by another'
3572-
3573-specification_goaldecide = 'Approve or decline blueprint goal'
3574-
3575-specification_dependency = 'Create a blueprint dependency'
3576-
3577-specification_distroseries = ('Target blueprint to a distribution release')
3578-
3579-specification_productseries = 'Target blueprint to a series'
3580-
3581-specification_removedep = 'Remove a dependency'
3582-
3583-specification_givefeedback = 'Clear feedback requests'
3584-
3585-specification_edit = 'Edit blueprint details'
3586-
3587-specification_linksprint = 'Put blueprint on sprint agenda'
3588-
3589-specification_queue = 'Queue blueprint for review'
3590-
3591-specification_linkbranch = 'Link branch to blueprint'
3592-
3593-specifications_index = 'Launchpad Blueprints'
3594-
3595-specificationbranch_status = 'Edit blueprint branch status'
3596-
3597-specificationgoal_specs = ContextTitle('List goals for %s')
3598-
3599-def specificationsubscription_edit(context, view):
3600- """Return the page title for subscribing to a specification."""
3601- return "Subscription of %s" % context.person.displayname
3602-
3603-specificationtarget_index = ContextTitle('Blueprint listing for %s')
3604-
3605-def specificationtarget_specs(context, view):
3606- """Return the page title for a specificationtarget."""
3607- return view.title
3608-
3609-specificationtarget_workload = ContextTitle('Blueprint workload in %s')
3610-
3611-sprint_attend = ContextTitle('Register your attendance at %s')
3612-
3613-sprint_edit = ContextTitle(smartquote('Edit "%s" details'))
3614-
3615-sprint_new = 'Register a meeting or sprint in Launchpad'
3616-
3617-sprint_specs = ContextTitle('Blueprints for %s')
3618-
3619-sprint_workload = ContextTitle('Workload at %s')
3620-
3621-sprintspecification_admin = 'Approve blueprint for sprint agenda'
3622-
3623 standardshipitrequests_index = 'Standard ShipIt options'
3624
3625 standardshipitrequest_new = 'Create a new standard option'
3626
3627 standardshipitrequest_edit = 'Edit standard option'
3628
3629-team_index = ContextBrowsername('%s in Launchpad')
3630-
3631-team_mentoringoffers = ContextTitle('Mentoring available for newcomers to %s')
3632-
3633 team_newpoll = ContextTitle('New poll for team %s')
3634
3635 team_polls = ContextTitle('Polls for team %s')
3636
3637-template_auto_add = 'Launchpad Auto-Add Form'
3638-
3639-template_auto_edit = 'Launchpad Auto-Edit Form'
3640-
3641-template_edit = 'EXAMPLE EDIT TITLE'
3642-
3643-template_index = '%EXAMPLE TITLE'
3644-
3645-template_new = 'EXAMPLE NEW TITLE'
3646-
3647 token_authorized = 'Almost finished ...'
3648
3649 translationimportqueueentry_index = 'Translation import queue entry'
3650
3651=== modified file 'lib/canonical/launchpad/zcml/launchpad.zcml'
3652--- lib/canonical/launchpad/zcml/launchpad.zcml 2010-05-25 17:00:29 +0000
3653+++ lib/canonical/launchpad/zcml/launchpad.zcml 2010-07-15 08:42:46 +0000
3654@@ -403,14 +403,6 @@
3655 permission="zope.Public"
3656 />
3657
3658-<browser:page
3659- for="*"
3660- name="+applicationbuttons"
3661- permission="zope.Public"
3662- class="canonical.launchpad.browser.ApplicationButtons"
3663- attribute="__call__"
3664- />
3665-
3666 <class class="canonical.launchpad.webapp.publisher.RenamedView">
3667 <allow interface="zope.publisher.interfaces.browser.IBrowserPublisher"
3668 attributes="__call__"
3669
3670=== modified file 'lib/lp/bugs/browser/bug.py'
3671--- lib/lp/bugs/browser/bug.py 2010-06-24 09:58:32 +0000
3672+++ lib/lp/bugs/browser/bug.py 2010-07-15 08:42:46 +0000
3673@@ -315,6 +315,8 @@
3674 # Test: standalone/xx-slash-malone-slash-bugs.txt
3675 error_message = None
3676
3677+ page_title = 'Launchpad Bugs'
3678+
3679 @property
3680 def target_css_class(self):
3681 """The CSS class for used in the target widget."""
3682@@ -738,6 +740,7 @@
3683 to put the assigned bugs report, we'll redirect to the appropriate
3684 FOAF URL.
3685 """
3686+
3687 def __init__(self, context, request):
3688 self.context = context
3689 self.request = request
3690@@ -751,8 +754,10 @@
3691
3692 normalize_mime_type = re.compile(r'\s+')
3693
3694+
3695 class BugTextView(LaunchpadView):
3696 """View for simple text page displaying information for a bug."""
3697+
3698 @cachedproperty
3699 def bugtasks(self):
3700 """Cache bugtasks and avoid hitting the DB twice."""
3701@@ -973,8 +978,10 @@
3702 def bug_description_xhtml_representation(context, field, request):
3703 """Render `IBug.description` as XHTML using the webservice."""
3704 formatter = FormattersAPI
3705+
3706 def renderer(value):
3707- nomail = formatter(value).obfuscate_email()
3708- html = formatter(nomail).text_to_html()
3709+ nomail = formatter(value).obfuscate_email()
3710+ html = formatter(nomail).text_to_html()
3711 return html.encode('utf-8')
3712+
3713 return renderer
3714
3715=== modified file 'lib/lp/bugs/browser/bugtask.py'
3716--- lib/lp/bugs/browser/bugtask.py 2010-07-13 14:08:24 +0000
3717+++ lib/lp/bugs/browser/bugtask.py 2010-07-15 08:42:46 +0000
3718@@ -25,7 +25,6 @@
3719 'BugTaskPortletView',
3720 'BugTaskPrivacyAdapter',
3721 'BugTaskRemoveQuestionView',
3722- 'BugTaskSOP',
3723 'BugTaskSearchListingView',
3724 'BugTaskSetNavigation',
3725 'BugTaskStatusView',
3726@@ -123,7 +122,7 @@
3727 IDistributionSourcePackage)
3728 from lp.registry.interfaces.distroseries import IDistroSeries
3729 from canonical.launchpad.interfaces.launchpad import (
3730- ILaunchpadCelebrities, IStructuralObjectPresentation)
3731+ ILaunchpadCelebrities)
3732 from lp.registry.interfaces.person import IPerson, IPersonSet
3733 from lp.registry.interfaces.product import IProduct
3734 from lp.registry.interfaces.productseries import IProductSeries
3735@@ -144,7 +143,6 @@
3736 from canonical.launchpad.browser.feeds import (
3737 BugTargetLatestBugsFeedLink, FeedsMixin)
3738 from lp.registry.browser.mentoringoffer import CanBeMentoredView
3739-from canonical.launchpad.browser.launchpad import StructuralObjectPresentation
3740
3741 from canonical.launchpad.webapp.authorization import check_permission
3742 from canonical.launchpad.webapp.batching import TableBatchNavigator
3743@@ -543,9 +541,14 @@
3744
3745 @property
3746 def page_title(self):
3747- return smartquote('%s: "%s"') % (
3748- IStructuralObjectPresentation(self.context).getMainHeading(),
3749- self.context.bug.title)
3750+ bugtask = self.context
3751+ if INullBugTask.providedBy(bugtask):
3752+ heading = 'Bug #%s is not in %s' % (
3753+ bugtask.bug.id, bugtask.bugtargetdisplayname)
3754+ else:
3755+ heading = 'Bug #%s in %s' % (
3756+ bugtask.bug.id, bugtask.bugtargetdisplayname)
3757+ return smartquote('%s: "%s"') % (heading, self.context.bug.title)
3758
3759 def initialize(self):
3760 """Set up the needed widgets."""
3761@@ -1317,6 +1320,7 @@
3762 if self.user_is_subscribed is None:
3763 self.user_is_subscribed = self.context.bug.isSubscribed(self.user)
3764
3765+ page_title = 'Edit status'
3766
3767 @cachedproperty
3768 def field_names(self):
3769@@ -1780,6 +1784,8 @@
3770 class BugTaskStatusView(LaunchpadView):
3771 """Viewing the status of a bug task."""
3772
3773+ page_title = 'View status'
3774+
3775 def initialize(self):
3776 """Set up the appropriate widgets.
3777
3778@@ -3653,35 +3659,6 @@
3779 return self.context.bug.private
3780
3781
3782-# XXX mars 2008-08-25 bug=261188
3783-# This whole class hierarchy should be replaced with something more
3784-# specific, ie. a class that generates BugTask page titles.
3785-class BugTaskSOP(StructuralObjectPresentation):
3786- """Provides the structural heading for `IBugTask`."""
3787-
3788- def getIntroHeading(self):
3789- """Return None."""
3790- return None
3791-
3792- def getMainHeading(self):
3793- """Return the heading using the BugTask."""
3794- bugtask = self.context
3795- if INullBugTask.providedBy(bugtask):
3796- return 'Bug #%s is not in %s' % (
3797- bugtask.bug.id, bugtask.bugtargetdisplayname)
3798- else:
3799- return 'Bug #%s in %s' % (
3800- bugtask.bug.id, bugtask.bugtargetdisplayname)
3801-
3802- def listChildren(self, num):
3803- """Return an empty list."""
3804- return []
3805-
3806- def listAltChildren(self, num):
3807- """Return None."""
3808- return None
3809-
3810-
3811 class BugTaskCreateQuestionView(LaunchpadFormView):
3812 """View for creating a question from a bug."""
3813 schema = ICreateQuestionFromBugTaskForm
3814
3815=== modified file 'lib/lp/bugs/configure.zcml'
3816--- lib/lp/bugs/configure.zcml 2010-07-08 13:10:41 +0000
3817+++ lib/lp/bugs/configure.zcml 2010-07-15 08:42:46 +0000
3818@@ -256,11 +256,6 @@
3819 retractMentoring"/>
3820 </class>
3821 <adapter
3822- provides="canonical.launchpad.interfaces.IStructuralObjectPresentation"
3823- for="lp.bugs.interfaces.bugtask.IBugTask"
3824- factory="lp.bugs.browser.bugtask.BugTaskSOP"
3825- permission="zope.Public"/>
3826- <adapter
3827 provides="canonical.lazr.interfaces.IObjectPrivacy"
3828 for="lp.bugs.interfaces.bugtask.IBugTask"
3829 factory="lp.bugs.browser.bugtask.BugTaskPrivacyAdapter"
3830
3831=== modified file 'lib/lp/bugs/stories/bugs/xx-bug-obfuscation.txt'
3832--- lib/lp/bugs/stories/bugs/xx-bug-obfuscation.txt 2009-09-19 08:30:29 +0000
3833+++ lib/lp/bugs/stories/bugs/xx-bug-obfuscation.txt 2010-07-15 08:42:46 +0000
3834@@ -23,8 +23,8 @@
3835 >>> user_browser.open(
3836 ... 'http://bugs.launchpad.dev'
3837 ... '/debian/sarge/+source/mozilla-firefox/+bug/3/+viewstatus')
3838- >>> user_browser.title
3839- 'Bug #3 in mozilla-firefox...
3840+ >>> print user_browser.title
3841+ View status : Bug #3 : ...
3842
3843 >>> description = find_main_content(user_browser.contents).p
3844 >>> description.renderContents()
3845@@ -35,8 +35,8 @@
3846 >>> anon_browser.open(
3847 ... 'http://bugs.launchpad.dev'
3848 ... '/debian/sarge/+source/mozilla-firefox/+bug/3')
3849- >>> anon_browser.title
3850- 'Bug #3 in mozilla-firefox (Debian Sarge): ...Bug Title Test...'
3851+ >>> print anon_browser.title
3852+ Bug #3 in mozilla-firefox (Debian Sarge): ...
3853
3854 >>> 'user@domain.org' in anon_browser.contents
3855 False
3856@@ -51,8 +51,8 @@
3857 >>> anon_browser.open(
3858 ... 'http://bugs.launchpad.dev'
3859 ... '/debian/sarge/+source/mozilla-firefox/+bug/3/+viewstatus')
3860- >>> anon_browser.title
3861- 'Bug #3 in mozilla-firefox...
3862+ >>> print anon_browser.title
3863+ View status : Bug #3 : ...
3864
3865 >>> 'user@domain.org' in anon_browser.contents
3866 False
3867
3868=== modified file 'lib/lp/bugs/stories/bugtask-management/xx-bugtask-edit-forms.txt'
3869--- lib/lp/bugs/stories/bugtask-management/xx-bugtask-edit-forms.txt 2009-11-09 13:04:35 +0000
3870+++ lib/lp/bugs/stories/bugtask-management/xx-bugtask-edit-forms.txt 2010-07-15 08:42:46 +0000
3871@@ -37,7 +37,7 @@
3872
3873 >>> admin_browser.getLink('New').click()
3874 >>> print extract_text(admin_browser.contents)
3875-Bug #1 in Mozilla Firefox...
3876+Edit status...
3877 ...
3878 Affecting: Mozilla Firefox
3879 Filed here by: Sample Person
3880
3881=== modified file 'lib/lp/bugs/stories/bugtask-management/xx-view-editable-bug-task.txt'
3882--- lib/lp/bugs/stories/bugtask-management/xx-view-editable-bug-task.txt 2009-09-18 15:24:30 +0000
3883+++ lib/lp/bugs/stories/bugtask-management/xx-view-editable-bug-task.txt 2010-07-15 08:42:46 +0000
3884@@ -36,4 +36,4 @@
3885 >>> browser = setupBrowser(auth="Basic test@canonical.com:test")
3886 >>> browser.open("http://launchpad.dev/firefox/+bug/6/+editstatus")
3887 >>> print browser.title
3888- Bug #6 in Mozilla Firefox...
3889+ Edit status ...
3890
3891=== modified file 'lib/lp/registry/browser/peoplemerge.py'
3892--- lib/lp/registry/browser/peoplemerge.py 2010-01-20 09:22:00 +0000
3893+++ lib/lp/registry/browser/peoplemerge.py 2010-07-15 08:42:46 +0000
3894@@ -90,6 +90,7 @@
3895 class AdminMergeBaseView(LaunchpadFormView):
3896 """Base view for the pages where admins can merge people/teams."""
3897
3898+ page_title = 'Merge Launchpad accounts'
3899 # Both subclasses share the same template so we need to define these
3900 # variables (which are used in the template) here rather than on
3901 # subclasses.