Commit 7afdf49bc112921c407043520570a39bea85eaa3

Authored by Antonio Terceiro
1 parent c48acf16

ActionItem1046: new control panel arrangement

Also did a general cleanup in several places.
Showing 44 changed files with 48 additions and 1081 deletions   Show diff stats
app/helpers/application_helper.rb
@@ -168,21 +168,6 @@ module ApplicationHelper @@ -168,21 +168,6 @@ module ApplicationHelper
168 text_area(object, method, { :rows => 10, :cols => 64 }.merge(options)) 168 text_area(object, method, { :rows => 10, :cols => 64 }.merge(options))
169 end 169 end
170 170
171 - def file_manager(&block)  
172 - concat(  
173 - content_tag('div',  
174 - content_tag('div', capture(&block) + '<br style="clear:left;"/>&nbsp;'),  
175 - :class => 'file-manager'),  
176 - block.binding)  
177 - end  
178 -  
179 - def file_manager_button(title, icon, url)  
180 - content_tag( 'div',  
181 - link_to(image_tag(icon, :alt => title, :title => title) +  
182 - content_tag('span', title),  
183 - url), :class => 'file-manager-button' )  
184 - end  
185 -  
186 def hide(id) 171 def hide(id)
187 "Element.hide(#{id.inspect});" 172 "Element.hide(#{id.inspect});"
188 end 173 end
app/helpers/profile_editor_helper.rb
@@ -133,4 +133,17 @@ module ProfileEditorHelper @@ -133,4 +133,17 @@ module ProfileEditorHelper
133 labelled_form_field(__('Preferred domain name:'), select(object, :preferred_domain_id, domains.map {|item| [item.name, item.id]}, :prompt => '&lt;' + _('Select domain') + '&gt;')) 133 labelled_form_field(__('Preferred domain name:'), select(object, :preferred_domain_id, domains.map {|item| [item.name, item.id]}, :prompt => '&lt;' + _('Select domain') + '&gt;'))
134 end 134 end
135 135
  136 + def control_panel(&block)
  137 + concat(
  138 + content_tag('div',
  139 + content_tag('div', capture(&block) + '<br style="clear:left;"/>&nbsp;'),
  140 + :class => 'control-panel'),
  141 + block.binding)
  142 + end
  143 +
  144 + def control_panel_button(title, icon, url)
  145 + link_to title, url, :style => 'background-image: url(%s)' % image_path('control-panel/' + 'system-users.png') # TODO use icon argument
  146 + end
  147 +
  148 +
136 end 149 end
app/views/profile_editor/index.rhtml
1 -<div id="profile-editor-index">  
2 -  
3 - <h1 class="block-title">  
4 - <div class='control-panel-title'><%= profile.name %></div>  
5 - <div class='control-panel-subtitle'><%= _('Control Panel') %></div>  
6 - </h1> 1 +<h1 class='control-panel-title'><%= _('Control Panel') %> &mdash; <%= profile.name %></h1>
7 2
8 <%= render :partial => 'pending_tasks' %> 3 <%= render :partial => 'pending_tasks' %>
9 4
10 <div class='control-panel'> 5 <div class='control-panel'>
11 6
12 -<% file_manager do %> 7 +<% control_panel do %>
13 8
14 - <%= file_manager_button(_('Info and settings'), 'icons-app/edit-profile.png', :controller => 'profile_editor', :action => 'edit') %> 9 + <%= control_panel_button(_('Info and settings'), 'edit-profile', :controller => 'profile_editor', :action => 'edit') %>
15 10
16 - <%= file_manager_button(_('Mail settings'), 'icons-app/mail.png', :controller => 'mailconf') if profile.person? && MailConf.enabled? %> 11 + <%= control_panel_button(_('Mail settings'), 'mail', :controller => 'mailconf') if profile.person? && MailConf.enabled? %>
17 12
18 - <%= file_manager_button(_('Tasks'), 'icons-app/todo.png', :controller => 'tasks', :action => 'index') %> 13 + <%= control_panel_button(_('Tasks'), 'todo', :controller => 'tasks', :action => 'index') %>
19 14
20 - <%= file_manager_button(_('Edit sideboxes'), 'icons-app/design-editor.png', :controller => 'profile_design', :action => 'index') %> 15 + <%= control_panel_button(_('Edit sideboxes'), 'design-editor', :controller => 'profile_design', :action => 'index') %>
21 16
22 - <%= file_manager_button(_('Edit Appearance'), 'icons-app/design-editor.png', :controller => 'themes', :action => 'index') %> 17 + <%= control_panel_button(_('Edit Appearance'), 'design-editor', :controller => 'themes', :action => 'index') %>
23 18
24 - <%= file_manager_button(_('Edit Header and Footer'), 'icons-app/header-and-footer.png', :controller => 'profile_editor', :action => 'header_footer') unless profile.enterprise? && environment.enabled?('disable_header_and_footer') && !user.is_admin?(environment) %> 19 + <%= control_panel_button(_('Edit Header and Footer'), 'header-and-footer', :controller => 'profile_editor', :action => 'header_footer') unless profile.enterprise? && environment.enabled?('disable_header_and_footer') && !user.is_admin?(environment) %>
25 20
26 - <%= file_manager_button(_('Manage Content'), 'icons-app/cms.png', :controller => 'cms') if !environment.enabled?('disable_cms') || profile.community? %> 21 + <%= control_panel_button(_('Manage Content'), 'cms', :controller => 'cms') if !environment.enabled?('disable_cms') || profile.community? %>
27 22
28 <% unless profile.enterprise? %> 23 <% unless profile.enterprise? %>
29 <% if profile.has_blog? %> 24 <% if profile.has_blog? %>
30 - <%= file_manager_button(_('Configure blog'), 'icons-app/blog.png', :controller => 'cms', :action => 'edit', :id => profile.blog) %> 25 + <%= control_panel_button(_('Configure blog'), 'blog', :controller => 'cms', :action => 'edit', :id => profile.blog) %>
31 <% else %> 26 <% else %>
32 - <%= file_manager_button(_('Create blog'), 'icons-app/blog-disabled.png', :controller => 'cms', :action => 'new', :type => 'Blog') %> 27 + <%= control_panel_button(_('Create blog'), 'blog-disabled', :controller => 'cms', :action => 'new', :type => 'Blog') %>
33 <% end %> 28 <% end %>
34 <% end %> 29 <% end %>
35 30
36 - <%= file_manager_button(_('Change Password'), 'icons-app/change-password.png', :controller => 'account', :action => 'change_password') if profile.person? %> 31 + <%= control_panel_button(_('Change Password'), 'change-password', :controller => 'account', :action => 'change_password') if profile.person? %>
37 32
38 - <%= file_manager_button(__('Manage friends'), 'icons-app/friends.png', :controller => 'friends', :action => 'index') if profile.person? %> 33 + <%= control_panel_button(__('Manage friends'), 'friends', :controller => 'friends', :action => 'index') if profile.person? %>
39 34
40 - <%= file_manager_button(_('Manage Members'), 'icons-app/members.png', :controller => 'profile_members') if profile.organization? && user.has_permission?(:manage_memberships, profile) %> 35 + <%= control_panel_button(_('Manage Members'), 'members', :controller => 'profile_members') if profile.organization? && user.has_permission?(:manage_memberships, profile) %>
41 36
42 - <%= file_manager_button(_('Manage Products and Services'), 'icons-app/products.png', :controller => 'manage_products') if profile.enterprise? && !environment.enabled?('disable_products_for_enterprises') %> 37 + <%= control_panel_button(_('Manage Products and Services'), 'products', :controller => 'manage_products') if profile.enterprise? && !environment.enabled?('disable_products_for_enterprises') %>
43 38
44 <% if !environment.enabled?('disable_asset_enterprises') %> 39 <% if !environment.enabled?('disable_asset_enterprises') %>
45 <% if profile.is_validation_entity? %> 40 <% if profile.is_validation_entity? %>
46 - <%= file_manager_button(__('Enterprise Validation'), 'icons-app/validation.png', :controller => 'enterprise_validation') %> 41 + <%= control_panel_button(__('Enterprise Validation'), 'validation', :controller => 'enterprise_validation') %>
47 <% end %> 42 <% end %>
48 <% if profile.person? %> 43 <% if profile.person? %>
49 - <%= file_manager_button(__('Favorite Enterprises'), 'icons-app/favorites.png', :controller => 'favorite_enterprises') %> 44 + <%= control_panel_button(__('Favorite Enterprises'), 'favorites', :controller => 'favorite_enterprises') %>
50 <% end %> 45 <% end %>
51 <% end %> 46 <% end %>
52 47
53 <% if profile.enterprise? %> 48 <% if profile.enterprise? %>
54 <% if profile.enabled? %> 49 <% if profile.enabled? %>
55 - <%= file_manager_button(__('Disable Enterprise'), 'icons-app/disable.png', :action => 'disable') %> 50 + <%= control_panel_button(__('Disable Enterprise'), 'disable', :action => 'disable') %>
56 <% else %> 51 <% else %>
57 - <%= file_manager_button(__('Enable Enterprise'), 'icons-app/enable.png', :action => 'enable') %> 52 + <%= control_panel_button(__('Enable Enterprise'), 'enable', :action => 'enable') %>
58 <% end %> 53 <% end %>
59 <% end %> 54 <% end %>
60 55
61 - <%= file_manager_button(_('Manage my groups'), 'icons-app/groups.png', :controller => 'memberships') if profile.person? %> 56 + <%= control_panel_button(_('Manage my groups'), 'groups', :controller => 'memberships') if profile.person? %>
62 57
63 <% end %> 58 <% end %>
64 59
65 </div> 60 </div>
66 -  
67 -</div><!-- end id="profile-editor-index" -->  
public/images/icons-app/README
@@ -1,108 +0,0 @@ @@ -1,108 +0,0 @@
1 -dlg-neu icons in Noosfero  
2 -=========================  
3 -  
4 -The icons in this directory are taken from the icon themes for GNOME.  
5 -We take the SVG files and convert to 64x64 PNG images.  
6 -  
7 -Structure  
8 -=========  
9 -  
10 -To keep a trace back to the theme theme, when rasterizing the SVG files we keep  
11 -the original filenames (replacing .svg by .png, obviously) and create symbolic  
12 -links with names more sensible for Noosfero.  
13 -  
14 -Adding a new icons  
15 -==================  
16 -  
17 -Use the fantastic script get-icon.sh! Suppose you want to add a new icon for  
18 -the "favorites". You find that dlg-neu theme has a nice button under apps,  
19 -called gtk-open.svg. You call the script as follows:  
20 -  
21 -$ sh get-icon.sh favorites dlg-neu apps/epiphany-bookmarks.svg  
22 -  
23 -The script generates the PNG and create symbolic link from PNG using ICON name.  
24 -  
25 -Source for icons  
26 -================  
27 -  
28 -Icon Source Theme  
29 ------------------------------- ------------  
30 -gnome-settings-background.png dlg-neu  
31 -gnome-settings-theme.png Nuovo  
32 -password.png dlg-neu  
33 -abiword_48.png dlg-neu  
34 -gnome-other.png Nuovo  
35 -user_icon.png dlg-neu  
36 -gnome-home.png Nuovo  
37 -gtk-yes.png dlg-neu  
38 -users.png (locally modified) dlg-neu  
39 -stock_todo.png Nuovo  
40 -friends.png (modified version of users.png) Nuovo  
41 -gtk-folder.png Nuovo  
42 -epiphany-bookmarks.png dlg-neu  
43 -mozilla-mail.png dlg-neu  
44 -gtk-cancel.png dlg-neu  
45 -emblem-important.png dlg-neu  
46 -gnome-globe.png gnome  
47 -header-and-footer.svg Noosfero team  
48 -livejournal.png dlg-neu  
49 -### END OF ICONS LISTING ###  
50 -  
51 -Icons rasterization  
52 -===================  
53 -  
54 -With rsvg, from the librsvg2-bin package (i.e. we use the same rasterization  
55 -library as GNOME, so the icons must look like they do in GNOME).  
56 -  
57 -$ rsvg -w 64 -h 64 user_icon.svg user_icon.png  
58 -  
59 -Licensing  
60 -=========  
61 -  
62 -dlg-neu and Nuovo  
63 ------------------  
64 -  
65 -Their License is as follows (taken from  
66 -/usr/share/doc/gnome-icon-theme-dlg-neu/copyright and  
67 -/usr/share/doc/gnome-icon-theme-nuovo/copyright on a Debian system):  
68 -  
69 - This package is free software; you can redistribute it and/or modify  
70 - it under the terms of the GNU General Public License as published by  
71 - the Free Software Foundation; either version 2 of the License, or  
72 - (at your option) any later version.  
73 -  
74 - This package is distributed in the hope that it will be useful,  
75 - but WITHOUT ANY WARRANTY; without even the implied warranty of  
76 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the  
77 - GNU General Public License for more details.  
78 -  
79 - You should have received a copy of the GNU General Public License  
80 - along with this package; if not, write to the Free Software  
81 - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  
82 - 02110-1301 USA  
83 -  
84 -On Debian systems, the complete text of the GNU General  
85 -Public License can be found in `/usr/share/common-licenses/GPL'.  
86 -  
87 -gnome  
88 ------  
89 -  
90 -Their License is as follows (taken from  
91 -/usr/share/doc/gnome-icon-theme/copyright on a Debian system):  
92 -  
93 - This package is free software; you can redistribute it and/or modify  
94 - it under the terms of the GNU General Public License as published by  
95 - the Free Software Foundation; version 2 dated June, 1991.  
96 -  
97 - This package is distributed in the hope that it will be useful,  
98 - but WITHOUT ANY WARRANTY; without even the implied warranty of  
99 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the  
100 - GNU General Public License for more details.  
101 -  
102 - You should have received a copy of the GNU General Public License  
103 - along with this package; if not, write to the Free Software  
104 - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,  
105 - USA.  
106 -  
107 -On Debian GNU/Linux systems, the complete text of the GNU General  
108 -Public License can be found in `/usr/share/common-licenses/GPL'.  
public/images/icons-app/abiword_48.png

