You are here: Home > Latest news from Darcs > Changes all icons to icons taken from the eXperience set

Revision 20080329003800-9043f-060783...

Changes all icons to icons taken from the eXperience set

http://art.gnome.org/themes/icon/1096

AUTHORS
app/views/wiki/_properties_show.rhtml
app/views/wiki/_show_event.rhtml
app/views/wiki/_show_feature.rhtml
public/stylesheets/motiro.css

Changes to AUTHORS

2
2
3
The code has also received contributions from Eduardo Fiorezi and Walter Cruz.
The code has also received contributions from Eduardo Fiorezi and Walter Cruz.
3
4
4
5
The icons used on the feature suggestion pages are based on the Dropline Nuovo!
All icons and images are based on the eXperience Crystal icon set by David
5
6
icon set by Silvestre Herrera. See http://www.silvestre.com.ar/ for details.
Christian Berg. See http://art.gnome.org/themes/icon/1096 for details.
6
7
7
8
The icon used on the event pages is from the Silk icon set by Mark James. See
 
9
http://www.famfamfam.com/lab/icons/silk/ for details.
 
10
 
11
All the code, images and other assets (except for the event page icon) inside
All the code, images and other assets (except for the event page icon) inside
8
12
Motiro are licensed under the GPLv2. See LICENSE for details.
Motiro are licensed under the GPLv2. See LICENSE for details.
9
13
10
14
The event page icon is licensed under a Creative Commons Attribution 2.5
 
15
License. See http://www.famfamfam.com/lab/icons/silk/ for details.
 

Changes to _properties_show.rhtml

1
<% begin %>
<% begin %>
1
2
  <%= render(:partial => 'show_' + @page.kind) -%>
  <%= content_tag :div, render(:partial => 'show_' + @page.kind),
2
 
                  :class => 'message' %>
3
3
<% rescue; end %>
<% rescue; end %>
4
4
5

Changes to _show_event.rhtml

1
  <%= image_tag 'calendar.png' -%>
<%= image_tag 'calendar.png' -%>
1
 
<p>
2
2
  <%= 'This event was planned for'.t -%>
  <%= 'This event was planned for'.t -%>
3
3
  <%= @page.happens_at.localize('%d %B %Y (%A)') -%>
  <%= @page.happens_at.localize('%d %B %Y (%A)') -%>
4
 
</p>
5

Changes to _show_feature.rhtml

1
<%= image_tag(@page.done? ? 'done.png' : 'not-done.png') %>
<%= image_tag(@page.done? ? 'done.png' : 'not-done.png') %>
1
2
<%= 'This feature is'.t + ' ' + (@page.done? ? 'done'.t : 'not done'.t) %>
<p><%= 'This feature is'.t + ' ' + (@page.done? ? 'done'.t : 'not done'.t) %></p>
2

Changes to motiro.css

45
    border: 1px solid #679cd2;
    border: 1px solid #679cd2;
45
46
}
}
46
47
47
 
div.pagetext div.message {
48
 
    padding-top: .1em;
49
 
    display: table;
50
 
}
51
 
52
 
div.message img {
53
 
    float: left;
54
 
    margin: 0 .2em .1em .2em;
55
 
}
56
 
57
 
div.message p {
58
 
    display: table-cell;
59
 
    vertical-align: middle;
60
 
}
61
 
62
48
div.pagetext pre.wikisource {
div.pagetext pre.wikisource {
63
49
    border: 1px solid #333;
    border: 1px solid #333;
64
50
    background-color: #dddde0;
    background-color: #dddde0;
65
281 more lines
332
347
333
a:link { color: #3333f0 }
a:link { color: #3333f0 }
348
334
a:visited { color: #88d }
a:visited { color: #88d }
349
 
350