[Koha-bugs] [Bug 13486] About page Apache version is empty if Apache version is 2.4

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13486

Jerry Weng chenyi.w...@techyi.com changed:

   What|Removed |Added

 Status|Needs Signoff   |In Discussion

--- Comment #11 from Jerry Weng chenyi.w...@techyi.com ---
Indeed, using -v (lower case) instead of -V (upper case) to get the Apache
version information is better and should be faster. 

But I would keep the [0] part to extract only the needed Apache version info.,
especially the 'uname -a' is already there, and the Server built: time is
meaningless in apt-get installed package.  

 $apacheVersion = (`/usr/sbin/apache2ctl -v`)[0] unless $apacheVersion;

Regards,

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


[Koha-bugs] [Bug 13642] Adding new features for Dublin Core metadata

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13642

--- Comment #15 from Héctor Eduardo Castro Avalos hector.hecax...@gmail.com 
---
(In reply to Marc Véron from comment #14)
 Hi Héctor,
 
 Yes, I installed both from a .deb package
 
 I was then able to update RDF::Helper to the required version using cpan,
 but not RDF::Trine (got a lot of dependency errors and had no luck to track
 them down).

Try to install libmodule-install-rdf-perl and then upgrade RDF::Trine with
cpanm.

So the question is how to add this file into debian/control? Do you know
something about it?

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

[Koha-bugs] [Bug 9351] item type not recorded correctly in statistics for returns and some local use

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9351

Nick Clemens n...@quecheelibrary.org changed:

   What|Removed |Added

  Attachment #34995|0   |1
is obsolete||

--- Comment #44 from Nick Clemens n...@quecheelibrary.org ---
Created attachment 35713
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35713action=edit
[SIGNED OFF] Bug 9351 - sql update on existing statistics

Signed-off-by: Kyle M Hall k...@bywatersolutions.com
Signed-off-by: Nick n...@quecheelibrary.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 9351] item type not recorded correctly in statistics for returns and some local use

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9351

Nick Clemens n...@quecheelibrary.org 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 9351] item type not recorded correctly in statistics for returns and some local use

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9351

Nick Clemens n...@quecheelibrary.org changed:

   What|Removed |Added

  Attachment #35578|0   |1
is obsolete||

--- Comment #45 from Nick Clemens n...@quecheelibrary.org ---
Created attachment 35714
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35714action=edit
[SIGNED OFF] Bug 9351 - item type not recorded correctly in statistics for
returns and some local use - followup

This patch corrects previous for AddReturn() :
-  $item-{'itype'} instead of $biblio-{'itype'}
-  and my $biblio is not set so it is useless
-  removes FIXME comment

Also adds a TODO comment in CanBookBeIssued() :
- $item-{'itemtype'}=$item-{'itype'}, this line may be useless now

Signed-off-by: Nick n...@quecheelibrary.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 9351] item type not recorded correctly in statistics for returns and some local use

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9351

Nick Clemens n...@quecheelibrary.org changed:

   What|Removed |Added

  Attachment #34994|0   |1
is obsolete||

--- Comment #43 from Nick Clemens n...@quecheelibrary.org ---
Created attachment 35712
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35712action=edit
[SIGNED OFF] Bug 9351 - item type not recorded correctly in statistics for
returns and some local use

When returning a loan, or when returning an item for local use, the
corresponding entry in the statistics table takes the item type from the bib
level. This is incorrect when item-level item types is enabled.

This patch corrects this problem by getting itemtype from $item-{'itype'}
which comes from item or biblio level in GetItem().

Test plan :
- On a catalogue with itemtype on item level, perform a return an look at
statistics table
- Idem for a catalogue with itemtype on biblio level

Signed-off-by: Kyle M Hall k...@bywatersolutions.com
Signed-off-by: Nick n...@quecheelibrary.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 13679] There is a bug in overdues if you have overdues that match a rule, and have some items due in the future they are included in the list of overdues

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13679

Chris Cormack ch...@bigballofwax.co.nz 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 13679] There is a bug in overdues if you have overdues that match a rule, and have some items due in the future they are included in the list of overdues

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13679

--- Comment #1 from Chris Cormack ch...@bigballofwax.co.nz ---
Created attachment 35715
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35715action=edit
Bug 13679 : Bug in listing overdues

To test
1/ Create some overdues and some issues due in the future
2/ Run the overdues script
3/ Notice item due in the future is in the list
4/ Apply patch
5/ Run script again
6/ Notice in the future not in the list

