diff options
author | rub <rub@piwigo.org> | 2007-07-18 22:48:50 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-07-18 22:48:50 +0000 |
commit | b879e1742485db53da3edad98be036791bfd1bbf (patch) | |
tree | e056e514016bec1c2b23911b05c5cc54e8580821 /template/yoga | |
parent | ec6395c91169af249bd31d8eb06e103413cff749 (diff) |
Resolved issue 0000725: Check integrity
Replace actual test (exif) by a new dynamic system of check integrity.
Anomalies are listed with automatic correction if it's possible.
It's a proposition of new feature!
git-svn-id: http://piwigo.org/svn/trunk@2065 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/admin/check_integrity.tpl | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/template/yoga/admin/check_integrity.tpl b/template/yoga/admin/check_integrity.tpl new file mode 100644 index 000000000..5523d0364 --- /dev/null +++ b/template/yoga/admin/check_integrity.tpl @@ -0,0 +1,49 @@ +<!-- $Id$ --> +<dl> + <dt>{lang:c13y_title}</dt> + <dd> + <ul> + <form method="post" name="preferences" action="{F_c13y_ACTION}"> + <fieldset> + <table class="table2"> + <tr class="throw"> + <th>{lang:c13y_Anomaly}</th> + <th>{lang:c13y_Correction}</th> + </tr> + <!-- BEGIN c13y --> + <tr class="{c13y.CLASS}"> + <td><label for="c13y_selection-{c13y.ID}">{c13y.ANOMALY}</label></td> + <td> + <!-- BEGIN correction_fct --> + <input type="checkbox" name="c13y_selection[]" value="{c13y.ID}" {c13y.CHECKED} id="c13y_selection-{c13y.ID}" /><label for="c13y_selection-{c13y.ID}"> {lang:c13y_Automatic_correction}</label> + <!-- END correction_fct --> + <!-- BEGIN correction_bad_fct --> + {lang:c13y_Impossible_automatic_correction} + <!-- END correction_bad_fct --> + <!-- BEGIN correction_success_fct --> + {lang:c13y_Correction_applied_success} + <!-- END correction_success_fct --> + <!-- BEGIN correction_error_fct --> + {lang:c13y_Correction_applied_error} + <BR /> + {c13y.correction_error_fct.WIKI_FOROM_LINKS} + <!-- END correction_error_fct --> + <!-- BEGIN br --> + <br /> + <!-- END br --> + <!-- BEGIN correction_msg --> + {c13y.correction_msg.DATA} + <!-- END correction_msg --> + </td> + </tr> + <!-- END c13y --> + </table> + <!-- BEGIN c13y_submit --> + <p> + <input class="submit" type="submit" value="{lang:c13y_Apply_selected_corrections}" name="c13y_submit" {TAG_INPUT_ENABLED} /> + </p> + <!-- END c13y_submit --> + </fieldset> + </form> + </ul> + </dd> |