[Koha-bugs] [Bug 7183] New: consistency of displays

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

 Bug #: 7183
   Summary: consistency of displays
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: master
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Architecture, internals, and plumbing
AssignedTo: gmcha...@gmail.com
ReportedBy: paul.poul...@biblibre.com
 QAContact: ian.wa...@bywatersolutions.com
Blocks: 7119


There is no consistency for most displays in Koha. Sometimes, patron
information is displayed
John, Doe +123 45 67 89, New York
sometimes
Doe, John, New York Adult
Sometimes
bJohn Doe/b
Adult, New York
...

Template Toolkit can help us having a consistent display: we should define
basic objects and how they are displayed is managed in a specific include,
ensuring consistency.
A first list of objects:
* biblio
* biblio+item (location, without availability, like what is displayed in item
bulkmodification, cart,...)
* biblio+item (location and availability like what is displayed in
circulation/hold pages)
* patron

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7119] Code cleaning improvements omnibus

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

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

   What|Removed |Added

 Depends on||7183

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


[Koha-bugs] [Bug 5339] Parcel closing in acq

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

Julian Maurice julian.maur...@biblibre.com changed:

   What|Removed |Added

 CC||julian.maur...@biblibre.com

--- Comment #3 from Julian Maurice julian.maur...@biblibre.com 2011-11-06 
06:30:39 UTC ---
This feature is more than just the possibility to close a parcel.
It provides a new submodule for searching and managing invoices.
It will be possible to set a shipment cost for an invoice, and affect it to a
specific fund. And also a billing date.

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


[Koha-bugs] [Bug 7119] Code cleaning improvements omnibus

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

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

   What|Removed |Added

 Depends on||7184

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


[Koha-bugs] [Bug 7184] New: have mysql returning errors

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

 Bug #: 7184
   Summary: have mysql returning errors
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: master
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Architecture, internals, and plumbing
AssignedTo: paul.poul...@biblibre.com
ReportedBy: paul.poul...@biblibre.com
 QAContact: ian.wa...@bywatersolutions.com
Blocks: 7119


Koha staff interface doesn't complain when there is an SQL error, except in the
logs. That can result in strange situations, where the user don't see there is
a problem, even if there is.

There is an easy solution to this problem : RaiseError

in C4/Context.pm, the line 
my $dbh=
DBI-connect(DBI:$db_driver:dbname=$db_name;host=$db_host;port=$db_port,
$db_user, $db_passwd) or die $DBI::errstr;

just has to be replaced by
my $dbh=
DBI-connect(DBI:$db_driver:dbname=$db_name;host=$db_host;port=$db_port,
$db_user, $db_passwd, {RaiseError = 1}) or die $DBI::errstr;

We also could deal with the DebugLevel systempreference to raise the error only
if the library has set it.
Something like: {'RaiseError' = C4::Context-preference(DebugLevel)?1:0}

My preference goes to the 2nd option = raise error only if DebugLevel is set

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7177] memoize more function calls to speed up Koha

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

--- Comment #2 from Dobrica Pavlinusic dpav...@rot13.org 2011-11-06 06:58:20 
UTC ---
Created attachment 6235
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=6235
run opac search under NYTProf

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 5327] Unit tests required for all C4 modules

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

--- Comment #13 from Chris Cormack ch...@bigballofwax.co.nz 2011-11-06 
07:01:00 UTC ---
Created attachment 6236
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=6236
Bug 5327 : Adding more unit tests

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


[Koha-bugs] [Bug 5327] Unit tests required for all C4 modules

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

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

   What|Removed |Added

   Priority|P5 - low|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.
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 7184] have mysql returning errors

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

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

   What|Removed |Added

 Status|NEW |ASSIGNED

--- Comment #1 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
07:08:22 UTC ---
silly me ( ian) : -preference needs a db handler, that is not still open, so
it calls new_dbh, that need -preference ... = forever loop = boom !

We will have to use DEBUG pragma (in koha-httpd.conf)

Patch coming soon !

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 6994] 'No budget defined' showing up although budgets and funds are defined

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

Ian Walls ian.wa...@bywatersolutions.com changed:

   What|Removed |Added

 CC||ian.walls@bywatersolutions.
   ||com
   Patch Status|Signed Off  |Passed QA

--- Comment #4 from Ian Walls ian.wa...@bywatersolutions.com 2011-11-06 
08:34:29 UTC ---
Implements this check consistently, using the same structure as acqui/basket.pl
 Use of GetMember instead of GetMemberDetails keeps it as lean as possible. 
