[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/authorities auth
From: |
Paul POULAIN |
Subject: |
[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/authorities auth_finder.tmpl,1.4,1.5 blinddetail-biblio-search.tmpl,1.3,1.4 searchresultlist-auth.tmpl,1.2,1.3 searchresultlist.tmpl,1.4,1.5 |
Date: |
Wed, 18 Aug 2004 09:07:37 -0700 |
Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/authorities
In directory
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11354/koha-tmpl/intranet-tmpl/default/en/authorities
Modified Files:
auth_finder.tmpl blinddetail-biblio-search.tmpl
searchresultlist-auth.tmpl searchresultlist.tmpl
Log Message:
fixes in authorities. Now, it should work well...
Index: auth_finder.tmpl
===================================================================
RCS file:
/cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/authorities/auth_finder.tmpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** auth_finder.tmpl 19 Jul 2004 19:31:31 -0000 1.4
--- auth_finder.tmpl 18 Aug 2004 16:07:34 -0000 1.5
***************
*** 1,3 ****
! <!-- TMPL_INCLUDE NAME="popup-top.inc" -->
<div id="mainbloc">
--- 1,3 ----
! <!-- TMPL_INCLUDE NAME="auth-search-top.inc" -->
<div id="mainbloc">
***************
*** 15,20 ****
</p>
<p>
! <label class="label100">Search value</label>
! <input type="text" name="value" value="<!-- TMPL_VAR
NAME="value" -->">
<input type="hidden" name="authtypecode" value="<!--
TMPL_VAR NAME="category" -->">
<input type="hidden" name="marclist" value="">
--- 15,19 ----
</p>
<p>
! <label class="label100">Search value</label><input
type="text" name="value" value="<!-- TMPL_VAR name="resultstring" -->">
<input type="hidden" name="authtypecode" value="<!--
TMPL_VAR NAME="category" -->">
<input type="hidden" name="marclist" value="">
***************
*** 22,26 ****
<input type="hidden" name="excluding" value="">
<input type="hidden" name="operator" value="contains">
! <input type="hidden" name="index" value="<!-- TMPL_VAR NAME="index" -->"
</p>
<p>
--- 21,25 ----
<input type="hidden" name="excluding" value="">
<input type="hidden" name="operator" value="contains">
! <input type="hidden" name="index" value="<!-- TMPL_VAR
NAME="index" -->"
</p>
<p>
Index: blinddetail-biblio-search.tmpl
===================================================================
RCS file:
/cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/authorities/blinddetail-biblio-search.tmpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** blinddetail-biblio-search.tmpl 19 Jul 2004 19:31:31 -0000 1.3
--- blinddetail-biblio-search.tmpl 18 Aug 2004 16:07:34 -0000 1.4
***************
*** 7,33 ****
{
var index_start = <!-- TMPL_VAR NAME="index" -->;
- opener.opener.document.f.field_value[index_start].value = '<!-- TMPL_VAR
NAME="authid">';
var whichfield = opener.opener.document.f.tag[index_start].value;
! for (i=index_start ; i<opener.opener.document.f.field_value.length ; i++) {
!
! if (opener.opener.document.f.tag[i].value == whichfield &&
opener.opener.document.f.subfield[i].value == '9')
! {
opener.opener.document.f.field_value[i].value = '<!-- TMPL_VAR
NAME="authid">';
}
!
}
! <!-- TMPL_LOOP NAME="0XX" -->
! <!-- TMPL_LOOP NAME="subfield" -->
! for (i=index_start ; i<opener.opener.document.f.field_value.length ; i++) {
!
! if (opener.opener.document.f.tag[i].value == whichfield &&
opener.opener.document.f.subfield[i].value == '<!-- TMPL_VAR
NAME="marc_subfield" -->')
{
opener.opener.document.f.field_value[i].value = '<!-- TMPL_VAR
NAME="marc_value" -->';
}
!
}
-
- <!-- /TMPL_LOOP -->
- <!-- /TMPL_LOOP -->
opener.close();
self.close();
--- 7,49 ----
{
var index_start = <!-- TMPL_VAR NAME="index" -->;
var whichfield = opener.opener.document.f.tag[index_start].value;
! i=index_start
! // go forward, until reaching the end of the field.
! while (i<=opener.opener.document.f.field_value.length) {
! if (opener.opener.document.f.tag[i].value == whichfield &&
opener.opener.document.f.subfield[i].value == '9') {
opener.opener.document.f.field_value[i].value = '<!-- TMPL_VAR
NAME="authid">';
}
! <!-- TMPL_LOOP NAME="0XX" -->
! <!-- TMPL_LOOP NAME="subfield" -->
! if (opener.opener.document.f.tag[i].value == whichfield &&
opener.opener.document.f.subfield[i].value == '<!-- TMPL_VAR
NAME="marc_subfield" -->')
! {
! opener.opener.document.f.field_value[i].value = '<!-- TMPL_VAR
NAME="marc_value" -->';
! }
! <!-- /TMPL_LOOP -->
! <!-- /TMPL_LOOP -->
! if (opener.opener.document.f.tag[i].value != whichfield) {
! i=opener.opener.document.f.field_value.length;
! }
! i++;
}
! // go backward until the beginning of the field
! i=index_start
! while (i>=0) {
! if (opener.opener.document.f.tag[i].value == whichfield &&
opener.opener.document.f.subfield[i].value == '9') {
! opener.opener.document.f.field_value[i].value = '<!-- TMPL_VAR
NAME="authid">';
! }
! <!-- TMPL_LOOP NAME="0XX" -->
! <!-- TMPL_LOOP NAME="subfield" -->
! if (opener.opener.document.f.tag[i].value == whichfield &&
opener.opener.document.f.subfield[i].value == '<!-- TMPL_VAR
NAME="marc_subfield" -->')
{
opener.opener.document.f.field_value[i].value = '<!-- TMPL_VAR
NAME="marc_value" -->';
}
! <!-- /TMPL_LOOP -->
! <!-- /TMPL_LOOP -->
! if (opener.opener.document.f.tag[i].value != whichfield) {
! i=0;
! }
! i--;
}
opener.close();
self.close();
Index: searchresultlist-auth.tmpl
===================================================================
RCS file:
/cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/authorities/searchresultlist-auth.tmpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** searchresultlist-auth.tmpl 19 Jul 2004 19:31:31 -0000 1.2
--- searchresultlist-auth.tmpl 18 Aug 2004 16:07:34 -0000 1.3
***************
*** 2,83 ****
<div id="mainbloc">
<h1 class="authority">Authority search results</h1>
! <div id="resultnumber">
! <p>
! <!-- TMPL_IF name="displayprev" -->
! <a href="search.pl?startfrom=<!-- TMPL_VAR
NAME="startfromprev" -->&<!-- TMPL_LOOP NAME="searchdata" --><!-- TMPL_VAR
NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!-- /TMPL_LOOP
-->resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search">
! <img
src="/intranet-tmpl/default/images/numbers/prev.gif" border="0">
! </a>
! <!-- /TMPL_IF -->
! <!-- TMPL_LOOP NAME="numbers" -->
! <!-- TMPL_IF name="highlight" -->
! <img
src="/intranet-tmpl/default/images/numbers/<!-- TMPL_VAR NAME="number"
-->-highlight.gif">
! <!-- TMPL_ELSE -->
! <a href="search.pl?startfrom=<!--
TMPL_VAR NAME="startfrom" -->&<!-- TMPL_LOOP NAME="searchdata" --><!--
TMPL_VAR NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!--
/TMPL_LOOP -->resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search"><img
src="/intranet-tmpl/default/images/numbers/<!-- TMPL_VAR NAME="number" -->.gif"
border="0"></a>
<!-- /TMPL_IF -->
! <!-- /TMPL_LOOP --> <!-- TMPL_IF
name="displaynext" -->
! <a href="search.pl?startfrom=<!-- TMPL_VAR
NAME="startfromnext" -->&<!-- TMPL_LOOP NAME="searchdata" --><!-- TMPL_VAR
NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!-- /TMPL_LOOP
-->&resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search"><img
src="/intranet-tmpl/default/images/numbers/next.gif" border="0"></a>
<!-- /TMPL_IF -->
! </p>
! <p>
! <!-- TMPL_IF name="total" -->
! <b>Results <!-- TMPL_VAR NAME="from" --> to <!--
TMPL_VAR NAME="to" --> of <!-- TMPL_VAR NAME="total" --></b><br><br>
! <!-- TMPL_ELSE -->
! No results found.<br>
! <!-- /TMPL_IF -->
! </p>
! </div>
! <div id="resultlist">
! <table>
! <tr>
! <th class="authority">Summary</th>
! <th class="authority">Used</th>
! <th class="authority">View</th>
! <th class="authority">Delete</th>
! <th class="authority">Get It!</th>
! </tr>
! <!-- TMPL_LOOP NAME="result" -->
! <tr>
! <td><!-- TMPL_VAR NAME="summary"
--></td>
! <td><!-- TMPL_VAR NAME="used" --> <a
href="../search.marc/search.pl?type=intranet&op=do_search&marclist=<!--
TMPL_VAR NAME="biblio_fields" -->&operator==&value=<!-- TMPL_VAR
NAME="authid" -->&and_or=&excluding=">...</a></td>
! <td>
! <a
href="javascript:jumpfull('detail-biblio-search.pl?authid=<!-- TMPL_VAR
NAME="authid" -->&index=<!-- TMPL_VAR NAME="index" -->')">
! <img src="<!-- TMPL_VAR
NAME="interface" -->/<!-- TMPL_VAR NAME="theme" -->/images/fileopen.png"
width="32" hspace="0" vspace="0" border="0" alt="Authority number <!-- TMPL_VAR
NAME="authid" -->" title="Authority number<!-- TMPL_VAR NAME="authid" -->">
! </a>
! </td>
! <td>
! <!-- TMPL_UNLESS name="used" -->
! <a
href="authorities-home.pl?op=delete&authid=<!-- TMPL_VAR NAME="authid" -->">
! <img src="<!-- TMPL_VAR
NAME="interface" -->/<!-- TMPL_VAR NAME="theme" -->/images/edittrash.png"
width="32" hspace="0" vspace="0" border="0">
! </a>
! <!-- /TMPL_UNLESS -->
! </td>
! <td>
! <a
href="javascript:jumpfull('blinddetail-biblio-search.pl?authid=<!-- TMPL_VAR
NAME="authid" -->&index=<!-- TMPL_VAR NAME="index" -->')"><img src="<!--
TMPL_VAR NAME="interface" -->/<!-- TMPL_VAR NAME="theme" -->/images/arrow.gif"
width="32" hspace="0" vspace="0" border="0"></a>
! </td>
! </tr>
! <!-- /TMPL_LOOP -->
! </table>
!
! </div>
! <div id="resultnumber">
! <p>
! <!-- TMPL_IF name="displayprev" -->
! <a href="search.pl?startfrom=<!-- TMPL_VAR
NAME="startfromprev" -->&<!-- TMPL_LOOP NAME="searchdata" --><!-- TMPL_VAR
NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!-- /TMPL_LOOP
-->resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search"><img
src="/intranet-tmpl/default/images/numbers/prev.gif" border="0"></a>
! <!-- /TMPL_IF -->
! <!-- TMPL_LOOP NAME="numbers" -->
! <!-- TMPL_IF name="highlight" -->
! <img
src="/intranet-tmpl/default/images/numbers/<!-- TMPL_VAR NAME="number"
-->-highlight.gif">
<!-- TMPL_ELSE -->
! <a href="search.pl?startfrom=<!-- TMPL_VAR
NAME="startfrom" -->&<!-- TMPL_LOOP NAME="searchdata" --><!-- TMPL_VAR
NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!-- /TMPL_LOOP
-->resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search"><img
src="/intranet-tmpl/default/images/numbers/<!-- TMPL_VAR NAME="number" -->.gif"
border="0"></a>
<!-- /TMPL_IF -->
! <!-- /TMPL_LOOP -->
! <!-- TMPL_IF name="displaynext" -->
! <a href="search.pl?startfrom=<!-- TMPL_VAR
NAME="startfromnext" -->&<!-- TMPL_LOOP NAME="searchdata" --><!-- TMPL_VAR
NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!-- /TMPL_LOOP
-->&resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search"><img
src="/intranet-tmpl/default/images/numbers/next.gif" border="0"></a>
<!-- /TMPL_IF -->
! </p>
! </div>
</div>
-
<script language="JavaScript" type="text/javascript">
--- 2,97 ----
<div id="mainbloc">
<h1 class="authority">Authority search results</h1>
! <div id="bloc25">
! <form name="f" method="post" action="auth_finder.pl">
! <input type="hidden" name="op" value="do_search">
! <input type="hidden" name="type" value="intranet">
! <input type="hidden" name="nbstatements" value="<!--
TMPL_VAR NAME="nbstatements" -->">
! <div id="bloc25">
! <h2 class="authority">Search on</h2>
! <p>
! <label class="label100">Authority
type</label>
! <!-- TMPL_VAR NAME="category" -->
! </p>
! <p>
! <label class="label100">Search
value</label><input type="text" name="value" value="<!-- TMPL_VAR
name="resultstring" -->">
! <input type="hidden"
name="authtypecode" value="<!-- TMPL_VAR NAME="authtypecode" -->">
! <input type="hidden" name="marclist"
value="">
! <input type="hidden" name="and_or"
value="and">
! <input type="hidden" name="excluding"
value="">
! <input type="hidden" name="operator"
value="contains">
! <input type="hidden" name="index"
value="<!-- TMPL_VAR NAME="index" -->"
! </p>
! <p>
! <input type="submit" value="Start
search" class="button authority">
! </p>
! </div>
! </form>
! </div>
! <div id="bloc25">
! <div id="resultnumber">
! <p>
! <!-- TMPL_IF name="displayprev" -->
! <a href="search.pl?startfrom=<!--
TMPL_VAR NAME="startfromprev" -->&<!-- TMPL_LOOP NAME="searchdata" --><!--
TMPL_VAR NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!--
/TMPL_LOOP -->resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search">
! <img
src="/intranet-tmpl/default/images/numbers/prev.gif" border="0">
! </a>
<!-- /TMPL_IF -->
! <!-- TMPL_LOOP NAME="numbers" -->
! <!-- TMPL_IF name="highlight" -->
! <img
src="/intranet-tmpl/default/images/numbers/<!-- TMPL_VAR NAME="number"
-->-highlight.gif">
! <!-- TMPL_ELSE -->
! <a
href="search.pl?startfrom=<!-- TMPL_VAR NAME="startfrom" -->&<!-- TMPL_LOOP
NAME="searchdata" --><!-- TMPL_VAR NAME="term" -->=<!-- TMPL_VAR NAME="val"
ESCAPE=URL -->&<!-- /TMPL_LOOP -->resultsperpage=<!-- TMPL_VAR
NAME="resultsperpage" -->&type=intranet&op=do_search"><img
src="/intranet-tmpl/default/images/numbers/<!-- TMPL_VAR NAME="number" -->.gif"
border="0"></a>
! <!-- /TMPL_IF -->
! <!-- /TMPL_LOOP -->
! <!-- TMPL_IF name="displaynext" -->
! <a href="search.pl?startfrom=<!--
TMPL_VAR NAME="startfromnext" -->&<!-- TMPL_LOOP NAME="searchdata" --><!--
TMPL_VAR NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!--
/TMPL_LOOP -->&resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search"><img
src="/intranet-tmpl/default/images/numbers/next.gif" border="0"></a>
<!-- /TMPL_IF -->
! </p>
! <p>
! <!-- TMPL_IF name="total" -->
! <b>Results <!-- TMPL_VAR
NAME="from" --> to <!-- TMPL_VAR NAME="to" --> of <!-- TMPL_VAR NAME="total"
--></b><br><br>
<!-- TMPL_ELSE -->
! No results found.<br>
<!-- /TMPL_IF -->
! </p>
! </div>
! <div id="resultlist">
! <table>
! <tr>
! <th class="authority">Summary</th>
! <th class="authority">Used</th>
! <th class="authority">Get It!</th>
! </tr>
! <!-- TMPL_LOOP NAME="result" -->
! <tr>
! <td><!-- TMPL_VAR
NAME="summary" --></td>
! <td><!-- TMPL_VAR NAME="used"
--> times</td>
! <td>
! <a
href="javascript:jumpfull('blinddetail-biblio-search.pl?authid=<!-- TMPL_VAR
NAME="authid" -->&index=<!-- TMPL_VAR NAME="index" -->')"><img src="<!--
TMPL_VAR NAME="interface" -->/<!-- TMPL_VAR NAME="theme" -->/images/arrow.gif"
width="32" hspace="0" vspace="0" border="0"></a>
! </td>
! </tr>
! <!-- /TMPL_LOOP -->
! </table>
!
! </div>
! <div id="resultnumber">
! <p>
! <!-- TMPL_IF name="displayprev" -->
! <a href="search.pl?startfrom=<!-- TMPL_VAR
NAME="startfromprev" -->&<!-- TMPL_LOOP NAME="searchdata" --><!-- TMPL_VAR
NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!-- /TMPL_LOOP
-->resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search"><img
src="/intranet-tmpl/default/images/numbers/prev.gif" border="0"></a>
<!-- /TMPL_IF -->
! <!-- TMPL_LOOP NAME="numbers" -->
! <!-- TMPL_IF name="highlight" -->
! <img
src="/intranet-tmpl/default/images/numbers/<!-- TMPL_VAR NAME="number"
-->-highlight.gif">
! <!-- TMPL_ELSE -->
! <a href="search.pl?startfrom=<!--
TMPL_VAR NAME="startfrom" -->&<!-- TMPL_LOOP NAME="searchdata" --><!--
TMPL_VAR NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!--
/TMPL_LOOP -->resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search"><img
src="/intranet-tmpl/default/images/numbers/<!-- TMPL_VAR NAME="number" -->.gif"
border="0"></a>
! <!-- /TMPL_IF -->
! <!-- /TMPL_LOOP -->
! <!-- TMPL_IF name="displaynext" -->
! <a href="search.pl?startfrom=<!-- TMPL_VAR
NAME="startfromnext" -->&<!-- TMPL_LOOP NAME="searchdata" --><!-- TMPL_VAR
NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!-- /TMPL_LOOP
-->&resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search"><img
src="/intranet-tmpl/default/images/numbers/next.gif" border="0"></a>
! <!-- /TMPL_IF -->
! </p>
! </div>
! </div>
</div>
<script language="JavaScript" type="text/javascript">
***************
*** 87,89 ****
}
</script>
!
--- 101,103 ----
}
</script>
! <!-- TMPL_INCLUDE NAME="popup-bottom.inc" -->
Index: searchresultlist.tmpl
===================================================================
RCS file:
/cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/authorities/searchresultlist.tmpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** searchresultlist.tmpl 19 Jul 2004 19:31:31 -0000 1.4
--- searchresultlist.tmpl 18 Aug 2004 16:07:34 -0000 1.5
***************
*** 5,9 ****
<p>
<!-- TMPL_IF name="displayprev" -->
! <a href=search.pl?startfrom=<!-- TMPL_VAR
NAME="startfromprev" -->&<!-- TMPL_LOOP NAME="searchdata" --><!-- TMPL_VAR
NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!-- /TMPL_LOOP
-->resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search>
<img
src="/intranet-tmpl/default/images/numbers/prev.gif" border="0">
</a>
--- 5,9 ----
<p>
<!-- TMPL_IF name="displayprev" -->
! <a href="authorities-home.pl?startfrom=<!--
TMPL_VAR NAME="startfromprev" -->&<!-- TMPL_LOOP NAME="searchdata" --><!--
TMPL_VAR NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!--
/TMPL_LOOP -->resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search&authtypecode=<!-- TMPL_VAR
name="authtypecode" -->">
<img
src="/intranet-tmpl/default/images/numbers/prev.gif" border="0">
</a>
***************
*** 13,21 ****
<img
src="/intranet-tmpl/default/images/numbers/<!-- TMPL_VAR NAME="number"
-->-highlight.gif">
<!-- TMPL_ELSE -->
! <a href=search.pl?startfrom=<!--
TMPL_VAR NAME="startfrom" -->&<!-- TMPL_LOOP NAME="searchdata" --><!--
TMPL_VAR NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!--
/TMPL_LOOP -->resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search><img
src="/intranet-tmpl/default/images/numbers/<!-- TMPL_VAR NAME="number" -->.gif"
border="0"></a>
<!-- /TMPL_IF -->
<!-- /TMPL_LOOP -->
<!-- TMPL_IF name="displaynext" -->
! <a href=search.pl?startfrom=<!-- TMPL_VAR
NAME="startfromnext" -->&<!-- TMPL_LOOP NAME="searchdata" --><!-- TMPL_VAR
NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!-- /TMPL_LOOP
-->&resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search><img
src="/intranet-tmpl/default/images/numbers/next.gif" border="0"></a>
<!-- /TMPL_IF -->
</p>
--- 13,25 ----
<img
src="/intranet-tmpl/default/images/numbers/<!-- TMPL_VAR NAME="number"
-->-highlight.gif">
<!-- TMPL_ELSE -->
! <a
href="authorities-home.pl?startfrom=<!-- TMPL_VAR NAME="startfrom" -->&<!--
TMPL_LOOP NAME="searchdata" --><!-- TMPL_VAR NAME="term" -->=<!-- TMPL_VAR
NAME="val" ESCAPE=URL -->&<!-- /TMPL_LOOP -->resultsperpage=<!-- TMPL_VAR
NAME="resultsperpage" -->&type=intranet&op=do_search&authtypecode=<!--
TMPL_VAR name="authtypecode" -->">
! <img
src="/intranet-tmpl/default/images/numbers/<!-- TMPL_VAR NAME="number" -->.gif"
border="0">
! </a>
<!-- /TMPL_IF -->
<!-- /TMPL_LOOP -->
<!-- TMPL_IF name="displaynext" -->
! <a href="authorities-home.pl?startfrom=<!--
TMPL_VAR NAME="startfromnext" -->&<!-- TMPL_LOOP NAME="searchdata" --><!--
TMPL_VAR NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!--
/TMPL_LOOP -->&resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search&authtypecode=<!-- TMPL_VAR
name="authtypecode" -->">
! <img
src="/intranet-tmpl/default/images/numbers/next.gif" border="0">
! </a>
<!-- /TMPL_IF -->
</p>
***************
*** 59,73 ****
<p>
<!-- TMPL_IF name="displayprev" -->
! <a href="search.pl?startfrom=<!-- TMPL_VAR
NAME="startfromprev" -->&<!-- TMPL_LOOP NAME="searchdata" --><!-- TMPL_VAR
NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!-- /TMPL_LOOP
-->resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search"><img
src="/intranet-tmpl/default/images/numbers/prev.gif" border="0"></a>
<!-- /TMPL_IF -->
<!-- TMPL_LOOP NAME="numbers" -->
<!-- TMPL_IF name="highlight" -->
! <img
src="/intranet-tmpl/default/images/numbers/<!-- TMPL_VAR NAME="number"
-->-highlight.gif">
<!-- TMPL_ELSE -->
! <a href="search.pl?startfrom=<!-- TMPL_VAR
NAME="startfrom" -->&<!-- TMPL_LOOP NAME="searchdata" --><!-- TMPL_VAR
NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!-- /TMPL_LOOP
-->resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search"><img
src="/intranet-tmpl/default/images/numbers/<!-- TMPL_VAR NAME="number" -->.gif"
border="0"></a>
<!-- /TMPL_IF -->
<!-- /TMPL_LOOP -->
<!-- TMPL_IF name="displaynext" -->
! <a href="search.pl?startfrom=<!-- TMPL_VAR
NAME="startfromnext" -->&<!-- TMPL_LOOP NAME="searchdata" --><!-- TMPL_VAR
NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!-- /TMPL_LOOP
-->&resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search"><img
src="/intranet-tmpl/default/images/numbers/next.gif" border="0"></a>
<!-- /TMPL_IF -->
</p>
--- 63,83 ----
<p>
<!-- TMPL_IF name="displayprev" -->
! <a href="authorities-home.pl?startfrom=<!--
TMPL_VAR NAME="startfromprev" -->&<!-- TMPL_LOOP NAME="searchdata" --><!--
TMPL_VAR NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!--
/TMPL_LOOP -->resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search&authtypecode=<!-- TMPL_VAR
name="authtypecode" -->">
! <img
src="/intranet-tmpl/default/images/numbers/prev.gif" border="0">
! </a>
<!-- /TMPL_IF -->
<!-- TMPL_LOOP NAME="numbers" -->
<!-- TMPL_IF name="highlight" -->
! <img
src="/intranet-tmpl/default/images/numbers/<!-- TMPL_VAR NAME="number"
-->-highlight.gif">
<!-- TMPL_ELSE -->
! <a
href="authorities-home.pl?startfrom=<!-- TMPL_VAR NAME="startfrom" -->&<!--
TMPL_LOOP NAME="searchdata" --><!-- TMPL_VAR NAME="term" -->=<!-- TMPL_VAR
NAME="val" ESCAPE=URL -->&<!-- /TMPL_LOOP -->resultsperpage=<!-- TMPL_VAR
NAME="resultsperpage" -->&type=intranet&op=do_search&authtypecode=<!--
TMPL_VAR name="authtypecode" -->">
! <img
src="/intranet-tmpl/default/images/numbers/<!-- TMPL_VAR NAME="number" -->.gif"
border="0">
! </a>
<!-- /TMPL_IF -->
<!-- /TMPL_LOOP -->
<!-- TMPL_IF name="displaynext" -->
! <a href="authorities-home.pl?startfrom=<!--
TMPL_VAR NAME="startfromnext" -->&<!-- TMPL_LOOP NAME="searchdata" --><!--
TMPL_VAR NAME="term" -->=<!-- TMPL_VAR NAME="val" ESCAPE=URL -->&<!--
/TMPL_LOOP -->&resultsperpage=<!-- TMPL_VAR NAME="resultsperpage"
-->&type=intranet&op=do_search&authtypecode=<!-- TMPL_VAR
name="authtypecode" -->">
! <img
src="/intranet-tmpl/default/images/numbers/next.gif" border="0">
! </a>
<!-- /TMPL_IF -->
</p>
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/authorities auth_finder.tmpl,1.4,1.5 blinddetail-biblio-search.tmpl,1.3,1.4 searchresultlist-auth.tmpl,1.2,1.3 searchresultlist.tmpl,1.4,1.5,
Paul POULAIN <=