[Koha-bugs] [Bug 6929] New: koha-stop-zebra falls over if a zebra process isn't running

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6929

 Bug #: 6929
   Summary: koha-stop-zebra falls over if a zebra process isn't
running
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: master
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: P5
 Component: Packaging
AssignedTo: ro...@catalyst.net.nz
ReportedBy: ro...@catalyst.net.nz
 QAContact: koha-bugs@lists.koha-community.org


If you have many instances, and one of them doesn't have a zebra process,
/etc/init.d/koha-common stop will fail to stop the reset as soon as it sees one
of these.

-- 
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.
___
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 6929] koha-stop-zebra falls over if a zebra process isn't running

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6929

Robin Sheat ro...@catalyst.net.nz changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Severity|enhancement |normal

--- Comment #1 from Robin Sheat ro...@catalyst.net.nz 2011-09-28 06:07:41 UTC 
---
*stop the rest

-- 
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.
___
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 6929] koha-stop-zebra falls over if a zebra process isn't running

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6929

--- Comment #2 from Robin Sheat ro...@catalyst.net.nz 2011-09-28 06:10:14 UTC 
---
Created attachment 5623
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5623
Bug 6929 - ensure that koha-stop-zebra will try to stop everything

Currently, if it attempts to stop a zebra process that doesn't exist,
the script will abort, which leaves things running. This patch prevents
it from aborting.

-- 
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.
___
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 6929] koha-stop-zebra falls over if a zebra process isn't running

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6929

Robin Sheat ro...@catalyst.net.nz changed:

   What|Removed |Added

   Priority|P5  |PATCH-Sent
   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.
___
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 2246] Label printing doesn't work with Unicode characters

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=2246

wajasu matted-34...@mypacks.net changed:

   What|Removed |Added

 CC||matted-34...@mypacks.net

--- Comment #12 from wajasu matted-34...@mypacks.net 2011-09-28 06:43:55 UTC 
---
Improvement
With hopes of getting diacritics ( u dieresis and such) printing for my barcode
labels, I dug into
/home/koha344/koha/intranet/cgi-bin/labels/label-create-pdf.pl

I found that if I set the utf8 flag off for the $line string, it would end up
sending FC instead of C3BC in the PDF.  So for the standard PDF encodings that
we currently allow (Helvitica, Courier, etc) the single byte maps to those
common foreign characters just fine.  It worked for me!  

Here is the utf8::downgrade($line); that I used from this section of code. I
am running perl 5.12.1 (that I built), with the latest cpan modules pulled as
of Sept 2011, and koha 3.4.4. (your wide character fix in PDF.pm helped). It
seems to get through my latest version of PDF::Reuse, that I have installed.

sub _print_text {
my $label_text = shift;
foreach my $text_line (@$label_text) {
my $pdf_font = $pdf-Font($text_line-{'font'});
my $line = BT /$pdf_font $text_line-{'font_size'} Tf
$text_line-{'text_llx'} $text_line-{'text_lly'} Td ($text_line-{'line'}) Tj
 ET;

utf8::downgrade($line);  # This forces the utf8 flag off so the single
byte will pass thru for regular PDFEncoding etc.
 # (So now my basic diacritics in the standard
character sets will not get double encoded. Yeah!
 # Note: This is not meant to deal with the
case where we want to use unicode with TTF - truetype fonts.

$pdf-Add($line);
}
}

This bug is log overdue, and it might be possible for someone to test and patch
it, since I might not be able to get it done before Oct 8th 2011 for the 3.6
release.

Note: I didn't want to loose this info.  I also tried this fix in my production
3.0.2 environment.  I had to add the PDF.pm patch for wide chars, to get a PDF
to be generated.  Once I added the downgrade line in 3.0.2, my
create-label-pdf.pl hung, with some recursion error and cpu at 100%.  So I gave
up on 3.0.2.  The PDF:Reuse in that version might be the factor, or something
else.
I'm going to grab koha 3.4.5 and try the fix on that. We can't wait till next
year for this, can we?

I also coded it with a TTF truetype font, but was missing the description
lines, so I didn't have time to figure out the drawing logic.  We would need to
add a way to select a font path, or upload one, and store it in the database.
Also, this fix might be usable for other create-*-pdf.pl scripts (like patron
cards).