-- 
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 12529] Overdue notices do not respect holidays

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12529

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

   What|Removed |Added

 Blocks||13679

-- 
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 13679] There is a bug in overdues if you have overdues that match a rule, and have some items due in the future they are included in the list of overdues

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13679

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

   What|Removed |Added

 Depends on||12529

-- 
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 13679] New: There is a bug in overdues if you have overdues that match a rule, and have some items due in the future they are included in the list of overdues

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13679

Bug ID: 13679
   Summary: There is a bug in overdues if you have overdues that
match a rule, and have some items due in the future
they are included in the list of overdues
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: P5 - low
 Component: Circulation
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: ch...@bigballofwax.co.nz
QA Contact: testo...@bugs.koha-community.org
CC: gmcha...@gmail.com, kyle.m.h...@gmail.com

-- 
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 12403] Batch record deletion

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12403

Heather Braum hbr...@nekls.org changed:

   What|Removed |Added

 CC||hbr...@nekls.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 12529] Overdue notices do not respect holidays

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12529

--- Comment #15 from Jonathan Druart jonathan.dru...@biblibre.com ---
I am under the impression there is a big issue introduced by this patch,

MariaDB [koha] select itemnumber,date_due from issues where
borrowernumber=8408;
++-+
| itemnumber | date_due|
++-+
|  27127 | 2015-03-03 23:59:00 |
|  27143 | 2015-01-01 14:31:00 |
|  27754 | 2014-12-22 14:31:00 |
++-+

Overdue rules are 1:7, 2:15, 3:21

On master, the following diff
diff --git a/misc/cronjobs/overdue_notices.pl
b/misc/cronjobs/overdue_notices.pl
index 4d05ff7..d4dd153 100755
--- a/misc/cronjobs/overdue_notices.pl
+++ b/misc/cronjobs/overdue_notices.pl
@@ -627,6 +627,9 @@ END_SQL
 }
 }
 else {
+if ( $borrowernumber == 8408 ) {
+warn $item_info-{itemnumber} : $days_between
= $mindays  $days_between = $maxdays;
+}
 unless ( $days_between = $mindays
  $days_between = $maxdays )
 {

output:
27127 : 25 = 21  25 = 90 at misc/cronjobs/overdue_notices.pl line 631.
27143 : 36 = 21  36 = 90 at misc/cronjobs/overdue_notices.pl line 631.
27754 : 46 = 21  46 = 90 at misc/cronjobs/overdue_notices.pl line 631.

The itemnumber 27127 should not be embedded in the notice (it is).
The problem comes from the $MAX=90 and the $date_between.

Note that I launched the script without the -t option, but I am pretty sure
some cases can cause problem even with -t

Don't have the time to investigate more.
Could someone confirm?

-- 
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 7904] SIP modules handling of @INC is confused

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7904

--- Comment #21 from Colin Campbell colin.campb...@ptfs-europe.com ---
As a footnote the reason SIPServer.pm's package statement was not changed was
it is not a module.(nothing uses or requires it) 
The name does create that illusion and I think (like a few other things) stems
from some confusion in the initial implementation. I think a separate bug
should open renaming it to avoid confusion and moving it out of its current
location in the library modules.

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


[Koha-bugs] [Bug 13671] Search returning empty

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13671

--- Comment #2 from Isabela Terra isabelate...@cp2.g12.br ---
Hi, Tomás!

I do usually from 3:18 installation.
After test and verify it was working normally, did the migration of 3.14
database to 3.18 and then the errors began to appear.

The main thing is that even with the supplied base, results in searches are
always empty.
No results matching your search for 'kw, wrdl: assis'.

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

[Koha-bugs] [Bug 13240] advanced_notices.pl contains code obfuscation

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13240

--- Comment #12 from Jonathan Druart jonathan.dru...@biblibre.com ---
(In reply to Colin Campbell from comment #11)
 In the perl world using $x-{one}-{two} rather than $x-{one}{two} is the
 most common. one reason is that the arrow syntax can be used in a string
 e.g. print Var: $x-{one}-{two}
 
 using the non-arrow syntax in this way does not do what you may think it does

Are you sure?
I often use it, 

  use Modern::Perl;
  my $h = { foo = { bar = 'foobar' } };
  say my string with $h-{foo}-{bar};
  say my string with $h-{foo}{bar};

outputs:

  my string with foobar
  my string with foobar

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


[Koha-bugs] [Bug 13320] Some prices calculation are done in template side

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13320

--- Comment #23 from Jonathan Druart jonathan.dru...@biblibre.com ---
Yes, as I noted in the commit msg The values displayed before and after the
patch must be the same.
I tested on the 13323 branch, and the values are fixed.

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


[Koha-bugs] [Bug 10756] Carousel Display of New Titles on OPAC home page

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10756

Magnus Enger mag...@enger.priv.no changed:

   What|Removed |Added

 CC||mag...@enger.priv.no

--- Comment #1 from Magnus Enger mag...@enger.priv.no ---
Any movement here? :-)

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


[Koha-bugs] [Bug 13240] advanced_notices.pl contains code obfuscation

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13240

Colin Campbell colin.campb...@ptfs-europe.com changed:

   What|Removed |Added

 CC||colin.campbell@ptfs-europe.
   ||com

--- Comment #11 from Colin Campbell colin.campb...@ptfs-europe.com ---
In the perl world using $x-{one}-{two} rather than $x-{one}{two} is the most
common. one reason is that the arrow syntax can be used in a string
e.g. print Var: $x-{one}-{two}

using the non-arrow syntax in this way does not do what you may think it does

Plus when you get to multiple levels of indirection the arrow-less version gets
more ambigious

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


[Koha-bugs] [Bug 7290] new permission for receiving

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7290

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

   What|Removed |Added

  Attachment #32074|0   |1
is obsolete||
  Attachment #32077|0   |1
is obsolete||

--- Comment #47 from Julian Maurice julian.maur...@biblibre.com ---
Created attachment 35700
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35700action=edit
Bug 7290: More granular permissions for order receiving

Rebased on master and squashed with 4th 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 7290] new permission for receiving

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7290

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

   What|Removed |Added

  Attachment #32075|0   |1