Marking as Passed 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.
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 7184] have mysql returning errors

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

--- Comment #2 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
08:37:32 UTC ---
Created attachment 6238
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=6238
Bug 7184 raise mySQL error if debug is set

Before this patch, if a mySQL occured in Koha (any error), then the user was
seeing nothing.
With this patch, if DEBUG is set in Koha VirtualHost, any mySQL error will make
Koha die and display the SQL error

Step to test:
=== BEFORE PATCH ===
go anywhere, and change a mySQL statement to make it invalid.
Launch a page using the SQL you've made wrong, you'll see nothing, except you
won't see the expected results

=== AFTER PATCH ===
Modify koha-httpd.conf, and add the following line, in the virtualhost (if it
does not already exist)
SetEnv DEBUG 1
restart/reload Apache
Launch the same page, you'll get a Perl statement saying something like:

DBD::mysql::st execute failed: blablabla SQL error at where the error was
raised line error line

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7152] Koha should make it easy for librarians to attach covers using Open Library

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

--- Comment #6 from Robin Sheat ro...@catalyst.net.nz 2011-11-06 08:47:08 UTC 
---
Tried sending a more complete record:

{authors:[Sifry, Micah L.],publish_date:2011,title:WikiLeaks and the
Age of Transparency,publisher:OR Books,isbns:[9781935928324]}

and still got the 'notfound' response.

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7185] Update to 3.6 say Koha release 3.4

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

--- Comment #1 from Julian Maurice julian.maur...@biblibre.com 2011-11-06 
08:47:22 UTC ---
Created attachment 6239
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=6239
Bug 7185: Fix updatedatabase message for 3.6.0 release

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7185] Update to 3.6 say Koha release 3.4

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

Julian Maurice julian.maur...@biblibre.com changed:

   What|Removed |Added

   Priority|P5 - low|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 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 7085] Problems with searching for orders in acquisitions

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

Ian Walls ian.wa...@bywatersolutions.com changed:

   What|Removed |Added

 CC||ian.walls@bywatersolutions.
   ||com
   Patch Status|Signed Off  |Passed QA
  QAContact|koha-b...@lists.koha-commun |ian.walls@bywatersolutions.
   |ity.org |com

--- Comment #4 from Ian Walls ian.wa...@bywatersolutions.com 2011-11-06 
08:49:37 UTC ---
Replaces 'defined' calls with Perl eval, so any params that are passed defined
but 0 or '' do not invoke the addition of the SQL where clauses.  Undefined
values will still assess as untrue, so we don't lose anything here, just gain
stricter checks.

Marking as Passed 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.
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 7175] Improve order receiving page

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

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

   What|Removed |Added

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

--- Comment #1 from Katrin Fischer katrin.fisc...@bsz-bw.de 2011-11-06 
09:06:11 UTC ---
'Bug 3966 - receiving items should allow for entering barcode' might be
interesting to look at in this context, because there can be a conflict.

It's desirable to be able to change items you have created on order when
receiving them. Like adding barcode labels and stocknumbers.

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7187] New: Prioritize cover image sources such as Amazon, Google and add fail over i.e. if first source fails, go to next

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

 Bug #: 7187
   Summary: Prioritize cover image sources such as Amazon, Google
and add fail over i.e. if first source fails, go to
next
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: OPAC
AssignedTo: oleon...@myacpl.org
ReportedBy: kmk...@anantcorp.com
 QAContact: ian.wa...@bywatersolutions.com


We should be able to set priority on cover image sources such as Amazon,
Google. Then if one source fails we should be able to fail over to the next.

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7187] Prioritize cover image sources such as Amazon, Google and add fail over i.e. if first source fails, go to next

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

Koustubha Kale kmk...@anantcorp.com changed:

   What|Removed |Added

 AssignedTo|oleon...@myacpl.org |kmk...@anantcorp.com

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7186] add new 'Koha Stats' tab to 'About' page

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

Mason James m...@kohaaloha.com changed:

   What|Removed |Added

   Priority|P5 - low|PATCH-Sent
   Patch Status|--- |Needs Signoff
  Change sponsored?|--- |Sponsored

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7113] Standardize vendor id name in templates and scripts

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

