[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters curre
From: |
Paul POULAIN |
Subject: |
[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters currency.tmpl,1.11,1.12 |
Date: |
Sat, 14 Aug 2004 02:32:43 -0700 |
Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters
In directory
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13786/koha-tmpl/intranet-tmpl/default/en/parameters
Modified Files:
currency.tmpl
Log Message:
css'ing
Index: currency.tmpl
===================================================================
RCS file:
/cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters/currency.tmpl,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** currency.tmpl 19 Jul 2004 19:20:29 -0000 1.11
--- currency.tmpl 14 Aug 2004 09:32:40 -0000 1.12
***************
*** 1,212 ****
<!-- TMPL_INCLUDE NAME="parameters-top.inc" -->
!
! <!-- TMPL_IF NAME="add_form" -->
! <script language="javascript" type="text/javascript">
! function _(s) { return s } // dummy function for gettext
!
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
! function isNotNull(f,noalert) {
! if (f.value.length ==0) {
! return false;
! }
! return true;
! }
!
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
! function toUC(f) {
! var x=f.value.toUpperCase();
! f.value=x;
! return true;
! }
!
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
! function isNum(v,maybenull) {
! var n = new Number(v.value);
! if (isNaN(n)) {
! return false;
! }
! if (maybenull==0 && v.value=='') {
! return false;
! }
! return true;
! }
!
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
! function isDate(f) {
! var t = Date.parse(f.value);
! if (isNaN(t)) {
! return false;
! }
! }
!
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
! function Check(f) {
! var ok=1;
! var _alertString="";
! var alertString2;
! if (f.currency.value.length==0) {
! _alertString += "\n- " + _("Currency name missing");
! }
! if (f.rate.value.length==0) {
! _alertString += "\n- " + _("Rate missing");
! }
! if (_alertString.length==0) {
! document.Aform.submit();
! } else {
! alertString2 = _("Form not submitted because of the
following problem(s)");
! alertString2 +=
"\n------------------------------------------------------------------------------------\n";
! alertString2 += _alertString;
! alert(alertString2);
! }
! }
! </script>
!
! <!-- TMPL_IF NAME="searchfield" -->
! <h1>Modify currency</h1>
! <!-- TMPL_ELSE -->
! <h1>Add currency</h1>
! <!-- /TMPL_IF -->
!
! <form action="<!-- TMPL_VAR NAME="script_name" -->" name="Aform"
method="post">
! <input type="hidden" name="op" value="add_validate">
!
! <table>
!
! <!-- TMPL_IF NAME="searchfield" -->
! <tr>
! <td>Currency</td>
! <td>
<input type="hidden" name="currency"
value="<!-- TMPL_VAR NAME="searchfield" -->"><!-- TMPL_VAR NAME="searchfield"
-->
! </td>
! </tr>
! <!-- TMPL_ELSE -->
! <tr>
! <td>Currency</td>
! <td>
<input type="text" name="currency" size="50"
maxlength="50" onblur="toUC(this)">
! </td>
! </tr>
<!-- /TMPL_IF -->
!
! <tr>
! <td>Rate</td>
! <td>
! <input type="text" name="rate" size="10"
maxlength="10" value="<!-- TMPL_VAR NAME="rate" -->">
! </td>
! </tr>
! <tr>
! <td> </td>
! <td><input type="button" value="OK"
onclick="Check(this.form)"></td>
! </tr>
! </table>
! </form>
!
! <!-- /TMPL_IF -->
!
! <!-- TMPL_IF NAME="add_validate" -->
! Data recorded
! <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
! <input type="submit" value="OK">
! </form>
! <!-- /TMPL_IF -->
!
! <!-- TMPL_IF NAME="delete_confirm" -->
! <table border="0" cellspacing="0" cellpadding="5">
! <tr bgcolor="#99cc33">
! <td
background="/images/background-mem.gif"><b>Currency</b></td>
! <td background="/images/background-mem.gif"><b><!--
TMPL_VAR NAME="searchfield" --></b></td>
! </tr>
!
! <form action="<!-- TMPL_VAR NAME="script_name" -->"
method="post">
! <input type="hidden" name="op" value="delete_confirmed">
! <input type="hidden" name="searchfield" value="<!--
TMPL_VAR NAME="searchfield" -->">
!
! <tr>
! <td>Rate</td>
! <td><!-- TMPL_VAR NAME="rate" --></td>
! </tr>
! <!-- TMPL_IF NAME="totalgtzero" -->
! <tr>
! <td colspan="2" align="center">
! <b>This record is used <!-- TMPL_VAR
NAME="total" --> times. Deletion not possible</b>
! </td>
! </tr>
! <tr>
! <td colspan="2">
! </form>
! <form action="<!-- TMPL_VAR NAME="script_name"
-->" method="post">
! <input type="submit" value="OK">
! </form>
! </td>
! </tr>
! <!-- TMPL_ELSE -->
! <tr>
! <td colspan="2" align="center">CONFIRM DELETION</td>
! </tr>
! <tr>
! <td>
! <input type="submit" value="YES">
! </form>
! </td>
! <td>
<form action="<!-- TMPL_VAR NAME="script_name"
-->" method="post">
! <input type="submit" value="NO">
! </form>
! </td>
! </tr>
! <!-- /TMPL_IF -->
! </table>
! <!-- /TMPL_IF -->
!
! <!-- TMPL_IF NAME="delete_confirmed" -->
! Data deleted
! <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
! <input type="submit" value="OK">
! </form>
! <!-- /TMPL_IF -->
!
! <!-- TMPL_IF NAME="else" -->
! <h2>Currencies admin</h2>
! <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
! <input type="text" name="description" value="<!-- TMPL_VAR
NAME="searchfield" -->">
! <input type="reset" name="reset" value="clr">
! </form>
!
! <!-- TMPL_IF NAME="searchfield" -->
! You searched for <b><!-- TMPL_VAR NAME="searchfield" --></b>
<!-- /TMPL_IF -->
-
- <table border="0" cellspacing="0" cellpadding="5">
- <tr bgcolor="#99cc33">
- <td
background="/images/background-mem.gif"><b>Currency</b></td>
- <td
background="/images/background-mem.gif"><b>Rate</b></td>
- <td background="/images/background-mem.gif"> </td>
- <td background="/images/background-mem.gif"> </td>
- </tr>
- <!-- TMPL_LOOP NAME="loop" -->
- <tr bgcolor="<!-- TMPL_VAR NAME="toggle" -->">
- <td><!-- TMPL_VAR NAME="currency" --></td>
- <td><!-- TMPL_VAR NAME="rate" --></td>
- <td><a href="<!-- TMPL_VAR NAME="script_name"
-->?op=add_form&searchfield=<!-- TMPL_VAR NAME="currency" -->"
class="button">Edit</a></td>
- <td><a href="<!-- TMPL_VAR NAME="script_name"
-->?op=delete_confirm&searchfield=<!-- TMPL_VAR NAME="currency" -->"
class="button">Delete</a></td>
- </tr>
- <!-- /TMPL_LOOP -->
- </table>
-
- <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
- <input type="hidden" name="op" value="add_form">
! <!-- TMPL_IF NAME="offsetgtzero" -->
! <a href="<!-- TMPL_VAR NAME="script_name" -->?offset=<!--
TMPL_VAR NAME="prevpage" -->"><< Prev</a>
<!-- /TMPL_IF -->
!
!
!
! <!-- TMPL_IF NAME="ltcount" -->
! <a href="<!-- TMPL_VAR NAME="script_name" -->?offset=<!--
TMPL_VAR NAME="nextpage" -->">Next >></a>
! <!-- /TMPL_iF -->
!
! <br>
! <input type="submit" class="button" value="Add currency" alt="Add
currency">
! <br>
! </form>
!
! <!-- /TMPL_IF -->
!
<!-- TMPL_INCLUDE NAME="parameters-bottom.inc" -->
--- 1,199 ----
<!-- TMPL_INCLUDE NAME="parameters-top.inc" -->
! <div id="mainbloc">
! <!-- TMPL_IF NAME="add_form" -->
! <script language="javascript" type="text/javascript">
! function _(s) { return s } // dummy function for gettext
!
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
! function isNotNull(f,noalert) {
! if (f.value.length ==0) {
! return false;
! }
! return true;
! }
!
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
! function toUC(f) {
! var x=f.value.toUpperCase();
! f.value=x;
! return true;
! }
!
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
! function isNum(v,maybenull) {
! var n = new Number(v.value);
! if (isNaN(n)) {
! return false;
! }
! if (maybenull==0 && v.value=='') {
! return false;
! }
! return true;
! }
!
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
! function isDate(f) {
! var t = Date.parse(f.value);
! if (isNaN(t)) {
! return false;
! }
! }
!
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
! function Check(f) {
! var ok=1;
! var _alertString="";
! var alertString2;
! if (f.currency.value.length==0) {
! _alertString += "\n- "
+ _("Currency name missing");
! }
! if (f.rate.value.length==0) {
! _alertString += "\n- "
+ _("Rate missing");
! }
! if (_alertString.length==0) {
! document.Aform.submit();
! } else {
! alertString2 = _("Form
not submitted because of the following problem(s)");
! alertString2 +=
"\n------------------------------------------------------------------------------------\n";
! alertString2 +=
_alertString;
! alert(alertString2);
! }
! }
! </script>
!
! <!-- TMPL_IF NAME="searchfield" -->
! <h1 class="parameters">Modify currency</h1>
! <!-- TMPL_ELSE -->
! <h1 class="parameters">Add currency</h1>
! <!-- /TMPL_IF -->
!
! <form action="<!-- TMPL_VAR NAME="script_name" -->"
name="Aform" method="post">
! <input type="hidden" name="op" value="add_validate">
!
! <!-- TMPL_IF NAME="searchfield" -->
! <p>
! <label>Currency</label>
<input type="hidden" name="currency"
value="<!-- TMPL_VAR NAME="searchfield" -->"><!-- TMPL_VAR NAME="searchfield"
-->
! </p>
! <!-- TMPL_ELSE -->
! <p>
! <label>Currency</label>
<input type="text" name="currency" size="50"
maxlength="50" onblur="toUC(this)">
! </p>
! <!-- /TMPL_IF -->
! <p>
! <label>Rate</label>
! <input type="text" name="rate" size="10" maxlength="10"
value="<!-- TMPL_VAR NAME="rate" -->">
! </p>
! <p><input type="button" value="OK" onclick="Check(this.form)"
class="button parameters"></p>
! </form>
!
<!-- /TMPL_IF -->
!
! <!-- TMPL_IF NAME="add_validate" -->
! Data recorded
! <form action="<!-- TMPL_VAR NAME="script_name" -->"
method="post">
! <input type="submit" value="OK">
! </form>
! <!-- /TMPL_IF -->
!
! <!-- TMPL_IF NAME="delete_confirm" -->
! <table border="0" cellspacing="0" cellpadding="5">
! <tr bgcolor="#99cc33">
! <td
background="/images/background-mem.gif"><b>Currency</b></td>
! <td
background="/images/background-mem.gif"><b><!-- TMPL_VAR NAME="searchfield"
--></b></td>
! </tr>
!
<form action="<!-- TMPL_VAR NAME="script_name"
-->" method="post">
! <input type="hidden" name="op"
value="delete_confirmed">
! <input type="hidden" name="searchfield"
value="<!-- TMPL_VAR NAME="searchfield" -->">
!
! <tr>
! <td>Rate</td>
! <td><!-- TMPL_VAR NAME="rate" --></td>
! </tr>
! <!-- TMPL_IF NAME="totalgtzero" -->
! <tr>
! <td colspan="2" align="center">
! <b>This record is used <!-- TMPL_VAR
NAME="total" --> times. Deletion not possible</b>
! </td>
! </tr>
! <tr>
! <td colspan="2">
! </form>
! <form action="<!-- TMPL_VAR
NAME="script_name" -->" method="post">
! <input type="submit" value="OK">
! </form>
! </td>
! </tr>
! <!-- TMPL_ELSE -->
! <tr>
! <td colspan="2" align="center">CONFIRM
DELETION</td>
! </tr>
! <tr>
! <td>
! <input type="submit" value="YES">
! </form>
! </td>
! <td>
! <form action="<!-- TMPL_VAR
NAME="script_name" -->" method="post">
! <input type="submit" value="NO">
! </form>
! </td>
! </tr>
! <!-- /TMPL_IF -->
! </table>
<!-- /TMPL_IF -->
! <!-- TMPL_IF NAME="delete_confirmed" -->
! Data deleted
! <form action="<!-- TMPL_VAR NAME="script_name" -->"
method="post">
! <input type="submit" value="OK">
! </form>
<!-- /TMPL_IF -->
!
! <!-- TMPL_IF NAME="else" -->
! <h1 class="parameters">Currencies admin</h1>
! <form action="<!-- TMPL_VAR NAME="script_name" -->"
method="post">
! <input type="text" name="description"
value="<!-- TMPL_VAR NAME="searchfield" -->">
! <input type="submit" value="Filter"
class="button parameters">
! </form>
!
! <!-- TMPL_IF NAME="searchfield" -->
! You searched for <b><!-- TMPL_VAR NAME="searchfield"
--></b>
! <!-- /TMPL_IF -->
!
! <table>
! <tr>
! <th class="parameters"><b>Currency</b></td>
! <th class="parameters"><b>Rate</b></td>
! <th class="parameters"> </td>
! <th class="parameters"> </td>
! </tr>
! <!-- TMPL_LOOP NAME="loop" -->
! <tr bgcolor="<!-- TMPL_VAR NAME="toggle" -->">
! <td><!-- TMPL_VAR NAME="currency" --></td>
! <td><!-- TMPL_VAR NAME="rate" --></td>
! <td><a href="<!-- TMPL_VAR NAME="script_name"
-->?op=add_form&searchfield=<!-- TMPL_VAR NAME="currency" -->"
class="button parameters">Edit</a></td>
! <td><a href="<!--
TMPL_VAR NAME="script_name" -->?op=delete_confirm&searchfield=<!-- TMPL_VAR
NAME="currency" -->" class="button parameters">Delete</a></td>
! </tr>
! <!-- /TMPL_LOOP -->
! </table>
!
! <form action="<!-- TMPL_VAR NAME="script_name" -->"
method="post">
! <input type="hidden" name="op" value="add_form">
!
! <!-- TMPL_IF NAME="offsetgtzero" -->
! <a href="<!-- TMPL_VAR NAME="script_name"
-->?offset=<!-- TMPL_VAR NAME="prevpage" -->"><< Prev</a>
! <!-- /TMPL_IF -->
!
!
!
! <!-- TMPL_IF NAME="ltcount" -->
! <a href="<!-- TMPL_VAR NAME="script_name"
-->?offset=<!-- TMPL_VAR NAME="nextpage" -->">Next >></a>
! <!-- /TMPL_iF -->
!
! <br>
! <input type="submit" class="button parameters" value="Add
currency" alt="Add currency">
! <br>
! </form>
!
! <!-- /TMPL_IF -->
! </div>
<!-- TMPL_INCLUDE NAME="parameters-bottom.inc" -->
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters currency.tmpl,1.11,1.12,
Paul POULAIN <=