is obsolete||

--- Comment #48 from Julian Maurice julian.maur...@biblibre.com ---
Created attachment 35701
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35701action=edit
Bug 7290: QA fixes

1) Use the new isSuperlibrarian instead of $userflags-{superlibrarian}
2) Fix capitalization of Duplicate Barcode
3) Add comments in t/Acquisition/CanUserReceiveBasket.t

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


[Koha-bugs] [Bug 13352] Editing amount in Acquisitions budget causes error due to formatting

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13352

Paola Rossi paola.ro...@cineca.it 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 13352] Editing amount in Acquisitions budget causes error due to formatting

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13352

Paola Rossi paola.ro...@cineca.it changed:

   What|Removed |Added

  Attachment #35517|0   |1
is obsolete||

--- Comment #4 from Paola Rossi paola.ro...@cineca.it ---
Created attachment 35703
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35703action=edit
[SIGNED OFF] Bug 13352: On editing, prices should not be formatted

I've applied the patch against master 3.19.00.008 head 7904.
Everything's OK as required by the test plan, with either FR or US
CurrencyFormat syspref.
So I pass the patch to the Signed Off status.

NB1. The error message to fix is the following [blocking] one:
Form not submitted because of the following problem(s)
- Amount must be a valid number, or empty

Editing a budgetperiod, the value 'hhh' in the budget's Total-amount input
field gets the same error message [IMO RIGHT].
(A) Editing a fund, the 'hhh' in the fund's Amount input field doesn't get
the message error, and sets the fund's amount to 0 [IMO WRONG].
This (A) error is the same against master, so IMO it's not related to this bug
13352.

