[Koha-bugs] [Bug 5337] acq EAN search

2012-06-14 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Paul Poulain paul.poul...@biblibre.com changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off

--- Comment #37 from Paul Poulain paul.poul...@biblibre.com ---
trivial patch, pushing immediately

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-06-14 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Paul Poulain paul.poul...@biblibre.com changed:

   What|Removed |Added

 Status|Signed Off  |Passed QA

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-06-14 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Paul Poulain paul.poul...@biblibre.com changed:

   What|Removed |Added

 Status|Passed QA   |Pushed to Master

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-06-12 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Chris Cormack ch...@bigballofwax.co.nz changed:

   What|Removed |Added

 Status|Pushed to Master|ASSIGNED
 CC||ch...@bigballofwax.co.nz

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-06-12 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Chris Cormack ch...@bigballofwax.co.nz changed:

   What|Removed |Added

  Attachment #10016|0   |1
is obsolete||

--- Comment #35 from Chris Cormack ch...@bigballofwax.co.nz ---
Created attachment 10243
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=10243action=edit
Bug 5337 : Upping the count of the unit tests

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-06-12 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Chris Cormack ch...@bigballofwax.co.nz changed:

   What|Removed |Added

 Status|ASSIGNED|Needs Signoff

--- Comment #36 from Chris Cormack ch...@bigballofwax.co.nz ---
Just a follow up to make jenkins happy

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-06-09 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

--- Comment #31 from Matthias Meusburger matthias.meusbur...@biblibre.com ---
(En réponse au commentaire 30)

  Note that it was signed-off by jean-manuel.bro...@univ-lyon2.fr. The patch 
 commit does not show that however. Please fix that too.

Done


 The atomicupdate file could be removed (adding the field is done in
 updatedatabase)?

Ok, removed.

The version number there should be filled with XXX instead of 005.

Fixed

 Why do you need a index in deletedbiblioitems on ean? Please clarify.

You're right, indeed. Nothing really justify the use of and index on this
field. Removed.

 
 The commit reads: However, if you already have records with ean, you will
 have to run misc/batchRebuildBiblioTables.pl to populate biblioitems.ean.
 Should this be published too in the update print statement or anywhere else
 too? 

I've added the message in the updatedatabase (in case the marcflavor is
unimarc, otherwise the mapping is not automatically added, and there's no need
for rebuilding biblio tables).
Do you think of another place where this message should be added?

 
 Routine GetSubscriptions: You add line:
 $sqlwhere .= ( $sqlwhere ?  AND  :  WHERE  ) . ( . join( ) OR (,
 @sqlstrings ) . );
 Please add an additional ( and ) around this construct, just as is done a
 few lines above it. This prevents wrong interpretation of the whole
 expression.

Done

 
 Since you are adding parameters to existing routines: Did you check if you
 did not miss any function call for the two routines changed? You should grep
 on the name only. Do not assume that the name always is immediately followed
 by parenthesis. Could be whitespace also. Note that I find instances of test
 scripts referring to the function that you do not change (e.g.
 t/db_dependent/Serials.t). Please verify. BLOCKER too.

I've done the grep with only the function name and it seems that every call in
the source code has been changed. But yes, the tests should have been changed
too. Now it's done. I added ean test to t/db_dependent/Serials.t. I added ean
(and isbn, which was missing) test to
t/db_dependent/lib/KohaTest/Acquisition/GetHistory.pm.

 
 Please clarify: Why a span if biblionumber passed and otherwise a label in
 neworderempty.tt change?

The neworderempty page allows to add catalogue informations (title, author,
ean...) to an order while creating a new order. However, those informations
cannot be directly modified when editing an existing order (there's a link for
editing the record). This is why it's only a label when there is a
biblionumber.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 5337] acq EAN search

2012-06-09 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Matthias Meusburger matthias.meusbur...@biblibre.com changed:

   What|Removed |Added

   Attachment #9759|0   |1
is obsolete||

--- Comment #32 from Matthias Meusburger matthias.meusbur...@biblibre.com ---
Created attachment 10009
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=10009action=edit
Bug 5337: EAN management : Adds ean for various searches

- in various acquisition pages and serials home
  - in database : biblioitems.ean
  - adds ean and its mapping in default english bibliographic framework
  - adds ean mapping in default french bibliographic framework
  - ean search is not enabled for MARC21

The required mapping between the ean marc field and the biblioitems.ean
database field will be automatically added on an existing unimarc installation.

