[Koha-bugs] [Bug 14641] Warns in subscription-add.pl

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14641

Joonas Kylmälä j.kylm...@gmail.com changed:

   What|Removed |Added

 CC||j.kylm...@gmail.com

--- Comment #2 from Joonas Kylmälä j.kylm...@gmail.com ---
The warning is triggered when get_letter_loop() is called without an argument.
We should maybe check if @_ is true, and if it's not then use $_ or  as the
value?

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

[Koha-bugs] [Bug 14585] Fixing up the online help on main page

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14585

Joonas Kylmälä j.kylm...@gmail.com changed:

   What|Removed |Added

  Attachment #41115|0   |1
is obsolete||

--- Comment #3 from Joonas Kylmälä j.kylm...@gmail.com ---
Created attachment 41468
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41468action=edit
Bug 14585: Fixing up online help on main page

Fixes look good to me.

Signed-off-by: Joonas Kylmälä j.kylm...@gmail.com

-- 
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 14620] Contact information validations

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14620

Joonas Kylmälä j.kylm...@gmail.com changed:

   What|Removed |Added

 CC||j.kylm...@gmail.com

--- Comment #3 from Joonas Kylmälä j.kylm...@gmail.com ---
Phone number validation still accepts trailing (and I think also leading)
whitespaces. Didn't figure out any fix to this yet, so if anyone has ideas of
how to fix this, they're welcome!

-- 
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 9011] Add the ability to store the last patron to return an item

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9011

--- Comment #136 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
(In reply to Nick Clemens from comment #130)
 My consortium sponsored this development, and it has taken some time to
 progress it this far forward. If MySQL performance is the only blocker right
 now I would really like to see a solution that addresses that and unsticks
 the bug rather than requiring a rewrite of the feature.
 
 I played around with the query and the below, while still containing a NOT
 IN, eliminates the GROUP BY and improves speed significantly:
 if ( C4::Context-preference('StoreLastBorrower') ) {
 # Do not delete the newest old_issue for any itemnumber
 $query .=  AND issue_id NOT IN ( SELECT issue_id FROM (Select
 oi.issue_id from old_issues oi LEFT OUTER JOIN old_issues oi2 ON
 oi.itemnumber=oi2.itemnumber AND oi2.issue_idoi.issue_id WHERE
 oi.borrowernumber= ? AND oi2.borrowernumber IS NULL) AS oi ) ;
 push @bind_params, $borrowernumber;

I haven't tested if this works, but I am hopeful it does and improves speed. 

 Another option is to just use the query labeleed as 'oi' above in a separate
 update.  It effectively finds all the 'last returned' info for a borrower
 and would allow you to mark those somehow (say invert borrower number to
 negative of borrowernumber) then perform the regular anonymizing, and then
 update any rows with a negative borrowrnumber to a positive borrowernumber
 (or whatever marker was used)

This seems a bit hacky... but doesn't mean it couldn't work.

 If the above queries don't work, a new table could work, though I do wonder
 about the redundancy.  I wonder if it would be possible to use the 'return'
 column in old_issues to mark 'lastreturned' or something similar to allow
 for easy SQL selection.

Hm not sure how the return could be used - can you explain?

Kyle, could you take a look at these options?

-- 
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 14620] Contact information validations

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14620

--- Comment #5 from Lari Taskula la...@student.uef.fi ---
Created attachment 41470
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41470action=edit
Bug 14620 - Whitespace fix for validations

This fix trims emails and phone numbers just before form is sent.

-- 
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 14620] Contact information validations

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14620

Lari Taskula la...@student.uef.fi changed:

   What|Removed |Added

  Attachment #41470|0   |1
is obsolete||

--- Comment #6 from Lari Taskula la...@student.uef.fi ---
Created attachment 41471
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41471action=edit
Bug 14620 - Whitespace fix for validations

This fix trims emails and phone numbers just before form is sent.

-- 
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 14620] Contact information validations

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14620