Ian Walls ian.wa...@bywatersolutions.com changed:

   What|Removed |Added

 CC||ian.walls@bywatersolutions.
   ||com
   Patch Status|Signed Off  |Failed QA

--- Comment #11 from Ian Walls ian.wa...@bywatersolutions.com 2011-11-06 
09:41:01 UTC ---
aqcontract.tt still passes supplierid param, even though it's being populated
with the booksellerid value.

Serials doesn't seem to be making this change, particularly in claims.tt.  Is
it outside the scope of this report?  What about variables in C4 modules?

Have to mark this as Failed QA due to the first paragraph... please fix, and
clarify the scope for this 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.
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 1633] Add ability to take book cover images from local img db

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

Koustubha Kale kmk...@anantcorp.com changed:

   What|Removed |Added

   Priority|P3  |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 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 7179] Removing YUI js library

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

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

   What|Removed |Added

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

--- Comment #1 from Katrin Fischer katrin.fisc...@bsz-bw.de 2011-11-06 
09:44:53 UTC ---
Might be a duplicate or related to bug 5481

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 5481] Replace YUI JS libraries with Jquery UI

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

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

   What|Removed |Added

 Blocks||7179

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


[Koha-bugs] [Bug 3385] Add checkout date and renewal date to display list of checked out items

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

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

   What|Removed |Added

 CC||paul.poul...@biblibre.com
   Patch Status|Passed QA   |Failed QA

--- Comment #5 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
09:46:53 UTC ---
Sorry guys, failed QA, dates are not formatted.

My screen shows :
Last renewed 2011-10-03, Due back on 12/05/2011

The 2nd date is OK, the renewed one is not formatted.

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 6471] column sorter on holds queue

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

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

   What|Removed |Added

   Patch Status|Passed QA   |Patch Pushed

--- Comment #7 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
09:50:24 UTC ---
patch 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.
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 7182] remove old-style date picker (calendar)

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

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

   What|Removed |Added

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

--- Comment #1 from Katrin Fischer katrin.fisc...@bsz-bw.de 2011-11-06 
09:52:53 UTC ---
Owen has made a suggestion to use jQueryUI datepicker for this. 
I am adding a link to bug 5778.

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 5778] Modify DHTMLcalendar function to work with jQueryUI datepicker

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

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

   What|Removed |Added

 Blocks||7182

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


[Koha-bugs] [Bug 7185] Update to 3.6 say Koha release 3.4

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

--- Comment #2 from Francois Charbonnier francois.charbonn...@biblibre.com 
2011-11-06 09:59:41 UTC ---
Created attachment 6243
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=6243
[SIGNED-OFF] Bug 7185: Fix updatedatabase message for 3.6.0 release

Signed-off-by: François Charbonnier francois.charbonn...@biblibre.com

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7185] Update to 3.6 say Koha release 3.4

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

Francois Charbonnier francois.charbonn...@biblibre.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 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 6945] Add a link to show a MARC preview in the normal view

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

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

   What|Removed |Added

 CC||paul.poul...@biblibre.com
   Patch Status|Passed QA   |Failed QA

--- Comment #9 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
10:29:53 UTC ---
For consistency reasons i'll reject this patch. Here is what I get on my screen
:

Massacre (The) éô ï

By 50 Cent

   * Additional Authors:
  by  50 Cent
   * Published by: Shady/Aftermath , 2006
   * Description: 1 d.c.
   * MARC Preview: Show
===
(that is what is also in the screenshot submitted by Maxime)

The MARC Preview is not related to the biblio content, so the link should not
be here. It should be either on the action button (on the right of place hold
for example) or on the left tab.

You can also do exactly the same thing just using XSLT, and I think it's the
best way to do it: just activate XSLT and add a XSLT link to the MARC preview
after the description. Thus, no need to add code to Koha

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

[Koha-bugs] [Bug 6945] Add a link to show a MARC preview in the normal view

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

--- Comment #10 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
10:31:54 UTC ---
unless you're very good arguments, I think this bug must be RESO/INVALID.

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


[Koha-bugs] [Bug 7185] Update to 3.6 says Koha release 3.4

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

Ian Walls ian.wa...@bywatersolutions.com changed:

   What|Removed |Added

   Patch Status|Signed Off  |Passed QA
Summary|Update to 3.6 say Koha |Update to 3.6 says Koha
   |release 3.4|release 3.4