However, if you already have records with ean, you will have to
run misc/batchRebuildBiblioTables.pl to populate biblioitems.ean

Signed-off-by: jmbroust jean-manuel.bro...@univ-lyon2.fr

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-06-09 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Matthias Meusburger matthias.meusbur...@biblibre.com changed:

   What|Removed |Added

 Status|Failed QA   |Signed Off

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-06-09 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

M. de Rooy m.de.r...@rijksmuseum.nl changed:

   What|Removed |Added

  Attachment #10009|0   |1
is obsolete||

--- Comment #33 from M. de Rooy m.de.r...@rijksmuseum.nl ---
Created attachment 10016
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=10016action=edit
Patch for EAN

Amended for removing merge marker

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-06-09 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

M. de Rooy m.de.r...@rijksmuseum.nl changed:

   What|Removed |Added

 Status|Signed Off  |Passed QA
Version|rel_3_8 |master

--- Comment #34 from M. de Rooy m.de.r...@rijksmuseum.nl ---
QA Comment:
All points have got attention. Thanks for the quick fix.
Note that the test t/db_dependent/lib/KohaTest like others in that directory
seems to be obsolete.

Passed QA
We saved a kitten!

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-06-09 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Paul Poulain paul.poul...@biblibre.com changed:

   What|Removed |Added

 Status|Passed QA   |Pushed to Master
Version|master  |rel_3_10

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-06-08 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

M. de Rooy m.de.r...@rijksmuseum.nl changed:

   What|Removed |Added

 CC||m.de.r...@rijksmuseum.nl
 QA Contact|koha-b...@lists.koha-commun |m.de.r...@rijksmuseum.nl
   |ity.org |

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-06-08 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

--- Comment #29 from M. de Rooy m.de.r...@rijksmuseum.nl ---
Still applies. Will take a look.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-06-08 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

M. de Rooy m.de.r...@rijksmuseum.nl changed:

   What|Removed |Added

 Status|Signed Off  |Failed QA

--- Comment #30 from M. de Rooy m.de.r...@rijksmuseum.nl ---
QA Comment:
Although I agree with Ian that a more general solution would be welcome, I do
not oppose this patch. But this problem will come up again. And if we
continuously would say Next time we must solve it better.., we will never
come there. So, it would be nice to trigger that discussion now. But who will
take care of the generic housekeeping solution..

Specific comments on this patch below. Note that Paul wanted to pass qa already
on it, but I unfortunately disagree. Note that it was signed-off by
jean-manuel.bro...@univ-lyon2.fr. The patch commit does not show that however.
Please fix that too.

The atomicupdate file could be removed (adding the field is done in
updatedatabase)?
The version number there should be filled with XXX instead of 005. This is a
BLOCKER.
Why do you need a index in deletedbiblioitems on ean? Please clarify. 

The commit reads: However, if you already have records with ean, you will have
to run misc/batchRebuildBiblioTables.pl to populate biblioitems.ean. Should
this be published too in the update print statement or anywhere else too? 

Routine GetSubscriptions: You add line:
$sqlwhere .= ( $sqlwhere ?  AND  :  WHERE  ) . ( . join( ) OR (,
@sqlstrings ) . );
Please add an additional ( and ) around this construct, just as is done a few
lines above it. This prevents wrong interpretation of the whole expression.

Since you are adding parameters to existing routines: Did you check if you did
not miss any function call for the two routines changed? You should grep on the
name only. Do not assume that the name always is immediately followed by
parenthesis. Could be whitespace also. Note that I find instances of test
scripts referring to the function that you do not change (e.g.
t/db_dependent/Serials.t). Please verify. BLOCKER too.

Please clarify: Why a span if biblionumber passed and otherwise a label in
neworderempty.tt change?

Changing status to reflect need for corrections and clarification.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-05-24 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Matthias Meusburger matthias.meusbur...@biblibre.com changed:

   What|Removed |Added

   Attachment #8692|0   |1
is obsolete||

--- Comment #28 from Matthias Meusburger matthias.meusbur...@biblibre.com ---
Created attachment 9759
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=9759action=edit
Bug 5337: EAN management : Adds ean for various searches

- in various acquisition pages and serials home
  - in database : biblioitems.ean
  - adds ean and its mapping in default english bibliographic framework
  - adds ean mapping in default french bibliographic framework
  - ean search is not enabled for MARC21

