koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/acqui.simple add


From: Paul POULAIN
Subject: [Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/acqui.simple addbiblio.tmpl,1.38,1.39
Date: Tue, 09 Aug 2005 07:11:06 -0700

Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/acqui.simple
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23879/koha-tmpl/intranet-tmpl/default/en/acqui.simple

Modified Files:
        addbiblio.tmpl 
Log Message:
1st commit to go to zebra.
don't update your cvs if you want to have a working head...

this commit contains :
* updater/updatedatabase : get rid with marc_* tables, but DON'T remove them. 
As a lot of things uses them, it would not be a good idea for instance to drop 
them. If you really want to play, you can rename them to test head without them 
but being still able to reintroduce them...
* Biblio.pm : modify MARCgetbiblio to find the raw marc record in 
biblioitems.marc field, not from marc_subfield_table, modify 
MARCfindframeworkcode to find frameworkcode in biblio.frameworkcode, modify 
some other subs to use biblio.biblionumber & get rid of bibid.
* other files : get rid of bibid and use biblionumber instead.

What is broken :
* does not do anything on zebra yet.
* if you rename marc_subfield_table, you can't search anymore.
* you can view a biblio & bibliodetails, go to MARC editor, but NOT save any 
modif.
* don't try to add a biblio, it would add data poorly... (don't try to delete 
either, it may work, but that would be a surprise ;-) )

IMPORTANT NOTE : you need MARC::XML package 
(http://search.cpan.org/~esummers/MARC-XML-0.7/lib/MARC/File/XML.pm), that 
requires a recent version of MARC::Record
Updatedatabase stores the iso2709 data in biblioitems.marc field & an xml 
version in biblioitems.marcxml Not sure we will keep it when releasing the 
stable version, but I think it's a good idea to have something readable in sql, 
at least for development stage.

Index: addbiblio.tmpl
===================================================================
RCS file: 
/cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -r1.38 -r1.39
*** addbiblio.tmpl      20 Jun 2005 14:15:57 -0000      1.38
--- addbiblio.tmpl      9 Aug 2005 14:10:31 -0000       1.39
***************
*** 2,12 ****
  <div class="tabbed">
        <form method="post" name="f">
!       <h1 class="catalogue">Biblionumber : <!-- TMPL_VAR 
NAME="oldbiblionumber" -->     With Framework :<!--TMPL_VAR Name="framework" 
--></b></h1>
        <p>
                <input type="hidden" name="op" value="addbiblio">
                <input type="hidden" name="addfield_field">
                <input type="hidden" name="frameworkcode" value="<!-- TMPL_VAR 
NAME="frameworkcode" -->">
!               <input type="hidden" name="oldbiblionumber" value="<!-- 
TMPL_VAR NAME="oldbiblionumber" -->">
!               <!-- TMPL_IF name="bibid" -->
                        <input type="button" value="Save" 
onclick="Check(this.form)" accesskey="w" class="button catalogue">
                <!-- TMPL_ELSE -->
--- 2,12 ----
  <div class="tabbed">
        <form method="post" name="f">
!       <h1 class="catalogue">Biblionumber : <!-- TMPL_VAR NAME="biblionumber" 
-->     With Framework :<!--TMPL_VAR Name="framework" --></b></h1>
        <p>
                <input type="hidden" name="op" value="addbiblio">
                <input type="hidden" name="addfield_field">
                <input type="hidden" name="frameworkcode" value="<!-- TMPL_VAR 
NAME="frameworkcode" -->">
!               <input type="hidden" name="biblionumber" value="<!-- TMPL_VAR 
NAME="biblionumber" -->">
!               <!-- TMPL_IF name="biblionumber" -->
                        <input type="button" value="Save" 
onclick="Check(this.form)" accesskey="w" class="button catalogue">
                <!-- TMPL_ELSE -->
***************
*** 57,61 ****
                                <ul>
                                        <p><input type="checkbox" value=1 
name="confirm_not_duplicate">confirm it's not a duplicate (and click on Add 
biblio again)</p>
!                                       <p>Go to <a href="additem.pl?bibid=<!-- 
TMPL_VAR name="duplicatebibid" -->" class="button catalogue">edit items</a> 
from this duplicate biblio</p>
                                </ul>
                        </div>
--- 57,61 ----
                                <ul>
                                        <p><input type="checkbox" value=1 
name="confirm_not_duplicate">confirm it's not a duplicate (and click on Add 
biblio again)</p>
!                                       <p>Go to <a 
href="additem.pl?biblionumber=<!-- TMPL_VAR name="duplicatebiblionumber" -->" 
class="button catalogue">edit items</a> from this duplicate biblio</p>
                                </ul>
                        </div>
***************
*** 516,520 ****
                }
        }
!       newin=window.open("../z3950/search.pl?bibid=<!-- TMPL_VAR NAME="bibid" 
-->"+strQuery,"z3950search",'width=800,height=400,toolbar=false,scrollbars=yes');
  }
  function Changefwk(FwkList) {
--- 516,520 ----
                }
        }
!       newin=window.open("../z3950/search.pl?biblionumber=<!-- TMPL_VAR 
NAME="biblionumber" 
-->"+strQuery,"z3950search",'width=800,height=400,toolbar=false,scrollbars=yes');
  }
  function Changefwk(FwkList) {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]