This is a partial fix if we need to support other languages.

-- 
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.
___
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 6673] Create Batch Label from Staged MARC Records fails after upgrade to 3.4.x

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6673

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

   What|Removed |Added

   Patch Status|Passed QA   |Patch Pushed

--- Comment #13 from Chris Cormack ch...@bigballofwax.co.nz 2011-09-28 
07:36:33 UTC ---
Pushed, please test

-- 
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.
___
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 6253] Unified Patron Search subroutine

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6253

dev_patc...@biblibre.com changed:

   What|Removed |Added

 CC||dev_patc...@biblibre.com

--- Comment #21 from dev_patc...@biblibre.com 2011-09-28 08:49:36 UTC ---
That signed off patch conflicts with bug 6773 pushed changes.
Find a new patch attached to limit the query to 10.

-- 
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.
___
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 6253] Unified Patron Search subroutine

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6253

--- Comment #22 from dev_patc...@biblibre.com 2011-09-28 08:54:21 UTC ---
Created attachment 5624
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5624
replacement patch in order to fix conflict on circ/ysearch.pl

-- 
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.
___
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 6919] Implementing XSLTResultsDisplay

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6919

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

   What|Removed |Added

 CC||paul.poul...@biblibre.com

--- Comment #12 from Paul Poulain paul.poul...@biblibre.com 2011-09-28 
11:29:36 UTC ---
Liz  Nicole : the UNIMARC version is better. If you want a great MARC21
version, please give Alex the MARC21 fields to display.

-- 
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.
___
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 2246] Label printing doesn't work with Unicode characters

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=2246

--- Comment #13 from D Ruth Bavousett r...@bywatersolutions.com 2011-09-28 
12:51:13 UTC ---
I tried making wajasu's edit to a system known to be having this problem--code
updated as of last night at HEAD, and it did not resolve the problem for me--I
got a this PDF is broken and cannot be repaired error.  :(

-- 
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.
___
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 4223] Too much serials info - design work needed

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=4223

Owen Leonard oleon...@myacpl.org changed:

   What|Removed |Added

   Attachment #2221|0   |1
is obsolete||

--- Comment #3 from Owen Leonard oleon...@myacpl.org 2011-09-28 14:01:16 UTC 
---
Created attachment 5625
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5625
Proposed fix

This patch reimplements the changes suggested in the original
patch. It puts each main section of the display into its own
tab.

-- 
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.
___
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 4223] Too much serials info - design work needed

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=4223

Owen Leonard oleon...@myacpl.org changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Patch Status|Does not apply  |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.
___
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 4223] Too much serials info - design work needed

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=4223

--- Comment #4 from Owen Leonard oleon...@myacpl.org 2011-09-28 14:02:11 UTC 
---
Created attachment 5626
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5626
Screenshot of the proposed revised interface

-- 
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.
___
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 4239] Allow holds on multiple items of selected titles

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=4239

Bug 4239 depends on bug 4806, which changed state.

Bug 4806 Summary: circ/circulation.tmpl: Add reservenumber in the reserved 
table
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=4806

   What|Old Value   |New Value

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |

-- 
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.
___
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 5696] Hold deletion should use reservenumber

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5696

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

   What|Removed |Added

 CC||paul.poul...@biblibre.com

--- Comment #1 from Paul Poulain paul.poul...@biblibre.com 2011-09-28 
14:12:40 UTC ---
I've suggested to revert 4806, as the main bug for reservenumber has never been
applied. If bug 4608 is reverted, then owen comment become irrelevant, even if
it's still a good idea to have reservenumber in the reserve/old_reserve table

-- 
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.
___
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 6930] New: can't add patron attributes anymore

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6930

 Bug #: 6930
   Summary: can't add patron attributes anymore
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: master
  Platform: All
OS/Version: All
Status: NEW
  Severity: critical
  Priority: P5
 Component: Patrons
AssignedTo: kyle.m.h...@gmail.com
ReportedBy: neng...@gmail.com
 QAContact: koha-bugs@lists.koha-community.org
CC: gmcha...@gmail.com


