[Koha-bugs] [Bug 9915] Allow opac/svc/report to be passed sql parameters

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9915

--- Comment #4 from Julien Sicot julien.si...@gmail.com ---
Yes i specified paramesters in URL like below (my report ID is 49) :
cgi-bin/koha/svc/report?id=49sql_params=2012sql_params=BU

I can't share url because i tested from a local install. I will try to test it
from a live install.

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

--- Comment #84 from M. de Rooy m.de.r...@rijksmuseum.nl ---
Created attachment 17179
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17179action=edit
Bug 6554: Followup for decoding in userenv

Thanks to Colin. He reported this problem:
Modification of a read-only value attempted at C4/Context.pm line 1107.
$_ is an alias to a value which may be read-only in the map call.
Could not reproduce this error, but this should prevent it.

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

--- Comment #85 from M. de Rooy m.de.r...@rijksmuseum.nl ---
Colin:
I cannot reproduce either. But could you test the latest patch attached?
Thanks.

-- 
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 9737] Local Covers sometimes appear then disappear on OPAC Search Results/Lists

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9737

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

   What|Removed |Added

 Status|In Discussion   |Passed QA
   Patch complexity|--- |Trivial patch
 QA Contact||jonathan.dru...@biblibre.co
   ||m

--- Comment #12 from Jonathan Druart jonathan.dru...@biblibre.com ---
(In reply to comment #11)
 When you said that you got 1 no cover image available in master, I assume
 that also meant that the local cover didn't appear. I think that's a much
 more critical issue than having 2 no cover image available appear
 alongside an existing local cover image.

Agreed

 Unfortunately, I don't think the code snippet that you provide would
 actually work, because that would just test for the system preference and
 not the actual presence of cover images. If you had  GoogleJackets and
 OPACAmazonCoverImages turned on, you would never get a no cover image
 available even when you should.

Yep, of course, stupid code :-/

 Maybe if we re-wrote all the cover art functions (and ideally allowed
 librarians to rank the providers so that you don't have more than cover
 image showing for an item), but yes...I think that's a different bug. 

Could you open a new bug for that please?

 If I've managed to convince you, please change back to Signed Off (or even
 Passed QA :P)

Yes, you are. Thank you for your detailed explanation :)

Marked as 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 9737] Local Covers sometimes appear then disappear on OPAC Search Results/Lists

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9737

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

   What|Removed |Added

  Attachment #16447|0   |1
is obsolete||

--- Comment #13 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 17180
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17180action=edit
Bug 9737 - Local Covers sometimes appear then disappear on OPAC Search
Results/Lists

The current problem:

When the verify_images() function runs from amazonimages.js, it loops
through every img element and selects the elements that come from Amazon
sources.

However, if the height/width is 1 (i.e. Amazon passes off a blank image)
or if the img element's complete property is null or non-existent, then
it searches for the parent node and re-writes the HTML with the No
Cover Image Available (NO_AMAZON_IMAGE) text, even though that parent
node might contain other img elements that have images available (from
Google, local images, etc)!

Proposed fix:

Wrap the Amazon image in a span tag (as we do with the Google and local
covers), so that it re-writes the HTML within that parent span, rather
than the parent anchor which contains all the other images.

To test:

1) Turn on the OPACAmazonCoverImages, GoogleJackets, and
   OPACLocalCoverImages system preferences
2) Replace the ISBN in one of your records with 9780615352435
3) Now load a local cover image for that record
4) Search for that record (but make sure you're vague enough to have
   multiple search results)
5) For a split second, you may notice the local cover image appears before
being replaced by a No Cover Image Available.

Now apply this patch

6) Refresh your search results page
7) You should now see your local cover image, PLUS the No Cover Image
   Available for the Amazon image, and whatever other graphics/no
   cover image available graphics for the Google Jackets.

To be comprehensive, try the same set of steps using the OPAC Lists
rather than the OPAC Search Results

Signed-off-by: Owen Leonard oleon...@myacpl.org
Signed-off-by: Jonathan Druart jonathan.dru...@biblibre.com

-- 
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 9915] Allow opac/svc/report to be passed sql parameters

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9915

--- Comment #5 from Julien Sicot julien.si...@gmail.com ---
I tested on live install, same behavior :-(
Below are the URLs :

with parameters :
http://pro-kohapreprod.bu.uhb.fr/cgi-bin/koha/svc/report?id=108sql_params=2012sql_params=BU

without :
http://pro-kohapreprod.bu.uhb.fr/cgi-bin/koha/svc/report?id=109

I precise that reports are public.

-- 
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 9915] Allow opac/svc/report to be passed sql parameters

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9915

--- Comment #6 from Chris Cormack ch...@bigballofwax.co.nz ---
And it works in the report interface with those values?

