Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 344
- Log:
Massive changeset which brings the old, ROOL customised Instiki
version up to date, but without any ROOL customisations in this
latest checked-in version (which is 0.19.1). This is deliberate,
so that it's easy to see the changes made for the ROOL version
in a subsequent changeset. The 'app/views/shared' directory is not
part of Instiki but is kept to maintain the change history with
updated ROOL customisations, some of which involve the same files
in that same directory.
- Author:
- rool
- Date:
- Sat Mar 19 19:52:13 +0000 2011
- Size:
- 1469 Bytes
1 | <%- @title = "Search results for \"#{h @query}\"".html_safe -%> |
2 | |
3 | <%- unless @title_results.empty? -%> |
4 | <h2><%= @title_results.length %> page(s) containing search string in the page name:</h2> |
5 | <ul> |
6 | <%- for page in @title_results -%> |
7 | <li> |
8 | <%= link_to page.plain_name, :web => @web.address, :action => 'show', :id => page.name %> |
9 | </li> |
10 | <%- end -%> |
11 | </ul> |
12 | <%- end -%> |
13 | |
14 | |
15 | <%- unless @results.empty? -%> |
16 | <h2> <%= @results.length %> page(s) containing search string in the page text:</h2> |
17 | <ul> |
18 | <%- for page in @results -%> |
19 | <li> |
20 | <%= link_to page.plain_name, :web => @web.address, :action => 'show', :id => page.name %> |
21 | </li> |
22 | <%- end -%> |
23 | </ul> |
24 | <%- end -%> |
25 | |
26 | <%- if (@results + @title_results).empty? -%> |
27 | <h2>No pages contain "<%= h @query %>" </h2> |
28 | <p> |
29 | Perhaps you should try expanding your query. Remember that Instiki searches for entire |
30 | phrases, so if you search for "all that jazz" it will not match pages that contain these |
31 | words in separation — only as a sentence fragment. |
32 | </p> |
33 | <p> |
34 | If you're a high-tech computer wizard, you might even want try constructing a Ruby regular |
35 | expression. That's actually what Instiki uses, so go right ahead and flex your |
36 | "[a-z]*Leet?RegExpSkill(s|z)" |
37 | </p> |
38 | <p> |
39 | <b>Create a new page, named:</b> "<span class='newWikiWord'><%= link_to h(@query), :web => @web.address, :action => 'new', :id => @query %></span>" |
40 | </p> |
41 | <%- end -%> |