removed statements: [if-index ...] [is ...] [is-no ...] added: generic ezc functions: and, any (the same as and), or, one (the same as or), not, cmp, trim to_lower, to_upper, index changed: in misc: added treat_new_line_as_white flag to IsWhite() SkipWhite() and TrimWhite() TrimWhite(), TrimFirst(), TrimLast(), Trim() are using only wide characters now (they were templates before) added: IsInt(), IsSize(), IsFloat() changed: version to 0.6.4 git-svn-id: svn://ttmath.org/publicrep/winix/trunk@989 e52654a7-88a9-db11-a3e9-0013d4bc506e
36 lines
938 B
HTML
36 lines
938 B
HTML
<div class="winix">
|
|
|
|
<h1>{timezone_header}</h1>
|
|
|
|
[if user_has_correct_time_zone]
|
|
<p>{timezone_your_zone}: [user_time_zone_name] (UTC[user_time_zone_offset_hour_min])</p>
|
|
[else]
|
|
<p>{timezone_has_incorrect_id}</p>
|
|
[end]
|
|
|
|
|
|
<form id="additem" method="post" action="[doc_base_url][dir][if-one item_is][item_url]/[end]timezone">
|
|
<fieldset>
|
|
<legend>{timezone_form_legend}</legend>
|
|
|
|
<p class="withnext">{timezone_select}:</p>
|
|
|
|
[# add to styles]
|
|
<select name="timezoneid" style="width: 250px;">
|
|
[for winix_tz_tab]
|
|
<option value="[winix_tz_tab_id]" [if cmp [user_time_zone_id] [winix_tz_tab_id]]selected="selected"[end]>UTC[winix_tz_tab_offset_hour_min] [winix_tz_tab_name]</option>
|
|
[end]
|
|
</select>
|
|
|
|
[if winix_function_param_is "postredirect"]
|
|
<input type="hidden" name="postredirect" value="[winix_function_param_value "postredirect"]">
|
|
[end]
|
|
|
|
<input class="submit" type="submit" value="{change}">
|
|
</fieldset>
|
|
</form>
|
|
|
|
|
|
</div>
|
|
|