##// END OF EJS Templates
Added wiki annotate view. It's accessible for each version from the page history view. ...
Added wiki annotate view. It's accessible for each version from the page history view. Slight style change: pre-wrap added on file/diff contents. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1020 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r884:8a8f819d273e
r1007:31c6ebb31046
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>