Lari Taskula la...@student.uef.fi changed:

   What|Removed |Added

  Attachment #41469|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 14620] Contact information validations

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14620

Joonas Kylmälä j.kylm...@gmail.com changed:

   What|Removed |Added

  Attachment #41471|0   |1
is obsolete||

--- Comment #7 from Joonas Kylmälä j.kylm...@gmail.com ---
Created attachment 41472
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41472action=edit
Bug 14620 - Whitespace fix for validations

This fix trims emails and phone numbers just before form is sent.

Fixes the invalid syntax used in JQuery's .on() functions' argument.

-- 
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 14667] Label creator UI/UX revamp

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14667

--- Comment #6 from Chris Nighswonger cnighswon...@foundations.edu ---
(In reply to Liz Rea from comment #4)
 Hi Chris,
 
 That is a good point, I'll put it on my list of pet projects, because yeah,
 that part needs updating too. There are lots of places that need love. :)

And don't forget manual re-writes to match the new interface... ;-)

 
 I wonder, could you help out with one thing though - the table headers are
 untranslatable at the moment, if you have some time could you have a look at
 that, or give me some hints as to how that could be done in a translatable
 way?

I implemented DT in both of these sections before (IIRC) it was implemented in
Koha generally. I'm not sure what mechanism is currently used, but probably the
code would need to be refactored to match what's presently being done other
places. I'm pretty much unfamiliar with how that is, so I'll not be much help
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 11229] Payments wrongly saved in Statistics table by C4::Accounts::makepartialpayment and makepayment

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11229

--- Comment #7 from Tomás Cohen Arazi tomasco...@gmail.com ---
Created attachment 41473
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41473action=edit
Bug 11229: (regression tests) makepayment and makepartialpayment should log
correctly

This patch introduces tests for makepayment and makepartialpayment to check
they are correctly logging to the statistics table.

To test:
- Run
  $ prove t/db_dependent/Accounts.t
= FAIL: tests fail because statistics are not correctly logged.

Signed-off-by: Tomas Cohen Arazi tomasco...@unc.edu.ar

-- 
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 11229] Payments wrongly saved in Statistics table by C4::Accounts::makepartialpayment and makepayment

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11229

Tomás Cohen Arazi tomasco...@gmail.com changed:

   What|Removed |Added

  Attachment #39971|0   |1
is obsolete||

--- Comment #8 from Tomás Cohen Arazi tomasco...@gmail.com ---
Created attachment 41474
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41474action=edit
Bug 11229: makepayment doesn't log branch in statistics correctly

This patch fixes makepayment() so it correctly logs the branch code
to the statistics table.

To test:
- Run (with the regression tests applied)
  $ prove t/db_dependent/Accounts.t
= FAIL: makepayment() tests fail because logging is wrong
- Apply the patch
- Run
  $ prove t/db_dependent/Accounts.t
= SUCCESS: tests for makepayment now pass
(Note: makepartialpayment tests still fail as they need the next patch)

Original commit message relying on the UI to test:

There are several ways of paying fines, not all of them
recorded the branch the payment was made at correctly:

1) Pay button next to an individual fine
2) Checkbox + pay amount
3) Checkbox + pay selected

For each of those, check if the payment registered in
the table statistics contains the branchcode before
and after the patch.

The patch should fix 1).
2) and 3) are ok with and without the patch.

Important: Don't change the amount, pay individual fines.

Signed-off-by: Tomas Cohen Arazi tomasco...@unc.edu.ar
Note: i fixed the commit message, because this is a fix for makepayment

-- 
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 11229] Payments wrongly saved in Statistics table by C4::Accounts::makepartialpayment and makepayment

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11229

--- Comment #9 from Tomás Cohen Arazi tomasco...@gmail.com ---
Created attachment 41475
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41475action=edit
Bug 11229: (followup) makepartialpayment fix

makepartialpayment() wasn't logging the branch either. This patch
fixes that too.

To test:
- Run (with the regression tests applied)
  $ prove t/db_dependent/Accounts.t