--- Comment #4 from Ian Walls ian.wa...@bywatersolutions.com 2011-11-06 
10:37:42 UTC ---
Simple fix, easy to read, passing through QA.

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7152] Koha should make it easy for librarians to attach covers using Open Library

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

--- Comment #7 from Robin Sheat ro...@catalyst.net.nz 2011-11-06 10:38:34 UTC 
---
Anand: are there test records out there on OL that I can use to experiment with
without messing around with real entries?

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 6978] Notify the user on his account page when it is almost expired.

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

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

   What|Removed |Added

 CC||paul.poul...@biblibre.com
   Patch Status|Passed QA   |Patch Pushed

--- Comment #8 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
10:39:00 UTC ---
patch 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.
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 7184] have mysql returning errors

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

Ian Walls ian.wa...@bywatersolutions.com changed:

   What|Removed |Added

   Patch Status|Needs Signoff   |Passed QA

--- Comment #3 from Ian Walls ian.wa...@bywatersolutions.com 2011-11-06 
10:43:45 UTC ---
Simple patch, implements more feedback information using the Environment
variable instead of the system preference.

Followup will become necessary: modify etc/koha-httpd.conf to include default
values for the DEBUG environment variable.  The choice of this default value
should be consistent with the level of debugging already defaulted to in Koha
with the syspref.

This will come in very handy whenever atomic update files are not applied along
with their companion code; a missing column or system preference value will
become very clear very quickly.

Marking as Passed QA

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 6994] 'No budget defined' showing up although budgets and funds are defined

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

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

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||paul.poul...@biblibre.com
   Patch Status|Passed QA   |Patch Pushed

--- Comment #5 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
10:45:18 UTC ---
Patch 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.
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 6994] 'No budget defined' showing up although budgets and funds are defined

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

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

   What|Removed |Added

Version|master  |rel_3_6

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


[Koha-bugs] [Bug 6471] column sorter on holds queue

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

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

   What|Removed |Added

Version|master  |rel_3_6

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


[Koha-bugs] [Bug 7085] Problems with searching for orders in acquisitions

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

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

   What|Removed |Added

Version|master  |rel_3_6

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7091] Patches required to make the packages know about the 3.6 release

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

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

   What|Removed |Added

 CC||paul.poul...@biblibre.com
   Patch Status|Passed QA   |Does not apply

--- Comment #9 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
10:53:01 UTC ---
Sorry guys, does not apply anymore because of a small glitch in
debian/build-git-snapshot
I'm totally unable to decide how it should be fixed, so I let you fix it.

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


[Koha-bugs] [Bug 7117] Small display problems when organising suggestion tabs by name

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

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

   What|Removed |Added

 CC||paul.poul...@biblibre.com
Version|master  |rel_3_6
   Patch Status|Passed QA   |Patch Pushed

--- Comment #4 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
10:55:33 UTC ---
Patch 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.
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 7117] Small display problems when organising suggestion tabs by name

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

--- Comment #5 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
10:56:43 UTC ---
Patch 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.
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 7128] logged in and logged out states of opac-main.tt are hard to style

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

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

   What|Removed |Added

 CC||paul.poul...@biblibre.com
Version|master  |rel_3_6
   Patch Status|Passed QA   |Patch Pushed

--- Comment #7 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
11:00:43 UTC ---
patch 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.
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 6838] Filtering and pagination in subscriptions table

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

Ian Walls ian.wa...@bywatersolutions.com changed:

   What|Removed |Added

 CC||ian.walls@bywatersolutions.
   ||com

--- Comment #6 from Ian Walls ian.wa...@bywatersolutions.com 2011-11-06 
11:04:53 UTC ---
With the bug for 6836 applied, this works.  I'm finding the whole table to be
wider, and with a smaller font size, so we may need to adjust the CSS.  I'd
also like the ISSN column narrower, since ISSN is 9 char long and doesn't
require any more than that.  Also, condensing the last three columns to one
(Actions) with each action either on their own line, or separated by space,
may help narrow the table.

All in all, successful, at least on Mac + FF7.  Other systems need testing, as
well.

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


[Koha-bugs] [Bug 7146] Update timestamps when deleting a biblio

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

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

   What|Removed |Added

 CC||paul.poul...@biblibre.com
Version|master  |rel_3_6
   Patch Status|Passed QA   |Patch Pushed

--- Comment #4 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
11:05:07 UTC ---
Patch pushed, please test

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 6838] Filtering and pagination in subscriptions table

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