NB2. Editing a budgetperiod, Save brings back to Budget Administration
[i.e. the budgets' list].
Editing a budgetperiod X, Cancel doesn't bring back to Budget
Administration: it brings to the Funds for X.
Is it OK?

NB3.  On editing the budget/fund, with the FR CurrencyFormat syspref the
decimal mark was the dot, like with US.
The comma could be the decimal mark with FR.

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


[Koha-bugs] [Bug 13240] advanced_notices.pl contains code obfuscation

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13240

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

  Attachment #33478|0   |1
is obsolete||

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


[Koha-bugs] [Bug 13671] Search returning empty

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13671

--- Comment #3 from Isabela Terra isabelate...@cp2.g12.br ---
I visualized the log and found the following errors in the files:

So does the OPAC and Intranet log files.

ERROR:

[Fri Feb 06 12:46:18.784614 2015] [cgi:error] [pid 13873] [client
192.168.52.72:64110] AH01215: [Fri Feb  6 12:46:18 2015] search.pl: CGI::param
called in list context from package main line 169, this can lead to
vulnerabilities. See the warning in Fetching the value or values of a single
named parameter at /usr/share/perl5/CGI.pm line 436., referer:
http://192.168.3.82:8080/cgi-bin/koha/catalogue/search.pl?q=assis

[Fri Feb 06 12:46:18.929536 2015] [cgi:error] [pid 13873] [client
192.168.52.72:64110] AH01215: [Fri Feb  6 12:46:18 2015] search.pl: CGI::param
called in list context from package main line 387, this can lead to
vulnerabilities. See the warning in Fetching the value or values of a single
named parameter at /usr/share/perl5/CGI.pm line 436., referer:
http://192.168.3.82:8080/cgi-bin/koha/catalogue/search.pl?q=assis

[Fri Feb 06 12:46:18.929818 2015] [cgi:error] [pid 13873] [client
192.168.52.72:64110] AH01215: [Fri Feb  6 12:46:18 2015] search.pl: CGI::param
called in list context from package main line 395, this can lead to
vulnerabilities. See the warning in Fetching the value or values of a single
named parameter at /usr/share/perl5/CGI.pm line 436., referer:
http://192.168.3.82:8080/cgi-bin/koha/catalogue/search.pl?q=assis

[Fri Feb 06 12:46:18.930056 2015] [cgi:error] [pid 13873] [client
192.168.52.72:64110] AH01215: [Fri Feb  6 12:46:18 2015] search.pl: CGI::param
called in list context from package main line 403, this can lead to
vulnerabilities. See the warning in Fetching the value or values of a single
named parameter at /usr/share/perl5/CGI.pm line 436., referer:
http://192.168.3.82:8080/cgi-bin/koha/catalogue/search.pl?q=assis

[Fri Feb 06 12:46:18.930293 2015] [cgi:error] [pid 13873] [client
192.168.52.72:64110] AH01215: [Fri Feb  6 12:46:18 2015] search.pl: CGI::param
called in list context from package main line 407, this can lead to
vulnerabilities. See the warning in Fetching the value or values of a single
named parameter at /usr/share/perl5/CGI.pm line 436., referer:
http://192.168.3.82:8080/cgi-bin/koha/catalogue/search.pl?q=assis

[Fri Feb 06 12:46:18.930529 2015] [cgi:error] [pid 13873] [client
192.168.52.72:64110] AH01215: [Fri Feb  6 12:46:18 2015] search.pl: CGI::param
called in list context from package main line 417, this can lead to
vulnerabilities. See the warning in Fetching the value or values of a single
named parameter at /usr/share/perl5/CGI.pm line 436., referer:
http://192.168.3.82:8080/cgi-bin/koha/catalogue/search.pl?q=assis

[Fri Feb 06 12:46:18.930766 2015] [cgi:error] [pid 13873] [client
192.168.52.72:64110] AH01215: [Fri Feb  6 12:46:18 2015] search.pl: CGI::param
called in list context from package main line 420, this can lead to
vulnerabilities. See the warning in Fetching the value or values of a single
named parameter at /usr/share/perl5/CGI.pm line 436., referer:
http://192.168.3.82:8080/cgi-bin/koha/catalogue/search.pl?q=assis

[Fri Feb 06 12:46:18.931003 2015] [cgi:error] [pid 13873] [client
192.168.52.72:64110] AH01215: [Fri Feb  6 12:46:18 2015] search.pl: CGI::param
called in list context from package main line 421, this can lead to
vulnerabilities. See the warning in Fetching the value or values of a single
named parameter at /usr/share/perl5/CGI.pm line 436., referer:
http://192.168.3.82:8080/cgi-bin/koha/catalogue/search.pl?q=assis

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


[Koha-bugs] [Bug 12460] Search history: Combine to start a new search

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12460

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

   What|Removed |Added

  Attachment #29102|0   |1
is obsolete||

--- Comment #6 from Julian Maurice julian.maur...@biblibre.com ---
Created attachment 35699
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35699action=edit
Bug 12460: Allow to start a new search from multiple search history lines

Rebased on master
Still depends on bug 11430

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


[Koha-bugs] [Bug 12460] Search history: Combine to start a new search

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12460

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

   What|Removed |Added

 Status|Patch doesn't apply |Needs Signoff

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


[Koha-bugs] [Bug 7290] new permission for receiving

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7290

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

   What|Removed |Added

  Attachment #32076|0   |1
is obsolete||

--- Comment #49 from Julian Maurice julian.maur...@biblibre.com ---
Created attachment 35702
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35702action=edit
Bug 7290: Fix CanUserReceiveBasket tests

Rebased on 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 7290] new permission for receiving

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7290

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

   What|Removed |Added

 Status|Patch doesn't apply |Needs Signoff

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