The required mapping between the ean marc field and the biblioitems.ean
database field will be automatically added on an existing unimarc installation.

However, if you already have records with ean, you will have to
run misc/batchRebuildBiblioTables.pl to populate biblioitems.ean

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-05-24 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Matthias Meusburger matthias.meusbur...@biblibre.com changed:

   What|Removed |Added

 Status|Patch doesn't apply |Signed Off

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-04-20 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

--- Comment #26 from Paul Poulain paul.poul...@biblibre.com ---
(In reply to comment #25)
 In terms of discussion, I contribute the following (though it may be a
 little late in the game):

Hi Ian,

Your suggestion is good, but addresses a much much larger scope than what this
enh was for.
This patch was specifically made for acquisition, and I think it should be
included.

And, probably, another topic be opened for identifiers. In french universities,
we also have the SUDOC with a unique number called PPN. atm, we store it
randomly in a biblio. field that is not used elsewhere. That's very handfull
for finding the biblionumber when you have a PPN, but not very clean. (A NoSql
database would be more efficient in this matter)

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-03-29 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Matthias Meusburger matthias.meusbur...@biblibre.com changed:

   What|Removed |Added

   Attachment #8380|0   |1
is obsolete||

--- Comment #24 from Matthias Meusburger matthias.meusbur...@biblibre.com ---
Created attachment 8692
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=8692action=edit
Bug 5337: EAN management : Adds ean for various searches

- in various acquisition pages and serials home
  - in database : biblioitems.ean
  - adds ean and its mapping in default english bibliographic framework
  - adds ean mapping in default french bibliographic framework
  - ean search is not enabled for MARC21

The required mapping between the ean marc field and the biblioitems.ean
database field will be automatically added on an existing unimarc installation.

However, if you already have records with ean, you will have to
run misc/batchRebuildBiblioTables.pl to populate biblioitems.ean

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-03-29 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Matthias Meusburger matthias.meusbur...@biblibre.com changed:

   What|Removed |Added

 Status|Failed QA   |Signed Off

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-03-29 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Ian Walls koha.sek...@gmail.com changed:

   What|Removed |Added

 CC||koha.sek...@gmail.com

--- Comment #25 from Ian Walls koha.sek...@gmail.com ---
This patch does some pretty heavy-weight changes:  adds a new field to
biblioitems, modifies the parameters sent to a subroutine, and exports the MARC
flavour as a template variable on some pages.  All this is done for one of the
benefit of one of the three potential MARC flavours.  This doesn't mean we
shouldn't implement this, but it does mean we need to do so carefully, as there
are lots of places where new bugs could be introduced.


In terms of discussion, I contribute the following (though it may be a little
late in the game):

I think we may be better served by taking a wider view of the issue.  We've got
lots of kinds of identifiers floating around:  ISBN, ISSN, EAN, LCCN, UPC, OCLC
number, etc.  Depending on when they were invented, and what MARC flavour
you're working in, they can be mapped all kinds of different ways.  It would be
good to have an extensible framework where we can associate any given biblio
with a set of keys, of any kind.  Each type of key could be associated with a
normalization routine to weed out the formatting that is applied to the value
(added bonus: we could have just one key for ISBN, and have both 10 and 13
expressions connect to it).

We'd probably need to rely on Zebra with DOM indexing to get these values
properly extracted from our records, but once that's done, they could be
stashed in the database.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-03-23 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Paul Poulain paul.poul...@biblibre.com changed:

   What|Removed |Added

 Status|Signed Off  |Failed QA

--- Comment #23 from Paul Poulain paul.poul...@biblibre.com ---
QA comment:

* this patch removes EAN search for MARC21, good point
* it uses [% UNLESS (MARC21) %] = bad point. If you set NORMARC, you'll get
the ean option. The general rule is, when something is specific to UNIMARC, to
do IF UNIMARC and not UNLESS MARC21 !
* it would be good to add a marc_subfield_structure when updating:
+if (C4::Context-preference(marcflavour) eq 'UNIMARC') {
+$dbh-do(UPDATE marc_subfield_structure SET
kohafield='biblioitems.ean' WHERE tagfield='073' and tagsubfield='a');
+}
(just after the add column and index)

* in opac-detail, there is a repeated my $marcflavour = ...;
remove the one at line 390 I think
-my $marcflavour  = C4::Context-preference(marcflavour);
(this makes perl -wc complain)

failed QA, once it's fixed, i'll mark passed QA I think, everything else is OK

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-03-22 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

--- Comment #21 from Matthias Meusburger matthias.meusbur...@biblibre.com ---
Search in histsearch.pl and parcel.pl is mysql based, so it works out of the
box.

Search in neworderempty.pl is zebra-based, so you need an up-to-date zebra
index.

Is my answer satisfying enough for signoff ?

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-03-22 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Matthias Meusburger matthias.meusbur...@biblibre.com changed:

   What|Removed |Added

 Status|Failed QA   |Needs Signoff

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-03-22 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

jmbroust jean-manuel.bro...@univ-lyon2.fr changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off

--- Comment #22 from jmbroust jean-manuel.bro...@univ-lyon2.fr ---
ok for zebra search in neworderempty.pl I switch to signed off. Thanks :-)

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-03-21 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Matthias Meusburger matthias.meusbur...@biblibre.com changed:

   What|Removed |Added

   Attachment #8349|0   |1