4.76 KB

public/images/icons-app/blog-disabled.png

1.85 KB

public/images/icons-app/blog.png
@@ -1 +0,0 @@ @@ -1 +0,0 @@
1 -livejournal.png  
2 \ No newline at end of file 0 \ No newline at end of file
public/images/icons-app/categories.png
@@ -1 +0,0 @@ @@ -1 +0,0 @@
1 -gtk-folder.png  
2 \ No newline at end of file 0 \ No newline at end of file
public/images/icons-app/change-password.png
@@ -1 +0,0 @@ @@ -1 +0,0 @@
1 -password.png  
2 \ No newline at end of file 0 \ No newline at end of file
public/images/icons-app/cms.png
@@ -1 +0,0 @@ @@ -1 +0,0 @@
1 -abiword_48.png  
2 \ No newline at end of file 0 \ No newline at end of file
public/images/icons-app/consumed_product.png
@@ -1 +0,0 @@ @@ -1 +0,0 @@
1 -fr_stock_add.png  
2 \ No newline at end of file 0 \ No newline at end of file
public/images/icons-app/disable.png
@@ -1 +0,0 @@ @@ -1 +0,0 @@
1 -gtk-cancel.png  
2 \ No newline at end of file 0 \ No newline at end of file
public/images/icons-app/edit-profile.png

6.52 KB

public/images/icons-app/enable.png

2.69 KB

public/images/icons-app/epiphany-bookmarks.png

2.85 KB

public/images/icons-app/favorites.png
@@ -1 +0,0 @@ @@ -1 +0,0 @@
1 -epiphany-bookmarks.png  
2 \ No newline at end of file 0 \ No newline at end of file
public/images/icons-app/fr_stock_add.png

4.78 KB

public/images/icons-app/friends.png

3.61 KB