-- 
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 9915] Allow opac/svc/report to be passed sql parameters

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9915

--- Comment #7 from Julien Sicot julien.si...@gmail.com ---
yes, normally the response of report #108 should be the same as report #109.

-- 
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 9894] 'hidden' value is hard to understand in frameworks

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9894

--- Comment #11 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 17181
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17181action=edit
Bug 9894: Add labels for checkboxes

-- 
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 7368] General staff client typo omnibus

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7368

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

   What|Removed |Added

  Attachment #16095|0   |1
is obsolete||

-- 
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 7368] General staff client typo omnibus

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7368

--- Comment #75 from M. de Rooy m.de.r...@rijksmuseum.nl ---
Created attachment 17182
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17182action=edit
Bug 7368: Typo in kohastructure.sql documentation line

Signed-off-by: Marcel de Rooy m.de.r...@rijksmuseum.nl

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

--- Comment #86 from Colin Campbell colin.campb...@ptfs-europe.com ---
I think the problem is with perls greater than 5.10 the map documentation
suggests you should use a loop in this case. I' test and let you know

-- 
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 7368] General staff client typo omnibus

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7368

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

   What|Removed |Added

 Status|Pushed to Master|ASSIGNED

-- 
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 7368] General staff client typo omnibus

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7368

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

   What|Removed |Added

 Status|ASSIGNED|Needs Signoff

-- 
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 7368] General staff client typo omnibus

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7368

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

   What|Removed |Added

 Status|Needs Signoff   |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 9588] weighted search query with index

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9588

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

   What|Removed |Added

 Status|Signed Off  |Failed QA

--- Comment #5 from M. de Rooy m.de.r...@rijksmuseum.nl ---
Changing the status of this patch to reflect need for clarification. See
comment4 please. Thanks.

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

--- Comment #87 from Jonathan Druart jonathan.dru...@biblibre.com ---
I cannot reproduce either with perl v.5.14, but I confirm the code should be
changed. If utf8::decode($_) modifies $_, the error will occur.

However, I think this patch should be in a different report.

-- 
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 7368] General staff client typo omnibus

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7368

Jonathan Druart jonathan.dru...@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 7368] General staff client typo omnibus

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7368

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

   What|Removed |Added

  Attachment #17182|0   |1
is obsolete||

--- Comment #76 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 17183
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17183action=edit
Bug 7368: Typo in kohastructure.sql documentation line

Signed-off-by: Marcel de Rooy m.de.r...@rijksmuseum.nl
Signed-off-by: Jonathan Druart jonathan.dru...@biblibre.com

-- 
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 7593] merging bib records loses connection to order line

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7593

--- Comment #23 from Jonathan Druart jonathan.dru...@biblibre.com ---
(In reply to comment #22)
 in all cases : in my tests, without my patch, when you suppress a record,
 the biblioitemnumber is never suppressed from acqorders (only the
 biblionumber).
 
 Mathieu

I am under the impression that this field is unused.
Maybe the good way is to set to null this value.

-- 
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 7593] merging bib records loses connection to order line

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7593

--- Comment #24 from mathieu saby mathieu.s...@univ-rennes2.fr ---
OK for me if you are sure it is not used, and not going to be used...
But if you are right, why not suppressing it from the database?

Mathieu

-- 
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 9987] New: biblioitemnumber is useless for orders.

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9987

Bug ID: 9987
   Summary: biblioitemnumber is useless for orders.
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Acquisitions
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: jonathan.dru...@biblibre.com

The DB field aqorders.biblioitemnumber seems to be unused and useless.
It should be removed.

-- 
You are receiving this mail because:
You are the assignee 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 9988] New: Unneeded timeouts when saving authorities (Can we merge smarter?)

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9988

Bug ID: 9988
   Summary: Unneeded timeouts when saving authorities (Can we
merge smarter?)
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: P5 - low
 Component: MARC Authority data support
  Assignee: gmcha...@gmail.com
  Reporter: m.de.r...@rijksmuseum.nl

When saving an authority used in many biblios, Koha may have a timeout due to
updating all those bib records.
But in case I just update e.g. a 551 tag for the auth record, there is no need
at all to update all those bib records.

We should have a smarter merge function in C4/AuthoritiesMarc.pm.
Note that you could use the pref to move updating all biblios to a cron job.
Wouldn't it be nicer if we could do something in between? If we really need to
update a handful of records, do it rightaway. If we really (!!) need to update
2000 records (in my example Koha is updating 2000 records for nothing), we
could perhaps leave that to a cron job.

-- 
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 9987] biblioitemnumber is useless for orders.

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9987

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

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|koha-b...@lists.koha-commun |jonathan.dru...@biblibre.co
   |ity.org |m

