More XHTML corrections (Bug 3211)
[koha-ffzg.git] / koha-tmpl / intranet-tmpl / prog / en / modules / cataloguing / value_builder / marc21_leader_authorities.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Authorities &rsaquo; Leader builder</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 </head>
5 <body style="padding:1em;">
6 <h3>000 - Leader</h3>
7 <form name="f_pop" onsubmit="report()">
8 <input type="hidden" name="plugin_name" value="marc21_leader_authorities.pl" />
9 <table>
10         <tr>
11                 <td>1-4 Record size</td>
12                 <td>(auto-filled)</td>
13         </tr>
14         <tr>
15                 <td><label for="f5">5- Record status</label></td>
16                 <td>
17                         <select name="f5" id="f5" size="1">
18                         <!-- TMPL_IF name="f5a" -->
19                                 <option value="a" selected="selected">a- Increase in encoding level</option>
20                         <!-- TMPL_ELSE -->
21                                 <option value="a">a- Increase in encoding level</option>
22                         <!-- /TMPL_IF -->
23
24                         <!-- TMPL_IF name="f5c" -->
25                                 <option value="c" selected="selected">c- Corrected or revised</option>
26                         <!-- TMPL_ELSE -->
27                                 <option value="c">c- Corrected or revised</option>
28                         <!-- /TMPL_IF -->
29                         <!-- TMPL_IF name="f5d" -->
30                                 <option value="d" selected="selected">d- Deleted</option>
31                         <!-- TMPL_ELSE -->
32                                 <option value="d">d- Deleted</option>
33                         <!-- /TMPL_IF -->
34                         <!-- TMPL_IF name="f5n" -->
35                                 <option value="n" selected="selected">n- New</option>
36                         <!-- TMPL_ELSE -->
37                                 <option value="n">n- New</option>
38                         <!-- /TMPL_IF -->
39                         <!-- TMPL_IF name="f5o" -->
40                                 <option value="o" selected="selected">o- Obsolete</option>
41                         <!-- TMPL_ELSE -->
42                                 <option value="o">o- Obsolete</option>
43                         <!-- /TMPL_IF -->
44                         <!-- TMPL_IF name="f5s" -->
45                                 <option value="s" selected="selected">s- Deleted; heading split into two or more headings</option>
46                         <!-- TMPL_ELSE -->
47                                 <option value="s">s- Deleted; heading split into two or more headings</option>
48                         <!-- /TMPL_IF -->
49                         <!-- TMPL_IF name="f5x" -->
50                                 <option value="x" selected="selected">x- Deleted; heading replaced by another heading</option>
51                         <!-- TMPL_ELSE -->
52                                 <option value="x">x- Deleted; heading replaced by another heading</option>
53                         <!-- /TMPL_IF -->
54                         </select>
55                 </td>
56         </tr>
57         <tr>
58                 <td><label for="f6">6- Type of record</label></td>
59                 <td>
60             <input name="f6" value="z" type="hidden" />
61             z- Authority data
62                 </td>
63         </tr>
64         <tr>
65                 <td>7-8 Undefined</td>
66                 <td></td>
67         </tr>
68
69         <tr>
70                 <td><label for="f9">9- Encoding</label></td>
71                 <td>
72                         <select name="f9" id="f9" size="1">
73                                 <!-- TMPL_IF name="f9 " -->
74                                         <option value=" " selected="selected">MARC-8</option>
75                                 <!-- TMPL_ELSE -->
76                                         <option value=" ">MARC-8</option>
77                                 <!-- /TMPL_IF -->
78                                 <!-- TMPL_IF name="f9a" -->
79                                         <option value="a" selected="selected">a- UCS/Unicode</option>
80                                 <!-- TMPL_ELSE -->
81                                         <option value="a">a- UCS/Unicode</option>
82                                 <!-- /TMPL_IF -->
83                         </select>
84                 </td>
85         </tr>
86         <tr>
87                 <td>10-16 indicator/subfields/size</td>
88                 <td>(auto-filled)</td>
89         <tr>
90                 <td><label for="f17">17- Encoding level</label></td>
91                 <td>
92                         <select name="f17" id="f17" size="1">
93                                 <!-- TMPL_IF name="f17n" -->
94                                         <option value="n" selected="selected">n- Complete authority record</option>
95                                 <!-- TMPL_ELSE -->
96                                         <option value="n">n- Complete authority record</option>
97                                 <!-- /TMPL_IF -->
98                                 <!-- TMPL_IF name="f17o" -->
99                                         <option value="o" selected="selected">o- Incomplete authority record</option>
100                                 <!-- TMPL_ELSE -->
101                                         <option value="o">o- Incomplete authority record</option>
102                                 <!-- /TMPL_IF -->
103                         </select>
104                 </td>
105         </tr>
106
107         <tr>
108                 <td>18-19 Undefined</td>
109                 <td></td>
110         </tr>
111
112         <tr>
113                 <td>20-24 entry map &amp; lengths</td>
114                 <td>(auto-filled)</td>
115         <tr>
116
117 </table>
118 <fieldset class="action"><input type="submit" value="OK" /> <a href="#" class="cancel close">Cancel</a></fieldset>
119 </form>
120 <script type="text/javascript">//<![CDATA[
121 function report() {
122             var doc   = opener.document; 
123             var field = doc.getElementById("<!-- TMPL_VAR NAME='index'-->");
124         
125             field.value = 
126                         '     '+
127                         document.f_pop.f5.value+
128                         document.f_pop.f6.value+
129                         '  '+
130                         document.f_pop.f9.value+ 
131                         '22     '+
132                         document.f_pop.f17.value+
133                         '  '+
134                         '4500';
135                 self.close();
136                 return false;
137         }
138         //]]>
139 </script>
140
141 <!-- TMPL_INCLUDE NAME="popup-bottom.inc" -->