[Koha-bugs] [Bug 13240] advanced_notices.pl contains code obfuscation

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13240

--- Comment #14 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 35704
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35704action=edit
Bug 13240 [QA Followup]

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


[Koha-bugs] [Bug 12368] Rebuild Zebra improvement: allow to specify a DB table

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12368

--- Comment #10 from Jonathan Druart jonathan.dru...@biblibre.com ---
(In reply to Tomás Cohen Arazi from comment #9)
 Couldn't we just make the --where clause to apply to an inner join of both
 tables instead? This way we would avoid adding complexity.
 We know those tables should be one if it didn't imply some performance
 penalty.

I didn't want to increase the execution time for other users.

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

[Koha-bugs] [Bug 12944] There is no way to search orders by creator

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12944

--- Comment #25 from Tomás Cohen Arazi tomasco...@gmail.com ---
Created attachment 35698
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35698action=edit
Bug 12944: (QA followup) fix POD errors from koha-qa.pl

Signed-off-by: Tomas Cohen Arazi 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 13240] advanced_notices.pl contains code obfuscation

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13240

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

 Status|Signed Off  |Passed QA

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


[Koha-bugs] [Bug 13240] advanced_notices.pl contains code obfuscation

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13240

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

  Attachment #35361|0   |1
is obsolete||
  Attachment #35362|0   |1
is obsolete||
  Attachment #35704|0   |1
is obsolete||

--- Comment #15 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 35705
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35705action=edit
[PASSED QA] Bug 13240: Remove some code obfuscation

my $bar;
my $foo = $bar-{borrowernumber} ||= {};
$foo-{one} ||= 'something';
$foo-{two}++;

What does $bar contain?

$VAR1 = {
  'borrowernumber' = {
'two' = 1,
'bar' = 'something'
  }
};

Not really obvious.

Maybe something I did not see is hidden.

Test plan:
Verify the digest for DUE and PREDUE work as before.

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

Signed-off-by: Kyle M Hall k...@bywatersolutions.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 13240] advanced_notices.pl contains code obfuscation

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13240

--- Comment #16 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 35706
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35706action=edit
[PASSED QA] Bug 13240: Remove commented warns

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

Signed-off-by: Kyle M Hall k...@bywatersolutions.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 13240] advanced_notices.pl contains code obfuscation

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13240

--- Comment #17 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 35707
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35707action=edit
[PASSED QA] Bug 13240 [QA Followup]

Signed-off-by: Kyle M Hall k...@bywatersolutions.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 13380] Auto fill order cancellation reasons from authorised values

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13380

--- Comment #18 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Wondering, what is meant here?
Restocking = Already ordered

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


[Koha-bugs] [Bug 13675] the budget of an order is set to null if not changed on receiving

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13675

--- Comment #1 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 35708
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35708action=edit
Bug 13675: Do not set aqorders.budget_id to NULL

C4::Acquisition::ModReceiveOrder updates the aqorders with
budget_id=NULL if no budget_id given in parameter.
Actually the same budget_id should be used.
In tests (especially t/db_dependent/Acquisition/TransferOrder.t),
ModReceiveOrder is not called with a budget_id param and set to NULL the
budget_id value.

test plan:
  prove t/db_dependent/Acquisition/TransferOrder.t
should return green

Note that this bug should not appear using the interface.

-- 
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 13675] the budget of an order is set to null if not changed on receiving

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13675

Jonathan Druart jonathan.dru...@biblibre.com 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 13675] the budget of an order is set to null if not changed on receiving

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13675

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

   What|Removed |Added

  Attachment #35708|0   |1
is obsolete||

--- Comment #2 from Tomás Cohen Arazi tomasco...@gmail.com ---
Created attachment 35710
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35710action=edit
Bug 13675: Do not set aqorders.budget_id to NULL

C4::Acquisition::ModReceiveOrder updates the aqorders with
budget_id=NULL if no budget_id given in parameter.
Actually the same budget_id should be used.
In tests (especially t/db_dependent/Acquisition/TransferOrder.t),
ModReceiveOrder is not called with a budget_id param and set to NULL the
budget_id value.

test plan:
  prove t/db_dependent/Acquisition/TransferOrder.t
should return green

Note that this bug should not appear using the interface.

Signed-off-by: Tomas Cohen Arazi tomasco...@gmail.com
The fix makes sense, and running
 $ prove t/db_dependent/Acq*
returns all green. koha-qa.pl also likes it.

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