Created attachment 5627
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5627
TST not added

When you go to add a patron attribute it says the attribute was added but it's
not added to the list of attributes. See attached.

-- 
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.
___
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 6323] Attach/move items -- error handling cleanup

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6323

--- Comment #5 from Liz Rea wizzy...@gmail.com 2011-09-28 14:16:45 UTC ---
Created attachment 5628
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5628
Bug 6323 -- Error handling cleanup for moveitem.tt

Added button to retry attaching item, added default bib view handling, cosmetic
changes to the error display (buttons now in error div).

-- 
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.
___
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 6323] Attach/move items -- error handling cleanup

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6323

Liz Rea wizzy...@gmail.com changed:

   What|Removed |Added

   Attachment #4072|0   |1
is obsolete||

-- 
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.
___
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 6323] Attach/move items -- error handling cleanup

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6323

Liz Rea wizzy...@gmail.com changed:

   What|Removed |Added

   Patch Status|Does not apply  |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.
___
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 5981] OPAC: Add limits to search history

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5981

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

   What|Removed |Added

 CC||oleon...@myacpl.org

--- Comment #19 from Paul Poulain paul.poul...@biblibre.com 2011-09-28 
14:21:19 UTC ---
*** Bug 4029 has been marked as a duplicate of this bug. ***

-- 
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.
___
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 4029] OPAC search history doesn't correctly store advanced searches

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=4029

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

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||paul.poul...@biblibre.com
 Resolution||DUPLICATE

--- Comment #2 from Paul Poulain paul.poul...@biblibre.com 2011-09-28 
14:21:19 UTC ---
Owen, if you could test  signoff 5981, that would be great !

*** This bug has been marked as a duplicate of bug 5981 ***

-- 
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.
___
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 4039] Firefox plugin not working with Koha 3.2 and FF 3.6+

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=4039

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

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||paul.poul...@biblibre.com
 Resolution||FIXED

--- Comment #3 from Paul Poulain paul.poul...@biblibre.com 2011-09-28 
14:47:03 UTC ---
+ possible duplicate of bug 5877

-- 
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.
___
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 6210] Choose framework on Merge

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6210

--- Comment #4 from Nicole C. Engard neng...@gmail.com 2011-09-28 14:59:37 
UTC ---
I confirm that this is the way it should work. Go ahead with Katrin's idea.

Nicole

-- 
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.
___
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 3941] Combine Notices Messaging Tabs

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3941

Nicole C. Engard neng...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

-- 
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.
___
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 6674] Collapse display of patron address by default

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6674

Nicole C. Engard neng...@gmail.com changed:

   What|Removed |Added

   Patch Status|Needs Signoff   |Failed QA

--- Comment #7 from Nicole C. Engard neng...@gmail.com 2011-09-28 15:07:22 
UTC ---
Tested in Chrome and FF on Mac and I can't get the information to expand. I
click the links and nothing happens.

Nicole

-- 
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.
___
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 6923] can't load help files

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6923

Nicole C. Engard neng...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

-- 
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.
___
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 5459] merging records loses holds from one

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5459

Nicole C. Engard neng...@gmail.com changed:

   What|Removed |Added

   Attachment #5611|0   |1
is obsolete||
   Attachment #5612|0   |1
is obsolete||
   Attachment #5613|0   |1
is obsolete||
   Attachment #5614|0   |1
is obsolete||

--- Comment #26 from Nicole C. Engard neng...@gmail.com 2011-09-28 15:16:09 
UTC ---
Created attachment 5629
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5629
1 for priority

We are so close!! Now it merges and keeps the transit status but shows 1 as the
priority for all people.

-- 
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.
___
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 5459] merging records loses holds from one

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5459

Nicole C. Engard neng...@gmail.com changed:

   What|Removed |Added

   Patch Status|Needs Signoff   |Failed QA

-- 
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.
___
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 5572] refinements to function merge sub merge in C4::AuthoritiesMarc

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5572

Stefano Bargioni bargi...@pusc.it changed:

   What|Removed |Added

 CC||bargi...@pusc.it

