Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 490
- Log:
Jan 2024 Wiki updates
- Author:
- rool
- Date:
- Sun Jan 28 09:32:06 +0000 2024
- Size:
- 3320 Bytes
1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
2 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
3 | |
4 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
5 | <head> |
6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
7 | <meta name="robots" content="<%= @robots_metatag_value %>" /> |
8 | <%= ( csrf_meta_tag || '' ).gsub( /^/, ' ' ) %> |
9 | |
10 | <title> |
11 | <%- if @page and (@page.name == 'HomePage') and (%w( show published print ).include?(params['action'])) -%> |
12 | <%= h(@web.name) + (@show_diff ? ' (changes)' : '') %> |
13 | <%- elsif @web -%> |
14 | <%= @title %> in <%= h @web.name %> |
15 | <%- else -%> |
16 | <%= @title %> |
17 | <%- end -%> |
18 | </title> |
19 | |
20 | <%= javascript_include_tag 'page_helper' %> |
21 | <%=(javascript_include_tag :defaults).gsub(/^/, ' ') %> |
22 | <%= javascript_include_tag 'auto_sections' %> |
23 | <% if @web -%> |
24 | <%= auto_discovery_link_tag(:atom, {:controller => 'wiki', :web => @web.address, :action => 'atom_with_headlines'}, |
25 | :title => 'Atom with headlines') %> |
26 | <%= auto_discovery_link_tag(:atom, {:controller => 'wiki', :web => @web.address, :action => 'atom_with_content'}, |
27 | :title => 'Atom with full content') %> |
28 | <% end -%> |
29 | <link type="text/css" rel="stylesheet" href="/css/risc_os_open_2024.css" media="all" /> |
30 | <%= stylesheet_link_tag 'instiki', :media => 'all' %> |
31 | <%= stylesheet_link_tag 'syntax', :media => 'all' %> |
32 | </head> |
33 | <body> |
34 | <%= render 'shared/fixed_header' %> |
35 | |
36 | <div id="template_main"> |
37 | |
38 | <!-- Main body content --> |
39 | |
40 | <div id="template_body"> |
41 | <div id="template_body_content"> |
42 | <div id="Container"> |
43 | <div id="Content"> |
44 | <%= hubssolib_flash_tags.html_safe -%> |
45 | <% if @error -%> |
46 | |
47 | <div class="errorExplanation"><%= ( escape_preserving_linefeeds(@error) ).html_safe %></div> |
48 | <% end -%> |
49 | |
50 | <% if @page and (@page.name == 'HomePage') and %w( show published print ).include?(action_name) -%> |
51 | <h1 id="pageName"> |
52 | <%= h(@web.name) + (@show_diff ? ' (changes)' : '') %> |
53 | </h1> |
54 | <% elsif (@title.blank? == false) -%> |
55 | <h1 id="pageName"> |
56 | <%= @title %> |
57 | </h1> |
58 | <% elsif @web -%> |
59 | <h1 id="pageName"> |
60 | <span class="webName"><%= h(@web.name) %></span> <%= (@show_diff ? ' (changes)' : '') %> |
61 | </h1> |
62 | <% end -%> |
63 | |
64 | <%= @content_for_layout %> |
65 | |
66 | </div> <!-- Content --> |
67 | </div> <!-- Container --> |
68 | |
69 | </div> |
70 | </div> |
71 | |
72 | <!-- Sidebar --> |
73 | |
74 | <div id="template_sidebar"> |
75 | <div id="template_sidebar_content"> |
76 | <%- if params['action'] != 'published' then -%> |
77 | <div class="template_sidebar_node"> |
78 | <h3>Search the Wiki</h3> |
79 | |
80 | <p /> |
81 | <%= render(:file => 'search') unless @web.nil? %> |
82 | </div> |
83 | <%- end -%> |
84 | |
85 | <%= render 'shared/fixed_sidebar' %> |
86 | <%- unless @web.nil? || @hide_navigation -%> |
87 | |
88 | <p /> |
89 | <div class="template_sidebar_node"> |
90 | <h3>Navigation</h3> |
91 | <%= render(:file => 'navigation') %> |
92 | </div> |
93 | <%- end -%> |
94 | </div> |
95 | </div> |
96 | |
97 | <div id="template_main_block_end"></div> |
98 | </div> |
99 | |
100 | <%= render 'shared/fixed_footer' %> |
101 | </body> |
102 | </html> |