|
From: | Owen Leonard |
Subject: | [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/prog/en/barcodes barcodes.tmpl,NONE,1.1 printerConfig.tmpl,NONE,1.1 |
Date: | Thu, 04 Aug 2005 12:43:47 -0700 |
Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/prog/en/barcodes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29218/koha-tmpl/intranet-tmpl/prog/en/barcodes Added Files: barcodes.tmpl printerConfig.tmpl Log Message: More programmer's templates --- NEW FILE --- <!-- TMPL_INCLUDE NAME="doc-head-barcodes.inc" --> <!-- START OF ADD COUNTRY CODE PANEL --> <div class="countryPanel" id="addCountryCode"> <form action="/cgi-bin/koha/barcodes/barcodes.pl" method="post" style="display:inline"> <input type="hidden" name="addCode" value="1" /> <h4>Add a new Country Code</h4> <ul> <li><label for="countryName">Country Name:</label> <input type="text" size="10" id="countryName" name="countryName" /></li> <li><label for="countryCode">Country Code:</label> <input type="text" size="3" id="countryCode" name="countryCode" /></li> </ul> <input type="submit" name="submit" id="submit" value="Save Code"/> <input type="button" name="cancel" id="cancel" value="Cancel" onclick="document.getElementById('addCountryCode').style.display = 'none'" /> </form> </div> <!-- END OF ADD COUNTRY CODE PANEL --> <h1>Barcodes Generator</h1> <h3>Generate barcodes from inventory codes</h3> <ul> <li>Select a range of inventary codes. You can choose a continuous range or individual inventory codes</li> <li>Select the standard type to generate barcodes.</li> <li>Define the page size for output the PDF.</li> <li>Depending on page size, Koha will show you how the page is arranged for each barcode. You can define wich point to start printing the page. </li> </ul> <!-- TMPL_IF NAME="ERROR" -->Can't find inventory codes in that range. Please try again.<!-- /TMPL_IF --> <form id="formulario" method="POST" action="<!-- TMPL_VAR NAME="SCRIPT_NAME" -->" name="form1" onsubmit="return checkFields(this);" target="_blank"> <label for="rangeType">Type of Interval: </label><!-- TMPL_VAR NAME="RANGE_TYPE" --> <div id="continuous" class="panel" style="display:inline"> <ul> <li><label for="from">From:</label><input id="from" type="text" name="from" size="20" /></li> <li><label for="to">To:</label><input id="to" type="text" name="to" size="20" /></li> </ul> </div> <div id="individuals" class="panel" style="display:none; background-color: #ffffff;"> <label for="inventaryCode">Inventory Code: </label><input id="inventaryCode" type="text" name="inventaryCode" size="20" /> <a href="#" onclick="addItem(); return false;">[+]</a> <a href="#" onclick="removeItem(); return false;">[-]</a> <select id="inventaryList" size="5" style="width:150px"> </select> <input type="hidden" id="individualCodes" name="individualCodes"> </div> <p> <label for="numbersystem">Country Code: </label><!-- TMPL_VAR NAME="NUMBER_SYSTEM" --><a href="#" onClick="addCountryCode(); return false;">[+]</a></p> <p> <label for="pageType">Page Size</label><input type="text" id="pageType" name="pageType" readonly="readonly" disabled="disabled" value="<!-- TMPL_VAR NAME="PAGES" -->" size="10" /><a href="/cgi-bin/koha/barcodes/printerConfig.pl">[Go to Printer Configuration]</a></p> <p><label for="text_under_label">Text under label</label> <input type="text" id="text_under_label" name="text_under_label" size="40" value="<!-- TMPL_VAR name="text_under_label -->" /> If this field is empty, author and title will be used instead</p> <table> <tr> <th colspan="<!-- TMPL_VAR NAME="COL_SPAN" -->">Label number to start printing</th> </tr> <!-- TMPL_LOOP NAME="LABEL_TABLE" --> <tr> <!-- TMPL_LOOP NAME="columns" --> <td> <input type="radio" id="label" value="<!-- TMPL_VAR NAME="tagname" -->" name="label" <!-- TMPL_VAR NAME="check" -->> Label <!-- TMPL_VAR NAME="labelname" --></td> <!-- /TMPL_LOOP --> </tr> <!-- /TMPL_LOOP --> </table> <input type="submit" value="Generate Barcodes" name="B1"> <input type="reset" value="Clear Fields" name="B2"> </form> <!-- TMPL_INCLUDE name="intranet-bottom.inc" --> --- NEW FILE --- <!-- TMPL_INCLUDE NAME="doc-head-barcodes.inc" --> <h1>Printer Configuration</h1> <h3>Set printer configuration corresponding to your environment</h3> <ul> <li>Set width and height of the label that you are going to work with.</li> <li>Set your system's default DPI.</li> <li>Set the page type.</li> <li>Select how many columns and rows are in your page type.</li> <li>Set left- and bottom-margins of the page that you are going to use. This parameter will help to center the barcodes on the labels.</li> </ul> <br> <form id="formulario" method="POST" action="<!-- TMPL_VAR NAME="SCRIPT_NAME" -->" name="form1"> <input type="hidden" name="saveSettings" value="1" /> <table> <tr> <th scope="row"> Label width (Expressed in mm) </th><td> <input id="labelWidth" type="text" name="labelWidth" size="5" value="<!-- TMPL_VAR NAME="LABEL_WIDTH" -->"> </td></tr> <th scope="row"> Label heigth (Expressed in mm) </th><td> <input id="labelHeigth" type="text" name="labelHeigth" size="5" value="<!-- TMPL_VAR NAME="LABEL_HEIGTH" -->"> </td></tr> <th scope="row"> System dpi </th><td> <input id="systemDpi" type="text" name="systemDpi" size="5" value="<!-- TMPL_VAR NAME="SYSTEM_DPI" -->"> </td></tr> <th scope="row"> Page Type </th> <td> <select name="pageType" id="pageType" size="1"> <!-- TMPL_IF name="A4" --> <option value="A4" selected>A4</option> <!-- TMPL_ELSE --> <option value="A4">A4</option> <!-- /TMPL_IF --> <!-- TMPL_IF name="Letter" --> <option value="Letter" selected>Letter</option> <!-- TMPL_ELSE --> <option value="Letter">Letter</option> <!-- /TMPL_IF --> <!-- TMPL_IF name="Legal" --> <option value="Legal" selected>Legal</option> <!-- TMPL_ELSE --> <option value="Legal">Legal</option> <!-- /TMPL_IF --> </select> </td></tr> <th scope="row"> Columns </th> <td> <input id="columns" type="text" name="columns" size="5" value="<!-- TMPL_VAR NAME="COLUMNS" -->"> </td></tr> <th scope="row"> Rows </th> <td> <input id="rows" type="text" name="rows" size="5" value="<!-- TMPL_VAR NAME="ROWS" -->"> </td></tr> <th scope="row"> Margin Bottom (Expressed in mm) </th> <td> <input id="marginBottom" type="text" name="marginBottom" size="5" value="<!-- TMPL_VAR NAME="MARGIN_TOP" -->"> </td></tr> <th scope="row"> Margin Left (Expressed in mm) </th> <td> <input id="marginLeft" type="text" name="marginLeft" size="5" value="<!-- TMPL_VAR NAME="MARGIN_LEFT" -->"> </td></tr> </table><input type="submit" value="Save Settings" /> </form> <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
[Prev in Thread] | Current Thread | [Next in Thread] |