-- 
You are receiving this mail because:
You are the assignee 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 9987] biblioitemnumber is useless for orders.

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9987

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

   What|Removed |Added

   See Also||http://bugs.koha-community.
   ||org/bugzilla3/show_bug.cgi?
   ||id=7593

-- 
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 7593] merging bib records loses connection to order line

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7593

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

   What|Removed |Added

   See Also||http://bugs.koha-community.
   ||org/bugzilla3/show_bug.cgi?
   ||id=9987

--- Comment #25 from Jonathan Druart jonathan.dru...@biblibre.com ---
(In reply to comment #24)
 OK for me if you are sure it is not used, and not going to be used...
 But if you are right, why not suppressing it from the database?
 
 Mathieu

cf bug 9987

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

--- Comment #88 from Paul Poulain paul.poul...@biblibre.com ---
(In reply to comment #86)
 I think the problem is with perls greater than 5.10 the map documentation
 suggests you should use a loop in this case. I' test and let you know

could it be a problem of a login with mysql user/password ? There are
problems/errors like this sometimes with the mysql login, that is
borrowernumber=0 and many other infos missing.

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

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

   What|Removed |Added

 Status|Pushed to Master|ASSIGNED

--- Comment #89 from M. de Rooy m.de.r...@rijksmuseum.nl ---
(In reply to comment #87)
 However, I think this patch should be in a different report.

I left it here because the actual change with the map statement is introduced
in this report. It is not a side effect.

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

--- Comment #90 from M. de Rooy m.de.r...@rijksmuseum.nl ---
(In reply to comment #88)
 could it be a problem of a login with mysql user/password ? There are
 problems/errors like this sometimes with the mysql login, that is
 borrowernumber=0 and many other infos missing.

I had no problems with the install login..

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

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

   What|Removed |Added

 Status|ASSIGNED|Needs Signoff

--- Comment #91 from M. de Rooy m.de.r...@rijksmuseum.nl ---
Last patch needs signoff.

-- 
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 9987] biblioitemnumber is useless for orders.

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9987

--- Comment #2 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 17185
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17185action=edit
Bug 9987: Add itemtype description instead of code

In ordered.pl and spent.pl, the codes are displayed, instead of
descriptions.

Links for the ordernumber should be changed. In ordered.pl, we are
redirected to the receive page. In spent.pl, the links are deleted.

-- 
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 9987] biblioitemnumber is useless for orders.

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9987

--- Comment #1 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 17184
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17184action=edit
Bug 9987: Remove DB field aqorders.biblioitemnunmber

The DB field aqorders.biblioitemnumber seems to be unused except to get
the itype on the spent.pl page.
This information can be retrieved uising another sql join.

Test plan:
Try a complete workflow in the acquisition module: create an order,
receive it, play with the syspref AcqCreateItem.
Check that no regression is found and that the data for existing
orders don't change.

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

--- Comment #92 from Colin Campbell colin.campb...@ptfs-europe.com ---
Created attachment 17186
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17186action=edit
Proposed Patch

I've tested Marcel's patch and it works...however I've also sent my own version
which removes the map. The reason is that multi-statement blocks in maps can
lead to maintenance headaches and are a bit harder to track down if an error
occurs (perlcritic on stricter settings complains). The map doc suggests a loop
for this case.

I've kept the comment in but on CGI::Session's homepage the utf8 bugs are
marked as resolved

-- 
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 9987] biblioitemnumber is useless for orders.

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9987

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

   What|Removed |Added

 Status|ASSIGNED|Needs Signoff
   Patch complexity|--- |Medium patch

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

--- Comment #93 from M. de Rooy m.de.r...@rijksmuseum.nl ---
(In reply to comment #92)
 Created attachment 17186 [details] [review]
 Proposed Patch
 
 I've tested Marcel's patch and it works...however I've also sent my own
 version which removes the map. The reason is that multi-statement blocks in
 maps can lead to maintenance headaches and are a bit harder to track down if
 an error occurs (perlcritic on stricter settings complains). The map doc
 suggests a loop for this case.
 
 I've kept the comment in but on CGI::Session's homepage the utf8 bugs are
 marked as resolved

OK I will check it right away. Thanks.

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

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

   What|Removed |Added

  Attachment #17179|0   |1
is obsolete||

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

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

   What|Removed |Added

  Attachment #16984|0   |1
is obsolete||

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

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

   What|Removed |Added

  Attachment #16985|0   |1
is obsolete||

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

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

   What|Removed |Added

  Attachment #16986|0   |1
is obsolete||

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

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

   What|Removed |Added

  Attachment #16987|0   |1
is obsolete||

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

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

   What|Removed |Added

  Attachment #16988|0   |1
is obsolete||

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

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

   What|Removed |Added

  Attachment #16989|0   |1
is obsolete||

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

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

   What|Removed |Added

 Status|Needs Signoff   |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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

--- Comment #94 from M. de Rooy m.de.r...@rijksmuseum.nl ---
Created attachment 17187
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17187action=edit
Bug 6554 Fix error caused by modifying $_ in a map

Error 'Modification of a read-only value attempted' triggered
on login because of manipulation of $_ in the map

Moved the mod to a loop as recommended in the doc for map

Signed-off-by: Marcel de Rooy m.de.r...@rijksmuseum.nl

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

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

   What|Removed |Added

  Attachment #17186|0   |1
is obsolete||

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

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

   What|Removed |Added

 Status|Signed Off  |Passed QA

--- Comment #95 from M. de Rooy m.de.r...@rijksmuseum.nl ---
QA Comment:
Patch of Colin is a followup rewriting the map statement introduced here in
setuserenv (Context.pm).
Several people could not reproduce the problem Colin reported. But this is a
code improvement and fixes his problem.

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 9839] when importing MARC records, item record not created even when set to always add

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9839

Frédéric Demians frede...@tamil.fr changed:

   What|Removed |Added

 CC||frede...@tamil.fr

--- Comment #5 from Frédéric Demians frede...@tamil.fr ---
I confirm the bug, ad the solution.

-- 
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 7853] opac-maintanance.pl should correctly redirect back to opac-main.pl, if no updates are outstanding

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7853

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

   What|Removed |Added

 Status|Needs Signoff   |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 7853] opac-maintanance.pl should correctly redirect back to opac-main.pl, if no updates are outstanding

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7853

