[Koha-bugs] [Bug 12528] Enable staff to deny message setting access to patrons on the OPAC

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12528

--- Comment #35 from Frédéric Demians  ---
(In reply to Francois Charbonnier from comment #32)

> So please, lets not abandoned this patch in the small enhancement patches
> limbo of bugzilla because we want to move two steps at a time. Let's do it
> step by step! 

I agree. You have to strike while the iron is hot. I'd be pleased to
re-sign-off this patch as soon as issue rightly raised by Jonathan will be
addressed.

-- 
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 15303] Letsencrypt option for Debian package installations

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15303

--- Comment #9 from Mirko Tietgen  ---

>  --letsencrypt /home/mirko/letsencrypt

Use your own /path/to/letsencryptfolder instead ;)

-- 
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 15303] Letsencrypt option for Debian package installations

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15303

Mirko Tietgen  changed:

   What|Removed |Added

  Attachment #45408|0   |1
is obsolete||

--- Comment #8 from Mirko Tietgen  ---
Created attachment 45409
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45409=edit
Bug 15303 Letsencrypt option for Debian package installations

Apache file for https only setups with automatic certificate
generation via letsencrypt. We need a workiung web server for
the letsencrypt magic, but we can't start on 443 without certs.
So we start on 80, get the certs, switch to 443 and restart
apache. 80 gets forwarded to https.

New option koha-create --force-https
- generates letsencrypt certificates
- sets up a https-only website
- redirects 80 to https (not yet)

Test plan:
- build a debian package with patch applied
- checkout letsencrypt on the machine where you are testing the package
  git clone https://github.com/letsencrypt/letsencrypt
- use apache mod_ssl
  sudo a2enmod ssl
- make sure the machine is accessible on 80 (needed for letsencrypt) and 443
from the internet
- install koha with your new package
- use koha-create with the new options:
  sudo koha-create --create-db --force-https --letsencrypt
/home/mirko/letsencrypt 
- wait until setup is finished, check that you got a working OPAC and staff
client with certificates
  make sure to use https:// to open both sites

Todo
- use letsencrypt default path in debian when we know where that is
- enable redirect from port 80 to https in apache config

-- 
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 15303] Letsencrypt option for Debian package installations

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15303

Mirko Tietgen  changed:

   What|Removed |Added

 Status|NEW |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 15252] Patron search on start with does not work with several terms

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15252

Alex  changed:

   What|Removed |Added

  Attachment #45303|0   |1
is obsolete||

--- Comment #21 from Alex  ---
Created attachment 45407
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45407=edit
Bug 15252 - UT

Signed-off-by: Alex 

0004-Bug-15252-UT.patch

Signed-off-by: Alex 

0004-Bug-15252-UT.patch

Signed-off-by: Alex 

0004-Bug-15252-UT.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 15303] Letsencrypt option for Debian package installations

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15303

Mirko Tietgen  changed:

   What|Removed |Added

  Attachment #45404|0   |1
is obsolete||

--- Comment #7 from Mirko Tietgen  ---
Created attachment 45408
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45408=edit
Bug 15303 Letsencrypt option for Debian package installations

Apache file for https only setups with automatic certificate
generation via letsencrypt. We need a workiung web server for
the letsencrypt magic, but we can't start on 443 without certs.
So we start on 80, get the certs, switch to 443 and restart
apache. 80 gets forwarded to https.

New option koha-create --force-https
- generates letsencrypt certificates
- sets up a https-only website
- redirects 80 to https (not yet)

Test plan:
- build a debian package with all patches for bug 15303 applied
- checkout letsencrypt on the vm where you are testing the package
  git clone https://github.com/letsencrypt/letsencrypt
- install koha with your new package
- use koha-create with the new options:
  sudo koha-create --create-db --force-https --letsencrypt
/home/mirko/letsencrypt 
- wait until setup is finished, check that you got a working OPAC and staff
client with certificates

Todo
- use letsencrypt default path in debian when we know where that is
- enable redirect from port 80 to https in apache config

-- 
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 15305] New: KOHA SIP2 checkout doesn't update of the item holding status

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15305

Bug ID: 15305
   Summary: KOHA SIP2 checkout doesn't update of the item holding
status
 Change sponsored?: ---
   Product: Koha
   Version: 3.20
  Hardware: PC
OS: Linux
Status: NEW
  Severity: normal
  Priority: P5 - low
 Component: SIP2
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: fridayj...@gmail.com
QA Contact: testo...@bugs.koha-community.org
CC: colin.campb...@ptfs-europe.com

Created attachment 45410
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45410=edit
KOHA_SIP2_Checkout

I am using KOHA version 3.20 and I am able to check out the item, but the item
status is always showing Available. 

1) This is my checkout message:
11NN2015120208062920151227030629AOmylib|AAthida|ABB1246857|AC|

2) This is my institution policy in SIPconfig.xml.




3) The first item is checked out by using SIP2 in the following screenshot.

-- 
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-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10662

--- Comment #53 from Magnus Enger  ---
> What's Stockholm UL? 

Probably Stockholm University Library.

-- 
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 15289] New: "borrowers" permission doesn't allow to see current loans

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15289

Bug ID: 15289
   Summary: "borrowers" permission doesn't allow to see current
loans
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: major
  Priority: P5 - low
 Component: Patrons
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: k...@univ-lyon3.fr
QA Contact: testo...@bugs.koha-community.org
CC: gmcha...@gmail.com, kyle.m.h...@gmail.com

Permission "borrowers" gives an access to the Details page of a patron. 
But, in our previous version, we can see the list of the document checkout in
this page.
Now, we just have the information 'loading' in the checkout tables, but we
can't see documents on loan. 

We should have an access to list of the loan, even without the "circulate"
permission, to be able to inform patrons about the books they have, tell them
the due date...

-- 
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 14971] RIS only outputs the first 10 characters for either ISBN10 or ISBN13

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14971