= FAIL: tests fail because makepartialpayment is not logging the branch code
- Apply the patch
- Run
  $ prove t/db_dependent/Accounts.t
= SUCCESS: tests pass
- Sign off :-D

Signed-off-by: Tomas Cohen Arazi tomasco...@unc.edu.ar

-- 
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 11229] makepayment and makepartialpayment (C4::Accounts) don't log branch to statistics table

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11229

Tomás Cohen Arazi tomasco...@gmail.com changed:

   What|Removed |Added

 CC||tomasco...@gmail.com
Summary|Payments wrongly saved in   |makepayment and
   |Statistics table by |makepartialpayment
   |C4::Accounts::makepartialpa |(C4::Accounts) don't log
   |yment and makepayment   |branch to statistics table
 Status|In Discussion   |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 13791] Plack - Out of the box support on packages

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13791

--- Comment #3 from Tomás Cohen Arazi tomasco...@gmail.com ---
Created attachment 41483
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41483action=edit
Bug 13791: koha-plack documentation

-- 
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 13791] Plack - Out of the box support on packages

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13791

--- Comment #4 from Tomás Cohen Arazi tomasco...@gmail.com ---
Created attachment 41484
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41484action=edit
Bug 13791: make koha-list aware of plack

This patch adds the --plack and --noplack option switches to koha-list
for filtering instances to be listed.

This is particularly important for init scripts and cronjobs.

To test:
- Play with koha-list --plack and koha-plack --enable/--disable and verify that
koha-list returns the expected results.

-- 
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 13791] Plack - Out of the box support on packages

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13791

--- Comment #5 from Tomás Cohen Arazi tomasco...@gmail.com ---
Created attachment 41485
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41485action=edit
Bug 13791: make koha-common init script aware of plack

This patch makes the packages' koha-common script aware of plack.
It does so by relying on koha-list --plack to know which instances
have Plack configured, and uses the koha-plack script to manage
the running daemons.

-- 
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 14677] New: Inventory: Compare Barcodes List to Result function

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14677

Bug ID: 14677
   Summary: Inventory: Compare Barcodes List to Result function
 Change sponsored?: ---
   Product: Koha
   Version: 3.20
  Hardware: PC
OS: Windows
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Tools
  Assignee: gmcha...@gmail.com
  Reporter: kleinpas...@xenos.org
QA Contact: testo...@bugs.koha-community.org

I am trying to use the Compare Barcodes List to Result function in Koha 3.20.
 From my understanding, this should compare the list of barcodes that I scan
from the shelf to the shelf list of what should be there and will let me know
of any misshelved books.  However, when I check the box for this function, it
creates the following error message:

Software error:

Can't locate object method ymd via package dateformat (perhaps you forgot
to load dateformat?) at /usr/share/koha/lib/Koha/DateUtils.pm line 206,
fh1barcode test 2.txt line 91.
For help, please send mail to the webmaster ([no address given]), giving this
error message and the time and date of the error.

Here is what I am doing:
Log into the staff client.
Click Tools
Click Inventory/stocktaking
Choose a file to upload (I'm using a .txt file with  90 real book barcodes in
order, skipping one book on the shelf, having one book out of order, and
scanning one ISBN instead of our barcode to make sure it catches all issues)
Set inventory date to: current date
Select Home Library
For Library, choose Main Campus (Our branch)
Do not select a shelving location
For Item callnumber between ...and enter 300 and 400 (Dewey decimal segment
that I pulled these barcodes out of so it isn't searching the entire catalog)
Do not select any Item statuses
Inventory date: current date
Select skip items on loan export to csv file and compare barcodes list to
results
Click Submit

We have found through experimenting that the only options that impact this
error message are the ones under items.notforloan.  If you have one of these
selected, it creates the report, but nothing is different about it than if you
don't have compare barcodes selected.

-- 
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 11559] Professional cataloger's interface

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11559

--- Comment #118 from Jesse Weaver jwea...@bywatersolutions.com ---
Created attachment 41476
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41476action=edit
Bug 11559: (followup) Fix error when all servers are deselected