--- Comment #8 from M. de Rooy m.de.r...@rijksmuseum.nl ---
Created attachment 17188
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17188action=edit
Bug 7853 - opac-maintanance.pl should correctly redirect back to opac-main.pl,
if no updates are outstanding

Signed-off-by: Owen Leonard oleon...@myacpl.org

Works exactly as it should according to the test plan. This is a nice
improvement.

Signed-off-by: Jonathan Druart jonathan.dru...@biblibre.com
Amended patch: Check OpacMaintenance!

Signed-off-by: Marcel de Rooy m.de.r...@rijksmuseum.nl

-- 
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 7853] opac-maintanance.pl should correctly redirect back to opac-main.pl, if no updates are outstanding

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7853

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

   What|Removed |Added

  Attachment #17160|0   |1
is obsolete||

-- 
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 8278] Replace YUI autocomplete in UNIMARC 210c plugin

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8278

Bernardo Gonzalez Kriegel bgkrie...@gmail.com changed:

   What|Removed |Added

  Attachment #17110|0   |1
is obsolete||

--- Comment #8 from Bernardo Gonzalez Kriegel bgkrie...@gmail.com ---
Created attachment 17189
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17189action=edit
[SIGNED-OFF] Bug 8278 : Follow up, fixing the permissions on
cataloguing/ysearch.pl

Signed-off-by: Bernardo Gonzalez Kriegel bgkrie...@gmail.com

Comment: Works. No errors.

Without patch and normal staff user, logged out
With patch, normal staff, valid output.

-- 
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 7853] opac-maintanance.pl should correctly redirect back to opac-main.pl, if no updates are outstanding

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7853

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

   What|Removed |Added

 Status|Signed Off  |Passed QA
 CC||m.de.r...@rijksmuseum.nl
 QA Contact||m.de.r...@rijksmuseum.nl

--- Comment #9 from M. de Rooy m.de.r...@rijksmuseum.nl ---
QA Comment:
Not really anything to say. Nice patch. Now I just need to refresh and come
back to opac as soon as maintenance finished.

Just for the record and a formality: Jonathan, I would have preferred a
followup adding the necessary OpacMaintenance test. (Have amended in the past
too much too :)

And if somebody likes to add a followup.. Why not say that kohaversion must be
koha_db_version? In the very exceptional case that kohaversion=3.10 and db
version= 3.12, something goes wrong. Wouldn't that be safe to go to maintenance
as well?

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 7853] opac-maintanance.pl should correctly redirect back to opac-main.pl, if no updates are outstanding

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7853

--- Comment #10 from M. de Rooy m.de.r...@rijksmuseum.nl ---
(In reply to comment #9)
 And if somebody likes to add a followup.. Why not say that kohaversion must
 be koha_db_version? In the very exceptional case that kohaversion=3.10 and
 db version= 3.12, something goes wrong. Wouldn't that be safe to go to
 maintenance as well?

Added note: I changed this in the code when testing. It is a different thing
coming there..

-- 
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 9987] biblioitemnumber is useless for orders.

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9987

mathieu saby mathieu.s...@univ-rennes2.fr changed:

   What|Removed |Added

 CC||mathieu.saby@univ-rennes2.f
   ||r

-- 
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 9989] New: Closing a basket without creating a basketgroup should not redirect to baskets list

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9989