--- Comment #5 from Bernardo Gonzalez Kriegel  ---
Created attachment 45351
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45351=edit
Bug 14971: fix RIS export

This patch removes a limit in RIS.pm print_isbn sub.

To test:
1) Find in opac a book with an isbn with length(isbn) > 10
(with dashes or isbn13)
2) Export record to RIS format, check truncated SN field
in exported file
3) Apply the patch
4) Export again, no more truncation

-- 
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 10412] The ability to update Acquisitions with credit notes, with the option to link to an existing invoice

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10412

--- Comment #13 from Koha Team Lyon 3  ---
Hi,
we are really interested in this bug and ready to test it as soon as a new
patch is send.
Thanks,
Sonia

-- 
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 10412] The ability to update Acquisitions with credit notes, with the option to link to an existing invoice

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10412

--- Comment #14 from Amit Gupta  ---
Thanks for comment we will try to rework and send to community.

-- 
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 14826] Resurrect account offsets table

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14826

bondiurbano  changed:

   What|Removed |Added

 CC||cost...@gmail.com

--- Comment #1 from bondiurbano  ---
Resolve this bug opens many oportunities of enhancements that are being waiting
by the librarian communitiy.

-- 
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 14971] RIS only outputs the first 10 characters for either ISBN10 or ISBN13

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14971

Bernardo Gonzalez Kriegel  changed:

   What|Removed |Added

 CC||bgkrie...@gmail.com
   Assignee|oleon...@myacpl.org |bgkrie...@gmail.com
 Status|NEW |Needs Signoff
   Severity|enhancement |minor
   Patch complexity|--- |Trivial patch

--- Comment #6 from Bernardo Gonzalez Kriegel  ---
This is not UNIMARC specific.

-- 
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 15273] Fines Payment receipt should include all account lines selected for this pay

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15273

--- Comment #6 from bondiurbano  ---
I understand. #14826 is a structural change to prepare tables for future
enhancements (i.e. payment receipt with detail information). I will mark as
duplicate #15273.

-- 
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 15273] Fines Payment receipt should include all account lines selected for this pay

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15273

--- Comment #7 from Katrin Fischer  ---
Hi bondiurbano,

I think it's worth having this bug open, as it shows what we need to do after
we got the linked bugs resolved.

-- 
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 12528] Enable staff to deny message setting access to patrons on the OPAC

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12528

--- Comment #28 from Jonathan Druart  
---
(In reply to Francois Charbonnier from comment #27)
> > Why don't you want the patrons to show the type of messages they receive?
> > I could understand not to let the patrons change the settings, but I don't
> > see the point to hide them completely.
> 
> By hiding them, you avoid the question : "Why can't I change my settings by
> myself?" ;^)

But can answer the question "Why am I receiving email for that?"
We can imagine a quick sentence "Contact your library if you want to change
them"

> > ::: installer/data/mysql/atomicupdate/sysprefs_Bug12528.sql
> > @@ +1,3 @@
> > > +INSERT INTO systempreferences ( variable, value, options, 
> > > explanation,type ) VALUES
> > > +('OPACEnhancedMessagingPreferences', '1', NULL, 'If ON, show patrons 
> > > messaging setting on the OPAC.', 'YesNo')
> > > +;
> > 
> > It would be better to set the value of the other pref, to avoid any
> > confusion.
> 
> EnhancedMessagingPreference is already setup by updatedatabase so I don't
> think this should be change by the atomicupdate here. Moreover, we don't
> want to change the current setting when the library will run this update.

OPACEnhancedMessagingPreferences is added (for existing install, so in
updatedatabase.pl) and enabled.
It does not hurt if EnhancedMessagingPreference is disabled, because in the
code both are checked.
But it would be better to enable OPACEnhancedMessagingPreferences only if
EnhancedMessagingPreference is enabled too.
It will avoid to have
"OPACEnhancedMessagingPreference is enabled but not really because
EnhancedMessagingPreference is not" on the admin pref page.

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


[Koha-bugs] [Bug 15288] New: 404 page: Remove string splitting by html tags to avoid weird translations

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15288

Bug ID: 15288
   Summary: 404 page: Remove string splitting by html tags to
avoid weird translations
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: I18N/L10N
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: ve...@veron.ch
QA Contact: testo...@bugs.koha-community.org
CC: frede...@tamil.fr

On the Koha Error 404 page the following sentence is not properly translatable
due to string splitting:

To report a broken link or any other issue, please send an email to the Koha
Administrator

In German, it results in:
Um diesen Fehler zu melden, können Sie E-Mail an den Koha-Administrator.

-- 
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 14939] OAI Server classes must be modularized

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14939

--- Comment #39 from Frédéric Demians  ---
(In reply to Jonathan Druart from comment #38)

> So sorry, I was using testing!
> Indeed it's 3.27 on my Jessie box.

And does it work? Are tests passing? If so, Héctor could re-sign-off the
attached patch, which is supposed to fix test failings you pointed out.

It remains that HTTP::OAI v4 is a time bomb...

-- 
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 10076] Add Bcc syspref for claimacquisition and clamissues

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10076

Frédéric Demians  changed:

   What|Removed |Added

  Attachment #45264|0   |1
is obsolete||

--- Comment #23 from Frédéric Demians  ---
Created attachment 45350
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45350=edit
Bug 10076 - Add Bcc syspref for ClaimAcquisition and ClaimIssues

There is already a syspref called "OverdueNoticeBcc" for sending Bcc
copies of mails sent for overdues and other notices. This patch add a
new syspref ClaimsBccCopy to bcc the claimacquisition and clamissues
alerts.

Changed the wording of the system preference to:

[Send|Don't send] blind copy (BCC) to logged in user when sending
serial or acquisitions claims notices.

Signed-off-by: Frédéric Demians 

-- 
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 6810] Send membership expiry reminder notices

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6810

Sally Healey  changed:

   What|Removed |Added

 CC||sally.healey@cheshireshared
   ||services.gov.uk

-- 
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 14939] OAI Server classes must be modularized

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14939