is obsolete||

--- Comment #19 from Matthias Meusburger matthias.meusbur...@biblibre.com ---
Created attachment 8380
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=8380action=edit
proposed patch

This patch adds comments in the commit message on how to configure ean search
on existing installations. It also fixes search in histsearch.pl

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-03-21 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Matthias Meusburger matthias.meusbur...@biblibre.com changed:

   What|Removed |Added

 Status|Failed QA   |Needs Signoff

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-03-20 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Matthias Meusburger matthias.meusbur...@biblibre.com changed:

   What|Removed |Added

   Attachment #7694|0   |1
is obsolete||

--- Comment #16 from Matthias Meusburger matthias.meusbur...@biblibre.com ---
Created attachment 8349
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=8349action=edit
proposed patch

conflicts fixed.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-03-20 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Matthias Meusburger matthias.meusbur...@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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-03-20 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Alexandre Lengereau alexandre.lenger...@biblibre.com changed:

   What|Removed |Added

 Status|Needs Signoff   |Failed QA
 CC||alexandre.lengereau@biblibr
   ||e.com

--- Comment #17 from Alexandre Lengereau alexandre.lenger...@biblibre.com ---
h1Something went wrong !/h1Applying: Bug 5337: EAN management : Adds ean
for various searchesbr/
Repository lacks necessary blobs to fall back on 3-way merge.br/
Cannot fall back to three-way merge.br/
Patch failed at 0001 Bug 5337: EAN management : Adds ean for various
searchesbr/
When you have resolved this problem run git am --resolved.br/
If you would prefer to skip this patch, instead run git am --skip.br/
To restore the original branch and stop patching run git am --abort.br/
Bug 5337 - acq EAN searchbr/
br/
proposed patchbr/
Apply? [yn] br/
Patch left in /tmp/proposed-patch-F6QPRX.patchbr/
br/=== translation installation ===br/Install templates
  Install templates 'opac
From: /home/koha/src/koha-tmpl/opac-tmpl/prog/en/
To  : /home/koha/src/koha-tmpl/opac-tmpl/prog/fr-FR
With: /home/koha/src/misc/translator/po/fr-FR-i-opac-t-prog-v-3006000.po
The install seems to be successful.
  Install templates 'intranet
From: /home/koha/src/koha-tmpl/intranet-tmpl/prog/en/
To  : /home/koha/src/koha-tmpl/intranet-tmpl/prog/fr-FR
With: /home/koha/src/misc/translator/po/fr-FR-i-staff-t-prog-v-3006000.po
The install seems to be successful.
Write opac.pref
Write cataloguing.pref
Write staff_client.pref
Write admin.pref
Write serials.pref
Write i18n_l10n.pref
Write searching.pref
Write web_services.pref
Write creators.pref
Write circulation.pref
Write enhanced_content.pref
Write authorities.pref
Write local_use.pref
Write acquisitions.pref
Write logs.pref
Write patrons.pref

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-03-20 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

--- Comment #18 from Alexandre Lengereau alexandre.lenger...@biblibre.com ---
In this url it's work /cgi-bin/koha/acqui/histsearch.pl search by EAN

But the filter rules by EAN : in this url
cgi-bin/koha/acqui/parcel.pl?booksellerid=2op=newinvoice=fgfdatereceived=20%2F03%2F2012
seem not working properly.

Is it a zebra conf ?

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-03-19 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

