ed7543287b
Having to write [% KOHA_VERSION %] for each url is bad because: - It's easily forgettable when adding new <script> or <link> - It prevents grep'ing for the full filename - It violates the DRY principle - If at some point we want to change the "force js and css reload" mechanism, it will be tedious This patch: - adds a Template::Toolkit plugin that generates <script> and <link> tags for JS and CSS files, and inserts automatically the Koha version in the filename - use the new plugin to remove all occurences of [% KOHA_VERSION %] - remove the code that was adding KOHA_VERSION as a template variable Test plan: 1. Apply patch 2. Go to several different pages in Koha (opac and intranet) while checking your browser's dev tools (there should be no 404 for JS and CSS files, and the Koha version should appear in filenames) and the server logs (there should be no "File not found") 3. `git grep KOHA_VERSION` should return nothing 4. prove t/db_dependent/Koha/Template/Plugin/Asset.t Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
88 lines
3.6 KiB
Text
88 lines
3.6 KiB
Text
[% USE Asset %]
|
|
[% SET footerjs = 1 %]
|
|
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Administration › Keyword to MARC mapping</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
</head>
|
|
|
|
<body id="admin_fieldmapping" class="admin">
|
|
[% INCLUDE 'header.inc' %]
|
|
[% INCLUDE 'prefs-admin-search.inc' %]
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> › Keyword to MARC mapping</div>
|
|
<div id="doc3" class="yui-t2">
|
|
<div id="yui-main">
|
|
<div class="yui-b">
|
|
<h2>Keyword to MARC mapping</h2>
|
|
[% UNLESS ( fields.count ) %]
|
|
<div class="dialog message"><p>There are no mappings for the [% IF framework.frameworktext %]<em>[% framework.frameworktext |html %]</em>[% ELSE %]default[% END %] framework. </p></div>
|
|
[% END %]
|
|
<form method="get" action="/cgi-bin/koha/admin/fieldmapping.pl" id="selectframework">
|
|
<label for="framework">Framework:</label>
|
|
<select name="framework" id="framework" style="width:20em;">
|
|
<option value="">Default</option>
|
|
[% FOREACH f IN frameworks %]
|
|
[% IF f.frameworkcode == framework.frameworkcode %]
|
|
<option selected="selected" value="[% f.frameworkcode %]">[% f.frameworktext |html %]</option>
|
|
[% ELSE %]
|
|
<option value="[% f.frameworkcode %]">[% f.frameworktext |html %]</option>
|
|
[% END %]
|
|
[% END %]
|
|
</select>
|
|
<input type="submit" value="Go" />
|
|
</form>
|
|
|
|
|
|
<form method="post" action="" id="addfield">
|
|
<input type="hidden" name="framework" value="[% framework.frameworkcode %]" />
|
|
<fieldset class="rows">
|
|
<legend>Add a mapping</legend>
|
|
<ol>
|
|
<li><label for="fieldname">Field name: </label><input type="text" id="fieldname" name="fieldname" /></li>
|
|
<li><label for="marcfield">MARC field: </label><input type="text" id="marcfield" name="marcfield" size="3" /></li>
|
|
<li><label for="marcsubfield">MARC subfield: </label><input type="text" id="marcsubfield" name="marcsubfield" size="1" /></li>
|
|
</ol>
|
|
<fieldset class="action">
|
|
<input type="submit" value="Submit" />
|
|
</fieldset>
|
|
</fieldset>
|
|
</form>
|
|
|
|
[% IF ( fields.count ) %]
|
|
<table>
|
|
<caption>Mappings for the [% IF framework.frameworktext %]<em>[% framework.frameworktext %]</em>[% ELSE %]default[% END %] framework</caption>
|
|
<tr>
|
|
<th>Field</th>
|
|
<th>MARC field</th>
|
|
<th>MARC subfield</th>
|
|
<th> </th>
|
|
</tr>
|
|
[% FOREACH field IN fields %]
|
|
<tr>
|
|
<td>[% field.field |html %]</td>
|
|
<td>[% field.fieldcode %]</td>
|
|
<td>[% field.subfieldcode %]</td>
|
|
<td><a class="btn btn-default btn-xs" href="?op=delete&id=[% field.id %]&framework=[% field.frameworkcode %]"><i class="fa fa-trash"></i> Delete</a></td>
|
|
</tr>
|
|
[% END %]
|
|
</table>[% END %]
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="yui-b">
|
|
[% INCLUDE 'admin-menu.inc' %]
|
|
</div>
|
|
|
|
[% MACRO jsinclude BLOCK %]
|
|
[% Asset.js("js/admin-menu.js") %]
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$('#selectframework').find("input:submit").hide();
|
|
$('#framework').change(function() {
|
|
$('#selectframework').submit();
|
|
});
|
|
});
|
|
</script>
|
|
[% END %]
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|