Merge lp://staging/~doctormo/loco-team-portal/teams_page_design into lp://staging/~ltp-devs/loco-team-portal/trunk

Proposed by Martin Owens
Status: Merged
Merge reported by: Daniel Holbach
Merged at revision: not available
Proposed branch: lp://staging/~doctormo/loco-team-portal/teams_page_design
Merge into: lp://staging/~ltp-devs/loco-team-portal/trunk
Diff against target: 4622 lines (+4422/-56)
15 files modified
AUTHORS (+1/-0)
loco_directory/media/css/layout.css (+3/-2)
loco_directory/media/css/teams.css (+203/-0)
loco_directory/templates/base.html (+1/-2)
loco_directory/templates/teams/team_detail.html (+90/-52)
sources/back.svg (+377/-0)
sources/dbox.svg (+92/-0)
sources/edit.svg (+705/-0)
sources/email.svg (+365/-0)
sources/forum.svg (+369/-0)
sources/irc.svg (+252/-0)
sources/list.svg (+374/-0)
sources/support.svg (+420/-0)
sources/website.svg (+1024/-0)
sources/wiki.svg (+146/-0)
To merge this branch: bzr merge lp://staging/~doctormo/loco-team-portal/teams_page_design
Reviewer Review Type Date Requested Status
Daniel Holbach (community) Approve
Martin Owens (community) Needs Resubmitting
Review via email: mp+16155@code.staging.launchpad.net
To post a comment you must log in.
Revision history for this message
Martin Owens (doctormo) wrote :

Lets get this first step of design into main.

118. By Martin Owens

Update with new copyright text.

119. By Martin Owens

Add Martin Owens to the authors file.

Revision history for this message
Daniel Holbach (dholbach) wrote :

A few things:
 1) the "edit team details" link is missing
 2) conflict in loco_directory/templates/teams/team_detail.html
 3) left border and footer seem to be a bit broken
 4) are the icons for irc/support/etc. obvious enough with just a tooltip?
 5) maybe use http://webchat.freenode.net/ instead of java.freenode.net?
 6) what about teams that don't use freenode? (Korea, Lithuania, ..)
 7) what about the admin/owner mugshots? can we make that a separate commit once we have that data in the LD?

Apart from that: great work!

review: Needs Fixing
120. By Martin Owens

Merged up to 0.2 branch.

121. By Martin Owens

Fix all other asthetic problems.

Revision history for this message
Martin Owens (doctormo) wrote :

A few things fixed:

> 1) the "edit team details" link is missing

Link was there, used a different conditional, changed now to use new conditional.

> 2) conflict in loco_directory/templates/teams/team_detail.html

Merged in correctly.

> 3) left border and footer seem to be a bit broken

Fixed by removing spare closing div tag.

> 4) are the icons for irc/support/etc. obvious enough with just a tooltip?

We can ask the community or the design team, but good enough for now.

> 5) maybe use http://webchat.freenode.net/ instead of java.freenode.net?

Done, webchat is better.

> 6) what about teams that don't use freenode? (Korea, Lithuania, ..)

That'll need a schema change anyway, we'll need some sort of model conditional which can tell if the user specified an irc server or not. So shouldn't be addressed here in this merge request.

> 7) what about the admin/owner mugshots? can we make that a separate commit
> once we have that data in the LD?

Yep, that's all waiting on improvements to the models.

review: Needs Resubmitting
Revision history for this message
Daniel Holbach (dholbach) wrote :

Regarding 7) can we please break it up into two separate branches? That way we could land all the other stuff already.

122. By Martin Owens

Remove admin images temp

Revision history for this message
Daniel Holbach (dholbach) wrote :

Team contact is hard to figure out from LP. Sometimes a team is contact, sometimes one person, sometimes a bunch of people. I don't think we should try to guess it from team admin and team owner.

I think the problem of team contact deserves a different bug or branch.

123. By Martin Owens

Remove team owner label for admin.

Revision history for this message
Daniel Holbach (dholbach) wrote :

I merged this, but made a few very small changes:
 - resolved conflict in loco_directory/templates/base.html
 - updated AUTHORS file
 - updated translations template

