More markup corrections for better validation.
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / authtypes.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Administration &rsaquo; <!-- TMPL_IF NAME="add_form" --><!-- TMPL_IF NAME="authtypecode" --> Authority Types &rsaquo; Modify authority type<!-- TMPL_ELSE --> Authority Types &rsaquo; New authority type<!-- /TMPL_IF --><!-- TMPL_ELSE --><!-- TMPL_IF NAME="delete_confirm" -->Authority Types &rsaquo; Confirm Deletion of Authority Type<!-- TMPL_ELSE -->Authority Types<!-- /TMPL_IF --><!-- /TMPL_IF --></title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <script type="text/javascript">
5 //<![CDATA[
6 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
7 function isNotNull(f,noalert) {
8         if (f.value.length ==0) {
9                 return false;
10         }
11         return true;
12 }
13 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
14 function toUC(f) {
15         var x=f.value.toUpperCase();
16         f.value=x;
17         return true;
18 }
19 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
20 function isNum(v,maybenull) {
21 var n = new Number(v.value);
22 if (isNaN(n)) {
23         return false;
24         }
25 if (maybenull==0 && v.value=='') {
26         return false;
27 }
28 return true;
29 }
30 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
31 function isDate(f) {
32         var t = Date.parse(f.value);
33         if (isNaN(t)) {
34                 return false;
35         }
36 }
37 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
38 function Check(f) {
39         var ok=1;
40         var _alertString="";
41         var alertString2;
42         if (f.authtypecode.value.length==0) {
43                 _alertString += "\n- " + _("Authority type : code missing");
44         }
45         if (!(isNotNull(window.document.Aform.authtypetext,1))) {
46                 _alertString += "\n- " + _("Description missing");
47         }
48         if (_alertString.length==0) {
49                 document.Aform.submit();
50         } else {
51                 alertString2  = _("Form not submitted because of the following problem(s)");
52                 alertString2 += "\n------------------------------------------------------------------------------------\n";
53                 alertString2 += _alertString;
54                 alert(alertString2);
55         }
56 }
57 //]]>
58 </script>
59 </head>
60 <body>
61 <!-- TMPL_INCLUDE NAME="header.inc" -->
62 <!-- TMPL_INCLUDE NAME="cat-search.inc" -->
63
64 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo; <!-- TMPL_IF NAME="add_form" --><!-- TMPL_IF NAME="authtypecode" --> <a href="/cgi-bin/koha/admin/authtypes.pl">Authority Types</a> &rsaquo; Modify authority type<!-- TMPL_ELSE --> <a href="/cgi-bin/koha/admin/authtypes.pl">Authority Types</a> &rsaquo; New authority type<!-- /TMPL_IF --><!-- TMPL_ELSE --><!-- TMPL_IF NAME="delete_confirm" --><a href="/cgi-bin/koha/admin/authtypes.pl">Authority Types</a> &rsaquo; Confirm Deletion of Authority Type<!-- TMPL_ELSE -->Authority Types<!-- /TMPL_IF --><!-- /TMPL_IF --></div>
65
66 <div id="doc3" class="yui-t2">
67    
68    <div id="bd">
69         <div id="yui-main">
70         <div class="yui-b">
71
72 <!-- TMPL_IF NAME="add_form" -->
73
74         <form action="<!-- TMPL_VAR NAME="script_name" -->" name="Aform" method="post">
75                 <fieldset class="rows">
76                 <!-- TMPL_IF NAME="authtypecode" -->
77                 <legend>Modify authority type</legend>
78         <!-- TMPL_ELSE -->
79                 <legend>New authority type</legend>
80         <!-- /TMPL_IF -->
81         <ol>
82                         <!-- TMPL_IF NAME="authtypecode" -->
83                                 <li><span class="label">Authority type</span><input type="hidden" name="op" value="add_validate" />
84                 <input type="hidden" name="checked" value="0" /><input type="hidden" name="authtypecode" value="<!-- TMPL_VAR NAME="authtypecode" -->" /><!-- TMPL_VAR NAME="authtypecode" --></li>
85                         <!-- TMPL_ELSE -->
86                                 <li><label for="authtypecode">Authority type: </label><input id="authtypecode" type="text" name="authtypecode" size="10" maxlength="10" onblur="toUC(this)" /></li>
87                         <!-- /TMPL_IF -->
88                 <li><label for="authtypetext">Description: </label><input type="text" id="authtypetext" name="authtypetext" size="40" maxlength="80" value="<!-- TMPL_VAR NAME="authtypetext" ESCAPE="HTML" -->" /></li>
89                 <li><label for="summary">Summary: </label><textarea id="summary" name="summary" cols="55" rows="7"><!-- TMPL_VAR NAME="summary" --></textarea></li>
90                 <li>
91                 <p class="tip">Note: for 'Authority field to copy', enter the authority field that should be copied from the authority record to the bibliographic record. E.g., in MARC21, field 100 in the authority record should be copied to field 100 in the bibliographic record</p>
92                 <label for="auth_tag_to_report">Authority field to copy: </label><input type="text" id="auth_tag_to_report" name="auth_tag_to_report" size="5" maxlength="3" value="<!-- TMPL_VAR NAME="auth_tag_to_report">" />
93                 <input type="hidden" name="op" value="add_validate" />
94                 <!-- TMPL_IF NAME="authtypecode" -->
95                 <input type="hidden" name="modif" value="1" />
96         <!-- /TMPL_IF -->
97         </li></ol>
98         </fieldset>
99         <fieldset class="action"><input type="submit" value="Submit" onclick="Check(this.form); return false;" /><a class="cancel" href="/cgi-bin/koha/admin/authtypes.pl">Cancel</a></fieldset>
100         </form>
101 <!-- /TMPL_IF -->
102
103 <!-- TMPL_IF NAME="delete_confirm" -->
104                 <div class="dialog alert"><h3>Confirm Deletion of authority structure definition for <span class="ex">'<!-- TMPL_VAR NAME="authtypetext" -->' (<!-- TMPL_VAR NAME="authtypecode" -->)</span></h3>
105         <!-- TMPL_IF NAME="total" -->
106                 <p>This record is used <strong><!-- TMPL_VAR NAME="total" --></strong> times</p>
107         <!-- /TMPL_IF -->               
108                         <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post"><input type="hidden" name="op" value="delete_confirmed" />
109                         <input type="hidden" name="authtypecode" value="<!-- TMPL_VAR NAME="authtypecode" -->" />
110                         <fieldset class="action"><input type="submit" class="approve" value="Yes, Delete" />
111                 </form>
112                 <form action="<!-- TMPL_VAR NAME="script_name" -->" method="get"><input type="submit" class="deny" value="No, Do Not Delete" /></form>
113                 </div>
114 <!-- /TMPL_IF -->
115
116 <!-- TMPL_IF NAME="else" -->
117
118 <div id="toolbar">
119         <script type="text/javascript">
120         //<![CDATA[
121         // prepare DOM for YUI Toolbar
122          $(document).ready(function() {
123             yuiToolbar();
124          });
125         // YUI Toolbar Functions
126         function yuiToolbar() {
127             new YAHOO.widget.Button("authtype");
128         } //]]>
129         </script>
130         <ul class="toolbar">
131         <li><a id="authtype" href="/cgi-bin/koha/admin/authtypes.pl?op=add_form">New Authority Type</a></li>
132 </ul></div>
133
134 <h1>Authority Types</h1>
135 <p>Define authority types, then authority MARC structure in the same way you define itemtypes and biblio MARC tag structure. Authority values are managed through plugins</p>
136 <table>
137         <tr>
138                 <th>Code</th>
139                 <th>Description</th>
140                 <th>Summary</th>
141                 <th>Auth field copied</th>
142                 <th>&nbsp;</th>
143                 <th>Edit</th>
144                 <th>Delete</th>
145         </tr>
146         
147         <!-- TMPL_LOOP NAME="loop" -->
148                 <tr>
149                         <td><!-- TMPL_VAR NAME="authtypecode" --></td>
150                         <td><!-- TMPL_VAR NAME="authtypetext" --></td>
151                         <td><!-- TMPL_VAR NAME="summary" --></td>
152                         <td><!-- TMPL_VAR NAME="auth_tag_to_report" --></td>
153                         <td><a href="auth_tag_structure.pl?authtypecode=<!-- TMPL_VAR NAME="authtypecode" -->" class="button parameters" >MARC structure</a></td>
154                         <td><a href="<!-- TMPL_VAR NAME="script_name" -->?op=add_form&amp;authtypecode=<!-- TMPL_VAR NAME="authtypecode" escape="HTML" -->">Edit</a></td>
155                         <td><a href="<!-- TMPL_VAR NAME="script_name" -->?op=delete_confirm&amp;authtypecode=<!-- TMPL_VAR NAME="authtypecode" escape="HTML" -->">Delete</a></td>
156                 </tr>
157         <!-- /TMPL_LOOP -->
158 </table>
159
160         <!-- TMPL_IF NAME="previous" --><p><a href="<!-- TMPL_VAR NAME="previous" -->">&lt;&lt; Previous</a></p><!-- /TMPL_IF -->
161         <!-- TMPL_IF NAME="next" --><p><a href="<!-- TMPL_VAR NAME="next" -->">Next &gt;&gt;</a></p><!-- /TMPL_IF -->
162
163 <!-- /TMPL_IF -->
164 </div>
165 </div>
166 <div class="yui-b">
167 <!-- TMPL_INCLUDE NAME="admin-menu.inc" -->
168 </div>
169 </div>
170 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->