Ian Walls ian.wa...@bywatersolutions.com changed:

   What|Removed |Added

   Attachment #5342|0   |1
is obsolete||

--- Comment #7 from Ian Walls ian.wa...@bywatersolutions.com 2011-11-06 
11:06:07 UTC ---
Comment on attachment 5342
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5342
buggy

Obsoleting screenshot, since this issue goes away when 6836 is applied

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


[Koha-bugs] [Bug 7188] New: case-insensitive grep of /mysql/ in C4::Context

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

 Bug #: 7188
   Summary: case-insensitive grep of /mysql/ in C4::Context
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Architecture, internals, and plumbing
AssignedTo: paul.poul...@biblibre.com
ReportedBy: ian.wa...@bywatersolutions.com
 QAContact: ian.wa...@bywatersolutions.com
Blocks: 6875


Porting this over from Paul's de-nesting C4 omnibus.

C4::Context does an unnecessary case-insensitive grep on the database type,
which is always 'mysql', unless someone manually edits the file.  If they're
doing that, they can expect buggy behaviour.

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 6875] de-nesting C4 packages

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

Ian Walls ian.wa...@bywatersolutions.com changed:

   What|Removed |Added

 Depends on||7188

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


[Koha-bugs] [Bug 7152] Koha should make it easy for librarians to attach covers using Open Library

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

--- Comment #8 from Robin Sheat ro...@catalyst.net.nz 2011-11-06 11:16:49 UTC 
---
When using the uploader thing with:

form action=http://openlibrary.org/api/ils_cover_upload;
method=post
name=upload
input type=hidden name=authorization
value=Bl4hB1AHblah== /
input type=hidden name=olid value=OL123TEST /
input type=hidden name=redirect_url
id=ol_redirect_url
value=http://koha:8080/cgi-bin/koha/cataloguing/openlibrary.pl?biblionumber=8redir=additem;
/
input type=file name=file /
input type=submit name=submit value=Upload /
/form

I get a document of type application/json with the content None, rather than
a redirect.

Note that the auth values I provided aren't valid currently, nor is the OLID
I'm using for testing, so I expect a failure. However, I also hope for a
redirect.

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7188] case-insensitive grep of /mysql/ in C4::Context

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

--- Comment #1 from Ian Walls ian.wa...@bywatersolutions.com 2011-11-06 
11:22:59 UTC ---
Created attachment 6244
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=6244
Bug 7188: C4::Context::db_scheme2dbi does case-insensitive grep

Checking NYTProf in C4::Context, it appears that the /i flag is highly
time-consumming
As we don't support anything outside from mysql, returning directly mysql
directly

If in a future version PostgresSQL works, then we will have to update this sub.
But if an ORM is introduced, this code will be removed completly anyway

Testing note:
Drops execution time of the line from 300ms to 20 microseconds (in my testing).

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7187] Prioritize cover image sources such as Amazon, Google and add fail over i.e. if first source fails, go to next

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

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

   What|Removed |Added

 CC||katrin.fisc...@bsz-bw.de
   See Also||http://bugs.koha-community.
   ||org/bugzilla3/show_bug.cgi?
   ||id=2131

--- Comment #1 from Katrin Fischer katrin.fisc...@bsz-bw.de 2011-11-06 
11:23:39 UTC ---
I found bug 2131 with a very old patch attached that sounds like a duplicate to
this. I am linking both together for someone interested to work on this.

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 6893] Order from suggestion does not remove suggestion from 'accepted' list

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

Francois Charbonnier francois.charbonn...@biblibre.com changed:

   What|Removed |Added

 CC||francois.charbonnier@biblib
   ||re.com

--- Comment #12 from Francois Charbonnier francois.charbonn...@biblibre.com 
2011-11-06 11:34:14 UTC ---
I just tested this patch and i noticed a couple of things that not working
well. These different elements seem to related to each other since a part of it
works with the master branch but not with the patch once applied...

1/
If you are in the pending tab and click on Submit without checking any
pending suggestion, the suggestion disappears from the table until you click on
the manage suggestion link again on the acquisition home page.

2/ 
once you accepted the suggestion, you can order from this suggestion and then,
it's no longer available from the newordersuggestion.pl page. 

But then, I noticed that the ordered tab doesn't appear and, at the opac
level, the suggestion stays at the accepted status. 