public/images/icons-app/friends.svg
@@ -1,361 +0,0 @@ @@ -1,361 +0,0 @@
1 -<?xml version="1.0" encoding="UTF-8" standalone="no"?>  
2 -<!-- Created with Inkscape (http://www.inkscape.org/) -->  
3 -<svg  
4 - xmlns:dc="http://purl.org/dc/elements/1.1/"  
5 - xmlns:cc="http://web.resource.org/cc/"  
6 - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"  
7 - xmlns:svg="http://www.w3.org/2000/svg"  
8 - xmlns="http://www.w3.org/2000/svg"  
9 - xmlns:xlink="http://www.w3.org/1999/xlink"  
10 - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"  
11 - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"  
12 - sodipodi:docname="friends.svg"  
13 - sodipodi:docbase="/home/terceiro/src/noosfero/public/images/icons-app"  
14 - inkscape:version="0.45.1"  
15 - sodipodi:version="0.32"  
16 - id="svg3335"  
17 - height="102.40000pt"  
18 - width="102.40000pt"  
19 - inkscape:output_extension="org.inkscape.output.svg.inkscape">  
20 - <defs  
21 - id="defs3">  
22 - <linearGradient  
23 - id="linearGradient2091">  
24 - <stop  
25 - style="stop-color:#25a232;stop-opacity:1.0000000;"  
26 - offset="0.0000000"  
27 - id="stop2093" />  
28 - <stop  
29 - style="stop-color:#006500;stop-opacity:1.0000000;"  
30 - offset="1.0000000"  
31 - id="stop2095" />  
32 - </linearGradient>  
33 - <linearGradient  
34 - id="linearGradient4130"  
35 - inkscape:collect="always">  
36 - <stop  
37 - id="stop4132"  
38 - offset="0"  
39 - style="stop-color:#ffffff;stop-opacity:1;" />  
40 - <stop  
41 - id="stop4134"  
42 - offset="1"  
43 - style="stop-color:#ffffff;stop-opacity:0;" />  
44 - </linearGradient>  
45 - <linearGradient  
46 - id="linearGradient4118">  
47 - <stop  
48 - id="stop4120"  
49 - offset="0"  
50 - style="stop-color:#ffd99b;stop-opacity:1;" />  
51 - <stop  
52 - id="stop4122"  
53 - offset="1.0000000"  
54 - style="stop-color:#b2986c;stop-opacity:1.0000000;" />  
55 - </linearGradient>  
56 - <linearGradient  
57 - id="linearGradient4105">  
58 - <stop  
59 - id="stop4107"  
60 - offset="0.0000000"  
61 - style="stop-color:#25a2ff;stop-opacity:1.0000000;" />  
62 - <stop  
63 - id="stop4109"  
64 - offset="1.0000000"  
65 - style="stop-color:#00659a;stop-opacity:1.0000000;" />  
66 - </linearGradient>  
67 - <linearGradient  
68 - gradientUnits="userSpaceOnUse"  
69 - y2="85.068516"  
70 - x2="100.61058"  
71 - y1="85.068516"  
72 - x1="16.062045"  
73 - id="linearGradient4111"  
74 - xlink:href="#linearGradient4105"  
75 - inkscape:collect="always" />  
76 - <linearGradient  
77 - y2="8.2969255"  
78 - x2="35.607880"  
79 - y1="113.85787"  
80 - x1="73.640739"  
81 - gradientUnits="userSpaceOnUse"  
82 - id="linearGradient4114"  
83 - xlink:href="#linearGradient4105"  
84 - inkscape:collect="always" />  
85 - <radialGradient  
86 - gradientUnits="userSpaceOnUse"  
87 - r="27.627054"  
88 - fy="45.286964"  
89 - fx="57.106434"  
90 - cy="45.286964"  
91 - cx="57.106434"  
92 - id="radialGradient4124"  
93 - xlink:href="#linearGradient4118"  
94 - inkscape:collect="always" />  
95 - <linearGradient  
96 - gradientUnits="userSpaceOnUse"  
97 - y2="96.615082"  
98 - x2="71.071434"  
99 - y1="30.543657"  
100 - x1="9.5745220"  
101 - id="linearGradient4136"  
102 - xlink:href="#linearGradient4130"  
103 - inkscape:collect="always" />  
104 - <linearGradient  
105 - y2="8.2969255"  
106 - x2="35.607880"  
107 - y1="113.85787"  
108 - x1="73.640739"  
109 - gradientUnits="userSpaceOnUse"  
110 - id="linearGradient4144"  
111 - xlink:href="#linearGradient4105"  
112 - inkscape:collect="always" />  
113 - <linearGradient  
114 - y2="96.615082"  
115 - x2="71.071434"  
116 - y1="30.543657"  
117 - x1="9.5745220"  
118 - gradientUnits="userSpaceOnUse"  
119 - id="linearGradient4146"  
120 - xlink:href="#linearGradient4130"  
121 - inkscape:collect="always" />  
122 - <radialGradient  
123 - r="27.627054"  
124 - fy="45.286964"  
125 - fx="57.106434"  
126 - cy="45.286964"  
127 - cx="57.106434"  
128 - gradientUnits="userSpaceOnUse"  
129 - id="radialGradient4148"  
130 - xlink:href="#linearGradient4118"  
131 - inkscape:collect="always" />  
132 - <linearGradient  
133 - y2="8.2969255"  
134 - x2="35.607880"  
135 - y1="113.85787"  
136 - x1="73.640739"  
137 - gradientUnits="userSpaceOnUse"  
138 - id="linearGradient4160"  
139 - xlink:href="#linearGradient4105"  
140 - inkscape:collect="always" />  
141 - <linearGradient  
142 - y2="96.615082"  
143 - x2="71.071434"  
144 - y1="30.543657"  
145 - x1="9.5745220"  
146 - gradientUnits="userSpaceOnUse"  
147 - id="linearGradient4162"  
148 - xlink:href="#linearGradient4130"  
149 - inkscape:collect="always" />  
150 - <radialGradient  
151 - r="27.627054"  
152 - fy="45.286964"  
153 - fx="57.106434"  
154 - cy="45.286964"  
155 - cx="57.106434"  
156 - gradientUnits="userSpaceOnUse"  
157 - id="radialGradient4164"  
158 - xlink:href="#linearGradient4118"  
159 - inkscape:collect="always" />  
160 - <linearGradient  
161 - gradientTransform="translate(-84.09520,-4.477295)"  
162 - y2="96.615082"  
163 - x2="71.071434"  
164 - y1="30.543657"  
165 - x1="9.5745220"  
166 - gradientUnits="userSpaceOnUse"  
167 - id="linearGradient4169"  
168 - xlink:href="#linearGradient4130"  
169 - inkscape:collect="always" />  
170 - <linearGradient  
171 - gradientTransform="translate(-84.09520,-4.477295)"  
172 - y2="8.2969255"  
173 - x2="35.607880"  
174 - y1="113.85787"  
175 - x1="73.640739"  
176 - gradientUnits="userSpaceOnUse"  
177 - id="linearGradient4172"  
178 - xlink:href="#linearGradient4105"  
179 - inkscape:collect="always" />  
180 - <linearGradient  
181 - gradientTransform="translate(6.060915,-4.04061)"  
182 - y2="96.615082"  
183 - x2="71.071434"  
184 - y1="30.543657"  
185 - x1="9.5745220"  
186 - gradientUnits="userSpaceOnUse"  
187 - id="linearGradient4184"  
188 - xlink:href="#linearGradient4130"  
189 - inkscape:collect="always" />  
190 - <linearGradient  
191 - gradientTransform="translate(6.060915,-4.04061)"  
192 - y2="127.09025"  
193 - x2="84.893593"  
194 - y1="81.000732"  
195 - x1="53.640739"  
196 - gradientUnits="userSpaceOnUse"  
197 - id="linearGradient4187"  
198 - xlink:href="#linearGradient4105"  
199 - inkscape:collect="always" />  
200 - <radialGradient  
201 - inkscape:collect="always"  
202 - xlink:href="#linearGradient4118"  
203 - id="radialGradient1354"  
204 - gradientUnits="userSpaceOnUse"  
205 - cx="57.106434"  
206 - cy="45.286964"  
207 - fx="57.106434"  
208 - fy="45.286964"  
209 - r="27.627054" />  
210 - <linearGradient  
211 - inkscape:collect="always"  
212 - xlink:href="#linearGradient4130"  
213 - id="linearGradient1359"  
214 - gradientUnits="userSpaceOnUse"  
215 - gradientTransform="translate(160.9926,-28.93271)"  
216 - x1="9.5745220"  
217 - y1="30.543657"  
218 - x2="71.071434"  
219 - y2="96.615082" />  
220 - <linearGradient  
221 - inkscape:collect="always"  
222 - xlink:href="#linearGradient2091"  
223 - id="linearGradient1362"  
224 - gradientUnits="userSpaceOnUse"  
225 - gradientTransform="translate(160.9926,-28.93271)"  
226 - x1="53.640739"  
227 - y1="81.000732"  
228 - x2="84.893593"  
229 - y2="127.09025" />  
230 - <linearGradient  
231 - inkscape:collect="always"  
232 - xlink:href="#linearGradient2091"  
233 - id="linearGradient2104"  
234 - gradientUnits="userSpaceOnUse"  
235 - gradientTransform="translate(160.9926,-28.93271)"  
236 - x1="53.640739"  
237 - y1="81.000732"  
238 - x2="84.893593"  
239 - y2="127.09025" />  
240 - <linearGradient  
241 - inkscape:collect="always"  
242 - xlink:href="#linearGradient4130"  
243 - id="linearGradient2106"  
244 - gradientUnits="userSpaceOnUse"  
245 - gradientTransform="translate(160.9926,-28.93271)"  
246 - x1="9.5745220"  
247 - y1="30.543657"  
248 - x2="71.071434"  
249 - y2="96.615082" />  
250 - <radialGradient  
251 - inkscape:collect="always"  
252 - xlink:href="#linearGradient4118"  
253 - id="radialGradient2108"  
254 - gradientUnits="userSpaceOnUse"  
255 - cx="57.106434"  
256 - cy="45.286964"  
257 - fx="57.106434"  
258 - fy="45.286964"  
259 - r="27.627054" />  
260 - </defs>  
261 - <sodipodi:namedview  
262 - inkscape:window-y="106"  
263 - inkscape:window-x="167"  
264 - inkscape:window-height="603"  
265 - inkscape:window-width="844"  
266 - inkscape:current-layer="layer1"  
267 - inkscape:document-units="px"  
268 - inkscape:cy="64"  
269 - inkscape:cx="64"  
270 - inkscape:zoom="2.9609375"  
271 - inkscape:pageshadow="2"  
272 - inkscape:pageopacity="0.0"  
273 - borderopacity="1.0"  
274 - bordercolor="#666666"  
275 - pagecolor="#ffffff"  
276 - id="base" />  
277 - <metadata  
278 - id="metadata4">  
279 - <rdf:RDF>  
280 - <cc:Work  
281 - rdf:about="">  
282 - <dc:format>image/svg+xml</dc:format>  
283 - <dc:type  
284 - rdf:resource="http://purl.org/dc/dcmitype/StillImage" />  
285 - </cc:Work>  
286 - </rdf:RDF>  
287 - </metadata>  
288 - <g  
289 - id="layer1"  
290 - inkscape:groupmode="layer"  
291 - inkscape:label="Layer 1">  
292 - <g  
293 - id="g1331"  
294 - transform="matrix(0.742448,0,0,0.742448,45.262994,17.778284)">  
295 - <path  
296 - style="fill:#000000;fill-opacity:0.29288701;stroke:none;stroke-width:3.23125005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"  
297 - d="M 68.558242,8.805839 C 60.941054,8.6767932 53.580563,10.953161 49.026992,15.149589 C 44.741278,20.62578 46.391442,15.470152 42.105728,20.946342 C 46.470909,20.597127 44.56407,22.893394 44.558242,34.837089 C 44.393109,36.020805 44.183242,37.201875 44.183242,38.430839 C 44.183242,46.070874 47.552349,52.861194 52.808242,57.618339 C 37.160471,66.058052 30.261301,87.850195 29.558242,122.55584 C 29.558242,124.77183 31.342242,126.55584 33.558242,126.55584 L 106.87074,126.55584 C 109.08674,126.55584 110.87074,124.77183 110.87074,122.55584 C 110.35674,87.282722 103.49106,65.792389 87.714492,57.524589 C 92.897694,52.771456 97.351713,73.537728 97.351713,65.951578 C 97.351713,64.031478 97.122101,48.285684 96.726713,46.483736 C 96.925138,33.454469 95.089337,29.876563 95.506077,29.428954 C 93.273934,13.43193 81.253555,9.0209153 68.558242,8.805839 z "  
298 - id="path4152"  
299 - sodipodi:nodetypes="ccccsccccccsccc" />  
300 - <path  
301 - style="fill:url(#linearGradient4187);fill-opacity:1;stroke:#070707;stroke-width:3.23125005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"  
302 - d="M 105.05587,117.43401 C 105.05587,119.65001 103.27187,121.43401 101.05587,121.43401 L 27.738585,121.43401 C 25.522585,121.43401 23.738585,119.65001 23.738585,117.43401 C 24.664559,71.724607 36.323403,48.36483 64.58663,48.491099 C 92.849857,48.617368 104.38243,71.219531 105.05587,117.43401 z "  
303 - id="rect3345"  
304 - sodipodi:nodetypes="cccczc" />  
305 - <path  
306 - style="fill:url(#linearGradient4184);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
307 - d="M 26.7752,114.67367 C 40.703772,89.435578 87.846629,104.19748 90.346629,65.030818 C 86.418058,55.030818 76.060915,53.602247 68.560915,51.816533 C 30.346629,44.91177 26.060915,96.93558 26.7752,114.67367 z "  
308 - id="path4128"  
309 - sodipodi:nodetypes="cccc" />  
310 - <path  
311 - sodipodi:type="arc"  
312 - style="fill:url(#radialGradient4148);fill-opacity:1;stroke:#070707;stroke-width:3.23125005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"  
313 - id="path4116"  
314 - sodipodi:cx="63.892147"  
315 - sodipodi:cy="53.501251"  
316 - sodipodi:rx="26.011429"  
317 - sodipodi:ry="26.011429"  
318 - d="M 89.903576 53.501251 A 26.011429 26.011429 0 1 1 37.880718,53.501251 A 26.011429 26.011429 0 1 1 89.903576 53.501251 z"  
319 - transform="translate(0.505076,-20.20305)" />  
320 - <path  
321 - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
322 - d="M 45.933103,7.3014874 C 41.647383,12.777677 38.391493,15.929087 37.771893,21.285207 C 37.113473,26.976837 27.164044,90.564213 46.747935,83.010033 C 51.453774,81.194823 42.398189,46.480217 44.544877,33.803377 C 45.644327,27.310787 52.682087,19.656737 55.575963,17.301487 C 64.007716,10.439097 68.602358,13.537107 74.147383,15.515777 C 76.283466,16.278007 81.8515,21.844937 83.731513,30.793127 C 86.731795,45.073417 80.004834,83.598073 84.191444,83.797343 C 97.770914,84.443723 96.316543,46.299947 93.450103,24.767487 C 90.583653,3.2350274 58.075963,-3.8889926 45.933103,7.3014874 z "  
323 - id="path4126"  
324 - sodipodi:nodetypes="czsszzsszc" />  
325 - </g>  
326 - <g  
327 - id="g2201"  
328 - transform="matrix(0.742448,0,0,0.742448,-15.002776,18.294973)">  
329 - <path  
330 - style="fill:#000000;fill-opacity:0.29288701;stroke:none;stroke-width:3.23125005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"  
331 - d="M 68.558242,8.805839 C 60.941054,8.6767932 53.580563,10.953161 49.026992,15.149589 C 44.741278,20.62578 35.474124,16.607373 35.737292,25.040336 C 39.647585,34.471218 44.56407,22.893394 44.558242,34.837089 C 44.393109,36.020805 44.183242,37.201875 44.183242,38.430839 C 44.183242,46.070874 47.552349,52.861194 52.808242,57.618339 C 37.160471,66.058052 30.261301,87.850195 29.558242,122.55584 C 29.558242,124.77183 31.342242,126.55584 33.558242,126.55584 L 106.87074,126.55584 C 109.08674,126.55584 110.87074,124.77183 110.87074,122.55584 C 110.35674,87.282722 103.49106,65.792389 87.714492,57.524589 C 92.897694,52.771456 96.214492,46.016989 96.214492,38.430839 C 96.214492,36.510739 94.467879,31.515801 94.072491,29.713853 C 94.498361,29.421457 97.243032,26.500151 95.799918,23.542719 C 94.33922,20.549249 81.253555,9.0209153 68.558242,8.805839 z "  
332 - id="path2203"  
333 - sodipodi:nodetypes="ccccsccccccsczc" />  
334 - <path  
335 - style="fill:#d40000;fill-opacity:1;stroke:#070707;stroke-width:3.23125005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"  
336 - d="M 105.05587,117.43401 C 105.05587,119.65001 103.27187,121.43401 101.05587,121.43401 L 27.738585,121.43401 C 25.522585,121.43401 23.738585,119.65001 23.738585,117.43401 C 24.664559,71.724607 36.323403,48.36483 64.58663,48.491099 C 92.849857,48.617368 104.38243,71.219531 105.05587,117.43401 z "  
337 - id="path2205"  
338 - sodipodi:nodetypes="cccczc" />  
339 - <path  
340 - style="fill:#ff2a2a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
341 - d="M 26.7752,114.67367 C 40.703772,89.435578 87.846629,104.19748 90.346629,65.030818 C 86.418058,55.030818 76.060915,53.602247 68.560915,51.816533 C 30.346629,44.91177 26.060915,96.93558 26.7752,114.67367 z "  
342 - id="path2207"  
343 - sodipodi:nodetypes="cccc" />  
344 - <path  
345 - sodipodi:type="arc"  
346 - style="fill:#784421;fill-opacity:1;stroke:#070707;stroke-width:3.23125005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"  
347 - id="path2209"  
348 - sodipodi:cx="63.892147"  
349 - sodipodi:cy="53.501251"  
350 - sodipodi:rx="26.011429"  
351 - sodipodi:ry="26.011429"  
352 - d="M 89.903576 53.501251 A 26.011429 26.011429 0 1 1 37.880718,53.501251 A 26.011429 26.011429 0 1 1 89.903576 53.501251 z"  
353 - transform="translate(0.505076,-20.20305)" />  
354 - <path  
355 - style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"  
356 - d="M 148.59375,21.9375 C 147.42858,21.9375 146.5,22.944472 146.5,24.15625 C 146.5,25.368028 147.42858,26.343749 148.59375,26.34375 C 149.27403,26.34375 149.86389,25.988935 150.25,25.46875 C 150.59615,26.189748 151.32916,26.6875 152.15625,26.6875 C 153.03013,26.6875 153.77317,26.131571 154.09375,25.34375 C 154.28812,25.655431 154.55867,25.886596 154.875,26.0625 C 153.94227,26.289782 153.25,27.148482 153.25,28.1875 C 153.25,29.399278 154.17858,30.406249 155.34375,30.40625 C 156.03113,30.40625 156.64575,30.060755 157.03125,29.53125 C 157.41635,29.957317 157.95629,30.21875 158.5625,30.21875 C 159.43638,30.21875 160.17942,29.662821 160.5,28.875 C 160.60686,28.612393 160.6875,28.334195 160.6875,28.03125 C 160.6875,26.819472 159.72767,25.84375 158.5625,25.84375 C 157.87284,25.84375 157.26027,26.186251 156.875,26.71875 C 156.72392,26.55105 156.56988,26.393184 156.375,26.28125 C 157.29003,26.040909 157.96875,25.182202 157.96875,24.15625 C 157.96875,22.944472 157.04018,21.937501 155.875,21.9375 C 155.01018,21.9375 154.23229,22.475189 153.90625,23.25 C 153.5268,22.666029 152.88448,22.281249 152.15625,22.28125 C 151.46887,22.28125 150.85425,22.626745 150.46875,23.15625 C 150.12177,22.437746 149.41908,21.937501 148.59375,21.9375 z M 160.5,28.875 C 160.39314,29.137607 160.34375,29.415805 160.34375,29.71875 C 160.34375,30.930528 161.27233,31.906249 162.4375,31.90625 C 163.60267,31.90625 164.5625,30.930528 164.5625,29.71875 C 164.5625,28.506972 163.60267,27.531251 162.4375,27.53125 C 161.56362,27.53125 160.82058,28.087179 160.5,28.875 z M 160.9375,22.125 C 159.77233,22.125 158.81249,23.100722 158.8125,24.3125 C 158.8125,25.524278 159.77233,26.5 160.9375,26.5 C 162.10267,26.5 163.03125,25.524279 163.03125,24.3125 C 163.03125,23.100722 162.10267,22.125001 160.9375,22.125 z M 143.875,22.78125 C 142.70983,22.78125 141.74999,23.788221 141.75,25 C 141.75,26.211778 142.70983,27.187501 143.875,27.1875 C 145.04017,27.1875 145.96875,26.211778 145.96875,25 C 145.96875,23.788222 145.04017,22.78125 143.875,22.78125 z M 165.65625,23.46875 C 164.49108,23.46875 163.53125,24.444472 163.53125,25.65625 C 163.53125,26.868028 164.49108,27.874999 165.65625,27.875 C 166.82142,27.875 167.78126,26.868029 167.78125,25.65625 C 167.78125,24.444472 166.82142,23.468751 165.65625,23.46875 z M 140.59375,26.5 C 139.42858,26.5 138.46875,27.506971 138.46875,28.71875 C 138.46875,29.070354 138.54601,29.392785 138.6875,29.6875 C 138.30544,29.29016 137.80133,29.03125 137.21875,29.03125 C 136.05358,29.03125 135.09375,30.038222 135.09375,31.25 C 135.09375,31.87179 135.35014,32.412958 135.75,32.8125 C 134.78842,33.01731 134.09375,33.908443 134.09375,34.96875 C 134.09375,36.180528 135.02233,37.156252 136.1875,37.15625 C 136.43146,37.15625 136.65695,37.079295 136.875,37 C 137.19558,37.78782 137.93863,38.343749 138.8125,38.34375 C 139.97767,38.34375 140.90625,37.336778 140.90625,36.125 C 140.90625,36.071177 140.90992,36.021606 140.90625,35.96875 C 140.93698,35.970133 140.96895,35.96875 141,35.96875 C 142.12293,35.96875 143.02859,35.057193 143.09375,33.90625 C 143.24003,33.939646 143.37537,33.9375 143.53125,33.9375 C 144.69642,33.9375 145.65625,32.961778 145.65625,31.75 C 145.65625,30.538222 144.69642,29.5625 143.53125,29.5625 C 143.09431,29.5625 142.68066,29.700722 142.34375,29.9375 C 142.57142,29.587118 142.6875,29.173167 142.6875,28.71875 C 142.6875,27.506972 141.75892,26.5 140.59375,26.5 z M 151.125,26.6875 C 150.21727,26.6875 149.45418,27.288275 149.15625,28.125 C 148.82159,27.371975 148.09961,26.84375 147.25,26.84375 C 146.08483,26.84375 145.125,27.819471 145.125,29.03125 C 145.125,30.243028 146.08483,31.250001 147.25,31.25 C 148.16797,31.25 148.92837,30.632832 149.21875,29.78125 C 149.55341,30.534276 150.2754,31.0625 151.125,31.0625 C 152.29017,31.0625 153.25,30.086778 153.25,28.875 C 153.25,27.663222 152.29017,26.6875 151.125,26.6875 z M 168.1875,27.03125 C 167.02233,27.03125 166.09374,28.006971 166.09375,29.21875 C 166.09375,29.597431 166.18121,29.938956 166.34375,30.25 C 165.25128,30.333069 164.375,31.28025 164.375,32.4375 C 164.375,33.649278 165.33482,34.625002 166.5,34.625 C 167.66517,34.625 168.625,33.649277 168.625,32.4375 C 168.625,32.068917 168.49829,31.711337 168.34375,31.40625 C 169.43717,31.32419 170.3125,30.376705 170.3125,29.21875 C 170.3125,28.006972 169.35267,27.03125 168.1875,27.03125 z M 139.09375,30.25 C 139.47581,30.64734 140.01116,30.90625 140.59375,30.90625 C 141.03874,30.90625 141.44075,30.776069 141.78125,30.53125 C 141.57515,30.848432 141.46,31.219472 141.4375,31.625 C 141.30013,31.595741 141.14565,31.5625 141,31.5625 C 139.83483,31.5625 138.90624,32.569472 138.90625,33.78125 C 138.90625,33.845837 138.90099,33.905574 138.90625,33.96875 C 138.87214,33.967043 138.84702,33.9375 138.8125,33.9375 C 138.56854,33.9375 138.34305,34.014455 138.125,34.09375 C 138.01253,33.81736 137.8613,33.57988 137.65625,33.375 C 138.59878,33.155187 139.3125,32.296253 139.3125,31.25 C 139.3125,30.896565 139.23663,30.545855 139.09375,30.25 z M 172.0625,30.40625 C 170.89733,30.40625 169.96876,31.38197 169.96875,32.59375 C 169.96875,32.791073 169.98424,32.974295 170.03125,33.15625 C 169.92321,33.138497 169.83156,33.09375 169.71875,33.09375 C 168.55358,33.09375 167.59374,34.06947 167.59375,35.28125 C 167.59375,36.493028 168.55358,37.499998 169.71875,37.5 C 170.24018,37.5 170.69407,37.294987 171.0625,36.96875 C 171.41604,37.666689 172.09548,38.156249 172.90625,38.15625 C 174.07142,38.15625 175.03126,37.180528 175.03125,35.96875 C 175.03125,35.049272 174.49044,34.264171 173.71875,33.9375 C 173.99972,33.564644 174.1875,33.103843 174.1875,32.59375 C 174.1875,31.381972 173.22767,30.40625 172.0625,30.40625 z "  
357 - id="path3192"  
358 - transform="matrix(1.3468957,0,0,1.3468957,-143.2569,-27.301779)" />  
359 - </g>  
360 - </g>  
361 -</svg>  
public/images/icons-app/get-icon.sh
@@ -1,38 +0,0 @@ @@ -1,38 +0,0 @@
1 -#!/bin/sh  
2 -  
3 -ICON=$1  
4 -THEME=$2  
5 -SVG=$3  
6 -  
7 -if [ -z $ICON ] || [ -z $THEME ] || [ -z $SVG ]; then  
8 - echo "use: $0 <ICON> <THEME> <SVG>"  
9 - echo "example:"  
10 - echo " $0 favorites dlg-neu emblems/epiphany-bookmarks.svg"  
11 - exit 1  
12 -fi  
13 -  
14 -PNG=$(basename $SVG | sed -e 's/\.svg/\.png/')  
15 -SVGFILE=/usr/share/icons/$THEME/scalable/$SVG  
16 -  
17 -if [ ! -f $SVGFILE ]; then  
18 - echo "$SVGFILE not found, stopping."  
19 - exit 2  
20 -fi  
21 -  
22 -rsvg -w 64 -h 64 $SVGFILE $PNG  
23 -  
24 -if [ ! -f $PNG ]; then  
25 - echo "Error creating $PNG, stopping."  
26 - exit 2  
27 -fi  
28 -  
29 -ln -s $PNG ${ICON}.png  
30 -  
31 -if [ -e .svn ]; then  
32 - svn add $PNG ${ICON}.png  
33 -else  
34 - git add $PNG ${ICON}.png  
35 -fi  
36 -  
37 -LINE=$(printf "%-43s %s" $PNG $THEME)  
38 -sed -i -e "s!### END OF ICONS LISTING ###!$LINE\n&!" README  
public/images/icons-app/gnome-globe.png

5.82 KB

public/images/icons-app/gnome-home.png

3.36 KB

public/images/icons-app/gnome-other.png

3.2 KB

public/images/icons-app/gnome-settings-background.png

5.39 KB

public/images/icons-app/gravatar-minor.gif

945 Bytes

public/images/icons-app/gravatar-thumb.gif

1.53 KB

public/images/icons-app/groups.png
@@ -1 +0,0 @@ @@ -1 +0,0 @@
1 -gnome-globe.png  
2 \ No newline at end of file 0 \ No newline at end of file
public/images/icons-app/gtk-cancel.png

3.15 KB

public/images/icons-app/gtk-yes.png

2.69 KB

public/images/icons-app/header-and-footer.png

3.48 KB

public/images/icons-app/livejournal.png

3.09 KB

public/images/icons-app/mail.png
@@ -1 +0,0 @@ @@ -1 +0,0 @@
1 -mozilla-mail.png  
2 \ No newline at end of file 0 \ No newline at end of file
public/images/icons-app/members.png
@@ -1 +0,0 @@ @@ -1 +0,0 @@
1 -stock_new-meeting.png  
2 \ No newline at end of file 0 \ No newline at end of file
public/images/icons-app/mozilla-mail.png

4.84 KB

public/images/icons-app/password.png

3.35 KB

public/images/icons-app/products.png
@@ -1 +0,0 @@ @@ -1 +0,0 @@
1 -gnome-other.png  
2 \ No newline at end of file 0 \ No newline at end of file
public/images/icons-app/stock_new-meeting.png

4.18 KB

public/images/icons-app/stock_todo.png

2.21 KB

public/images/icons-app/todo.png
@@ -1 +0,0 @@ @@ -1 +0,0 @@
1 -stock_todo.png  
2 \ No newline at end of file 0 \ No newline at end of file
public/images/icons-app/users.png

4.86 KB

public/images/icons-app/users.svg
@@ -1,394 +0,0 @@ @@ -1,394 +0,0 @@
1 -<?xml version="1.0" encoding="UTF-8" standalone="no"?>  
2 -<!-- Created with Inkscape (http://www.inkscape.org/) -->  
3 -<svg  
4 - xmlns:dc="http://purl.org/dc/elements/1.1/"  
5 - xmlns:cc="http://web.resource.org/cc/"  
6 - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"  
7 - xmlns:svg="http://www.w3.org/2000/svg"  
8 - xmlns="http://www.w3.org/2000/svg"  
9 - xmlns:xlink="http://www.w3.org/1999/xlink"  
10 - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"  
11 - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"  
12 - sodipodi:docname="users.svg"  
13 - sodipodi:docbase="/home/terceiro/src/noosfero/public/images/icons-app"  
14 - inkscape:version="0.45.1"  
15 - sodipodi:version="0.32"  
16 - id="svg3335"  
17 - height="102.40000pt"  
18 - width="102.40000pt"  
19 - inkscape:output_extension="org.inkscape.output.svg.inkscape">  
20 - <defs  
21 - id="defs3">  
22 - <linearGradient  
23 - id="linearGradient2091">  
24 - <stop  
25 - style="stop-color:#25a232;stop-opacity:1.0000000;"  
26 - offset="0.0000000"  
27 - id="stop2093" />  
28 - <stop  
29 - style="stop-color:#006500;stop-opacity:1.0000000;"  
30 - offset="1.0000000"  
31 - id="stop2095" />  
32 - </linearGradient>  
33 - <linearGradient  
34 - id="linearGradient4130"  
35 - inkscape:collect="always">  
36 - <stop  
37 - id="stop4132"  
38 - offset="0"  
39 - style="stop-color:#ffffff;stop-opacity:1;" />  
40 - <stop  
41 - id="stop4134"  
42 - offset="1"  
43 - style="stop-color:#ffffff;stop-opacity:0;" />  
44 - </linearGradient>  
45 - <linearGradient  
46 - id="linearGradient4118">  
47 - <stop  
48 - id="stop4120"  
49 - offset="0"  
50 - style="stop-color:#ffd99b;stop-opacity:1;" />  
51 - <stop  
52 - id="stop4122"  
53 - offset="1.0000000"  
54 - style="stop-color:#b2986c;stop-opacity:1.0000000;" />  
55 - </linearGradient>  
56 - <linearGradient  
57 - id="linearGradient4105">  
58 - <stop  
59 - id="stop4107"  
60 - offset="0.0000000"  
61 - style="stop-color:#25a2ff;stop-opacity:1.0000000;" />  
62 - <stop  
63 - id="stop4109"  
64 - offset="1.0000000"  
65 - style="stop-color:#00659a;stop-opacity:1.0000000;" />  
66 - </linearGradient>  
67 - <linearGradient  
68 - gradientUnits="userSpaceOnUse"  
69 - y2="85.068516"  
70 - x2="100.61058"  
71 - y1="85.068516"  
72 - x1="16.062045"  
73 - id="linearGradient4111"  
74 - xlink:href="#linearGradient4105"  
75 - inkscape:collect="always" />  
76 - <linearGradient  
77 - y2="8.2969255"  
78 - x2="35.607880"  
79 - y1="113.85787"  
80 - x1="73.640739"  
81 - gradientUnits="userSpaceOnUse"  
82 - id="linearGradient4114"  
83 - xlink:href="#linearGradient4105"  
84 - inkscape:collect="always" />  
85 - <radialGradient  
86 - gradientUnits="userSpaceOnUse"  
87 - r="27.627054"  
88 - fy="45.286964"  
89 - fx="57.106434"  
90 - cy="45.286964"  
91 - cx="57.106434"  
92 - id="radialGradient4124"  
93 - xlink:href="#linearGradient4118"  
94 - inkscape:collect="always" />  
95 - <linearGradient  
96 - gradientUnits="userSpaceOnUse"  
97 - y2="96.615082"  
98 - x2="71.071434"  
99 - y1="30.543657"  
100 - x1="9.5745220"  
101 - id="linearGradient4136"  
102 - xlink:href="#linearGradient4130"  
103 - inkscape:collect="always" />  
104 - <linearGradient  
105 - y2="8.2969255"  
106 - x2="35.607880"  
107 - y1="113.85787"  
108 - x1="73.640739"  
109 - gradientUnits="userSpaceOnUse"  
110 - id="linearGradient4144"  
111 - xlink:href="#linearGradient4105"  
112 - inkscape:collect="always" />  
113 - <linearGradient  
114 - y2="96.615082"  
115 - x2="71.071434"  
116 - y1="30.543657"  
117 - x1="9.5745220"  
118 - gradientUnits="userSpaceOnUse"  
119 - id="linearGradient4146"  
120 - xlink:href="#linearGradient4130"  
121 - inkscape:collect="always" />  
122 - <radialGradient  
123 - r="27.627054"  
124 - fy="45.286964"  
125 - fx="57.106434"  
126 - cy="45.286964"  
127 - cx="57.106434"  
128 - gradientUnits="userSpaceOnUse"  
129 - id="radialGradient4148"  
130 - xlink:href="#linearGradient4118"  
131 - inkscape:collect="always" />  
132 - <linearGradient  
133 - y2="8.2969255"  
134 - x2="35.607880"  
135 - y1="113.85787"  
136 - x1="73.640739"  
137 - gradientUnits="userSpaceOnUse"  
138 - id="linearGradient4160"  
139 - xlink:href="#linearGradient4105"  
140 - inkscape:collect="always" />  
141 - <linearGradient  
142 - y2="96.615082"  
143 - x2="71.071434"  
144 - y1="30.543657"  
145 - x1="9.5745220"  
146 - gradientUnits="userSpaceOnUse"  
147 - id="linearGradient4162"  
148 - xlink:href="#linearGradient4130"  
149 - inkscape:collect="always" />  
150 - <radialGradient  
151 - r="27.627054"  
152 - fy="45.286964"  
153 - fx="57.106434"  
154 - cy="45.286964"  
155 - cx="57.106434"  
156 - gradientUnits="userSpaceOnUse"  
157 - id="radialGradient4164"  
158 - xlink:href="#linearGradient4118"  
159 - inkscape:collect="always" />  
160 - <linearGradient  
161 - gradientTransform="translate(-84.09520,-4.477295)"  
162 - y2="96.615082"  
163 - x2="71.071434"  
164 - y1="30.543657"  
165 - x1="9.5745220"  
166 - gradientUnits="userSpaceOnUse"  
167 - id="linearGradient4169"  
168 - xlink:href="#linearGradient4130"  
169 - inkscape:collect="always" />  
170 - <linearGradient  
171 - gradientTransform="translate(-84.09520,-4.477295)"  
172 - y2="8.2969255"  
173 - x2="35.607880"  
174 - y1="113.85787"  
175 - x1="73.640739"  
176 - gradientUnits="userSpaceOnUse"  
177 - id="linearGradient4172"  
178 - xlink:href="#linearGradient4105"  
179 - inkscape:collect="always" />  
180 - <linearGradient  
181 - gradientTransform="translate(6.060915,-4.04061)"  
182 - y2="96.615082"  
183 - x2="71.071434"  
184 - y1="30.543657"  
185 - x1="9.5745220"  
186 - gradientUnits="userSpaceOnUse"  
187 - id="linearGradient4184"  
188 - xlink:href="#linearGradient4130"  
189 - inkscape:collect="always" />  
190 - <linearGradient  
191 - gradientTransform="translate(6.060915,-4.04061)"  
192 - y2="127.09025"  
193 - x2="84.893593"  
194 - y1="81.000732"  
195 - x1="53.640739"  
196 - gradientUnits="userSpaceOnUse"  
197 - id="linearGradient4187"  
198 - xlink:href="#linearGradient4105"  
199 - inkscape:collect="always" />  
200 - <radialGradient  
201 - inkscape:collect="always"  
202 - xlink:href="#linearGradient4118"  
203 - id="radialGradient1354"  
204 - gradientUnits="userSpaceOnUse"  
205 - cx="57.106434"  
206 - cy="45.286964"  
207 - fx="57.106434"  
208 - fy="45.286964"  
209 - r="27.627054" />  
210 - <linearGradient  
211 - inkscape:collect="always"  
212 - xlink:href="#linearGradient4130"  
213 - id="linearGradient1359"  
214 - gradientUnits="userSpaceOnUse"  
215 - gradientTransform="translate(160.9926,-28.93271)"  
216 - x1="9.5745220"  
217 - y1="30.543657"  
218 - x2="71.071434"  
219 - y2="96.615082" />  
220 - <linearGradient  
221 - inkscape:collect="always"  
222 - xlink:href="#linearGradient2091"  
223 - id="linearGradient1362"  
224 - gradientUnits="userSpaceOnUse"  
225 - gradientTransform="translate(160.9926,-28.93271)"  
226 - x1="53.640739"  
227 - y1="81.000732"  
228 - x2="84.893593"  
229 - y2="127.09025" />  
230 - <linearGradient  
231 - inkscape:collect="always"  
232 - xlink:href="#linearGradient2091"  
233 - id="linearGradient2104"  
234 - gradientUnits="userSpaceOnUse"  
235 - gradientTransform="translate(160.9926,-28.93271)"  
236 - x1="53.640739"  
237 - y1="81.000732"  
238 - x2="84.893593"  
239 - y2="127.09025" />  
240 - <linearGradient  
241 - inkscape:collect="always"  
242 - xlink:href="#linearGradient4130"  
243 - id="linearGradient2106"  
244 - gradientUnits="userSpaceOnUse"  
245 - gradientTransform="translate(160.9926,-28.93271)"  
246 - x1="9.5745220"  
247 - y1="30.543657"  
248 - x2="71.071434"  
249 - y2="96.615082" />  
250 - <radialGradient  
251 - inkscape:collect="always"  
252 - xlink:href="#linearGradient4118"  
253 - id="radialGradient2108"  
254 - gradientUnits="userSpaceOnUse"  
255 - cx="57.106434"  
256 - cy="45.286964"  
257 - fx="57.106434"  
258 - fy="45.286964"  
259 - r="27.627054" />  
260 - </defs>  
261 - <sodipodi:namedview  
262 - inkscape:window-y="106"  
263 - inkscape:window-x="167"  
264 - inkscape:window-height="548"  
265 - inkscape:window-width="844"  
266 - inkscape:current-layer="layer1"  
267 - inkscape:document-units="px"  
268 - inkscape:cy="69.591130"  
269 - inkscape:cx="138.72888"  
270 - inkscape:zoom="1.4000000"  
271 - inkscape:pageshadow="2"  
272 - inkscape:pageopacity="0.0"  
273 - borderopacity="1.0"  
274 - bordercolor="#666666"  
275 - pagecolor="#ffffff"  
276 - id="base" />  
277 - <metadata  
278 - id="metadata4">  
279 - <rdf:RDF>  
280 - <cc:Work  
281 - rdf:about="">  
282 - <dc:format>image/svg+xml</dc:format>  
283 - <dc:type  
284 - rdf:resource="http://purl.org/dc/dcmitype/StillImage" />  
285 - </cc:Work>  
286 - </rdf:RDF>  
287 - </metadata>  
288 - <g  
289 - id="layer1"  
290 - inkscape:groupmode="layer"  
291 - inkscape:label="Layer 1">  
292 - <g  
293 - id="g1331"  
294 - transform="matrix(0.742448,0,0,0.742448,42.951648,1.8257776)">  
295 - <path  
296 - style="fill:#000000;fill-opacity:0.29288701;stroke:none;stroke-width:3.23125005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"  
297 - d="M 68.558242,8.805839 C 60.941054,8.6767932 53.580563,10.953161 49.026992,15.149589 C 44.741278,20.62578 46.391442,15.470152 42.105728,20.946342 C 46.470909,20.597127 44.56407,22.893394 44.558242,34.837089 C 44.393109,36.020805 44.183242,37.201875 44.183242,38.430839 C 44.183242,46.070874 47.552349,52.861194 52.808242,57.618339 C 37.160471,66.058052 30.261301,87.850195 29.558242,122.55584 C 29.558242,124.77183 31.342242,126.55584 33.558242,126.55584 L 106.87074,126.55584 C 109.08674,126.55584 110.87074,124.77183 110.87074,122.55584 C 110.35674,87.282722 103.49106,65.792389 87.714492,57.524589 C 92.897694,52.771456 97.351713,73.537728 97.351713,65.951578 C 97.351713,64.031478 97.122101,48.285684 96.726713,46.483736 C 96.925138,33.454469 95.089337,29.876563 95.506077,29.428954 C 93.273934,13.43193 81.253555,9.0209153 68.558242,8.805839 z "  
298 - id="path4152"  
299 - sodipodi:nodetypes="ccccsccccccsccc" />  
300 - <path  
301 - style="fill:url(#linearGradient4187);fill-opacity:1;stroke:#070707;stroke-width:3.23125005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"  
302 - d="M 105.05587,117.43401 C 105.05587,119.65001 103.27187,121.43401 101.05587,121.43401 L 27.738585,121.43401 C 25.522585,121.43401 23.738585,119.65001 23.738585,117.43401 C 24.664559,71.724607 36.323403,48.36483 64.58663,48.491099 C 92.849857,48.617368 104.38243,71.219531 105.05587,117.43401 z "  
303 - id="rect3345"  
304 - sodipodi:nodetypes="cccczc" />  
305 - <path  
306 - style="fill:url(#linearGradient4184);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
307 - d="M 26.7752,114.67367 C 40.703772,89.435578 87.846629,104.19748 90.346629,65.030818 C 86.418058,55.030818 76.060915,53.602247 68.560915,51.816533 C 30.346629,44.91177 26.060915,96.93558 26.7752,114.67367 z "  
308 - id="path4128"  
309 - sodipodi:nodetypes="cccc" />  
310 - <path  
311 - sodipodi:type="arc"  
312 - style="fill:url(#radialGradient4148);fill-opacity:1;stroke:#070707;stroke-width:3.23125005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"  
313 - id="path4116"  
314 - sodipodi:cx="63.892147"  
315 - sodipodi:cy="53.501251"  
316 - sodipodi:rx="26.011429"  
317 - sodipodi:ry="26.011429"  
318 - d="M 89.903576 53.501251 A 26.011429 26.011429 0 1 1 37.880718,53.501251 A 26.011429 26.011429 0 1 1 89.903576 53.501251 z"  
319 - transform="translate(0.505076,-20.20305)" />  
320 - <path  
321 - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
322 - d="M 45.933103,7.3014874 C 41.647383,12.777677 38.391493,15.929087 37.771893,21.285207 C 37.113473,26.976837 27.164044,90.564213 46.747935,83.010033 C 51.453774,81.194823 42.398189,46.480217 44.544877,33.803377 C 45.644327,27.310787 52.682087,19.656737 55.575963,17.301487 C 64.007716,10.439097 68.602358,13.537107 74.147383,15.515777 C 76.283466,16.278007 81.8515,21.844937 83.731513,30.793127 C 86.731795,45.073417 80.004834,83.598073 84.191444,83.797343 C 97.770914,84.443723 96.316543,46.299947 93.450103,24.767487 C 90.583653,3.2350274 58.075963,-3.8889926 45.933103,7.3014874 z "  
323 - id="path4126"  
324 - sodipodi:nodetypes="czsszzsszc" />  
325 - </g>  
326 - <g  
327 - id="g2097"  
328 - transform="matrix(0.83903,0,0,0.83903,-146.35673,22.987356)">  
329 - <path  
330 - style="fill:#000000;fill-opacity:0.29288701;stroke:none;stroke-width:3.23125005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"  
331 - d="M 223.48994,-16.086261 C 215.87275,-16.215307 208.51226,-13.938939 203.95869,-9.742511 C 199.67298,-4.26632 191.08816,-7.374951 186.80244,-1.898761 C 191.16762,-2.247976 199.49577,-1.998706 199.48994,9.944989 C 199.32481,11.128705 199.11494,12.309775 199.11494,13.538739 C 199.11494,21.178774 202.48405,27.969094 207.73994,32.726239 C 192.09217,41.165952 185.193,62.958095 184.48994,97.66374 C 184.48994,99.87973 186.27394,101.66374 188.48994,101.66374 L 261.80244,101.66374 C 264.01844,101.66374 265.80244,99.87973 265.80244,97.66374 C 265.28844,62.390622 258.42276,40.900289 242.64619,32.632489 C 247.82939,27.879356 251.14619,21.124889 251.14619,13.538739 C 251.14619,11.618639 250.91658,9.746937 250.52119,7.944989 C 250.94706,7.652593 251.3857,7.486348 251.80244,7.038739 C 249.5703,-8.958285 236.18526,-15.871185 223.48994,-16.086261 z "  
332 - id="path1340" />  
333 - <path  
334 - style="fill:url(#linearGradient2104);fill-opacity:1;stroke:#070707;stroke-width:3.23125005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"  
335 - d="M 259.98757,92.54191 C 259.98757,94.75791 258.20357,96.54191 255.98757,96.54191 L 182.67029,96.54191 C 180.45428,96.54191 178.67029,94.75791 178.67029,92.54191 C 179.59626,46.832507 191.2551,23.47273 219.51833,23.598999 C 247.78156,23.725268 259.31413,46.327431 259.98757,92.54191 z "  
336 - id="path1342"  
337 - sodipodi:nodetypes="cccczc" />  
338 - <path  
339 - style="fill:url(#linearGradient2106);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
340 - d="M 181.7069,89.78157 C 195.63547,64.543478 242.77833,79.30538 245.27833,40.138718 C 241.34976,30.138718 230.99262,28.710147 223.49262,26.924433 C 185.27833,20.01967 180.99262,72.04348 181.7069,89.78157 z "  
341 - id="path1344"  
342 - sodipodi:nodetypes="cccc" />  
343 - <path  
344 - sodipodi:type="arc"  
345 - style="fill:url(#radialGradient2108);fill-opacity:1;stroke:#070707;stroke-width:3.23125005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"  
346 - id="path1346"  
347 - sodipodi:cx="63.892147"  
348 - sodipodi:cy="53.501251"  
349 - sodipodi:rx="26.011429"  
350 - sodipodi:ry="26.011429"  
351 - d="M 89.903576 53.501251 A 26.011429 26.011429 0 1 1 37.880718,53.501251 A 26.011429 26.011429 0 1 1 89.903576 53.501251 z"  
352 - transform="translate(155.4368,-45.09515)" />  
353 - <path  
354 - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
355 - d="M 198.13547,-14.861282 C 193.84976,-9.385091 185.27833,-12.480329 180.99262,-7.004139 C 185.4569,-7.361282 194.11762,-7.18271 193.71583,5.585147 C 199.38547,-4.861282 203.84976,-3.43271 207.77833,-4.861282 C 211.34976,-0.218425 216.7069,0.138719 220.27833,4.781576 C 219.68309,-0.813662 217.65928,-6.766043 226.34976,-6.646996 C 231.945,-3.670805 239.56404,8.829195 245.99262,1.924433 C 242.42119,-23.670805 210.27833,-26.051758 198.13547,-14.861282 z "  
356 - id="path1348"  
357 - sodipodi:nodetypes="cccccccc" />  
358 - </g>  
359 - <g  
360 - id="g2201"  
361 - transform="matrix(0.742448,0,0,0.742448,22.37981,32.062783)">  
362 - <path  
363 - style="fill:#000000;fill-opacity:0.29288701;stroke:none;stroke-width:3.23125005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"  
364 - d="M 68.558242,8.805839 C 60.941054,8.6767932 53.580563,10.953161 49.026992,15.149589 C 44.741278,20.62578 35.474124,16.607373 35.737292,25.040336 C 39.647585,34.471218 44.56407,22.893394 44.558242,34.837089 C 44.393109,36.020805 44.183242,37.201875 44.183242,38.430839 C 44.183242,46.070874 47.552349,52.861194 52.808242,57.618339 C 37.160471,66.058052 30.261301,87.850195 29.558242,122.55584 C 29.558242,124.77183 31.342242,126.55584 33.558242,126.55584 L 106.87074,126.55584 C 109.08674,126.55584 110.87074,124.77183 110.87074,122.55584 C 110.35674,87.282722 103.49106,65.792389 87.714492,57.524589 C 92.897694,52.771456 96.214492,46.016989 96.214492,38.430839 C 96.214492,36.510739 94.467879,31.515801 94.072491,29.713853 C 94.498361,29.421457 97.243032,26.500151 95.799918,23.542719 C 94.33922,20.549249 81.253555,9.0209153 68.558242,8.805839 z "  
365 - id="path2203"  
366 - sodipodi:nodetypes="ccccsccccccsczc" />  
367 - <path  
368 - style="fill:#d40000;fill-opacity:1;stroke:#070707;stroke-width:3.23125005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"  
369 - d="M 105.05587,117.43401 C 105.05587,119.65001 103.27187,121.43401 101.05587,121.43401 L 27.738585,121.43401 C 25.522585,121.43401 23.738585,119.65001 23.738585,117.43401 C 24.664559,71.724607 36.323403,48.36483 64.58663,48.491099 C 92.849857,48.617368 104.38243,71.219531 105.05587,117.43401 z "  
370 - id="path2205"  
371 - sodipodi:nodetypes="cccczc" />  
372 - <path  
373 - style="fill:#ff2a2a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
374 - d="M 26.7752,114.67367 C 40.703772,89.435578 87.846629,104.19748 90.346629,65.030818 C 86.418058,55.030818 76.060915,53.602247 68.560915,51.816533 C 30.346629,44.91177 26.060915,96.93558 26.7752,114.67367 z "  
375 - id="path2207"  
376 - sodipodi:nodetypes="cccc" />  
377 - <path  
378 - sodipodi:type="arc"  
379 - style="fill:#784421;fill-opacity:1;stroke:#070707;stroke-width:3.23125005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"  
380 - id="path2209"  
381 - sodipodi:cx="63.892147"  
382 - sodipodi:cy="53.501251"  
383 - sodipodi:rx="26.011429"  
384 - sodipodi:ry="26.011429"  
385 - d="M 89.903576 53.501251 A 26.011429 26.011429 0 1 1 37.880718,53.501251 A 26.011429 26.011429 0 1 1 89.903576 53.501251 z"  
386 - transform="translate(0.505076,-20.20305)" />  
387 - <path  
388 - style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"  
389 - d="M 148.59375,21.9375 C 147.42858,21.9375 146.5,22.944472 146.5,24.15625 C 146.5,25.368028 147.42858,26.343749 148.59375,26.34375 C 149.27403,26.34375 149.86389,25.988935 150.25,25.46875 C 150.59615,26.189748 151.32916,26.6875 152.15625,26.6875 C 153.03013,26.6875 153.77317,26.131571 154.09375,25.34375 C 154.28812,25.655431 154.55867,25.886596 154.875,26.0625 C 153.94227,26.289782 153.25,27.148482 153.25,28.1875 C 153.25,29.399278 154.17858,30.406249 155.34375,30.40625 C 156.03113,30.40625 156.64575,30.060755 157.03125,29.53125 C 157.41635,29.957317 157.95629,30.21875 158.5625,30.21875 C 159.43638,30.21875 160.17942,29.662821 160.5,28.875 C 160.60686,28.612393 160.6875,28.334195 160.6875,28.03125 C 160.6875,26.819472 159.72767,25.84375 158.5625,25.84375 C 157.87284,25.84375 157.26027,26.186251 156.875,26.71875 C 156.72392,26.55105 156.56988,26.393184 156.375,26.28125 C 157.29003,26.040909 157.96875,25.182202 157.96875,24.15625 C 157.96875,22.944472 157.04018,21.937501 155.875,21.9375 C 155.01018,21.9375 154.23229,22.475189 153.90625,23.25 C 153.5268,22.666029 152.88448,22.281249 152.15625,22.28125 C 151.46887,22.28125 150.85425,22.626745 150.46875,23.15625 C 150.12177,22.437746 149.41908,21.937501 148.59375,21.9375 z M 160.5,28.875 C 160.39314,29.137607 160.34375,29.415805 160.34375,29.71875 C 160.34375,30.930528 161.27233,31.906249 162.4375,31.90625 C 163.60267,31.90625 164.5625,30.930528 164.5625,29.71875 C 164.5625,28.506972 163.60267,27.531251 162.4375,27.53125 C 161.56362,27.53125 160.82058,28.087179 160.5,28.875 z M 160.9375,22.125 C 159.77233,22.125 158.81249,23.100722 158.8125,24.3125 C 158.8125,25.524278 159.77233,26.5 160.9375,26.5 C 162.10267,26.5 163.03125,25.524279 163.03125,24.3125 C 163.03125,23.100722 162.10267,22.125001 160.9375,22.125 z M 143.875,22.78125 C 142.70983,22.78125 141.74999,23.788221 141.75,25 C 141.75,26.211778 142.70983,27.187501 143.875,27.1875 C 145.04017,27.1875 145.96875,26.211778 145.96875,25 C 145.96875,23.788222 145.04017,22.78125 143.875,22.78125 z M 165.65625,23.46875 C 164.49108,23.46875 163.53125,24.444472 163.53125,25.65625 C 163.53125,26.868028 164.49108,27.874999 165.65625,27.875 C 166.82142,27.875 167.78126,26.868029 167.78125,25.65625 C 167.78125,24.444472 166.82142,23.468751 165.65625,23.46875 z M 140.59375,26.5 C 139.42858,26.5 138.46875,27.506971 138.46875,28.71875 C 138.46875,29.070354 138.54601,29.392785 138.6875,29.6875 C 138.30544,29.29016 137.80133,29.03125 137.21875,29.03125 C 136.05358,29.03125 135.09375,30.038222 135.09375,31.25 C 135.09375,31.87179 135.35014,32.412958 135.75,32.8125 C 134.78842,33.01731 134.09375,33.908443 134.09375,34.96875 C 134.09375,36.180528 135.02233,37.156252 136.1875,37.15625 C 136.43146,37.15625 136.65695,37.079295 136.875,37 C 137.19558,37.78782 137.93863,38.343749 138.8125,38.34375 C 139.97767,38.34375 140.90625,37.336778 140.90625,36.125 C 140.90625,36.071177 140.90992,36.021606 140.90625,35.96875 C 140.93698,35.970133 140.96895,35.96875 141,35.96875 C 142.12293,35.96875 143.02859,35.057193 143.09375,33.90625 C 143.24003,33.939646 143.37537,33.9375 143.53125,33.9375 C 144.69642,33.9375 145.65625,32.961778 145.65625,31.75 C 145.65625,30.538222 144.69642,29.5625 143.53125,29.5625 C 143.09431,29.5625 142.68066,29.700722 142.34375,29.9375 C 142.57142,29.587118 142.6875,29.173167 142.6875,28.71875 C 142.6875,27.506972 141.75892,26.5 140.59375,26.5 z M 151.125,26.6875 C 150.21727,26.6875 149.45418,27.288275 149.15625,28.125 C 148.82159,27.371975 148.09961,26.84375 147.25,26.84375 C 146.08483,26.84375 145.125,27.819471 145.125,29.03125 C 145.125,30.243028 146.08483,31.250001 147.25,31.25 C 148.16797,31.25 148.92837,30.632832 149.21875,29.78125 C 149.55341,30.534276 150.2754,31.0625 151.125,31.0625 C 152.29017,31.0625 153.25,30.086778 153.25,28.875 C 153.25,27.663222 152.29017,26.6875 151.125,26.6875 z M 168.1875,27.03125 C 167.02233,27.03125 166.09374,28.006971 166.09375,29.21875 C 166.09375,29.597431 166.18121,29.938956 166.34375,30.25 C 165.25128,30.333069 164.375,31.28025 164.375,32.4375 C 164.375,33.649278 165.33482,34.625002 166.5,34.625 C 167.66517,34.625 168.625,33.649277 168.625,32.4375 C 168.625,32.068917 168.49829,31.711337 168.34375,31.40625 C 169.43717,31.32419 170.3125,30.376705 170.3125,29.21875 C 170.3125,28.006972 169.35267,27.03125 168.1875,27.03125 z M 139.09375,30.25 C 139.47581,30.64734 140.01116,30.90625 140.59375,30.90625 C 141.03874,30.90625 141.44075,30.776069 141.78125,30.53125 C 141.57515,30.848432 141.46,31.219472 141.4375,31.625 C 141.30013,31.595741 141.14565,31.5625 141,31.5625 C 139.83483,31.5625 138.90624,32.569472 138.90625,33.78125 C 138.90625,33.845837 138.90099,33.905574 138.90625,33.96875 C 138.87214,33.967043 138.84702,33.9375 138.8125,33.9375 C 138.56854,33.9375 138.34305,34.014455 138.125,34.09375 C 138.01253,33.81736 137.8613,33.57988 137.65625,33.375 C 138.59878,33.155187 139.3125,32.296253 139.3125,31.25 C 139.3125,30.896565 139.23663,30.545855 139.09375,30.25 z M 172.0625,30.40625 C 170.89733,30.40625 169.96876,31.38197 169.96875,32.59375 C 169.96875,32.791073 169.98424,32.974295 170.03125,33.15625 C 169.92321,33.138497 169.83156,33.09375 169.71875,33.09375 C 168.55358,33.09375 167.59374,34.06947 167.59375,35.28125 C 167.59375,36.493028 168.55358,37.499998 169.71875,37.5 C 170.24018,37.5 170.69407,37.294987 171.0625,36.96875 C 171.41604,37.666689 172.09548,38.156249 172.90625,38.15625 C 174.07142,38.15625 175.03126,37.180528 175.03125,35.96875 C 175.03125,35.049272 174.49044,34.264171 173.71875,33.9375 C 173.99972,33.564644 174.1875,33.103843 174.1875,32.59375 C 174.1875,31.381972 173.22767,30.40625 172.0625,30.40625 z "  
390 - id="path3192"  
391 - transform="matrix(1.3468957,0,0,1.3468957,-143.2569,-27.301779)" />  
392 - </g>  
393 - </g>  
394 -</svg>  
public/images/icons-app/validation.png
@@ -1 +0,0 @@ @@ -1 +0,0 @@
1 -gtk-yes.png  
2 \ No newline at end of file 0 \ No newline at end of file
public/stylesheets/controller_cms.css
@@ -58,70 +58,6 @@ ul.categories li.cat_checked { @@ -58,70 +58,6 @@ ul.categories li.cat_checked {
58 background: #B8CFE7; 58 background: #B8CFE7;
59 } 59 }
60 60
61 -/************* file manager (small) style *****************/  
62 -  
63 -.file-manager-small {  
64 - background: white;  
65 - border: 1px solid gray;  
66 -}  
67 -  
68 -.file-manager-title {  
69 - font-weight: bold;  
70 - border: 1px solid gray;  
71 - border-bottom: none;  
72 - border-top: none;  
73 - padding: 2px;  
74 - background: #579;  
75 - color: white;  
76 - height: 24px;  
77 -}  
78 -  
79 -.file-manager-small ul {  
80 - padding: 5px;  
81 - margin: 0px;  
82 -}  
83 -  
84 -.file-manager-small li {  
85 - list-style: none;  
86 - padding: 2px;  
87 -}  
88 -  
89 -div.file-manager-small  
90 -div.file-manager-button a div {  
91 - display: inline;  
92 -}  
93 -  
94 -div.file-manager-small  
95 -div.file-manager-button a img {  
96 - border: none;  
97 - vertical-align: middle;  
98 -}  
99 -  
100 -div.file-manager-small  
101 -div.file-manager-button a {  
102 - border: 1px solid transparent;  
103 -}  
104 -  
105 -div.file-manager-small  
106 -div.file-manager-button a:hover {  
107 - border: 1px solid #006;  
108 - background: #acf;  
109 - color: #006;  
110 -}  
111 -  
112 -.file-manager-small {  
113 - position: relative;  
114 -}  
115 -  
116 -.file-manager-small .file-manager-controls {  
117 - border-top: 1px solid gray;  
118 - padding: 4px;  
119 -}  
120 -  
121 -.file-manager-small .file-manager-controls * {  
122 - text-align: right;  
123 -}  
124 -  
125 /************* external blog options *****************/ 61 /************* external blog options *****************/
126 62
127 #fetch-external-feed { 63 #fetch-external-feed {
public/stylesheets/controller_profile_editor.css
1 -@import url(controller_cms.css);  
2 -@import url(person_data.css);  
3 -  
4 -.profile_info {  
5 - width: 100%;  
6 -}  
7 -  
8 -.profile_info th {  
9 - width: 10%;  
10 - text-align: right;  
11 - white-space: nowrap;  
12 -}  
13 -  
14 -.profile_info td,  
15 -.profile_info th {  
16 - padding: 2px 10px;  
17 -}  
18 -  
19 -.profile_info .header {  
20 - background: #BBB;  
21 -}  
22 -  
23 -.profile_info .button {  
24 - border: none !important;  
25 - background-color: transparent !important;  
26 -}  
27 -  
28 -/* file manager (big) style */  
29 -  
30 -.file-manager {  
31 - clear: both; 1 +.control-panel {
  2 + /*border: 1px solid red;*/
  3 + padding: 0px 25px 0px 25px;
32 } 4 }
33 5
34 -.file-manager  
35 -.file-manager-button { 6 +.control-panel a {
  7 + display: block;
36 float: left; 8 float: left;
37 width: 140px; 9 width: 140px;
38 - text-align: center;  
39 - margin-right: 0.5em;  
40 - margin-top: 0.5em;  
41 -}  
42 -  
43 -.file-manager  
44 -.file-manager-button a img {  
45 - border: none;  
46 -}  
47 -  
48 -.file-manager  
49 -.file-manager-button a {  
50 - border: 2px solid transparent;  
51 - display: block;  
52 - padding: 3px;  
53 - height: 90px;  
54 - overflow: hidden;  
55 - font-size: 90%; 10 + background-repeat: no-repeat;
  11 + background-position: 0px 50%;
  12 + height: 48px;
  13 + padding: 4px 10px 0px 50px;
  14 + text-align: left;
56 text-decoration: none; 15 text-decoration: none;
57 - line-height: 100%; 16 + font-weight: bold;
  17 + color: black;
58 } 18 }
59 19
60 -.file-manager-button span {  
61 - display: block;  
62 -}  
63 -  
64 -.control-panel-title {  
65 -}  
66 -.control-panel-subtitle {  
67 - font-size: 80%;  
68 - font-style: italic; 20 +.control-panel a:hover {
  21 + background-color: #d2e0f0;
  22 + -moz-border-radius: 3px;
69 } 23 }