[Koha-bugs] [Bug 13675] the budget of an order is set to null if not changed on receiving

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13675

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

   What|Removed |Added

   Patch complexity|--- |Small patch
 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 7957] Routing lists: manage several routing list for each subscription, and export them as CSV

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

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

   What|Removed |Added

 Status|Patch doesn't apply |Needs Signoff

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


[Koha-bugs] [Bug 7957] Routing lists: manage several routing list for each subscription, and export them as CSV

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

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

   What|Removed |Added

  Attachment #22726|0   |1
is obsolete||

--- Comment #21 from Julian Maurice julian.maur...@biblibre.com ---
Created attachment 35709
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35709action=edit
Bug 7957: Routing lists enhancements

Rebased on 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 13642] Adding new features for Dublin Core metadata

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13642

--- Comment #13 from Héctor Eduardo Castro Avalos hector.hecax...@gmail.com 
---
(In reply to Héctor Eduardo Castro Avalos from comment #12)
 (In reply to Marc Véron from comment #11)
  Exporting to Dublin Core...
  Simple DC-RDF - Can save file
  DC-XML - Can save file
  OAI-DC - Can save file
  
  DC-RDF (Recommendend) and all of the additional selections (rdfxml or
  rdfjson etc) - 
  Software error:
  Only alphanumerics are allowed in N-Triples bnode labels
 
 Hi, Marc, this error is because you need to up-to date RDF-Helper or
 RDF-Trine with CPAN modules.

Sorry about my previous short message, Marc. Let me ask you a question. Did you
install RDF::Helper and, RDF::Trine from a .deb package?
Because the .deb packages are not up-to-date (librdf-helper-perl,
librdf-trine-perl).  I forgot to explain in the commit message that is
necessary to upgrade these modules. I upgraded with App::cpanminus.
Go to  More  About Koha  Perl modules to see if these modules need to be
upgraded.

Regards

P.S. If another error found, please let me know

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

[Koha-bugs] [Bug 13677] New: UseKohaPlugins is on Catalog enrichtment tab

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13677

Bug ID: 13677
   Summary: UseKohaPlugins is on Catalog enrichtment tab
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: System Administration
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: katrin.fisc...@bsz-bw.de
QA Contact: testo...@bugs.koha-community.org
CC: gmcha...@gmail.com

In the system preference editor UseKohaPlugins appears on the enhanced content
tab. As it enables a whole new module on staff side, it would maybe be better
under staff client?

-- 
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 13352] Editing amount in Acquisitions budget causes error due to formatting

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13352

Paola Rossi paola.ro...@cineca.it changed:

   What|Removed |Added

 Status|Signed Off  |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 13562] Item search: Not possible to add other search fields from 952?

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13562

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

 Status|Signed Off  |Passed QA

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


[Koha-bugs] [Bug 13562] Item search: Not possible to add other search fields from 952?

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13562

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

  Attachment #35693|0   |1
is obsolete||
 CC||k...@bywatersolutions.com

--- Comment #8 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 35694
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35694action=edit
[PASSED QA] Bug 13562: Fix item search on item MARC subfields

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


[Koha-bugs] [Bug 13380] Auto fill order cancellation reasons from authorised values

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13380

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

 Status|Signed Off  |Passed QA

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


[Koha-bugs] [Bug 13380] Auto fill order cancellation reasons from authorised values

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13380

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

  Attachment #34746|0   |1
is obsolete||
  Attachment #34747|0   |1
is obsolete||

--- Comment #15 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 35695
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35695action=edit
[PASSED QA] Bug 13380: Add the AV in the install files

(This will completely done when the patch will be QAed)

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

Signed-off-by: Kyle M Hall k...@bywatersolutions.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 13486] About page Apache version is empty if Apache version is 2.4

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13486

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

 Status|Signed Off  |Needs Signoff
 CC||k...@bywatersolutions.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 13380] Auto fill order cancellation reasons from authorised values

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13380