-- 
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 12772] Overdue Notice/Status triggers tool

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12772

--- Comment #5 from Maxime Beaulieu maxime.beaul...@inlibro.com ---
Created attachment 41480
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41480action=edit
Bug 12772 - Renames atomic update file, .pl - .perl

renamed:update_13624_overduerules_transport_type.pl -
update_13624_overduerules_transport_type.perl

-- 
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 12772] Overdue Notice/Status triggers tool

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12772

--- Comment #4 from Maxime Beaulieu maxime.beaul...@inlibro.com ---
Created attachment 41479
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41479action=edit
Bug 12772 - Reworked overdue_notices.pl script

modified:   misc/cronjobs/overdue_notices.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 12772] Overdue Notice/Status triggers tool

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12772

--- Comment #3 from Maxime Beaulieu maxime.beaul...@inlibro.com ---
Created attachment 41478
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41478action=edit
Bug 12772 - Overdue rules tool and backend library

modified:   C4/Overdues.pm
modified:  
koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt
modified:   tools/overduerules.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 12772] Overdue Notice/Status triggers tool

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12772

--- Comment #2 from Maxime Beaulieu maxime.beaul...@inlibro.com ---
Created attachment 41477
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41477action=edit
Bug 12772 - Update Database (Based on Bug13624)

This patch applies to Bug13624.

Removes letter number from overduerules and overdurules_transport_types

modified:  
installer/data/mysql/atomicupdate/update_13624_overduerules_transport_type.pl
modified:   installer/data/mysql/kohastructure.sql

-- 
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 13791] Plack - Out of the box support on packages

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13791

--- Comment #1 from Tomás Cohen Arazi tomasco...@gmail.com ---
Created attachment 41481
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41481action=edit
Bug 13791: Plack out-of-the-box support on packages

This patch introduces a koha-plack script that controls running Plack
processes for each instance. They are run using 'starman', listening
on a Unix Domain Socket (UDS):

  /var/run/koha/instancename/plack.sock

The plack configuration file[1] is expected to be on:

  /etc/koha/plack.psgi

It also adds the following helper functions to koha-functions.sh:

 - is_plack_enabled
 - is_plack_running

Done:
- koha-plack script
- suitable psgi file

TODO (by priority):
- changes to koha-create
- configurable workers/max-reqs (per instance?)
- allow per instance psgi file (debugging?) and fallback to shipped
- tab completion in bash

[1] Yeah, a single file. Because we will be relying on multiple mount
points for each app (i.e. 'opac' and 'intranet', and 'api' ;-) )

-- 
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 13791] Plack - Out of the box support on packages

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13791

--- Comment #2 from Tomás Cohen Arazi tomasco...@gmail.com ---
Created attachment 41482
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41482action=edit
Bug 13791: Apache configuration files

This patch adds an include to each VirtualHost definition (OPAC and Intranet)
and a variable definition, taking advantage of Apache 2.4.x features.

The instance name is reused inside the includes providing a simple way of
dealing with the apache - plack configuration.

-- 
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 12772] Overdue Notice/Status triggers tool

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12772

Maxime Beaulieu maxime.beaul...@inlibro.com changed:

   What|Removed |Added

 Depends on||13624
 Status|ASSIGNED|Needs Signoff

--- Comment #6 from Maxime Beaulieu maxime.beaul...@inlibro.com ---
Test plan

Apply patches (Bugs 13624 and 12772)
Run updatedatabase.pl
Add rules in Tools  Overdue notice/status triggers
Change checked out items due date to match the rules defined above
Run the overdue_notices.pl script (in /misc/cronjobs)
You should receive emails corresponding to your overdue rules


Referenced Bugs:

http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13624
[Bug 13624] Remove columns branchcode, categorytype from table
overduerules_transport_types
-- 
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 13791] Plack - Out of the box support on packages

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13791

Tomás Cohen Arazi tomasco...@gmail.com 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 13791] Plack - Out of the box support on packages

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13791