--- Comment #13 from Stefano Bargioni bargi...@pusc.it 2011-09-28 15:16:52 
UTC ---
If I'm not wrong, no words were spent about indicators. They must be propagated
in most cases, but we need to observe MARC specifications.
For instance, in MARC21 the # of nonfiling characters for tag 130 auth is
stored in ind2, while it is stored in 130 bib ind1. And 730 auth doesn't have
the nonfiling characters, that is present in 730 bib ind1.

-- 
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.
___
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 4223] Too much serials info - design work needed

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=4223

Nicole C. Engard neng...@gmail.com changed:

   What|Removed |Added

   Attachment #5625|0   |1
is obsolete||

--- Comment #5 from Nicole C. Engard neng...@gmail.com 2011-09-28 15:21:05 
UTC ---
Created attachment 5630
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5630
[SIGNED-OFF] Fix for Bug 4223 - Too much serials info - design work needed

This patch reimplements the changes suggested in the original
patch. It puts each main section of the display into its own
tab.

Signed-off-by: Nicole C. Engard neng...@bywatersolutions.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.
___
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 4223] Too much serials info - design work needed

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=4223

Nicole C. Engard neng...@gmail.com changed:

   What|Removed |Added

   Patch Status|Needs Signoff   |Signed Off

-- 
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.
___
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 6930] can't add patron attributes anymore

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6930

--- Comment #1 from Nicole C. Engard neng...@gmail.com 2011-09-28 15:34:54 
UTC ---
I also can't set values in existing attributes anymore

-- 
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.
___
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 6674] Collapse display of patron address by default

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6674

Nicole C. Engard neng...@gmail.com changed:

   What|Removed |Added

   Attachment #5562|0   |1
is obsolete||

--- Comment #8 from Nicole C. Engard neng...@gmail.com 2011-09-28 15:35:56 
UTC ---
Created attachment 5631
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5631
[SIGNED-OFF] Fix for Bug 6674 - Collapse display of patron address by default

This patch takes the feature implemented in the original patch
for Bug 5436 and reimplements it in a slightly more abstracted
way. The JavaScript can now be applied to any pair of elements
like this: a block with class collapsed followed by a link
with class togglecollapse.

In the circ-menu include, both the address info block and the
link to show/hide it have unique ids (contact and showcontact
respectively) so that IntranetUserCSS can be used to force them
to show:

  #contact {
display : block;
  }
  #showcontact {
display : none;
  }

Revision adds compatibility for display of extended patron
attributes and makes changes consistent across includes,
including circ-menu.tt.

Signed-off-by: Nicole C. Engard neng...@bywatersolutions.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.
___
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 6674] Collapse display of patron address by default

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6674

Nicole C. Engard neng...@gmail.com changed:

   What|Removed |Added

   Patch Status|Failed QA   |Signed Off

-- 
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.
___
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 5572] refinements to function merge sub merge in C4::AuthoritiesMarc

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5572

--- Comment #14 from Janusz Kaczmarek janus...@gmail.com 2011-09-28 15:54:12 
UTC ---
(In reply to comment #13)
 If I'm not wrong, no words were spent about indicators. They must be 
 propagated
 in most cases, but we need to observe MARC specifications.
 For instance, in MARC21 the # of nonfiling characters for tag 130 auth is
 stored in ind2, while it is stored in 130 bib ind1. And 730 auth doesn't have
 the nonfiling characters, that is present in 730 bib ind1.

You are perfectly right.  But this is beyond the scope of this patch.  

But, to make things clear, when updating the controlled field in biblio records
the merge function preserves the old indicators from biblio record.  At this
stage, it does not copy nor makes any use of the indicators stored in the
authority record.  This had to be still implemented.

BTW, you could also have a look at Bug 5262.

-- 
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.
___
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 4045] No check for maximum number of allowed holds.

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=4045

--- Comment #5 from Nicole C. Engard neng...@gmail.com 2011-09-28 16:24:43 
UTC ---
I just got another report of this issue so it still exists ... any ideas?

-- 
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.
___
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 6253] Unified Patron Search subroutine

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6253

