changeset 4768:ea2cc8a85280

templates: don't use HTML encoding where not needed (closes: #74).
author Andrew Shadura <andrew@shadura.me>
date Wed, 14 Jan 2015 18:03:00 +0100
parents 28289731724b
children 2181d0058c6a
files kallithea/templates/files/files.html
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/templates/files/files.html	Wed Jan 14 17:59:40 2015 +0100
+++ b/kallithea/templates/files/files.html	Wed Jan 14 18:03:00 2015 +0100
@@ -81,7 +81,7 @@
         var f_path = parts2.join('/');
 
         //page title make this consistent with title() mako function on top
-        var title = "${_('%s Files') % c.repo_name}" + " &middot; " + (f_path || '/') + " &middot; " + "${c.site_name}";
+        var title = "${_('%s Files') % c.repo_name}" + " \u00B7 " + (f_path || '/') + " \u00B7 " + "${c.site_name}";
 
         var _node_list_url = node_list_url.replace('__REV__',rev).replace('__FPATH__', f_path);
         var _url_base = url_base.replace('__REV__',rev);