Tomás Cohen Arazi tomasco...@gmail.com changed:

   What|Removed |Added

   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 13791] Plack - Out of the box support on packages

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13791

Tomás Cohen Arazi tomasco...@gmail.com changed:

   What|Removed |Added

  Attachment #41484|0   |1
is obsolete||

--- Comment #6 from Tomás Cohen Arazi tomasco...@gmail.com ---
Created attachment 41486
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41486action=edit
Bug 13791: make koha-list aware of plack

This patch adds the --plack and --noplack option switches to koha-list
for filtering instances to be listed.

This is particularly important for init scripts and cronjobs.

To test:
- Play with koha-list --plack and koha-plack --enable/--disable and verify that
koha-list returns the expected results.

-- 
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 13624] Remove columns branchcode, categorytype from table overduerules_transport_types

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13624

Maxime Beaulieu maxime.beaul...@inlibro.com changed:

   What|Removed |Added

 Blocks||12772


Referenced Bugs:

http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12772
[Bug 12772] Overdue Notice/Status triggers tool
-- 
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 7957] Routing lists: manage several routing list for each subscription, and export them as CSV

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7957

Marjorie Barry-Vila marjorie.barry-v...@ccsr.qc.ca changed:

   What|Removed |Added

 CC||marjorie.barry-v...@ccsr.qc
   ||.ca

-- 
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 14655] Cannot checkin without Anonymous Patron

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14655

--- Comment #9 from Jesse Weaver jwea...@bywatersolutions.com ---
(In reply to Jonathan Druart from comment #7)
 (In reply to Jesse Weaver from comment #4)
  The issue here is that there can be a large number of patrons with a privacy
  of 2 (Never) even if all of the following are true:
  
* OPACPrivacy is off
* All patron categories have a default privacy of Forever or Default
  
  This can occur for three major reasons:
  
* The patrons had their privacy settings changed when OPACPrivacy was
  previously enabled, but it has since been disabled
 
 Restricting the privacy of the users is really not kind. Especially if they
 had chosen to protect their data previously.
 I'd say it's like breaking a contract :)
 
* The patrons were imported with a privacy of 2
 
 They should not have been imported with privacy=2 if OPACPrivacy is off.
 
* A patron category had a default privacy setting of Never at the time the
  patron was created (if the category's default privacy setting is later
  changed, it does not affect the privacy of previously created patrons)
 
 Same as before, there is an inconsistency in the configuration ('Never' with
 OPACPrivacy off).
 
  This isn't an edge case; we have a large number of libraries whose checkins
  were silently failing after a bugfix upgrade due to one of the three
  scenarios above.
 
 You should have got a big warnings during the updatedatabase process, don't
 you got it?
 
 (In reply to Katrin Fischer from comment #5)
  Hm, so it looks like the main problme is a mismatch of the template logic to
  display the warning with the logic in the module? (privacy setting of the
  borrower vs. system preferences?)
 
 The checks look good to me.
 
 We could apply the following changes:
 
 diff --git a/C4/Circulation.pm b/C4/Circulation.pm
 index 7813e33..2e06ff2 100644
 --- a/C4/Circulation.pm
 +++ b/C4/Circulation.pm
 @@ -2077,7 +2077,7 @@ sub MarkIssueReturned {
  my ( $borrowernumber, $itemnumber, $dropbox_branch, $returndate,
 $privacy ) = @_;
  
  my $anonymouspatron;
 -if ( $privacy == 2 ) {
 +if ( $privacy == 2 and C4::Context-preference('OPACPrivacy') ) {
 
 But I still think the privacy should be respected and the data updated if
 inconsistencies exist.

Oh, indeed. Would it be possible to show the warning if anonymouspatron is not
set and a patron exists with privacy == 2? It's not necessarily a huge issue
with how the backend works, the issue is when the checkin explodes with no
indication as to why.

Doing this with SELECT borrowernumber FROM borrowers WHERE privacy = 2 LIMIT
1 ran in 0.02s on one of our largest sites (~125K borrowers), so it is
practical.

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


[Koha-bugs] [Bug 10662] Build OAI-PMH Harvesting Client

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10662

Laura ljohn...@roseville.ca.us changed:

   What|Removed |Added

 CC||ljohn...@roseville.ca.us

-- 
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 12772] Overdue Notice/Status triggers tool

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12772

--- Comment #8 from Francois Charbonnier francois.charbonn...@inlibro.com ---
The first link is wrong. The changings in the script is here :
http://wiki.koha-community.org/wiki/Overdue_Notice_Enhancement#Changings_in_the_overdue_notices.pl_script

-- 
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 14498] uri_escape error triggered by duplicate accountno's for patron

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14498

--- Comment #5 from Kyle M Hall kyle.m.h...@gmail.com ---
(In reply to Jonathan Druart from comment #4)
  2) Edit the accountno's for those fines and set them to 0
 
 I suppose you mean by editing the row in DB using the sql CLI?

That is correct

 Do you have an idea how it's possible to generate 2 rows with the same
 accountno for the same patron?

I this point I do not know how the situation is occurring.

-- 
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 14498] uri_escape error triggered by duplicate accountno's for patron

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14498

Joy Nelson j...@bywatersolutions.com changed:

   What|Removed |Added

 CC||j...@bywatersolutions.com

--- Comment #6 from Joy Nelson j...@bywatersolutions.com ---
I suspect this may be a data migration issue where the lines in the
accountlines are not added with a tool that sequences them.  I cannot think of
a way where Koha would create this natively.

-- 
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 12772] Overdue Notice/Status triggers tool

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12772

--- Comment #7 from Francois Charbonnier francois.charbonn...@inlibro.com ---
Since we had to rewrite part of the overdue_notices.pl script, I put together
all the information you'll need to understand what changes with this new script
here :
http://wiki.koha-community.org/wiki/Overdue_Notice_Enhancement#Complete_Overdue_notices.pl_test_plan

Also, I put all the test cases I used here :
http://wiki.koha-community.org/wiki/Overdue_Notice_Enhancement#Complete_Overdue_notices.pl_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 14678] Update Koha language codes to ISO 639-2 spec

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14678

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

   What|Removed |Added

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

-- 
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 14678] Update Koha language codes to ISO 639-2 spec

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14678

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

   What|Removed |Added

 CC||i...@calyx.net.au

