[vhffs-dev] [1995] Public panel: added missing HTML encoding. |
[ Thread Index |
Date Index
| More vhffs.org/vhffs-dev Archives
]
Revision: 1995
Author: xavier
Date: 2012-02-05 13:42:01 +0100 (Sun, 05 Feb 2012)
Log Message:
-----------
Public panel: added missing HTML encoding.
Modified Paths:
--------------
trunk/vhffs-public/templates/content/group-details.tt
Modified: trunk/vhffs-public/templates/content/group-details.tt
===================================================================
--- trunk/vhffs-public/templates/content/group-details.tt 2012-02-02 23:26:42 UTC (rev 1994)
+++ trunk/vhffs-public/templates/content/group-details.tt 2012-02-05 12:42:01 UTC (rev 1995)
@@ -40,7 +40,7 @@
[% FOREACH w = websites %]
<li>
<p><a class="webarea-link" href="http://[% w.servername %]">[% w.servername %]</a></p>
-<p>[% w.description %]</p>
+<p>[% w.description | html | html_para %]</p>
</li>
[% END %]
</ul>
@@ -52,7 +52,7 @@
[% FOREACH c = cvs.repositories %]
<li>
<p><a class="webcvs-link" href="[% cvs.cvs_web_url %]/[% c.cvsroot %]">[% c.cvsroot %]</a></p>
-<p>[% c.description %]</p>
+<p>[% c.description | html | html_para %]</p>
</li>
[% END %]
</ul>
@@ -64,7 +64,7 @@
[% FOREACH s = svn.repositories %]
<li>
<p><a class="websvn-link" href="[% svn.svn_web_url %]/[% s.reponame %]">[% s.reponame %]</a></p>
-<p>[% s.description %]</p>
+<p>[% s.description | html | html_para %]</p>
</li>
[% END %]
</ul>
@@ -76,7 +76,7 @@
[% FOREACH g = git.repositories %]
<li>
<p><a class="webgit-link" href="[% git.git_web_url %]/[% g.reponame %]">[% g.reponame %]</a></p>
-<p>[% g.description %]</p>
+<p>[% g.description | html | html_para %]</p>
</li>
[% END %]
</ul>
@@ -88,7 +88,7 @@
[% FOREACH m = mercurial.repositories %]
<li>
<p><a class="webmercurial-link" href="[% mercurial.mercurial_web_url %]/[% m.reponame %]">[% m.reponame %]</a></p>
-<p>[% m.description %]</p>
+<p>[% m.description | html | html_para %]</p>
</li>
[% END %]
</ul>
@@ -105,7 +105,7 @@
[% ELSE %]
<p>[% list.listname | mail %]</p>
[% END %]
-<p>[% list.description %]</p>
+<p>[% list.description | html | html_para %]</p>
</li>
[% END %]
</ul>