--- Comment #38 from Jonathan Druart  
---
(In reply to Frédéric Demians from comment #37)
> I confirm that Jessie/Wheezy package 3.2x version. Jonathan who reported the
> issue should use a CPAN installed version of HTTP::OAI.
> 
> I've also have reported the bug on Github:
> 
> https://github.com/timbrody/perl-oai-lib
> 
> But no response yet. We may give a phone call to Tim Brody...

So sorry, I was using testing!
Indeed it's 3.27 on my Jessie box.

-- 
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 12528] Enable staff to deny message setting access to patrons on the OPAC

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12528

--- Comment #29 from Frédéric Demians  ---
Suggestion for OPACEnhancedMessagingPreferences. It could have 3 values rather
than 2:

  0- Not displayed
  1- Displayed
  2- Modifiable 

When updating an existing DB (see Jonathan comment):

  my $emp = C4::Context->preference('EnhancedMessagingPreferences')
? 2 : 0;
  INSERT INTO systempreferences (variable, value, options, explanation, type)
VALUES
  ('OPACEnhancedMessagingPreferences', $emp, NULL,
'Not display/display/modify patrons messaging setting on the OPAC.',
'YesNo')

-- 
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 10076] Add Bcc syspref for claimacquisition and clamissues

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10076

Frédéric Demians  changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off

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

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

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

--- Comment #54 from Leif Andersson  ---
> What's Stockholm UL? 

Stockholm University Library

> So you're saying that the union catalogue will only have updates about once
> every 10 minutes? Or that the cataloguer will only be accessing a record in
> the union catalogue and Koha once every 10 minutes?
>

As a rough estimate the cataloger will access a record every 10 minutes.

> What do you mean by "work locally on a record"? The union catalog will be
> the source of truth, so any modifications to a record in Koha would be
> overwritten by a change in the union catalogue.

Sorry for being unclear. I ment item data: barcode, item type...

-- 
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 15304] New: Norwegian patron database: translatable strings added to all po files

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15304

Bug ID: 15304
   Summary: Norwegian patron database: translatable strings added
to all po files
 Change sponsored?: ---
   Product: Koha
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: I18N/L10N
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: pasi.kalli...@pttk.fi
QA Contact: testo...@bugs.koha-community.org
CC: frede...@tamil.fr

The strings in nl-search.tt are picked up for translation, but a lot of those
are in Norwegian. The file should either be all in English, or excluded from
translation.

-- 
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 15290] SQL reports encoding problem

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15290

Tomás Cohen Arazi  changed:

   What|Removed |Added

Version|3.20|master
   Assignee|gmcha...@gmail.com  |tomasco...@gmail.com
 CC||tomasco...@gmail.com

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

[Koha-bugs] [Bug 15290] SQL reports encoding problem

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15290

--- Comment #1 from Tomás Cohen Arazi  ---
Created attachment 45353
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45353=edit
Bug 15290: SQL reports headers encoding problem

To test:

- Create an SQL report with column names containing UTF characters
- Run the report
=> FAIL: The column names are double encoded
- Export the report
=> FAIL: The column names are double encoded in the exported file
- Apply the patch
- Re-run the report (reload works)
=> SUCCESS: Encoding correct
- Export the report
=> SUCCESS: Encoding correct
- Sign off :-D

-- 
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 15290] SQL reports encoding problem

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15290

Tomás Cohen Arazi  changed:

   What|Removed |Added

   Patch complexity|--- |Trivial patch
 Status|NEW |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 15288] Staff error pages: Code duplication removal and better translatability

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15288

--- Comment #2 from Marc Véron  ---
Created attachment 45354
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45354=edit
Bug 15288: Staff error pages: Code duplication removal and better
translatability

This patch changes the 400, 401, 402, 403, 404, 500 error pages to be handled
by one template only.

Additionally it removes a translatability issue due to a sentence split by html
tags.

To test:
- Apply patch
- Trigger 404 error by calling a page that does not exist
- Try to trigger other error pages and/or carefully review code changes
  in the *.pl files

-- 
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 15288] Staff error pages: Code duplication removal and better translatability

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15288

Marc Véron  changed:

   What|Removed |Added

  Attachment #45354|0   |1
is obsolete||

--- Comment #3 from Marc Véron  ---
Created attachment 45355
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45355=edit
Bug 15288: Staff error pages: Code duplication removal and better
translatability

This patch changes the 400, 401, 402, 403, 404, 500 error pages to be handled
by one template only.

Additionally it removes a translatability issue due to a sentence split by html
tags.

To test:
- Apply patch
- Trigger 404 error by calling a page that does not exist
- Try to trigger other error pages and/or carefully review code changes
  in the *.pl files

-- 
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 8085] Rename 'Reserve slip' to 'Hold slip'

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8085

Katrin Fischer  changed:

   What|Removed |Added

 Status|Signed Off  |Needs Signoff

--- Comment #10 from Katrin Fischer  ---
I have added another patch to update existing installations - please test and
comment if you think if this change is useful.

-- 
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 15290] New: SQL reports encoding problem

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15290

Bug ID: 15290
   Summary: SQL reports encoding problem
 Change sponsored?: ---
   Product: Koha
   Version: 3.20
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Reports
  Assignee: gmcha...@gmail.com
  Reporter: vfernan...@keep.pt
QA Contact: testo...@bugs.koha-community.org

The problem appears when running a SQL report or exporting a SQL report. The
column header are in incorrect encoding.

Test plan:

1 - Add a new SQL report using the following SQL for example:

