소스 검색

Show and link to the rev ID when relevant.

pull/24/head
Ben Kurtovic 10 년 전
부모
커밋
3e1fdf4bc6
1개의 변경된 파일9개의 추가작업 그리고 2개의 파일을 삭제
  1. +9
    -2
      templates/index.mako

+ 9
- 2
templates/index.mako 파일 보기

@@ -108,10 +108,17 @@
<% show_details = "CopyviosShowDetails" in g.cookies and g.cookies["CopyviosShowDetails"].value == "True" %>
<div class="divider"></div>
<div id="cv-result" class="${'red' if result.violation else 'green'}-box">
<%def name="get_page_link()">
% if query.oldid:
<a href="${query.page.url}">${query.page.title | h}</a> @<a href="//${query.site.domain | h}/w/index.php?oldid=${query.oldid | h}">${query.oldid | h}</a>
% else:
<a href="${query.page.url}">${query.page.title | h}</a>
% endif
</%def>
% if result.violation:
<h2 id="cv-result-header"><a href="${query.page.url}">${query.page.title | h}</a> is a suspected violation of <a href="${result.url | h}">${result.url | urlstrip, h}</a>.</h2>
<h2 id="cv-result-header">${get_page_link()} is a suspected violation of <a href="${result.url | h}">${result.url | urlstrip, h}</a>.</h2>
% else:
<h2 id="cv-result-header">No violations detected in <a href="${query.page.url}">${query.page.title | h}</a>.</h2>
<h2 id="cv-result-header">No violations detected in ${get_page_link()}.</h2>
% endif
<ul id="cv-result-list">
% if not result.violation and not query.url:


불러오는 중...
취소
저장