--- Comment #23 from Liz Rea wizzy...@gmail.com 2011-09-28 16:56:06 UTC ---
The functionality of the patch seems to be maintained with the changes. A
separate issue with autocomplete was found, but it predates this patch, so I'm
going to sign off on the functionality with the understanding that there is
still something wrong with autocomplete that is possibly unrelated to this
patch.

signed off patch coming after lunch (and a bit more testing).

-- 
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.
___
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 6253] Unified Patron Search subroutine

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6253

Liz Rea wizzy...@gmail.com changed:

   What|Removed |Added

   Attachment #5540|0   |1
is obsolete||

-- 
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.
___
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 6253] Unified Patron Search subroutine

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6253

Liz Rea wizzy...@gmail.com changed:

   What|Removed |Added

   Attachment #5624|0   |1
is obsolete||

-- 
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.
___
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 6253] Unified Patron Search subroutine

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6253

--- Comment #24 from Liz Rea wizzy...@gmail.com 2011-09-28 18:23:28 UTC ---
Created attachment 5632
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5632
[Signed Off] bug_6253: Unified member Search()

Removed SearchMembers() and replaced with more generic Search()
Amended Search() to try cardnumber first
Replaced SearchMembers() calls with Search()
Replaced SELECT with Search() where appropriate
C4::SQLHelper:
- added support for '' key for search filter.
- when passing an array to filter, join with OR (rather than AND)
- added support for key = [val1, val2] in filter
- did not document - there was no input documentation to start with,
  and SQLHelper should be replaced with something better anyway

Signed-off-by: Liz Rea l...@nekls.org
(again - testing merge issue)
The functionality of the patch seems to be maintained with Biblibre's changes.

I tested the following:
Extended attribute searching: works
3 part name searching: works
2 part name searching: works
1 part name searching: works

From:
mainpage.pl
members-home.pl
Patron search limited by branch: Works
Patron search limited by patron category: works
Ordering by cardnumber instead of surname: works
The Check Out field in the masthead.

Circ Autocomplete is not reliably functional at this time, but the problem
appears to predate this 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.
___
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 6253] Unified Patron Search subroutine

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6253

Liz Rea wizzy...@gmail.com changed:

   What|Removed |Added

   Patch Status|Needs Signoff   |Signed Off

-- 
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.
___
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 6932] New: Javascript errors in irregular pattern check update

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6932

 Bug #: 6932
   Summary: Javascript errors in irregular pattern check update
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: master
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: P5
 Component: Serials
AssignedTo: colin.campb...@ptfs-europe.com
ReportedBy: pelletiermax...@gmail.com
 QAContact: koha-bugs@lists.koha-community.org


Created attachment 5633
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5633
Fix js under ie

This patch simply and fixes the js function IrregularPattern.prototype.update
to work under ie by using jQuery.
It also makes the code to resize the textarea do what the comment says it
should.

-- 
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.
___
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 6933] New: Add a view of titles with a particular tag to the staff client

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6933

 Bug #: 6933
   Summary: Add a view of titles with a particular tag to the
staff client
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: master
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: P5
 Component: Staff Client
AssignedTo: paul.poul...@biblibre.com
ReportedBy: oleon...@myacpl.org
 QAContact: koha-bugs@lists.koha-community.org
CC: gmcha...@gmail.com


When looking at tags in the tag review interface (/cgi-bin/koha/tags/review.pl)
it should be possible to click on any tag and see a list of titles which have
been tagged with that term. From this list it should also be possible to remove
a tag from a particular title.

-- 
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.
___
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 6933] Add a view of titles with a particular tag to the staff client

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6933

Owen Leonard oleon...@myacpl.org changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 AssignedTo|paul.poul...@biblibre.com   |oleon...@myacpl.org

-- 
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.
___
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 6934] New report Cash Register Statistics

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6934

--- Comment #1 from Maxime Pelletier pelletiermax...@gmail.com 2011-09-28 
21:43:46 UTC ---
Created attachment 5635
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5635
screenshot of the report

-- 
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.
___
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 6935] New: SYStem preference XISBNDailyLimit preference text error

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6935

 Bug #: 6935
   Summary: SYStem preference XISBNDailyLimit preference text
error
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: rel_3_4
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: P5
 Component: System Administration
