|
@@ -21,12 +21,6 @@ import re
|
|
|
<%namespace name="layout" file="about_layout.mako" />
|
|
<%namespace name="layout" file="about_layout.mako" />
|
|
|
${commonheader("About", "about", "100px")}
|
|
${commonheader("About", "about", "100px")}
|
|
|
${layout.menubar(section='log_view')}
|
|
${layout.menubar(section='log_view')}
|
|
|
- <%
|
|
|
|
|
- def remove_html_tags(data):
|
|
|
|
|
- p = re.compile(r'<.*?>')
|
|
|
|
|
- return p.sub('', data)
|
|
|
|
|
- %>
|
|
|
|
|
-
|
|
|
|
|
<div class="container-fluid">
|
|
<div class="container-fluid">
|
|
|
<h1>Log entries (most recent first)</h1>
|
|
<h1>Log entries (most recent first)</h1>
|
|
|
|
|
|
|
@@ -35,10 +29,10 @@ ${layout.menubar(section='log_view')}
|
|
|
<% log.reverse() %>
|
|
<% log.reverse() %>
|
|
|
<pre>
|
|
<pre>
|
|
|
% for l in log:
|
|
% for l in log:
|
|
|
-${remove_html_tags(l)}
|
|
|
|
|
|
|
+${l | h}
|
|
|
% endfor
|
|
% endfor
|
|
|
</pre>
|
|
</pre>
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
-${commonfooter()}
|
|
|
|
|
|
|
+${commonfooter()}
|