SELECT borrowers.cardnumber 'Número cartão', CONCAT (borrowers.firstname, ' ' ,
borrowers.surname) Nome, categories.description Grupo, borrowers.branchcode
Biblioteca,borrowers.dateenrolled 'Data de inscrição', borrowers.dateexpiry
'Data limite'
FROM borrowers
INNER JOIN categories
ON borrowers.categorycode = categories.categorycode
ORDER BY borrowers.cardnumber ASC

2 - Run the report
3 - The column headers are incorrect.
4 - Export the report to CSV.
5 - The column headers on the file are incorrect.

-- 
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 14168] enhance streaming cataloging to include youtube

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14168

--- Comment #9 from Mirko Tietgen  ---
I forgot to say that the following still applies:

Needs libwww-youtube-download-perl to work, which is in Jessie.
https://packages.debian.org/jessie/libwww-youtube-download-perl

Install it before testing :) The Jessie module will likely work in Wheezy too.

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


[Koha-bugs] [Bug 15290] SQL reports encoding problem

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15290

--- Comment #2 from Tomás Cohen Arazi  ---
(In reply to Tomás Cohen Arazi from comment #1)
> - Export the report
> => SUCCESS: Encoding correct

It doesn't fix the exported files. Followup needed.

-- 
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 15289] "borrowers" permission doesn't allow to see current loans

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15289

--- Comment #1 from Fridolin SOMERS  ---
Indeed, the file svc/checkouts contains :

my ( $auth_status, $sessionID ) =
  check_cookie_auth( $input->cookie('CGISESSID'),
{ circulate => 'circulate_remaining_permissions' } );

-- 
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 8352] Add automatic printing of 'hold to pull' notices

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8352

Katrin Fischer  changed:

   What|Removed |Added

 Status|Signed Off  |Failed QA

--- Comment #59 from Katrin Fischer  ---
Is it possible both modules are not packaged for Ubuntu? I couldn't
install/find either via apt-get? 

I think the dependency questions need to be resolved first, before we can move
this further through QA!

Starting with a code review anyway:

1) QA script
 FAIL   koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/printers.tt
   FAIL   spelling
 recieve  ==> receive
 FAIL   misc/cronjobs/holds/print_holds.pl
   FAIL   pod
*** ERROR: =over on line 135 without closing =back (at head1) 
in file misc/cronjobs/holds/print_holds.pl

2) New notice
a) The insert statements are missing the message_transport_type:
+INSERT INTO `letter`
(`module`,`code`,`branchcode`,`name`,`is_html`,`title`,`content`)

b) HOLD_PLACED_PRINT sounds like there is a connection to the existing
HOLD_PLACED feature. If this is the case, should this be just the 'print'
version of the HOLD_PLACED notice? And if not, should we rename to make the
difference clear?

c) Notice is missing from the translated web installers. 

3) Templates
a) Icons need to be switched to Font Awesome. For example:
koha-tmpl/intranet-tmpl/prog/en/includes/printers-toolbar.inc.

b) koha-tmpl/intranet-tmpl/prog/en/modules/admin/admin-home.tt changes the
heading and description of one of the toolbar items back to the old one, should
be: Z39.50/SRU searvers

c) I think page title/breadcrumbs and the new entry on Administration should
match. Personally I'd prefer the simpler 'Printers' to 'Printer editor' as it's
more in line with our other pages.

d) This would be nicer to translate using the newer syntax and a placeholder:
 else if (confirm(_("Are you sure you wish to delete printer(s) ") +
idsToDelete + "?"))
See: Bug 12138 - Use placeholders in translatable javascript strings

4) Terminology 
Holds!! :)
koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/printers.tt
print automatic reserve notices

5) Copyright
Is the copyright correct on the new file svc/printer?
+# Copyright 2014 ByWater Solutions
+# Copyright 2012 Foundations Bible College Inc.

-- 
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 15289] "borrowers" permission doesn't allow to see current loans

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15289

Fridolin SOMERS  changed:

   What|Removed |Added

 CC||fridolin.som...@biblibre.co
   ||m

-- 
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 15289] "borrowers" permission doesn't allow to see current loans

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15289

--- Comment #2 from Fridolin SOMERS  ---
Maybe it should depend on which page calls the code

-- 
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 15290] SQL reports encoding problem

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15290

Héctor Eduardo Castro Avalos  changed:

   What|Removed |Added

 CC||hector.hecax...@gmail.com

--- Comment #3 from Héctor Eduardo Castro Avalos  ---
(In reply to Tomás Cohen Arazi from comment #2)
> (In reply to Tomás Cohen Arazi from comment #1)
> > - Export the report
> > => SUCCESS: Encoding correct
> 
> It doesn't fix the exported files. Followup needed.

Just fail in comma separated in tab separated and open document doesn't fail.

-- 
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 8085] Rename 'Reserve slip' to 'Hold slip'

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8085

--- Comment #9 from Katrin Fischer  ---
Created attachment 45352
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45352=edit
Bug 8085: Follow-up: Update to 'Hold Slip' for existing installations

Title and description are updated separately, in case that the
library has changed one of them when editing the slip.

To test:
- Verify that you have a letter named 'Reserve Slip' in your database
- Run the database update
- Verify the slip has been renamed 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 15273] Fines Payment receipt should include all account lines selected for this pay

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15273

--- Comment #8 from bondiurbano  ---
Thanks Katrin.

-- 
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 15290] SQL reports encoding problem

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15290

Vitor Fernandes  changed:

   What|Removed |Added

   Severity|enhancement |major
   Priority|P5 - low|P1 - high

-- 
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 8483] Borrower reading history should include deleted items

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8483

Katrin Fischer  changed:

   What|Removed |Added

 CC||katrin.fisc...@bsz-bw.de,
   ||tomasco...@gmail.com

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


[Koha-bugs] [Bug 15288] Staff error pages: Code duplication removal and better translatability

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15288

Marc Véron  changed:

   What|Removed |Added

   Assignee|koha-b...@lists.koha-commun |gmcha...@gmail.com
   |ity.org |
  Component|I18N/L10N   |Architecture, internals,
   ||and plumbing
