summaryrefslogtreecommitdiff
path: root/d/sys/lampion/local/lib/svnlog/html.tt
diff options
context:
space:
mode:
Diffstat (limited to 'd/sys/lampion/local/lib/svnlog/html.tt')
-rw-r--r--d/sys/lampion/local/lib/svnlog/html.tt59
1 files changed, 59 insertions, 0 deletions
diff --git a/d/sys/lampion/local/lib/svnlog/html.tt b/d/sys/lampion/local/lib/svnlog/html.tt
new file mode 100644
index 0000000..f6c05b8
--- /dev/null
+++ b/d/sys/lampion/local/lib/svnlog/html.tt
@@ -0,0 +1,59 @@
+[% USE date %]
+[% BLOCK msg %]
+ [% FOREACH msg = msgs %]
+ [% msg %] <br/>
+ [% END %]
+[% END %]
+[% BLOCK files_list %]
+ <ul>
+ [% FOREACH f = files %]
+ <li>[% f %]</li>
+ [% END %]
+ </ul>
+[% END %]
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+ <title>Log Svn </title>
+ <link rel="stylesheet" type="text/css" href="svnlog.css" media="screen" title="Normal" />
+ <link rel="alternate stylesheet" type="text/css" href="" media="screen" title="Sans habillage" />
+ </head>
+ <body><div id="page">
+ [% FOREACH r = revisions -%]
+ [% IF r.msg.size () > 0 %]
+ <div class="ci">
+ <div class="date">[% date.format (r.date, 'le %D à %H:%S') %]</div>
+ <div class="rev">Révision : [% r.rev %]</div>
+ <div class="author">
+ <h3> Auteur : </h3>
+ <p>[% r.author %]</p>
+ </div>
+ <div class="log">
+ <h3>Message : </h3>
+ <p>[% PROCESS msg msgs = r.msg %]</p>
+ </div>
+ [% IF r.exists ('upd') %]
+ <div class="log">
+ <h3>Fichiers modifiés :</h3>
+ [% PROCESS files_list files = r.upd %]
+ </div>
+ [% END %]
+ [% IF r.exists ('add') %]
+ <div class="log">
+ <h3>Fichiers ajoutés :</h3>
+ [% PROCESS files_list files = r.add %]
+ </div>
+ [% END %]
+ [% IF r.exists ('del') %]
+ <div class="log">
+ <h3>Fichiers supprimés :</h3>
+ [% PROCESS files_list files = r.del %]
+ </div>
+ [% END %]
+ </div>
+ [% END %]
+ [% END -%]
+ </div></body>
+</html>