-- 
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 14030] Add Georgian language and fix Kannada language code

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14030

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

   What|Removed |Added

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

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


[Koha-bugs] [Bug 12064] labels that don't use the splitter print zeros

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12064

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

   What|Removed |Added

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

--- Comment #7 from Liz Rea l...@catalyst.net.nz ---
I saw something like this, if you looked in the log it would say 

label-create-pdf.pl: Increasing $Text::Wrap::columns from 0 to 2 at
/usr/share/koha/lib/C4/Labels/Label.pm line 442,

Decreasing the left text margin to 0 seemed to fix 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 12064] labels that don't use the splitter print zeros

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12064

--- Comment #8 from Liz Rea l...@catalyst.net.nz ---
(this was in 3.20.2, btw.)

-- 
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 14579] 'You are not logged in' should link to log in page

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14579

cnorthcott.w...@gmail.com changed:

   What|Removed |Added

 CC||cnorthcott.w...@gmail.com
 Status|Needs Signoff   |Signed Off

--- Comment #2 from cnorthcott.w...@gmail.com ---
Patch applies, link now works but alignment of Log In text and Help text are
mismatched.

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


[Koha-bugs] [Bug 14580] Warn when accessing Help from error pages

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14580

cnorthcott.w...@gmail.com changed:

   What|Removed |Added

 CC||cnorthcott.w...@gmail.com
 Status|Needs Signoff   |Signed Off

--- Comment #2 from cnorthcott.w...@gmail.com ---
Patch applies correctly, warn silenced as expected. Signed off.

-- 
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 12064] labels that don't use the splitter print zeros

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12064