Summary|404 page: Remove string |Staff error pages: Code
   |splitting by html tags to   |duplication removal and
   |avoid weird translations|better translatability

--- Comment #1 from Marc Véron  ---
The problem is related to all error pages (400, 401, 402, 403, 404 500).

Changing Bug title to "Staff error pages: Code duplication removal and better
translatability"

-- 
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 15288] Staff error pages: Code duplication removal and better translatability

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15288

Marc Véron  changed:

   What|Removed |Added

   Assignee|gmcha...@gmail.com  |ve...@veron.ch

-- 
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 15291] New: Can't import item data in acquisition from a stage file with modification templates

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15291

Bug ID: 15291
   Summary: Can't import item data in acquisition from a stage
file with modification templates
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Acquisitions
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: k...@univ-lyon3.fr
QA Contact: testo...@bugs.koha-community.org

It is possible to use modification templates to import data in items if
importing it in the catalog but it isn't possible if we import it in a basket
during the acquisition process.

For example, I have in the marc framework, all items data are in 995 field and
the callnumber in 995$k subfield.

In a marc file, I have the callnumber in 921$a. 
I use a MARC modification templates to copy 921$a subfield in 995$k subfield.

If I use this modification template to import a stage file with 921$a in
catalog, it creates item with for callnumber the value stored in 921$a.
But, if I use this modification template to import a stage file from a basket
during the acquisition process, it creates items without callnumber.

I hope that I'm enough clear...

-- 
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 14994] Add RSS/Atom feed proxy

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14994

Martin Persson  changed:

   What|Removed |Added

 Status|NEW |Needs Signoff

-- 
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 8352] Add automatic printing of 'hold to pull' notices

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8352

--- Comment #67 from Kyle M Hall  ---
Side note: this feature will also require the addition of the debian package
htmldoc.

-- 
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 12342] Patron registration datepicker dropdown shows only 10 years

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12342

Martin Persson  changed:

   What|Removed |Added

  Attachment #45380|0   |1
is obsolete||

--- Comment #8 from Martin Persson  ---
Created attachment 45381
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45381=edit
Bug 12342: Patron registration datepicker dropdown shows only 10 years

This patch changes the options to the date picker, allowing easy
selection of dates up to 120 years from the current date.

Updated version with proper description and default
value moved to a separate bug/commit.

To test:
- Click on 'Patrons' from the main menu, select 'New patron'
- Set input focus to the 'Date of birth' input field,
  the date selection widget should show up.
- The year selection drop-down will only show current year minus 10.
- Apply the patch
- Go back to the same screen, set input focus to the 'Date of birth' field.
- The year selection drop-down should show current year minus 120.

-- 
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 8352] Add automatic printing of 'hold to pull' notices

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8352

Kyle M Hall  changed:

   What|Removed |Added

 Status|BLOCKED |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 8352] Add automatic printing of 'hold to pull' notices

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8352

--- Comment #66 from Kyle M Hall  ---
(In reply to Katrin Fischer from comment #64)
> I am marking this blocked until we know more about the added dependencies.

Based on the documentation here:
http://wiki.koha-community.org/wiki/Building_Debian_Dependencies/Dependency_Guidelines

I ran "dh-make-perl --pkg-perl --build --cpan The::Module" for each of the new
deps and it didn't generate any errors, so I think that means building the
packages shouldn't be a problem!

-- 
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 15295] Move the C4::Branch related code to Koha::Libraries - part 2

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15295

--- Comment #5 from Jonathan Druart  
---
Created attachment 45372
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45372=edit
Bug 15295: Koha::Libraries - Remove GetBranchCategories

Test plan
1/ enable OpacAddMastheadLibraryPulldown
2/ Defined a group of libraries as searchdomain
and tick 'show in pull down'
3/ At the OPAC, go on the advanced search form, limit by the group of
libraries you have just created.
4/ The group should be selected by default in the dropdown list

-- 
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 15297] New: OPAC Patron registration datepicker dropdown shows only 10 years

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15297

Bug ID: 15297
   Summary: OPAC Patron registration datepicker dropdown shows
only 10 years
 Change sponsored?: ---
   Product: Koha
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: trivial
  Priority: P5 - low
 Component: OPAC
  Assignee: oleon...@myacpl.org
  Reporter: xarra...@gmail.com
QA Contact: testo...@bugs.koha-community.org

Bug 12342 has a fix for the staff interface
(http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12342) for date
picker available range. This is the same fix but for the OPAC.

-- 
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 12544] Send scheduled reports as an attachment

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12544

Katrin Fischer  changed:

   What|Removed |Added

 CC||katrin.fisc...@bsz-bw.de
Version|unspecified |master

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


[Koha-bugs] [Bug 12342] Patron registration datepicker dropdown shows only 10 years

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12342

Martin Persson  changed:

   What|Removed |Added

 Status|Failed QA   |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 12342] Patron registration datepicker dropdown shows only 10 years

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12342

Martin Persson  changed:

   What|Removed |Added

  Attachment #39098|0   |1
is obsolete||

--- Comment #6 from Martin Persson  ---
Created attachment 45379
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45379=edit
Bug 12342: Patron registration datepicker dropdown shows only 10 years

This patch changes the options to the date picker, allowing easy
selection of dates up to 100 years from the current date.
Default value selected is current date minus 15 years; this assumes that
15 years is a common age for new patrons.

To test:
- Click on 'Patrons' from the main menu, select 'New patron'
- Set input focus to the 'Date of birth' input field,
  the date selection widget should show up.
- The default selected date will be current date minus one.
- The year selection drop-down will only show current year minus 10.
- Apply the patch
- Go back to the same screen, set input focus to the 'Date of birth' field.
- The default selected date should be current year minus 15.
- The year selection drop-down should show current year minus 100.

