Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 193
- Log:
First stage commit of Typo 4.1, modified for the ROOL site.
Includes all local modifications but a final pass needs to be
made to delete any files left over from earlier Typo versions
that shouldn't be here anymore. See the 'tags' section of the
repository for a clean Typo 4.1 tree.Note that symlinks to shared files in the RISC OS Open theme
directory have been deliberately included this time around; I
decided that on balance it was better to leave them in as
placeholders, since unlike symlinks in app/views/shared, the
Typo theme structure is not a standard Rails concept.
- Author:
- rool
- Date:
- Wed Apr 04 18:51:02 +0100 2007
- Size:
- 2524 Bytes
1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
2 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
3 | <html xmlns="http://www.w3.org/1999/xhtml"> |
4 | <head> |
5 | <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> |
6 | <title>Typo Administration: <%= controller.controller_name %></title> |
7 | <meta http-equiv="imagetoolbar" content="no" /> |
8 | <%= stylesheet_link_tag "administration.css" %> |
9 | <%= javascript_include_tag "prototype", "effects", "dragdrop", "controls", "typo" %> |
10 | </head> |
11 | |
12 | <body> |
13 | <div id="container"> |
14 | |
15 | <!-- HEADER --> |
16 | <div id="header"> |
17 | |
18 | <div id="info"> |
19 | <%= current_user_notice rescue nil %> | |
20 | <%= link_to _('your blog') + '»', :controller => "/articles" %> |
21 | |
22 | </div> |
23 | <h1><%= link_to _("Typo admin") + " - #{this_blog.blog_name rescue nil}", :controller => "/admin/general" %></h1> |
24 | </div> |
25 | <!-- /HEADER --> |
26 | |
27 | |
28 | <div id="tabs-container"> |
29 | <ul id="tabs"> |
30 | <%= tab _("Publish"), :controller=>"/admin/content", :action => 'new' %> |
31 | <%= tab _("Manage"), :controller=>"/admin/content/list", :action => 'index' %> |
32 | <%= tab _("Discuss"), :controller=>"/admin/feedback", :action => 'index' %> |
33 | <%= tab _("Design"), :controller=>"/admin/themes", :action => 'index' %> |
34 | <%= tab _("Users"), :controller=>"/admin/users", :action => 'index' %> |
35 | <%= tab _("Settings"), :controller=>"/admin/", :action => 'index' %> |
36 | </ul> |
37 | </div> |
38 | |
39 | |
40 | <div id="overall"> |
41 | <% if flash[:notice] or flash[:error] %> |
42 | <div id="flash"> |
43 | <%= render_flash rescue nil %> |
44 | </div> |
45 | <% end %> |
46 | |
47 | <div id="content"> |
48 | <div id="main"> |
49 | <h2><%= @page_heading %></h2> |
50 | |
51 | <% if not first_render =~ /general|login|signup|logout/ %> |
52 | <div class="tasks"> |
53 | <h3><%= _("Things you can do") %></h3> |
54 | <ul> |
55 | <%= @content_for_tasks %> |
56 | </ul> |
57 | <div style="clear:both;"></div> |
58 | </div> |
59 | <% end %> |
60 | <%= @content_for_layout %> |
61 | </div> |
62 | </div> |
63 | </div> |
64 | <div id="footer"> |
65 | Typo <%=h TYPO_VERSION %> <%= _("with %s Famfamfam iconset %s", '<a href="http://famfamfam.com/">', '</a>') %> |
66 | </div> |
67 | </div> |
68 | </body> |
69 | </html> |
70 |