[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/value_builder un
From: |
doXulting |
Subject: |
[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/value_builder unimarc_field_123g.tmpl,1.2,1.3 |
Date: |
Thu, 02 Jun 2005 08:26:19 -0700 |
Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/value_builder
In directory
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30203/koha-tmpl/intranet-tmpl/default/fr/value_builder
Modified Files:
unimarc_field_123g.tmpl
Log Message:
Template for 123g field plugin
Index: unimarc_field_123g.tmpl
===================================================================
RCS file:
/cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/fr/value_builder/unimarc_field_123g.tmpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** unimarc_field_123g.tmpl 1 Mar 2005 13:41:02 -0000 1.2
--- unimarc_field_123g.tmpl 2 Jun 2005 15:26:17 -0000 1.3
***************
*** 1,79 ****
! <html>
! <head>
! <title>UNIMARC constructeur champ 123g</title>
! </head>
! <body>
! <form name="f_pop" onSubmit="javascript:report()">
! <table>
! <tr>
! <td>Hemisphere:</td>
! <td>
! <select name="f1" size="1">
! <!-- TMPL_IF name="f1 " -->
! <option value=" " SELECTED>Aucun</option>
! <!-- TMPL_ELSE -->
! <option value=" ">Aucun</option>
! <!-- /TMPL_IF -->
! <!-- TMPL_IF name="f1w" -->
! <option value="w" SELECTED>Ouest</option>
! <!-- TMPL_ELSE -->
! <option value="w">Ouest</option>
! <!-- /TMPL_IF -->
! <!-- TMPL_IF name="f1e" -->
! <option value="e" SELECTED>Est</option>
! <!-- TMPL_ELSE -->
! <option value="e">Est</option>
! <!-- /TMPL_IF -->
! <!-- TMPL_IF name="f1n" -->
! <option value="n" SELECTED>Nord</option>
! <!-- TMPL_ELSE -->
! <option value="n">Nord</option>
! <!-- /TMPL_IF -->
! <!-- TMPL_IF name="f1s" -->
! <option value="s" SELECTED>Sud</option>
! <!-- TMPL_ELSE -->
! <option value="s">Sud</option>
! <!-- /TMPL_IF -->
! </select>
! </td></tr>
!
! <tr> <td>Degres (completer avec des 0):</td>
! <td><input type="text" name="f2" maxlength=3
! size=4
! value="<!-- TMPL_VAR name="f2" -->"></td>
! </tr>
! <tr> <td>Minutes (completer avec des 0):</td>
! <td><input type="text" name="f3" maxlength=2
! size=3
! value="<!-- TMPL_VAR name="f3" -->"></td>
! </tr>
! <tr> <td>Secondes (completer avec des 0):</td>
! <td><input type="text" name="f4" maxlength=2
! size=3
! value="<!-- TMPL_VAR name="f4" -->"></td>
! </tr>
!
!
! <tr><td colspan=2><input type="submit" value="OK"></td></tr>
! </table>
! </form>
! <script>
! function report() {
! document.f_pop.f2.value=document.f_pop.f2.value+' ';
! document.f_pop.f3.value=document.f_pop.f3.value+' ';
! document.f_pop.f4.value=document.f_pop.f4.value+' ';
!
!
!
! document.f_pop.f2.value=document.f_pop.f2.value.substring(0,3);
! document.f_pop.f3.value=document.f_pop.f3.value.substring(0,2);
! document.f_pop.f4.value=document.f_pop.f4.value.substring(0,2);
!
!
! opener.document.f.field_value[<!-- TMPL_VAR name="index"
-->].value=
document.f_pop.f1.value+document.f_pop.f2.value+document.f_pop.f3.value+document.f_pop.f4.value;
! self.close();
! return false;
! }
! </script>
! </body>
! </html>
--- 1,79 ----
! <!-- TMPL_INCLUDE Name="popup-top.inc" -->
! <div id="mainbloc" style="padding-bottom:10px;margin:10px;width:95%;">
! <h1 class="authority">Assistant champ codé 123g</h1>
! <form name="f_pop" onSubmit="javascript:report()">
!
! <p>
! <label style="width:20em;">Hémisphère</label>
! <select name="f1" size="1">
! <!-- TMPL_IF name="f1 " -->
! <option value=" " SELECTED>Aucun</option>
! <!-- TMPL_ELSE -->
! <option value=" ">Aucun</option>
! <!-- /TMPL_IF -->
! <!-- TMPL_IF name="f1w" -->
! <option value="w" SELECTED>Ouest</option>
! <!-- TMPL_ELSE -->
! <option value="w">Ouest</option>
! <!-- /TMPL_IF -->
! <!-- TMPL_IF name="f1e" -->
! <option value="e" SELECTED>Est</option>
! <!-- TMPL_ELSE -->
! <option value="e">Est</option>
! <!-- /TMPL_IF -->
! <!-- TMPL_IF name="f1n" -->
! <option value="n" SELECTED>Nord</option>
! <!-- TMPL_ELSE -->
! <option value="n">Nord</option>
! <!-- /TMPL_IF -->
! <!-- TMPL_IF name="f1s" -->
! <option value="s" SELECTED>Sud</option>
! <!-- TMPL_ELSE -->
! <option value="s">Sud</option>
! <!-- /TMPL_IF -->
! </select>
! </p>
!
! <p>
! <label style="width:20em;">Degrés (compléter avec des 0)</label>
! <input type="text" name="f2" maxlength=3 size=4 value="<!-- TMPL_VAR
name="f2" -->">
! </p>
!
! <p>
! <label style="width:20em;">Minutes (compléter avec des 0)</label>
! <input type="text" name="f3" maxlength=2 size=3 value="<!-- TMPL_VAR
name="f3" -->">
! </p>
!
! <p>
! <label style="width:20em;">Secondes (compléter avec des 0)</label>
! <input type="text" name="f4" maxlength=2 size=3 value="<!-- TMPL_VAR
name="f4" -->">
! </p>
!
!
! <br>
! <p>
! <label style="width:20em;"> </label>
! <input type="submit" value="OK" class="button authority">
! </p>
!
! </form>
! </div>
! <script>
! function report() {
! document.f_pop.f2.value=document.f_pop.f2.value+' ';
! document.f_pop.f3.value=document.f_pop.f3.value+' ';
! document.f_pop.f4.value=document.f_pop.f4.value+' ';
!
!
!
! document.f_pop.f2.value=document.f_pop.f2.value.substring(0,3);
! document.f_pop.f3.value=document.f_pop.f3.value.substring(0,2);
! document.f_pop.f4.value=document.f_pop.f4.value.substring(0,2);
!
!
! opener.document.f.field_value[<!-- TMPL_VAR name="index"
-->].value=
document.f_pop.f1.value+document.f_pop.f2.value+document.f_pop.f3.value+document.f_pop.f4.value;
! self.close();
! return false;
! }
! </script>
! <!-- TMPL_INCLUDE Name="popup-bottom.inc" -->
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/fr/value_builder unimarc_field_123g.tmpl,1.2,1.3,
doXulting <=