jmbroust jean-manuel.bro...@univ-lyon2.fr changed:

   What|Removed |Added

 Status|Needs Signoff   |Failed QA
 CC||jean-manuel.broust@univ-lyo
   ||n2.fr

--- Comment #15 from jmbroust jean-manuel.bro...@univ-lyon2.fr ---
Applying: Bug 5337: EAN management : Adds ean for various searches
Using index info to reconstruct a base tree...
Falling back to patching base and 3-way merge...
Auto-merging C4/Acquisition.pm
Auto-merging C4/Biblio.pm
Auto-merging C4/Serials.pm
Auto-merging acqui/addorder.pl
Auto-merging acqui/histsearch.pl
Auto-merging acqui/neworderempty.pl
Auto-merging acqui/parcel.pl
CONFLICT (content): Merge conflict in acqui/parcel.pl
Auto-merging catalogue/detail.pl
Auto-merging
installer/data/mysql/en/marcflavour/unimarc/mandatory/unimarc_framework_DEFAULT.sql
Auto-merging installer/data/mysql/kohastructure.sql
Auto-merging installer/data/mysql/updatedatabase.pl
CONFLICT (content): Merge conflict in installer/data/mysql/updatedatabase.pl
Auto-merging koha-tmpl/intranet-tmpl/prog/en/modules/acqui/histsearch.tt
Auto-merging koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt
Auto-merging koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt
CONFLICT (content): Merge conflict in
koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt
Auto-merging kohaversion.pl
CONFLICT (content): Merge conflict in kohaversion.pl
Auto-merging opac/opac-ISBDdetail.pl
Auto-merging opac/opac-detail.pl
Auto-merging serials/routing-preview.pl
Auto-merging serials/routing.pl
Auto-merging serials/serials-collection.pl
Auto-merging serials/serials-edit.pl
Auto-merging serials/subscription-detail.pl
Failed to merge in the changes.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-03-19 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

jmbroust jean-manuel.bro...@univ-lyon2.fr changed:

   What|Removed |Added

 Status|Failed QA   |Patch doesn't apply

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-03-09 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Jonathan Druart jonathan.dru...@biblibre.com changed:

   What|Removed |Added

 Blocks||5357

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-03-02 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Jonathan Druart jonathan.dru...@biblibre.com changed:

   What|Removed |Added

 CC||jonathan.dru...@biblibre.co
   ||m
   Assignee|claire.hernandez@biblibre.c |matthias.meusburger@biblibr
   |om  |e.com

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 5337] acq EAN search

2012-03-01 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Matthias Meusburger matthias.meusbur...@biblibre.com changed:

   What|Removed |Added

 Status|Failed QA   |Needs Signoff
 CC||matthias.meusburger@biblibr
   ||e.com

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-02-16 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Matthias Meusburger matthias.meusbur...@biblibre.com changed:

   What|Removed |Added

   Attachment #7172|0   |1
is obsolete||

--- Comment #14 from Matthias Meusburger matthias.meusbur...@biblibre.com 
2012-02-16 16:31:59 UTC ---
Created attachment 7694
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=7694
Proposed patch

This patch disable ean search for MARC21

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-02-10 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

--- Comment #10 from Paul Poulain paul.poul...@biblibre.com 2012-02-10 
13:16:17 UTC ---
reading this thread again, i'm don't know what to say in the starting
discussion... Is it needed ?

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-02-10 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

--- Comment #11 from Katrin Fischer katrin.fisc...@bsz-bw.de 2012-02-10 
13:22:13 UTC ---
I think the feature can not go in as it is now - because it will never work on
MARC21 installations. We should find a way to make it work or hide it from the
templates accordingly.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-02-10 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Jared Camins-Esakov jcam...@cpbibliography.com changed:

   What|Removed |Added

 Status|In Discussion   |Failed QA
 CC||jcam...@cpbibliography.com

--- Comment #13 from Jared Camins-Esakov jcam...@cpbibliography.com 
2012-02-10 14:08:51 UTC ---
I think the best thing to do here is not display the EAN search for MARC21, as
it's not really usable for MARC21 (thanks to the indicator issue with field
024).

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-01-30 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

--- Comment #8 from Katrin Fischer katrin.fisc...@bsz-bw.de 2012-01-30 
08:43:43 UTC ---
Hi Colin - thx for your comment. I looked it up on loc.gov but was not totally
sure. Does this also work that way for other media (DVDs, CDs, language
courses, video games etc.)?

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-01-30 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

