annotate .svn/pristine/b4/b41661ab8e12641807aa683f8cd996cdfc73ffef.svn-base @ 1524:82fac3dcf466 redmine-2.5-integration

Fix failure to interpret Javascript when autocompleting members for project
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Thu, 11 Sep 2014 10:24:38 +0100
parents cbb26bc654de
children
rev   line source
Chris@909 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
Chris@909 2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
Chris@909 3 <head>
Chris@909 4 <title><%=h @wiki.project.name %></title>
Chris@909 5 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
Chris@909 6 <style>
Chris@909 7 body { font:80% Verdana,Tahoma,Arial,sans-serif; }
Chris@909 8 h1, h2, h3, h4 { font-family: "Trebuchet MS",Georgia,"Times New Roman",serif; }
Chris@909 9 ul.toc { padding: 4px; margin-left: 0; }
Chris@909 10 ul.toc li { list-style-type:none; }
Chris@909 11 ul.toc li.heading2 { margin-left: 1em; }
Chris@909 12 ul.toc li.heading3 { margin-left: 2em; }
Chris@909 13 a.wiki-anchor { display: none; margin-left: 6px; text-decoration: none; }
Chris@909 14 a.wiki-anchor:hover { color: #aaa !important; text-decoration: none; }
Chris@909 15 h1:hover a.wiki-anchor, h2:hover a.wiki-anchor, h3:hover a.wiki-anchor { display: inline; color: #ddd; }
Chris@909 16 </style>
Chris@909 17 </head>
Chris@909 18 <body>
Chris@909 19
Chris@909 20 <strong><%= l(:label_index_by_title) %></strong>
Chris@909 21 <ul>
Chris@909 22 <% @pages.each do |page| %>
Chris@909 23 <li><a href="#<%= h(page.title) %>"><%= h(page.pretty_title) %></a></li>
Chris@909 24 <% end %>
Chris@909 25 </ul>
Chris@909 26
Chris@909 27 <% @pages.each do |page| %>
Chris@909 28 <hr />
Chris@909 29 <a name="<%= h(page.title) %>" />
Chris@909 30 <%= textilizable page.content ,:text, :wiki_links => :anchor %>
Chris@909 31 <% end %>
Chris@909 32
Chris@909 33 </body>
Chris@909 34 </html>