Owen Leonard
5fe524cf3a
Out of three conditional cases for display of the <body> tag one lacked a unique ID. This patch copies the unique ID from the other cases to the one lacking. This patch also corrects the case of an "onload" attribute which should follow XHTML style rules. To test, the patch for Bug 9618 must be applied. Set the SpineLabelAutoPrint system preference to "[don't] automatically pop up a print dialog." Submit a barcode on the quick spine label creator and view source. The <body> tag should have an ID attribute. Signed-off-by: Paola Rossi <paola.rossi@cineca.it> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Galen Charlton <gmc@esilibrary.com>
42 lines
1.4 KiB
Text
42 lines
1.4 KiB
Text
<!DOCTYPE html>
|
|
[% IF ( bidi ) %]<html lang="[% lang %]" dir="[% bidi %]">[% ELSE %]<html lang="[% lang %]">[% END %]
|
|
<head>
|
|
<title>Koha › Tools › Spine labels</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/spinelabel.css" />
|
|
|
|
<style type="text/css">
|
|
@media print {
|
|
.noprint { display: none; }
|
|
}
|
|
</style>
|
|
[% IF ( IntranetUserCSS ) %]<style type="text/css">[% IntranetUserCSS %]</style>[% END %]
|
|
[% IF ( intranetuserjs ) %]
|
|
<script type="text/javascript" src="[% interface %]/lib/jquery/jquery.js"></script>
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
[% intranetuserjs %]
|
|
//]]>
|
|
</script>
|
|
[% END %]
|
|
</head>
|
|
[% IF ( BarcodeNotFound ) %]
|
|
<body id="labels_spinelabel-print" class="tools labels">
|
|
<p>The barcode [% Barcode %] was not found.</p>
|
|
<p><a href="spinelabel-home.pl">Return to spine label printer</a></p>
|
|
</body>
|
|
[% ELSE %]
|
|
[% IF ( autoprint ) %]
|
|
<body id="labels_spinelabel-print" class="tools labels" onload="window.print()">
|
|
[% ELSE %]
|
|
<body id="labels_spinelabel-print" class="tools labels">
|
|
[% END %]
|
|
<span id="spinelabel" class="label">
|
|
[% content %]
|
|
</span>
|
|
<span id="print_button" class="noprint">
|
|
<button onclick="window.print()">Print this label</button>
|
|
</span>
|
|
</body>
|
|
[% END %]
|
|
</html>
|