Thanks a bunch!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'AUTHORS'
--- AUTHORS 2009-11-02 19:50:07 +0000
+++ AUTHORS 2009-12-23 09:03:14 +0000
@@ -1,5 +1,6 @@
1= Authors =1= Authors =
2 * Richard A. Johnson <nixternal@ubuntu.com>2 * Richard A. Johnson <nixternal@ubuntu.com>
3 * Martin Owens (DoctorMO) <doctormo@ubuntu.com>
34
4= Contributors =5= Contributors =
5 * Jono Bacon <jono@ubuntu.com>6 * Jono Bacon <jono@ubuntu.com>
67
=== modified file 'loco_directory/media/css/layout.css'
--- loco_directory/media/css/layout.css 2009-11-05 03:40:32 +0000
+++ loco_directory/media/css/layout.css 2009-12-23 09:03:14 +0000
@@ -130,7 +130,7 @@
130 position: relative;130 position: relative;
131 overflow: hidden;131 overflow: hidden;
132 margin: 0 0;132 margin: 0 0;
133 padding-left: 0 50px;133 padding: 0px 40px 0px 40px;
134 min-height: 538px;134 min-height: 538px;
135}135}
136* html #body {136* html #body {
@@ -146,7 +146,8 @@
146 background-image: url(../img/footerbg.jpg); 146 background-image: url(../img/footerbg.jpg);
147 background-repeat: repeat-x;147 background-repeat: repeat-x;
148 background-position: bottom;148 background-position: bottom;
149 padding: 0 0 0 0;149 padding: 0 0 20px 0;
150 margin-bottom: 20px;
150}151}
151#footer .wrapper {152#footer .wrapper {
152 padding: 0 15px 5px 15px;153 padding: 0 15px 5px 15px;
153154
=== modified file 'loco_directory/media/css/teams.css'
--- loco_directory/media/css/teams.css 2009-06-28 17:10:39 +0000
+++ loco_directory/media/css/teams.css 2009-12-23 09:03:14 +0000
@@ -51,3 +51,206 @@
51li.unapproved {51li.unapproved {
52 list-style-image: url(../img/unapproved.png);52 list-style-image: url(../img/unapproved.png);
53}53}
54
55/* New LoCo Team Styles - Martin Owens */
56
57th[scope="row"] {
58 text-align: right;
59 padding-right: 5px;
60 border: 0px solid red;
61 width: 130px;
62}
63
64td {
65 border: 0px solid black;
66}
67
68label {
69 font-weight: bold;
70}
71
72#team {
73 border: 0px #888 outset;
74 height: 400px;
75 margin-left: 70px;
76 margin-right: 70px;
77 margin-top: 50px;
78 position: relative;
79}
80
81#team-content {
82 z-index: 10;
83 position: absolute;
84 width: 100%;
85 top: -5px;
86 display: table;
87}
88
89td.branding {
90 width: 192px;
91 height: 192px;
92 vertical-align: top;
93 border: 0px;
94}
95
96#branding {
97 float: left;
98 width: 192px;
99 height: 192px;
100 border: 0px black solid;
101 margin: 20px;
102 background-image: url(../img/nobranding.png)
103}
104
105#goback a, #edit a {
106 width: 32px;
107 height: 32px;
108 display: block;
109 text-decoration: none;
110}
111
112#goback, #edit {
113 position: absolute;
114 top: 0px;
115}
116
117#goback {
118 left: -12px;
119 top: -2px;
120}
121
122#goback a {
123 background-color: transparent;
124 background-image: url(../img/back-to-teams.png)
125}
126
127#edit {
128 right: 5px;
129 top: 3px;
130}
131
132#edit a {
133 background-color: transparent;
134 background-image: url(../img/edit-team.png)
135}
136
137.person {
138 display: list-item;
139 list-style-image: none;
140 list-style-type: none;
141 float: left;
142 margin: 4px;
143}
144
145.person a {
146 width: 64px;
147 height: 64px;
148 display: block;
149 text-decoration: none;
150 border: 1px green solid;
151}
152
153.person a img {
154 border: 0px solid black;
155}
156
157.resource {
158 width: 32px;
159 height: 32px;
160 padding: 2px;
161 float: left;
162 border: 1px white solid;
163}
164
165.resource:hover {
166 border: 1px #eee solid;
167}
168
169#admins {
170 position; absolute;
171 width: 100%;
172 height: 90px;
173}
174
175#resources {
176 position: absolute;
177 width: 100%;
178 height: 90px;
179}
180
181.dbox {
182 position: absolute;
183 padding: 0px;
184 z-index: 0;
185}
186
187.vert {
188 top: 0px;
189 height: 100%;
190 background-repeat: repeat-y;
191}
192
193.box-left {
194 background-image: url(../img/box/left.png);
195 left: -10px;
196 width: 24px;
197}
198
199.box-right {
200 background-image: url(../img/box/right.png);
201 right: -10px;
202 width: 34px;
203
204}
205
206.horz {
207 left: 0px;
208 width: 100%;
209 background-repeat: repeat-x;
210}
211
212.box-top {
213 background-image: url(../img/box/top.png);
214 top: -10px;
215 height: 24px;
216}
217
218.box-bottom {
219 background-image: url(../img/box/bottom.png);
220 bottom: -10px;
221 height: 34px;
222}
223
224.box-top-left {
225 background-image: url(../img/box/top-left.png);
226 top: -10px;
227 left: -10px;
228 height: 24px;
229 width: 24px;
230}
231
232.box-top-right {
233 background-image: url(../img/box/top-right.png);
234 top: -10px;
235 right: -10px;
236 height: 24px;
237 width: 34px;
238}
239
240.box-bottom-left {
241 background-image: url(../img/box/bottom-left.png);
242 bottom: -10px;
243 left: -10px;
244 height: 34px;
245 width: 24px;
246}
247
248.box-bottom-right {
249 background-image: url(../img/box/bottom-right.png);
250 bottom: -10px;
251 right: -10px;
252 height: 34px;
253 width: 34px;
254}
255
256
54257
=== added file 'loco_directory/media/img/back-to-teams.png'
55Binary files loco_directory/media/img/back-to-teams.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/back-to-teams.png 2009-12-23 09:03:14 +0000 differ258Binary files loco_directory/media/img/back-to-teams.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/back-to-teams.png 2009-12-23 09:03:14 +0000 differ
=== added directory 'loco_directory/media/img/box'
=== added file 'loco_directory/media/img/box/bottom-left.png'
56Binary files loco_directory/media/img/box/bottom-left.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/box/bottom-left.png 2009-12-23 09:03:14 +0000 differ259Binary files loco_directory/media/img/box/bottom-left.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/box/bottom-left.png 2009-12-23 09:03:14 +0000 differ
=== added file 'loco_directory/media/img/box/bottom-right.png'
57Binary files loco_directory/media/img/box/bottom-right.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/box/bottom-right.png 2009-12-23 09:03:14 +0000 differ260Binary files loco_directory/media/img/box/bottom-right.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/box/bottom-right.png 2009-12-23 09:03:14 +0000 differ
=== added file 'loco_directory/media/img/box/bottom.png'
58Binary files loco_directory/media/img/box/bottom.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/box/bottom.png 2009-12-23 09:03:14 +0000 differ261Binary files loco_directory/media/img/box/bottom.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/box/bottom.png 2009-12-23 09:03:14 +0000 differ
=== added file 'loco_directory/media/img/box/left.png'
59Binary files loco_directory/media/img/box/left.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/box/left.png 2009-12-23 09:03:14 +0000 differ262Binary files loco_directory/media/img/box/left.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/box/left.png 2009-12-23 09:03:14 +0000 differ
=== added file 'loco_directory/media/img/box/right.png'
60Binary files loco_directory/media/img/box/right.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/box/right.png 2009-12-23 09:03:14 +0000 differ263Binary files loco_directory/media/img/box/right.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/box/right.png 2009-12-23 09:03:14 +0000 differ
=== added file 'loco_directory/media/img/box/top-left.png'
61Binary files loco_directory/media/img/box/top-left.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/box/top-left.png 2009-12-23 09:03:14 +0000 differ264Binary files loco_directory/media/img/box/top-left.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/box/top-left.png 2009-12-23 09:03:14 +0000 differ
=== added file 'loco_directory/media/img/box/top-right.png'
62Binary files loco_directory/media/img/box/top-right.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/box/top-right.png 2009-12-23 09:03:14 +0000 differ265Binary files loco_directory/media/img/box/top-right.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/box/top-right.png 2009-12-23 09:03:14 +0000 differ
=== added file 'loco_directory/media/img/box/top.png'
63Binary files loco_directory/media/img/box/top.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/box/top.png 2009-12-23 09:03:14 +0000 differ266Binary files loco_directory/media/img/box/top.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/box/top.png 2009-12-23 09:03:14 +0000 differ
=== added file 'loco_directory/media/img/edit-team.png'
64Binary files loco_directory/media/img/edit-team.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/edit-team.png 2009-12-23 09:03:14 +0000 differ267Binary files loco_directory/media/img/edit-team.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/edit-team.png 2009-12-23 09:03:14 +0000 differ
=== added file 'loco_directory/media/img/nobranding.png'
65Binary files loco_directory/media/img/nobranding.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/nobranding.png 2009-12-23 09:03:14 +0000 differ268Binary files loco_directory/media/img/nobranding.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/nobranding.png 2009-12-23 09:03:14 +0000 differ
=== added directory 'loco_directory/media/img/res'
=== added file 'loco_directory/media/img/res/email.png'
66Binary files loco_directory/media/img/res/email.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/res/email.png 2009-12-23 09:03:14 +0000 differ269Binary files loco_directory/media/img/res/email.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/res/email.png 2009-12-23 09:03:14 +0000 differ
=== added file 'loco_directory/media/img/res/forum.png'
67Binary files loco_directory/media/img/res/forum.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/res/forum.png 2009-12-23 09:03:14 +0000 differ270Binary files loco_directory/media/img/res/forum.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/res/forum.png 2009-12-23 09:03:14 +0000 differ
=== added file 'loco_directory/media/img/res/irc.png'
68Binary files loco_directory/media/img/res/irc.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/res/irc.png 2009-12-23 09:03:14 +0000 differ271Binary files loco_directory/media/img/res/irc.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/res/irc.png 2009-12-23 09:03:14 +0000 differ
=== added file 'loco_directory/media/img/res/list.png'
69Binary files loco_directory/media/img/res/list.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/res/list.png 2009-12-23 09:03:14 +0000 differ272Binary files loco_directory/media/img/res/list.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/res/list.png 2009-12-23 09:03:14 +0000 differ
=== added file 'loco_directory/media/img/res/support.png'
70Binary files loco_directory/media/img/res/support.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/res/support.png 2009-12-23 09:03:14 +0000 differ273Binary files loco_directory/media/img/res/support.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/res/support.png 2009-12-23 09:03:14 +0000 differ
=== added file 'loco_directory/media/img/res/website.png'
71Binary files loco_directory/media/img/res/website.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/res/website.png 2009-12-23 09:03:14 +0000 differ274Binary files loco_directory/media/img/res/website.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/res/website.png 2009-12-23 09:03:14 +0000 differ
=== added file 'loco_directory/media/img/res/wiki.png'
72Binary files loco_directory/media/img/res/wiki.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/res/wiki.png 2009-12-23 09:03:14 +0000 differ275Binary files loco_directory/media/img/res/wiki.png 1970-01-01 00:00:00 +0000 and loco_directory/media/img/res/wiki.png 2009-12-23 09:03:14 +0000 differ
=== modified file 'loco_directory/templates/base.html'
--- loco_directory/templates/base.html 2009-11-12 09:44:07 +0000
+++ loco_directory/templates/base.html 2009-12-23 09:03:14 +0000
@@ -49,8 +49,7 @@
49 <div id="footer">49 <div id="footer">
50 <div class="wrapper">50 <div class="wrapper">
51 <img src="/media/img/rule.png" width="740" height="1" alt="" class="rule" />51 <img src="/media/img/rule.png" width="740" height="1" alt="" class="rule" />
52 <p>&copy; 2008-2009 Canonical Ltd. Ubuntu and Canonical are registered52 <p>&copy; 2008-2009 Canonical, Ubuntu Community. See <a href="https://launchpad.net/loco-directory">LoCo Directory Project</a> for details. Ubuntu is a registered trademark of Canonical Ltd.</p>
53 trademarks of Canonical Ltd.</p>
54 <p>{% trans "LoCo Directory" noop %} {{ version }}</p>53 <p>{% trans "LoCo Directory" noop %} {{ version }}</p>
55 </div>54 </div>
56 </div>55 </div>
5756
=== modified file 'loco_directory/templates/teams/team_detail.html'
--- loco_directory/templates/teams/team_detail.html 2009-12-21 09:36:55 +0000
+++ loco_directory/templates/teams/team_detail.html 2009-12-23 09:03:14 +0000
@@ -4,56 +4,94 @@
4{% block title %}{% trans team.name %}{% endblock %}4{% block title %}{% trans team.name %}{% endblock %}
55
6{% block content %}6{% block content %}
7<div class="team_detail">7 <div class="team_detail">
8 <p><b><a href="{% url team-list %}">{% trans "Go back to Team list." %}</a></b></p>8 {% if failure_message %}<div class="error">{{ failure_message }}</div>{% endif %}
9 {% if user.is_authenticated %}9
10 <p><b><a href="{% url team-edit team.lp_name %}">{% trans "Edit team details." %}</a></b></p>10 <div id="team">
11 {% endif %}11 <!--Visual 3D box-->
12<h2><a href="https://launchpad.net/~{{ team.lp_name }}">{% trans team.name %}</a></h2>12 <div class="dbox vert box-left">&nbsp;</div>
13<table cellpadding="0" cellspacing="0">13 <div class="dbox vert box-right">&nbsp;</div>
14<tr><th colspan="2">{% trans "Location Information" %}</th></tr>14 <div class="dbox horz box-top">&nbsp;</div>
15{% if team.country %}15 <div class="dbox horz box-bottom">&nbsp;</div>
16<tr><td width="35%"><strong>{% trans "Country" %}</strong></td><td>{% trans team.country %}</td></tr>16 <div class="dbox box-top-left">&nbsp;</div>
17{% endif %}17 <div class="dbox box-top-right">&nbsp;</div>
18{% if team.spr %}18 <div class="dbox box-bottom-left">&nbsp;</div>
19<tr><td><strong>{% trans "State/Province/Region" %}</strong></td><td>{% trans team.spr %}</td></tr>19 <div class="dbox box-bottom-right">&nbsp;</div>
20{% endif %}20
21{% if team.city %}21 <div id="goback"><a href="/teams" title="{% trans "Go back to Team list." %}">&nbsp;</a></div>
22<tr><td><strong>{% trans "City" %}</strong></td><td>{% trans team.city %}</td></tr>22 {% if user.is_authenticated %}
23{% endif %}23 <div id="edit"><a href="/teams/{{ team.lp_name }}/edit" title="{% trans "Edit team details." %}">&nbsp;</a></div>
24<tr><th colspan="2">{% trans "Launchpad Team Contact Information" %}</th></tr>24 {% endif %}
25<tr><td><strong>{% trans "Owner" %}</strong></td><td><a href="https://launchpad.net/~{{ team.owner }}">{{ team.owner }}</a></td></tr>25
26{% for admin in team.admins.all %}26 <table id="team-content">
27<tr><td><strong>{% trans "Administrator" %}</strong></td><td><a href="https://launchpad.net/~{{ admin.lpid }}">{{ admin.lpid }}</a></td></tr>27 <tr>
28{% endfor %}28 <td rowspan="30" class="branding"><img id="branding" src="{{ team.branding }}" alt="" title="{{ team.name }}"/></td>
29<tr><th colspan="2">{% trans "Team Information" %}</th></tr>29 <td colspan="2"><h2><a href="https://launchpad.net/~{{ team.lp_name }}">{% trans team.name %}</a></h2></td>
30{% if team.wiki_url %}30 </tr>
31<tr><td><strong>{% trans "Wiki URL" %}</strong></td><td><a href="{{ team.wiki_url }}">{{ team.wiki_url }}</a></td></tr>31
32{% endif %}32 <tr>
33{% if team.irc_chan %}33 <th scope="row"><label>{% trans "Location:" %}</label></th>
34<tr><td><strong>{% trans "IRC Channel" %}</strong></td><td>{{ team.irc_chan }}</td></tr>34 <td>{% if team.country %}
35{% endif %}35 {% trans team.country %}{% if team.spr %}, {% trans team.spr %}{% endif %}{% if team.city %}, {% trans team.city %}{% endif %}
36{% if team.ml_url %}36 {% else %}
37<tr><td><strong>{% trans "Mailing List URL" %}</strong></td><td><a href="{{ team.ml_url }}">{{ team.ml_url }}</a></td></tr>37 None Specified
38{% endif %}38 {% endif %}</td>
39{% if team.email %}39 </tr>
40<tr><td><strong>{% trans "Email Address" %}</strong></td><td><a href="mailto:{{ team.email }}">{{ team.email }}</a></td></tr>40
41{% endif %}41 <tr>
42{% if team.forum_url %}42 <th scope="row"><label>{% trans "Team Contact:" %}</label></th>
43<tr><td><strong>{% trans "Forums URL" %}</strong></td><td><a href="{{ team.forum_url }}">{{ team.forum_url }}</a></td></tr>43 <td><a href="https://launchpad.net/~{{ team.owner }}">{{ team.owner }}</a></td>
44{% endif %}44 </tr>
45{% if team.web_url %}45
46<tr><td><strong>{% trans "Web Site URL" %}</strong></td><td><a href="{{ team.web_url }}">{{ team.web_url }}</a></td></tr>46 {% if team.approved_date %}
47{% endif %}47 <tr>
48<tr><td><strong>{% trans "Provides Support" %}</strong></td>48 <th scope="row"><label>{% trans "Approval Date:" %}</label></th>
49<td>{% if team.provides_support %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %}</td></tr>49 <td>{{ team.approved_date }}</td>
50<tr><td><strong>{% trans "Approved" %}</strong></td>50 </tr>
51<td>{% if team.approved %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %}</td></tr>51 {% endif %}
52{% if team.approved %}52 {% if team.approved %}
53<tr><td><strong>{% trans "Date Approved" %}</strong></td><td>{{ team.approved_date }}</td></tr>53 <tr>
54<tr><td><strong>{% trans "Date Expires" %}</strong></td><td>{{ team.expires_date }}</td></tr>54 <th scope="row"><label>{% trans "Expires Date:" %}</label></th>
55{% endif %}55 <td>{{ team.expires_date }}</td>
56</table>56 </tr>
5757 {% endif %}
58</div>58
59 <tr>
60 <th scope="row"><label>{% trans "Admins:" %}</label></th>
61 <td>{% for admin in team.admins.all %}
62 <a href="https://launchpad.net/~{{ admin.lpid }}">{{ admin.lpid }}</a>,
63 {% endfor %}</td>
64 </tr>
65
66 <tr>
67 <th scope="row"><label>{% trans "Resources:" %}</label></th>
68 <td>
69 {% if team.wiki_url %}
70 <a href="{{ team.wiki_url }}"><img class="resource" src="/media/img/res/wiki.png" alt="{% trans "Team Wiki" %}" title="{% trans "Team Wiki" %}"/></a>
71 {% endif %}
72 {% if team.irc_chan %}
73 <a href="http://webchat.freenode.net/?channels={{ team.irc_chan }}"><img class="resource" src="/media/img/res/irc.png" alt="{% trans "IRC Channel" %} ({{ team.irc_chan }})" title="{% trans "IRC Channel" %} ({{ team.irc_chan }})"/></a>
74 {% endif %}
75 {% if team.ml_url %}
76 <a href="{{ team.ml_url }}"><img class="resource" src="/media/img/res/list.png" alt="{% trans "Team Mailing List" %}" title="{% trans "Team Mailing List" %}"/></a>
77 {% endif %}
78 {% if team.email %}
79 <a href="mailto:{{ team.email }}"><img class="resource" src="/media/img/res/email.png" alt="{% trans "Email Address" %}" title="{% trans "Email Address" %}"/></a>
80 {% endif %}
81 {% if team.forum_url %}
82 <a href="{{ team.forum_url }}"><img class="resource" src="/media/img/res/forum.png" alt="{% trans "Team Forums" %}" title="{% trans "Team Forums" %}"/></a>
83 {% endif %}
84 {% if team.web_url %}
85 <a href="{{ team.web_url }}"><img class="resource" src="/media/img/res/website.png" alt="{% trans "Team Website" %}" title="{% trans "Team Website" %}"/></a>
86 {% endif %}
87 {% if team.provides_support %}
88 <img class="resource" src="/media/img/res/support.png" alt="{% trans "Provides Support" %}" title="{% trans "Provides Support" %}"/>
89 {% endif %}
90
91 </td>
92 </tr>
93
94 </table>
95 </div>
96 </div>
59{% endblock %}97{% endblock %}
6098
=== added directory 'sources'
=== added file 'sources/back.svg'
--- sources/back.svg 1970-01-01 00:00:00 +0000
+++ sources/back.svg 2009-12-23 09:03:14 +0000
@@ -0,0 +1,377 @@
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
4<svg
5 xmlns:dc="http://purl.org/dc/elements/1.1/"
6 xmlns:cc="http://creativecommons.org/ns#"
7 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8 xmlns:svg="http://www.w3.org/2000/svg"
9 xmlns="http://www.w3.org/2000/svg"
10 xmlns:xlink="http://www.w3.org/1999/xlink"
11 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13 inkscape:export-ydpi="60"
14 inkscape:export-xdpi="60"
15 inkscape:export-filename="/home/doctormo/Desktop/back.png"
16 width="48"
17 height="48"
18 id="svg11300"
19 sodipodi:version="0.32"
20 inkscape:version="0.47pre4 r22446"
21 sodipodi:docname="emblem-symbolic-link.svg"
22 version="1.0"
23 inkscape:output_extension="org.inkscape.output.svg.inkscape">
24 <defs
25 id="defs3">
26 <inkscape:perspective
27 sodipodi:type="inkscape:persp3d"
28 inkscape:vp_x="0 : 24 : 1"
29 inkscape:vp_y="0 : 1000 : 0"
30 inkscape:vp_z="48 : 24 : 1"
31 inkscape:persp3d-origin="24 : 16 : 1"
32 id="perspective40" />
33 <linearGradient
34 inkscape:collect="always"
35 id="linearGradient5282">
36 <stop
37 style="stop-color:#888a85;stop-opacity:1;"
38 offset="0"
39 id="stop5284" />
40 <stop
41 style="stop-color:#555753;stop-opacity:1"
42 offset="1"
43 id="stop5286" />
44 </linearGradient>
45 <linearGradient
46 inkscape:collect="always"
47 id="linearGradient5403">
48 <stop
49 style="stop-color:#000000;stop-opacity:1;"
50 offset="0"
51 id="stop5405" />
52 <stop
53 style="stop-color:#000000;stop-opacity:0;"
54 offset="1"
55 id="stop5407" />
56 </linearGradient>
57 <linearGradient
58 inkscape:collect="always"
59 id="linearGradient5393">
60 <stop
61 style="stop-color:#ffffff;stop-opacity:1;"
62 offset="0"
63 id="stop5395" />
64 <stop
65 style="stop-color:#ffffff;stop-opacity:0;"
66 offset="1"
67 id="stop5397" />
68 </linearGradient>
69 <linearGradient
70 id="linearGradient5265">
71 <stop
72 style="stop-color:#ffffff;stop-opacity:1;"
73 offset="0"
74 id="stop5267" />
75 <stop
76 id="stop5281"
77 offset="0.28349411"
78 style="stop-color:#ffffff;stop-opacity:1;" />
79 <stop
80 style="stop-color:#ffffff;stop-opacity:0;"
81 offset="1"
82 id="stop5269" />
83 </linearGradient>
84 <linearGradient
85 inkscape:collect="always"
86 id="linearGradient2782">
87 <stop
88 style="stop-color:black;stop-opacity:1;"
89 offset="0"
90 id="stop2784" />
91 <stop
92 style="stop-color:black;stop-opacity:0;"
93 offset="1"
94 id="stop2786" />
95 </linearGradient>
96 <radialGradient
97 inkscape:collect="always"
98 xlink:href="#linearGradient2782"
99 id="radialGradient2788"
100 cx="28.682018"
101 cy="39.779884"
102 fx="28.682018"
103 fy="39.779884"
104 r="12.59534"
105 gradientTransform="matrix(1,0,0,0.329825,0,26.6595)"
106 gradientUnits="userSpaceOnUse" />
107 <radialGradient
108 inkscape:collect="always"
109 xlink:href="#linearGradient5265"
110 id="radialGradient5271"
111 cx="16.350952"
112 cy="12.578328"
113 fx="16.350952"
114 fy="12.578328"
115 r="6.9271288"
116 gradientTransform="matrix(3.5838969,0,0,3.0076999,-41.766746,-27.550587)"
117 gradientUnits="userSpaceOnUse" />
118 <radialGradient
119 inkscape:collect="always"
120 xlink:href="#linearGradient2782"
121 id="radialGradient5285"
122 gradientUnits="userSpaceOnUse"
123 gradientTransform="matrix(1,0,0,0.329825,0,26.6595)"
124 cx="28.682018"
125 cy="39.779884"
126 fx="28.682018"
127 fy="39.779884"
128 r="12.59534" />
129 <filter
130 inkscape:collect="always"
131 id="filter5379"
132 x="-0.14493342"
133 width="1.2898668"
134 y="-0.43942577"
135 height="1.8788517">
136 <feGaussianBlur
137 inkscape:collect="always"
138 stdDeviation="1.521238"
139 id="feGaussianBlur5381" />
140 </filter>
141 <radialGradient
142 inkscape:collect="always"
143 xlink:href="#linearGradient5393"
144 id="radialGradient5399"
145 cx="12.893971"
146 cy="13.137217"
147 fx="12.893971"
148 fy="13.137217"
149 r="6.9404535"
150 gradientTransform="matrix(0.9391513,0.9314688,-2.7714066,2.7714066,47.469422,-33.517793)"
151 gradientUnits="userSpaceOnUse" />
152 <linearGradient
153 inkscape:collect="always"
154 xlink:href="#linearGradient5403"
155 id="linearGradient5409"
156 x1="33.688488"
157 y1="39.894127"
158 x2="26.822592"
159 y2="32.924358"
160 gradientUnits="userSpaceOnUse" />
161 <filter
162 inkscape:collect="always"
163 id="filter5471"
164 x="-0.13357687"
165 width="1.2671537"
166 y="-0.075597449"
167 height="1.1511949">
168 <feGaussianBlur
169 inkscape:collect="always"
170 stdDeviation="1.2011151"
171 id="feGaussianBlur5473" />
172 </filter>
173 <linearGradient
174 inkscape:collect="always"
175 xlink:href="#linearGradient5282"
176 id="linearGradient5288"
177 x1="18.666454"
178 y1="23.601217"
179 x2="19.550337"
180 y2="43.589653"
181 gradientUnits="userSpaceOnUse" />
182 <radialGradient
183 inkscape:collect="always"
184 xlink:href="#linearGradient2782"
185 id="radialGradient2854"
186 gradientUnits="userSpaceOnUse"
187 gradientTransform="matrix(1,0,0,0.329825,0,26.6595)"
188 cx="28.682018"
189 cy="39.779884"
190 fx="28.682018"
191 fy="39.779884"
192 r="12.59534" />
193 <radialGradient
194 inkscape:collect="always"
195 xlink:href="#linearGradient2782"
196 id="radialGradient2856"
197 gradientUnits="userSpaceOnUse"
198 gradientTransform="matrix(1,0,0,0.329825,0,26.6595)"
199 cx="28.682018"
200 cy="39.779884"
201 fx="28.682018"
202 fy="39.779884"
203 r="12.59534" />
204 <linearGradient
205 inkscape:collect="always"
206 xlink:href="#linearGradient5282"
207 id="linearGradient2858"
208 gradientUnits="userSpaceOnUse"
209 x1="18.666454"
210 y1="23.601217"
211 x2="19.550337"
212 y2="43.589653" />
213 <radialGradient
214 inkscape:collect="always"
215 xlink:href="#linearGradient5265"
216 id="radialGradient2860"
217 gradientUnits="userSpaceOnUse"
218 gradientTransform="matrix(3.5838969,0,0,3.0076999,-41.766746,-27.550587)"
219 cx="16.350952"
220 cy="12.578328"
221 fx="16.350952"
222 fy="12.578328"
223 r="6.9271288" />
224 <radialGradient
225 inkscape:collect="always"
226 xlink:href="#linearGradient5393"
227 id="radialGradient2862"
228 gradientUnits="userSpaceOnUse"
229 gradientTransform="matrix(0.9391513,0.9314688,-2.7714066,2.7714066,47.469422,-33.517793)"
230 cx="12.893971"
231 cy="13.137217"
232 fx="12.893971"
233 fy="13.137217"
234 r="6.9404535" />
235 <linearGradient
236 inkscape:collect="always"
237 xlink:href="#linearGradient5403"
238 id="linearGradient2864"
239 gradientUnits="userSpaceOnUse"
240 x1="33.688488"
241 y1="39.894127"
242 x2="26.822592"
243 y2="32.924358" />
244 </defs>
245 <sodipodi:namedview
246 stroke="#ef2929"
247 fill="#888a85"
248 id="base"
249 pagecolor="#ffffff"
250 bordercolor="#666666"
251 borderopacity="0.25490196"
252 inkscape:pageopacity="0.0"
253 inkscape:pageshadow="2"
254 inkscape:zoom="1"
255 inkscape:cx="43.421283"
256 inkscape:cy="15.209517"
257 inkscape:current-layer="layer1"
258 showgrid="true"
259 inkscape:grid-bbox="true"
260 inkscape:document-units="px"
261 inkscape:showpageshadow="false"
262 inkscape:window-width="908"
263 inkscape:window-height="718"
264 inkscape:window-x="370"
265 inkscape:window-y="25"
266 width="48px"
267 height="48px"
268 inkscape:window-maximized="0">
269 <inkscape:grid
270 type="xygrid"
271 id="grid4684" />
272 </sodipodi:namedview>
273 <metadata
274 id="metadata4">
275 <rdf:RDF>
276 <cc:Work
277 rdf:about="">
278 <dc:format>image/svg+xml</dc:format>
279 <dc:type
280 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
281 <dc:creator>
282 <cc:Agent>
283 <dc:title>Jakub Steiner</dc:title>
284 </cc:Agent>
285 </dc:creator>
286 <dc:source>http://jimmac.musichall.cz</dc:source>
287 <cc:license
288 rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
289 <dc:title></dc:title>
290 <dc:subject>
291 <rdf:Bag>
292 <rdf:li>emblem</rdf:li>
293 <rdf:li>symbolic</rdf:li>
294 <rdf:li>link</rdf:li>
295 <rdf:li>pointer</rdf:li>
296 <rdf:li>io</rdf:li>
297 <rdf:li>file</rdf:li>
298 </rdf:Bag>
299 </dc:subject>
300 </cc:Work>
301 <cc:License
302 rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
303 <cc:permits
304 rdf:resource="http://web.resource.org/cc/Reproduction" />
305 <cc:permits
306 rdf:resource="http://web.resource.org/cc/Distribution" />
307 <cc:requires
308 rdf:resource="http://web.resource.org/cc/Notice" />
309 <cc:permits
310 rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
311 <cc:requires
312 rdf:resource="http://web.resource.org/cc/ShareAlike" />
313 <cc:requires
314 rdf:resource="http://web.resource.org/cc/SourceCode" />
315 </cc:License>
316 <cc:Work
317 rdf:about="">
318 <dc:format>image/svg+xml</dc:format>
319 <dc:type
320 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
321 </cc:Work>
322 </rdf:RDF>
323 </metadata>
324 <g
325 id="layer1"
326 inkscape:label="Layer 1"
327 inkscape:groupmode="layer">
328 <g
329 id="g2846"
330 transform="matrix(0.44639431,-0.89483637,0.89483637,0.44639431,-9.997657,36.794508)">
331 <path
332 sodipodi:type="arc"
333 style="opacity:0.53012049;color:#000000;fill:url(#radialGradient2854);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5379)"
334 id="path5283"
335 sodipodi:cx="28.682018"
336 sodipodi:cy="39.779884"
337 sodipodi:rx="12.59534"
338 sodipodi:ry="4.1542525"
339 d="m 41.277358,39.779884 c 0,2.294331 -5.639126,4.154253 -12.59534,4.154253 -6.956214,0 -12.595339,-1.859922 -12.595339,-4.154253 0,-2.29433 5.639125,-4.154252 12.595339,-4.154252 6.956214,0 12.59534,1.859922 12.59534,4.154252 z"
340 transform="matrix(0.7315426,0,0,0.8758998,-2.6289879,8.6451927)" />
341 <path
342 transform="matrix(1.2334109,0,0,1.0076725,-8.228868,3.4032918)"
343 d="m 41.277358,39.779884 c 0,2.294331 -5.639126,4.154253 -12.59534,4.154253 -6.956214,0 -12.595339,-1.859922 -12.595339,-4.154253 0,-2.29433 5.639125,-4.154252 12.595339,-4.154252 6.956214,0 12.59534,1.859922 12.59534,4.154252 z"
344 sodipodi:ry="4.1542525"
345 sodipodi:rx="12.59534"
346 sodipodi:cy="39.779884"
347 sodipodi:cx="28.682018"
348 id="path2780"
349 style="opacity:0.13402064;color:#000000;fill:url(#radialGradient2856);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
350 sodipodi:type="arc" />
351 <path
352 style="color:#000000;fill:#e0e3dd;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2858);stroke-width:0.99999946;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:block;overflow:visible"
353 d="M 13.231032,44.801742 C 32.533918,45.05839 43.631188,27.964269 28.215997,12.281453 l 7.451349,-7.7062297 c 0,0 -23.226234,-0.030726 -23.226234,-0.030726 l 0.03452,23.4296397 c 0,0 7.615618,-7.592548 7.615618,-7.592548 12.539667,11.928347 3.731482,21.41642 -7.438584,21.351977 -1.077832,-0.0062 -1.559352,3.164947 0.578362,3.068176 z"
354 id="path2177"
355 sodipodi:nodetypes="ccccccsc" />
356 <path
357 d="m 13.4375,5.53125 0.03125,20 5.90625,-5.875 a 0.99774401,0.99774401 0 0 1 1.40625,0 c 3.224983,3.067762 5.140414,6.028395 5.96875,8.8125 0.828336,2.784105 0.539756,5.380459 -0.59375,7.53125 -2.237723,4.246006 -7.501655,6.65794 -13.28125,6.6875 -0.06269,0.113095 -0.15856,0.370609 -0.15625,0.59375 0.0023,0.223141 0.08059,0.383942 0.125,0.4375 0.04441,0.05356 0.05546,0.106801 0.34375,0.09375 a 0.99774401,0.99774401 0 0 1 0.03125,0 c 9.354292,0.124373 16.571573,-3.945805 19.625,-9.75 C 35.897177,28.258305 34.996477,20.595374 27.5,12.96875 a 0.99774401,0.99774401 0 0 1 0,-1.375 L 33.3125,5.5625 13.4375,5.53125 z"
358 inkscape:href="#path2177"
359 id="path4686"
360 style="color:#000000;fill:none;stroke:url(#radialGradient2860);stroke-width:0.99999946;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:block;overflow:visible"
361 xlink:href="#path2177"
362 inkscape:original="M 12.4375 4.53125 L 12.46875 27.96875 L 20.09375 20.375 C 32.633417 32.303347 23.826316 41.783193 12.65625 41.71875 C 11.578418 41.71255 11.081036 44.909271 13.21875 44.8125 C 32.521636 45.069148 43.633941 27.964066 28.21875 12.28125 L 35.65625 4.5625 L 12.4375 4.53125 z "
363 inkscape:radius="-0.99764425"
364 sodipodi:type="inkscape:offset" />
365 <path
366 sodipodi:nodetypes="ccccccsc"
367 id="path5383"
368 d="m 17.159788,43.640829 c 14.355098,0.03349 25.726736,-17.797982 9.952346,-31.284319 l 6.591644,-6.8171264 c 0,0 -20.546513,-0.027181 -20.546513,-0.027181 l 0.03054,20.7264614 c 0,0 6.736976,-6.716559 6.736976,-6.716559 11.0929,10.552111 7.682618,19.679887 -2.110604,22.372239 -0.819697,0.225351 -2.545468,1.832089 -0.65439,1.746485 z"
369 style="color:#000000;fill:url(#radialGradient2862);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999946;marker:none;visibility:visible;display:block;overflow:visible" />
370 <path
371 style="opacity:0.51204816;color:#000000;fill:url(#linearGradient2864);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999946;marker:none;visibility:visible;display:block;overflow:visible;filter:url(#filter5471)"
372 d="m 17.159788,43.640829 c 14.355098,0.03349 25.726736,-17.797982 9.952346,-31.284319 l 6.591644,-6.8171264 c 0,0 -20.546513,-0.027181 -20.546513,-0.027181 l 0.03054,20.7264614 c 0,0 6.736976,-6.716559 6.736976,-6.716559 11.0929,10.552111 7.682618,19.679887 -2.110604,22.372239 -0.819697,0.225351 -2.545468,1.832089 -0.65439,1.746485 z"
373 id="path5401"
374 sodipodi:nodetypes="ccccccsc" />
375 </g>
376 </g>
377</svg>
0378
=== added file 'sources/dbox.svg'
--- sources/dbox.svg 1970-01-01 00:00:00 +0000
+++ sources/dbox.svg 2009-12-23 09:03:14 +0000
@@ -0,0 +1,92 @@
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
4<svg
5 xmlns:dc="http://purl.org/dc/elements/1.1/"
6 xmlns:cc="http://creativecommons.org/ns#"
7 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8 xmlns:svg="http://www.w3.org/2000/svg"
9 xmlns="http://www.w3.org/2000/svg"
10 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12 width="744.09448819"
13 height="1052.3622047"
14 id="svg2"
15 version="1.1"
16 inkscape:version="0.47pre4 r22446"
17 sodipodi:docname="New document 1">
18 <defs
19 id="defs4">
20 <inkscape:perspective
21 sodipodi:type="inkscape:persp3d"
22 inkscape:vp_x="0 : 526.18109 : 1"
23 inkscape:vp_y="0 : 1000 : 0"
24 inkscape:vp_z="744.09448 : 526.18109 : 1"
25 inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
26 id="perspective10" />
27 <filter
28 inkscape:collect="always"
29 id="filter3592">
30 <feGaussianBlur
31 inkscape:collect="always"
32 stdDeviation="3.1607142"
33 id="feGaussianBlur3594" />
34 </filter>
35 </defs>
36 <sodipodi:namedview
37 id="base"
38 pagecolor="#ffffff"
39 bordercolor="#666666"
40 borderopacity="1.0"
41 inkscape:pageopacity="0.0"
42 inkscape:pageshadow="2"
43 inkscape:zoom="1.4"
44 inkscape:cx="320.70314"
45 inkscape:cy="702.36286"
46 inkscape:document-units="px"
47 inkscape:current-layer="layer1"
48 showgrid="false"
49 inkscape:window-width="1280"
50 inkscape:window-height="723"
51 inkscape:window-x="0"
52 inkscape:window-y="25"
53 inkscape:window-maximized="1" />
54 <metadata
55 id="metadata7">
56 <rdf:RDF>
57 <cc:Work
58 rdf:about="">
59 <dc:format>image/svg+xml</dc:format>
60 <dc:type
61 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
62 <dc:title></dc:title>
63 </cc:Work>
64 </rdf:RDF>
65 </metadata>
66 <g
67 inkscape:label="Layer 1"
68 inkscape:groupmode="layer"
69 id="layer1">
70 <rect
71 ry="18.571428"
72 y="224.21933"
73 x="117.57143"
74 height="210.71428"
75 width="421.42856"
76 id="rect3590"
77 style="color:#000000;fill:#000000;fill-opacity:0.52914798;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;filter:url(#filter3592)"
78 inkscape:export-filename="/home/doctormo/Desktop/rect2816.png"
79 inkscape:export-xdpi="90.082458"
80 inkscape:export-ydpi="90.082458" />
81 <rect
82 style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c5c5c5;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
83 id="rect2816"
84 width="421.42856"
85 height="210.71428"
86 x="115"
87 y="220.79076"
88 ry="18.571428"
89 inkscape:export-xdpi="90.082458"
90 inkscape:export-ydpi="90.082458" />
91 </g>
92</svg>
093
=== added file 'sources/edit.svg'
--- sources/edit.svg 1970-01-01 00:00:00 +0000
+++ sources/edit.svg 2009-12-23 09:03:14 +0000
@@ -0,0 +1,705 @@
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
4<svg
5 xmlns:dc="http://purl.org/dc/elements/1.1/"
6 xmlns:cc="http://creativecommons.org/ns#"
7 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8 xmlns:svg="http://www.w3.org/2000/svg"
9 xmlns="http://www.w3.org/2000/svg"
10 xmlns:xlink="http://www.w3.org/1999/xlink"
11 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13 width="48px"
14 height="48px"
15 id="svg4289"
16 sodipodi:version="0.32"
17 inkscape:version="0.47pre4 r22446"
18 sodipodi:docname="Gnome-preferences-system.svg"
19 inkscape:output_extension="org.inkscape.output.svg.inkscape"
20 version="1.1"
21 inkscape:export-filename="/home/doctormo/Desktop/edit.png"
22 inkscape:export-xdpi="60"
23 inkscape:export-ydpi="60">
24 <defs
25 id="defs4291">
26 <inkscape:perspective
27 sodipodi:type="inkscape:persp3d"
28 inkscape:vp_x="0 : 24 : 1"
29 inkscape:vp_y="0 : 1000 : 0"
30 inkscape:vp_z="48 : 24 : 1"
31 inkscape:persp3d-origin="24 : 16 : 1"
32 id="perspective97" />
33 <linearGradient
34 inkscape:collect="always"
35 id="linearGradient6998">
36 <stop
37 style="stop-color: rgb(0, 0, 0); stop-opacity: 1;"
38 offset="0"
39 id="stop7000" />
40 <stop
41 style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"
42 offset="1"
43 id="stop7002" />
44 </linearGradient>
45 <linearGradient
46 inkscape:collect="always"
47 id="linearGradient5443">
48 <stop
49 style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"
50 offset="0"
51 id="stop5445" />
52 <stop
53 style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"
54 offset="1"
55 id="stop5447" />
56 </linearGradient>
57 <linearGradient
58 inkscape:collect="always"
59 id="linearGradient5437">
60 <stop
61 style="stop-color: rgb(46, 52, 54); stop-opacity: 1;"
62 offset="0"
63 id="stop5439" />
64 <stop
65 style="stop-color: rgb(114, 159, 207); stop-opacity: 1;"
66 offset="1"
67 id="stop5441" />
68 </linearGradient>
69 <linearGradient
70 id="linearGradient6791">
71 <stop
72 id="stop6793"
73 offset="0"
74 style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" />
75 <stop
76 id="stop6795"
77 offset="1"
78 style="stop-color: rgb(255, 255, 255); stop-opacity: 0;" />
79 </linearGradient>
80 <linearGradient
81 id="linearGradient6707">
82 <stop
83 id="stop6709"
84 offset="0"
85 style="stop-color: rgb(136, 138, 133); stop-opacity: 1;" />
86 <stop
87 id="stop6711"
88 offset="1"
89 style="stop-color: rgb(85, 87, 83); stop-opacity: 1;" />
90 </linearGradient>
91 <linearGradient
92 inkscape:collect="always"
93 id="linearGradient6696">
94 <stop
95 style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"
96 offset="0"
97 id="stop6698" />
98 <stop
99 style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"
100 offset="1"
101 id="stop6700" />
102 </linearGradient>
103 <linearGradient
104 inkscape:collect="always"
105 id="linearGradient6576">
106 <stop
107 style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"
108 offset="0"
109 id="stop6578" />
110 <stop
111 style="stop-color: rgb(255, 255, 255); stop-opacity: 0;"
112 offset="1"
113 id="stop6580" />
114 </linearGradient>
115 <linearGradient
116 id="linearGradient6545">
117 <stop
118 style="stop-color: rgb(211, 215, 207); stop-opacity: 1;"
119 offset="0"
120 id="stop6547" />
121 <stop
122 style="stop-color: rgb(238, 238, 236); stop-opacity: 1;"
123 offset="1"
124 id="stop6549" />
125 </linearGradient>
126 <linearGradient
127 id="linearGradient6525">
128 <stop
129 style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"
130 offset="0"
131 id="stop6527" />
132 <stop
133 style="stop-color: rgb(186, 189, 182); stop-opacity: 1;"
134 offset="1"
135 id="stop6529" />
136 </linearGradient>
137 <linearGradient
138 inkscape:collect="always"
139 id="linearGradient6424">
140 <stop
141 style="stop-color: rgb(238, 238, 236); stop-opacity: 1;"
142 offset="0"
143 id="stop6426" />
144 <stop
145 style="stop-color: rgb(238, 238, 236); stop-opacity: 0;"
146 offset="1"
147 id="stop6428" />
148 </linearGradient>
149 <linearGradient
150 id="linearGradient5440">
151 <stop
152 id="stop5442"
153 offset="0"
154 style="stop-color: rgb(238, 238, 236); stop-opacity: 1;" />
155 <stop
156 id="stop5444"
157 offset="1"
158 style="stop-color: rgb(162, 162, 152); stop-opacity: 1;" />
159 </linearGradient>
160 <linearGradient
161 inkscape:collect="always"
162 id="linearGradient5402">
163 <stop
164 style="stop-color: rgb(0, 0, 0); stop-opacity: 1;"
165 offset="0"
166 id="stop5404" />
167 <stop
168 style="stop-color: rgb(0, 0, 0); stop-opacity: 0;"
169 offset="1"
170 id="stop5406" />
171 </linearGradient>
172 <linearGradient
173 id="linearGradient2808">
174 <stop
175 id="stop2810"
176 offset="0"
177 style="stop-color: white; stop-opacity: 1;" />
178 <stop
179 id="stop2812"
180 offset="1"
181 style="stop-color: white; stop-opacity: 0.293785;" />
182 </linearGradient>
183 <linearGradient
184 inkscape:collect="always"
185 id="linearGradient6221">
186 <stop
187 style="stop-color: black; stop-opacity: 1;"
188 offset="0"
189 id="stop6223" />
190 <stop
191 style="stop-color: black; stop-opacity: 0;"
192 offset="1"
193 id="stop6225" />
194 </linearGradient>
195 <linearGradient
196 inkscape:collect="always"
197 id="linearGradient5220">
198 <stop
199 style="stop-color: rgb(12, 29, 53); stop-opacity: 1;"
200 offset="0"
201 id="stop5222" />
202 <stop
203 style="stop-color: white; stop-opacity: 0.293785;"
204 offset="1"
205 id="stop5224" />
206 </linearGradient>
207 <linearGradient
208 inkscape:collect="always"
209 id="linearGradient5210">
210 <stop
211 style="stop-color: rgb(114, 159, 207); stop-opacity: 1;"
212 offset="0"
213 id="stop5212" />
214 <stop
215 style="stop-color: rgb(41, 94, 173); stop-opacity: 1;"
216 offset="1"
217 id="stop5214" />
218 </linearGradient>
219 <radialGradient
220 inkscape:collect="always"
221 xlink:href="#linearGradient6221"
222 id="radialGradient6819"
223 gradientUnits="userSpaceOnUse"
224 gradientTransform="matrix(0.982963, 0, 0, 0.508943, 0.37414, 16.8414)"
225 cx="21.96048"
226 cy="34.498356"
227 fx="21.96048"
228 fy="34.498356"
229 r="12.727922" />
230 <radialGradient
231 inkscape:collect="always"
232 xlink:href="#linearGradient6221"
233 id="radialGradient6821"
234 gradientUnits="userSpaceOnUse"
235 gradientTransform="matrix(0.982963, 0, 0, 0.508943, 0.37414, 16.8414)"
236 cx="21.96048"
237 cy="34.498356"
238 fx="21.96048"
239 fy="34.498356"
240 r="12.727922" />
241 <linearGradient
242 inkscape:collect="always"
243 xlink:href="#linearGradient6545"
244 id="linearGradient6823"
245 gradientUnits="userSpaceOnUse"
246 x1="101.75"
247 y1="16.75"
248 x2="84.875"
249 y2="23.5" />
250 <linearGradient
251 inkscape:collect="always"
252 xlink:href="#linearGradient6707"
253 id="linearGradient6825"
254 gradientUnits="userSpaceOnUse"
255 x1="101.76143"
256 y1="23.366385"
257 x2="84.3106"
258 y2="40.943737" />
259 <linearGradient
260 inkscape:collect="always"
261 xlink:href="#linearGradient6791"
262 id="linearGradient6827"
263 gradientUnits="userSpaceOnUse"
264 x1="99.686363"
265 y1="7.6145449"
266 x2="75.039978"
267 y2="16.260931" />
268 <linearGradient
269 inkscape:collect="always"
270 xlink:href="#linearGradient6525"
271 id="linearGradient6829"
272 gradientUnits="userSpaceOnUse"
273 x1="94"
274 y1="43.240894"
275 x2="94"
276 y2="40.766018" />
277 <linearGradient
278 inkscape:collect="always"
279 xlink:href="#linearGradient5437"
280 id="linearGradient6831"
281 gradientUnits="userSpaceOnUse"
282 gradientTransform="matrix(0.998223, 0, 0, 1.1272, 101.975, -16.992)"
283 x1="-5.7610831"
284 y1="40.212852"
285 x2="-12.691682"
286 y2="44.514675" />
287 <linearGradient
288 inkscape:collect="always"
289 xlink:href="#linearGradient6576"
290 id="linearGradient6833"
291 gradientUnits="userSpaceOnUse"
292 gradientTransform="matrix(0.707107, -0.707107, 0.707107, 0.707107, -58.4607, 73.5066)"
293 x1="93.686363"
294 y1="11.614545"
295 x2="96.311363"
296 y2="3.2395456" />
297 <linearGradient
298 inkscape:collect="always"
299 xlink:href="#linearGradient6696"
300 id="linearGradient6835"
301 gradientUnits="userSpaceOnUse"
302 x1="19.5"
303 y1="17.750786"
304 x2="19.5"
305 y2="7.8089299"
306 gradientTransform="translate(-1, -1)" />
307 <radialGradient
308 inkscape:collect="always"
309 xlink:href="#linearGradient6221"
310 id="radialGradient6837"
311 gradientUnits="userSpaceOnUse"
312 gradientTransform="matrix(0.982963, 0, 0, 0.508943, 0.37414, 16.8414)"
313 cx="21.96048"
314 cy="34.498356"
315 fx="21.96048"
316 fy="34.498356"
317 r="12.727922" />
318 <radialGradient
319 inkscape:collect="always"
320 xlink:href="#linearGradient6221"
321 id="radialGradient6839"
322 gradientUnits="userSpaceOnUse"
323 gradientTransform="matrix(0.982963, 0, 0, 0.508943, 0.37414, 16.8414)"
324 cx="21.96048"
325 cy="34.498356"
326 fx="21.96048"
327 fy="34.498356"
328 r="12.727922" />
329 <radialGradient
330 inkscape:collect="always"
331 xlink:href="#linearGradient6998"
332 id="radialGradient7004"
333 cx="24.32572"
334 cy="24.577896"
335 fx="24.32572"
336 fy="24.577896"
337 r="5.140625"
338 gradientUnits="userSpaceOnUse"
339 gradientTransform="matrix(0.749543, -0.749543, 1.85675, 1.85675, -40.4776, -2.57375)" />
340 <linearGradient
341 inkscape:collect="always"
342 xlink:href="#linearGradient5210"
343 id="linearGradient7047"
344 gradientUnits="userSpaceOnUse"
345 gradientTransform="matrix(0.821351, 0, 0, 1.00945, 61.6763, -5.25395)"
346 x1="-10.69499"
347 y1="41.105709"
348 x2="-1.0492263"
349 y2="41.137775" />
350 <linearGradient
351 inkscape:collect="always"
352 xlink:href="#linearGradient5443"
353 id="linearGradient7049"
354 gradientUnits="userSpaceOnUse"
355 x1="53.58926"
356 y1="32.856834"
357 x2="69.976395"
358 y2="44.960426" />
359 <linearGradient
360 inkscape:collect="always"
361 xlink:href="#linearGradient5440"
362 id="linearGradient7051"
363 gradientUnits="userSpaceOnUse"
364 gradientTransform="matrix(0.711824, -0.711824, 0.707107, 0.707107, 20.98, 22.2981)"
365 x1="24.518135"
366 y1="22.429499"
367 x2="25.910631"
368 y2="23.831284" />
369 <linearGradient
370 inkscape:collect="always"
371 xlink:href="#linearGradient2808"
372 id="linearGradient7053"
373 gradientUnits="userSpaceOnUse"
374 gradientTransform="matrix(0.581783, 0, 0, 0.678747, 57.5437, 10.5061)"
375 x1="-6.9787297"
376 y1="37.126617"
377 x2="-9.9043236"
378 y2="36.848248" />
379 <linearGradient
380 inkscape:collect="always"
381 xlink:href="#linearGradient5220"
382 id="linearGradient7055"
383 gradientUnits="userSpaceOnUse"
384 gradientTransform="matrix(0.488795, 0, 0, 0.678745, 59.0556, 10.4726)"
385 x1="-8.9375"
386 y1="40.375"
387 x2="-7"
388 y2="40.375" />
389 <linearGradient
390 inkscape:collect="always"
391 xlink:href="#linearGradient5402"
392 id="linearGradient7057"
393 gradientUnits="userSpaceOnUse"
394 x1="57.349243"
395 y1="37.496914"
396 x2="59.350101"
397 y2="37.505516" />
398 <linearGradient
399 inkscape:collect="always"
400 xlink:href="#linearGradient6424"
401 id="linearGradient7059"
402 gradientUnits="userSpaceOnUse"
403 x1="54.5"
404 y1="1.7340142"
405 x2="54.5"
406 y2="7.1931787" />
407 </defs>
408 <sodipodi:namedview
409 id="base"
410 pagecolor="#ffffff"
411 bordercolor="#666"
412 borderopacity="0.31372549"
413 inkscape:pageopacity="0.0"
414 inkscape:pageshadow="2"
415 inkscape:zoom="4"
416 inkscape:cx="40.725752"
417 inkscape:cy="9.5969463"
418 inkscape:current-layer="layer1"
419 showgrid="false"
420 inkscape:grid-bbox="false"
421 inkscape:document-units="px"
422 inkscape:window-width="897"
423 inkscape:window-height="718"
424 inkscape:window-x="88"
425 inkscape:window-y="25"
426 inkscape:showpageshadow="false"
427 inkscape:grid-points="false"
428 showguides="true"
429 inkscape:guide-bbox="true"
430 showborder="true"
431 inkscape:window-maximized="0">
432 <inkscape:grid
433 type="xygrid"
434 id="grid5999" />
435 <inkscape:grid
436 id="GridFromPre046Settings"
437 type="xygrid"
438 originx="0px"
439 originy="0px"
440 spacingx="0.5px"
441 spacingy="0.5px"
442 color="#0000ff"
443 empcolor="#0000ff"
444 opacity="0.2"
445 empopacity="0.4"
446 empspacing="2" />
447 </sodipodi:namedview>
448 <metadata
449 id="metadata4294">
450 <rdf:RDF>
451 <cc:Work
452 rdf:about="">
453 <dc:format>image/svg+xml</dc:format>
454 <dc:type
455 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
456 <dc:title></dc:title>
457 <dc:creator>
458 <cc:Agent>
459 <dc:title>Andreas Nilsson</dc:title>
460 </cc:Agent>
461 </dc:creator>
462 <dc:subject>
463 <rdf:Bag>
464 <rdf:li>category</rdf:li>
465 <rdf:li>system</rdf:li>
466 <rdf:li>preferences</rdf:li>
467 <rdf:li>settings</rdf:li>
468 <rdf:li>control center</rdf:li>
469 </rdf:Bag>
470 </dc:subject>
471 <dc:contributor>
472 <cc:Agent>
473 <dc:title>Jakub Steiner
474Ulisse Perusin</dc:title>
475 </cc:Agent>
476 </dc:contributor>
477 <cc:license
478 rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
479 </cc:Work>
480 <cc:License
481 rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
482 <cc:permits
483 rdf:resource="http://web.resource.org/cc/Reproduction" />
484 <cc:permits
485 rdf:resource="http://web.resource.org/cc/Distribution" />
486 <cc:requires
487 rdf:resource="http://web.resource.org/cc/Notice" />
488 <cc:permits
489 rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
490 <cc:requires
491 rdf:resource="http://web.resource.org/cc/ShareAlike" />
492 <cc:requires
493 rdf:resource="http://web.resource.org/cc/SourceCode" />
494 </cc:License>
495 <cc:Work
496 rdf:about="">
497 <dc:format>image/svg+xml</dc:format>
498 <dc:type
499 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
500 <dc:title>Preferences</dc:title>
501 <dc:creator>
502 <cc:Agent>
503 <dc:title>Andreas Nilsson</dc:title>
504 </cc:Agent>
505 </dc:creator>
506 <dc:contributor>
507 <cc:Agent>
508 <dc:title>Lapo Calamandrei, Ulisse Perusin, Jakub Steiner</dc:title>
509 </cc:Agent>
510 </dc:contributor>
511 <cc:license
512 rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
513 <dc:subject>
514 <rdf:Bag>
515 <rdf:li>category</rdf:li>
516 <rdf:li>system</rdf:li>
517 <rdf:li>preferences</rdf:li>
518 <rdf:li>settings</rdf:li>
519 <rdf:li>control center</rdf:li>
520 </rdf:Bag>
521 </dc:subject>
522 </cc:Work>
523 <cc:License
524 rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
525 <cc:permits
526 rdf:resource="http://web.resource.org/cc/Reproduction" />
527 <cc:permits
528 rdf:resource="http://web.resource.org/cc/Distribution" />
529 <cc:requires
530 rdf:resource="http://web.resource.org/cc/Notice" />
531 <cc:permits
532 rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
533 <cc:requires
534 rdf:resource="http://web.resource.org/cc/ShareAlike" />
535 <cc:requires
536 rdf:resource="http://web.resource.org/cc/SourceCode" />
537 </cc:License>
538 </rdf:RDF>
539 </metadata>
540 <g
541 id="layer1"
542 inkscape:label="Layer 1"
543 inkscape:groupmode="layer">
544 <path
545 sodipodi:type="arc"
546 style="opacity: 0.15; fill: url(#radialGradient6839) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;"
547 id="path5331"
548 sodipodi:cx="21.743534"
549 sodipodi:cy="34.299805"
550 sodipodi:rx="12.727922"
551 sodipodi:ry="6.3639612"
552 d="M 34.471457 34.299805 A 12.727922 6.3639612 0 1 1 9.0156116,34.299805 A 12.727922 6.3639612 0 1 1 34.471457 34.299805 z"
553 transform="matrix(0.903524, 0, 0, 0.624182, -8.14578, 20.563)" />
554 <path
555 sodipodi:type="arc"
556 style="opacity: 0.2; fill: url(#radialGradient6837) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;"
557 id="path6769"
558 sodipodi:cx="21.743534"
559 sodipodi:cy="34.299805"
560 sodipodi:rx="12.727922"
561 sodipodi:ry="6.3639612"
562 d="M 34.471457 34.299805 A 12.727922 6.3639612 0 1 1 9.0156116,34.299805 A 12.727922 6.3639612 0 1 1 34.471457 34.299805 z"
563 transform="matrix(0.353552, 0, 0, 0.235702, 2.81253, 34.4155)" />
564 <g
565 id="g6432"
566 transform="matrix(0.707107, 0.707107, -0.707107, 0.707107, 0.40392, -30.1174)">
567 <rect
568 transform="matrix(0.999992, -0.00408577, -0.0027049, 0.999996, 0, 0)"
569 ry="3.6587055"
570 rx="4.0743828"
571 y="27.726946"
572 x="50.588039"
573 height="17.996519"
574 width="8.9973431"
575 id="rect5288"
576 style="fill: url(#linearGradient7047) rgb(0, 0, 0); fill-opacity: 1; stroke: rgb(32, 74, 135); stroke-width: 1.00001; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;" />
577 <rect
578 transform="matrix(0.999987, -0.00504805, -0.00289929, 0.999996, 0, 0)"
579 ry="2.5968282"
580 rx="3.0795631"
581 y="28.815769"
582 x="51.574001"
583 height="15.960262"
584 width="7.0178103"
585 id="rect5292"
586 style="opacity: 0.5; fill: none; fill-opacity: 1; stroke: url(#linearGradient7049) rgb(0, 0, 0); stroke-width: 1.00002; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;" />
587 <path
588 sodipodi:nodetypes="ccccccccc"
589 id="path5286"
590 d="M 52.246834,0.49999993 L 52.604531,5.4548034 L 53.59322,7.162543 L 53.585977,28.755101 C 53.674365,30.257703 56.419206,30.336084 56.595983,28.745094 L 56.621068,7.1748733 L 57.628707,5.8770552 L 57.95997,0.51454306 C 57.95997,0.51454306 52.246834,0.49999993 52.246834,0.49999993 z "
591 style="fill: url(#linearGradient7051) rgb(0, 0, 0); fill-opacity: 1; stroke: rgb(136, 138, 133); stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;" />
592 <rect
593 style="opacity: 0.3; fill: url(#linearGradient7053) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;"
594 id="rect2804"
595 width="1.4200811"
596 height="10.612979"
597 x="51.725819"
598 y="32.225933"
599 rx="0.6661315"
600 ry="1.6036282"
601 transform="matrix(0.999991, -0.00429945, -0.00429945, 0.999991, 0, 0)" />
602 <rect
603 transform="matrix(0.999987, -0.00511738, -0.00361225, 0.999994, 0, 0)"
604 ry="1.6036212"
605 rx="1.3473127"
606 y="32.192463"
607 x="54.167618"
608 height="10.859921"
609 width="1.9551785"
610 id="rect5290"
611 style="opacity: 0.3; fill: url(#linearGradient7055) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;" />
612 <rect
613 style="opacity: 0.25; fill: url(#linearGradient7057) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;"
614 id="rect5398"
615 width="1.420082"
616 height="10.612979"
617 x="57.132236"
618 y="32.24918"
619 rx="0.6661315"
620 ry="1.603629"
621 transform="matrix(0.999991, -0.00429946, -0.00429946, 0.999991, 0, 0)" />
622 <path
623 sodipodi:nodetypes="ccccccccc"
624 id="path5450"
625 d="M 52.78125,1 L 53.09375,5.3125 L 54.03125,6.90625 C 54.073567,6.982692 54.095116,7.0688875 54.09375,7.15625 L 56.125,7.1875 C 56.120433,7.0757816 56.153441,6.9657558 56.21875,6.875 L 57.125,5.65625 L 57.4375,1 C 56.652768,1 53.565982,1 52.78125,1 z "
626 style="fill: url(#linearGradient7059) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-opacity: 1;" />
627 </g>
628 <path
629 style="opacity: 0.5; fill: url(#radialGradient7004) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;"
630 d="M 25.96875,19.46875 L 18.46875,26.96875 L 21.25,29.75 L 28.75,22.25 L 25.96875,19.46875 z "
631 id="path6010" />
632 <g
633 id="g6807"
634 transform="translate(-1)">
635 <path
636 transform="matrix(0.86424, 0, 0, 0.624182, 18.2084, 20.563)"
637 d="m 34.471457,34.299805 c 0,3.514718 -5.698485,6.363961 -12.727923,6.363961 -7.029437,0 -12.7279224,-2.849243 -12.7279224,-6.363961 0,-3.514719 5.6984854,-6.363962 12.7279224,-6.363962 7.029438,0 12.727923,2.849243 12.727923,6.363962 z"
638 sodipodi:ry="6.3639612"
639 sodipodi:rx="12.727922"
640 sodipodi:cy="34.299805"
641 sodipodi:cx="21.743534"
642 id="path6765"
643 style="opacity: 0.15; fill: url(#radialGradient6819) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;"
644 sodipodi:type="arc" />
645 <path
646 transform="matrix(0.353552, 0, 0, 0.235702, 29.8125, 34.4155)"
647 d="m 34.471457,34.299805 c 0,3.514718 -5.698485,6.363961 -12.727923,6.363961 -7.029437,0 -12.7279224,-2.849243 -12.7279224,-6.363961 0,-3.514719 5.6984854,-6.363962 12.7279224,-6.363962 7.029438,0 12.727923,2.849243 12.727923,6.363962 z"
648 sodipodi:ry="6.3639612"
649 sodipodi:rx="12.727922"
650 sodipodi:cy="34.299805"
651 sodipodi:cx="21.743534"
652 id="path6773"
653 style="opacity: 0.2; fill: url(#radialGradient6821) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1;"
654 sodipodi:type="arc" />
655 <g
656 transform="translate(-1.69798, 0.27077)"
657 id="g6739">
658 <g
659 id="g6553"
660 transform="matrix(0.707107, -0.707107, 0.707107, 0.707107, -57.4607, 74.5066)">
661 <path
662 sodipodi:nodetypes="csccsccscccccc"
663 id="path6491"
664 d="M 91,1.1482865 C 88.356663,2.3083638 86.5,4.9532014 86.5,8.0232865 C 86.5,10.894407 88.12854,13.387995 90.5,14.648286 L 90.5,43.414214 C 90.5,45.353214 92.061,46.914213 94,46.914214 C 95.939,46.914214 97.5,45.353213 97.5,43.414214 L 97.5,14.648286 C 99.87146,13.387995 101.5,10.894407 101.5,8.0232865 C 101.5,4.9532011 99.643337,2.3083637 97,1.1482865 L 97,7.0857865 L 95.28125,9.0857865 L 92.71875,9.0857865 L 91,7.0857865 L 91,1.1482865 z "
665 style="opacity: 1; fill: url(#linearGradient6823) rgb(0, 0, 0); fill-opacity: 1; stroke: url(#linearGradient6825) rgb(0, 0, 0); stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0.7; stroke-opacity: 1;" />
666 <path
667 sodipodi:nodetypes="cscccscccscccccccccc"
668 id="path6505"
669 d="M 89.96875,2.9920365 C 88.491165,4.1803215 87.53125,5.9777353 87.53125,8.0232865 C 87.53125,10.510038 88.917637,12.651991 90.96875,13.742036 C 91.312399,13.913596 91.530012,14.264195 91.53125,14.648286 L 91.53125,43.414214 C 91.53125,44.807674 92.606539,45.882963 94,45.882964 C 95.39346,45.882964 96.46875,44.807673 96.46875,43.414214 L 96.46875,14.648286 C 96.469988,14.264195 96.687601,13.913596 97.03125,13.742036 C 99.082363,12.651991 100.46875,10.510038 100.46875,8.0232865 C 100.46875,5.977735 99.508835,4.1803214 98.03125,2.9920365 L 98.03125,7.0857865 C 98.028519,7.3272888 97.939894,7.5599296 97.78125,7.7420365 L 96.0625,9.7420365 C 95.871073,9.9773335 95.584572,10.114853 95.28125,10.117036 L 92.71875,10.117036 C 92.415428,10.114853 92.128927,9.9773335 91.9375,9.7420365 L 90.21875,7.7420365 C 90.060106,7.5599296 89.971481,7.3272888 89.96875,7.0857865 L 89.96875,2.9920365 z "
670 style="opacity: 1; fill: none; fill-opacity: 1; stroke: url(#linearGradient6827) rgb(0, 0, 0); stroke-width: 1; stroke-linecap: round; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-dashoffset: 0.7; stroke-opacity: 1;" />
671 <path
672 transform="translate(-3.76269e-08, 0.914214)"
673 d="m 95.5,42.5 c 0,0.828427 -0.671573,1.5 -1.5,1.5 -0.828427,0 -1.5,-0.671573 -1.5,-1.5 0,-0.828427 0.671573,-1.5 1.5,-1.5 0.828427,0 1.5,0.671573 1.5,1.5 z"
674 sodipodi:ry="1.5"
675 sodipodi:rx="1.5"
676 sodipodi:cy="42.5"
677 sodipodi:cx="94"
678 id="path6507"
679 style="opacity: 1; fill: rgb(136, 138, 133); fill-opacity: 1; stroke: url(#linearGradient6829) rgb(0, 0, 0); stroke-width: 1; stroke-linecap: round; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0.7; stroke-opacity: 1;"
680 sodipodi:type="arc" />
681 <rect
682 style="opacity: 0.231061; fill: url(#linearGradient6831) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-opacity: 1; display: inline;"
683 id="rect6533"
684 width="3.9928944"
685 height="21.999802"
686 x="91.992836"
687 y="16.963778"
688 rx="1.7379364"
689 ry="1.7444341"
690 transform="matrix(1, 0.000386459, 0.000383586, 1, 0, 0)" />
691 </g>
692 <path
693 style="fill: none; fill-opacity: 1; stroke: url(#linearGradient6833) rgb(0, 0, 0); stroke-width: 1; stroke-linecap: round; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-dashoffset: 0.7; stroke-opacity: 1;"
694 d="M 13.973556,7.3037539 L 16.868274,10.198472 C 17.037111,10.371171 17.138946,10.598341 17.155536,10.839288 L 17.35441,13.468841 C 17.385431,13.770581 17.280086,14.070409 17.067148,14.286434 L 15.255187,16.098395 C 15.039162,16.311332 14.739334,16.416678 14.437595,16.385657 L 11.808041,16.186783 C 11.567094,16.170192 11.339925,16.068358 11.167226,15.899521 L 8.2725073,13.004802"
695 id="path6573"
696 sodipodi:nodetypes="cccccccccc" />
697 <path
698 style="opacity: 0.590517; fill: url(#linearGradient6835) rgb(0, 0, 0); fill-opacity: 1; stroke: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0.7; stroke-opacity: 1;"
699 d="M 14.71875,6.8125 C 14.129935,6.8140249 13.543329,6.8880281 12.96875,7.03125 L 16.5,10.5625 C 16.589624,10.650873 16.646088,10.749545 16.65625,10.875 L 16.875,13.5 C 16.888638,13.656013 16.830347,13.827626 16.71875,13.9375 L 15.125,15.5625 C 17.279079,16.073694 19.038866,17.020591 21.34375,15.78125 C 22.074648,13.392376 21.483569,10.671069 19.59375,8.78125 C 18.245921,7.4334204 16.485196,6.8079254 14.71875,6.8125 z M 8,12 C 7.6061401,13.580092 7.7314214,15.26324 8.4375,16.75 C 9.564272,16.068398 10.560695,15.675078 11.46875,15.46875 L 8,12 z "
700 id="path6651"
701 sodipodi:nodetypes="ccccccccsccccc" />
702 </g>
703 </g>
704 </g>
705</svg>
0706
=== added file 'sources/email.svg'
--- sources/email.svg 1970-01-01 00:00:00 +0000
+++ sources/email.svg 2009-12-23 09:03:14 +0000
@@ -0,0 +1,365 @@
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
4<svg
5 xmlns:dc="http://purl.org/dc/elements/1.1/"
6 xmlns:cc="http://creativecommons.org/ns#"
7 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8 xmlns:svg="http://www.w3.org/2000/svg"
9 xmlns="http://www.w3.org/2000/svg"
10 xmlns:xlink="http://www.w3.org/1999/xlink"
11 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13 sodipodi:docname="email.svg"
14 inkscape:version="0.47pre4 r22446"
15 sodipodi:version="0.32"
16 id="svg2"
17 height="48"
18 width="48"
19 inkscape:output_extension="org.inkscape.output.svg.inkscape"
20 version="1.0"
21 inkscape:export-filename="/home/doctormo/Desktop/email.png"
22 inkscape:export-xdpi="60"
23 inkscape:export-ydpi="60">
24 <defs
25 id="defs3">
26 <inkscape:perspective
27 sodipodi:type="inkscape:persp3d"
28 inkscape:vp_x="0 : 24 : 1"
29 inkscape:vp_y="0 : 1000 : 0"
30 inkscape:vp_z="48 : 24 : 1"
31 inkscape:persp3d-origin="24 : 16 : 1"
32 id="perspective52" />
33 <linearGradient
34 inkscape:collect="always"
35 id="linearGradient5060">
36 <stop
37 style="stop-color:black;stop-opacity:1;"
38 offset="0"
39 id="stop5062" />
40 <stop
41 style="stop-color:black;stop-opacity:0;"
42 offset="1"
43 id="stop5064" />
44 </linearGradient>
45 <linearGradient
46 id="linearGradient5048">
47 <stop
48 style="stop-color:black;stop-opacity:0;"
49 offset="0"
50 id="stop5050" />
51 <stop
52 id="stop5056"
53 offset="0.5"
54 style="stop-color:black;stop-opacity:1;" />
55 <stop
56 style="stop-color:black;stop-opacity:0;"
57 offset="1"
58 id="stop5052" />
59 </linearGradient>
60 <linearGradient
61 id="linearGradient6932"
62 inkscape:collect="always">
63 <stop
64 id="stop6934"
65 offset="0"
66 style="stop-color:#000000;stop-opacity:1;" />
67 <stop
68 id="stop6936"
69 offset="1"
70 style="stop-color:#000000;stop-opacity:0;" />
71 </linearGradient>
72 <linearGradient
73 id="linearGradient6945"
74 inkscape:collect="always">
75 <stop
76 id="stop6947"
77 offset="0"
78 style="stop-color:#ffffff;stop-opacity:1" />
79 <stop
80 id="stop6949"
81 offset="1"
82 style="stop-color:#d3d7cf;stop-opacity:1" />
83 </linearGradient>
84 <linearGradient
85 id="linearGradient6984"
86 inkscape:collect="always">
87 <stop
88 id="stop6986"
89 offset="0"
90 style="stop-color:#babdb6;stop-opacity:1;" />
91 <stop
92 id="stop6988"
93 offset="1"
94 style="stop-color:#babdb6;stop-opacity:0;" />
95 </linearGradient>
96 <linearGradient
97 inkscape:collect="always"
98 xlink:href="#linearGradient6984"
99 id="linearGradient4867"
100 gradientUnits="userSpaceOnUse"
101 gradientTransform="matrix(1.0547771,0,0,1.1085444,-1.2858005,-43.733935)"
102 x1="14.125"
103 y1="79.81311"
104 x2="14.125"
105 y2="76.624176" />
106 <radialGradient
107 inkscape:collect="always"
108 xlink:href="#linearGradient6945"
109 id="radialGradient4870"
110 gradientUnits="userSpaceOnUse"
111 gradientTransform="matrix(2.7512006,0,0,2.39991,-28.648174,-124.78848)"
112 cx="13.107393"
113 cy="61.48016"
114 fx="13.107393"
115 fy="61.48016"
116 r="18.5" />
117 <radialGradient
118 inkscape:collect="always"
119 xlink:href="#linearGradient6945"
120 id="radialGradient4892"
121 gradientUnits="userSpaceOnUse"
122 gradientTransform="matrix(-2.7512006,0,0,0.7364784,75.651099,-1.4630379)"
123 cx="19.371983"
124 cy="41.331757"
125 fx="19.371983"
126 fy="41.331757"
127 r="18.5" />
128 <linearGradient
129 inkscape:collect="always"
130 xlink:href="#linearGradient5048"
131 id="linearGradient4903"
132 gradientUnits="userSpaceOnUse"
133 gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
134 x1="302.85715"
135 y1="366.64789"
136 x2="302.85715"
137 y2="609.50507" />
138 <radialGradient
139 inkscape:collect="always"
140 xlink:href="#linearGradient5060"
141 id="radialGradient4905"
142 gradientUnits="userSpaceOnUse"
143 gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
144 cx="605.71429"
145 cy="486.64789"
146 fx="605.71429"
147 fy="486.64789"
148 r="117.14286" />
149 <radialGradient
150 inkscape:collect="always"
151 xlink:href="#linearGradient5060"
152 id="radialGradient4907"
153 gradientUnits="userSpaceOnUse"
154 gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
155 cx="605.71429"
156 cy="486.64789"
157 fx="605.71429"
158 fy="486.64789"
159 r="117.14286" />
160 <linearGradient
161 inkscape:collect="always"
162 xlink:href="#linearGradient6932"
163 id="linearGradient5499"
164 gradientUnits="userSpaceOnUse"
165 x1="32.625"
166 y1="68.4375"
167 x2="32.625"
168 y2="63.498707" />
169 </defs>
170 <sodipodi:namedview
171 inkscape:window-y="25"
172 inkscape:window-x="130"
173 inkscape:window-height="718"
174 inkscape:window-width="957"
175 inkscape:guide-bbox="true"
176 showguides="true"
177 showgrid="false"
178 inkscape:current-layer="layer1"
179 inkscape:document-units="px"
180 inkscape:cy="17.921325"
181 inkscape:cx="30.097753"
182 inkscape:zoom="1"
183 inkscape:pageshadow="2"
184 inkscape:pageopacity="0.0"
185 borderopacity="1"
186 bordercolor="#dedede"
187 pagecolor="#ffffff"
188 id="base"
189 width="48px"
190 height="48px"
191 borderlayer="true"
192 inkscape:showpageshadow="false"
193 inkscape:window-maximized="0">
194 <inkscape:grid
195 type="xygrid"
196 id="grid4899" />
197 </sodipodi:namedview>
198 <metadata
199 id="metadata4">
200 <rdf:RDF>
201 <cc:Work
202 rdf:about="">
203 <dc:format>image/svg+xml</dc:format>
204 <dc:type
205 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
206 <dc:title></dc:title>
207 <dc:date>2005-02-19</dc:date>
208 <dc:creator>
209 <cc:Agent>
210 <dc:title>Lapo Calamandrei</dc:title>
211 </cc:Agent>
212 </dc:creator>
213 <dc:description>Mail emblem</dc:description>
214 <dc:contributor>
215 <cc:Agent>
216 <dc:title>Jakub Steiner
217Andreas Nilsson</dc:title>
218 </cc:Agent>
219 </dc:contributor>
220 <cc:license
221 rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
222 <dc:subject>
223 <rdf:Bag>
224 <rdf:li>mail</rdf:li>
225 <rdf:li>message</rdf:li>
226 <rdf:li>e-mail</rdf:li>
227 </rdf:Bag>
228 </dc:subject>
229 <dc:rights>
230 <cc:Agent>
231 <dc:title>Lapo Calamandrei, Andreas Nilsson, Novell Inc.</dc:title>
232 </cc:Agent>
233 </dc:rights>
234 </cc:Work>
235 <cc:License
236 rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
237 <cc:permits
238 rdf:resource="http://web.resource.org/cc/Reproduction" />
239 <cc:permits
240 rdf:resource="http://web.resource.org/cc/Distribution" />
241 <cc:requires
242 rdf:resource="http://web.resource.org/cc/Notice" />
243 <cc:permits
244 rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
245 <cc:requires
246 rdf:resource="http://web.resource.org/cc/ShareAlike" />
247 <cc:requires
248 rdf:resource="http://web.resource.org/cc/SourceCode" />
249 </cc:License>
250 </rdf:RDF>
251 </metadata>
252 <g
253 id="layer1"
254 inkscape:groupmode="layer"
255 inkscape:label="Layer 1">
256 <g
257 style="opacity:0.7;display:inline"
258 id="g6055"
259 transform="matrix(2.2855337e-2,0,0,1.7811354e-2,43.828349,41.602703)">
260 <rect
261 y="-150.69685"
262 x="-1559.2523"
263 height="478.35718"
264 width="1339.6335"
265 id="rect6057"
266 style="opacity:0.39195981;color:#000000;fill:url(#linearGradient4903);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
267 <path
268 sodipodi:nodetypes="cccc"
269 id="path6059"
270 d="M -219.61876,-150.68038 C -219.61876,-150.68038 -219.61876,327.65041 -219.61876,327.65041 C -76.744594,328.55086 125.78146,220.48075 125.78138,88.454235 C 125.78138,-43.572302 -33.655436,-150.68036 -219.61876,-150.68038 z"
271 style="opacity:0.40206185;color:#000000;fill:url(#radialGradient4905);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
272 <path
273 style="opacity:0.40206185;color:#000000;fill:url(#radialGradient4907);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
274 d="M -1559.2523,-150.68038 C -1559.2523,-150.68038 -1559.2523,327.65041 -1559.2523,327.65041 C -1702.1265,328.55086 -1904.6525,220.48075 -1904.6525,88.454235 C -1904.6525,-43.572302 -1745.2157,-150.68036 -1559.2523,-150.68038 z"
275 id="path6061"
276 sodipodi:nodetypes="cccc" />
277 </g>
278 <path
279 style="fill:url(#radialGradient4892);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999987999999995;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992000000000;stroke-opacity:0.99236641999999997"
280 d="M 23.501461,2.3751864 C 17.676241,2.3751864 17.172799,3.4805995 16.118021,4.5860168 L 4.5154734,16.745584 L 4.5154734,18.300075 L 4.5154734,18.507341 L 4.5154734,42.826475 C 4.5154734,43.69254 5.1723632,44.380967 5.9987537,44.380966 L 41.004168,44.380966 C 41.830559,44.380966 42.487448,43.692539 42.487448,42.826475 L 42.487448,18.507341 L 42.487448,18.300075 L 42.487448,16.745584 L 30.884901,4.5860168 C 29.830123,3.4806017 29.302735,2.3751842 23.501461,2.3751864 z"
281 id="rect5931" />
282 <path
283 style="opacity:1;color:#000000;fill:#f2f2f0;fill-opacity:1;fill-rule:evenodd;stroke:#aeaeae;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
284 d="M 8.3085047,25.792 L 34.029514,14.743457 L 40.305087,30.034641 L 11.667262,35.42633 L 8.3085047,25.792 z"
285 id="path4909" />
286 <path
287 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642"
288 d="M 42.487448,19.612755 L 42.487448,16.787167 L 30.884901,4.8039527 C 29.830123,3.7145696 29.302735,2.6251842 23.501461,2.6251864 C 17.676241,2.6251864 17.172799,3.7145674 16.118022,4.8039527 L 4.5154734,16.787167 L 4.5154734,19.612755"
289 id="path7161"
290 sodipodi:nodetypes="ccccccc" />
291 <path
292 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
293 d="M 5.13251,21.443598 L 15.661218,34.259506 C 16.152156,34.778168 16.638266,35.458613 17.721182,35.917629 C 18.804098,36.376645 20.424347,36.643057 23.345212,36.643057 C 26.25433,36.643059 27.884085,36.376203 28.969243,35.917629 C 30.0544,35.459055 30.53687,34.779645 31.029207,34.259506 L 41.525217,21.581775 L 31.029207,32.601383 C 30.53687,33.121522 30.0544,33.800932 28.969243,34.259506 C 27.884085,34.71808 26.25433,34.984936 23.345212,34.984935 C 20.424347,34.984935 18.804098,34.718522 17.721182,34.259506 C 16.638266,33.80049 16.152156,33.120045 15.661218,32.601383 L 5.13251,21.443598 z"
294 id="path7112"
295 sodipodi:nodetypes="ccssscccssscc" />
296 <path
297 sodipodi:type="inkscape:offset"
298 inkscape:radius="0.5"
299 inkscape:original="M 6.90625 55.5 C 6.1227756 55.5 5.5 56.122774 5.5 56.90625 L 5.5 58.5 L 16.5 69.5 C 17.5 70.500002 17.977297 71.5 23.5 71.5 C 29 71.500002 29.5 70.5 30.5 69.5 L 41.5 58.5 L 41.5 56.90625 C 41.5 56.122776 40.877226 55.5 40.09375 55.5 L 6.90625 55.5 z "
300 style="opacity:0.16791047000000001;fill:url(#linearGradient5499);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
301 id="path6930"
302 d="M 6.90625,55 C 5.8578131,55 5,55.857811 5,56.90625 L 5,58.5 C 5.0051575,58.6306 5.0612439,58.75399 5.15625,58.84375 L 16.15625,69.84375 C 16.62545,70.312951 17.090035,70.928507 18.125,71.34375 C 19.159965,71.758993 20.70847,72 23.5,72 C 26.280303,72.000001 27.837893,71.758593 28.875,71.34375 C 29.912107,70.928907 30.373213,70.314287 30.84375,69.84375 L 41.84375,58.84375 C 41.938756,58.75399 41.994842,58.6306 42,58.5 L 42,56.90625 C 42,55.857813 41.142189,55 40.09375,55 L 6.90625,55 z"
303 transform="matrix(1.0463312,0,0,1.1054152,-1.3060708,-44.54246)" />
304 <path
305 style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
306 d="M 33.6875,15.4375 L 9.5,25.75 L 10,26.3125 L 33.25,17.0625 L 37.25,26.0625 L 37.8125,25.5 L 33.6875,15.4375 z"
307 id="path5492" />
308 <path
309 style="opacity:1;fill:#abaca9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
310 d="M 5.13251,21.443598 L 15.661218,31.298676 C 16.152156,31.817337 16.638266,32.497782 17.721182,32.956798 C 18.804098,33.415814 20.424347,33.682227 23.345212,33.682227 C 26.25433,33.682228 27.884085,33.415372 28.969243,32.956798 C 30.0544,32.498225 30.53687,31.818814 31.029207,31.298676 L 41.525217,21.581775 L 31.029207,32.601383 C 30.53687,33.121522 30.0544,33.800932 28.969243,34.259506 C 27.884085,34.71808 26.25433,34.984936 23.345212,34.984935 C 20.424347,34.984935 18.804098,34.718522 17.721182,34.259506 C 16.638266,33.80049 16.152156,33.120045 15.661218,32.601383 L 5.13251,21.443598 z"
311 id="path7128"
312 sodipodi:nodetypes="ccssscccssscc" />
313 <path
314 style="fill:url(#radialGradient4870);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
315 d="M 23.501461,30.010568 C 18.227575,30.010568 17.172799,31.092185 16.118021,32.173804 L 4.9439766,43.632199 C 5.2135977,43.90868 5.5855575,44.071605 5.9987537,44.071607 L 41.004168,44.071607 C 41.417363,44.071607 41.789323,43.90868 42.058945,43.632199 L 30.884901,32.173804 C 29.830123,31.092185 28.775346,30.010568 23.501461,30.010568 z"
316 id="path6902" />
317 <path
318 style="opacity:0.55597014;fill:url(#linearGradient4867);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642"
319 d="M 5.042862,39.302964 L 5.042862,42.836449 C 5.042862,43.414008 5.4492052,43.841067 5.9987537,43.841067 L 41.004168,43.841067 C 41.553715,43.841067 41.960059,43.414008 41.960059,42.836449 L 41.960059,39.302964 L 5.042862,39.302964 z"
320 id="path6980"
321 sodipodi:nodetypes="ccccccc" />
322 <path
323 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642"
324 d="M 4.5154734,18.507341 L 4.5154734,42.984035 C 4.5154734,43.855712 5.1723633,44.548599 5.9987537,44.548597 L 41.004168,44.548597 C 41.830559,44.548597 42.487448,43.855711 42.487448,42.984035 L 42.487448,18.507341"
325 id="path7174"
326 sodipodi:nodetypes="cccccc" />
327 <path
328 style="opacity:1;color:#000000;fill:#e8eae6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
329 d="M 41.807689,21.410272 L 32.095694,32.864146 L 41.807689,43.330583 L 41.807689,21.410272 z"
330 id="path5488"
331 sodipodi:nodetypes="cccc" />
332 <path
333 id="path5490"
334 d="M 5.100505,21.597772 L 15,33.176646 L 5.100505,43.830583 L 5.100505,21.597772 z"
335 style="opacity:1;color:#000000;fill:#e8eae6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
336 sodipodi:nodetypes="cccc" />
337 <g
338 id="g6320"
339 transform="matrix(1.0547769,0,0,1.1115624,-61.671781,-2.8573157)">
340 <path
341 sodipodi:nodetypes="ccssscccccc"
342 id="path7039"
343 d="M 63.25,41.970971 L 73.40625,30.627221 C 73.875623,30.157847 74.3406,29.542237 75.375,29.127221 C 76.4094,28.712205 77.95864,28.470971 80.75,28.470971 C 83.530132,28.47097 85.088454,28.712602 86.125,29.127221 C 87.161546,29.54184 87.623047,30.156518 88.09375,30.627221 L 98.25,41.970971 L 88.103408,32.175118 C 86.059401,30.205524 83.585161,29.902961 80.759658,30.018868 C 78.088808,30.068408 75.295355,30.018538 73.415908,32.175118 L 63.25,41.970971 z"
344 style="fill:#abaca9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998000000003;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
345 <path
346 sodipodi:nodetypes="ccccccccc"
347 id="path7049"
348 d="M 63.25,41.99247 L 73.415908,33.404596 C 75.295355,31.286609 78.088808,31.335586 80.759658,31.286933 C 83.585161,31.1731 86.059401,31.470249 88.103408,33.404596 L 98.25,41.99247 L 88.09375,31.833825 C 86.049743,29.899478 83.575503,29.60233 80.75,29.716162 C 78.07915,29.764816 75.285697,29.715838 73.40625,31.833825 L 63.25,41.99247 z"
349 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
350 </g>
351 <path
352 style="opacity:0.594697;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642"
353 d="M 5.9526019,42.29695 C 5.9526019,42.837853 6.1023378,43.137859 6.3723002,43.137856 L 40.658427,43.137856 C 40.92839,43.137856 41.078125,42.83785 41.078125,42.29695"
354 id="path7293"
355 sodipodi:nodetypes="cccc" />
356 <path
357 sodipodi:type="inkscape:offset"
358 inkscape:radius="-0.98534405"
359 inkscape:original="M 24.5 4.5 C 18.977297 4.5 18.5 5.499998 17.5 6.5 L 6.5 17.5 L 6.5 18.90625 L 6.5 19.09375 L 6.5 41.09375 C 6.5 41.877225 7.1227756 42.500002 7.90625 42.5 L 41.09375 42.5 C 41.877224 42.5 42.5 41.877224 42.5 41.09375 L 42.5 19.09375 L 42.5 18.90625 L 42.5 17.5 L 31.5 6.5 C 30.5 5.5 30 4.499998 24.5 4.5 z "
360 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.92304754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642"
361 id="path6064"
362 d="M 24.5,5.5 C 21.798121,5.5 20.393246,5.7355566 19.65625,6.03125 C 18.919254,6.3269434 18.748198,6.6268011 18.1875,7.1875 L 7.5,17.875 L 7.5,18.90625 L 7.5,19.09375 L 7.5,41.09375 C 7.5,41.355066 7.6449379,41.500001 7.90625,41.5 L 41.09375,41.5 C 41.355064,41.5 41.5,41.355064 41.5,41.09375 L 41.5,19.09375 L 41.5,18.90625 L 41.5,17.875 L 30.8125,7.1875 C 30.254438,6.6294378 30.053706,6.3277326 29.3125,6.03125 C 28.571294,5.7347674 27.190282,5.499999 24.5,5.5 z"
363 transform="matrix(1.0606772,0,0,1.1065437,-2.5163795,-2.4843841)" />
364 </g>
365</svg>
0366
=== added file 'sources/forum.svg'
--- sources/forum.svg 1970-01-01 00:00:00 +0000
+++ sources/forum.svg 2009-12-23 09:03:14 +0000
@@ -0,0 +1,369 @@
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
4<svg
5 xmlns:dc="http://purl.org/dc/elements/1.1/"
6 xmlns:cc="http://creativecommons.org/ns#"
7 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8 xmlns:svg="http://www.w3.org/2000/svg"
9 xmlns="http://www.w3.org/2000/svg"
10 xmlns:xlink="http://www.w3.org/1999/xlink"
11 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13 width="48px"
14 height="48px"
15 id="svg1307"
16 sodipodi:version="0.32"
17 inkscape:version="0.47pre4 r22446"
18 sodipodi:docname="forum.svg"
19 version="1.1"
20 inkscape:export-filename="/home/doctormo/Desktop/forum.png"
21 inkscape:export-xdpi="60"
22 inkscape:export-ydpi="60">
23 <defs
24 id="defs1309">
25 <inkscape:perspective
26 sodipodi:type="inkscape:persp3d"
27 inkscape:vp_x="0 : 24 : 1"
28 inkscape:vp_y="0 : 1000 : 0"
29 inkscape:vp_z="48 : 24 : 1"
30 inkscape:persp3d-origin="24 : 16 : 1"
31 id="perspective56" />
32 <linearGradient
33 id="linearGradient4966">
34 <stop
35 style="stop-color:#2e3436;stop-opacity:1;"
36 offset="0"
37 id="stop4968" />
38 <stop
39 style="stop-color:#2e3436;stop-opacity:0;"
40 offset="1"
41 id="stop4970" />
42 </linearGradient>
43 <linearGradient
44 inkscape:collect="always"
45 id="linearGradient4936">
46 <stop
47 style="stop-color:#eeeeec"
48 offset="0"
49 id="stop4938" />
50 <stop
51 style="stop-color:#d3d7cf"
52 offset="1"
53 id="stop4940" />
54 </linearGradient>
55 <linearGradient
56 id="linearGradient2994">
57 <stop
58 style="stop-color:#000000;stop-opacity:1;"
59 offset="0"
60 id="stop2996" />
61 <stop
62 style="stop-color:#c9c9c9;stop-opacity:1;"
63 offset="1"
64 id="stop2998" />
65 </linearGradient>
66 <linearGradient
67 inkscape:collect="always"
68 xlink:href="#linearGradient2994"
69 id="linearGradient2326"
70 gradientUnits="userSpaceOnUse"
71 gradientTransform="matrix(0.866025,-0.5,0.5,0.866025,-7.891136,19.22495)"
72 x1="25.71875"
73 y1="31.046875"
74 x2="25.514589"
75 y2="30.703125" />
76 <linearGradient
77 inkscape:collect="always"
78 id="linearGradient2984">
79 <stop
80 style="stop-color:#e7e2b8;stop-opacity:1;"
81 offset="0"
82 id="stop2986" />
83 <stop
84 style="stop-color:#e7e2b8;stop-opacity:0;"
85 offset="1"
86 id="stop2988" />
87 </linearGradient>
88 <radialGradient
89 inkscape:collect="always"
90 xlink:href="#linearGradient2984"
91 id="radialGradient2324"
92 gradientUnits="userSpaceOnUse"
93 gradientTransform="matrix(2.531882,-1.461783,1.014859,1.757786,-70.15912,22.83318)"
94 cx="29.053354"
95 cy="27.640751"
96 fx="29.053354"
97 fy="27.640751"
98 r="3.2408544" />
99 <linearGradient
100 id="linearGradient2974">
101 <stop
102 style="stop-color:#c1c1c1;stop-opacity:1;"
103 offset="0"
104 id="stop2976" />
105 <stop
106 style="stop-color:#acacac;stop-opacity:1;"
107 offset="1"
108 id="stop2978" />
109 </linearGradient>
110 <linearGradient
111 inkscape:collect="always"
112 xlink:href="#linearGradient2974"
113 id="linearGradient2322"
114 gradientUnits="userSpaceOnUse"
115 gradientTransform="matrix(0.866025,-0.5,0.5,0.866025,-7.818316,19.03857)"
116 x1="46"
117 y1="19.8125"
118 x2="47.6875"
119 y2="22.625" />
120 <linearGradient
121 id="linearGradient2966">
122 <stop
123 style="stop-color:#ffd1d1;stop-opacity:1;"
124 offset="0"
125 id="stop2968" />
126 <stop
127 id="stop3006"
128 offset="0.5"
129 style="stop-color:#ff1d1d;stop-opacity:1;" />
130 <stop
131 style="stop-color:#6f0000;stop-opacity:1;"
132 offset="1"
133 id="stop2970" />
134 </linearGradient>
135 <linearGradient
136 inkscape:collect="always"
137 xlink:href="#linearGradient2966"
138 id="linearGradient2320"
139 gradientUnits="userSpaceOnUse"
140 gradientTransform="matrix(0.866025,-0.5,0.5,0.866025,-7.818316,19.03857)"
141 x1="48.90625"
142 y1="17.376184"
143 x2="50.988335"
144 y2="22.250591" />
145 <linearGradient
146 inkscape:collect="always"
147 xlink:href="#linearGradient4936"
148 id="linearGradient4942"
149 x1="20.07143"
150 y1="7.7857146"
151 x2="20.214283"
152 y2="35.92857"
153 gradientUnits="userSpaceOnUse"
154 gradientTransform="translate(4.5714286,-0.71428571)" />
155 <radialGradient
156 inkscape:collect="always"
157 xlink:href="#linearGradient4966"
158 id="radialGradient4972"
159 cx="23.223421"
160 cy="43.927216"
161 fx="23.223421"
162 fy="43.927216"
163 r="20.708128"
164 gradientTransform="matrix(1.010133,-0.00789044,0.00156538,0.101415,-0.293998,39.78877)"
165 gradientUnits="userSpaceOnUse" />
166 <radialGradient
167 inkscape:collect="always"
168 xlink:href="#linearGradient4966"
169 id="radialGradient4976"
170 gradientUnits="userSpaceOnUse"
171 gradientTransform="matrix(1.010133,-7.890436e-3,1.565376e-3,0.101415,-0.293998,39.78877)"
172 cx="23.223421"
173 cy="43.927216"
174 fx="23.223421"
175 fy="43.927216"
176 r="20.708128" />
177 </defs>
178 <sodipodi:namedview
179 id="base"
180 pagecolor="#ffffff"
181 bordercolor="#666666"
182 borderopacity="1.0"
183 inkscape:pageopacity="0.0"
184 inkscape:pageshadow="2"
185 inkscape:zoom="7"
186 inkscape:cx="36.905448"
187 inkscape:cy="24.865478"
188 inkscape:current-layer="layer1"
189 showgrid="false"
190 inkscape:grid-bbox="true"
191 inkscape:document-units="px"
192 stroke="#eeeeec"
193 fill="#2e3436"
194 showguides="true"
195 inkscape:guide-bbox="true"
196 inkscape:window-width="1270"
197 inkscape:window-height="718"
198 inkscape:window-x="0"
199 inkscape:window-y="25"
200 inkscape:window-maximized="0" />
201 <metadata
202 id="metadata1312">
203 <rdf:RDF>
204 <cc:Work
205 rdf:about="">
206 <dc:format>image/svg+xml</dc:format>
207 <dc:type
208 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
209 <dc:title></dc:title>
210 <dc:date>April 2006</dc:date>
211 <dc:creator>
212 <cc:Agent>
213 <dc:title>Andreas Nilsson</dc:title>
214 </cc:Agent>
215 </dc:creator>
216 <dc:publisher>
217 <cc:Agent>
218 <dc:title />
219 </cc:Agent>
220 </dc:publisher>
221 <dc:source>http://tango-project.org</dc:source>
222 <dc:subject>
223 <rdf:Bag>
224 <rdf:li>menu-editor</rdf:li>
225 <rdf:li>menu</rdf:li>
226 </rdf:Bag>
227 </dc:subject>
228 <cc:license
229 rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
230 </cc:Work>
231 <cc:License
232 rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
233 <cc:permits
234 rdf:resource="http://web.resource.org/cc/Reproduction" />
235 <cc:permits
236 rdf:resource="http://web.resource.org/cc/Distribution" />
237 <cc:requires
238 rdf:resource="http://web.resource.org/cc/Notice" />
239 <cc:permits
240 rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
241 <cc:requires
242 rdf:resource="http://web.resource.org/cc/ShareAlike" />
243 <cc:requires
244 rdf:resource="http://web.resource.org/cc/SourceCode" />
245 </cc:License>
246 </rdf:RDF>
247 </metadata>
248 <g
249 id="layer1"
250 inkscape:label="Layer 1"
251 inkscape:groupmode="layer">
252 <path
253 sodipodi:type="arc"
254 style="opacity:0.7;fill:url(#radialGradient4972);fill-opacity:1;stroke:none"
255 id="path4956"
256 sodipodi:cx="23.233509"
257 sodipodi:cy="44.060406"
258 sodipodi:rx="20.708128"
259 sodipodi:ry="2.5253813"
260 d="m 43.941637,44.060406 a 20.708128,2.5253813 0 1 1 -41.4162559,0 20.708128,2.5253813 0 1 1 41.4162559,0 z"
261 transform="matrix(0.893369,0,0,1.187939,3.3153316,-9.0553687)" />
262 <rect
263 style="fill:url(#linearGradient4942);fill-opacity:1;stroke:#888a85;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
264 id="rect1315"
265 width="27.979967"
266 height="40.984352"
267 x="10.081442"
268 y="2.793535" />
269 <rect
270 style="fill:#729fcf;fill-opacity:1;stroke:#3465a4;stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
271 id="rect1321"
272 width="26.036121"
273 height="7.0718627"
274 x="11.057729"
275 y="11.751338" />
276 <path
277 sodipodi:type="arc"
278 style="fill:#2e3436;fill-opacity:1;stroke:none"
279 id="path1339"
280 sodipodi:cx="8.4642859"
281 sodipodi:cy="16.678572"
282 sodipodi:rx="1.3928572"
283 sodipodi:ry="1.3928572"
284 d="m 9.857143,16.678572 a 1.3928572,1.3928572 0 1 1 -2.7857143,0 1.3928572,1.3928572 0 1 1 2.7857143,0 z"
285 transform="matrix(1.401969,0,0,1.401971,2.6575046,-16.049906)" />
286 <path
287 sodipodi:type="arc"
288 style="fill:#2e3436;fill-opacity:1;stroke:none"
289 id="path2214"
290 sodipodi:cx="8.4642859"
291 sodipodi:cy="16.678572"
292 sodipodi:rx="1.3928572"
293 sodipodi:ry="1.3928572"
294 d="m 9.857143,16.678572 a 1.3928572,1.3928572 0 1 1 -2.7857143,0 1.3928572,1.3928572 0 1 1 2.7857143,0 z"
295 transform="matrix(1.401969,0,0,1.401971,2.6575046,-8.0499047)" />
296 <path
297 sodipodi:type="arc"
298 style="fill:#2e3436;fill-opacity:1;stroke:none"
299 id="path2218"
300 sodipodi:cx="8.4642859"
301 sodipodi:cy="16.678572"
302 sodipodi:rx="1.3928572"
303 sodipodi:ry="1.3928572"
304 d="m 9.857143,16.678572 a 1.3928572,1.3928572 0 1 1 -2.7857143,0 1.3928572,1.3928572 0 1 1 2.7857143,0 z"
305 transform="matrix(1.401969,0,0,1.401971,2.6575046,-0.14441371)" />
306 <path
307 sodipodi:type="arc"
308 style="fill:#2e3436;fill-opacity:1;stroke:none"
309 id="path2220"
310 sodipodi:cx="8.4642859"
311 sodipodi:cy="16.678572"
312 sodipodi:rx="1.3928572"
313 sodipodi:ry="1.3928572"
314 d="m 9.857143,16.678572 a 1.3928572,1.3928572 0 1 1 -2.7857143,0 1.3928572,1.3928572 0 1 1 2.7857143,0 z"
315 transform="matrix(1.401969,0,0,1.401971,2.6575046,6.8555863)" />
316 <path
317 sodipodi:type="arc"
318 style="fill:#2e3436;fill-opacity:1;stroke:none"
319 id="path2222"
320 sodipodi:cx="8.4642859"
321 sodipodi:cy="16.678572"
322 sodipodi:rx="1.3928572"
323 sodipodi:ry="1.3928572"
324 d="m 9.857143,16.678572 a 1.3928572,1.3928572 0 1 1 -2.7857143,0 1.3928572,1.3928572 0 1 1 2.7857143,0 z"
325 transform="matrix(1.401969,0,0,1.401971,2.6575046,14.855584)" />
326 <rect
327 style="opacity:0.5;fill:none;stroke:#ffffff;stroke-width:1.00000107;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
328 id="rect2226"
329 width="25.963591"
330 height="38.975361"
331 x="11.093474"
332 y="3.7953513" />
333 <rect
334 style="opacity:0.3;fill:#000000;fill-opacity:1;stroke:none"
335 id="rect4952"
336 width="18"
337 height="2"
338 x="17.571428"
339 y="29.285715" />
340 <rect
341 style="opacity:0.3;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
342 id="rect4954"
343 width="11.980886"
344 height="2.9486477"
345 x="18.071358"
346 y="36.79998" />
347 <rect
348 style="opacity:0.3;fill:#000000;fill-opacity:1;stroke:none"
349 id="rect4946"
350 width="18"
351 height="2"
352 x="17.571428"
353 y="6.2857141" />
354 <rect
355 style="opacity:0.3;fill:#000000;fill-opacity:1;stroke:none"
356 id="rect4948"
357 width="18"
358 height="2"
359 x="17.571428"
360 y="14.285714" />
361 <rect
362 style="opacity:0.3;fill:#000000;fill-opacity:1;stroke:none"
363 id="rect4950"
364 width="18"
365 height="2"
366 x="17.571428"
367 y="22.285715" />
368 </g>
369</svg>
0370
=== added file 'sources/irc.svg'
--- sources/irc.svg 1970-01-01 00:00:00 +0000
+++ sources/irc.svg 2009-12-23 09:03:14 +0000
@@ -0,0 +1,252 @@
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
4<svg
5 xmlns:dc="http://purl.org/dc/elements/1.1/"
6 xmlns:cc="http://creativecommons.org/ns#"
7 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8 xmlns:svg="http://www.w3.org/2000/svg"
9 xmlns="http://www.w3.org/2000/svg"
10 xmlns:xlink="http://www.w3.org/1999/xlink"
11 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13 width="48"
14 height="48"
15 id="svg2"
16 sodipodi:version="0.32"
17 inkscape:version="0.47pre4 r22446"
18 version="1.0"
19 sodipodi:docname="help-faq.svg"
20 inkscape:output_extension="org.inkscape.output.svg.inkscape"
21 inkscape:export-filename="/home/doctormo/Desktop/irc.png"
22 inkscape:export-xdpi="60"
23 inkscape:export-ydpi="60">
24 <defs
25 id="defs4">
26 <inkscape:perspective
27 sodipodi:type="inkscape:persp3d"
28 inkscape:vp_x="0 : 24 : 1"
29 inkscape:vp_y="0 : 1000 : 0"
30 inkscape:vp_z="48 : 24 : 1"
31 inkscape:persp3d-origin="24 : 16 : 1"
32 id="perspective40" />
33 <linearGradient
34 inkscape:collect="always"
35 id="linearGradient3100">
36 <stop
37 style="stop-color:#eeeeec;stop-opacity:1"
38 offset="0"
39 id="stop3102" />
40 <stop
41 style="stop-color:white;stop-opacity:1"
42 offset="1"
43 id="stop3104" />
44 </linearGradient>
45 <linearGradient
46 inkscape:collect="always"
47 id="linearGradient3075">
48 <stop
49 style="stop-color:black;stop-opacity:1;"
50 offset="0"
51 id="stop3077" />
52 <stop
53 style="stop-color:black;stop-opacity:0;"
54 offset="1"
55 id="stop3079" />
56 </linearGradient>
57 <linearGradient
58 inkscape:collect="always"
59 xlink:href="#linearGradient3100"
60 id="linearGradient3255"
61 gradientUnits="userSpaceOnUse"
62 gradientTransform="matrix(2.083509,0,0,1.903226,-0.794382,15.54839)"
63 x1="6.2186141"
64 y1="4.0344343"
65 x2="6.2186141"
66 y2="9.68291" />
67 <radialGradient
68 inkscape:collect="always"
69 xlink:href="#linearGradient3075"
70 id="radialGradient3271"
71 gradientUnits="userSpaceOnUse"
72 gradientTransform="matrix(1,0,0,0.554113,0,8.025974)"
73 cx="7.21875"
74 cy="18"
75 fx="7.21875"
76 fy="18"
77 r="7.21875" />
78 <radialGradient
79 inkscape:collect="always"
80 xlink:href="#linearGradient3075"
81 id="radialGradient3292"
82 gradientUnits="userSpaceOnUse"
83 gradientTransform="matrix(1,0,0,0.554113,0,8.025974)"
84 cx="7.21875"
85 cy="18"
86 fx="7.21875"
87 fy="18"
88 r="7.21875" />
89 <linearGradient
90 inkscape:collect="always"
91 xlink:href="#linearGradient3100"
92 id="linearGradient3294"
93 gradientUnits="userSpaceOnUse"
94 gradientTransform="matrix(2.083509,0,0,1.903226,-0.794382,15.54839)"
95 x1="6.2186141"
96 y1="4.0344343"
97 x2="6.2186141"
98 y2="9.68291" />
99 <radialGradient
100 inkscape:collect="always"
101 xlink:href="#linearGradient3075"
102 id="radialGradient3308"
103 gradientUnits="userSpaceOnUse"
104 gradientTransform="matrix(1,0,0,0.554113,0,8.025974)"
105 cx="7.21875"
106 cy="18"
107 fx="7.21875"
108 fy="18"
109 r="7.21875" />
110 <linearGradient
111 inkscape:collect="always"
112 xlink:href="#linearGradient3100"
113 id="linearGradient3310"
114 gradientUnits="userSpaceOnUse"
115 gradientTransform="matrix(2.083509,0,0,1.903226,-0.794382,15.54839)"
116 x1="6.2186141"
117 y1="4.0344343"
118 x2="6.2186141"
119 y2="9.68291" />
120 </defs>
121 <sodipodi:namedview
122 id="base"
123 pagecolor="#ffffff"
124 bordercolor="#afafaf"
125 borderopacity="1"
126 inkscape:pageopacity="0.0"
127 inkscape:pageshadow="2"
128 inkscape:zoom="4"
129 inkscape:cx="34.281069"
130 inkscape:cy="32.746591"
131 inkscape:document-units="px"
132 inkscape:current-layer="layer1"
133 width="48px"
134 height="48px"
135 inkscape:showpageshadow="false"
136 borderlayer="true"
137 inkscape:window-width="1051"
138 inkscape:window-height="718"
139 inkscape:window-x="227"
140 inkscape:window-y="25"
141 showgrid="false"
142 inkscape:grid-points="true"
143 inkscape:object-paths="false"
144 showborder="true"
145 showguides="true"
146 inkscape:guide-bbox="true"
147 inkscape:window-maximized="0">
148 <inkscape:grid
149 id="GridFromPre046Settings"
150 type="xygrid"
151 originx="0px"
152 originy="0px"
153 spacingx="0.5px"
154 spacingy="0.5px"
155 color="#0000ff"
156 empcolor="#0000ff"
157 opacity="0.2"
158 empopacity="0.4"
159 empspacing="2"
160 visible="true"
161 enabled="true"
162 snapvisiblegridlinesonly="true" />
163 </sodipodi:namedview>
164 <metadata
165 id="metadata7">
166 <rdf:RDF>
167 <cc:Work
168 rdf:about="">
169 <dc:format>image/svg+xml</dc:format>
170 <dc:type
171 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
172 <dc:creator>
173 <cc:Agent>
174 <dc:title>Lapo Calamandrei</dc:title>
175 </cc:Agent>
176 </dc:creator>
177 <cc:license
178 rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
179 <dc:title></dc:title>
180 <dc:subject>
181 <rdf:Bag>
182 <rdf:li>help</rdf:li>
183 <rdf:li>faq</rdf:li>
184 </rdf:Bag>
185 </dc:subject>
186 </cc:Work>
187 <cc:License
188 rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
189 <cc:permits
190 rdf:resource="http://web.resource.org/cc/Reproduction" />
191 <cc:permits
192 rdf:resource="http://web.resource.org/cc/Distribution" />
193 <cc:requires
194 rdf:resource="http://web.resource.org/cc/Notice" />
195 <cc:permits
196 rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
197 <cc:requires
198 rdf:resource="http://web.resource.org/cc/ShareAlike" />
199 <cc:requires
200 rdf:resource="http://web.resource.org/cc/SourceCode" />
201 </cc:License>
202 </rdf:RDF>
203 </metadata>
204 <g
205 inkscape:label="Livello 1"
206 inkscape:groupmode="layer"
207 id="layer1">
208 <g
209 id="g2138"
210 transform="translate(21,173)" />
211 <g
212 id="g3248"
213 transform="matrix(2.074433,0,0,1.931125,63.62304,305.1745)" />
214 <g
215 id="g3273"
216 transform="matrix(1.3581396,0,0,1.3581396,-3.2906982,-18.545931)">
217 <path
218 transform="matrix(2.030696,0,0,2.061435,5,1.546145)"
219 d="m 14.4375,18 c 0,2.209139 -3.231944,4 -7.21875,4 C 3.2319445,22 0,20.209139 0,18 c 0,-2.209139 3.2319445,-4 7.21875,-4 3.986806,0 7.21875,1.790861 7.21875,4 z"
220 sodipodi:ry="4"
221 sodipodi:rx="7.21875"
222 sodipodi:cy="18"
223 sodipodi:cx="7.21875"
224 id="path3269"
225 style="opacity:0.15;fill:url(#radialGradient3271);fill-opacity:1;stroke:none"
226 sodipodi:type="arc" />
227 <path
228 id="path3244"
229 d="m 11.836888,16.500001 c -2.9586797,0 -5.3389912,2.17434 -5.3389912,4.877016 l 0,11.181454 c 0,2.702676 2.3803115,4.877016 5.3389912,4.877016 l 5.078552,0 13.542807,8.564518 -2.669495,-8.861897 c 2.119436,-0.646164 3.711249,-2.420865 3.711249,-4.579637 l 0,-11.181454 c 0,-2.702676 -2.445421,-4.877016 -5.4041,-4.877016 l -14.259013,0 z"
230 style="fill:url(#linearGradient3255);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
231 sodipodi:nodetypes="ccccccccccc" />
232 <path
233 transform="matrix(1.00418,0,0,1,-0.127496,0)"
234 d="m 11.9375,17.5 c -2.4541694,-1e-6 -4.34375,1.763826 -4.34375,3.875 l 0,11.1875 c 1e-7,2.111173 1.8895802,3.875 4.34375,3.875 l 5.03125,0 A 1.0001,1.0001 0 0 1 17.5,36.59375 l 11.21875,7.125 -1.875,-6.3125 a 1.0001,1.0001 0 0 1 0.6875,-1.25 C 29.289435,35.617879 30.5,34.234176 30.5,32.5625 l 0,-11.1875 C 30.5,19.271536 28.57917,17.5 26.125,17.5 l -14.1875,0 z"
235 id="path3261"
236 style="fill:none;stroke:#ffffff;stroke-width:0.9979164px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
237 inkscape:original="M 11.9375 16.5 C 8.9917082 16.499999 6.59375 18.672324 6.59375 21.375 L 6.59375 32.5625 C 6.5937501 35.265175 8.991708 37.4375 11.9375 37.4375 L 16.96875 37.4375 L 30.46875 46 L 27.8125 37.125 C 29.922705 36.478837 31.5 34.721272 31.5 32.5625 L 31.5 21.375 C 31.5 18.672325 29.070792 16.5 26.125 16.5 L 11.9375 16.5 z "
238 inkscape:radius="-1"
239 sodipodi:type="inkscape:offset" />
240 </g>
241 <text
242 xml:space="preserve"
243 style="font-size:15.72517299999999985px;font-style:normal;font-weight:normal;fill:#878984;fill-opacity:0.91764706;stroke:none;font-family:Bitstream Vera Sans"
244 x="9.3153019"
245 y="23.463018"
246 id="text2846"><tspan
247 sodipodi:role="line"
248 id="tspan2848"
249 x="9.3153019"
250 y="23.463018">IRC</tspan></text>
251 </g>
252</svg>
0253
=== added file 'sources/list.svg'
--- sources/list.svg 1970-01-01 00:00:00 +0000
+++ sources/list.svg 2009-12-23 09:03:14 +0000
@@ -0,0 +1,374 @@
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
4<svg
5 xmlns:dc="http://purl.org/dc/elements/1.1/"
6 xmlns:cc="http://creativecommons.org/ns#"
7 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8 xmlns:svg="http://www.w3.org/2000/svg"
9 xmlns="http://www.w3.org/2000/svg"
10 xmlns:xlink="http://www.w3.org/1999/xlink"
11 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13 width="48"
14 height="48"
15 id="svg2"
16 inkscape:label="Pozadí"
17 sodipodi:version="0.32"
18 inkscape:version="0.47pre4 r22446"
19 version="1.0"
20 sodipodi:docname="list.svg"
21 inkscape:output_extension="org.inkscape.output.svg.inkscape"
22 inkscape:export-filename="/home/doctormo/Desktop/list.png"
23 inkscape:export-xdpi="60"
24 inkscape:export-ydpi="60">
25 <defs
26 id="defs3">
27 <inkscape:perspective
28 sodipodi:type="inkscape:persp3d"
29 inkscape:vp_x="0 : 24 : 1"
30 inkscape:vp_y="0 : 1000 : 0"
31 inkscape:vp_z="48 : 24 : 1"
32 inkscape:persp3d-origin="24 : 16 : 1"
33 id="perspective57" />
34 <linearGradient
35 inkscape:collect="always"
36 id="linearGradient7200">
37 <stop
38 style="stop-color:#000000;stop-opacity:1;"
39 offset="0"
40 id="stop7202" />
41 <stop
42 style="stop-color:#000000;stop-opacity:0;"
43 offset="1"
44 id="stop7204" />
45 </linearGradient>
46 <linearGradient
47 id="linearGradient7064">
48 <stop
49 id="stop7066"
50 offset="0"
51 style="stop-color:#ffffff;stop-opacity:1" />
52 <stop
53 id="stop7068"
54 offset="1"
55 style="stop-color:#e0e0e0;stop-opacity:1;" />
56 </linearGradient>
57 <radialGradient
58 inkscape:collect="always"
59 xlink:href="#linearGradient7064"
60 id="radialGradient7144"
61 gradientUnits="userSpaceOnUse"
62 gradientTransform="matrix(2.424483,0,0,2.8285635,-21.723365,-36.817693)"
63 cx="15.25"
64 cy="20.75"
65 fx="15.25"
66 fy="20.75"
67 r="12" />
68 <radialGradient
69 inkscape:collect="always"
70 xlink:href="#linearGradient7064"
71 id="radialGradient7168"
72 gradientUnits="userSpaceOnUse"
73 gradientTransform="matrix(2.424483,0,0,2.8285635,-21.723365,-36.817693)"
74 cx="15.25"
75 cy="20.75"
76 fx="15.25"
77 fy="20.75"
78 r="12" />
79 <radialGradient
80 inkscape:collect="always"
81 xlink:href="#linearGradient7064"
82 id="radialGradient7170"
83 gradientUnits="userSpaceOnUse"
84 gradientTransform="matrix(2.424483,0,0,2.8285635,-21.723365,-36.817693)"
85 cx="15.25"
86 cy="20.75"
87 fx="15.25"
88 fy="20.75"
89 r="12" />
90 <radialGradient
91 inkscape:collect="always"
92 xlink:href="#linearGradient7200"
93 id="radialGradient7206"
94 cx="25.013903"
95 cy="27.670679"
96 fx="25.013903"
97 fy="27.670679"
98 r="21.301592"
99 gradientTransform="matrix(1,0,0,0.9543569,0,1.2629759)"
100 gradientUnits="userSpaceOnUse" />
101 </defs>
102 <sodipodi:namedview
103 id="base"
104 pagecolor="#ffffff"
105 bordercolor="#666666"
106 borderopacity="1.0"
107 inkscape:pageopacity="0.0"
108 inkscape:pageshadow="2"
109 inkscape:zoom="1"
110 inkscape:cx="44.351033"
111 inkscape:cy="17.352033"
112 inkscape:document-units="px"
113 inkscape:current-layer="layer1"
114 width="48px"
115 height="48px"
116 inkscape:showpageshadow="false"
117 gridtolerance="10000"
118 inkscape:window-width="872"
119 inkscape:window-height="711"
120 inkscape:window-x="75"
121 inkscape:window-y="32"
122 showguides="true"
123 inkscape:guide-bbox="true"
124 showborder="false"
125 borderlayer="false"
126 showgrid="false"
127 inkscape:window-maximized="0">
128 <inkscape:grid
129 type="xygrid"
130 id="grid4948" />
131 </sodipodi:namedview>
132 <metadata
133 id="metadata6">
134 <rdf:RDF>
135 <cc:Work
136 rdf:about="">
137 <dc:format>image/svg+xml</dc:format>
138 <dc:type
139 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
140 <dc:title></dc:title>
141 <dc:contributor>
142 <cc:Agent>
143 <dc:title>Lapo Calamandrei</dc:title>
144 </cc:Agent>
145 </dc:contributor>
146 <dc:subject>
147 <rdf:Bag>
148 <rdf:li>document</rdf:li>
149 <rdf:li>emblem</rdf:li>
150 <rdf:li>paper</rdf:li>
151 <rdf:li>sheet</rdf:li>
152 </rdf:Bag>
153 </dc:subject>
154 <cc:license
155 rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
156 <dc:creator>
157 <cc:Agent>
158 <dc:title>Riccardo Buzzotta</dc:title>
159 </cc:Agent>
160 </dc:creator>
161 </cc:Work>
162 <cc:License
163 rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
164 <cc:permits
165 rdf:resource="http://web.resource.org/cc/Reproduction" />
166 <cc:permits
167 rdf:resource="http://web.resource.org/cc/Distribution" />
168 <cc:requires
169 rdf:resource="http://web.resource.org/cc/Notice" />
170 <cc:permits
171 rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
172 <cc:requires
173 rdf:resource="http://web.resource.org/cc/ShareAlike" />
174 <cc:requires
175 rdf:resource="http://web.resource.org/cc/SourceCode" />
176 </cc:License>
177 </rdf:RDF>
178 </metadata>
179 <g
180 inkscape:label="Vrstva 1"
181 inkscape:groupmode="layer"
182 id="layer1">
183 <g
184 id="layer6"
185 inkscape:label="Shadow"
186 transform="translate(-32.210156,-0.845738)" />
187 <g
188 style="display:inline"
189 inkscape:label="Base"
190 id="g5772"
191 transform="translate(-34.210156,-0.845738)" />
192 <g
193 id="g2637"
194 inkscape:label="base"
195 style="display:inline"
196 transform="translate(-46.823669,46.945542)" />
197 <path
198 sodipodi:type="arc"
199 style="opacity:0.2;fill:url(#radialGradient7206);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-opacity:1"
200 id="path7198"
201 sodipodi:cx="25.013903"
202 sodipodi:cy="27.670679"
203 sodipodi:rx="21.301592"
204 sodipodi:ry="20.329321"
205 d="M 46.315495 27.670679 A 21.301592 20.329321 0 1 1 3.7123108,27.670679 A 21.301592 20.329321 0 1 1 46.315495 27.670679 z"
206 transform="matrix(0.8332535,0.8264837,-0.7042168,0.709985,21.643235,-16.648672)" />
207 <g
208 id="g7146"
209 transform="matrix(0.8660254,0.4999999,-0.4999999,0.8660254,27.607695,11.875644)">
210 <g
211 id="g7148">
212 <rect
213 style="color:#000000;fill:url(#radialGradient7168);fill-opacity:1;fill-rule:nonzero;stroke:#747672;stroke-width:0.90000005;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
214 id="rect7150"
215 width="23"
216 height="27"
217 x="0.5"
218 y="0.5"
219 rx="2.0745242"
220 ry="2.0745242" />
221 <rect
222 ry="1.1635696"
223 rx="1.1635696"
224 y="1.5"
225 x="1.5"
226 height="25"
227 width="21"
228 id="rect7152"
229 style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.94117647;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
230 </g>
231 <g
232 style="stroke:#babdb6"
233 id="g7154">
234 <path
235 style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.90000004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
236 d="M 5.4975854,18.5 L 18.50123,18.5"
237 id="path7156" />
238 <path
239 style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.90000004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
240 d="M 5.4795033,21.5 L 11.537089,21.5"
241 id="path7158" />
242 <path
243 style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.90000004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
244 d="M 5.4975854,15.5 L 18.50123,15.5"
245 id="path7160" />
246 <path
247 style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.90000004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
248 d="M 5.4975854,12.5 L 18.50123,12.5"
249 id="path7162" />
250 <path
251 style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.90000004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
252 d="M 5.4975854,9.5 L 18.50123,9.5"
253 id="path7164" />
254 <path
255 style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.90000004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
256 d="M 5.4975854,6.5 L 18.50123,6.5"
257 id="path7166" />
258 </g>
259 </g>
260 <path
261 style="opacity:0.1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
262 d="M 28.375 12.75 C 27.534366 12.80947 26.734161 13.278034 26.28125 14.0625 L 14.84375 33.875 C 14.819286 33.917373 14.803094 33.956875 14.78125 34 L 28.3125 37.625 C 30.036587 38.086968 31.819282 37.067838 32.28125 35.34375 L 37.125 17.28125 L 29.84375 13.09375 C 29.37307 12.822003 28.879381 12.714318 28.375 12.75 z "
263 id="path7187" />
264 <g
265 id="g7122"
266 transform="matrix(0.9659258,0.258819,-0.258819,0.9659258,15.032357,4.3712099)">
267 <g
268 id="g7124">
269 <rect
270 style="color:#000000;fill:url(#radialGradient7144);fill-opacity:1;fill-rule:nonzero;stroke:#747672;stroke-width:0.90000003;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
271 id="rect7126"
272 width="23"
273 height="27"
274 x="0.5"
275 y="0.5"
276 rx="2.0745242"
277 ry="2.0745242" />
278 <rect
279 ry="1.1635696"
280 rx="1.1635696"
281 y="1.5"
282 x="1.5"
283 height="25"
284 width="21"
285 id="rect7128"
286 style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.94117647;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
287 </g>
288 <g
289 style="stroke:#babdb6"
290 id="g7130">
291 <path
292 style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.90000003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
293 d="M 5.4975854,18.5 L 18.50123,18.5"
294 id="path7132" />
295 <path
296 style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.90000003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
297 d="M 5.4795033,21.5 L 11.537089,21.5"
298 id="path7134" />
299 <path
300 style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.90000003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
301 d="M 5.4975854,15.5 L 18.50123,15.5"
302 id="path7136" />
303 <path
304 style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.90000003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
305 d="M 5.4975854,12.5 L 18.50123,12.5"
306 id="path7138" />
307 <path
308 style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.90000003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
309 d="M 5.4975854,9.5 L 18.50123,9.5"
310 id="path7140" />
311 <path
312 style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:0.90000003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
313 d="M 5.4975854,6.5 L 18.50123,6.5"
314 id="path7142" />
315 </g>
316 </g>
317 <path
318 style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;opacity:0.1"
319 d="M 17 4.90625 C 15.793291 4.8322169 14.669497 5.6280447 14.34375 6.84375 L 8.5 28.59375 L 21.4375 28.59375 C 23.161754 28.59375 24.59375 27.161754 24.59375 25.4375 L 24.59375 6.875 L 17.53125 5 C 17.357578 4.9534647 17.172387 4.9168262 17 4.90625 z "
320 id="path7174" />
321 <g
322 id="g7110">
323 <g
324 id="g7044">
325 <rect
326 style="color:#000000;fill:url(#radialGradient7170);fill-opacity:1;fill-rule:nonzero;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
327 id="rect7046"
328 width="23"
329 height="27"
330 x="0.5"
331 y="0.5"
332 rx="2.0745242"
333 ry="2.0745242" />
334 <rect
335 ry="1.1635696"
336 rx="1.1635696"
337 y="1.5"
338 x="1.5"
339 height="25"
340 width="21"
341 id="rect7050"
342 style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.94117647;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
343 </g>
344 <g
345 style="stroke:#babdb6"
346 id="g7102">
347 <path
348 style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
349 d="M 5.4975854,18.5 L 18.50123,18.5"
350 id="path7090" />
351 <path
352 style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
353 d="M 5.4795033,21.5 L 11.537089,21.5"
354 id="path7092" />
355 <path
356 style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
357 d="M 5.4975854,15.5 L 18.50123,15.5"
358 id="path7094" />
359 <path
360 style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
361 d="M 5.4975854,12.5 L 18.50123,12.5"
362 id="path7096" />
363 <path
364 style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
365 d="M 5.4975854,9.5 L 18.50123,9.5"
366 id="path7098" />
367 <path
368 style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
369 d="M 5.4975854,6.5 L 18.50123,6.5"
370 id="path7100" />
371 </g>
372 </g>
373 </g>
374</svg>
0375
=== added file 'sources/support.svg'
--- sources/support.svg 1970-01-01 00:00:00 +0000
+++ sources/support.svg 2009-12-23 09:03:14 +0000
@@ -0,0 +1,420 @@
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
4<svg
5 xmlns:dc="http://purl.org/dc/elements/1.1/"
6 xmlns:cc="http://creativecommons.org/ns#"
7 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8 xmlns:svg="http://www.w3.org/2000/svg"
9 xmlns="http://www.w3.org/2000/svg"
10 xmlns:xlink="http://www.w3.org/1999/xlink"
11 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13 width="48"
14 height="48"
15 id="svg2"
16 sodipodi:version="0.32"
17 inkscape:version="0.47pre4 r22446"
18 version="1.0"
19 sodipodi:docname="help-browser.svg"
20 inkscape:output_extension="org.inkscape.output.svg.inkscape"
21 inkscape:export-filename="/home/doctormo/Desktop/support.png"
22 inkscape:export-xdpi="60"
23 inkscape:export-ydpi="60">
24 <defs
25 id="defs4">
26 <inkscape:perspective
27 sodipodi:type="inkscape:persp3d"
28 inkscape:vp_x="0 : 24 : 1"
29 inkscape:vp_y="0 : 1000 : 0"
30 inkscape:vp_z="48 : 24 : 1"
31 inkscape:persp3d-origin="24 : 16 : 1"
32 id="perspective61" />
33 <linearGradient
34 id="linearGradient3839">
35 <stop
36 style="stop-color:#eeeeec;stop-opacity:1;"
37 offset="0"
38 id="stop3841" />
39 <stop
40 id="stop2893"
41 offset="0.5"
42 style="stop-color:#eeeeec;stop-opacity:1;" />
43 <stop
44 id="stop2891"
45 offset="0.78313255"
46 style="stop-color:white;stop-opacity:1;" />
47 <stop
48 style="stop-color:#d3d7cf;stop-opacity:1"
49 offset="1"
50 id="stop3843" />
51 </linearGradient>
52 <linearGradient
53 inkscape:collect="always"
54 id="linearGradient3831">
55 <stop
56 style="stop-color:#ef2929;stop-opacity:1;"
57 offset="0"
58 id="stop3833" />
59 <stop
60 style="stop-color:#ef2929;stop-opacity:0;"
61 offset="1"
62 id="stop3835" />
63 </linearGradient>
64 <linearGradient
65 inkscape:collect="always"
66 id="linearGradient3823">
67 <stop
68 style="stop-color:#ef2929;stop-opacity:1;"
69 offset="0"
70 id="stop3825" />
71 <stop
72 style="stop-color:#ef2929;stop-opacity:0;"
73 offset="1"
74 id="stop3827" />
75 </linearGradient>
76 <linearGradient
77 inkscape:collect="always"
78 id="linearGradient3815">
79 <stop
80 style="stop-color:#ef2929;stop-opacity:1;"
81 offset="0"
82 id="stop3817" />
83 <stop
84 style="stop-color:#ef2929;stop-opacity:0;"
85 offset="1"
86 id="stop3819" />
87 </linearGradient>
88 <linearGradient
89 inkscape:collect="always"
90 id="linearGradient3807">
91 <stop
92 style="stop-color:#ef2929;stop-opacity:1;"
93 offset="0"
94 id="stop3809" />
95 <stop
96 style="stop-color:#ef2929;stop-opacity:0;"
97 offset="1"
98 id="stop3811" />
99 </linearGradient>
100 <linearGradient
101 inkscape:collect="always"
102 id="linearGradient3783">
103 <stop
104 style="stop-color:black;stop-opacity:1;"
105 offset="0"
106 id="stop3785" />
107 <stop
108 style="stop-color:black;stop-opacity:0;"
109 offset="1"
110 id="stop3787" />
111 </linearGradient>
112 <linearGradient
113 id="linearGradient3743">
114 <stop
115 style="stop-color:white;stop-opacity:1;"
116 offset="0"
117 id="stop3745" />
118 <stop
119 style="stop-color:white;stop-opacity:0.3392857;"
120 offset="1"
121 id="stop3747" />
122 </linearGradient>
123 <linearGradient
124 inkscape:collect="always"
125 id="linearGradient3735">
126 <stop
127 style="stop-color:white;stop-opacity:1;"
128 offset="0"
129 id="stop3737" />
130 <stop
131 style="stop-color:white;stop-opacity:0;"
132 offset="1"
133 id="stop3739" />
134 </linearGradient>
135 <radialGradient
136 inkscape:collect="always"
137 xlink:href="#linearGradient3783"
138 id="radialGradient1950"
139 gradientUnits="userSpaceOnUse"
140 gradientTransform="matrix(1,0,0,0.625,0,6.375)"
141 cx="8"
142 cy="17"
143 fx="8"
144 fy="17"
145 r="8" />
146 <linearGradient
147 inkscape:collect="always"
148 xlink:href="#linearGradient3823"
149 id="linearGradient1973"
150 gradientUnits="userSpaceOnUse"
151 x1="15.821683"
152 y1="15.989761"
153 x2="14.372151"
154 y2="14.54023"
155 gradientTransform="matrix(2,0,0,2.073159,2,0.390502)" />
156 <linearGradient
157 inkscape:collect="always"
158 xlink:href="#linearGradient3815"
159 id="linearGradient1976"
160 gradientUnits="userSpaceOnUse"
161 x1="15.291184"
162 y1="6.4436507"
163 x2="17.416643"
164 y2="4.3181915"
165 gradientTransform="matrix(2,0,0,2.073159,2,0.390502)" />
166 <linearGradient
167 inkscape:collect="always"
168 xlink:href="#linearGradient3831"
169 id="linearGradient1979"
170 gradientUnits="userSpaceOnUse"
171 x1="6.4302521"
172 y1="15.967495"
173 x2="8.122447"
174 y2="14.2753"
175 gradientTransform="matrix(2,0,0,2.073159,2,0.390502)" />
176 <linearGradient
177 inkscape:collect="always"
178 xlink:href="#linearGradient3807"
179 id="linearGradient1982"
180 gradientUnits="userSpaceOnUse"
181 x1="6.055223"
182 y1="6.3116894"
183 x2="4.4831853"
184 y2="4.7396517"
185 gradientTransform="matrix(2,0,0,2.073159,2,0.390502)" />
186 <radialGradient
187 inkscape:collect="always"
188 xlink:href="#linearGradient3743"
189 id="radialGradient1997"
190 gradientUnits="userSpaceOnUse"
191 gradientTransform="matrix(2.723968,0,0,2.633434,-13.5604,-4.83122)"
192 cx="7.5927024"
193 cy="3.1548533"
194 fx="7.5927024"
195 fy="3.1548533"
196 r="8.4622421" />
197 <radialGradient
198 inkscape:collect="always"
199 xlink:href="#linearGradient3735"
200 id="radialGradient1999"
201 gradientUnits="userSpaceOnUse"
202 gradientTransform="matrix(2.21022,0,0,2.138888,-12.1022,-18.82138)"
203 cx="10.863756"
204 cy="16.148972"
205 fx="10.863756"
206 fy="16.148972"
207 r="8.7143736" />
208 <radialGradient
209 inkscape:collect="always"
210 xlink:href="#linearGradient3839"
211 id="radialGradient2889"
212 cx="24"
213 cy="22.136841"
214 fx="24"
215 fy="22.136841"
216 r="19.5"
217 gradientTransform="matrix(1,0,0,1.035642,0,-0.826715)"
218 gradientUnits="userSpaceOnUse" />
219 </defs>
220 <sodipodi:namedview
221 id="base"
222 pagecolor="#ffffff"
223 bordercolor="#afafaf"
224 borderopacity="1"
225 inkscape:pageopacity="0.0"
226 inkscape:pageshadow="2"
227 inkscape:zoom="1"
228 inkscape:cx="37.814217"
229 inkscape:cy="7.9212512"
230 inkscape:document-units="px"
231 inkscape:current-layer="layer1"
232 width="48px"
233 height="48px"
234 inkscape:showpageshadow="false"
235 borderlayer="true"
236 inkscape:window-width="1051"
237 inkscape:window-height="718"
238 inkscape:window-x="210"
239 inkscape:window-y="25"
240 showgrid="false"
241 showborder="false"
242 inkscape:grid-points="true"
243 showguides="true"
244 inkscape:guide-bbox="true"
245 inkscape:window-maximized="0">
246 <inkscape:grid
247 id="GridFromPre046Settings"
248 type="xygrid"
249 originx="0px"
250 originy="0px"
251 spacingx="0.5px"
252 spacingy="0.5px"
253 color="#0000ff"
254 empcolor="#0000ff"
255 opacity="0.2"
256 empopacity="0.4"
257 empspacing="2" />
258 </sodipodi:namedview>
259 <metadata
260 id="metadata7">
261 <rdf:RDF>
262 <cc:Work
263 rdf:about="">
264 <dc:format>image/svg+xml</dc:format>
265 <dc:type
266 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
267 <dc:creator>
268 <cc:Agent>
269 <dc:title>Lapo Calamandrei</dc:title>
270 </cc:Agent>
271 </dc:creator>
272 <cc:license
273 rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
274 <dc:title></dc:title>
275 </cc:Work>
276 <cc:License
277 rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
278 <cc:permits
279 rdf:resource="http://web.resource.org/cc/Reproduction" />
280 <cc:permits
281 rdf:resource="http://web.resource.org/cc/Distribution" />
282 <cc:requires
283 rdf:resource="http://web.resource.org/cc/Notice" />
284 <cc:permits
285 rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
286 <cc:requires
287 rdf:resource="http://web.resource.org/cc/ShareAlike" />
288 <cc:requires
289 rdf:resource="http://web.resource.org/cc/SourceCode" />
290 </cc:License>
291 </rdf:RDF>
292 </metadata>
293 <g
294 inkscape:label="Livello 1"
295 inkscape:groupmode="layer"
296 id="layer1">
297 <path
298 transform="matrix(3,0,0,2.764211,2,0.736029)"
299 style="fill:none;fill-opacity:1;stroke:#edd400;stroke-width:1.04177764;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:1.20000057;stroke-opacity:1;stroke-dasharray:none"
300 d="M 5,3.25 C 5,4.492 3.4313649,6.6029241 3,5.5 C 2.1703291,3.3786773 0.93342283,5.2887429 0.3484685,4.0315399 C -0.22935565,2.7896614 2.4934373,2.7209744 2.7599621,1.5582428 C 3.1438483,-0.11648562 5,2.008 5,3.25 z "
301 id="path4685"
302 sodipodi:nodetypes="cszsc" />
303 <path
304 transform="matrix(3,0,0,2.764211,28,0.736029)"
305 style="fill:none;fill-opacity:1;stroke:#edd400;stroke-width:1.04177764;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:1.20000057;stroke-opacity:1;stroke-dasharray:none"
306 d="M 5.1324347,3.7530602 C 6.5408877,4.6221586 4.104,5.5 3,5.5 C 1.896,5.5 1,4.492 1,3.25 C 1,2.008 2.5979486,0.9217573 3.6290649,1.6827245 C 4.6449011,2.432415 3.7071849,2.8735972 5.1324347,3.7530602 z "
307 id="path4687"
308 sodipodi:nodetypes="csszz" />
309 <path
310 sodipodi:type="arc"
311 style="opacity:0.5;fill:url(#radialGradient1950);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1"
312 id="path3773"
313 sodipodi:cx="8"
314 sodipodi:cy="17"
315 sodipodi:rx="8"
316 sodipodi:ry="5"
317 d="M 16 17 A 8 5 0 1 1 0,17 A 8 5 0 1 1 16 17 z"
318 transform="matrix(3.002717,0,0,1.306102,-2.173913e-2,16.33263)" />
319 <path
320 transform="matrix(3,0,0,2.764211,2,27.6871)"
321 style="fill:none;fill-opacity:1;stroke:#edd400;stroke-width:1.04177764;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:1.20000057;stroke-opacity:1;stroke-dasharray:none"
322 d="M 5,3.25 C 3.8003631,3.6635328 3.655238,6.4417811 2.708796,5.6734303 C 1.7079235,4.8608912 2.890837,3.4082738 1.3249579,3.638696 C -0.23373408,3.8680605 0.81467683,1.5284674 3,1 C 4.0775742,0.73941485 5,2.008 5,3.25 z "
323 id="path4689"
324 sodipodi:nodetypes="czzsc" />
325 <path
326 transform="matrix(3,0,0,2.764211,28,27.6871)"
327 style="fill:none;fill-opacity:1;stroke:#edd400;stroke-width:1.04177764;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:1.20000057;stroke-opacity:1;stroke-dasharray:none"
328 d="M 4.9106118,3.4503621 C 3.213324,3.9676214 4.4687559,5.5062573 3.2630712,5.6808834 C 2.1050538,5.8486056 1.6264165,4.3705129 1.4714045,3.25 C 1.3172976,2.1360296 2.1622013,0.2197078 3,1 C 3.7209838,1.6714955 6.6199357,2.9294347 4.9106118,3.4503621 z "
329 id="path4691"
330 sodipodi:nodetypes="czzsz" />
331 <path
332 transform="matrix(3,0,0,2.764211,2,0.736029)"
333 style="fill:none;fill-opacity:1;stroke:white;stroke-width:0.34725916;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:1.20000057;stroke-opacity:1"
334 d="M 5,3.25 C 5,4.492 3.4313649,6.6029241 3,5.5 C 2.1703291,3.3786773 0.93342283,5.2887429 0.3484685,4.0315399 C -0.22935565,2.7896614 2.4934373,2.7209744 2.7599621,1.5582428 C 3.1438483,-0.11648562 5,2.008 5,3.25 z "
335 id="path3751"
336 sodipodi:nodetypes="cszsc" />
337 <path
338 transform="matrix(3,0,0,2.764211,28,0.736029)"
339 style="fill:none;fill-opacity:1;stroke:white;stroke-width:0.34725916;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:1.20000057;stroke-opacity:1"
340 d="M 5.1324347,3.7530602 C 6.5408877,4.6221586 4.104,5.5 3,5.5 C 1.896,5.5 1,4.492 1,3.25 C 1,2.008 2.5979486,0.9217573 3.6290649,1.6827245 C 4.6449011,2.432415 3.7071849,2.8735972 5.1324347,3.7530602 z "
341 id="path3753"
342 sodipodi:nodetypes="csszz" />
343 <path
344 transform="matrix(3,0,0,2.764211,2,27.6871)"
345 style="fill:none;fill-opacity:1;stroke:white;stroke-width:0.34725916;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:1.20000057;stroke-opacity:1"
346 d="M 5,3.25 C 3.8003631,3.6635328 3.655238,6.4417811 2.708796,5.6734303 C 1.7079235,4.8608912 2.890837,3.4082738 1.3249579,3.638696 C -0.23373408,3.8680605 0.81467683,1.5284674 3,1 C 4.0775742,0.73941485 5,2.008 5,3.25 z "
347 id="path3755"
348 sodipodi:nodetypes="czzsc" />
349 <path
350 transform="matrix(3,0,0,2.764211,28,27.6871)"
351 style="fill:none;fill-opacity:1;stroke:white;stroke-width:0.34725916;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:1.20000057;stroke-opacity:1"
352 d="M 4.9106118,3.4503621 C 3.213324,3.9676214 4.4687559,5.5062573 3.2630712,5.6808834 C 2.1050538,5.8486056 1.6264165,4.3705129 1.4714045,3.25 C 1.3172976,2.1360296 2.1622013,0.2197078 3,1 C 3.7209838,1.6714955 6.6199357,2.9294347 4.9106118,3.4503621 z "
353 id="path3757"
354 sodipodi:nodetypes="czzsz" />
355 <path
356 style="fill:url(#radialGradient2889);fill-opacity:1.0;stroke:#888a85;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1"
357 d="M 24,3.5002405 C 13.512009,3.5002405 5,12.323604 5,23.195251 C 5,34.066899 13.512009,42.890262 24,42.890262 C 34.48799,42.890262 43,34.066899 43,23.195251 C 43,12.323604 34.48799,3.5002405 24,3.5002405 z M 24,13.866036 C 28.967992,13.866035 33,18.045532 33,23.195251 C 33,28.34497 28.967992,32.524467 24,32.524467 C 19.032008,32.524467 15,28.34497 15,23.195251 C 15,18.045532 19.032008,13.866036 24,13.866036 z "
358 id="path1871" />
359 <path
360 style="fill:url(#linearGradient1982);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
361 d="M 16.375,5.1846822 C 12.031516,7.1681393 8.5384652,10.788965 6.625,15.291332 C 10.619567,15.244087 13.21478,17.295875 15.75,19.43765 C 16.655903,17.312499 18.324842,15.582511 20.375,14.64347 C 19.653901,11.053231 18.398365,7.8447314 16.375,5.1846822 z "
362 id="path2764"
363 sodipodi:nodetypes="ccccc" />
364 <path
365 style="fill:url(#linearGradient1979);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1"
366 d="M 15.75,26.952852 C 12.708333,27.729884 9.6666667,27.935454 6.625,31.09917 C 8.5384652,35.601536 12.031516,39.222362 16.375,41.20582 C 16.917398,37.525601 17.956195,34.176314 20.375,31.747032 C 18.324842,30.80799 16.655903,29.078003 15.75,26.952852 z "
367 id="path2772"
368 sodipodi:nodetypes="ccccc" />
369 <path
370 style="fill:url(#linearGradient1976);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
371 d="M 31.625,5.1846822 C 29.676221,7.7221655 28.016661,10.548869 27.625,14.64347 C 29.675158,15.582511 31.344096,17.312499 32.25,19.43765 C 35.429475,16.815267 38.508941,15.092969 41.375,15.291332 C 39.461534,10.788965 35.968484,7.1681393 31.625,5.1846822 z "
372 id="path2795"
373 sodipodi:nodetypes="ccccc" />
374 <path
375 style="fill:url(#linearGradient1973);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
376 d="M 32.25,26.952852 C 31.344096,29.078003 29.675158,30.80799 27.625,31.747032 C 29.646436,34.211859 30.85863,37.485927 31.625,41.20582 C 35.968484,39.222362 39.461534,35.601536 41.375,31.09917 C 39.211413,28.663368 35.980663,27.508162 32.25,26.952852 z "
377 id="path2797"
378 sodipodi:nodetypes="ccccc" />
379 <path
380 style="fill:none;fill-rule:evenodd;stroke:#a40000;stroke-width:1.00000012px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
381 d="M 15.75,19.43765 C 16.655904,17.312499 18.324842,15.582511 20.375,14.64347 M 16.375,5.1846822 C 12.031516,7.1681393 8.538466,10.788965 6.625,15.291332"
382 id="path3706"
383 sodipodi:nodetypes="cccc" />
384 <path
385 style="fill:none;fill-rule:evenodd;stroke:#a40000;stroke-width:1.00000012px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
386 d="M 41.375,15.291332 C 39.461534,10.788965 35.968484,7.1681393 31.625,5.1846822 M 27.625,14.64347 C 29.675158,15.582511 31.344096,17.312499 32.25,19.43765"
387 id="path3708"
388 sodipodi:nodetypes="cccc" />
389 <path
390 style="fill:none;fill-rule:evenodd;stroke:#a40000;stroke-width:1.00000012px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
391 d="M 32.25,26.952852 C 31.344096,29.078003 29.675158,30.80799 27.625,31.747032 M 31.625,41.20582 C 35.968484,39.222362 39.461534,35.601536 41.375,31.09917"
392 id="path3710"
393 sodipodi:nodetypes="cccc" />
394 <path
395 style="fill:none;fill-opacity:1;stroke:#a40000;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1"
396 d="M 20.375,31.747032 C 18.324842,30.80799 16.655903,29.078003 15.75,26.952852 M 6.625,31.09917 C 8.5384652,35.601536 12.031516,39.222362 16.375,41.20582"
397 id="path3712"
398 sodipodi:nodetypes="cccc" />
399 <path
400 sodipodi:type="arc"
401 style="opacity:0.4;fill:none;fill-opacity:1;stroke:url(#radialGradient1997);stroke-width:0.42869788;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1"
402 id="path3722"
403 sodipodi:cx="10"
404 sodipodi:cy="10.28125"
405 sodipodi:rx="8"
406 sodipodi:ry="7.71875"
407 d="M 18 10.28125 A 8 7.71875 0 1 1 2,10.28125 A 8 7.71875 0 1 1 18 10.28125 z"
408 transform="matrix(2.246534,0,0,2.422058,1.53466,-1.706524)" />
409 <path
410 sodipodi:type="arc"
411 style="opacity:0.8;fill:none;fill-opacity:1;stroke:url(#radialGradient1999);stroke-width:0.77645928;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1"
412 id="path3724"
413 sodipodi:cx="10"
414 sodipodi:cy="10.28125"
415 sodipodi:rx="8"
416 sodipodi:ry="7.71875"
417 d="M 18 10.28125 A 8 7.71875 0 1 1 2,10.28125 A 8 7.71875 0 1 1 18 10.28125 z"
418 transform="matrix(1.242433,0,0,1.335027,11.57567,9.469519)" />
419 </g>
420</svg>
0421
=== added file 'sources/website.svg'
--- sources/website.svg 1970-01-01 00:00:00 +0000
+++ sources/website.svg 2009-12-23 09:03:14 +0000
@@ -0,0 +1,1024 @@
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
4<svg
5 xmlns:dc="http://purl.org/dc/elements/1.1/"
6 xmlns:cc="http://creativecommons.org/ns#"
7 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8 xmlns:svg="http://www.w3.org/2000/svg"
9 xmlns="http://www.w3.org/2000/svg"
10 xmlns:xlink="http://www.w3.org/1999/xlink"
11 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13 inkscape:export-ydpi="60"
14 inkscape:export-xdpi="60"
15 inkscape:export-filename="/home/doctormo/Desktop/website.png"
16 width="48px"
17 height="48px"
18 id="svg11300"
19 sodipodi:version="0.32"
20 inkscape:version="0.47pre4 r22446"
21 sodipodi:docname="emblem-web.svg"
22 inkscape:output_extension="org.inkscape.output.svg.inkscape"
23 version="1.1">
24 <defs
25 id="defs3">
26 <inkscape:perspective
27 sodipodi:type="inkscape:persp3d"
28 inkscape:vp_x="0 : 24 : 1"
29 inkscape:vp_y="0 : 1000 : 0"
30 inkscape:vp_z="48 : 24 : 1"
31 inkscape:persp3d-origin="24 : 16 : 1"
32 id="perspective127" />
33 <linearGradient
34 inkscape:collect="always"
35 id="linearGradient4873">
36 <stop
37 style="stop-color:#ffffff;stop-opacity:1;"
38 offset="0"
39 id="stop4875" />
40 <stop
41 style="stop-color:#ffffff;stop-opacity:0;"
42 offset="1"
43 id="stop4877" />
44 </linearGradient>
45 <radialGradient
46 r="10.625"
47 fy="4.625"
48 fx="62.625"
49 cy="4.625"
50 cx="62.625"
51 gradientTransform="matrix(1,0,0,0.341176,1.298961e-14,3.047059)"
52 gradientUnits="userSpaceOnUse"
53 id="radialGradient9169"
54 xlink:href="#linearGradient8838"
55 inkscape:collect="always" />
56 <linearGradient
57 id="linearGradient8838"
58 inkscape:collect="always">
59 <stop
60 id="stop8840"
61 offset="0"
62 style="stop-color:#000000;stop-opacity:1;" />
63 <stop
64 id="stop8842"
65 offset="1"
66 style="stop-color:#000000;stop-opacity:0;" />
67 </linearGradient>
68 <radialGradient
69 r="9.7552835"
70 fy="-8.7256308"
71 fx="62.200352"
72 cy="-8.7256308"
73 cx="62.200352"
74 gradientTransform="matrix(1.122354,-2.185101e-15,2.185149e-15,1.122379,-7.610472,1.067717)"
75 gradientUnits="userSpaceOnUse"
76 id="radialGradient9171"
77 xlink:href="#linearGradient8647"
78 inkscape:collect="always" />
79 <linearGradient
80 id="linearGradient8647">
81 <stop
82 id="stop8649"
83 offset="0"
84 style="stop-color:#8fb1dc;stop-opacity:1;" />
85 <stop
86 id="stop8651"
87 offset="1"
88 style="stop-color:#3465a4;stop-opacity:1;" />
89 </linearGradient>
90 <radialGradient
91 r="10.081216"
92 fy="-3.4420195"
93 fx="62.225393"
94 cy="-3.4420195"
95 cx="62.225393"
96 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
97 gradientUnits="userSpaceOnUse"
98 id="radialGradient8748"
99 xlink:href="#linearGradient8740"
100 inkscape:collect="always" />
101 <linearGradient
102 id="linearGradient8740"
103 inkscape:collect="always">
104 <stop
105 id="stop8742"
106 offset="0"
107 style="stop-color:#ffffff;stop-opacity:1;" />
108 <stop
109 id="stop8744"
110 offset="1"
111 style="stop-color:#ffffff;stop-opacity:0;" />
112 </linearGradient>
113 <radialGradient
114 r="10.081216"
115 fy="-3.4420195"
116 fx="62.225393"
117 cy="-3.4420195"
118 cx="62.225393"
119 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
120 gradientUnits="userSpaceOnUse"
121 id="radialGradient8750"
122 xlink:href="#linearGradient8740"
123 inkscape:collect="always" />
124 <radialGradient
125 r="10.081216"
126 fy="-3.4420195"
127 fx="62.225393"
128 cy="-3.4420195"
129 cx="62.225393"
130 gradientTransform="matrix(1,0,0,0.930233,-1.618775e-13,-0.240141)"
131 gradientUnits="userSpaceOnUse"
132 id="radialGradient8752"
133 xlink:href="#linearGradient8740"
134 inkscape:collect="always" />
135 <radialGradient
136 r="10.081216"
137 fy="-3.4420195"
138 fx="62.225393"
139 cy="-3.4420195"
140 cx="62.225393"
141 gradientTransform="matrix(1,0,0,0.930233,-6.799488e-14,-0.240141)"
142 gradientUnits="userSpaceOnUse"
143 id="radialGradient9173"
144 xlink:href="#linearGradient8740"
145 inkscape:collect="always" />
146 <radialGradient
147 r="10.081216"
148 fy="-3.4420195"
149 fx="62.225393"
150 cy="-3.4420195"
151 cx="62.225393"
152 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
153 gradientUnits="userSpaceOnUse"
154 id="radialGradient8756"
155 xlink:href="#linearGradient8740"
156 inkscape:collect="always" />
157 <radialGradient
158 r="10.081216"
159 fy="-3.4420195"
160 fx="62.225393"
161 cy="-3.4420195"
162 cx="62.225393"
163 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
164 gradientUnits="userSpaceOnUse"
165 id="radialGradient8758"
166 xlink:href="#linearGradient8740"
167 inkscape:collect="always" />
168 <radialGradient
169 r="10.081216"
170 fy="-3.4420195"
171 fx="62.225393"
172 cy="-3.4420195"
173 cx="62.225393"
174 gradientTransform="matrix(1,0,0,0.930233,-1.906811e-14,-0.240141)"
175 gradientUnits="userSpaceOnUse"
176 id="radialGradient8760"
177 xlink:href="#linearGradient8740"
178 inkscape:collect="always" />
179 <radialGradient
180 r="10.081216"
181 fy="-3.4420195"
182 fx="62.225393"
183 cy="-3.4420195"
184 cx="62.225393"
185 gradientTransform="matrix(1,0,0,0.930233,-1.960516e-14,-0.240141)"
186 gradientUnits="userSpaceOnUse"
187 id="radialGradient9175"
188 xlink:href="#linearGradient8740"
189 inkscape:collect="always" />
190 <radialGradient
191 r="10.081216"
192 fy="-3.4420195"
193 fx="62.225393"
194 cy="-3.4420195"
195 cx="62.225393"
196 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
197 gradientUnits="userSpaceOnUse"
198 id="radialGradient8764"
199 xlink:href="#linearGradient8740"
200 inkscape:collect="always" />
201 <radialGradient
202 r="10.081216"
203 fy="-3.4420195"
204 fx="62.225393"
205 cy="-3.4420195"
206 cx="62.225393"
207 gradientTransform="matrix(1,0,0,0.930233,-1.965096e-14,-0.240141)"
208 gradientUnits="userSpaceOnUse"
209 id="radialGradient8766"
210 xlink:href="#linearGradient8740"
211 inkscape:collect="always" />
212 <radialGradient
213 r="10.081216"
214 fy="-3.4420195"
215 fx="62.225393"
216 cy="-3.4420195"
217 cx="62.225393"
218 gradientTransform="matrix(1,0,0,0.930233,-2.68581e-14,-0.240141)"
219 gradientUnits="userSpaceOnUse"
220 id="radialGradient9177"
221 xlink:href="#linearGradient8740"
222 inkscape:collect="always" />
223 <radialGradient
224 r="10.081216"
225 fy="-3.4420195"
226 fx="62.225393"
227 cy="-3.4420195"
228 cx="62.225393"
229 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
230 gradientUnits="userSpaceOnUse"
231 id="radialGradient8770"
232 xlink:href="#linearGradient8740"
233 inkscape:collect="always" />
234 <radialGradient
235 r="10.081216"
236 fy="-3.4420195"
237 fx="62.225393"
238 cy="-3.4420195"
239 cx="62.225393"
240 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
241 gradientUnits="userSpaceOnUse"
242 id="radialGradient8772"
243 xlink:href="#linearGradient8740"
244 inkscape:collect="always" />
245 <radialGradient
246 r="10.081216"
247 fy="-3.4420195"
248 fx="62.225393"
249 cy="-3.4420195"
250 cx="62.225393"
251 gradientTransform="matrix(1,0,0,0.930233,-1.618775e-13,-0.240141)"
252 gradientUnits="userSpaceOnUse"
253 id="radialGradient8774"
254 xlink:href="#linearGradient8740"
255 inkscape:collect="always" />
256 <radialGradient
257 r="10.081216"
258 fy="-3.4420195"
259 fx="62.225393"
260 cy="-3.4420195"
261 cx="62.225393"
262 gradientTransform="matrix(1,0,0,0.930233,-6.799488e-14,-0.240141)"
263 gradientUnits="userSpaceOnUse"
264 id="radialGradient9179"
265 xlink:href="#linearGradient8740"
266 inkscape:collect="always" />
267 <radialGradient
268 r="10.081216"
269 fy="-3.4420195"
270 fx="62.225393"
271 cy="-3.4420195"
272 cx="62.225393"
273 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
274 gradientUnits="userSpaceOnUse"
275 id="radialGradient8778"
276 xlink:href="#linearGradient8740"
277 inkscape:collect="always" />
278 <radialGradient
279 r="10.081216"
280 fy="-3.4420195"
281 fx="62.225393"
282 cy="-3.4420195"
283 cx="62.225393"
284 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
285 gradientUnits="userSpaceOnUse"
286 id="radialGradient8780"
287 xlink:href="#linearGradient8740"
288 inkscape:collect="always" />
289 <radialGradient
290 r="10.081216"
291 fy="-3.4420195"
292 fx="62.225393"
293 cy="-3.4420195"
294 cx="62.225393"
295 gradientTransform="matrix(1,0,0,0.930233,-2.257223e-14,-0.240141)"
296 gradientUnits="userSpaceOnUse"
297 id="radialGradient8782"
298 xlink:href="#linearGradient8740"
299 inkscape:collect="always" />
300 <radialGradient
301 r="10.081216"
302 fy="-3.4420195"
303 fx="62.225393"
304 cy="-3.4420195"
305 cx="62.225393"
306 gradientTransform="matrix(1,0,0,0.930233,-2.79498e-14,0.79739)"
307 gradientUnits="userSpaceOnUse"
308 id="radialGradient9181"
309 xlink:href="#linearGradient8740"
310 inkscape:collect="always" />
311 <radialGradient
312 r="10.081216"
313 fy="-3.4420195"
314 fx="62.225393"
315 cy="-3.4420195"
316 cx="62.225393"
317 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
318 gradientUnits="userSpaceOnUse"
319 id="radialGradient8786"
320 xlink:href="#linearGradient8740"
321 inkscape:collect="always" />
322 <radialGradient
323 r="10.081216"
324 fy="-3.4420195"
325 fx="62.225393"
326 cy="-3.4420195"
327 cx="62.225393"
328 gradientTransform="matrix(1,0,0,0.930233,-8.035238e-14,-0.240141)"
329 gradientUnits="userSpaceOnUse"
330 id="radialGradient8788"
331 xlink:href="#linearGradient8740"
332 inkscape:collect="always" />
333 <radialGradient
334 r="10.081216"
335 fy="-3.4420195"
336 fx="62.225393"
337 cy="-3.4420195"
338 cx="62.225393"
339 gradientTransform="matrix(1,0,0,0.930233,-4.638683e-14,-0.240141)"
340 gradientUnits="userSpaceOnUse"
341 id="radialGradient9183"
342 xlink:href="#linearGradient8740"
343 inkscape:collect="always" />
344 <radialGradient
345 r="10.081216"
346 fy="-3.4420195"
347 fx="62.225393"
348 cy="-3.4420195"
349 cx="62.225393"
350 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
351 gradientUnits="userSpaceOnUse"
352 id="radialGradient8792"
353 xlink:href="#linearGradient8740"
354 inkscape:collect="always" />
355 <radialGradient
356 r="10.081216"
357 fy="-3.4420195"
358 fx="62.225393"
359 cy="-3.4420195"
360 cx="62.225393"
361 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
362 gradientUnits="userSpaceOnUse"
363 id="radialGradient8794"
364 xlink:href="#linearGradient8740"
365 inkscape:collect="always" />
366 <radialGradient
367 r="10.081216"
368 fy="-3.4420195"
369 fx="62.225393"
370 cy="-3.4420195"
371 cx="62.225393"
372 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
373 gradientUnits="userSpaceOnUse"
374 id="radialGradient8796"
375 xlink:href="#linearGradient8740"
376 inkscape:collect="always" />
377 <radialGradient
378 r="10.081216"
379 fy="-3.4420195"
380 fx="62.225393"
381 cy="-3.4420195"
382 cx="62.225393"
383 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
384 gradientUnits="userSpaceOnUse"
385 id="radialGradient8798"
386 xlink:href="#linearGradient8740"
387 inkscape:collect="always" />
388 <radialGradient
389 r="10.081216"
390 fy="-3.4420195"
391 fx="62.225393"
392 cy="-3.4420195"
393 cx="62.225393"
394 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
395 gradientUnits="userSpaceOnUse"
396 id="radialGradient8800"
397 xlink:href="#linearGradient8740"
398 inkscape:collect="always" />
399 <radialGradient
400 r="10.081216"
401 fy="-3.4420195"
402 fx="62.225393"
403 cy="-3.4420195"
404 cx="62.225393"
405 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
406 gradientUnits="userSpaceOnUse"
407 id="radialGradient8802"
408 xlink:href="#linearGradient8740"
409 inkscape:collect="always" />
410 <radialGradient
411 r="10.081216"
412 fy="-3.4420195"
413 fx="62.225393"
414 cy="-3.4420195"
415 cx="62.225393"
416 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
417 gradientUnits="userSpaceOnUse"
418 id="radialGradient8804"
419 xlink:href="#linearGradient8740"
420 inkscape:collect="always" />
421 <radialGradient
422 r="10.081216"
423 fy="-3.4420195"
424 fx="62.225393"
425 cy="-3.4420195"
426 cx="62.225393"
427 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
428 gradientUnits="userSpaceOnUse"
429 id="radialGradient8806"
430 xlink:href="#linearGradient8740"
431 inkscape:collect="always" />
432 <radialGradient
433 r="10.081216"
434 fy="-3.4420195"
435 fx="62.225393"
436 cy="-3.4420195"
437 cx="62.225393"
438 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
439 gradientUnits="userSpaceOnUse"
440 id="radialGradient8808"
441 xlink:href="#linearGradient8740"
442 inkscape:collect="always" />
443 <radialGradient
444 r="10.081216"
445 fy="-3.4420195"
446 fx="62.225393"
447 cy="-3.4420195"
448 cx="62.225393"
449 gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)"
450 gradientUnits="userSpaceOnUse"
451 id="radialGradient8810"
452 xlink:href="#linearGradient8740"
453 inkscape:collect="always" />
454 <radialGradient
455 r="8.61745"
456 fy="18.944481"
457 fx="24.652485"
458 cy="18.94449"
459 cx="24.652573"
460 gradientTransform="matrix(7.657394e-2,2.760516,-1.969551,5.463895e-2,60.09901,-55.47179)"
461 gradientUnits="userSpaceOnUse"
462 id="radialGradient9185"
463 xlink:href="#linearGradient8924"
464 inkscape:collect="always" />
465 <linearGradient
466 id="linearGradient8924">
467 <stop
468 style="stop-color:#cee14b"
469 offset="0"
470 id="stop8926" />
471 <stop
472 style="stop-color:#9db029"
473 offset="1"
474 id="stop8928" />
475 </linearGradient>
476 <radialGradient
477 r="10.081216"
478 fy="-3.4420195"
479 fx="62.225393"
480 cy="-3.4420195"
481 cx="62.225393"
482 gradientTransform="matrix(1,0,0,0.930233,-4.23828e-14,-0.240141)"
483 gradientUnits="userSpaceOnUse"
484 id="radialGradient8812"
485 xlink:href="#linearGradient8740"
486 inkscape:collect="always" />
487 <radialGradient
488 r="8.61745"
489 fy="18.944481"
490 fx="24.652485"
491 cy="18.94449"
492 cx="24.652573"
493 gradientTransform="matrix(6.822876e-2,2.459669,-1.754905,4.868429e-2,55.12882,-46.82188)"
494 gradientUnits="userSpaceOnUse"
495 id="radialGradient9187"
496 xlink:href="#linearGradient8924"
497 inkscape:collect="always" />
498 <radialGradient
499 r="10.081216"
500 fy="-3.4420195"
501 fx="62.225393"
502 cy="-3.4420195"
503 cx="62.225393"
504 gradientTransform="matrix(0.891018,0,0,0.828854,1.579517,2.39052)"
505 gradientUnits="userSpaceOnUse"
506 id="radialGradient9189"
507 xlink:href="#linearGradient8740"
508 inkscape:collect="always" />
509 <radialGradient
510 r="4.13475"
511 fy="14.542329"
512 fx="25.135332"
513 cy="14.542349"
514 cx="25.135374"
515 gradientTransform="matrix(0.159592,5.753335,-0.8072,2.23703e-2,32.87305,-131.6974)"
516 gradientUnits="userSpaceOnUse"
517 id="radialGradient9191"
518 xlink:href="#linearGradient8930"
519 inkscape:collect="always" />
520 <linearGradient
521 id="linearGradient8930">
522 <stop
523 style="stop-color:#cee14b"
524 offset="0"
525 id="stop8932" />
526 <stop
527 style="stop-color:#9db029"
528 offset="1"
529 id="stop8934" />
530 </linearGradient>
531 <radialGradient
532 r="10.081216"
533 fy="-3.4420195"
534 fx="62.225393"
535 cy="-3.4420195"
536 cx="62.225393"
537 gradientTransform="matrix(1,0,0,0.930233,-5.087595e-14,-0.240141)"
538 gradientUnits="userSpaceOnUse"
539 id="radialGradient8816"
540 xlink:href="#linearGradient8740"
541 inkscape:collect="always" />
542 <radialGradient
543 r="4.13475"
544 fy="14.542329"
545 fx="25.135332"
546 cy="14.542349"
547 cx="25.135374"
548 gradientTransform="matrix(0.159592,5.753335,-0.8072,2.23703e-2,32.87305,-130.867)"
549 gradientUnits="userSpaceOnUse"
550 id="radialGradient9193"
551 xlink:href="#linearGradient8930"
552 inkscape:collect="always" />
553 <radialGradient
554 r="10.081216"
555 fy="-3.4420195"
556 fx="62.225393"
557 cy="-3.4420195"
558 cx="62.225393"
559 gradientTransform="matrix(1,0,0,0.930233,-3.093343e-14,0.589884)"
560 gradientUnits="userSpaceOnUse"
561 id="radialGradient9195"
562 xlink:href="#linearGradient8740"
563 inkscape:collect="always" />
564 <radialGradient
565 r="2.97195"
566 fy="17.573889"
567 fx="24.478539"
568 cy="17.573915"
569 cx="24.478569"
570 gradientTransform="matrix(0.222034,8.004376,-0.597156,1.656095e-2,29.5454,-182.3268)"
571 gradientUnits="userSpaceOnUse"
572 id="radialGradient9197"
573 xlink:href="#linearGradient8912"
574 inkscape:collect="always" />
575 <linearGradient
576 id="linearGradient8912">
577 <stop
578 id="stop8914"
579 offset="0"
580 style="stop-color:#cee14b" />
581 <stop
582 id="stop8916"
583 offset="1"
584 style="stop-color:#9db029" />
585 </linearGradient>
586 <radialGradient
587 r="10.081216"
588 fy="-3.4420195"
589 fx="62.225393"
590 cy="-3.4420195"
591 cx="62.225393"
592 gradientTransform="matrix(1,0,0,0.930233,-1.223188e-13,-0.240141)"
593 gradientUnits="userSpaceOnUse"
594 id="radialGradient8820"
595 xlink:href="#linearGradient8740"
596 inkscape:collect="always" />
597 <radialGradient
598 r="2.97195"
599 fy="17.573889"
600 fx="24.478539"
601 cy="17.573915"
602 cx="24.478569"
603 gradientTransform="matrix(0.222034,8.004376,-0.597156,1.656095e-2,29.85665,-181.6002)"
604 gradientUnits="userSpaceOnUse"
605 id="radialGradient9199"
606 xlink:href="#linearGradient8912"
607 inkscape:collect="always" />
608 <radialGradient
609 r="10.081216"
610 fy="-3.4420195"
611 fx="62.225393"
612 cy="-3.4420195"
613 cx="62.225393"
614 gradientTransform="matrix(1,0,0,0.930233,0.311259,0.486131)"
615 gradientUnits="userSpaceOnUse"
616 id="radialGradient9201"
617 xlink:href="#linearGradient8740"
618 inkscape:collect="always" />
619 <radialGradient
620 r="9.82225"
621 fy="17.257843"
622 fx="25.968998"
623 cy="17.257854"
624 cx="25.969097"
625 gradientTransform="matrix(6.718136e-2,2.42191,-1.629357,4.51789e-2,52.36869,-50.34012)"
626 gradientUnits="userSpaceOnUse"
627 id="radialGradient9203"
628 xlink:href="#linearGradient8918"
629 inkscape:collect="always" />
630 <linearGradient
631 id="linearGradient8918">
632 <stop
633 style="stop-color:#cee14b"
634 offset="0"
635 id="stop8920" />
636 <stop
637 style="stop-color:#9db029"
638 offset="1"
639 id="stop8922" />
640 </linearGradient>
641 <radialGradient
642 r="10.081216"
643 fy="-3.4420195"
644 fx="62.225393"
645 cy="-3.4420195"
646 cx="62.225393"
647 gradientTransform="matrix(1,0,0,0.930233,-3.15581e-14,-0.240141)"
648 gradientUnits="userSpaceOnUse"
649 id="radialGradient8824"
650 xlink:href="#linearGradient8740"
651 inkscape:collect="always" />
652 <radialGradient
653 r="9.82225"
654 fy="17.257843"
655 fx="25.968998"
656 cy="17.257854"
657 cx="25.969097"
658 gradientTransform="matrix(6.168149e-2,2.223638,-1.495968,4.148028e-2,50.51125,-44.50839)"
659 gradientUnits="userSpaceOnUse"
660 id="radialGradient9205"
661 xlink:href="#linearGradient8918"
662 inkscape:collect="always" />
663 <radialGradient
664 r="10.081216"
665 fy="-3.4420195"
666 fx="62.225393"
667 cy="-3.4420195"
668 cx="62.225393"
669 gradientTransform="matrix(0.918134,0,0,0.854079,2.429764,1.490099)"
670 gradientUnits="userSpaceOnUse"
671 id="radialGradient9207"
672 xlink:href="#linearGradient8740"
673 inkscape:collect="always" />
674 <linearGradient
675 inkscape:collect="always"
676 xlink:href="#linearGradient4873"
677 id="linearGradient4879"
678 x1="63.397362"
679 y1="-9.3832779"
680 x2="68.910904"
681 y2="16.839214"
682 gradientUnits="userSpaceOnUse" />
683 </defs>
684 <sodipodi:namedview
685 stroke="#555753"
686 fill="#eeeeec"
687 id="base"
688 pagecolor="#ffffff"
689 bordercolor="#666666"
690 borderopacity="0.25490196"
691 inkscape:pageopacity="0.0"
692 inkscape:pageshadow="2"
693 inkscape:zoom="2"
694 inkscape:cx="16.217641"
695 inkscape:cy="22.472776"
696 inkscape:current-layer="layer1"
697 showgrid="false"
698 inkscape:grid-bbox="true"
699 inkscape:document-units="px"
700 inkscape:showpageshadow="false"
701 inkscape:window-width="822"
702 inkscape:window-height="549"
703 inkscape:window-x="234"
704 inkscape:window-y="194"
705 inkscape:window-maximized="0" />
706 <metadata
707 id="metadata4">
708 <rdf:RDF>
709 <cc:Work
710 rdf:about="">
711 <dc:format>image/svg+xml</dc:format>
712 <dc:type
713 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
714 <dc:creator>
715 <cc:Agent>
716 <dc:title>Jakub Steiner</dc:title>
717 </cc:Agent>
718 </dc:creator>
719 <dc:source>http://jimmac.musichall.cz</dc:source>
720 <cc:license
721 rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
722 <dc:title></dc:title>
723 </cc:Work>
724 <cc:License
725 rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
726 <cc:permits
727 rdf:resource="http://web.resource.org/cc/Reproduction" />
728 <cc:permits
729 rdf:resource="http://web.resource.org/cc/Distribution" />
730 <cc:requires
731 rdf:resource="http://web.resource.org/cc/Notice" />
732 <cc:permits
733 rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
734 <cc:requires
735 rdf:resource="http://web.resource.org/cc/ShareAlike" />
736 <cc:requires
737 rdf:resource="http://web.resource.org/cc/SourceCode" />
738 </cc:License>
739 </rdf:RDF>
740 </metadata>
741 <g
742 id="layer1"
743 inkscape:label="Layer 1"
744 inkscape:groupmode="layer">
745 <g
746 inkscape:label="Layer 1"
747 id="g3020"
748 transform="matrix(1.673435,0,0,1.673435,-3.189256,-2.668541)">
749 <g
750 transform="matrix(1.284706,0,0,1.284706,-63.89629,19.96894)"
751 id="g8936"
752 style="display:inline">
753 <path
754 sodipodi:type="arc"
755 style="opacity:0.56043958;color:#000000;fill:url(#radialGradient9169);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
756 id="path8836"
757 sodipodi:cx="62.625"
758 sodipodi:cy="4.625"
759 sodipodi:rx="10.625"
760 sodipodi:ry="3.625"
761 d="M 73.25,4.625 C 73.25,6.6270322 68.493025,8.25 62.625,8.25 56.756975,8.25 52,6.6270322 52,4.625 52,2.6229678 56.756975,1 62.625,1 68.493025,1 73.25,2.6229678 73.25,4.625 z"
762 transform="matrix(1,0,0,1.192473,-0.590821,-2.378705)" />
763 <path
764 style="fill:url(#radialGradient9171);fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:0.46514398;stroke-miterlimit:4;stroke-dasharray:none"
765 d="M 71.455637,-3.5111605 C 71.455637,1.6006722 67.3116,5.7446615 62.20047,5.7446615 C 57.088872,5.7446615 52.94507,1.6006253 52.94507,-3.5111605 C 52.94507,-8.6227588 57.088872,-12.766327 62.20047,-12.766327 C 67.3116,-12.766327 71.455637,-8.6227588 71.455637,-3.5111605 L 71.455637,-3.5111605 z "
766 id="path6495" />
767 <path
768 id="path8655"
769 d="M 70.945908,-3.5111451 C 70.945908,1.3191267 67.030126,5.234864 62.200518,5.234864 C 57.370468,5.234864 53.454907,1.3190823 53.454907,-3.5111451 C 53.454907,-8.3411954 57.370468,-12.256535 62.200518,-12.256535 C 67.030126,-12.256535 70.945908,-8.3411954 70.945908,-3.5111451 L 70.945908,-3.5111451 z "
770 style="opacity:0.52747253;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4879);stroke-width:0.46514425;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
771 <image
772 style="opacity:0.75;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8748);stroke-miterlimit:4"
773 width="10.784556"
774 height="16.411282"
775 href="62169F0D.png"
776 id="image6522"
777 x="61.522053"
778 y="-11.413214" />
779 <image
780 style="opacity:0.75;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8750);stroke-miterlimit:4"
781 width="2.3444688"
782 height="2.3444688"
783 href="62169F0E.png"
784 id="image6530"
785 x="61.990948"
786 y="-10.94432" />
787 <g
788 transform="matrix(0.468894,0,0,0.468894,50.39042,-14.57365)"
789 style="fill:#9db029;fill-rule:nonzero;stroke:url(#radialGradient8752);stroke-miterlimit:4"
790 id="g6532">
791 <path
792 d="M 26.0703,9.2363 L 25.9971,9.7295 L 26.5069,10.0586 L 27.378,9.4829 L 26.9425,8.9892 L 26.3605,9.3188 L 26.0705,9.2363"
793 id="path6534"
794 style="fill:#9db029;stroke:url(#radialGradient9173)" />
795 </g>
796 <image
797 style="opacity:0.75;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8756);stroke-miterlimit:4"
798 width="5.6267252"
799 height="4.6889377"
800 href="62169F0F.png"
801 id="image6538"
802 x="58.708691"
803 y="-12.819895" />
804 <image
805 style="opacity:0.75;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8758);stroke-miterlimit:4"
806 width="2.3444688"
807 height="2.3444688"
808 href="62169F10.png"
809 id="image6546"
810 x="62.928734"
811 y="-9.5376387" />
812 <g
813 transform="matrix(0.468894,0,0,0.468894,49.7717,-14.57365)"
814 style="fill:#9db029;fill-rule:nonzero;stroke:url(#radialGradient8760);stroke-miterlimit:4"
815 id="g6548">
816 <path
817 d="M 28.833,12.7749 L 28.542,12.0337 L 28.0322,12.1987 L 28.1787,13.103 L 28.833,12.7749"
818 id="path6550"
819 style="fill:#9db029;stroke:url(#radialGradient9175)" />
820 </g>
821 <image
822 style="opacity:0.75;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8764);stroke-miterlimit:4"
823 width="2.3444688"
824 height="3.2822564"
825 href="62169F11.png"
826 id="image6554"
827 x="63.397629"
828 y="-10.006532" />
829 <g
830 transform="matrix(0.468894,0,0,0.468894,49.94848,-14.57365)"
831 style="fill:#9db029;fill-rule:nonzero;stroke:url(#radialGradient8766);stroke-miterlimit:4"
832 id="g6556">
833 <path
834 d="M 29.123,12.6089 L 28.9775,13.5972 L 29.7773,13.4322 L 30.3584,12.857 L 29.8496,12.3629 C 29.6787,11.9078 29.4824,11.483 29.2685,11.0465 L 28.833,11.0465 L 28.833,11.5397 L 29.123,11.8688 L 29.123,12.609"
835 id="path6558"
836 style="fill:#9db029;stroke:url(#radialGradient9177)" />
837 </g>
838 <image
839 style="opacity:0.75;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8770);stroke-miterlimit:4"
840 width="9.8467684"
841 height="17.34907"
842 href="62169F12.png"
843 id="image6562"
844 x="52.144176"
845 y="-11.413214" />
846 <image
847 style="opacity:0.75;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8772);stroke-miterlimit:4"
848 width="2.3444688"
849 height="2.3444688"
850 href="62169F13.png"
851 id="image6570"
852 x="57.770901"
853 y="-10.94432" />
854 <g
855 transform="matrix(0.468894,0,0,0.468894,50.39042,-14.57365)"
856 style="fill:#9db029;fill-rule:nonzero;stroke:url(#radialGradient8774);stroke-miterlimit:4"
857 id="g6572">
858 <path
859 d="M 16.7656,9.5649 L 17.4922,10.0586 L 18.0742,10.0586 L 18.0742,9.4829 L 17.3476,9.1538 L 16.7656,9.5649"
860 id="path6574"
861 style="fill:#9db029;stroke:url(#radialGradient9179)" />
862 </g>
863 <image
864 style="opacity:0.75;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8778);stroke-miterlimit:4"
865 width="4.2200437"
866 height="3.2822564"
867 href="62169F14.png"
868 id="image6578"
869 x="56.36422"
870 y="-11.882107" />
871 <image
872 style="opacity:0.75;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8780);stroke-miterlimit:4"
873 width="3.7511499"
874 height="2.8133626"
875 href="2D44FCEC.png"
876 id="image6606"
877 x="57.30201"
878 y="-12.819895" />
879 <g
880 transform="matrix(0.468894,0,0,0.468894,50.96494,-14.52946)"
881 style="fill:#9db029;fill-rule:nonzero;stroke:url(#radialGradient8782);stroke-miterlimit:4"
882 id="g6608">
883 <path
884 d="M 17.4922,7.887132 L 17.856,7.558532 L 18.5831,7.393932 C 19.0811,7.151732 19.5811,6.988632 20.1095,6.817732 L 19.8195,6.324032 L 18.881,6.458832 L 18.4376,6.900732 L 17.7066,7.006732 L 17.0567,7.311932 L 16.7408,7.464732 L 16.5479,7.723032 L 17.4922,7.887132"
885 id="path6610"
886 style="fill:#9db029;stroke:url(#radialGradient9181)" />
887 </g>
888 <image
889 style="opacity:0.75;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8786);stroke-miterlimit:4"
890 width="2.3444688"
891 height="2.3444688"
892 href="2D44FCED.png"
893 id="image6614"
894 x="58.239796"
895 y="-8.5998507" />
896 <g
897 transform="matrix(0.468894,0,0,0.468894,50.56718,-14.30851)"
898 style="fill:#9db029;fill-rule:nonzero;stroke:url(#radialGradient8788);stroke-miterlimit:4"
899 id="g6616">
900 <path
901 d="M 18.7285,14.6665 L 19.165,14.0083 L 18.5102,13.5151 L 18.7285,14.6665"
902 id="path6618"
903 style="fill:#9db029;stroke:url(#radialGradient9183)" />
904 </g>
905 <image
906 style="opacity:0.15750002;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8792);stroke-miterlimit:4"
907 width="10.784556"
908 height="16.411282"
909 href="2D44FCEE.png"
910 id="image6624"
911 x="61.522053"
912 y="-11.413214" />
913 <image
914 style="opacity:0.15750002;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8794);stroke-miterlimit:4"
915 width="2.3444688"
916 height="2.3444688"
917 href="2D44FCEF.png"
918 id="image6632"
919 x="61.990948"
920 y="-10.94432" />
921 <image
922 style="opacity:0.15750002;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8796);stroke-miterlimit:4"
923 width="5.6267252"
924 height="4.6889377"
925 href="2D44FCF0.png"
926 id="image6640"
927 x="58.708691"
928 y="-12.819895" />
929 <image
930 style="opacity:0.15750002;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8798);stroke-miterlimit:4"
931 width="2.3444688"
932 height="2.3444688"
933 href="2D44FCF1.png"
934 id="image6648"
935 x="62.928734"
936 y="-9.5376387" />
937 <image
938 style="opacity:0.15750002;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8800);stroke-miterlimit:4"
939 width="2.3444688"
940 height="3.2822564"
941 href="2D44FCF2.png"
942 id="image6656"
943 x="63.397629"
944 y="-10.006532" />
945 <image
946 style="opacity:0.15750002;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8802);stroke-miterlimit:4"
947 width="9.8467684"
948 height="17.34907"
949 href="2D44FCF3.png"
950 id="image6664"
951 x="52.144176"
952 y="-11.413214" />
953 <image
954 style="opacity:0.15750002;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8804);stroke-miterlimit:4"
955 width="2.3444688"
956 height="2.3444688"
957 href="2D44FCF4.png"
958 id="image6672"
959 x="57.770901"
960 y="-10.94432" />
961 <image
962 style="opacity:0.15750002;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8806);stroke-miterlimit:4"
963 width="4.2200437"
964 height="3.2822564"
965 href="2D44FCF5.png"
966 id="image6680"
967 x="56.36422"
968 y="-11.882107" />
969 <image
970 style="opacity:0.15750002;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8808);stroke-miterlimit:4"
971 width="3.7511499"
972 height="2.8133626"
973 href="2D44FD11.png"
974 id="image6708"
975 x="57.30201"
976 y="-12.819895" />
977 <image
978 style="opacity:0.15750002;fill:#ffffff;fill-rule:nonzero;stroke:url(#radialGradient8810);stroke-miterlimit:4"
979 width="2.3444688"
980 height="2.3444688"
981 href="2D44FD12.png"
982 id="image6716"
983 x="58.239796"
984 y="-8.5998507" />
985 <g
986 transform="matrix(0.468894,0,0,0.468894,50.74397,-14.61784)"
987 style="fill:url(#radialGradient9185);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient8812);stroke-miterlimit:4"
988 id="g6564">
989 <path
990 d="M 17.943241,27.768799 L 17.424668,26.742079 L 16.453191,26.522353 L 15.935064,25.130138 L 14.639881,25.276354 L 13.539117,24.470606 L 12.372685,25.496524 L 12.372685,25.658333 C 12.019842,25.55649 11.586095,25.54259 11.271922,25.349417 L 11.012635,24.616733 L 11.012635,23.810095 L 10.235579,23.883158 C 10.300445,23.369754 10.364776,22.85724 10.430088,22.343925 L 9.9762924,22.343925 L 9.523388,22.930393 L 9.0695925,23.149672 L 8.4217333,22.784177 L 8.3568672,21.977538 L 8.4865103,21.097836 L 9.4584328,20.365152 L 10.23549,20.365152 L 10.364687,19.9249 L 11.336164,20.144179 L 12.0488,21.024772 L 12.178443,19.557711 L 13.409207,18.531793 L 13.862557,17.431921 L 14.769256,17.065623 L 15.287383,16.332939 L 16.452924,16.111966 L 17.036363,15.233155 C 16.45337,15.233155 15.870376,15.233155 15.287383,15.233155 L 16.388503,14.719751 L 17.165115,14.719751 L 18.26668,14.352562 L 18.396323,13.914003 L 18.007394,13.546815 L 17.554044,13.399797 L 17.683687,12.960347 L 17.35998,12.300815 L 16.582478,12.593158 L 16.712121,12.007136 L 15.805421,11.493731 L 15.093231,12.739285 L 15.157651,13.179537 L 14.445461,13.473662 L 13.991665,14.426428 L 13.797601,13.546726 L 12.566838,13.033321 L 12.372329,12.37379 L 13.991665,11.420133 L 14.704301,10.760601 L 14.769167,9.9544084 L 14.380684,9.7342382 L 13.862557,9.6607292 L 13.53885,10.467367 C 13.53885,10.467367 12.9972,10.573488 12.857934,10.607881 C 11.079373,12.246819 7.4857189,15.784785 6.650835,22.463945 C 6.6838918,22.618804 7.2560145,23.516772 7.2560145,23.516772 L 8.6160643,24.322519 L 9.9761142,24.689708 L 10.559553,25.423194 L 11.465807,26.082725 L 11.983934,26.009662 L 12.372418,26.184569 L 12.372418,26.302896 L 11.854647,27.695557 L 11.465718,28.282025 L 11.595361,28.57615 L 11.271654,29.674241 L 12.437641,31.800833 L 13.603181,32.827553 L 14.121754,33.560237 L 14.056531,35.100362 L 14.445461,35.979173 L 14.056531,37.665514 C 14.056531,37.665514 14.026058,37.655089 14.075688,37.823848 C 14.125763,37.992695 16.150958,39.116893 16.27971,39.021198 C 16.408017,38.92372 16.517701,38.83845 16.517701,38.83845 L 16.388503,38.472954 L 16.906274,37.95955 L 17.100783,37.446145 L 17.943063,37.15202 L 18.590476,35.538832 L 18.396413,35.100273 L 18.848871,34.440741 L 19.820794,34.219769 L 20.339366,33.046833 L 20.209723,31.581554 L 20.98678,30.481681 L 21.116423,29.381808 C 20.053082,28.854504 18.998473,28.311518 17.943063,27.76862"
991 id="path6566"
992 style="fill:url(#radialGradient9187);fill-opacity:1;stroke:url(#radialGradient9189)" />
993 </g>
994 <g
995 transform="matrix(0.468894,0,0,0.468894,50.523,-14.44107)"
996 style="fill:url(#radialGradient9191);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient8816);stroke-miterlimit:4"
997 id="g6540">
998 <path
999 d="M 26.8701,6.6933256 L 24.9795,5.9526256 L 22.7998,6.1992256 L 20.1094,6.9394256 L 19.6006,7.4335256 L 21.2725,8.5849256 L 21.2725,9.2431256 L 20.6182,9.9013256 L 21.4912,11.630324 L 22.0713,11.300224 L 22.7998,10.148825 C 23.9228,9.8016256 24.9297,9.4081256 25.9971,8.9144256 L 26.8701,6.6932256"
1000 id="path6542"
1001 style="fill:url(#radialGradient9193);fill-opacity:1;stroke:url(#radialGradient9195)" />
1002 </g>
1003 <g
1004 transform="matrix(0.468894,0,0,0.468894,50.83236,-14.75043)"
1005 style="fill:url(#radialGradient9197);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient8820);stroke-miterlimit:4"
1006 id="g6580">
1007 <path
1008 d="M 15.187259,9.6334723 L 14.823459,10.538271 L 15.550559,10.538271 L 15.914359,9.7154723 C 16.227859,9.4937723 16.539859,9.2706723 16.859159,9.0572723 L 17.586259,9.3043723 C 18.070659,9.6334723 18.555059,9.9625723 19.039859,10.291172 L 19.767359,9.6334723 L 18.967059,9.3043723 L 18.603259,8.5636723 L 17.222359,8.3990723 L 17.149559,7.9874723 L 16.495259,8.1524723 L 16.204859,8.7282723 L 15.841059,7.9875723 L 15.696059,8.3166723 L 15.768859,9.1394723 L 15.187259,9.6334723"
1009 id="path6582"
1010 style="fill:url(#radialGradient9199);fill-opacity:1;stroke:url(#radialGradient9201)" />
1011 </g>
1012 <g
1013 transform="matrix(0.468894,0,0,0.468894,50.12526,-14.48526)"
1014 style="fill:url(#radialGradient9203);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient8824);stroke-miterlimit:4"
1015 id="g6626">
1016 <path
1017 d="M 42.893123,20.729176 C 42.893123,20.97037 42.893123,20.729176 42.893123,20.729176 L 42.392832,21.295848 C 42.086175,20.934471 41.741875,20.630568 41.392249,20.313169 L 40.624781,20.4261 L 39.923602,19.633475 L 39.923602,20.614409 L 40.524337,21.068977 L 40.924185,21.521801 L 41.458539,20.917485 C 41.593045,21.169421 41.725716,21.421357 41.859304,21.673293 L 41.859304,22.428275 L 41.257651,23.107877 L 40.156625,23.863685 L 39.322775,24.69579 L 38.788421,24.089638 L 39.055598,23.410035 L 38.522071,22.80572 L 37.621014,20.87975 L 36.853546,20.011838 L 36.652658,20.237791 L 36.953898,21.333492 L 37.52057,21.975451 C 37.844212,22.909744 38.164366,23.802721 38.58937,24.69579 C 39.248406,24.69579 39.869708,24.625828 40.524245,24.54338 L 40.524245,25.072409 L 39.723541,27.036481 L 38.989217,27.86675 L 38.388482,29.152504 C 38.388482,29.857264 38.388482,30.562024 38.388482,31.266692 L 38.58937,32.098797 L 38.255812,32.475415 L 37.52057,32.929065 L 36.753102,33.571024 L 37.3879,34.288362 L 36.519988,35.045089 L 36.686721,35.534638 L 35.384807,37.008702 L 34.517813,37.008702 L 33.783489,37.462352 L 33.315425,37.462352 L 33.315425,36.858036 L 33.116373,35.647568 C 32.858102,34.889006 32.589181,34.13586 32.315668,33.382715 C 32.315668,32.826785 32.348813,32.276272 32.382049,31.720433 L 32.716526,30.965452 L 32.248461,30.05806 L 32.282524,28.811785 L 31.647726,28.094447 L 31.965125,27.056129 L 31.448674,26.470176 L 30.5467,26.470176 L 30.246378,26.130375 L 29.345321,26.697506 L 28.978619,26.28104 L 28.143851,26.998746 C 27.577179,26.356327 27.009588,25.714368 26.44209,25.072409 L 25.774974,23.485414 L 26.375709,22.579859 L 26.042151,22.202414 L 26.775556,20.463835 C 27.378127,19.714271 28.007508,18.995188 28.644142,18.273443 L 29.779231,17.971285 L 31.047083,17.820619 L 31.914995,18.04749 L 33.14961,19.292847 L 33.583611,18.80238 L 34.183428,18.727093 L 35.318517,19.104538 L 36.18643,19.104538 L 36.787165,18.575509 L 37.054342,18.198064 L 36.452688,17.820619 L 35.451188,17.745332 C 35.173269,17.359808 34.914998,16.954543 34.58502,16.611988 L 34.250544,16.762653 L 34.116955,17.745332 L 33.51622,17.065729 L 33.38355,16.309003 L 32.716434,15.781811 L 32.448339,15.781811 L 33.116281,16.536792 L 32.849104,17.216395 L 32.315577,17.367061 L 32.649135,16.687458 L 32.047481,16.386218 L 31.514872,15.781903 L 30.512453,16.007855 L 30.379783,16.309095 L 29.779048,16.687458 L 29.44549,17.518645 L 28.61164,17.933733 L 28.24402,17.518645 L 27.844172,17.518645 L 27.844172,16.158521 L 28.712084,15.704871 L 29.3792,15.704871 L 29.244694,15.176761 L 28.712084,14.647732 L 29.612315,14.458504 L 30.112606,13.89275 L 30.512453,13.212229 L 31.247695,13.212229 L 31.046807,12.684119 L 31.514872,12.381961 L 31.514872,12.986276 L 32.515454,13.212229 L 33.516037,12.381961 L 33.583244,12.003598 L 34.450238,11.399741 C 34.13642,11.438762 33.822602,11.467407 33.515945,11.550866 L 33.515945,10.870437 L 33.849503,10.114996 L 33.515945,10.114996 L 32.782907,10.794599 L 32.582019,11.172503 L 32.782907,11.701991 L 32.448431,12.607546 L 31.914903,12.305388 L 31.448674,11.777278 L 30.713433,12.305388 L 30.446256,11.097216 L 31.714107,10.266488 L 31.714107,9.8128376 L 32.515638,9.284268 L 33.783489,8.981651 L 34.651401,9.284268 L 36.252719,9.5864259 L 35.852871,10.03925 L 34.984959,10.03925 L 35.852871,10.945724 L 36.519988,10.190742 L 36.72262,9.8585606 C 36.72262,9.8585606 39.281551,12.15206 40.743955,14.660861 C 42.206359,17.170489 42.893123,20.128441 42.893123,20.729176 z "
1018 id="path6628"
1019 style="fill:url(#radialGradient9205);fill-opacity:1;stroke:url(#radialGradient9207)" />
1020 </g>
1021 </g>
1022 </g>
1023 </g>
1024</svg>
01025
=== added file 'sources/wiki.svg'
--- sources/wiki.svg 1970-01-01 00:00:00 +0000
+++ sources/wiki.svg 2009-12-23 09:03:14 +0000
@@ -0,0 +1,146 @@
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
4<svg
5 xmlns:dc="http://purl.org/dc/elements/1.1/"
6 xmlns:cc="http://creativecommons.org/ns#"
7 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8 xmlns:svg="http://www.w3.org/2000/svg"
9 xmlns="http://www.w3.org/2000/svg"
10 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12 width="64"
13 height="64"
14 id="svg2"
15 sodipodi:version="0.32"
16 inkscape:version="0.47pre4 r22446"
17 version="1.0"
18 sodipodi:docname="wiki.svg"
19 inkscape:output_extension="org.inkscape.output.svg.inkscape"
20 inkscape:export-filename="/home/doctormo/Desktop/wiki.png"
21 inkscape:export-xdpi="45"
22 inkscape:export-ydpi="45"
23 sodipodi:modified="TRUE">
24 <defs
25 id="defs4">
26 <inkscape:perspective
27 sodipodi:type="inkscape:persp3d"
28 inkscape:vp_x="0 : 21.69709 : 1"
29 inkscape:vp_y="0 : 1000 : 0"
30 inkscape:vp_z="59.126747 : 21.69709 : 1"
31 inkscape:persp3d-origin="29.563374 : 14.464727 : 1"
32 id="perspective22" />
33 <filter
34 inkscape:collect="always"
35 id="filter3283"
36 color-interpolation-filters="sRGB">
37 <feGaussianBlur
38 inkscape:collect="always"
39 stdDeviation="0.95617116"
40 id="feGaussianBlur3285" />
41 </filter>
42 </defs>
43 <sodipodi:namedview
44 id="base"
45 pagecolor="#ffffff"
46 bordercolor="#666666"
47 borderopacity="1.0"
48 gridtolerance="10000"
49 guidetolerance="10"
50 objecttolerance="10"
51 inkscape:pageopacity="0.0"
52 inkscape:pageshadow="2"
53 inkscape:zoom="5.4679048"
54 inkscape:cx="0.22298198"
55 inkscape:cy="26.559685"
56 inkscape:document-units="px"
57 inkscape:current-layer="layer1"
58 inkscape:window-width="1272"
59 inkscape:window-height="718"
60 inkscape:window-x="0"
61 inkscape:window-y="25"
62 showgrid="false"
63 inkscape:window-maximized="0" />
64 <metadata
65 id="metadata7">
66 <rdf:RDF>
67 <cc:Work
68 rdf:about="">
69 <dc:format>image/svg+xml</dc:format>
70 <dc:type
71 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
72 <dc:title></dc:title>
73 </cc:Work>
74 </rdf:RDF>
75 </metadata>
76 <g
77 inkscape:label="Layer 1"
78 inkscape:groupmode="layer"
79 id="layer1"
80 transform="translate(77.655538,-244.21906)">
81 <g
82 id="g3297"
83 transform="matrix(1,0,0,1.120085,2.7432811,-45.700785)">
84 <path
85 sodipodi:nodetypes="cssssssssssssssssssss"
86 id="path3281"
87 d="m -54.506063,269.59105 c -2.767306,1.43804 0.18675,5.71798 -5.676129,6.64804 -6.469743,1.02634 -6.105448,-4.1045 -10.362392,-3.84835 -4.060364,0.24431 -6.230665,3.15224 -6.024566,6.02371 0.41214,5.74213 10.508065,1.67689 10.466839,5.18225 -0.05122,4.3548 -6.964098,5.27328 -6.793513,9.06345 0.155404,3.45292 4.235569,6.02572 8.72015,5.54204 4.332602,-0.46729 2.938384,-9.03778 8.778964,-9.60294 2.878183,-0.2785 7.055064,0.81864 7.942306,4.08718 1.559305,5.74437 -5.731641,5.27705 -4.886003,9.8074 0.661412,3.54338 8.149228,6.5055 11.105256,3.51404 2.468796,-2.49839 1.336002,-8.71823 6.851613,-9.43429 3.278043,-0.42556 4.859095,4.82295 9.117666,4.079 4.873724,-0.85141 6.361999,-3.26374 5.936487,-6.25267 -0.620154,-4.35616 -11.570507,-0.0199 -9.974799,-5.23946 0.708049,-2.31599 6.481854,-5.73464 5.515633,-8.26748 -1.294544,-3.39349 -5.554924,-3.63138 -7.096787,-2.58269 -2.551985,1.73571 -2.266302,6.17957 -6.531545,6.95768 -5.817115,1.06122 -9.278888,-1.09763 -10.182422,-3.13032 -2.001416,-4.50262 6.202865,-4.96357 5.133889,-9.11568 -0.870894,-3.38271 -8.824345,-5.10227 -12.040647,-3.43091 z"
88 style="opacity:0.6;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3283)" />
89 <path
90 sodipodi:nodetypes="cssssssssssssssssssss"
91 id="path2296"
92 d="m -55.079005,265.97139 c -2.767306,1.43804 0.18675,5.71798 -5.676129,6.64804 -6.469743,1.02634 -6.105448,-4.1045 -10.362392,-3.84835 -4.060364,0.24431 -6.230665,3.15224 -6.024566,6.02371 0.41214,5.74213 10.508065,1.67689 10.466839,5.18225 -0.05122,4.3548 -6.964098,5.27328 -6.793513,9.06345 0.155404,3.45292 4.235569,6.02572 8.72015,5.54204 4.332602,-0.46729 2.938384,-9.03778 8.778964,-9.60294 2.878183,-0.2785 7.055064,0.81864 7.942306,4.08718 1.559305,5.74437 -5.731641,5.27705 -4.886003,9.8074 0.661412,3.54338 8.149228,6.5055 11.105256,3.51404 2.468796,-2.49839 1.336002,-8.71823 6.851613,-9.43429 3.278043,-0.42556 4.859095,4.82295 9.117666,4.079 4.873724,-0.85141 6.361999,-3.26374 5.936487,-6.25267 -0.620154,-4.35616 -11.570507,-0.0199 -9.974799,-5.23946 0.708049,-2.31599 6.481854,-5.73464 5.515633,-8.26748 -1.294544,-3.39349 -5.554924,-3.63138 -7.096787,-2.58269 -2.551985,1.73571 -2.266302,6.17957 -6.531545,6.95768 -5.817115,1.06122 -9.278888,-1.09763 -10.182422,-3.13032 -2.001416,-4.50262 6.202865,-4.96357 5.133889,-9.11568 -0.870894,-3.38271 -8.824345,-5.10227 -12.040647,-3.43091 z"
93 style="fill:#b8b8b8;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
94 <path
95 sodipodi:nodetypes="cssc"
96 id="path3269"
97 d="m -72.072539,290.28378 c 1.069869,2.87892 5.227649,3.62466 7.345158,3.07214 3.624012,-0.94562 2.425851,-5.71938 5.570437,-8.12386 2.302229,-1.76037 6.084911,-1.68602 8.533571,-0.48"
98 style="fill:none;stroke:#000000;stroke-width:1.39999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.56502243;stroke-dasharray:none" />
99 <path
100 sodipodi:nodetypes="cssssc"
101 id="path3271"
102 d="m -51.141358,299.85762 c 2.339898,2.1422 4.826608,3.11815 6.944117,2.56562 3.624012,-0.94563 2.789804,-6.85739 5.934391,-9.26187 2.302228,-1.76037 5.615925,-1.48453 7.478914,0.56588 2.984865,3.28517 5.537589,2.61569 8.033586,1.14916 1.596173,-0.93783 1.935479,-2.32186 1.760297,-3.90737"
103 style="fill:none;stroke:#000000;stroke-width:1.39999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.56502243;stroke-dasharray:none" />
104 <path
105 sodipodi:nodetypes="cc"
106 id="path3275"
107 d="m -26.473069,275.86616 c 3.452547,3.07212 -3.515779,6.23647 -4.372379,9.60335"
108 style="fill:none;stroke:#000000;stroke-width:1.39999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.56502243;stroke-dasharray:none" />
109 <path
110 sodipodi:nodetypes="cc"
111 id="path3279"
112 d="m -65.754774,279.94437 c 0.792727,-4.23155 -8.53736,-1.58559 -9.782856,-3.72522"
113 style="fill:none;stroke:#000000;stroke-width:1.39999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.56502243;stroke-dasharray:none" />
114 <path
115 sodipodi:nodetypes="csc"
116 id="path3287"
117 d="m -50.870495,300.15959 c -3.665933,-4.30986 4.273899,-5.12602 4.231542,-8.83105 -0.03639,-3.18311 -1.677262,-5.5179 -3.863581,-6.62328"
118 style="fill:none;stroke:#ffffff;stroke-width:1.39999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.48430493;stroke-dasharray:none" />
119 <path
120 sodipodi:nodetypes="cc"
121 id="path3289"
122 d="m -72.120195,290.31665 c -2.20612,-3.73905 5.849925,-5.15918 6.439303,-10.21089"
123 style="fill:none;stroke:#ffffff;stroke-width:1.39999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.48430493;stroke-dasharray:none" />
124 <path
125 sodipodi:nodetypes="csssc"
126 id="path3291"
127 d="m -75.523827,276.15019 c -1.076679,-2.39627 0.807956,-6.0878 4.231542,-6.43931 2.735968,-0.28091 4.047562,4.04757 7.911144,4.23155 3.863582,0.18398 6.556338,-0.38545 7.543184,-4.04757 1.040922,-3.8628 2.64962,-4.12425 9.566965,-2.20776"
128 style="fill:none;stroke:#ffffff;stroke-width:1.39999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.48430493;stroke-dasharray:none" />
129 <path
130 sodipodi:nodetypes="cssc"
131 id="path3293"
132 d="m -49.582634,277.98999 c 1.609231,2.67581 4.484434,5.37868 10.486865,5.05945 4.436315,-0.23594 5.795759,-3.24702 7.543184,-6.80726 0.615166,-1.25335 3.049484,-1.08772 4.875472,-0.27597"
133 style="fill:none;stroke:#ffffff;stroke-width:1.39999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.48430493;stroke-dasharray:none" />
134 <path
135 sodipodi:nodetypes="cc"
136 id="path3277"
137 d="m -46.426159,267.44418 c 7.50848,4.4386 -5.46013,5.87106 -2.946945,10.87221"
138 style="fill:none;stroke:#000000;stroke-width:1.39999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.56502243;stroke-dasharray:none" />
139 <path
140 sodipodi:nodetypes="csc"
141 id="path3295"
142 d="m -21.15771,290.7766 c -0.133681,-1.47283 -4.200975,-0.88812 -7.052178,-1.60033 -2.426427,-0.6061 -3.819914,-2.48126 -2.790757,-3.82708"
143 style="fill:none;stroke:#ffffff;stroke-width:1.39999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.48430493;stroke-dasharray:none" />
144 </g>
145 </g>
146</svg>

Subscribers

People subscribed via source and target branches