AssignedTo: paul.poul...@biblibre.com
ReportedBy: cme...@waitaki.govt.nz
 QAContact: koha-bugs@lists.koha-community.org
CC: gmcha...@gmail.com


XISBNDailyLimit Only use the xISBN service   times a day. Unless you are
paying for the xISBN service, you should leave this at the default of 999 (as
detailed above)

default should be 499 rather than 999

eg
XISBNDailyLimit Only use the xISBN service   times a day. Unless you are
paying for the xISBN service, you should leave this at the default of 499 (as
detailed above)

-- 
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.
___
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 6936] New: allow selection by multiple locations or libraries when exporting bibs/items

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6936

 Bug #: 6936
   Summary: allow selection by multiple locations or libraries
when exporting bibs/items
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: master
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: P5
 Component: Tools
AssignedTo: gmcha...@gmail.com
ReportedBy: gmcha...@gmail.com
 QAContact: koha-bugs@lists.koha-community.org


Currently, when selecting a set of bibs to export by item library or item
location, your choices are to export:

[1] Records in all libraries/locations
[2] Records in a given library or location

For example, if the Koha database has locations A, B, and C, you cannot export
all bibs that have items in either location B or location C without running the
export twice.

Change the export criteria to allow multi-select by library or location would
add a small UI efficiency.

-- 
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.
___
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 6936] allow selection by multiple locations or libraries when exporting bibs/items

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6936

Galen Charlton gmcha...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
  Change sponsored?|--- |Sponsored

-- 
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.
___
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 6936] allow selection by multiple locations or libraries when exporting bibs/items

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6936

--- Comment #1 from Galen Charlton gmcha...@gmail.com 2011-09-29 02:33:45 UTC 
---
And by location I mean item type, currently.

-- 
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.
___
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 6936] allow selection by multiple item types or libraries when exporting bibs/items

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6936

Galen Charlton gmcha...@gmail.com changed:

   What|Removed |Added

Summary|allow selection by multiple |allow selection by multiple
   |locations or libraries when |item types or libraries
   |exporting bibs/items|when exporting bibs/items

-- 
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.
___
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 6937] New: Change fines message on circ page to Fees charges

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6937

 Bug #: 6937
   Summary: Change fines message on circ page to Fees 
charges
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: master
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: P5
 Component: Circulation
AssignedTo: kyle.m.h...@gmail.com
ReportedBy: ro...@catalyst.net.nz
 QAContact: koha-bugs@lists.koha-community.org
CC: gmcha...@gmail.com


Change the message, as they aren't always fines.

-- 
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.
___
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 6937] Change fines message on circ page to Fees charges

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6937

--- Comment #1 from Robin Sheat ro...@catalyst.net.nz 2011-09-29 03:23:16 UTC 
---
Created attachment 5636
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5636
Bug 6937 - change Fines to Fees  Charges on circ page

-- 
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.
___
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 6937] Change fines message on circ page to Fees charges

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6937

Robin Sheat ro...@catalyst.net.nz changed:

   What|Removed |Added

   Priority|P5  |PATCH-Sent
 Status|NEW |ASSIGNED
   Patch Status|--- |Needs Signoff
 AssignedTo|kyle.m.h...@gmail.com   |ro...@catalyst.net.nz

-- 
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.
___
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 6938] The Subscription History public and private note fields have gone missing

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6938

Robin Sheat ro...@catalyst.net.nz changed:

   What|Removed |Added

   Priority|P5  |P2
 Status|NEW |ASSIGNED
 AssignedTo|colin.campbell@ptfs-europe. |ro...@catalyst.net.nz
   |com |
   Severity|enhancement |normal

-- 
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.
___
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 5774] XISBN default set wrong in new installs

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5774

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

   What|Removed |Added

 CC||katrin.fisc...@bsz-bw.de
 Depends on||6935

-- 
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.
___
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 6935] SYStem preference XISBNDailyLimit preference text error

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6935

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

   What|Removed |Added

 Blocks||5774

-- 
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.
___
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 6938] The Subscription History public and private note fields have gone missing

2011-09-28 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6938

Robin Sheat ro...@catalyst.net.nz changed:

   What|Removed |Added

   Priority|P2  |PATCH-Sent
   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.
___
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/