Signed-off-by: Eivin Giske Skaaren 

-- 
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 12342] Patron registration datepicker dropdown shows only 10 years

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12342

Martin Persson  changed:

   What|Removed |Added

  Attachment #45379|0   |1
is obsolete||

--- Comment #7 from Martin Persson  ---
Created attachment 45380
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45380=edit
Bug 12342: Patron registration datepicker dropdown shows only 10 years

This patch changes the options to the date picker, allowing easy
selection of dates up to 120 years from the current date.

To test:
- Click on 'Patrons' from the main menu, select 'New patron'
- Set input focus to the 'Date of birth' input field,
  the date selection widget should show up.
- The year selection drop-down will only show current year minus 10.
- Apply the patch
- Go back to the same screen, set input focus to the 'Date of birth' field.
- The year selection drop-down should show current year minus 120.

-- 
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 15292] Libris (Swedish national catalogue) item status service

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15292

--- Comment #2 from Martin Persson  ---
Created attachment 45359
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45359=edit
Bug 15292 - Libris ILS-DI item status (tests)

This patch adds the GetLibrisAvailability tests.

Sponsored-By: Halland County Library

-- 
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 15292] Libris (Swedish national catalogue) item status service

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15292

--- Comment #3 from Martin Persson  ---
Created attachment 45360
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45360=edit
Bug 15292 - Libris ILS-DI item status (opac)

This patch adds the GetLibrisAvailability method
to the ILS-DI service endpoint in the OPAC.

Sponsored-By: Halland County Library

-- 
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 10076] Add Bcc syspref for claimacquisition and clamissues

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10076

Katrin Fischer  changed:

   What|Removed |Added

 Status|Signed Off  |Passed QA

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


[Koha-bugs] [Bug 11602] Fix localcover display

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11602

Katrin Fischer  changed:

   What|Removed |Added

 CC||katrin.fisc...@bsz-bw.de
Version|unspecified |master

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


[Koha-bugs] [Bug 8352] Add automatic printing of 'hold to pull' notices

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8352

Kyle M Hall  changed:

   What|Removed |Added

 Status|Failed QA   |Signed Off

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


[Koha-bugs] [Bug 10154] Add collection, location, and callnumber filters to report for most circulated items

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10154

Owen Leonard  changed:

   What|Removed |Added

  Attachment #45246|0   |1
is obsolete||

--- Comment #14 from Owen Leonard  ---
Created attachment 45376
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45376=edit
[SIGNED-OFF] Bug 10154: QA follow-up - Spelling and terminology

- Changing capitalization: Any Patron category > Any patron category
- Changing Collection code > Collection

Signed-off-by: Owen Leonard 

-- 
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 10154] Add collection, location, and callnumber filters to report for most circulated items

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10154

--- Comment #16 from Katrin Fischer  ---
Created attachment 45378
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45378=edit
Bug 10154: QA follow-up - Spelling and terminology

- Changing capitalization: Any Patron category > Any patron category
- Changing Collection code > Collection

Signed-off-by: Owen Leonard 

-- 
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 15294] Move the C4::Branch related code to Koha::Libraries - part 1

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15294

Jonathan Druart  changed:

   What|Removed |Added

 Blocks||15295


Referenced Bugs:

http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15295
[Bug 15295] Move the C4::Branch related code to Koha::Libraries - part 2
-- 
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 15290] SQL reports encoding problem

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15290

--- Comment #4 from Vitor Fernandes  ---
CSV fails.
Tab separated text fails.
Open Document spreadsheet it's fine.

-- 
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 11602] Fix localcover display

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11602

Katrin Fischer  changed:

   What|Removed |Added

  Attachment #45347|0   |1
is obsolete||

--- Comment #3 from Katrin Fischer  ---
Created attachment 45364
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45364=edit
[PASSED QA] BUG 11602: [ENH] Fix localcover display

Adds a css class of thumbnail to local covers.
Don't show the 1px "No image found" image
(since we'll ususally try another image provider)

Signed-off-by: Hector Castro 
Box with "No cover image availabe" fixed when syspref OPACLocalCoverImages
set to display

Signed-off-by: Katrin Fischer 

-- 
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 8352] Add automatic printing of 'hold to pull' notices

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8352

--- Comment #62 from Kyle M Hall  ---
Created attachment 45365
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45365=edit
Bug 8352 [QA Followup] - Notices for translation

-- 
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 8352] Add automatic printing of 'hold to pull' notices

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8352

--- Comment #65 from Katrin Fischer  ---
(In reply to Kyle M Hall from comment #60)
> I have no experience packaging modules nor do I see any documentation on the
> Koha wiki.

http://wiki.koha-community.org/wiki/Building_Debian_Dependencies/Dependency_Guidelines

-- 
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 15294] Move the C4::Branch related code to Koha::Libraries - part 1

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15294

--- Comment #1 from Jonathan Druart  
---
Created attachment 45366
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45366=edit
Bug 15294: Koha::Libraries - Move existing Koha::Branch[es]

There was already 2 Koha::Branch[es] using Koha::Object[s] before.
For this new rewrite, it seems preferable to start with good basis and
name the new modules Koha::Library and Koha::Libraries.

-- 
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 15295] Move the C4::Branch related code to Koha::Libraries - part 2

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15295

Jonathan Druart  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 15295] Move the C4::Branch related code to Koha::Libraries - part 2

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15295

--- Comment #4 from Jonathan Druart  
---
Created attachment 45371
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45371=edit
Bug 15295: Koha::Libraries - Remove GetBranchCategory

This has been replaced with Koha::Libraries->find

-- 
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 15295] Move the C4::Branch related code to Koha::Libraries - part 2

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15295

--- Comment #7 from Jonathan Druart  
---
Created attachment 45374
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45374=edit
Bug 15295: Koha::Libraries - Remove GetBranchesCount

This is replaced with Koha::Libraries->search->count.