--- Comment #17 from Kyle M Hall k...@bywatersolutions.com ---
(In reply to Jonathan Druart from comment #13)
 (In reply to Kyle M Hall from comment #12)
  QA Issue: The new authorized values need to be added to each translation.
 
 Kyle,
 As you know, this change is very boring to do.
 I would prefer to wait for the QA step passes and the wording is validated
 before to add the changes to all languages.
 I hope it makes sense for you.

In that case, I would suggest

No reason = No reason provided
Sold out = Out of stock
Restocking = Already ordered

Does that make sense?

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


[Koha-bugs] [Bug 13240] advanced_notices.pl contains code obfuscation

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13240

--- Comment #13 from M. Tompsett mtomp...@hotmail.com ---
(In reply to Jonathan Druart from comment #12)
[SNIP]
 I often use it, 
 
   use Modern::Perl;
   my $h = { foo = { bar = 'foobar' } };
   say my string with $h-{foo}-{bar};
   say my string with $h-{foo}{bar};
 
 outputs:
 
   my string with foobar
   my string with foobar

I wrote my own code to see the same thing. Which is why I said, I agree with
Frédéric Demians on this, though only because it makes the change more
apparently equal to me, not because it actually generates a better or different
data structure. back in comment #4. Structurally, it seems identical, but
syntax-wise, I still prefer the $h-{foo}-{bar}.

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

[Koha-bugs] [Bug 13380] Auto fill order cancellation reasons from authorised values

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13380

--- Comment #16 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 35696
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35696action=edit
[PASSED QA] Bug 13380: Fill order cancellation reasons from AV

Since bug 7162, it's possible to give a cancellation reason on deleting
an order.
This would be better to fill an authorised values category with the
different possible values.
Like that we will avoid to have duplicate or similar reasons.

Also, it will be easier to filter or create reports.

Test plan:
0/ Don't apply the patch
1/ Cancel some orders and give a cancelletion reason
2/ Apply the patch and execute the updatedb entry
3/ Cancel an order and verify the you have a list with the reason you
previously filled + 3 new ones ('No reason', 'Sold out' and
'Restocking');
4/ Choose one and verify the value is correctly displayed on the basket
page
5/ You can also try to add other values from the admin module.

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

Signed-off-by: Kyle M Hall k...@bywatersolutions.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 11999] Add two checks in CanBookBeReserved and CanItemBeReserved

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11999

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

   What|Removed |Added

  Attachment #28986|0   |1
is obsolete||

--- Comment #12 from Julian Maurice julian.maur...@biblibre.com ---
Created attachment 35697
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35697action=edit
Bug 11999: Add two checks in CanBookBeReserved and CanItemBeReserved

- Check if borrower already has reserved the same biblio (or item).
- Check if borrower has reached the maximum number of holds allowed
  (syspref maxreserves)

The goal of this patch is to do these checks also when using ILS-DI
services HoldTitle and HoldItem

Test plan:
--
Before patch:
1/ Set syspref maxreserves to 1
2/ Place some holds through ILS-DI and note that you can place more than
   1 hold for a borrower
3/ Try to hold the same biblio/item with the same borrower through
   ILS-DI and note that you can

Apply the patch
4/ Place some holds through ILS-DI, you shouldn't be able to place more
   than 1 hold for a borrower
5/ Try to hold the same biblio/item with the same borrower through
   ILS-DI. You shouldn't be able to do that.
6/ Try to place holds on staff interface and OPAC. The behaviour must be
   identical than before the 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 11999] Add two checks in CanBookBeReserved and CanItemBeReserved

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11999

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

   What|Removed |Added

 Status|Patch doesn't apply |Needs Signoff

--- Comment #13 from Julian Maurice julian.maur...@biblibre.com ---
Patch rebased on master (and consequently on top of bug 13116)

There is one unit test that fails in t/db_dependent/Holds.t (line 331), but it
fails on master too.
Should I open a separate bug for 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 13352] Editing amount in Acquisitions budget causes error due to formatting

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13352

Paola Rossi paola.ro...@cineca.it changed:

   What|Removed |Added

 CC||paola.ro...@cineca.it
 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 13240] advanced_notices.pl contains code obfuscation

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13240