Bug ID: 9989
   Summary: Closing a basket without creating a basketgroup should
not redirect to baskets list
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Acquisitions
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: mathieu.s...@univ-rennes2.fr

When we close a basket without creating a basketgroup, we are redirected to 
baskets list for the vendor.
I think it would be more logical to stay on the basket page, for example if we
want to put it manually into an existing basketgroup.
But maybe some libraries would prefer the current behavior?

M. Saby
Rennes 2 university

-- 
You are receiving this mail because:
You are the assignee 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 9040] uninitialized value in concatenation error in Opac-detail.tt

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9040

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

   What|Removed |Added

 Status|Needs Signoff   |Failed QA
 CC||m.de.r...@rijksmuseum.nl

--- Comment #16 from M. de Rooy m.de.r...@rijksmuseum.nl ---
(In reply to comment #15)
 I don't see this error in my OPAC logs from general OPAC use. Please revise
 your patch to include a test plan, including steps to reproduce the error.

Changing status of this report to reflect the need for clarification. See above
request.

-- 
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 9115] [3.6.X] basket window should close automatically when placing a hold

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9115

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

   What|Removed |Added

 CC||m.de.r...@rijksmuseum.nl
Summary|basket window should close  |[3.6.X] basket window
   |automatically when placing  |should close automatically
   |a hold  |when placing a hold

-- 
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 9588] weighted search query with index

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9588

--- Comment #6 from Fridolyn SOMERS fridolyn.som...@biblibre.com ---
(In reply to comment #4)
 Why exactly do you remove the rt (right truncation)?
This is the main purpose of the patch : changing weighted query with an index
specified so that it behaves like the weighted query without index specified.

 Should the truncate pref be tested here too?
No, if truncate pref is on, truncation will be performed on the operand before
performing weighted query on this operand.

 What is the exact reason for the lower ranks for wordlist, fuzzy and stemming?
This is in order to have a good order with relevance sort order, from the more
exact match to the less : 
exact  phrase  word list  fuzzy  stemmed

-- 
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 7518] searches with quotation marks don't work

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7518

--- Comment #25 from Fridolyn SOMERS fridolyn.som...@biblibre.com ---
(In reply to comment #24)
 Search prix du blé = 1 result (that's correct)
Try with a quote into the search terms : prix du blé

-- 
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 7518] searches with quotation marks don't work

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7518

--- Comment #26 from Fridolyn SOMERS fridolyn.som...@biblibre.com ---
(In reply to comment #23)
 Created attachment 17150 [details]
 screenshot of search configuration used for testing

Try without QueryAutoTruncate.

-- 
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 9740] using XSLT modifies record authorized values

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9740

--- Comment #9 from Fridolyn SOMERS fridolyn.som...@biblibre.com ---
(In reply to comment #8)
 Hi Fridolyn,
 maybe I don't understand what the wanted/unwanted behaviour is?

In my opinion, the unwanted behavior is that the Descriptions tab content
depends on the use of XSLT : 
 - without XSLT, the code is displayed
 - with XSLT, the description is displayed
This is clearly a unwanted side-effect : changes on record appears in XSLT.pm
but effect appears in details.pl.

The wanted behavior is that the code is always displayed.

-- 
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 9806] Show more information on basketgroups lists

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9806

--- Comment #12 from Fridolyn SOMERS fridolyn.som...@biblibre.com ---
Why not using Koha::Template::Plugin::KohaBranchName to change branch code into
branch description into template instead of into perl page ?

-- 
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 9740] using XSLT modifies record authorized values

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9740

--- Comment #10 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
I think I disagree. We have authorized values with a special description for
the OPAC - so that is what display. We also use authorised values for local
subjectes (653) where the library does not want to create real authorities but
have some control over the terms. So in that case we always want to display the
long description and not the short code.

-- 
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 7518] searches with quotation marks don't work

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7518

--- Comment #27 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
I can't try without - witout search doesn't work at all with ICU :)
See bug 9976

-- 
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 8061] Koha's templates do not cope well with right-to-left languages

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8061

--- Comment #10 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Hi Karam,

thx for working on this. :)

Just a few short notes to move this in the right direction (into Koha):
- Is your new patch for master or 3.8?
- Is it based on Ruth's patch? In this case it would be better if you could
provide a follow up with your changes, so that you both can get proper credit
for the work that has gone into this. If you need help with git, I am sure we
can work something out.

If we could get a patch ready for 3.12 in the next few weeks, that would be
quite nice!

-- 
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 9740] using XSLT modifies record authorized values

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9740

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

   What|Removed |Added

Version|master  |3.14
   Severity|normal  |enhancement

--- Comment #11 from Jared Camins-Esakov jcam...@cpbibliography.com ---
I think that the current behavior is a feature not a bug. There would have to
be some sort of switch to make it possible to selectively disable the display
of the label.