When you click, once again, on the manage suggestion link, on the acquisition
home page, the ordered tab shows up but it's empty. And, if there is an
ordered tab in the staff interface, the information at the opac for this
suggestion should be ordered as well.

(I just noticed that, if I check out the master branch, the ordered tab is ok.
There is one line inside corresponding to the order i did during my tests...) 

3/ Now, that I've tested all that, I did a new suggestion at the opac that I
can't accept on the staff interface... It stays at the pending status no matter
what i'm doing... :^(

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


[Koha-bugs] [Bug 6905] Allow selecting a patron from circulation history to take you to their circ page

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

Francois Charbonnier francois.charbonn...@biblibre.com changed:

   What|Removed |Added

 CC||francois.charbonnier@biblib
   ||re.com
   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.
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 6875] de-nesting C4 packages

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

Ian Walls ian.wa...@bywatersolutions.com changed:

   What|Removed |Added

   Attachment #5512|0   |1
is obsolete||

--- Comment #29 from Ian Walls ian.wa...@bywatersolutions.com 2011-11-06 
11:36:06 UTC ---
Comment on attachment 5512
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5512
Bug 6875 C4::Context cleaning

Moving C4::Context cleaning patch to bug 7188

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


[Koha-bugs] [Bug 7188] case-insensitive grep of /mysql/ in C4::Context

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

Ian Walls ian.wa...@bywatersolutions.com changed:

   What|Removed |Added

   Priority|P5 - low|PATCH-Sent
   Patch Status|--- |Passed QA

--- Comment #2 from Ian Walls ian.wa...@bywatersolutions.com 2011-11-06 
11:41:06 UTC ---
This change reduces my installation from taking over 300ms to run this line, to
27 micro seconds.

In my (limited) tests, I'm also finding that using /mysql/ returns in about the
same amount of time as forcing the return of mysql, within a few micro
seconds.  I don't know why, but figured I'd check.

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7179] Removing YUI js library

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

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE

--- Comment #2 from Owen Leonard oleon...@myacpl.org 2011-11-06 12:26:41 UTC 
---


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

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 5481] Replace YUI JS libraries with Jquery UI

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

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

   What|Removed |Added

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

--- Comment #6 from Owen Leonard oleon...@myacpl.org 2011-11-06 12:26:41 UTC 
---
*** Bug 7179 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.
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 7119] Code cleaning improvements omnibus

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

Bug 7119 depends on bug 7179, which changed state.

Bug 7179 Summary: Removing YUI js library
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7179

   What|Old Value   |New Value

 Status|NEW |RESOLVED
 Resolution||DUPLICATE

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


[Koha-bugs] [Bug 7182] remove old-style date picker (calendar)

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

--- Comment #2 from Owen Leonard oleon...@myacpl.org 2011-11-06 12:31:52 UTC 
---
In fact my work on Bug 5481 has already done all the work to replace the
current calendar widget with the jQueryUI one.

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 6945] Add a link to show a MARC preview in the normal view

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

--- Comment #11 from Nicole C. Engard neng...@gmail.com 2011-11-06 13:06:00 
UTC ---
I have a very good reason.  Professional catalogers (like me) hate the way Koha
shows MARC records.  It's cluttered, shows way more info than I need and makes
my life difficult.  In the OPAC there is a way to see the plain MARC record and
patrons could care less - but in the staff client there isn't an option to see
this which seems just wrong.  

I don't care where the link is moved to, but there must be a link to see the
real MARC record in the staff client from the bib record instead of just the
labeled and slightly differently labeled views.

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


[Koha-bugs] [Bug 7119] Code cleaning improvements omnibus

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

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

   What|Removed |Added

 Depends on||5481

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


[Koha-bugs] [Bug 5481] Replace YUI JS libraries with Jquery UI

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

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

   What|Removed |Added

 Blocks||7119

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


[Koha-bugs] [Bug 5778] Modify DHTMLcalendar function to work with jQueryUI datepicker

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

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

   What|Removed |Added

 Blocks||7119

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


[Koha-bugs] [Bug 7182] remove old-style date picker (calendar)

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

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE

--- Comment #3 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
14:31:18 UTC ---


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

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 5481] Replace YUI JS libraries with Jquery UI

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

--- Comment #7 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
14:31:18 UTC ---
*** Bug 7182 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.
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 7119] Code cleaning improvements omnibus

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

Bug 7119 depends on bug 7182, which changed state.

