Changesets can be listed by changeset number.
The Git repository is here.
Changeset 35
Stylesheet tweaks to better match other apps on the site. Updated
theme and powered-by info to match Radiant-exported templates. New
help style when editing pages; doesn't overflow into sidebar.
- Comitted by: adh
- Date: Saturday July 29 16:39:55 2006 (over 18 years ago)
Affected files:
- rool/rails/instiki/trunk/app/views/navigation.rhtml (diff)
- rool/rails/instiki/trunk/app/views/shared/_powered.rhtml (diff)
- rool/rails/instiki/trunk/app/views/shared/_theme.rhtml (diff)
- rool/rails/instiki/trunk/app/views/textile_help.rhtml (diff)
- rool/rails/instiki/trunk/app/views/wiki/edit.rhtml (diff)
- rool/rails/instiki/trunk/app/views/wiki_words_help.rhtml (diff)
- rool/rails/instiki/trunk/public/stylesheets/instiki.css (diff)
rool/rails/instiki/trunk/app/views/navigation.rhtml:
prev. | current | |
<input type="text" id="searchField" name="query" size="15" value="Search" | ||
onfocus="this.value == 'Search' ? this.value = '' : true" | ||
onblur="this.value == '' ? this.value = 'Search' : true" /> | ||
10 | <input type="submit" name="submit" value="Go" /> | |
<%= end_form_tag %> | ||
</div> | ||
<% |
rool/rails/instiki/trunk/app/views/shared/_powered.rhtml:
prev. | current | |
1 | ||
2 | ||
1 | -->Powered by <a href="http://instiki.org/">Instiki</a><!-- |
rool/rails/instiki/trunk/app/views/shared/_theme.rhtml:
prev. | current | |
1 | ||
2 | ||
1 | -->The RISC OS Open Instiki theme is based in part on the Instiki default stylesheet<!-- |
rool/rails/instiki/trunk/app/views/textile_help.rhtml:
prev. | current | |
1 | ||
2 | ||
3 | | |
4 | | |
5 | | |
6 | | |
7 | | |
8 | | |
9 | | |
10 | | |
11 | | |
12 | ||
1 | <h3>Formatting: Texttile</h3> | |
2 | <p style="border-top: 1px dotted #ccc; margin-top: 0px"> | |
3 | Text is formatted using the Texttile markup syntax - find help | |
4 | <a href="http://hobix.com/textile/quick.html" target="_blank" onClick="quickRedReference(); return false;">here</a>. | |
<script language="JavaScript"> | ||
function quickRedReference() { |
rool/rails/instiki/trunk/app/views/wiki/edit.rhtml:
prev. | current | |
1 | ||
1 | <% | |
@title = "Editing #{@page.name}" | ||
@content_width = 720 | ||
@hide_navigation = true | ||
... | ... | |
%> | ||
<p> | ||
17 | | |
17 | <textarea name="content" id="content" cols="48" rows="24" style="width: 70%"><%= h(@flash[:content] || @page.content) %></textarea> | |
</p> | ||
<p> | ||
20 | | |
21 | | |
20 | <input type="submit" value="Submit" accesskey="s"/> as | |
21 | <%= text_field_tag :author, @author, | |
:onfocus => "this.value == 'AnonymousCoward' ? this.value = '' : true;", | ||
:onblur => "this.value == '' ? this.value = 'AnonymousCoward' : true" %> | ||
24 | | |
24 | | | |
<%= link_to('Cancel', {:web => @web.address, :action => 'cancel_edit', :id => @page.name}, | ||
{:accesskey => 'c'}) | ||
%> |
rool/rails/instiki/trunk/app/views/wiki_words_help.rhtml:
prev. | current | |
1 | ||
1 | <h3>Links: Wiki words</h3> | |
<p style="border-top: 1px dotted #ccc; margin-top: 0px"> | ||
3 | | |
4 | | |
3 | Two or more uppercase words stuck together (camel case) or any phrase surrounded by double | |
4 | brackets is a Wiki word. A camel-case wiki word can be escaped by putting \ in front of it. | |
</p> | ||
<p> | ||
Wiki words: <i>HomePage, ThreeWordsTogether, [[C++]], [[Let's play again!]]</i><br/> | ||
8 | | |
8 | Not Wiki words: <i>IBM, School</i> | |
</p> |
rool/rails/instiki/trunk/public/stylesheets/instiki.css:
prev. | current | |
1 | ||
1 | /* RISC OS Open Instiki stylesheet. | |
* | ||
* Based on the Instiki default stylesheet. | ||
*/ | ||
@import url("/css/risc_os_open.css"); | ||
8 | ||
8 | /* Set the page heading spacing */ | |
H2#pageName | ||
{ | ||
12 | | |
13 | | |
14 | | |
12 | margin-bottom: 16px; | |
} | ||
#revision H1, #revision H2, #revision H3, #revision H4, #revision H5, #revision H6 | ||
... | ... | |
#revision H5 { font-size: 110%; } | ||
#revision H6 { font-size: 100%; } | ||
30 | /* Put a thin green line under the byline (revision info), above the links | |
31 | * to edit the page, view changes etc. | |
32 | */ | |
33 | ||
34 | DIV.byline | |
35 | { | |
36 | margin-bottom: 10px; | |
37 | border-bottom: 1px solid #E5FFD4; | |
38 | padding-bottom: 10px; | |
39 | } | |
40 | ||
/* Text used in the navigation part of the sidebar for | ||
* the currently selected page. | ||
*/ |