launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #00085
[Merge] lp:~sinzui/launchpad/delete-buttons-0 into lp:launchpad/devel
Curtis Hovey has proposed merging lp:~sinzui/launchpad/delete-buttons-0 into lp:launchpad/devel.
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
This is my branch to delete unused images and support code from Launchpad
1.0 and 2.0.
lp:~sinzui/launchpad/delete-buttons-0
Diff size: 2095 deletes (svgs dominate the diff)
Launchpad bug:
https://bugs.launchpad.net/bugs/605084
Test command: None
Pre-implementation: No one.
Target release: 10.08
Delete unused images and support code from Lp 1.0 and 2.0
---------------------------------------------------------
Launchpad never deleted images and image rendering code from Launchpad
version 1.0 and 2.0.
Rules
-----
JFDI. Search for used of the old images to verify they are not used --
actually some are used on the root pages that were never updated to 3.0 :(
QA
--
This is only verifiable by watching the 404s on edge.
Lint
----
Linting changed files:
lib/canonical/launchpad/browser/launchpad.py
lib/canonical/launchpad/zcml/launchpad.zcml
Test
----
No tests verify these images, or the support code. The later is a little
surprising. I suspect the image/menu code was tested in stories once and
the tests were removed when the pages were updated to 3.0.
Implementation
--------------
* lib/canonical/launchpad/browser/launchpad.py
* lib/canonical/launchpad/zcml/launchpad.zcml
--
https://code.launchpad.net/~sinzui/launchpad/delete-buttons-0/+merge/29810
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~sinzui/launchpad/delete-buttons-0 into lp:launchpad/devel.
=== modified file 'lib/canonical/launchpad/browser/launchpad.py'
--- lib/canonical/launchpad/browser/launchpad.py 2010-05-11 17:43:20 +0000
+++ lib/canonical/launchpad/browser/launchpad.py 2010-07-13 16:56:00 +0000
@@ -6,7 +6,6 @@
__metaclass__ = type
__all__ = [
'AppFrontPageSearchView',
- 'ApplicationButtons',
'DoesNotExistView',
'Hierarchy',
'IcingContribFolder',
@@ -17,7 +16,6 @@
'LinkView',
'LoginStatus',
'MaintenanceMessage',
- 'MenuBox',
'NavigationMenuTabs',
'RDFIndexView',
'SoftTimeoutView',
@@ -45,7 +43,6 @@
from zope.publisher.interfaces.browser import IBrowserPublisher
from zope.publisher.interfaces.xmlrpc import IXMLRPCRequest
from zope.security.interfaces import Unauthorized
-from zope.traversing.interfaces import ITraversable
from canonical.cachedproperty import cachedproperty
from canonical.config import config
@@ -126,44 +123,6 @@
from lp.answers.interfaces.questioncollection import IQuestionSet
-class MenuBox(LaunchpadView):
- """View class that helps its template render the actions menu box.
-
- Nothing at all is rendered if there are no contextmenu items and also
- no applicationmenu items.
-
- If there is at least one item, the template is rendered.
-
- The context may be another view, or a content object.
- """
-
- def initialize(self):
- menuapi = MenuAPI(self.context)
- # We are only interested on enabled links in non development mode.
- self.contextmenuitems = sorted([
- link for link in menuapi.context.values()
- if link.enabled or config.devmode],
- key=operator.attrgetter('sort_key'))
- facet = menuapi.selectedfacetname()
- if facet != 'unknown':
- # XXX sinzui 2008-06-23 bug=242453:
- # Why are we getting unknown? Bounties are borked. We need
- # to end the facet hacks to get a clear state for the menus.
- application_links = getattr(menuapi, facet).values()
- else:
- application_links = []
- self.applicationmenuitems = sorted([
- link for link in application_links
- if link.enabled or config.devmode],
- key=operator.attrgetter('sort_key'))
-
- def render(self):
- if (not self.contextmenuitems and not self.applicationmenuitems):
- return u''
- else:
- return self.template()
-
-
class NavigationMenuTabs(LaunchpadView):
"""View class that helps its template render the navigation menu tabs.
@@ -762,13 +721,6 @@
' %s ms to render.' % (soft_timeout, time_to_generate_page))
-class ObjectForTemplate:
-
- def __init__(self, **kw):
- for name, value in kw.items():
- setattr(self, name, value)
-
-
class IcingFolder(ExportedFolder):
"""Export the Launchpad icing."""
@@ -873,113 +825,6 @@
raise NotImplementedError()
-class Button:
-
- def __init__(self, **kw):
- assert len(kw) == 1
- self.name = kw.keys()[0]
- self.text = kw.values()[0]
- self.replacement_dict = self.makeReplacementDict()
-
- def makeReplacementDict(self):
- return dict(
- url=allvhosts.configs[self.name].rooturl,
- buttonname=self.name,
- text=self.text)
-
- def renderActive(self):
- return (
- '<a href="%(url)s">\n'
- ' <img'
- ' width="64"'
- ' height="64"'
- ' alt="%(buttonname)s"'
- ' src="/+icing/app-%(buttonname)s-sml-active.gif"'
- ' title="%(text)s"'
- ' />\n'
- '</a>\n' % self.replacement_dict)
-
- def renderInactive(self):
- return (
- '<a href="%(url)s">\n'
- ' <img'
- ' width="64"'
- ' height="64"'
- ' alt="%(buttonname)s"'
- ' src="/+icing/app-%(buttonname)s-sml.gif"'
- ' title="%(text)s"'
- ' />\n'
- '</a>\n' % self.replacement_dict)
-
- def renderFrontPage(self):
- return (
- '<a href="%(url)s">\n'
- ' <img'
- ' width="146"'
- ' height="146"'
- ' alt="%(buttonname)s"'
- ' src="/+icing/app-%(buttonname)s.gif"'
- ' title="%(text)s"'
- ' />\n'
- '</a>\n' % self.replacement_dict)
-
- def renderButton(self, is_active, is_front_page):
- if (is_front_page):
- return self.renderFrontPage()
- elif is_active:
- return self.renderActive()
- else:
- return self.renderInactive()
-
-
-class PeopleButton(Button):
-
- def makeReplacementDict(self):
- return dict(
- url='%speople/' % allvhosts.configs['mainsite'].rooturl,
- buttonname=self.name,
- text=self.text)
-
-
-class ApplicationButtons(LaunchpadView):
- """Those buttons that you get on the index pages."""
-
- implements(ITraversable)
-
- def __init__(self, context, request):
- LaunchpadView.__init__(self, context, request)
- self.name = None
-
- buttons = [
- PeopleButton(people="Join thousands of people and teams collaborating"
- " in software development."),
- Button(code="Publish your code for people to merge and branch from."),
- Button(bugs="Share bug reports and fixes."),
- Button(blueprints="Track blueprints through approval and "
- "implementation."),
- Button(translations="Localize software into your favorite language."),
- Button(answers="Ask and answer questions about software."),
- ]
-
- def render(self):
- L = []
- for button in self.buttons:
- if self.name:
- is_active = button.name == self.name
- else:
- is_active = True
- is_front_page = self.name == 'main'
- L.append(button.renderButton(is_active, is_front_page))
- return u'\n'.join(L)
-
- def traverse(self, name, furtherPath):
- self.name = name
- if furtherPath:
- raise AssertionError(
- 'Max of one path item after +applicationbuttons')
- return self
-
-
class AppFrontPageSearchView(LaunchpadFormView):
schema = IAppFrontPageSearchForm
=== removed file 'lib/canonical/launchpad/icing-sources/app-people-and-teams.svg'
--- lib/canonical/launchpad/icing-sources/app-people-and-teams.svg 2008-07-14 17:28:02 +0000
+++ lib/canonical/launchpad/icing-sources/app-people-and-teams.svg 1970-01-01 00:00:00 +0000
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<!-- Creator: CorelDRAW -->
-<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"
-viewBox="0 0 150 150">
- <defs>
- <style type="text/css">
- <![CDATA[
- .fil2 {fill:white}
- .fil0 {fill:#8DB833}
- .fil1 {fill:white;fill-rule:nonzero}
- ]]>
- </style>
- </defs>
- <g id="Capa_x0020_1">
- <metadata id="CorelCorpID_0Corel-Layer"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- </g>
-</svg>
=== removed file 'lib/canonical/launchpad/icing-sources/navigation-menu-groove.svg'
--- lib/canonical/launchpad/icing-sources/navigation-menu-groove.svg 2008-07-03 18:51:41 +0000
+++ lib/canonical/launchpad/icing-sources/navigation-menu-groove.svg 1970-01-01 00:00:00 +0000
@@ -1,92 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="1"
- height="2"
- id="svg2"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- version="1.0"
- sodipodi:docname="navigation-menu-groove.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-launchpad-2.0/lib/canonical/launchpad/images/navigation-menu-groove.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <defs
- id="defs4">
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective10" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:zoom="255"
- inkscape:cx="0.4254902"
- inkscape:cy="1"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="741"
- inkscape:window-height="644"
- inkscape:window-x="0"
- inkscape:window-y="25">
- <inkscape:grid
- type="xygrid"
- id="grid2383"
- visible="true"
- enabled="true" />
- </sodipodi:namedview>
- <metadata
- id="metadata7">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <rect
- style="fill:#dddddd;fill-opacity:0.5;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- id="rect2385"
- width="1"
- height="1"
- x="0"
- y="-2"
- transform="scale(1,-1)"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90" />
- <rect
- 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"
- id="rect3157"
- width="1"
- height="1"
- x="0"
- y="-1"
- transform="scale(1,-1)" />
- </g>
-</svg>
=== removed file 'lib/canonical/launchpad/icing-sources/navigation-n.svg'
--- lib/canonical/launchpad/icing-sources/navigation-n.svg 2008-07-01 12:34:09 +0000
+++ lib/canonical/launchpad/icing-sources/navigation-n.svg 1970-01-01 00:00:00 +0000
@@ -1,118 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="1"
- height="4"
- id="svg2"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- version="1.0"
- sodipodi:docname="navigation-top-border-and-gradient.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-launchpad-2.0/lib/canonical/launchpad/images/navigation-top-border-and-gradient.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <defs
- id="defs4">
- <linearGradient
- id="linearGradient3163">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3165" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="1"
- id="stop3167" />
- </linearGradient>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective10" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3163"
- id="linearGradient3169"
- x1="0"
- y1="1"
- x2="0"
- y2="4"
- gradientUnits="userSpaceOnUse" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ff0000"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:zoom="139.75"
- inkscape:cx="0.49284436"
- inkscape:cy="2"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="true"
- borderlayer="false"
- inkscape:window-width="1024"
- inkscape:window-height="693"
- inkscape:window-x="0"
- inkscape:window-y="25">
- <inkscape:grid
- type="xygrid"
- id="grid2385"
- visible="true"
- enabled="true"
- empspacing="1" />
- </sodipodi:namedview>
- <metadata
- id="metadata7">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <rect
- 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"
- id="rect2387"
- width="40"
- height="0"
- x="520"
- y="-796" />
- <rect
- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078000000000"
- id="rect2389"
- width="1"
- height="1"
- x="0"
- y="0" />
- <rect
- 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"
- id="rect3161"
- width="1"
- height="3"
- x="0"
- y="1" />
- </g>
-</svg>
=== removed file 'lib/canonical/launchpad/icing-sources/navigation-ne-e-normal.svg'
--- lib/canonical/launchpad/icing-sources/navigation-ne-e-normal.svg 2008-07-01 12:34:09 +0000
+++ lib/canonical/launchpad/icing-sources/navigation-ne-e-normal.svg 1970-01-01 00:00:00 +0000
@@ -1,208 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="4"
- height="300"
- id="svg3191"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- version="1.0"
- sodipodi:docname="navigation-ne-e.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-launchpad-2.0/lib/canonical/launchpad/images/navigation-ne-e.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <defs
- id="defs3193">
- <linearGradient
- id="linearGradient6188">
- <stop
- id="stop6190"
- offset="0"
- style="stop-color:#eeeeee;stop-opacity:1;" />
- <stop
- id="stop6192"
- offset="1"
- style="stop-color:#cccccc;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3716">
- <stop
- style="stop-color:#eeeeee;stop-opacity:1;"
- offset="0"
- id="stop3718" />
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="1"
- id="stop3720" />
- </linearGradient>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3199" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient3722"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient6188"
- id="linearGradient3740"
- x1="4"
- y1="299"
- x2="1"
- y2="299"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,148,-4.0000001,-44100)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient6182"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient6188"
- id="radialGradient6186"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="63.75"
- inkscape:cx="3.4585707"
- inkscape:cy="296.10879"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1024"
- inkscape:window-height="693"
- inkscape:window-x="0"
- inkscape:window-y="25"
- inkscape:snap-bbox="true">
- <inkscape:grid
- type="xygrid"
- id="grid3201"
- visible="true"
- enabled="true"
- empspacing="4" />
- </sodipodi:namedview>
- <metadata
- id="metadata3196">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <path
- sodipodi:type="arc"
- style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- id="path6178"
- sodipodi:cx="3.5"
- sodipodi:cy="0"
- sodipodi:rx="2.5"
- sodipodi:ry="2"
- d="M 6,0 A 2.5,2 0 0 1 3.4949908,1.999996 L 3.5,0 z"
- transform="matrix(1.2,0,0,-1.5,-4.1939889,4)"
- sodipodi:start="0"
- sodipodi:end="1.5728" />
- <path
- sodipodi:type="arc"
- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
- id="path3203"
- sodipodi:cx="4"
- sodipodi:cy="4"
- sodipodi:rx="4"
- sodipodi:ry="4"
- d="M 8,4 A 4,4 0 0 1 4.0000001,8 L 4,4 z"
- sodipodi:start="0"
- sodipodi:end="1.5707963"
- transform="matrix(1,0,0,-1,-4,8)" />
- <path
- sodipodi:type="arc"
- 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"
- id="path3714"
- sodipodi:cx="4"
- sodipodi:cy="4"
- sodipodi:rx="3"
- sodipodi:ry="3"
- d="M 6.1213204,6.1213203 A 3,3 0 0 1 4,7 L 4,4 z"
- sodipodi:start="0.78539816"
- sodipodi:end="1.5707963"
- transform="matrix(1,0,0,-1,-4,8)" />
- <rect
- 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"
- id="rect3732"
- width="3"
- height="296"
- x="-3"
- y="4"
- transform="scale(-1,1)" />
- <rect
- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
- id="rect3730"
- width="1"
- height="296"
- x="-4"
- y="4"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- transform="scale(-1,1)" />
- <path
- transform="matrix(0,-1,1,0,-4,8)"
- sodipodi:end="1.5707963"
- sodipodi:start="0.78539816"
- d="M 6.1213204,6.1213203 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
- sodipodi:ry="3"
- sodipodi:rx="3"
- sodipodi:cy="4"
- sodipodi:cx="4"
- id="path6184"
- 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"
- sodipodi:type="arc" />
- </g>
-</svg>
=== removed file 'lib/canonical/launchpad/icing-sources/navigation-ne-e-selected.svg'
--- lib/canonical/launchpad/icing-sources/navigation-ne-e-selected.svg 2008-07-01 13:07:09 +0000
+++ lib/canonical/launchpad/icing-sources/navigation-ne-e-selected.svg 1970-01-01 00:00:00 +0000
@@ -1,208 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="4"
- height="300"
- id="svg3191"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- version="1.0"
- sodipodi:docname="navigation-ne-e-selected.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-2.0-5-nav-menu/lib/canonical/launchpad/icing/navigation-ne-e-selected.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <defs
- id="defs3193">
- <linearGradient
- id="linearGradient6188">
- <stop
- id="stop6190"
- offset="0"
- style="stop-color:#dddddd;stop-opacity:1;" />
- <stop
- id="stop6192"
- offset="1"
- style="stop-color:#cccccc;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3716">
- <stop
- style="stop-color:#eeeeee;stop-opacity:1;"
- offset="0"
- id="stop3718" />
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="1"
- id="stop3720" />
- </linearGradient>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3199" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient3722"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient6188"
- id="linearGradient3740"
- x1="4"
- y1="299"
- x2="1"
- y2="299"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,148,-4.0000001,-44100)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient6182"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient6188"
- id="radialGradient6186"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="63.75"
- inkscape:cx="0.77621776"
- inkscape:cy="297.01703"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1024"
- inkscape:window-height="693"
- inkscape:window-x="0"
- inkscape:window-y="49"
- inkscape:snap-bbox="true">
- <inkscape:grid
- type="xygrid"
- id="grid3201"
- visible="true"
- enabled="true"
- empspacing="4" />
- </sodipodi:namedview>
- <metadata
- id="metadata3196">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <path
- sodipodi:type="arc"
- style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- id="path6178"
- sodipodi:cx="3.5"
- sodipodi:cy="0"
- sodipodi:rx="2.5"
- sodipodi:ry="2"
- d="M 6,0 A 2.5,2 0 0 1 3.4949908,1.999996 L 3.5,0 z"
- transform="matrix(1.2,0,0,-1.5,-4.1939889,4)"
- sodipodi:start="0"
- sodipodi:end="1.5728" />
- <path
- sodipodi:type="arc"
- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
- id="path3203"
- sodipodi:cx="4"
- sodipodi:cy="4"
- sodipodi:rx="4"
- sodipodi:ry="4"
- d="M 8,4 A 4,4 0 0 1 4.0000001,8 L 4,4 z"
- sodipodi:start="0"
- sodipodi:end="1.5707963"
- transform="matrix(1,0,0,-1,-4,8)" />
- <path
- sodipodi:type="arc"
- 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"
- id="path3714"
- sodipodi:cx="4"
- sodipodi:cy="4"
- sodipodi:rx="3"
- sodipodi:ry="3"
- d="M 6.1213204,6.1213203 A 3,3 0 0 1 4,7 L 4,4 z"
- sodipodi:start="0.78539816"
- sodipodi:end="1.5707963"
- transform="matrix(1,0,0,-1,-4,8)" />
- <rect
- 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"
- id="rect3732"
- width="3"
- height="296"
- x="-3"
- y="4"
- transform="scale(-1,1)" />
- <rect
- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
- id="rect3730"
- width="1"
- height="296"
- x="-4"
- y="4"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- transform="scale(-1,1)" />
- <path
- transform="matrix(0,-1,1,0,-4,8)"
- sodipodi:end="1.5707963"
- sodipodi:start="0.78539816"
- d="M 6.1213204,6.1213203 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
- sodipodi:ry="3"
- sodipodi:rx="3"
- sodipodi:cy="4"
- sodipodi:cx="4"
- id="path6184"
- 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"
- sodipodi:type="arc" />
- </g>
-</svg>
=== removed file 'lib/canonical/launchpad/icing-sources/navigation-nw-w-normal.svg'
--- lib/canonical/launchpad/icing-sources/navigation-nw-w-normal.svg 2008-07-01 13:07:09 +0000
+++ lib/canonical/launchpad/icing-sources/navigation-nw-w-normal.svg 1970-01-01 00:00:00 +0000
@@ -1,182 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="4"
- height="300"
- id="svg3191"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- version="1.0"
- sodipodi:docname="navigation-nw-w-normal.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-2.0-5-nav-menu/lib/canonical/launchpad/icing/navigation-nw-w-normal.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <defs
- id="defs3193">
- <linearGradient
- id="linearGradient3716">
- <stop
- style="stop-color:#eeeeee;stop-opacity:1;"
- offset="0"
- id="stop3718" />
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="1"
- id="stop3720" />
- </linearGradient>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3199" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient3722"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient3728"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="linearGradient3740"
- x1="4"
- y1="299"
- x2="1"
- y2="299"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,148,0,-44100)" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="63.75"
- inkscape:cx="0.77621776"
- inkscape:cy="296.10879"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1024"
- inkscape:window-height="693"
- inkscape:window-x="0"
- inkscape:window-y="49"
- inkscape:snap-bbox="true">
- <inkscape:grid
- type="xygrid"
- id="grid3201"
- visible="true"
- enabled="true"
- empspacing="4" />
- </sodipodi:namedview>
- <metadata
- id="metadata3196">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <path
- sodipodi:type="arc"
- style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- id="path6178"
- sodipodi:cx="3.5"
- sodipodi:cy="0"
- sodipodi:rx="2.5"
- sodipodi:ry="2"
- d="M 6,0 A 2.5,2 0 0 1 3.4949908,1.999996 L 3.5,0 z"
- transform="matrix(-1.2,0,0,-1.5,8.193989,4)"
- sodipodi:start="0"
- sodipodi:end="1.5728" />
- <path
- sodipodi:type="arc"
- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
- id="path3203"
- sodipodi:cx="4"
- sodipodi:cy="4"
- sodipodi:rx="4"
- sodipodi:ry="4"
- d="M 8,4 A 4,4 0 0 1 4.0000001,8 L 4,4 z"
- sodipodi:start="0"
- sodipodi:end="1.5707963"
- transform="matrix(-1,0,0,-1,8.0000001,8)" />
- <path
- sodipodi:type="arc"
- 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"
- id="path3714"
- sodipodi:cx="4"
- sodipodi:cy="4"
- sodipodi:rx="3"
- sodipodi:ry="3"
- d="M 7,4 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
- sodipodi:start="0"
- sodipodi:end="1.5707963"
- transform="matrix(-1,0,0,-1,8.0000001,8)"
- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-2.0-5-nav-menu/lib/canonical/launchpad/icing/navigation-nw-w-normal.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90" />
- <rect
- style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- id="rect6172"
- width="3"
- height="296"
- x="1"
- y="4" />
- <rect
- 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"
- id="rect3732"
- width="3"
- height="296"
- x="1"
- y="4" />
- <rect
- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
- id="rect3730"
- width="1"
- height="296"
- x="0"
- y="4"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90" />
- </g>
-</svg>
=== removed file 'lib/canonical/launchpad/icing-sources/navigation-nw-w-selected.svg'
--- lib/canonical/launchpad/icing-sources/navigation-nw-w-selected.svg 2008-07-01 12:34:09 +0000
+++ lib/canonical/launchpad/icing-sources/navigation-nw-w-selected.svg 1970-01-01 00:00:00 +0000
@@ -1,179 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="4"
- height="300"
- id="svg3191"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- version="1.0"
- sodipodi:docname="navigation-nw-w.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-launchpad-2.0/lib/canonical/launchpad/images/navigation-top-left-border-and-gradient.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <defs
- id="defs3193">
- <linearGradient
- id="linearGradient3716">
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="0"
- id="stop3718" />
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="1"
- id="stop3720" />
- </linearGradient>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3199" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient3722"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient3728"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="linearGradient3740"
- x1="4"
- y1="299"
- x2="1"
- y2="299"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,148,0,-44100)" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="63.75"
- inkscape:cx="3.4585707"
- inkscape:cy="296.10879"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1024"
- inkscape:window-height="693"
- inkscape:window-x="0"
- inkscape:window-y="25"
- inkscape:snap-bbox="true">
- <inkscape:grid
- type="xygrid"
- id="grid3201"
- visible="true"
- enabled="true"
- empspacing="4" />
- </sodipodi:namedview>
- <metadata
- id="metadata3196">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <path
- sodipodi:type="arc"
- style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- id="path6178"
- sodipodi:cx="3.5"
- sodipodi:cy="0"
- sodipodi:rx="2.5"
- sodipodi:ry="2"
- d="M 6,0 A 2.5,2 0 0 1 3.4949908,1.999996 L 3.5,0 z"
- transform="matrix(-1.2,0,0,-1.5,8.193989,4)"
- sodipodi:start="0"
- sodipodi:end="1.5728" />
- <path
- sodipodi:type="arc"
- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
- id="path3203"
- sodipodi:cx="4"
- sodipodi:cy="4"
- sodipodi:rx="4"
- sodipodi:ry="4"
- d="M 8,4 A 4,4 0 0 1 4.0000001,8 L 4,4 z"
- sodipodi:start="0"
- sodipodi:end="1.5707963"
- transform="matrix(-1,0,0,-1,8.0000001,8)" />
- <path
- sodipodi:type="arc"
- 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"
- id="path3714"
- sodipodi:cx="4"
- sodipodi:cy="4"
- sodipodi:rx="3"
- sodipodi:ry="3"
- d="M 7,4 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
- sodipodi:start="0"
- sodipodi:end="1.5707963"
- transform="matrix(-1,0,0,-1,8.0000001,8)" />
- <rect
- style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- id="rect6172"
- width="3"
- height="296"
- x="1"
- y="4" />
- <rect
- 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"
- id="rect3732"
- width="3"
- height="296"
- x="1"
- y="4" />
- <rect
- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
- id="rect3730"
- width="1"
- height="296"
- x="0"
- y="4"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90" />
- </g>
-</svg>
=== removed file 'lib/canonical/launchpad/icing-sources/navigation-se-normal.svg'
--- lib/canonical/launchpad/icing-sources/navigation-se-normal.svg 2008-07-01 12:34:09 +0000
+++ lib/canonical/launchpad/icing-sources/navigation-se-normal.svg 1970-01-01 00:00:00 +0000
@@ -1,162 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="4"
- height="4"
- id="svg3191"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- version="1.0"
- sodipodi:docname="navigation-se-normal.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-launchpad-2.0/lib/canonical/launchpad/images/navigation-se-normal.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <defs
- id="defs3193">
- <linearGradient
- id="linearGradient3716">
- <stop
- style="stop-color:#eeeeee;stop-opacity:1;"
- offset="0"
- id="stop3718" />
- <stop
- style="stop-color:#cccccc;stop-opacity:1;"
- offset="1"
- id="stop3720" />
- </linearGradient>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3199" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient3722"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient3728"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="linearGradient3740"
- x1="4"
- y1="299"
- x2="1"
- y2="299"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,148,0,-44100)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient2393"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#fafafa"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:zoom="63.75"
- inkscape:cx="1.93832"
- inkscape:cy="2.9829748"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="688"
- inkscape:window-height="690"
- inkscape:window-x="300"
- inkscape:window-y="25">
- <inkscape:grid
- type="xygrid"
- id="grid3201"
- visible="true"
- enabled="true"
- empspacing="4" />
- </sodipodi:namedview>
- <metadata
- id="metadata3196">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <rect
- style="fill:#fafafa;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- id="rect2399"
- width="4"
- height="4"
- x="-4"
- y="0"
- transform="scale(-1,1)" />
- <path
- sodipodi:type="arc"
- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
- id="path3203"
- sodipodi:cx="4"
- sodipodi:cy="4"
- sodipodi:rx="4"
- sodipodi:ry="4"
- d="M 8,4 A 4,4 0 0 1 4.0000001,8 L 4,4 z"
- sodipodi:start="0"
- sodipodi:end="1.5707963"
- transform="matrix(0,1,1,0,-4,-4)" />
- <path
- sodipodi:type="arc"
- 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"
- id="path3714"
- sodipodi:cx="4"
- sodipodi:cy="4"
- sodipodi:rx="3"
- sodipodi:ry="3"
- d="M 7,4 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
- sodipodi:start="0"
- sodipodi:end="1.5707963"
- transform="matrix(0,1,1,0,-3.9999998,-4)" />
- </g>
-</svg>
=== removed file 'lib/canonical/launchpad/icing-sources/navigation-se-selected.svg'
--- lib/canonical/launchpad/icing-sources/navigation-se-selected.svg 2008-07-01 13:07:09 +0000
+++ lib/canonical/launchpad/icing-sources/navigation-se-selected.svg 1970-01-01 00:00:00 +0000
@@ -1,162 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="4"
- height="4"
- id="svg3191"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- version="1.0"
- sodipodi:docname="navigation-se-selected.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-2.0-5-nav-menu/lib/canonical/launchpad/icing/navigation-se-selected.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <defs
- id="defs3193">
- <linearGradient
- id="linearGradient3716">
- <stop
- style="stop-color:#dddddd;stop-opacity:1;"
- offset="0"
- id="stop3718" />
- <stop
- style="stop-color:#cccccc;stop-opacity:1;"
- offset="1"
- id="stop3720" />
- </linearGradient>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3199" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient3722"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient3728"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="linearGradient3740"
- x1="4"
- y1="299"
- x2="1"
- y2="299"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,148,0,-44100)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient2393"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#fafafa"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:zoom="63.75"
- inkscape:cx="-0.74403294"
- inkscape:cy="2.9829748"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1024"
- inkscape:window-height="693"
- inkscape:window-x="0"
- inkscape:window-y="49">
- <inkscape:grid
- type="xygrid"
- id="grid3201"
- visible="true"
- enabled="true"
- empspacing="4" />
- </sodipodi:namedview>
- <metadata
- id="metadata3196">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <rect
- style="fill:#fafafa;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- id="rect2399"
- width="4"
- height="4"
- x="-4"
- y="0"
- transform="scale(-1,1)" />
- <path
- sodipodi:type="arc"
- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
- id="path3203"
- sodipodi:cx="4"
- sodipodi:cy="4"
- sodipodi:rx="4"
- sodipodi:ry="4"
- d="M 8,4 A 4,4 0 0 1 4.0000001,8 L 4,4 z"
- sodipodi:start="0"
- sodipodi:end="1.5707963"
- transform="matrix(0,1,1,0,-4,-4)" />
- <path
- sodipodi:type="arc"
- 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"
- id="path3714"
- sodipodi:cx="4"
- sodipodi:cy="4"
- sodipodi:rx="3"
- sodipodi:ry="3"
- d="M 7,4 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
- sodipodi:start="0"
- sodipodi:end="1.5707963"
- transform="matrix(0,1,1,0,-3.9999998,-4)" />
- </g>
-</svg>
=== removed file 'lib/canonical/launchpad/icing-sources/navigation-sw-normal.svg'
--- lib/canonical/launchpad/icing-sources/navigation-sw-normal.svg 2008-07-01 13:07:09 +0000
+++ lib/canonical/launchpad/icing-sources/navigation-sw-normal.svg 1970-01-01 00:00:00 +0000
@@ -1,161 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="4"
- height="4"
- id="svg3191"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- version="1.0"
- sodipodi:docname="navigation-sw-normal.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-2.0-5-nav-menu/lib/canonical/launchpad/icing/navigation-sw-normal.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <defs
- id="defs3193">
- <linearGradient
- id="linearGradient3716">
- <stop
- style="stop-color:#eeeeee;stop-opacity:1;"
- offset="0"
- id="stop3718" />
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="1"
- id="stop3720" />
- </linearGradient>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3199" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient3722"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient3728"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="linearGradient3740"
- x1="4"
- y1="299"
- x2="1"
- y2="299"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,148,0,-44100)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient2393"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#fafafa"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:zoom="63.75"
- inkscape:cx="-1.2"
- inkscape:cy="2.9829748"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1024"
- inkscape:window-height="693"
- inkscape:window-x="0"
- inkscape:window-y="49">
- <inkscape:grid
- type="xygrid"
- id="grid3201"
- visible="true"
- enabled="true"
- empspacing="4" />
- </sodipodi:namedview>
- <metadata
- id="metadata3196">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <rect
- style="fill:#fafafa;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- id="rect2399"
- width="4"
- height="4"
- x="0"
- y="0" />
- <path
- sodipodi:type="arc"
- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
- id="path3203"
- sodipodi:cx="4"
- sodipodi:cy="4"
- sodipodi:rx="4"
- sodipodi:ry="4"
- d="M 8,4 A 4,4 0 0 1 4.0000001,8 L 4,4 z"
- sodipodi:start="0"
- sodipodi:end="1.5707963"
- transform="matrix(0,1,-1,0,8.0000001,-4)" />
- <path
- sodipodi:type="arc"
- 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"
- id="path3714"
- sodipodi:cx="4"
- sodipodi:cy="4"
- sodipodi:rx="3"
- sodipodi:ry="3"
- d="M 7,4 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
- sodipodi:start="0"
- sodipodi:end="1.5707963"
- transform="matrix(0,1,-1,0,7.9999999,-4)" />
- </g>
-</svg>
=== removed file 'lib/canonical/launchpad/icing-sources/navigation-sw-selected.svg'
--- lib/canonical/launchpad/icing-sources/navigation-sw-selected.svg 2008-07-01 12:34:09 +0000
+++ lib/canonical/launchpad/icing-sources/navigation-sw-selected.svg 1970-01-01 00:00:00 +0000
@@ -1,161 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="4"
- height="4"
- id="svg3191"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- version="1.0"
- sodipodi:docname="navigation-bottom-left-border-and-gradient.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-launchpad-2.0/lib/canonical/launchpad/images/navigation-bottom-left-border-and-gradient.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <defs
- id="defs3193">
- <linearGradient
- id="linearGradient3716">
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="0"
- id="stop3718" />
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="1"
- id="stop3720" />
- </linearGradient>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3199" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient3722"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient3728"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="linearGradient3740"
- x1="4"
- y1="299"
- x2="1"
- y2="299"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,148,0,-44100)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient2393"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#fafafa"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:zoom="63.75"
- inkscape:cx="-1.0241749"
- inkscape:cy="2.9829748"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1024"
- inkscape:window-height="693"
- inkscape:window-x="0"
- inkscape:window-y="25">
- <inkscape:grid
- type="xygrid"
- id="grid3201"
- visible="true"
- enabled="true"
- empspacing="4" />
- </sodipodi:namedview>
- <metadata
- id="metadata3196">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <rect
- style="fill:#fafafa;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- id="rect2399"
- width="4"
- height="4"
- x="0"
- y="0" />
- <path
- sodipodi:type="arc"
- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
- id="path3203"
- sodipodi:cx="4"
- sodipodi:cy="4"
- sodipodi:rx="4"
- sodipodi:ry="4"
- d="M 8,4 A 4,4 0 0 1 4.0000001,8 L 4,4 z"
- sodipodi:start="0"
- sodipodi:end="1.5707963"
- transform="matrix(0,1,-1,0,8.0000001,-4)" />
- <path
- sodipodi:type="arc"
- 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"
- id="path3714"
- sodipodi:cx="4"
- sodipodi:cy="4"
- sodipodi:rx="3"
- sodipodi:ry="3"
- d="M 7,4 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
- sodipodi:start="0"
- sodipodi:end="1.5707963"
- transform="matrix(0,1,-1,0,7.9999999,-4)" />
- </g>
-</svg>
=== removed file 'lib/canonical/launchpad/icing-sources/navigation-sw-w-normal.svg'
--- lib/canonical/launchpad/icing-sources/navigation-sw-w-normal.svg 2008-07-08 15:40:50 +0000
+++ lib/canonical/launchpad/icing-sources/navigation-sw-w-normal.svg 1970-01-01 00:00:00 +0000
@@ -1,208 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="4"
- height="300"
- id="svg3191"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- version="1.0"
- sodipodi:docname="navigation-sw-w-normal.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-2.0-6-tabs/lib/canonical/launchpad/icing/navigation-sw-w-normal.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <defs
- id="defs3193">
- <linearGradient
- id="linearGradient6188">
- <stop
- id="stop6190"
- offset="0"
- style="stop-color:#eeeeee;stop-opacity:1;" />
- <stop
- id="stop6192"
- offset="1"
- style="stop-color:#ffffff;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3716">
- <stop
- style="stop-color:#eeeeee;stop-opacity:1;"
- offset="0"
- id="stop3718" />
- <stop
- style="stop-color:#cccccc;stop-opacity:1;"
- offset="1"
- id="stop3720" />
- </linearGradient>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3199" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient3722"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient6188"
- id="linearGradient3740"
- x1="4"
- y1="299"
- x2="1"
- y2="299"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,148,-1e-7,-44400)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3716"
- id="radialGradient6182"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient6188"
- id="radialGradient6186"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1,1,0,0,8)"
- cx="4"
- cy="4"
- fx="4"
- fy="4"
- r="3" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="63.75"
- inkscape:cx="3.4585707"
- inkscape:cy="4.7868647"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1024"
- inkscape:window-height="693"
- inkscape:window-x="0"
- inkscape:window-y="25"
- inkscape:snap-bbox="true">
- <inkscape:grid
- type="xygrid"
- id="grid3201"
- visible="true"
- enabled="true"
- empspacing="4" />
- </sodipodi:namedview>
- <metadata
- id="metadata3196">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <path
- sodipodi:type="arc"
- style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- id="path6178"
- sodipodi:cx="3.5"
- sodipodi:cy="0"
- sodipodi:rx="2.5"
- sodipodi:ry="2"
- d="M 6,0 A 2.5,2 0 0 1 3.4949908,1.999996 L 3.5,0 z"
- transform="matrix(-1.2,0,0,1.5,8.1939889,296)"
- sodipodi:start="0"
- sodipodi:end="1.5728" />
- <path
- sodipodi:type="arc"
- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
- id="path3203"
- sodipodi:cx="4"
- sodipodi:cy="4"
- sodipodi:rx="4"
- sodipodi:ry="4"
- d="M 8,4 A 4,4 0 0 1 4.0000001,8 L 4,4 z"
- sodipodi:start="0"
- sodipodi:end="1.5707963"
- transform="matrix(-1,0,0,1,8,292)" />
- <path
- sodipodi:type="arc"
- 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"
- id="path3714"
- sodipodi:cx="4"
- sodipodi:cy="4"
- sodipodi:rx="3"
- sodipodi:ry="3"
- d="M 6.1213204,6.1213203 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
- sodipodi:start="0.78539816"
- sodipodi:end="1.5707963"
- transform="matrix(-1,0,0,1,8,292)" />
- <rect
- 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"
- id="rect3732"
- width="3"
- height="296"
- x="1"
- y="-296"
- transform="scale(1,-1)" />
- <rect
- style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
- id="rect3730"
- width="1"
- height="296"
- x="0"
- y="-296"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- transform="scale(1,-1)" />
- <path
- transform="matrix(0,1,-1,0,8,292)"
- sodipodi:end="1.5707963"
- sodipodi:start="0.78539816"
- d="M 6.1213204,6.1213203 A 3,3 0 0 1 4.0000001,7 L 4,4 z"
- sodipodi:ry="3"
- sodipodi:rx="3"
- sodipodi:cy="4"
- sodipodi:cx="4"
- id="path6184"
- 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"
- sodipodi:type="arc" />
- </g>
-</svg>
=== removed file 'lib/canonical/launchpad/icing-sources/navigation-tab-bottom-overview-normal.svg'
--- lib/canonical/launchpad/icing-sources/navigation-tab-bottom-overview-normal.svg 2008-07-03 16:54:50 +0000
+++ lib/canonical/launchpad/icing-sources/navigation-tab-bottom-overview-normal.svg 1970-01-01 00:00:00 +0000
@@ -1,140 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="1"
- height="4"
- id="svg2"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- version="1.0"
- sodipodi:docname="navigation-tab-bottom-overview-normal.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-2.0-6-tabs/lib/canonical/launchpad/icing/navigation-tab-bottom-overview-normal.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <defs
- id="defs4">
- <linearGradient
- id="linearGradient3189">
- <stop
- style="stop-color:#83ad23;stop-opacity:1;"
- offset="0"
- id="stop3191" />
- <stop
- style="stop-color:#83ad23;stop-opacity:0;"
- offset="1"
- id="stop3193" />
- </linearGradient>
- <linearGradient
- id="linearGradient3159">
- <stop
- style="stop-color:#cccccf;stop-opacity:0.94117647;"
- offset="0"
- id="stop3161" />
- <stop
- style="stop-color:#eeeeee;stop-opacity:1;"
- offset="1"
- id="stop3163" />
- </linearGradient>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective10" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3159"
- id="linearGradient3165"
- x1="0"
- y1="4"
- x2="0"
- y2="1"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1,0.75)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3189"
- id="linearGradient3195"
- x1="0"
- y1="6"
- x2="0"
- y2="4"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0,-2)" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#eeeeee"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="1"
- inkscape:pageshadow="2"
- inkscape:zoom="102"
- inkscape:cx="0.34821108"
- inkscape:cy="1.8888438"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="853"
- inkscape:window-height="644"
- inkscape:window-x="0"
- inkscape:window-y="25">
- <inkscape:grid
- type="xygrid"
- id="grid2383"
- visible="true"
- enabled="true"
- spacingy="0.5px"
- empspacing="2" />
- </sodipodi:namedview>
- <metadata
- id="metadata7">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <rect
- style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6"
- id="rect2385"
- width="1"
- height="1"
- x="0"
- y="3" />
- <rect
- 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"
- id="rect3157"
- width="1"
- height="3"
- x="0"
- y="0" />
- <rect
- 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"
- id="rect3167"
- width="1"
- height="2"
- x="0"
- y="2" />
- </g>
-</svg>
=== removed file 'lib/canonical/launchpad/icing-sources/navigation-tab-bottom-untinted-normal.svg'
--- lib/canonical/launchpad/icing-sources/navigation-tab-bottom-untinted-normal.svg 2008-07-03 16:54:50 +0000
+++ lib/canonical/launchpad/icing-sources/navigation-tab-bottom-untinted-normal.svg 1970-01-01 00:00:00 +0000
@@ -1,133 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="1"
- height="4"
- id="svg2"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- version="1.0"
- sodipodi:docname="navigation-tab-bottom-untinted-normal.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-2.0-6-tabs/lib/canonical/launchpad/icing/navigation-tab-bottom-overview-normal.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <defs
- id="defs4">
- <linearGradient
- id="linearGradient3189">
- <stop
- style="stop-color:#83ad23;stop-opacity:1;"
- offset="0"
- id="stop3191" />
- <stop
- style="stop-color:#83ad23;stop-opacity:0;"
- offset="1"
- id="stop3193" />
- </linearGradient>
- <linearGradient
- id="linearGradient3159">
- <stop
- style="stop-color:#cccccf;stop-opacity:0.94117647;"
- offset="0"
- id="stop3161" />
- <stop
- style="stop-color:#eeeeee;stop-opacity:1;"
- offset="1"
- id="stop3163" />
- </linearGradient>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective10" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3159"
- id="linearGradient3165"
- x1="0"
- y1="4"
- x2="0"
- y2="1"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1,0.75)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3189"
- id="linearGradient3195"
- x1="0"
- y1="6"
- x2="0"
- y2="4"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.5,1,-5)" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#eeeeee"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="1"
- inkscape:pageshadow="2"
- inkscape:zoom="102"
- inkscape:cx="0.34821108"
- inkscape:cy="1.8888438"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="853"
- inkscape:window-height="644"
- inkscape:window-x="0"
- inkscape:window-y="25">
- <inkscape:grid
- type="xygrid"
- id="grid2383"
- visible="true"
- enabled="true"
- spacingy="0.5px"
- empspacing="2" />
- </sodipodi:namedview>
- <metadata
- id="metadata7">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <rect
- style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6"
- id="rect2385"
- width="1"
- height="1"
- x="0"
- y="3" />
- <rect
- 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"
- id="rect3157"
- width="1"
- height="3"
- x="0"
- y="0" />
- </g>
-</svg>
=== removed file 'lib/canonical/launchpad/icing-sources/navigation-tab-bottom-untinted-selected.svg'
--- lib/canonical/launchpad/icing-sources/navigation-tab-bottom-untinted-selected.svg 2008-07-08 15:40:50 +0000
+++ lib/canonical/launchpad/icing-sources/navigation-tab-bottom-untinted-selected.svg 1970-01-01 00:00:00 +0000
@@ -1,123 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="1"
- height="4"
- id="svg2"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- version="1.0"
- sodipodi:docname="navigation-tab-bottom-untinted-selected.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/mpt/hacking/lpsrc/2008-2.0-6-tabs/lib/canonical/launchpad/icing/navigation-tab-bottom-untinted-selected.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <defs
- id="defs4">
- <linearGradient
- id="linearGradient3189">
- <stop
- style="stop-color:#83ad23;stop-opacity:1;"
- offset="0"
- id="stop3191" />
- <stop
- style="stop-color:#83ad23;stop-opacity:0;"
- offset="1"
- id="stop3193" />
- </linearGradient>
- <linearGradient
- id="linearGradient3159">
- <stop
- style="stop-color:#cccccf;stop-opacity:0.94117647;"
- offset="0"
- id="stop3161" />
- <stop
- style="stop-color:#cccccc;stop-opacity:0;"
- offset="1"
- id="stop3163" />
- </linearGradient>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective10" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3159"
- id="linearGradient3165"
- x1="0"
- y1="4"
- x2="0"
- y2="1"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1,0.75)" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#dddddd"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="1"
- inkscape:pageshadow="2"
- inkscape:zoom="102"
- inkscape:cx="0.34821108"
- inkscape:cy="1.8888438"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="853"
- inkscape:window-height="644"
- inkscape:window-x="0"
- inkscape:window-y="25">
- <inkscape:grid
- type="xygrid"
- id="grid2383"
- visible="true"
- enabled="true"
- spacingy="0.5px"
- empspacing="2" />
- </sodipodi:namedview>
- <metadata
- id="metadata7">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <rect
- style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6"
- id="rect2385"
- width="1"
- height="1"
- x="0"
- y="3" />
- <rect
- 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"
- id="rect3157"
- width="1"
- height="3"
- x="0"
- y="0" />
- </g>
-</svg>
=== removed file 'lib/canonical/launchpad/icing/answers-feature-contact.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/answers-feature-knowledge-base.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/answers-feature-language.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/answers-feature-structured.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/answers-tour-screenshot1.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/answers-tour-screenshot2.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-answers-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-answers-sml-active.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-answers-sml-down.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-answers-sml-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-answers-sml.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-answers-wm.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-answers.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-blueprints-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-blueprints-sml-active.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-blueprints-sml-down.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-blueprints-sml-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-blueprints-sml.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-blueprints-wm.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-blueprints.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-bugs-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-bugs-sml-active.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-bugs-sml-down.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-bugs-sml-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-bugs-sml.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-bugs-wm.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-bugs.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-code-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-code-sml-active.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-code-sml-down.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-code-sml-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-code-sml.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-code-wm.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-code.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-people-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-people-sml-active.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-people-sml-down.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-people-sml-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-people-sml.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-people-wm.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-people.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-register-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-register-sml-active.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-register-sml-down.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-register-sml-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-register-sml.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-register-wm.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-register.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-translations-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-translations-sml-active.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-translations-sml-down.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-translations-sml-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-translations-sml.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-translations-wm.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/app-translations.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/appchoose_a.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/appchoose_tab1_a.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/appchoose_tab2_a.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/appchoose_tab4_a.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/appchoose_tab5_a.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/appchoose_tab6_a.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/blueprints-feature-discuss.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/blueprints-feature-release.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/blueprints-feature-roadmap.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/blueprints-feature-sprints.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/blueprints-tour-screenshot1.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/blueprints-tour-screenshot2.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/blueprints-tour-screenshot3.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/bugs-feature-tagging.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/bugs-feature-teams.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/bugs-feature-tracker.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/bugs-feature-web-email-ui.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/bugs-tour-screenshot1.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/bugs-tour-screenshot2.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-lrg-askaquestion-down.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-lrg-askaquestion-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-lrg-askaquestion.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-lrg-importyourproject-down.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-lrg-importyourproject-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-lrg-registerabranch-down.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-lrg-registerabranch-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-lrg-registeraspec-down.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-lrg-registeraspec-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-lrg-registerproj-down.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-lrg-registerproj-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-lrg-registerproj.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-lrg-reportabug-down.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-lrg-reportabug-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-lrg-reportabug.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-lrg-takeatour-down.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-lrg-takeatour-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-sml-askaquestion-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-sml-helptranslate-down.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-sml-helptranslate-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-sml-helptranslate.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-sml-jointhisteam.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-sml-mentoring-down.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-sml-mentoring-off.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-sml-mentoring-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-sml-mentoring.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-sml-registerablueprint-down.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-sml-registerablueprint-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-sml-registerablueprint.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-sml-reportabug-down.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/but-sml-reportabug-over.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/code-feature-bug-branches.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/code-feature-everyone.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/code-feature-hosting.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/code-feature-import.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/code-tour-screenshot1.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/code-tour-screenshot2.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/code-tour-screenshot3.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/globalheader_bg.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/globalheader_home.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/help-bottom.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/launchpad-tour-screenshot1.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/launchpad-tour-screenshot2.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/launchpad-tour-screenshot3.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/launchpad-tour-screenshot4.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/leftnav-{}.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/leftnav_left_bg.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/leftnav_right_bg.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/mainarea_bottom.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-n.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-ne-e-normal.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-ne-e-selected.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-nw-w-normal.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-nw-w-selected.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-parent-ne-e-normal.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-parent-nw-w-normal.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-parent-se-normal.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-parent-sw-normal.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-se-e-normal.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-se-normal.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-se-selected.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-sw-normal.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-sw-selected.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-sw-w-normal.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tab-bottom-overview-normal.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tab-bottom-untinted-normal.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tab-bottom-untinted-selected.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-answers'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-answers-active'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-blueprints'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-blueprints-active'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-bugs'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-bugs-active'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-code'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-code-active'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-disabled'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-overview'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-overview-active'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-translations'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-se-translations-active'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-answers'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-answers-active'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-blueprints'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-blueprints-active'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-bugs'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-bugs-active'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-code'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-code-active'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-disabled'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-overview'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-overview-active'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-translations'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/navigation-tabs-sw-translations-active'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/translations-add-more-lines.gif'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/translations-feature-everyone.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/translations-feature-flexible.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/translations-feature-gettext.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/translations-feature-suggestions.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/translations-tour-screenshot1.png'
Binary 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
=== removed file 'lib/canonical/launchpad/icing/translations-tour-screenshot2.png'
Binary 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
=== modified file 'lib/canonical/launchpad/zcml/launchpad.zcml'
--- lib/canonical/launchpad/zcml/launchpad.zcml 2010-05-25 17:00:29 +0000
+++ lib/canonical/launchpad/zcml/launchpad.zcml 2010-07-13 16:56:00 +0000
@@ -403,14 +403,6 @@
permission="zope.Public"
/>
-<browser:page
- for="*"
- name="+applicationbuttons"
- permission="zope.Public"
- class="canonical.launchpad.browser.ApplicationButtons"
- attribute="__call__"
- />
-
<class class="canonical.launchpad.webapp.publisher.RenamedView">
<allow interface="zope.publisher.interfaces.browser.IBrowserPublisher"
attributes="__call__"