##// END OF EJS Templates
New setting added to specify how many objects should be displayed on most paginated lists....
New setting added to specify how many objects should be displayed on most paginated lists. Default is: 25, 50, 100 (users can choose one of these values). If one value only is entered in this setting (eg. 25), the 'per page' links are not displayed (prior behaviour). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1026 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r884:8a8f819d273e
r1013:9a1b46fe4287
Show More
export_multiple.rhtml
27 lines | 765 B | text/html+ruby | RhtmlLexer
/ app / views / wiki / export_multiple.rhtml
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title><%=h @wiki.project.name %></title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style>
body { font:80% Verdana,Tahoma,Arial,sans-serif; }
h1, h2, h3, h4 { font-family: Trebuchet MS,Georgia,"Times New Roman",serif; }
</style>
</head>
<body>
Jean-Philippe Lang
Sligth changes to wiki views....
r762 <strong><%= l(:label_index_by_title) %></strong>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <ul>
<% @pages.each do |page| %>
<li><a href="#<%= page.title %>"><%= page.pretty_title %></a></li>
<% end %>
</ul>
<% @pages.each do |page| %>
<hr />
Jean-Philippe Lang
added back the anchor for each page on the wiki full export...
r342 <a name="<%= page.title %>" />
Jean-Philippe Lang
Added wiki macros support. 2 builtin macros are defined: hello_world (sample macro that displays the arguments) and macro_list (display the list of installed macros)....
r884 <%= textilizable page.content ,:text, :wiki_links => :anchor %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
</body>
</html>