If the issue is that you want the labels to match the codes of a particular set
of authorized values, I'd suggest just setting the labels to match the codes
(or, even better, train the librarians to use meaningful labels).

Bumping back to 3.14 since we are in feature freeze.

-- 
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 7518] searches with quotation marks don't work

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7518

--- Comment #28 from mathieu saby mathieu.s...@univ-rennes2.fr ---
I tested prix du blé, prix du blé, prix du blé, blé du prix, blé du
prix, blé du prix

= everything is working in master, without your patch (same number of results)

Mathieu

-- 
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 7518] searches with quotation marks don't work

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7518

--- Comment #29 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
I could imagine this is a side effect of the work on the query parser. Maybe we
should test if a patch is needed for 3.10.x still?

-- 
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 9990] New: search toolbar disappears when filtering on author

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9990

Bug ID: 9990
   Summary: search toolbar disappears when filtering on author
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: 3.8
  Hardware: All
OS: All
Status: NEW
  Severity: major
  Priority: P5 - low
 Component: Templates
  Assignee: oleon...@myacpl.org
  Reporter: neng...@gmail.com

See this video for details: http://www.screencast.com/t/tETuccHQ

-- 
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 9990] search toolbar disappears when filtering on author

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9990

--- Comment #1 from Nicole C. Engard neng...@gmail.com ---
Tested in 3.8.8 and 3.10.4 and 3.12 Beta - this error is in all of the above.

-- 
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 9806] Show more information on basketgroups lists

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9806

--- Comment #13 from mathieu saby mathieu.s...@univ-rennes2.fr ---
I did not know it was possible ;-)
If you think it is a better solution I will rewrite my patch.

Mathieu

-- 
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 9740] using XSLT modifies record authorized values

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9740

--- Comment #12 from Fridolyn SOMERS fridolyn.som...@biblibre.com ---
(In reply to comment #10)
 I think I disagree. We have authorized values with a special description for
 the OPAC - so that is what display. We also use authorised values for local
 subjectes (653) where the library does not want to create real authorities
 but have some control over the terms. So in that case we always want to
 display the long description and not the short code.

The patch does not remove the conversion from code to description inside the
block computed by XSLT, it removes this conversion for code outside of XSLT.pm

-- 
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 9740] using XSLT modifies record authorized values

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9740

--- Comment #13 from Fridolyn SOMERS fridolyn.som...@biblibre.com ---
Actually the side effect is only visible in fields shown in Description tab,
that is what I describe in test plan.

-- 
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 9740] using XSLT modifies record authorized values

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9740

--- Comment #14 from Fridolyn SOMERS fridolyn.som...@biblibre.com ---
(In reply to comment #11)
 I think that the current behavior is a feature not a bug.
This can't be a feature, changes on var $record performed in XSLT.pm had
effects in details.pl.

-- 
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 9806] Show more information on basketgroups lists

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9806

--- Comment #14 from Fridolyn SOMERS fridolyn.som...@biblibre.com ---
I think it would be great.
Have a look at Bug 9229 patch to see how to do it.

-- 
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 7518] searches with quotation marks don't work

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7518

--- Comment #30 from Fridolyn SOMERS fridolyn.som...@biblibre.com ---
(In reply to comment #29)
 I could imagine this is a side effect of the work on the query parser. Maybe
 we should test if a patch is needed for 3.10.x still?
Yes I think so.

-- 
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 9740] using XSLT modifies record authorized values

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9740

--- Comment #15 from Jared Camins-Esakov jcam...@cpbibliography.com ---
(In reply to comment #14)
 (In reply to comment #11)
  I think that the current behavior is a feature not a bug.
 This can't be a feature, changes on var $record performed in XSLT.pm had
 effects in details.pl.

No question that the code is poor, but surely it can be fixed without breaking
functionality?

-- 
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 8770] amount does not equal amountoutstanding on a fine with no payments or credits

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8770

Kyle M Hall kyle.m.h...@gmail.com changed:

   What|Removed |Added

Version|3.8 |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 9990] search toolbar disappears when filtering on author

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9990

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

   What|Removed |Added

Version|3.8 |3.12

-- 
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 7853] opac-maintanance.pl should correctly redirect back to opac-main.pl, if no updates are outstanding

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7853