--- Comment #9 from Colin Campbell colin.campb...@ptfs-europe.com 2012-01-30 
10:42:25 UTC ---
I assume for non-book materials (or rather no ISBN materials) the ean gets
relegated to 024. Not conducive to standardizing practice

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-01-27 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Paul Poulain paul.poul...@biblibre.com changed:

   What|Removed |Added

 Status|Failed QA   |In Discussion

--- Comment #6 from Paul Poulain paul.poul...@biblibre.com 2012-01-27 
10:11:08 UTC ---
Katrin, it seems you raised a good point. Switching to in discussion to see
how we could deal with this.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-01-27 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Colin Campbell colin.campb...@ptfs-europe.com changed:

   What|Removed |Added

 CC||colin.campbell@ptfs-europe.
   ||com

--- Comment #7 from Colin Campbell colin.campb...@ptfs-europe.com 2012-01-27 
18:38:49 UTC ---
In MARC21 the EAN appears in 020 as the ISBN is either a valid EAN or (for
10-digit versions) convertable to one

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-01-16 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

--- Comment #2 from Matthias Meusburger matthias.meusbur...@biblibre.com 
2012-01-16 14:08:23 UTC ---
Created attachment 7172
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=7172
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-01-16 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Katrin Fischer katrin.fisc...@bsz-bw.de changed:

   What|Removed |Added

 CC||katrin.fisc...@bsz-bw.de

--- Comment #3 from Katrin Fischer katrin.fisc...@bsz-bw.de 2012-01-17 
07:20:03 UTC ---
Hi Matthias,

some first notes about this:

1) Patch includes a change to kohaversion.pl but should better not change this
file.  ( our $VERSION = '3.02.00.059'; )

2) The new mapping is only introduced to en and fr-FR UNIMARC frameworks. 
I think it should include all UNIMARC frameworks (it-IT,...?) for consistency.

I think for MARC21 the EAN would go here:
http://www.loc.gov/marc/bibliographic/bd024.html
Display Constants - EAN is carried in the MARC record without the internal
hyphens or spaces. Hyphens, spaces, and introductory words may be system
generated as display constants associated with first indicator value 3 and the
content of subfields $a, $d, and $z.
Content designated field:
024 3#$a9780838934326$d9 

The value is depending on an indicator which certainly complicates things. We
currently don't support indicators in our mappings - so I am not sure we will
be able to make use of this feature for MARC21. 

I think for documentation we should note that this feature is currently limited
to UNIMARC?

3) There is a (left over?) warn in Serials.pm
+warn Data::Dumper::Dumper(@bind_params);

I am not sure how to continue testing here, because I currently have no UNIMARC
database and data.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-01-16 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Katrin Fischer katrin.fisc...@bsz-bw.de changed:

   What|Removed |Added

 Status|NEW |Needs Signoff

--- Comment #4 from Katrin Fischer katrin.fisc...@bsz-bw.de 2012-01-17 
07:22:35 UTC ---
Oh, if it's UNIMARC only, the display should act accordingly. We should not
offer search options that simply can't work out of the box. 
I am failing QA for this reason.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2012-01-16 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Katrin Fischer katrin.fisc...@bsz-bw.de changed:

   What|Removed |Added

 Status|Needs Signoff   |Failed QA

--- Comment #5 from Katrin Fischer katrin.fisc...@bsz-bw.de 2012-01-17 
07:23:03 UTC ---
Had to set Needs sign-off first, before I could fail.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2011-12-02 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

claire.hernan...@biblibre.com claire.hernan...@biblibre.com changed:

   What|Removed |Added

 CC||claire.hernandez@biblibre.c
   ||om
  Change sponsored?|--- |Sponsored
 AssignedTo|henridam...@koha-fr.org |claire.hernandez@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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2011-11-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

Paul Poulain paul.poul...@biblibre.com changed:

   What|Removed |Added

 Blocks||7163

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5337] acq EAN search

2011-11-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5337

--- Comment #1 from Paul Poulain paul.poul...@biblibre.com 2011-11-05 
10:56:58 UTC ---
If you want to participate to the upstreaming:
* assign the bug to yourself
* retrieve the patch(es) on git.biblibre.com
* the branch name can be found using
git branch -a|grep 
Usually, it should be 
  biblibre/customer/ft/MT
For example:
   remotes/origin/stetienne/ft/MT6522

This patch is in branch number 5558

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/