-- 
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 15295] Move the C4::Branch related code to Koha::Libraries - part 2

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15295

--- Comment #2 from Jonathan Druart  
---
Created attachment 45369
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45369=edit
Bug 15295: Koha::Libraries - Remove CheckCategoryUnique

This subroutine is not used anymore and was not really useful.
The branchcategories table has a primary key defined on categorycode.

-- 
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 12395] Save order line's creator

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12395

Katrin Fischer  changed:

   What|Removed |Added

 CC||oleon...@myacpl.org

-- 
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 15293] New: Move the C4::Branch related code to Koha::Libraries

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15293

Bug ID: 15293
   Summary: Move the C4::Branch related code to Koha::Libraries
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: ASSIGNED
  Severity: enhancement
  Priority: P5 - low
 Component: Architecture, internals, and plumbing
  Assignee: jonathan.dru...@bugs.koha-community.org
  Reporter: jonathan.dru...@bugs.koha-community.org
QA Contact: testo...@bugs.koha-community.org

-- 
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 12896] Move the bookseller-related code into its own module

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12896

Jonathan Druart  changed:

   What|Removed |Added

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

-- 
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 14836] Move the patron categories related code to Koha::PatronCategories

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14836

Jonathan Druart  changed:

   What|Removed |Added

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

-- 
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 14828] Move the item types related code to Koha::ItemTypes

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14828

Jonathan Druart  changed:

   What|Removed |Added

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

-- 
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 15288] Staff error pages: Code duplication removal and better translatability

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15288

Marc Véron  changed:

   What|Removed |Added

  Attachment #45356|0   |1
is obsolete||

--- Comment #5 from Marc Véron  ---
Created attachment 45357
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45357=edit
Bug 15288: Staff error pages: Code duplication removal and better
translatability

This patch changes the 400, 401, 402, 403, 404, 500 error pages to be handled
by one template only.

Additionally it removes a translatability issue due to a sentence split by html
tags.

To test:
- Apply patch
- Trigger 404 error by calling a page that does not exist
- Try to trigger other error pages and/or carefully review code changes
  in the *.pl files

(Amended to fix a typo)

-- 
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 15292] Libris (Swedish national catalogue) item status service

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15292

Martin Persson  changed:

   What|Removed |Added

  Attachment #45358|0   |1
is obsolete||

--- Comment #4 from Martin Persson  ---
Created attachment 45363
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45363=edit
Bug 15292 - Libris ILS-DI item status (service)

This patch adds the GetLibrisAvailability method
to the ILS-DI service module.

Updated version with whitespace fixes.

Sponsored-By: Halland County Library

-- 
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 15292] New: Libris (Swedish national catalogue) item status service

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15292

Bug ID: 15292
   Summary: Libris (Swedish national catalogue) item status
service
 Change sponsored?: ---
   Product: Koha
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: new feature
  Priority: P5 - low
 Component: Web services
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: xarra...@gmail.com
QA Contact: testo...@bugs.koha-community.org

In Sweden most libraries pulls their MARC records from a central repository run
by the Royal Library in Stockholm. These MARC records include a unique
identifier in control field 001 which is used to identify a particular
bibliographic entry.

Anyone can browse this online database of available works. Once an interesting
title is found the visitor can list all libraries that holds that particular
book. Once a library is selected, the status of that item can be queried in
realtime from the home page.

In order to facilitate that query the ILS must implement a handler for a
specific HTTP request. The request has a single parameter, the Libris ID of the
bibliographic entry, stored in the MARC record.

This patch adds a new ILS-DI service called GetLibrisAvailability that takes a
single string as an ID and uses Zebra/Z39.50 to search for it (Koha luckily
indexes this field by default). If found, the search result is used to locate
the entry in the SQL database to retrieve the current status of the item. This
is returned as an XML document to the central Libris server.

I need feedback on how to implement tests for Z39.50 functionality. I would
like to programmatically insert a faked work much like how TestBuilder can be
used to generate fake SQL data.

-- 
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 15288] Staff error pages: Code duplication removal and better translatability

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15288

Marc Véron  changed:

   What|Removed |Added

  Attachment #45355|0   |1
is obsolete||

--- Comment #4 from Marc Véron  ---
Created attachment 45356
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45356=edit
Bug 15288: Staff error pages: Code duplication removal and better
translatability

This patch changes the 400, 401, 402, 403, 404, 500 error pages to be handled
by one template only.

Additionally it removes a translatability issue due to a sentence split by html
tags.

To test:
- Apply patch
- Trigger 404 error by calling a page that does not exist
- Try to trigger other error pages and/or carefully review code changes
  in the *.pl files

-- 
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 15084] Move the currency related code to Koha::Acquisition::Currenc[y|ies]

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15084

Jonathan Druart  changed:

   What|Removed |Added

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

-- 
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 14888] Move the cities related code to Koha::Cities

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14888

Jonathan Druart  changed:

   What|Removed |Added

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

-- 
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 14544] Move the list related code to Koha::Virtualshelves

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14544

Jonathan Druart  changed:

   What|Removed |Added

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

-- 
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 15294] New: Move the C4::Branch related code to Koha::Libraries - part 1

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15294

Bug ID: 15294
   Summary: Move the C4::Branch related code to Koha::Libraries -
part 1
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: ASSIGNED
  Severity: enhancement
  Priority: P5 - low
 Component: Architecture, internals, and plumbing
  Assignee: jonathan.dru...@bugs.koha-community.org
  Reporter: jonathan.dru...@bugs.koha-community.org
QA Contact: testo...@bugs.koha-community.org

This first part will include:
- move Koha::Branch[es] to Koha::Librar[y|ies]
- use Koha::Libraries from admin/branches.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 15295] New: Move the C4::Branch related code to Koha::Libraries - part 2

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15295

Bug ID: 15295
   Summary: Move the C4::Branch related code to Koha::Libraries -