--- Comment #11 from Mason James m...@kohaaloha.com ---
(In reply to comment #10)
 (In reply to comment #9)
  And if somebody likes to add a followup.. Why not say that kohaversion must
  be koha_db_version? In the very exceptional case that kohaversion=3.10 and
  db version= 3.12, something goes wrong. Wouldn't that be safe to go to
  maintenance as well?
 
 Added note: I changed this in the code when testing. It is a different thing
 coming there..

hmmm, a good question Marcel, but i think this is a bad idea...

there are valid/legitimate situations both for production and dev/testing
usage, where people may want to load a newer db onto an older Koha codebase.

your proposed change would stop this from happening

-- 
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 7853] opac-maintanance.pl should correctly redirect back to opac-main.pl, if no updates are outstanding

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7853

--- Comment #12 from Mason James m...@kohaaloha.com ---
(In reply to comment #5)
 QA comment:
 A use case is not supported:
 I am going to make a maintenance operation on a server, I switch on the
 syspref  OpacMaintenance. opac-main redirects on opac-maintenance and
 opac-maintenance redirects to opac-main :)
 

thanks for spotting this Jonathan, and the patch too :)

-- 
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 9990] search toolbar disappears when filtering on author

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9990

--- Comment #2 from Owen Leonard oleon...@myacpl.org ---
I'm guessing this is a duplicate of Bug 8686 which I've never been able to
reproduce. I can perform a search in my test system using the exact same search
query I observe in the status bar in that video and I get valid results with no
problems with the toolbar.

I need more information. Does the bug happen in all circumstances? Every author
search, or just that particular author search? When the bug manifests are there
JavaScript errors on the page? When you get a search results page which shows
the problem, can you please view source, select all, and save that text in a
text file to attach to the bug?

-- 
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 9381] Add Catalan language

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9381

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

   What|Removed |Added

  Attachment #17133|0   |1
is obsolete||
  Attachment #17134|0   |1
is obsolete||
  Attachment #17135|0   |1
is obsolete||

--- Comment #17 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Created attachment 17190
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17190action=edit
[PASSED QA] Bug 9381: Add Catalan language

Simply add catalan language.

No translation yet, so can't be really tested.
But it will come soon.

Until then, to test:
1) cp misc/translator/po/es-ES* to ca-ES*
2) do perl translate install ca-ES,
3) apply the patch
4) run updatedatabase.pl
5) enable language and display on system preferences.
6) check labels

Signed-off-by: Chris Cormack ch...@bigballofwax.co.nz

Rebased to current master

Signed-off-by: Katrin Fischer katrin.fischer...@web.de

-- 
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 9381] Add Catalan language

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9381

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

   What|Removed |Added

 Status|Signed Off  |Passed QA
   Patch complexity|--- |Small patch

-- 
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 9381] Add Catalan language

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9381

--- Comment #18 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Created attachment 17191
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17191action=edit
[PASSED QA] Followup Bug 9381 - Add Catalan language

This followup adds Catalan language into languages
other than english.

Signed-off-by: Chris Cormack ch...@bigballofwax.co.nz

Rebased to master

Signed-off-by: Katrin Fischer katrin.fischer...@web.de

-- 
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 9381] Add Catalan language

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9381

--- Comment #19 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Created attachment 17192
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17192action=edit
[PASSED QA] Followup 2 - Bug 9381 - Add Catalan language

Sorry, this followup fulfills K. Fischer request to
base de-DE file in english one.

The differences are small corrections and added languages.

Signed-off-by: Chris Cormack ch...@bigballofwax.co.nz

Rebased to master

Signed-off-by: Katrin Fischer katrin.fischer...@web.de

-- 
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 9850] Koha 3.12 Help Files Update

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9850

Katrin Fischer katrin.fisc...@bsz-bw.de 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 9850] Koha 3.12 Help Files Update

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9850

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

   What|Removed |Added

  Attachment #17139|0   |1
is obsolete||
  Attachment #17140|0   |1
is obsolete||
  Attachment #17141|0   |1
is obsolete||
  Attachment #17142|0   |1
is obsolete||
  Attachment #17143|0   |1
is obsolete||
  Attachment #17144|0   |1
is obsolete||
  Attachment #17145|0   |1
is obsolete||
  Attachment #17146|0   |1
is obsolete||
  Attachment #17147|0   |1
is obsolete||

--- Comment #56 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Created attachment 17193
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17193action=edit
[PASSED QA] Bug 9850: Cataloging Help for 3.12

This updates just the links in the cataloging help, no text changes where made.

To test:

Visit help in cataloging and click the manual links and make sure they're
right.

Signed-off-by: Owen Leonard oleon...@myacpl.org
Signed-off-by: Katrin Fischer katrin.fischer...@web.de

-- 
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 9850] Koha 3.12 Help Files Update

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9850

--- Comment #57 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Created attachment 17194
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17194action=edit
[PASSED QA] Bug 9850: Update Reports Help for 3.12

This updates the reports help for Koha 3.12.

To test:

Visit all reports pages and review the help for textual changes
and correct links.

Signed-off-by: Owen Leonard oleon...@myacpl.org
Signed-off-by: Katrin Fischer katrin.fischer...@web.de

-- 
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 9850] Koha 3.12 Help Files Update

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9850

