source: branches/branch-1_6/template/yoga/admin/site_update.tpl @ 1238

Last change on this file since 1238 was 1203, checked in by rvelices, 18 years ago

bug 335: tn_ext, has_high and representative_ext are updated during file
synchronization and not metadata synchronization

  • Property svn:eol-style set to native
File size: 4.0 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>{update_result.NB_UPD_ELEMENTS} {lang:update_nb_upd_elements}</li>
18  <li class="update_summary_err">{update_result.NB_ERRORS} {lang:update_nb_errors}</li>
19</ul>
20<!-- END update_result -->
21
22<!-- BEGIN metadata_result -->
23<h3>{L_RESULT_METADATA}</h3>
24<ul>
25  <li>{metadata_result.NB_ELEMENTS_DONE} {lang:update_nb_elements_metadata_sync}</li>
26  <li>{metadata_result.NB_ELEMENTS_CANDIDATES} {lang:update_nb_elements_metadata_available}</li>
27  <li>{lang:update_used_metadata} : {METADATA_LIST}</li>
28</ul>
29<!-- END metadata_result -->
30
31
32<!-- BEGIN sync_errors -->
33<h3>{lang:update_error_list_title}</h3>
34<div class="errors">
35<ul>
36  <!-- BEGIN error -->
37  <li>[{sync_errors.error.ELEMENT}] {sync_errors.error.LABEL}</li>
38  <!-- END error -->
39</ul>
40</div>
41<h3>{lang:update_errors_caption}</h3>
42<ul>
43  <!-- BEGIN error_caption -->
44  <li><strong>{sync_errors.error_caption.TYPE}</strong>: {sync_errors.error_caption.LABEL}</li>
45  <!-- END error_caption -->
46</ul>
47<!-- END sync_errors -->
48
49<!-- BEGIN sync_infos -->
50<h3>{lang:update_infos_title}</h3>
51<div class="infos">
52<ul>
53  <!-- BEGIN info -->
54  <li>[{sync_infos.info.ELEMENT}] {sync_infos.info.LABEL}</li>
55  <!-- END sync_infos -->
56</ul>
57</div>
58<!-- END infos -->
59
60<!-- BEGIN introduction -->
61<h3>{lang:update_default_title}</h3>
62<form action="{F_ACTION}" method="post" id="update">
63
64  <fieldset>
65    <legend>{lang:update_sync_files}</legend>
66    <ul>
67      <li><label><input type="radio" name="sync" value="dirs" {SYNC_DIRS_CHECKED} /> {lang:update_sync_dirs}</label></li>
68      <li><label><input type="radio" name="sync" value="files" {SYNC_ALL_CHECKED} /> {lang:update_sync_all}</label></li>
69      <li><label><input type="checkbox" name="display_info" value="1" {DISPLAY_INFO_CHECKED} /> {lang:update_display_info}</label></li>
70    </ul>
71  </fieldset>
72
73  <fieldset>
74    <legend>{lang:update_sync_metadata}</legend>
75    {lang:update_used_metadata} : {METADATA_LIST}.<br/>
76    <ul>
77      <li><label><input type="radio" name="sync" value="metadata_new" {SYNC_META_NEW_CHECKED} /> {lang:update_sync_metadata_new}</label></li>
78      <li><label><input type="radio" name="sync" value="metadata_all" {SYNC_META_ALL_CHECKED} /> {lang:update_sync_metadata_all}</label></li>
79    </ul>
80  </fieldset>
81
82  <fieldset>
83    <legend></legend>
84    <ul><li><label><input type="checkbox" name="simulate" value="1" checked="checked" {TAG_INPUT_ENABLED} /> {lang:update_simulate}</label></li></ul>
85  </fieldset>
86
87  <fieldset>
88    <legend>{lang:update_cats_subset}</legend>
89    <ul>
90    <li>
91    <select style="width:500px" name="cat" size="10">
92      <!-- BEGIN category_option -->
93      <option {introduction.category_option.SELECTED} value="{introduction.category_option.VALUE}">{introduction.category_option.OPTION}</option>
94      <!-- END category_option -->
95    </select>
96    </li>
97
98    <li><label><input type="checkbox" name="subcats-included" value="1" {SUBCATS_INCLUDED_CHECKED} /> {lang:search_subcats_included}</label></li>
99    </ul>
100  </fieldset>
101
102  <p class="bottomButtons">
103    <input type="submit" value="{lang:submit}" name="submit" />
104    <input type="reset"  value="{lang:reset}"  name="reset"  />
105  </p>
106</form>
107<!-- END introduction -->
108
109<a href="{U_SITE_MANAGER}">{lang:Site manager}</a>
Note: See TracBrowser for help on using the repository browser.