part 2
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: ASSIGNED
  Severity: enhancement
  Priority: P5 - low
 Component: Architecture, internals, and plumbing
  Assignee: jonathan.dru...@bugs.koha-community.org
  Reporter: jonathan.dru...@bugs.koha-community.org
QA Contact: testo...@bugs.koha-community.org
Blocks: 15293

In this second part, the following subroutines from C4::Branch will be removed
by using methods from Koha::Libraries.
- DelBranch
- DelBranchCategory
- CheckCategoryUnique
- CheckBranchCategorycode
- GetBranchCategory
- GetBranchCategories
- GetCategoryTypes
- GetBranchesCount
- ModBranchCategoryInfo


Referenced Bugs:

http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15293
[Bug 15293] Move the C4::Branch related code to Koha::Libraries
-- 
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 15293] Move the C4::Branch related code to Koha::Libraries

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15293

Jonathan Druart  changed:

   What|Removed |Added

 Depends on||15294


Referenced Bugs:

http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15294
[Bug 15294] Move the C4::Branch related code to Koha::Libraries - part 1
-- 
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 15296] New: MEMBER logging in action_logs does not give enough detail.

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15296

Bug ID: 15296
   Summary: MEMBER logging in action_logs does not give enough
detail.
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Patrons
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: bar...@bywatersolutions.com
QA Contact: testo...@bugs.koha-community.org
CC: gmcha...@gmail.com, kyle.m.h...@gmail.com

One of our libraries was trying to track down an issue where a patron was
charged an enrollment fee -- looking at the patron's category code, it was
clear that the patron was not currently in a category that should have been
charged. I wanted to see if the patron's category code had changed.

Here's what I found in action_logs:

  select * from action_logs where object='5056' and module='MEMBERS';
+---+-+--+-++++
| action_id | timestamp   | user | module  | action | object | info
  |
+---+-+--+-++++
|   1109625 | 2015-12-02 15:36:32 | 3805 | MEMBERS | CREATE |   5056 | 
  |
|   1109636 | 2015-12-02 15:58:28 | 3804 | MEMBERS | MODIFY |   5056 | UPDATE
(executed w/ arg: 5056) |
|   1109637 | 2015-12-02 16:02:50 | 3804 | MEMBERS | MODIFY |   5056 | UPDATE
(executed w/ arg: 5056) |
+---+-+--+-++++

The 'info' field simply tells me that patron 5056 was modified -- which doesn't
give me any information that I couldn't glean from the 'object' and 'action'
fields -- I really needed to know which fields in the borrower record were
changed.

-- 
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 15292] Libris (Swedish national catalogue) item status service

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15292

--- Comment #1 from Martin Persson  ---
Created attachment 45358
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45358=edit
Bug 15292 - Libris ILS-DI item status (service)

This patch adds the GetLibrisAvailability method
to the ILS-DI service module.

Sponsored-By: Halland County Library

-- 
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 10076] Add Bcc syspref for claimacquisition and clamissues

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10076

Katrin Fischer  changed:

   What|Removed |Added

  Attachment #45350|0   |1
is obsolete||

--- Comment #24 from Katrin Fischer  ---
Created attachment 45361
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45361=edit
[PASSED QA] Bug 10076 - Add Bcc syspref for ClaimAcquisition and ClaimIssues

There is already a syspref called "OverdueNoticeBcc" for sending Bcc
copies of mails sent for overdues and other notices. This patch add a
new syspref ClaimsBccCopy to bcc the claimacquisition and clamissues
alerts.

Changed the wording of the system preference to:

[Send|Don't send] blind copy (BCC) to logged in user when sending
serial or acquisitions claims notices.

Signed-off-by: Frédéric Demians 

Signed-off-by: Katrin Fischer 

-- 
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 8352] Add automatic printing of 'hold to pull' notices

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8352

Katrin Fischer  changed:

   What|Removed |Added

 CC||g...@esilibrary.com
   Keywords||dependency

-- 
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 14971] RIS only outputs the first 10 characters for either ISBN10 or ISBN13

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14971

jvr  changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off

--- Comment #7 from jvr  ---
Patch applied on my test KOHA machine.

Problem no longer exists...

Thank you.

-- 
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 11602] Fix localcover display

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11602

Katrin Fischer  changed:

   What|Removed |Added

   Severity|normal  |minor

-- 
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 8352] Add automatic printing of 'hold to pull' notices

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8352

--- Comment #63 from Katrin Fischer  ---
Kyle, can you verify that the dependencies both need packaging?
Are there possible alternatives?

-- 
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 8352] Add automatic printing of 'hold to pull' notices

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8352

Katrin Fischer  changed:

   What|Removed |Added

 Status|Signed Off  |BLOCKED

--- Comment #64 from Katrin Fischer  ---
I am marking this blocked until we know more about the added dependencies.

-- 
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 11602] Fix localcover display

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11602

--- Comment #4 from Katrin Fischer  ---
I see 2 sides on this: 
- It makes local covers behave more like the other cover services, showing the
standard 'no-image'. (consistency)
- It means a change to existing installations, but the newly showing image can
be easily hidden with CSS... so not sure this should stop this.

-- 
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 15294] Move the C4::Branch related code to Koha::Libraries - part 1

2015-12-03 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15294

--- Comment #2 from Jonathan Druart  
---
Created attachment 45367
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45367=edit
Bug 15294: Koha::Libraries - Rewrite the admin scripts

This patch rewrites the admin/branches.pl script to use the new modules
instead of C4::Branches.

Test plan:
1/ Create libraries using all the fields available
2/ Create groups of libraries
3/ Assign 1+ libraries to some groups
4/ Delete libraries and groups of libraries
You should not able to delete a library if items or patrons use it.
You should not able to delete a group of libraries if there are still
libraries using it.
5/ Update libraries and groups of libraries

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


  1   2   >