--- Comment #58 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Created attachment 17195
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17195action=edit
[PASSED QA] Bug 9850: Serial Help Files for 3.12

Update text and links for Serials help files.

To test:

Visit all serial related pages and check the text of the help and
test the links.

Signed-off-by: Owen Leonard oleon...@myacpl.org
Signed-off-by: Katrin Fischer katrin.fischer...@web.de

-- 
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 9850] Koha 3.12 Help Files Update

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9850

--- Comment #59 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Created attachment 17196
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17196action=edit
[PASSED QA] Bug 9850: Suggestion Help File for 3.12

This updates the text and link on the suggestions help file.

To test:

Visit the manage suggestions page and review the help file.

Signed-off-by: Owen Leonard oleon...@myacpl.org
Signed-off-by: Katrin Fischer katrin.fischer...@web.de

-- 
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 9850] Koha 3.12 Help Files Update

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9850

--- Comment #60 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Created attachment 17197
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17197action=edit
[PASSED QA] Bug 9850: Offline Circ Help Files for 3.12

This updates the text and links in the offline circulation tool help files.

To test:

Visit all offline circulation pages in the staff client and review the text and
links.

Signed-off-by: Owen Leonard oleon...@myacpl.org
Signed-off-by: Katrin Fischer katrin.fischer...@web.de

-- 
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 9850] Koha 3.12 Help Files Update

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9850

--- Comment #61 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Created attachment 17198
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17198action=edit
[PASSED QA] Bug 9850: Update Circ Help Files for 3.12

This updates the text and links for the Circulation Help Files.  It also
removes
an unused help file 'billing.tt'.

To test:

Visit the help files on all circ pages and confirm links and text are right.

Signed-off-by: Owen Leonard oleon...@myacpl.org
Signed-off-by: Katrin Fischer katrin.fischer...@web.de

-- 
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 9850] Koha 3.12 Help Files Update

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9850

--- Comment #62 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Created attachment 17199
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17199action=edit
[PASSED QA] Bug 9850: Add Plugin Help File for 3.12

This adds a help file to the new plugins module.

To test:

Activate the plugin module and check the text and links in the help file

Signed-off-by: Owen Leonard oleon...@myacpl.org
Signed-off-by: Katrin Fischer katrin.fischer...@web.de

-- 
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 9850] Koha 3.12 Help Files Update

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9850

--- Comment #63 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Created attachment 17200
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17200action=edit
[PASSED QA] Bug 9850: Update Tools Help for 3.12

Update the text and links in the Tools help files.

To test:

Check the text and links on all help files under Tools.

Signed-off-by: Owen Leonard oleon...@myacpl.org

I fixed one instance of a link to 3.10 instead of 3.12.

Signed-off-by: Katrin Fischer katrin.fischer...@web.de

-- 
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 9850] Koha 3.12 Help Files Update

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9850

--- Comment #64 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Created attachment 17201
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=17201action=edit
[PASSED QA] Bug 9850: FOLLOW UP: Add Missing Plugin Help for 3.12

This patch is a follow up to the one that adds the plugin help.

To test:

Visit the upload a plugin page and review the help and links.

Signed-off-by: Owen Leonard oleon...@myacpl.org
Signed-off-by: Katrin Fischer katrin.fischer...@web.de

-- 
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 4173] Statuses not appearing in the OPAC

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=4173

Liz Rea l...@catalyst.net.nz changed:

   What|Removed |Added

 CC||l...@catalyst.net.nz

--- Comment #25 from Liz Rea l...@catalyst.net.nz ---
It looks like restricted statuses are still not shown. 

I actually have a use case for them now - 

A library wants to show that an item is ask a librarian - it's not lost, it's
not not for loan, they just want to indicate that it is restricted access,
and they use the restricted authorised value to show that. People also use it
to denote on order in combination with Not for loan. 

Anyway, I think we have someone willing to sponsor a fix for the restricted
status display - so will file a new bug if that comes to pass.

-- 
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 7056] Selection of item type not working in Guided Reports Wizard

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7056

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #1 from Owen Leonard oleon...@myacpl.org ---
I cannot reproduce this bug in master as of 3.12 beta 2.

-- 
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 8466] Holds on MARC records with no item causes silent error in koha-error_log

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8466

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

   What|Removed |Added

Version|3.6 |master

--- Comment #1 from Owen Leonard oleon...@myacpl.org ---
This bug is valid in master as of 3.12 beta2.

-- 
You are receiving this mail because:
You are the assignee 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 8228] Koha Offline Circulation screen does not render correctly in Ubuntu

2013-04-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8228

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #2 from Owen Leonard oleon...@myacpl.org ---
This bug doesn't appear to be valid in Ubuntu 12.10 with Gnome 3.6.0.

-- 
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/


  1   2   >