source: trunk/template/yoga/admin/site_update.tpl @ 1079

Last change on this file since 1079 was 1058, checked in by rvelices, 18 years ago

remake of Remote sites and synchronize: final integration and old code cleanup

fix: xml getAttribute always decodes html entities and added encodeAttribute
function

  • Property svn:eol-style set to native
File size: 3.9 KB
Line 
1<!-- $Id: update.tpl 980 2005-12-10 15:24:53Z chrisaga $ -->
2
3<div class="titrePage">
4  <ul class="categoryActions">
5    <li><a href="{U_HELP}" onclick="popuphelp(this.href); return false;" title="{lang:Help}"><img src="{themeconf:icon_dir}/help.png" class="button" alt="(?)"></a></li>
6  </ul>
7  <h2>{lang:title_update}: <a href="{SITE_URL}" target="_blank">{SITE_URL}</a></h2>
8</div>
9
10<!-- BEGIN update_result -->
11<h3>{L_RESULT_UPDATE}</h3>
12<ul>
13  <li class="update_summary_new">{update_result.NB_NEW_CATEGORIES} {lang:update_nb_new_categories}</li>
14  <li class="update_summary_new">{update_result.NB_NEW_ELEMENTS} {lang:update_nb_new_elements}</li>
15  <li class="update_summary_del">{update_result.NB_DEL_CATEGORIES} {lang:update_nb_del_categories}</li>
16  <li class="update_summary_del">{update_result.NB_DEL_ELEMENTS} {lang:update_nb_del_elements}</li>
17  <li class="update_summary_err">{update_result.NB_ERRORS} {lang:update_nb_errors}</li>
18</ul>
19<!-- END update_result -->
20
21<!-- BEGIN metadata_result -->
22<h3>{L_RESULT_METADATA}</h3>
23<ul>
24  <li>{metadata_result.NB_ELEMENTS_DONE} {lang:update_nb_elements_metadata_sync}</li>
25  <li>{metadata_result.NB_ELEMENTS_CANDIDATES} {lang:update_nb_elements_metadata_available}</li>
26  <li>{lang:update_used_metadata} : {METADATA_LIST}</li>
27</ul>
28<!-- END metadata_result -->
29
30
31<!-- BEGIN sync_errors -->
32<h3>{lang:update_error_list_title}</h3>
33<div class="errors">
34<ul>
35  <!-- BEGIN error -->
36  <li>[{sync_errors.error.ELEMENT}] {sync_errors.error.LABEL}</li>
37  <!-- END error -->
38</ul>
39</div>
40<h3>{lang:update_errors_caption}</h3>
41<ul>
42  <!-- BEGIN error_caption -->
43  <li><strong>{sync_errors.error_caption.TYPE}</strong>: {sync_errors.error_caption.LABEL}</li>
44  <!-- END error_caption -->
45</ul>
46<!-- END sync_errors -->
47
48<!-- BEGIN sync_infos -->
49<h3>{lang:update_infos_title}</h3>
50<div class="infos">
51<ul>
52  <!-- BEGIN info -->
53  <li>[{sync_infos.info.ELEMENT}] {sync_infos.info.LABEL}</li>
54  <!-- END sync_infos -->
55</ul>
56</div>
57<!-- END infos -->
58
59<!-- BEGIN introduction -->
60<h3>{lang:update_default_title}</h3>
61<form action="{F_ACTION}" method="post" id="update">
62
63  <fieldset>
64    <legend>{lang:update_sync_files}</legend>
65    <ul>
66      <li><label><input type="radio" name="sync" value="dirs" {SYNC_DIRS_CHECKED} /> {lang:update_sync_dirs}</label></li>
67      <li><label><input type="radio" name="sync" value="files" {SYNC_ALL_CHECKED} /> {lang:update_sync_all}</label></li>
68      <li><label><input type="checkbox" name="display_info" value="1" {DISPLAY_INFO_CHECKED} /> {lang:update_display_info}</label></li>
69    </ul>
70  </fieldset>
71
72  <fieldset>
73    <legend>{lang:update_sync_metadata}</legend>
74    {lang:update_used_metadata} : {METADATA_LIST}.<br/>
75    <ul>
76      <li><label><input type="radio" name="sync" value="metadata_new" {SYNC_META_NEW_CHECKED} /> {lang:update_sync_metadata_new}</label></li>
77      <li><label><input type="radio" name="sync" value="metadata_all" {SYNC_META_ALL_CHECKED} /> {lang:update_sync_metadata_all}</label></li>
78    </ul>
79  </fieldset>
80
81  <fieldset>
82    <legend></legend>
83    <ul><li><label><input type="checkbox" name="simulate" value="1" checked="checked" /> {lang:update_simulate}</label></li></ul>
84  </fieldset>
85 
86  <fieldset>
87    <legend>{lang:update_cats_subset}</legend>
88    <ul>
89    <li>
90    <select style="width:500px" name="cat" size="10">
91      <!-- BEGIN category_option -->
92      <option {introduction.category_option.SELECTED} value="{introduction.category_option.VALUE}">{introduction.category_option.OPTION}</option>
93      <!-- END category_option -->
94    </select>
95    </li>
96 
97    <li><label><input type="checkbox" name="subcats-included" value="1" {SUBCATS_INCLUDED_CHECKED} /> {lang:search_subcats_included}</label></li>
98    </ul>
99  </fieldset>
100
101  <p class="bottomButtons">
102    <input type="submit" value="{lang:submit}" name="submit" />
103    <input type="reset"  value="{lang:reset}"  name="reset"  />
104  </p>
105</form>
106<!-- END introduction -->
107
108<a href="{U_SITE_MANAGER}">{lang:Site manager}</a>
Note: See TracBrowser for help on using the repository browser.