update template defaults and escaping
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
<select id="calcms_project" name="project"
|
||||
onchange="calcms.selectProject()"
|
||||
>
|
||||
<TMPL_LOOP projects><option value="<TMPL_VAR name escape=0>"><TMPL_VAR title></option>
|
||||
<TMPL_LOOP projects><option value="<TMPL_VAR name escape=none>"><TMPL_VAR title></option>
|
||||
</TMPL_LOOP>
|
||||
</select>
|
||||
</form>
|
||||
@@ -17,13 +17,13 @@
|
||||
<form id="calcmsCategoryForm" name="calcms_category">
|
||||
<TMPL_LOOP projects>
|
||||
<TMPL_UNLESS isEmpty>
|
||||
<select id="calcms_category_<TMPL_VAR js_name escape=0>" name="category_<TMPL_VAR js_name escape=0>"
|
||||
<select id="calcms_category_<TMPL_VAR js_name escape=none>" name="category_<TMPL_VAR js_name escape=none>"
|
||||
title="Kategorien durchsuchen"
|
||||
onchange="calcms.selectCategory('<TMPL_VAR name>', jQuery(this).val())"
|
||||
style="display:none;"
|
||||
>
|
||||
<option value="">- Kategorie -</option>
|
||||
<TMPL_LOOP categories><option value="<TMPL_VAR name escape=0>"<TMPL_VAR selected>><TMPL_VAR name> (<TMPL_VAR sum>)</option>
|
||||
<TMPL_LOOP categories><option value="<TMPL_VAR name escape=none>"<TMPL_VAR selected>><TMPL_VAR name> (<TMPL_VAR sum>)</option>
|
||||
</TMPL_LOOP>
|
||||
</select>
|
||||
</TMPL_UNLESS>
|
||||
|
||||
@@ -34,9 +34,9 @@
|
||||
<div class="comment level<TMPL_VAR level>" style="float:clear;" >
|
||||
<a name="comment_<TMPL_VAR id>" />
|
||||
<div class="w1"><div class="w2"><div class="w3"><div class="w4">
|
||||
<span class="author"><TMPL_VAR author escape=0></span>,
|
||||
<span class="author"><TMPL_VAR author escape=none></span>,
|
||||
<span class="date"><TMPL_VAR start_date_name> - <TMPL_VAR start_time_name></span>
|
||||
<div class="content"><TMPL_VAR content escape=0></div>
|
||||
<div class="content"><TMPL_VAR content escape=none></div>
|
||||
<TMPL_IF allow.new_comments>
|
||||
<span >
|
||||
<a href="#calcms_add_comment_<TMPL_VAR id>_anchor"
|
||||
|
||||
@@ -12,8 +12,8 @@
|
||||
<TMPL_LOOP comments>
|
||||
<a href="<TMPL_VAR cache_base_url>/<TMPL_VAR .controllers.event>/<TMPL_VAR event_id>.html#comments">
|
||||
<div class="comments level<TMPL_VAR level>">
|
||||
<span class="author"><TMPL_VAR author escape=0></span>:
|
||||
<span class="content"><TMPL_VAR short_content escape=0></span>
|
||||
<span class="author"><TMPL_VAR author escape=none></span>:
|
||||
<span class="content"><TMPL_VAR short_content escape=none></span>
|
||||
</a>
|
||||
</div>
|
||||
</TMPL_LOOP>
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
</TMPL_IF>
|
||||
</TMPL_IF>
|
||||
|
||||
<TMPL_VAR topic ESCAPE=0><TMPL_VAR content ESCAPE=0>
|
||||
<TMPL_VAR topic escape=none><TMPL_VAR content escape=none>
|
||||
<TMPL_IF recurrence_date><a href="<TMPL_VAR recurrence>.html">Wiederholung vom <TMPL_VAR recurrence_date></a></TMPL_IF>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -11,15 +11,15 @@
|
||||
<TMPL_LOOP projects>
|
||||
<TMPL_UNLESS isEmpty>
|
||||
<select
|
||||
id="calcms_series_name_<TMPL_VAR js_name escape=0>"
|
||||
name="series_name_<TMPL_VAR js_name escape=0>"
|
||||
id="calcms_series_name_<TMPL_VAR js_name escape=none>"
|
||||
name="series_name_<TMPL_VAR js_name escape=none>"
|
||||
title="Sendereihen durchsuchen"
|
||||
onchange="calcms.selectSeries('<TMPL_VAR name>', jQuery(this).val())"
|
||||
style="display:none;"
|
||||
>
|
||||
|
||||
<option value="">- Sendereihe -</option>
|
||||
<TMPL_LOOP series_names><option value="<TMPL_VAR series_name escape=0>"<TMPL_VAR selected escape=0>><TMPL_VAR series_name> (<TMPL_VAR sum>)</option>
|
||||
<TMPL_LOOP series_names><option value="<TMPL_VAR series_name escape=none>"<TMPL_VAR selected escape=none>><TMPL_VAR series_name> (<TMPL_VAR sum>)</option>
|
||||
</TMPL_LOOP>
|
||||
|
||||
</select>
|
||||
|
||||
Reference in New Issue
Block a user