Bug 7182 Summary: remove old-style date picker (calendar)
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7182

   What|Old Value   |New Value

 Status|NEW |RESOLVED
 Resolution||DUPLICATE

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


[Koha-bugs] [Bug 5778] Modify DHTMLcalendar function to work with jQueryUI datepicker

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

--- Comment #1 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
14:36:20 UTC ---
Owen, on bug 7182, you say:

In fact my work on Bug 5481 has already done all the work to replace the
current calendar widget with the jQueryUI one.

And bug 5481 is related to replace YUI lib by Jquery lib + the 5481 does not
have a needs signoff status of any kind of a patch attached (i've seen the
comment 1 of bug 5481 I have a git branch available with my progress.

Could you give some details ? Is there something ready to test  validate 
push ? where ?

thx

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


[Koha-bugs] [Bug 7184] have mysql returning errors

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

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

   What|Removed |Added

   Patch Status|Passed QA   |Patch Pushed

--- Comment #4 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
14:43:08 UTC ---
patch pushed, please test.

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7185] Update to 3.6 says Koha release 3.4

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

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

   What|Removed |Added

   Attachment #6239|0   |1
is obsolete||

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7185] Update to 3.6 says Koha release 3.4

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

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

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||paul.poul...@biblibre.com
   Patch Status|Passed QA   |Patch Pushed
 Resolution||FIXED

--- Comment #5 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
14:46:36 UTC ---
This patch is tiny, related to a small typo, so:
* i've pushed it onto master (not in a separate branch)
* I mark the bug RESO/FIXED immediatly

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7188] case-insensitive grep of /mysql/ in C4::Context

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

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

   What|Removed |Added

Version|rel_3_8 |rel_3_6

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7185] Update to 3.6 says Koha release 3.4

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

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

   What|Removed |Added

 Status|RESOLVED|REOPENED
Version|master  |rel_3_6
 Resolution|FIXED   |

--- Comment #6 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
14:54:22 UTC ---
QMAint : sorry, I almost forgot you would be interested in applying this patch
as well. Reopening (but don't search for a branch, go git be apply 7185
instead)

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 7184] have mysql returning errors

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

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

   What|Removed |Added

Version|master  |rel_3_8

--- Comment #5 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
14:56:42 UTC ---
QMaint: I think this patch should be kept for 3.8: if it's activated on 3.6,
there may be unexpected errors. I'll propose on koha-devel to have all tester
setting DEBUG to 1, but I think it should not be done for 3.6 yet.

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 6945] Add a link to show a MARC preview in the normal view

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

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

   What|Removed |Added

 CC||oleon...@myacpl.org

--- Comment #14 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
15:39:37 UTC ---
(In reply to comment #13)
 Do
 you mean it shouldn't be mixed in with the info from the bib (like the title,
 author, subjects, etc)? 
yes, exactly.

 If so, I'm okay with that
Perfect

 - there is a MARC tab on the
 left and a labeled MARC tab over there too.  So I'm okay with adding another
 tab for MARC - not sure what to call it, because right now the MARC and the
 Labeled MARC tabs both show Labeled MARC just slightly different .. hopefully
 Maxime has some ideas.
Another option would be to put it in a button on the right of Print and
Place hold. I'm not sure which is the best option: it would be more logical
to have it on the left, where we already have Normal MARC, labelled MARC,
ISBD and Items. But that would add a 6th view, and put Hold and
Subscriptions (if applicable) very low.

Adding Owen to this discussion, Owen, if you have a suggestion, it will be
welcomed !
A small idea : remove the Holds tab, that points exactly to the same location
that Place hold on the top-right. I remember some libraries being a little
bit confused to have exactly the same thing in 2 places. Maybe it's time to
remove the tab, and use the place for the marc preview !

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


[Koha-bugs] [Bug 6390] Basket only visible for librarian who created it

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

--- Comment #40 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
16:02:39 UTC ---
Just FYI: there is an updatedatabase in this patch. We've proposed a new method
to handle database update
(http://lists.koha-community.org/pipermail/koha-devel/2011-November/036402.html),
and there is no 3.7 updates yet. So I will wait until the new system to
updatedatabase to apply this fix (and the patch won't apply anymore, but i'll
take care of that)

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


[Koha-bugs] [Bug 6390] Basket only visible for librarian who created it

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

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

   What|Removed |Added

   Patch Status|Passed QA   |Patch Pushed

--- Comment #42 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
17:00:24 UTC ---
patch Bug 6390 Followup: Basket's authorisedby might not be a borrowernumber 
applied and pushed on branch new/bug_6390, and then merged onto master.

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.
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 6679] Fixing code so it passes basic Perl::Critic tests

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

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

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||paul.poul...@biblibre.com
 AssignedTo|gmcha...@gmail.com  |ch...@bigballofwax.co.nz

