[Bug 5635] New: bulkmarcimport new parameters & features
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 Summary: bulkmarcimport new parameters & features Change sponsored?: Sponsored Product: Koha Version: rel_3_4 Platform: All OS/Version: All Status: ASSIGNED Severity: enhancement Priority: PATCH-Sent Component: Command-line Utilities AssignedTo: paul.poulain@biblibre.com ReportedBy: paul.poulain@biblibre.com QAContact: koha-bugs@lists.koha-community.org Estimated Hours: 0.0 it's sometimes useful to do some changes on the fly on biblios or items. We will add a YAML file to do some mappings when running bulkmarcimport we will also add: * a test parameter * an insert parameter to allow INSERT only * and update parameter to allow biblios to be only updated * a filter on tags/subfields -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 Chris Cormack <chris@bigballofwax.co.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |chris@bigballofwax.co.nz Blocks| |5592 Patch Status|--- |Needs Signoff -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA Contact for the bug.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 --- Comment #1 from Chris Cormack <chris@bigballofwax.co.nz> 2011-03-30 20:51:58 UTC --- Created attachment 3547 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=3547 Proposed Patch -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA Contact for the bug.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 Chris Cormack <chris@bigballofwax.co.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|5592 |5992 -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA Contact for the bug.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 Paul Poulain <paul.poulain@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch Status|Needs Signoff |Does not apply --- Comment #3 from Paul Poulain <paul.poulain@biblibre.com> 2011-09-27 15:57:14 UTC --- patch does not apply anymore. Marking as such, will try to submit smaller improvements & a clear test plan... --- Comment #2 from MJ Ray (software.coop) <mjr@ttllp.co.uk> 2011-04-04 08:09:49 UTC --- This bug is mentioned in: Bug 5635 changes for bulkmarcimport http://lists.koha-community.org/pipermail/koha-patches/2011-March/014372.htm... -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA Contact for the bug.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 Paul Poulain <paul.poulain@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|paul.poulain@biblibre.com |stephane.delaune@biblibre.c | |om -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 Paul Poulain <paul.poulain@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|PATCH-Sent (DO NOT USE) |P1 - high Version|rel_3_4 |master --- Comment #4 from Paul Poulain <paul.poulain@biblibre.com> 2012-01-19 14:33:41 UTC --- This patch does not apply and should not be applied. It removes some things that are usefull in official bulkmarcimport and are not synch'ed with the patch. For example: - pod2usage( -verbose => 2 ); - exit; + print <<EOF ; +Small script to import bibliographic records into Koha. + +Parameters: + h this version/help screen + file /path/to/file/to/dump: the file to import + v verbose mode. 1 means "some infos", 2 means "MARC dumping" + fk Turn off foreign key checks during import. + n the number of records to import. If missing, all the file is imported + o file offset before importing, ie number of records to skip. + commit the number of records to wait before performing a 'commit' operation + l file logs actions done for each record and their status into file + t test mode: parses the file, saying what he would do, but doing nothing. + s skip automatic conversion of MARC-8 to UTF-8. This option is + provided for debugging. + c the characteristic MARC flavour. At the moment, only MARC21 and + UNIMARC are supported. MARC21 by default. + d delete EVERYTHING related to biblio in koha-DB before import. Tables: + biblio, biblioitems, titems + m format, MARCXML or ISO2709 (defaults to ISO2709) + yaml file format a yaml file with ids + keepids field store ids in field (usefull for authorities, where 001 contains the authid for Koha, that can contain a very valuable info for authorities coming from LOC or BNF. useless for biblios probably) + x source bib tag for reporting the source bib number + y source subfield for reporting the source bib number + idmap file for the koha bib and source id + keepids store ids in 009 (usefull for authorities, where 001 contains the authid for Koha, that can contain a very valuable info for authorities coming from LOC or BNF. useless for biblios probably) + b|biblios type of import : bibliographic records + a|authorities type of import : authority records + match matchindex,fieldtomatch matchpoint to use to deduplicate + fieldtomatch can be either 001 to 999 + or field and list of subfields as such 100abcde + test if set, test mode only, donot add anything in database + insert if set, only insert when possible + update if set, only updates (any biblio should have a matching record) + all if set, do whatever is required + i|isbn if set, a search will be done on isbn, and, if the same isbn is found, the biblio is not added. It's another + method to deduplicate. + match & i can be both set. +IMPORTANT: don't use this script before you've entered and checked your MARC + parameters tables twice (or more!). Otherwise, the import won't work + correctly and you will get invalid data. + +SAMPLE: + \$ export KOHA_CONF=/etc/koha.conf + \$ perl misc/migration_tools/bulkmarcimport.pl -d -commit 1000 \\ + -file /home/jmf/koha.mrc -n 3000 +EOF +exit; It also does a lot of indentation/perltidy changes that make it hard to read. Should be rewritten completly diff'ing community/master and biblibre/master bulkmarcimport & picking what's needed ! (meld will help !) -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 stephane.delaune@biblibre.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |ASSIGNED --- Comment #5 from stephane.delaune@biblibre.com 2012-02-07 13:23:23 UTC --- (In reply to comment #4)
This patch does not apply and should not be applied. It removes some things that are usefull in official bulkmarcimport and are not synch'ed with the patch. For example: - pod2usage( -verbose => 2 ); - exit; + print <<EOF ; ... +EOF +exit; This part contains just the documentation. However, in the two branches there is documentation at end of file. I will complete it with new elements.
It also does a lot of indentation/perltidy changes that make it hard to read. Should be rewritten completly diff'ing community/master and biblibre/master bulkmarcimport & picking what's needed ! (meld will help !) ok, I'll try to do that at best
-- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 stephane.delaune@biblibre.com changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #3547|0 |1 is obsolete| | --- Comment #6 from stephane.delaune@biblibre.com 2012-02-07 16:26:58 UTC --- Created attachment 7485 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=7485 proposed patch -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 --- Comment #7 from stephane.delaune@biblibre.com 2012-02-07 16:37:41 UTC --- Created attachment 7486 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=7486 to test the patch this attachement contains files to test the patch. extract here, and run it with : export KOHA_CONF=/home/koha/etc/koha-conf.xml && export PERL5LIB=/home/src && /usr/bin/perl /home/koha/src/misc/migration_tools/bulkmarcimport.pl -s -yaml /path_to_the_extract_directory_of_test5635/TR728R39C001.RAW.yaml -match ident,001 -keepids 009 -l /path_to_the_extract_directory_of_test5635/log/ILN2011-10-04-02-c.csv -a -file /path_to_the_extract_directory_of_test5635/fichiers/TR728R39C001.RAW -authtypes /path_to_the_extract_directory_of_test5635/authtypes.yml if you have an error like this : ".CCL parsing error (10014) Unknown qualifier ZOOM at /home/koha/src/C4/Search.pm" replace your ccl.properties with the file into ccl_used directory in the tar.gz file -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 stephane.delaune@biblibre.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 --- Comment #8 from Jared Camins-Esakov <jcamins@cpbibliography.com> --- (In reply to comment #7)
Created attachment 7486 [details] to test the patch
this attachement contains files to test the patch.
extract here, and run it with : export KOHA_CONF=/home/koha/etc/koha-conf.xml && export PERL5LIB=/home/src && /usr/bin/perl /home/koha/src/misc/migration_tools/bulkmarcimport.pl -s -yaml /path_to_the_extract_directory_of_test5635/TR728R39C001.RAW.yaml -match ident,001 -keepids 009 -l /path_to_the_extract_directory_of_test5635/log/ILN2011-10-04-02-c.csv -a -file /path_to_the_extract_directory_of_test5635/fichiers/TR728R39C001.RAW -authtypes /path_to_the_extract_directory_of_test5635/authtypes.yml
if you have an error like this : ".CCL parsing error (10014) Unknown qualifier ZOOM at /home/koha/src/C4/Search.pm" replace your ccl.properties with the file into ccl_used directory in the tar.gz file
Why do we need a special ccl.properties file in order to use this script? We never have in the past. It seems to me it would be better to patch ccl.properties in master, wouldn't it? -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 Gaetan Boisson <gaetan.boisson@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply CC| |gaetan.boisson@biblibre.com --- Comment #9 from Gaetan Boisson <gaetan.boisson@biblibre.com> --- Patch does not apply. -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 stephane.delaune@biblibre.com changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #7485|0 |1 is obsolete| | --- Comment #10 from stephane.delaune@biblibre.com --- Created attachment 11071 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=11071&action=edit proposed patch updated patch -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 stephane.delaune@biblibre.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 Pascale Nalon <pascale.nalon@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off CC| |pascale.nalon@gmail.com --- Comment #11 from Pascale Nalon <pascale.nalon@gmail.com> --- This patch is live in Mines ParisTech since 2012-07-24. Signing off -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 Jonathan Druart <jonathan.druart@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA CC| |jonathan.druart@biblibre.co | |m --- Comment #12 from Jonathan Druart <jonathan.druart@biblibre.com> --- Please resubmit after translating the following comment in english: + # On récupère tous les souschamps des champs vedettes d'autorités -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 --- Comment #13 from stephane.delaune@biblibre.com --- Created attachment 13671 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=13671&action=edit the required followup (translated comment) it's the required followup (translate a comment in english) -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 stephane.delaune@biblibre.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Signed Off Patch complexity|--- |Medium patch -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 claire.hernandez@biblibre.com <claire.hernandez@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |claire.hernandez@biblibre.c | |om -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 Elliott Davis <elliott@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |elliott@bywatersolutions.co | |m --- Comment #14 from Elliott Davis <elliott@bywatersolutions.com> --- I would like to re-iterate Jareds Question in comment 8. "Why do we need a special ccl.properties file in order to use this script? We never have in the past. It seems to me it would be better to patch ccl.properties in master, wouldn't it?" Elliott -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 --- Comment #15 from stephane.delaune@biblibre.com --- (En réponse au commentaire 14)
"Why do we need a special ccl.properties file in order to use this script?
no ; the ccl.properties file is here only if your ccl is not standard -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |katrin.fischer@bsz-bw.de --- Comment #16 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Elliott, does Stephane's answer resolve your question? I agree it should work with the standard ccl file, but it looks like we all do :) -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 --- Comment #17 from stephane.delaune@biblibre.com --- hey ho, this patch is signed since almost five months, it would be nice going to the next step (before the end of the world :) ). -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 stephane.delaune@biblibre.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Patch doesn't apply --- Comment #18 from stephane.delaune@biblibre.com --- The patch, created 6 months ago and signed since almost five months, is now "does not apply" (YEAH) -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 stephane.delaune@biblibre.com changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #11071|0 |1 is obsolete| | Attachment #13671|0 |1 is obsolete| | --- Comment #19 from stephane.delaune@biblibre.com --- Created attachment 14499 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14499&action=edit proposed patch -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 stephane.delaune@biblibre.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 --- Comment #20 from stephane.delaune@biblibre.com --- Created attachment 14500 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14500&action=edit followup for 3.8.5 -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 stephane.delaune@biblibre.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 stephane.delaune@biblibre.com changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #7486|0 |1 is obsolete| | Attachment #14499|0 |1 is obsolete| | Attachment #14500|0 |1 is obsolete| | --- Comment #21 from stephane.delaune@biblibre.com --- Created attachment 14502 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14502&action=edit proposed patch -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 stephane.delaune@biblibre.com changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #14502|0 |1 is obsolete| | --- Comment #22 from stephane.delaune@biblibre.com --- Created attachment 14503 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14503&action=edit proposed patch for master (3.11.00.014) I hope the final proposed patch (with the precedently forgotten translated's comment from last followup). -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 --- Comment #23 from stephane.delaune@biblibre.com --- Created attachment 14504 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14504&action=edit to test last proposed patch to test the patch this attachement contains files to test the patch. extract here, and run it with : export KOHA_CONF=/home/koha/etc/koha-conf.xml && export PERL5LIB=/home/src && /usr/bin/perl /home/koha/src/misc/migration_tools/bulkmarcimport.pl -s -yaml /path_to_the_extract_directory_of_test5635/TR728R39C001.RAW.yaml -match ident,001 -keepids 009 -l /path_to_the_extract_directory_of_test5635/log/ILN2011-10-04-02-c.csv -a -file /path_to_the_extract_directory_of_test5635/fichiers/TR728R39C001.RAW -authtypes /path_to_the_extract_directory_of_test5635/authtypes.yml -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 Matthias Meusburger <matthias.meusburger@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |matthias.meusburger@biblibr | |e.com --- Comment #24 from Matthias Meusburger <matthias.meusburger@biblibre.com> --- Please note that when no authtypes are provided, bulkmarcimport will crash. A possible patch would be: @@ -544,6 +544,7 @@ sub get_heading_fields{ $debug && warn YAML::Dump($headingfields); } unless ($headingfields){ + my $dbh = C4::Context->dbh; $headingfields=$dbh->selectall_hashref("SELECT auth_tag_to_report, authtypecode from auth_types",'auth_tag_to_report',{Slice=>{}}); $headingfields={C4::Context->preference('marcflavour')=>$headingfields}; } Could you please fix this, Stéphane ? -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 --- Comment #25 from Matthias Meusburger <matthias.meusburger@biblibre.com> --- Okay, my mistake, this was already fixed, but in a different way (by moving the dbh initialization). -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 stephane.delaune@biblibre.com changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #14503|0 |1 is obsolete| | --- Comment #26 from stephane.delaune@biblibre.com --- Created attachment 16227 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=16227&action=edit proposed patch for master (3.11.00.100) an amend on the commit message and a little update on documentation -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|koha-bugs@lists.koha-commun |katrin.fischer@bsz-bw.de |ity.org | -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 Pascale Nalon <pascale.nalon@ensmp.fr> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pascale.nalon@ensmp.fr --- Comment #27 from Pascale Nalon <pascale.nalon@ensmp.fr> --- test appplies in Mines ParisTech -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 stephane.delaune@biblibre.com changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #16227|0 |1 is obsolete| | --- Comment #28 from stephane.delaune@biblibre.com --- Created attachment 16259 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=16259&action=edit proposed patch for master (3.11.00.100) same than last but passed perlcritic -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #16259|0 |1 is obsolete| | --- Comment #29 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Created attachment 16364 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=16364&action=edit [PASSED QA] Bug 5635: bulkmarcimport new parameters & features See the script's documentation for more details New parameters are: - authtypes - filter - insert - update - all Signed-off-by: Pascale Nalon <pascale.nalon@gmail.com> This patch is live in Mines ParisTech since 2012-07-24. Signing off Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> - Moved the sign-off from bugzilla to the commit message. - All tests and QA script pass. - Amended commit message to list new parameters. - Verified this patch works on a UNIMARC installation. - Verified normal import still works correct on a MARC21 installation. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5635 Jared Camins-Esakov <jcamins@cpbibliography.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to Master --- Comment #30 from Jared Camins-Esakov <jcamins@cpbibliography.com> --- This patch has been pushed to master. -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org