--- Comment #18 from Colin Campbell colin.campb...@ptfs-europe.com ---
(In reply to Jonathan Druart from comment #12)
 (In reply to Colin Campbell from comment #11)
  In the perl world using $x-{one}-{two} rather than $x-{one}{two} is the
  most common. one reason is that the arrow syntax can be used in a string
  e.g. print Var: $x-{one}-{two}
  
  using the non-arrow syntax in this way does not do what you may think it 
  does
 
 Are you sure?
 I often use it, 
 
   use Modern::Perl;
   my $h = { foo = { bar = 'foobar' } };
   say my string with $h-{foo}-{bar};
   say my string with $h-{foo}{bar};
 
 outputs:
 
   my string with foobar
   my string with foobar

Without pausing fpr thought its not obvious which of the first three is doing
what you want:
#!/usr/bin/perl
use feature qw( say );
my $list = [ 'foo', 'bar' ];
say my string with $list[0];
say my string with ${list}[0];
say my string with ${$list}[0];

say my string with $list-[0];

outputs:
my string with 
my string with ARRAY(0x936cb8)[0]
my string with foo
my string with foo

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


[Koha-bugs] [Bug 13675] the budget of an order is set to null if not changed on receiving

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13675

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

   What|Removed |Added

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

-- 
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 13675] New: the budget of an order is set to null if not changed on receiving

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13675

Bug ID: 13675
   Summary: the budget of an order is set to null if not changed
on receiving
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: P5 - low
 Component: Acquisitions
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: jonathan.dru...@biblibre.com
QA Contact: testo...@bugs.koha-community.org

Note that this bug should not appear using the interface.

C4::Acquisition::ModReceiveOrder updates the aqorders with budget_id=NULL if no
budget_id given in parameter.
Actually the same budget_id should be used.
In tests (especially t/db_dependent/Acquisition/TransferOrder.t),
ModReceiveOrder is not called with a budget_id param and set to NULL the
budget_id value.

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


[Koha-bugs] [Bug 12399] opaccredits printing at top on printable version

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12399

Marc Véron ve...@veron.ch changed:

   What|Removed |Added

   Assignee|oleon...@myacpl.org |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 12399] opaccredits printing at top on printable version

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12399

Marc Véron ve...@veron.ch changed:

   What|Removed |Added

 Status|NEW |Needs Signoff
   Patch complexity|--- |Trivial 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 12399] opaccredits printing at top on printable version

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12399

--- Comment #3 from Marc Véron ve...@veron.ch ---
Created attachment 35711
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=35711action=edit
Bug 12399 - opaccredits printing at top on printable version

This patch introduces a new class noprint in
koha-tmpl/opac-tmpl/bootstrap/css/print.css
With this class, unwanted elements can be hidden when printing.

To test:
In OPAC, do a search with many results ( 1 Page)
Print page or do a print preview
See that footer elements are not displayed correctly (as of screenshot in
comment #1) and that on top of page 2 the language selector overlays the list
Apply patch
Repeat steps above.
Verify that printed page looks much nicer now by hiding unwanted elements
(including e.g. RSS icon, toolbar etc.)

This mechanism can be used on other pages as well.

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

[Koha-bugs] [Bug 12403] Batch record deletion

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12403

Suzanne Fayle sfa...@roseman.edu changed:

   What|Removed |Added

 CC||sfa...@roseman.edu

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


[Koha-bugs] [Bug 13678] New: library locator in mobile view (or all views)

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13678

Bug ID: 13678
   Summary: library locator in mobile view (or all views)
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: new feature
  Priority: P5 - low
 Component: OPAC
  Assignee: oleon...@myacpl.org
  Reporter: neng...@gmail.com
QA Contact: testo...@bugs.koha-community.org

Would be great if when you were on your mobile device you could click library
locator and find libraries that are near by to where you are.  It would even be
great if this was on the browser view as well.

Maybe we can use this technology:
http://www.w3schools.com/html/html5_geolocation.asp

Nicole

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


[Koha-bugs] [Bug 13676] New: OpacSuppression description says 'items' but means 'records'

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13676

Bug ID: 13676
   Summary: OpacSuppression description says 'items' but means
'records'
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: trivial
  Priority: P5 - low
 Component: System Administration
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: katrin.fisc...@bsz-bw.de
QA Contact: testo...@bugs.koha-community.org
CC: gmcha...@gmail.com

The OpacSuppression preference description is not clear:

... items marked as suppressed from OPAC search results. Note that you must
have the codeSuppress/code index set up in Zebra and at least one
suppressed item, or your searches will be broken. ...

The feature works on record level, not on item level.

-- 
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 12399] opaccredits printing at top on printable version

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12399

--- Comment #2 from Marc Véron ve...@veron.ch ---
Still valid in current master 3.19.00.008

Additionally, Language selector displays at top of page 2 and overlays other
text.

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

[Koha-bugs] [Bug 13676] OpacSuppression description says 'items' but means 'records'

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13676

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

   What|Removed |Added

   Keywords||Academy

-- 
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 13642] Adding new features for Dublin Core metadata

2015-02-06 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13642

--- Comment #14 from Marc Véron ve...@veron.ch ---
Hi Héctor,

Yes, I installed both from a .deb package

I was then able to update RDF::Helper to the required version using cpan, but
not RDF::Trine (got a lot of dependency errors and had no luck to track them
down).

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