--- Comment #23 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
17:04:15 UTC ---
The 2nd patch does not work well I think (it also does not apply, but it's
easily fixed)

in showmarc.pl, before your patch, my biblio with diacritic look like :
200 1  _aMassacre (The) éô ï
(éô ï is what i'm expecting)
After the patch, it looks like :
200 1  _aMassacre (The) éô ï
which is the sign of a double encoded biblio record.

Marking failed QA for now. The 3rd patch, that updates perlcritic.tt does not
apply after that (i've not tested further, I suspect they will conflict because
catalogue has not been added

Once the showmarc issue is solved, i'll test  push those usefull code cleaning
patches as fast as possible

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

[Koha-bugs] [Bug 7152] Koha should make it easy for librarians to attach covers using Open Library

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

--- Comment #9 from Anand an...@archive.org 2011-11-06 17:17:32 UTC ---
Robin, the ils_search API currently works only with the exact matches. Here is
an example that works. 

$ curl -H 'content-type: application/json' -d
'{authors:[test],publish_date:null,title:Test1,publisher:null,isbn:[978-1-935928-32-4]}'
http://openlibrary.org/api/ils_search
{status: found, cover: {small:
http://covers.openlibrary.org/b/id/6685633-S.jpg;, large:
http://covers.openlibrary.org/b/id/6685633-L.jpg;, medium:
http://covers.openlibrary.org/b/id/6685633-M.jpg}, olid: OL24605334M,
key: /books/OL24605334M}

I'll work on improving it in next couple of days.

And I forgot to deploy the upload API to production. Sorry about it. It is
working now.

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 6679] Fixing code so it passes basic Perl::Critic tests

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

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

   What|Removed |Added

   Attachment #6144|0   |1
is obsolete||

--- Comment #24 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
17:20:22 UTC ---
Comment on attachment 6144
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=6144
Bug 6679 : Tidying changed parts of file

this patch has been pushed

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


[Koha-bugs] [Bug 6679] Fixing code so it passes basic Perl::Critic tests

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

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

   What|Removed |Added

   Attachment #6143|0   |1
is obsolete||

--- Comment #25 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
17:20:38 UTC ---
Comment on attachment 6143
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=6143
Bug 6679 : Don't declare variables in conditionals

this patch has been pushed

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


[Koha-bugs] [Bug 6679] Fixing code so it passes basic Perl::Critic tests

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

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

   What|Removed |Added

   Attachment #6142|0   |1
is obsolete||

--- Comment #26 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
17:20:59 UTC ---
Comment on attachment 6142
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=6142
Bug 6679 : Not using strict .. bad script, no cookie for you!

this patch has been pushed

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


[Koha-bugs] [Bug 6679] Fixing code so it passes basic Perl::Critic tests

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

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

   What|Removed |Added

   Attachment #6140|0   |1
is obsolete||

--- Comment #28 from Paul Poulain paul.poul...@biblibre.com 2011-11-06 
17:21:32 UTC ---
Comment on attachment 6140
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=6140
Bug 6679 : Declare variables outside of conditionals

This patch has been pushed

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


[Koha-bugs] [Bug 6504] no way to enter shipping price in acq

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

Srdjan Jankovic srd...@catalyst.net.nz changed:

   What|Removed |Added

   Patch Status|Failed QA   |Needs Signoff

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA Contact for the bug.
You are watching all bug changes.
___
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 7152] Koha should make it easy for librarians to attach covers using Open Library

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

--- Comment #10 from Anand an...@archive.org 2011-11-07 05:45:46 UTC ---
Small correction to the ils_search API. It accepts isbn not isbns.

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 5945] can't search patron's email anymore

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

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

   What|Removed |Added

   Patch Status|Signed Off  |Passed QA

--- Comment #8 from M. de Rooy m.de.r...@rijksmuseum.nl 2011-11-07 07:47:29 
UTC ---
Small patch; passing QA.

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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 5945] can't search patron's email anymore

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

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

   What|Removed |Added

   Attachment #6195|0   |1
is obsolete||

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- 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/