--- Comment #9 from Liz Rea l...@catalyst.net.nz ---
label-create-pdf.pl: Use of uninitialized value $string_width in addition (+)
at /usr/share/koha/lib/C4/Labels/Label.pm line 466. 

this one also possibly helpful.

-- 
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 14631] Change to Patron in patroncard toolbar

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14631

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

   What|Removed |Added

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

--- Comment #4 from Liz Rea l...@catalyst.net.nz ---
I noticed this while working on bug 14676, and was going to tidy it up as part
of that. I'll use your stuff if you beat me to it though. :)

-- 
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 10468] patron print summary should show more

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10468

--- Comment #1 from Aleisha Amohia aleishaamo...@hotmail.com ---
In version 3.21 of Koha, print summary shows checkouts and outstanding fines
but not holds, so will work out how to put this in.

-- 
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 10468] patron print summary should show more

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10468

Aleisha Amohia aleishaamo...@hotmail.com changed:

   What|Removed |Added

   Assignee|koha-b...@lists.koha-commun |aleishaamo...@hotmail.com
   |ity.org |
 CC||aleishaamo...@hotmail.com

-- 
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 14678] New: Update Koha language codes to ISO 639-2 spec

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14678

Bug ID: 14678
   Summary: Update Koha language codes to ISO 639-2 spec
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: P5 - low
 Component: I18N/L10N
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: m...@kohaaloha.com
QA Contact: testo...@bugs.koha-community.org
CC: frede...@tamil.fr

http://www.loc.gov/standards/iso639-2/php/code_list.php

more info to come...

-- 
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 14639] Extend Koha::MetadataRecord to handle serialization format

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14639

Tomás Cohen Arazi tomasco...@gmail.com changed:

   What|Removed |Added

 CC||dc...@prosentient.com.au

-- 
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 14484] Warns when changing patron password

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14484

Aleisha Amohia aleishaamo...@hotmail.com changed:

   What|Removed |Added

  Attachment #41454|0   |1
is obsolete||

--- Comment #7 from Aleisha Amohia aleishaamo...@hotmail.com ---
Created attachment 41487
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41487action=edit
Bug 14484: warns when changing patron pw

To test:
1) Go to any patron's page, click Change password
2) Notice warns in error log
3) Apply patch, reload page
4) Click Change password
5) Notice warns are gone and page still works correctly

-- 
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 14484] Warns when changing patron password

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14484

Aleisha Amohia aleishaamo...@hotmail.com changed:

   What|Removed |Added

 Status|Patch doesn't apply |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 12804] Patron card creator search should have a branch dropdown option

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12804

Aleisha Amohia aleishaamo...@hotmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||aleishaamo...@hotmail.com
 Resolution|--- |FIXED

--- Comment #1 from Aleisha Amohia aleishaamo...@hotmail.com ---
This drop-down is in Koha version 3.21.00.018. Setting to 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 14679] New: die with bad template path on item search because template file name has a period which is not a safe character

2015-08-13 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14679

Bug ID: 14679
   Summary: die with bad template path on item search because
template file name has a period which is not a safe
character
 Change sponsored?: ---
   Product: Koha
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: minor
  Priority: P5 - low
 Component: Searching
  Assignee: gmcha...@gmail.com
  Reporter: a...@bom.gov.au
QA Contact: testo...@bugs.koha-community.org

Summary:

When performing an item search in the intranet interface, KOHA dies with bad
template path at /usr/share/koha/lib/C4/Auth.pm line 161. This is because
get_template_and_user is called with a template_name of
catalogue/itemsearch.csv.tt, and $safe_chars does not have the ASCII period
character.

Steps to reproduce:

1. Login to intranet interface
2. Click on Search on top bar
3. Click on Goto Item Search
4. Perform any item search to CSV

Expected results:

Search works and returns search results.

Actual results:

KOHA dies with the message in the summary.

Suggested fix:

Expand the $safe_chars regex on lib/C4/Auth.pm line 160 to include ASCII period
('.') as a valid character.

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