[Koha-bugs] [Bug 7679] Statistics wizard: circulation (new filters)

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

Galen Charlton  changed:

   What|Removed |Added

 CC||gmcha...@gmail.com
   Patch complexity|--- |Medium patch

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


[Koha-bugs] [Bug 5608] Tool to move MARC21 series info to 490 tag

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

Michael Hafen  changed:

   What|Removed |Added

   Attachment #2978|0   |1
is obsolete||

--- Comment #5 from Michael Hafen  ---
Created attachment 14437
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14437&action=edit
New script which works properly

I've updated the script to use different methods in the MARC::XXX perl modules.
 This time it works right, and doesn't just copy fields.  It even watches for
duplicated tags and subfields.

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


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

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

--- Comment #1 from Galen Charlton  ---
Fortunately, after the code is fixed, the statistics table can be readily
corrected.  The following two statements should do it when item-level item
types are in effect:

UPDATE statistics s
SET itemtype = (
  SELECT itype
  FROM items i
  WHERE i.itemnumber = s.itemnumber
)
WHERE itemtype IS NULL
AND type IN ('localuse', 'return')
AND itemnumber IN (SELECT itemnumber FROM items);

UPDATE statistics s
SET itemtype = (
  SELECT itype
  FROM deleteditems i
  WHERE i.itemnumber = s.itemnumber
)
WHERE itemtype IS NULL
AND type IN ('localuse', 'return')
AND itemnumber IN (SELECT itemnumber FROM deleteditems);

The following three statements should do it when bib-level item type are in
effect:

UPDATE statistics s
SET itemtype = (
  SELECT itemtype
  FROM (
SELECT itemnumber, itemtype
FROM items
JOIN biblioitems USING (biblioitemnumber)
  ) i
  WHERE i.itemnumber = s.itemnumber
)
WHERE itemtype IS NULL
AND type IN ('localuse', 'return')
AND itemnumber IN (
  SELECT itemnumber 
  FROM items
  JOIN biblioitems USING (biblioitemnumber)
);

UPDATE statistics s
SET itemtype = (
  SELECT itemtype
  FROM (
SELECT itemnumber, itemtype
FROM deleteditems
JOIN biblioitems USING (biblioitemnumber)
  ) i
  WHERE i.itemnumber = s.itemnumber
)
WHERE itemtype IS NULL
AND type IN ('localuse', 'return')
AND itemnumber IN (
  SELECT itemnumber 
  FROM deleteditems 
  JOIN biblioitems USING (biblioitemnumber)
);

UPDATE statistics s
SET itemtype = (
  SELECT itemtype
  FROM (
SELECT itemnumber, itemtype
FROM deleteditems
JOIN deletedbiblioitems USING (biblioitemnumber)
  ) i
  WHERE i.itemnumber = s.itemnumber
)
WHERE itemtype IS NULL
AND type IN ('localuse', 'return')
AND itemnumber IN (
  SELECT itemnumber 
  FROM deleteditems 
  JOIN deletedbiblioitems USING (biblioitemnumber)
);

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/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

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

Galen Charlton  changed:

   What|Removed |Added

   Assignee|koha-b...@lists.koha-commun |gmcha...@gmail.com
   |ity.org |

-- 
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 9351] New: item type not recorded correctly in statistics for returns and some local use

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

Bug ID: 9351
   Summary: item type not recorded correctly in statistics for
returns and some local use
Classification: Unclassified
 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: gmcha...@gmail.com
CC: gmcha...@gmail.com, kyle.m.h...@gmail.com

When returning a loan, or when returning an item for local use when the
RecordLocalUseOnReturn syspref is on, 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, and among other
consequences can lead to problematic local use reports from the circ statistics
wizard.  In particular, if the library is also doing checkouts to a stats-only
borrower to record local use, a circ statistics report on local uses that
includes the item type as a row or column can have nonsensical totals because
of the NULL statistics.itemtype value.

The converse problem affects sites that use biblio-level item types, since
local uses recorded from stats-only patrons use the item-level item type
regardless of the setting of item-level_itypes.

The desired behavior is that when recording a local use, the recorded item type
should respect the item-level_itypes system preference.

-- 
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 6287] No slip for aggregate fine activity for today

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

Bug 6287 depends on bug 3246, which changed state.

Bug 3246 Summary: Looking for a way to customize the patron slips (receipts)
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3246

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

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


[Koha-bugs] [Bug 7001] User Configurable Slips

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

--- Comment #110 from Melia Meggs  ---
*** Bug 3246 has been marked as a duplicate of this bug. ***

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


[Koha-bugs] [Bug 3246] Looking for a way to customize the patron slips (receipts)

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

Melia Meggs  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||me...@bywatersolutions.com
 Resolution|--- |DUPLICATE

--- Comment #1 from Melia Meggs  ---
Slips are now customizable in version 3.8 and later.

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

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


[Koha-bugs] [Bug 6413] Notes in Fines doing wonky things

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

Melia Meggs  changed:

   What|Removed |Added

 CC||me...@bywatersolutions.com

--- Comment #39 from Melia Meggs  ---
Just a nudge - is anyone working on a new patch that addresses Paul's QA
comments, by chance?

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


[Koha-bugs] [Bug 7703] Don't block bulk hold action on search results if some items can't be placed on hold

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

Owen Leonard  changed:

   What|Removed |Added

 Blocks||9350

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


[Koha-bugs] [Bug 9350] New: Don't block bulk holds if one or more titles have no items

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

Bug ID: 9350
   Summary: Don't block bulk holds if one or more titles have no
items
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: P5 - low
 Component: Hold requests
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: oleon...@myacpl.org
CC: gmcha...@gmail.com
Depends on: 7703

To reproduce the problem:

1. Apply the patch for Bug 7703 if necessary.
2. Perform a search which will return one or more titles which have no items.
3. Select multiple titles in those results, including one or more titles with
no items.
4. Click the "Place hold" button.

You will be shown a page which is blank except for an error message: "
Cannot place hold: this record has no items attached."

Just as the multi-holds process can intelligently skip holds on titles with
items which cannot be placed on hold, so should it be able to skip titles with
no items and place holds only on the titles which have available items.

-- 
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 9336] Don't let un-holdable records prevent holdable records from being held in Intranet for multi-holds

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

Owen Leonard  changed:

   What|Removed |Added

 Depends on||7703

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


[Koha-bugs] [Bug 7703] Don't block bulk hold action on search results if some items can't be placed on hold

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

Owen Leonard  changed:

   What|Removed |Added

 Blocks||9336

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


[Koha-bugs] [Bug 9336] Don't let un-holdable records prevent holdable records from being held in Intranet for multi-holds

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

Owen Leonard  changed:

   What|Removed |Added

  Attachment #14359|0   |1
is obsolete||

--- Comment #3 from Owen Leonard  ---
Created attachment 14436
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14436&action=edit
[SIGNED-OFF] Bug 9336 - Don't let un-holdable records block bulk holds

If one or more records selected for a multi-hold have no items,
the multi-holds process will prevent the librarian from completing
the multi-hold. This forces the librarian to go back and remove the
records with no items from the multi-hold.

It would be better to warn the librarian that some of the records
won't be held instead, that way, the librarian does not need to go
to the trouble of removing the non-holdable records from the
multi-hold to complete the process.

Fixed by not disabling the submit button in the event that one
of the records has no holdable items. Updated text of submit
buttons.

Test plan:
1) Apply patch for Bug 7703
2) Apply this patch
3) Place a multi-hold on two records, where one has hold-able items, and
   the other does not have any hold-able items.
4) Instead of being unable to submit the hold request, you should now be
   able to.

Signed-off-by: Owen Leonard 

Copied test plan from bug report in order to fulfill commit message
requirements.

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


[Koha-bugs] [Bug 9336] Don't let un-holdable records prevent holdable records from being held in Intranet for multi-holds

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

Owen Leonard  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 7813] Add ability to delete local cover images

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

Melia Meggs  changed:

   What|Removed |Added

   Priority|P5 - low|P3
 CC||me...@bywatersolutions.com

--- Comment #2 from Melia Meggs  ---
So if you upload an image that you don't like, you have no means of getting rid
of it except by replacing it with something else?  Seems like there really
should be an option to delete an image.  I'm going to bump up the importance a
little.

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


[Koha-bugs] [Bug 7703] Don't block bulk hold action on search results if some items can't be placed on hold

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

Owen Leonard  changed:

   What|Removed |Added

  Attachment #14360|0   |1
is obsolete||

--- Comment #12 from Owen Leonard  ---
Created attachment 14435
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14435&action=edit
[SIGNED-OFF] Bug 7703 - Don't block bulk hold action if some items can't be
placed on hold

If you select multiple titles on the search results page in order to
place a bulk hold and some of those titles have no items you get a
JavaScript alert warning you can some cannot be placed on hold. You are
blocked from completing the action until you deselect the invalid hold.

This is unnecessary because the bulk hold process will safely refuse to
place a hold on these titles later in the process.

This patch removes the check that prevents submitting a multi-hold if
one or more records in the multi-hold have no items.

Test plan:
1) Apply patch
2) On the staff interface, do a search
3) On the search results, select at least one record with items and one
record with no items.
4) Click the 'Place hold' button.
5) You should be redirected to reserve/request.pl with the message
"Cannot place hold: this record has no items attached."

Signed-off-by: Owen Leonard 

Added a description of the problem and copied the test plan from the bug
report, fulfilling commit message 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 7703] Don't block bulk hold action on search results if some items can't be placed on hold

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

Owen Leonard  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 6886] Single branch mode should disable showing the branch name in front of all callnumbers

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

Kyle M Hall  changed:

   What|Removed |Added

 Status|REOPENED|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 6886] Single branch mode should disable showing the branch name in front of all callnumbers

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

Kyle M Hall  changed:

   What|Removed |Added

  Attachment #11504|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 6886] Single branch mode should disable showing the branch name in front of all callnumbers

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

Kyle M Hall  changed:

   What|Removed |Added

  Attachment #11502|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 6886] Single branch mode should disable showing the branch name in front of all callnumbers

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

Kyle M Hall  changed:

   What|Removed |Added

  Attachment #11501|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 6886] Single branch mode should disable showing the branch name in front of all callnumbers

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

--- Comment #16 from Kyle M Hall  ---
Created attachment 14434
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14434&action=edit
Bug 6886 - Single branch mode should disable showing the branch name in front
of all callnumbers - Followup - Copies available for reference

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


[Koha-bugs] [Bug 8236] Prevent renewing if overdue or restriction

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

Kyle M Hall  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 8236] Prevent renewing if overdue or restriction

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

Kyle M Hall  changed:

   What|Removed |Added

  Attachment #13510|0   |1
is obsolete||

--- Comment #27 from Kyle M Hall  ---
Created attachment 14433
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14433&action=edit
Bug 8236 Block renewing for overdue items

If any of patron's document is late, renewal can be allowed, blocked on every
checked
out items or only on overdue ones.
The renewal remains nevertheless possible for the librarian checking the
Override renewal limit

Signed-off-by: Kyle M Hall 

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


[Koha-bugs] [Bug 7967] Z39.50 client should negotiate encoding with server

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

Kyle M Hall  changed:

   What|Removed |Added

 Status|Needs Signoff   |Patch doesn't apply
 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 8054] can hit submit twice when paying fines

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

Kyle M Hall  changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off
 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 8054] can hit submit twice when paying fines

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

Kyle M Hall  changed:

   What|Removed |Added

  Attachment #14303|0   |1
is obsolete||

--- Comment #9 from Kyle M Hall  ---
Created attachment 14432
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14432&action=edit
Bug 8054 - double clicking can cause duplicate payments/fines

Uses preventDoubleForSubmit() to prevent double form submissions in the fines
module.

To test:

Create a manual invoice/fine
Create some manual fines, click save like mad - you should get only one fine
(without, you will get several if you click madly enough)

Click Pay fines
Pay some fines, clicking save like mad on each. You should only get one
payment. (without, you will get several payments)

Create a manual credit
Create a credit, click save like mad. You should only get one credit. (without
you will get several if you click madly enough)

Signed-off-by: Kyle M Hall 

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


[Koha-bugs] [Bug 7657] Google and OpenLibrary image conflict

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

Kyle M Hall  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 7657] Google and OpenLibrary image conflict

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

Kyle M Hall  changed:

   What|Removed |Added

  Attachment #14404|0   |1
is obsolete||

--- Comment #8 from Kyle M Hall  ---
Created attachment 14431
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14431&action=edit
Bug 7657 - Google and OpenLibrary image conflict

The JavaScript files which output Google and OpenLibrary cover images
each assumes it is the only source for cover images running. Each script
isn't specific enough to filter out markup generated by the other. This
patch corrects the specificity of the selector looking for markup
related to Google and OpenLibrary covers.

To test, enable both Google and OpenLibrary cover images in the OPAC.
Perform a search which will return results which include titles which
have covers from both services. Confirm that these covers appear
correctly and that "no cover" information still works correctly.

Signed-off-by: Kyle M Hall 

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


[Koha-bugs] [Bug 7657] Google and OpenLibrary image conflict

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

Kyle M Hall  changed:

   What|Removed |Added

  Attachment #14430|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 7657] Google and OpenLibrary image conflict

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

Kyle M Hall  changed:

   What|Removed |Added

 Status|Failed QA   |Needs Signoff

--- Comment #7 from Kyle M Hall  ---
Cancel that. I misunderstood the issue.

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


[Koha-bugs] [Bug 7657] Google and OpenLibrary image conflict

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

Kyle M Hall  changed:

   What|Removed |Added

 Status|Needs Signoff   |Failed QA
 CC||k...@bywatersolutions.com

--- Comment #6 from Kyle M Hall  ---
This doesn't appear to be working for me. I've attached a screenshot.

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


[Koha-bugs] [Bug 7657] Google and OpenLibrary image conflict

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

--- Comment #5 from Kyle M Hall  ---
Created attachment 14430
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14430&action=edit
Example of book covers after patch is applied.

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


[Koha-bugs] [Bug 6890] Add reserves to modification logging

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

Kyle M Hall  changed:

   What|Removed |Added

 Status|Needs Signoff   |Patch doesn't apply
 CC||k...@bywatersolutions.com

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


[Koha-bugs] [Bug 9348] Format dates in HOLD notices consistently

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

Owen Leonard  changed:

   What|Removed |Added

  Attachment #14412|0   |1
is obsolete||

--- Comment #3 from Owen Leonard  ---
Created attachment 14429
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14429&action=edit
[SIGNED-OFF] Bug 9348 - Format dates in HOLD notices consistently

Right now notices for holds awaiting pickup read something like this:

You have a hold available for pickup as of 2011-02-12.
This hold will expire if it is not picked up before: 02/22/2011.
If you no longer need this item or have any questions please contact us

Both dates should be formatting based on the dateformat system preference.

Test Plan:
1) Apply patch
2) Set the HOLD notice to the following:
<> / <>
3) Place a hold for a patron
4) Enable the HOLD notice via email for that patron ( requires
EnhancedMessaging )
5) Check the item in
6) Go to the borrower's Notices tab, check the body of the new HOLD notice,
   it should have two dates separated by a '/' in the format set by the
dateformat
   system preference.

Signed-off-by: Owen Leonard 

Patch works as advertised according to the test plan.

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


[Koha-bugs] [Bug 9348] Format dates in HOLD notices consistently

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

Owen Leonard  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 9223] Multiple values of AdvancedSearchTypes in suggestions

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

Fridolyn SOMERS  changed:

   What|Removed |Added

 Status|In Discussion   |Needs Signoff

--- Comment #12 from Fridolyn SOMERS  ---
I have rewritten patch.

I introduce a new syspref to choose witch between item types, shelving location
and collection code represents document physical support and will be used as
'document type' in suggestions.
I changed 'item type' in 'document type' in suggestions management to avoid
misunderstanding. It was already used in suggestion creation form.

First patch is the code modifications, second is the syspref addition.

See commit comment for test plan.

This syspref may be used in other enhancements.

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


[Koha-bugs] [Bug 9223] Multiple values of AdvancedSearchTypes in suggestions

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

--- Comment #11 from Fridolyn SOMERS  ---
Created attachment 14428
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14428&action=edit
Proposed patch (syspref add)

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


[Koha-bugs] [Bug 9223] Multiple values of AdvancedSearchTypes in suggestions

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

Fridolyn SOMERS  changed:

   What|Removed |Added

  Attachment #13903|0   |1
is obsolete||

--- Comment #10 from Fridolyn SOMERS  ---
Created attachment 14427
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14427&action=edit
Proposed patch (main)

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


[Koha-bugs] [Bug 9349] Saved reports: sort broken on creation date

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

Owen Leonard  changed:

   What|Removed |Added

  Attachment #14423|0   |1
is obsolete||

--- Comment #2 from Owen Leonard  ---
Created attachment 14426
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14426&action=edit
[SIGNED-OFF] Bug 9349: fix on date sort in Saved Reports

Allows the dd/mm/ format to be correctly sorted
in the Saved Reports table.

TEST PLAN :
Try with different date formats (system preference "dateformat")
Before patch, the "dd/mm/" is not well sorted.

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 9349] Saved reports: sort broken on creation date

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

Owen Leonard  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 9182] Saved reports list : wrong sortable columns

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

Owen Leonard  changed:

   What|Removed |Added

 Blocks||9349

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


[Koha-bugs] [Bug 9349] Saved reports: sort broken on creation date

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

Owen Leonard  changed:

   What|Removed |Added

 Depends on||9182

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


[Koha-bugs] [Bug 9346] acqui/neworderempty.pl ignores exchange rates and destroys user data on page load

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

Elliott Davis  changed:

   What|Removed |Added

 Status|Signed Off  |Passed QA
 CC||elli...@bywatersolutions.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 9346] acqui/neworderempty.pl ignores exchange rates and destroys user data on page load

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

Elliott Davis  changed:

   What|Removed |Added

  Attachment #14410|0   |1
is obsolete||

--- Comment #3 from Elliott Davis  ---
Created attachment 14425
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14425&action=edit
Bug 9346 - acqui/neworderempty.pl ignores exchange rates and destroys user data
on page load

This restores behaviour of new order form before Bug 5335 merge

Test scenario:

1. load Receipt summary for existing customer
2. take note of Unit cost and Order cost
3. open existing order line and verify that Replacement cost,
   Budgeted cost and Total are not re-calculated on page load
4. change currency and verify that costs are updated
   (change currency to system default and all values should become
   same as vendor price)
5. change Quantity, get alert "You can't add a new item, please create a new
order line"
   and verify that Total still reflects correct value

Signed-off-by: Jonathan Druart 
Signed-off-by: Elliott Davis 

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

[Koha-bugs] [Bug 9182] Saved reports list : wrong sortable columns

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

Owen Leonard  changed:

   What|Removed |Added

  Attachment #14422|0   |1
is obsolete||

--- Comment #7 from Owen Leonard  ---
Created attachment 14424
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14424&action=edit
[SIGNED-OFF] Bug 9182: fix on sortable columns on Saved reports

When displaying the Saved reports, since 3.10 the number of columns is
higher but the datasorter parameters have not been changed accordingly.
It's thus impossible to sort on the author or the creation date, for
example.

TEST PLAN :
1) Check sortable columns before applying : some useful columns are not
sortable, while the last columns are sortable (but don't need to be).

2) Once the patch is applied, the "non sortable" columns are the correct
ones.

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 9182] Saved reports list : wrong sortable columns

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

Owen Leonard  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 9349] Saved reports: sort broken on creation date

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

Adrien SAURAT  changed:

   What|Removed |Added

 Status|ASSIGNED|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 9349] Saved reports: sort broken on creation date

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

--- Comment #1 from Adrien SAURAT  ---
Created attachment 14423
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14423&action=edit
proposed patch

TEST PLAN :
Try with different date formats (system preference "dateformat")
Before patch, the "dd/mm/" is not well sorted.

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


[Koha-bugs] [Bug 9312] strict perl for picture-upload.pl

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

--- Comment #8 from Fridolyn SOMERS  ---
(In reply to comment #6)
> I'm not sure what's going on, but I still cannot apply the second patch. I
> still get the same 'sha1 information is lacking' error.
Can you test with 'git apply' ?

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


[Koha-bugs] [Bug 9349] New: Saved reports: sort broken on creation date

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

Bug ID: 9349
   Summary: Saved reports: sort broken on creation date
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: ASSIGNED
  Severity: minor
  Priority: P5 - low
 Component: Reports
  Assignee: adrien.sau...@biblibre.com
  Reporter: adrien.sau...@biblibre.com

The sort on creation date does not work with non-US dates.

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


[Koha-bugs] [Bug 9341] Problem with UNIMARC authors facets

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

Vitor Fernandes  changed:

   What|Removed |Added

 Status|Patch doesn't apply |Needs Signoff

--- Comment #7 from Vitor Fernandes  ---
Jonathan,

Can you try now?
I was because I put the first patch 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 9341] Problem with UNIMARC authors facets

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

Vitor Fernandes  changed:

   What|Removed |Added

  Attachment #14389|1   |0
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 9341] Problem with UNIMARC authors facets

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

--- Comment #6 from Vitor Fernandes  ---
Hi Jonathan,

I don't see any problem with the patch.
What could be wrong?

C4/Koha.pm only has one simple change that worked in my installation.

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


[Koha-bugs] [Bug 9182] Saved reports list : wrong sortable columns

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

Adrien SAURAT  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 9182] Saved reports list : wrong sortable columns

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

Adrien SAURAT  changed:

   What|Removed |Added

  Attachment #13801|0   |1
is obsolete||

--- Comment #6 from Adrien SAURAT  ---
Created attachment 14422
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14422&action=edit
proposed patch #2

In this new patch, the public column should be sortable!

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


[Koha-bugs] [Bug 9331] Untranslatable strings in ajax.js

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

Jonathan Druart  changed:

   What|Removed |Added

  Attachment #14349|0   |1
is obsolete||

--- Comment #5 from Jonathan Druart  ---
Created attachment 14421
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14421&action=edit
Bug 9331 - Untranslatable strings in ajax.js

This patch moves untranslatable strings from ajax.js into the template
where they can be picked up by the translation script.

To test that preference-related error messages continue to work,
open the system preferences editor in two tabs. Log out in one tab and
try to save a system preference in the other. You should see correct
error messages.

To test that error strings are now translatable, run "perl translate update
 " from misc/translator, then check if the affected strings shows
up in the po file.

Signed-off-by: Chris Cormack 

Still works, and is now translatable

Signed-off-by: Jonathan Druart 

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


[Koha-bugs] [Bug 9331] Untranslatable strings in ajax.js

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

Jonathan Druart  changed:

   What|Removed |Added

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

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


[Koha-bugs] [Bug 9331] Untranslatable strings in ajax.js

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

Jonathan Druart  changed:

   What|Removed |Added

 Status|Signed Off  |Passed QA
 CC||jonathan.dru...@biblibre.co
   ||m

--- Comment #4 from Jonathan Druart  ---
QA Comments:

Strings are now translatable.
Moreover this patch fixes 2 JS equality and some semi-colons.

Marking as Passed QA.

-- 
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 4906] Problem with grace period calculation and fine intervals >1

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

--- Comment #16 from Paul Poulain  ---
(In reply to comment #15)
> I think what Paul stated is the bug Katrin described, the first fine should
> be charged after due-date + graceperiod. Now it is charged after due-date +
> grace + fine-interval.

exactly !

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


[Koha-bugs] [Bug 9341] Problem with UNIMARC authors facets

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

Jonathan Druart  changed:

   What|Removed |Added

 Status|Needs Signoff   |Patch doesn't apply
 CC||jonathan.dru...@biblibre.co
   ||m

--- Comment #5 from Jonathan Druart  ---
Hi Vitor,

your patch does not apply:

Applying: Bug 9341: Problem with UNIMARC authors facets
fatal: sha1 information is lacking or useless (C4/Koha.pm).
Repository lacks necessary blobs to fall back on 3-way merge.
Cannot fall back to three-way merge.

Could your reformat and resubmit it please?

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


[Koha-bugs] [Bug 9325] overdue notices sent same messages for all users.

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

Volkan Sonmez  changed:

   What|Removed |Added

 CC||mvson...@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 9312] strict perl for picture-upload.pl

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

Jonathan Druart  changed:

   What|Removed |Added

 CC||jonathan.dru...@biblibre.co
   ||m

--- Comment #7 from Jonathan Druart  ---
"it works for me"

% git reset --hard origin/master 
HEAD is now at 588a55a Merge branch 'bug_8984' into 3.12-master
% git bz apply 9312
Bug 9312 - strict perl for picture-upload.pl

Proposed patch (rebased master)
Apply? [yn] y

Applying: Bug 9312: strict perl for picture-upload.pl
Proposed patch (follow-up 1) (rebased master)
Apply? [yn] y

Applying: Bug 9312: strict perl for picture-upload.pl (followup 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 9325] overdue notices sent same messages for all users.

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

--- Comment #5 from Volkan Sonmez  ---
Created attachment 14420
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14420&action=edit
Fix generation of same overdue letter for different patrons

Using  C4::Letters::GetProcessedLetter instead of
C4::Letters::GetPreparedLetter in parse_letter causes 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 6918] can't place holds on 'on order' items with AllowOnShelfHolds off

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

--- Comment #8 from Jonathan Druart  ---
QA Comment:

If I correctly understand your patch, the increment of the count items issued
have to be made in opac/opac-ISBDdetail.pl and opac/opac-MARCdetail.pl too.

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


[Koha-bugs] [Bug 9335] Message Log Popups don't disappear?

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

Jonathan Druart  changed:

   What|Removed |Added

 QA Contact||jonathan.dru...@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 9335] Message Log Popups don't disappear?

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

Jonathan Druart  changed:

   What|Removed |Added

  Attachment #14414|0   |1
is obsolete||

--- Comment #5 from Jonathan Druart  ---
Created attachment 14419
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14419&action=edit
Bug 9335 - humanMsg popups don't dissapear in webkit browsers

The popup message that appears after saving changes to system
preferences should dissapear upon any user actions (i.e mouse
click, mouse move, typing) but this does not happen in modern
webkit based browsers since jQuery was updated.

This patch adds the suggested fix to the jQuery plugin code as
suggested on https://code.google.com/p/humanmsg/issues/detail?id=9

Signed-off-by: Kyle M Hall 
Tested with Google Chrome on Windows 7

Signed-off-by: Jonathan Druart 
Tested with Google Chrome 22 and Firefox on Debian

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


[Koha-bugs] [Bug 9335] Message Log Popups don't disappear?

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

Jonathan Druart  changed:

   What|Removed |Added

 Status|Signed Off  |Passed QA
 CC||jonathan.dru...@biblibre.co
   ||m

--- Comment #4 from Jonathan Druart  ---
QA Comment:

Patch has been created following a suggested fix from the tracker of the jQuery
plugin.
It works on Debian with Google Chrome and Firefox (no regression).

Marked as Passed QA.

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


[Koha-bugs] [Bug 7131] way to overlay items in in marc import

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

--- Comment #7 from Elliott Davis  ---
Per a conversation with Katrin I think this is what needs to happen with this
patch:

The item match needs to happen on the barcode in addition to the itemnumber.  

There also needs to be a check added to make sure the date_due isn't going to
be overwritten.  Since the record is a MARC::Record object we can just remove
the field.

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


[Koha-bugs] [Bug 9141] Untranslatable strings on "pay an amount..." page

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

Jonathan Druart  changed:

   What|Removed |Added

  Attachment #13857|0   |1
is obsolete||

--- Comment #8 from Jonathan Druart  ---
Created attachment 14418
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14418&action=edit
Bug 9141 - Untranslatable strings on "pay an amount..." page

Moving text of an error message from the script into the
template. To test, submit an amount which is greater
than the amount due. You should see an error message
displayed correctly with a properly-formatted currency
amount.

Signed-off-by: Marc Veron 

Patch behaves as expected.

Signed-off-by: Jonathan Druart 

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


[Koha-bugs] [Bug 9141] Untranslatable strings on "pay an amount..." page

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

Jonathan Druart  changed:

   What|Removed |Added

 Status|Signed Off  |Passed QA
 CC||jonathan.dru...@biblibre.co
   ||m

--- Comment #7 from Jonathan Druart  ---
QA Comments:

With the agreement of Paul, I pass qa on this patch.
Works as expected.

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


[Koha-bugs] [Bug 9294] Move JavaScript out of circulation template

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

--- Comment #9 from Owen Leonard  ---
Fixed conflict with Bug 9289. Still waiting on Bug 9283, on which this patch
depends.

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


[Koha-bugs] [Bug 9294] Move JavaScript out of circulation template

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

Owen Leonard  changed:

   What|Removed |Added

  Attachment #14251|0   |1
is obsolete||

--- Comment #8 from Owen Leonard  ---
Created attachment 14417
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14417&action=edit
Bug 9294 - Move JavaScript out of circulation template

This patch creates a new js file, js/pages/circulation.js, and begins
the process of moving JavaScript into it from circulation.tt. I have
started the process by focusing on sections which are least dependent on
template variables.

To test, load a patron for checkout who has something checked out.
There should be no JavaScript errors:
 - Tabs should work.
 - Showing and hiding the "Add message" form should work.
 - The "specify due date" datepicker should work.
 - Controls for selecting checkboxes in the checkouts table should work
 - With checkout exports enabled, warnings should be displayed if you
   have no checkouts selected, or if you try to export as CSV and have
   no CSV profile specified in your ExportWithCsvProfile.

Signed-off-by: Kyle M Hall 

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


[Koha-bugs] [Bug 9294] Move JavaScript out of circulation template

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

Owen Leonard  changed:

   What|Removed |Added

 Status|Patch doesn't apply |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 8433] use English not needed in modules not using English

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

Jonathan Druart  changed:

   What|Removed |Added

   Assignee|koha-b...@lists.koha-commun |colin.campbell@ptfs-europe.
   |ity.org |com
 QA Contact||jonathan.dru...@biblibre.co
   ||m

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


[Koha-bugs] [Bug 8433] use English not needed in modules not using English

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

Jonathan Druart  changed:

   What|Removed |Added

  Attachment #14242|0   |1
is obsolete||

--- Comment #5 from Jonathan Druart  ---
Created attachment 14416
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14416&action=edit
Bug 8433 Remove unused 'use English'

Adding a use English to mosules which dont may
waste a few CPU cycles and bytes of storage
but doesnt add anything to the sum of human happiness

Remove unnecessary use English's
Removed already commented out but equally unnrcessary
use Exporter in same modules

Signed-off-by: Kyle M Hall 
Signed-off-by: Jonathan Druart 

-- 
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 8433] use English not needed in modules not using English

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

Jonathan Druart  changed:

   What|Removed |Added

 Status|Signed Off  |Passed QA
 CC||jonathan.dru...@biblibre.co
   ||m

--- Comment #4 from Jonathan Druart  ---
QA Comments:

I did not test this patch.
This patch removes the English module in 5 modules (and 3 commented lines).

Looks good to me.

Marked as Passed QA.

-- 
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 9254] Problem with EnhancedMessagingPreferences

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

Jonathan Druart  changed:

   What|Removed |Added

 Status|Signed Off  |Needs Signoff
 CC||jonathan.dru...@biblibre.co
   ||m

--- Comment #5 from Jonathan Druart  ---
Last patch needs a 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 8244] Script to find exporter problems

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

Kyle M Hall  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 8244] Script to find exporter problems

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

Kyle M Hall  changed:

   What|Removed |Added

  Attachment #13223|0   |1
is obsolete||

--- Comment #21 from Kyle M Hall  ---
Created attachment 14415
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14415&action=edit
[SIGNED-OFF] Bug 8244: Add PPI to the list of Perl 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 9279] Problem with quick slip templates

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

Jonathan Druart  changed:

   What|Removed |Added

 QA Contact||jonathan.dru...@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 8984] Zebra does not index some fields in UNIMARC biblio records

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

Jared Camins-Esakov  changed:

   What|Removed |Added

 Status|Passed QA   |Pushed to Master

--- Comment #17 from Jared Camins-Esakov  ---
This patch has been pushed to 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 9279] Problem with quick slip templates

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

Jonathan Druart  changed:

   What|Removed |Added

 Status|Signed Off  |RESOLVED
 CC||jonathan.dru...@biblibre.co
   ||m
 Resolution|--- |DUPLICATE

--- Comment #6 from Jonathan Druart  ---
The bug 6261 solves this issue.

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

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


[Koha-bugs] [Bug 6261] Consolidate patron toolbar include files

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

Jonathan Druart  changed:

   What|Removed |Added

 CC||vfernan...@keep.pt

--- Comment #11 from Jonathan Druart  ---
*** Bug 9279 has been marked as a duplicate of this bug. ***

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


[Koha-bugs] [Bug 9210] Automatic carriage return are missing in print letters generated for holds

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

--- Comment #9 from Jared Camins-Esakov  ---
The script misc/cronjobs/printoverdues.sh does not work at all for me:
jcamins@kohadev:~/kohaclone$ sh -v misc/cronjobs/printoverdues.sh /tmp 
   
[9/1955]
#!/bin/bash

print_usage(){
echo "$0 : generates PDF files from html files in directorys and prints
them";
echo "usage :";
echo "$0 directory [css [printer_host [printername]]]"
echo " - directory  directory to use to apply html2pdf transform";
echo " - csscss file to apply to html ";
echo " - printer_host   Network Name or IP of the printer (port possibly
included) ";
echo " - printer_name   printername ";
echo "Note that css printerhost and printername are optional parameters ";
echo "Note that this script uses xhtml2pdf command ";
echo "xhtml2pdf command comes with pisa (a python library)
  To install you need setuptools library for python
  then type easy_install pisa ";

exit 1;
}
if [ $# -lt 1 ]
then
print_usage
fi
if [[ ! -d $1  ]]
then
echo "$1 : directory expected";
exit 1;
fi
misc/cronjobs/printoverdues.sh: 23: misc/cronjobs/printoverdues.sh: [[: not
found
if [[ -n $2 && -f $2 ]]
then
optpisa="--css $2";
fi
misc/cronjobs/printoverdues.sh: 28: misc/cronjobs/printoverdues.sh: [[: not
found
if [[ -n $3 ]]
then
optprinter="-h $3";
fi
misc/cronjobs/printoverdues.sh: 32: misc/cronjobs/printoverdues.sh: [[: not
found
if [[ -n $4 ]]
then
optprinter="$optprinter -d $4";
fi
misc/cronjobs/printoverdues.sh: 36: misc/cronjobs/printoverdues.sh: [[: not
found
for i in $1/*.html
do
xhtml2pdf $optpisa  $i;
done

if [[ -n $optprinter ]]
then
lp $optprinter  $1/*.pdf;
fi
misc/cronjobs/printoverdues.sh: 45: misc/cronjobs/printoverdues.sh: [[: not
found

tar cvfz $directory`date "+%Y%m%d"`.tar.gz  $directory;
tar: Cowardly refusing to create an empty archive
Try `tar --help' or `tar --usage' for more information.

A fix to the syntax so that the script works on current master will be needed
before I can push this 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 9312] strict perl for picture-upload.pl

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

--- Comment #6 from Kyle M Hall  ---
I'm not sure what's going on, but I still cannot apply the second patch. I
still get the same 'sha1 information is lacking' error.

(In reply to comment #5)
> Created attachment 14256 [details]
> Proposed patch (follow-up 1) (rebased master)
> 
> Patch rebased 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 9335] Message Log Popups don't disappear?

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

Kyle M Hall  changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off
 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 9335] Message Log Popups don't disappear?

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

Kyle M Hall  changed:

   What|Removed |Added

  Attachment #14343|0   |1
is obsolete||

--- Comment #3 from Kyle M Hall  ---
Created attachment 14414
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=14414&action=edit
Bug 9335 - humanMsg popups don't dissapear in webkit browsers

The popup message that appears after saving changes to system
preferences should dissapear upon any user actions (i.e mouse
click, mouse move, typing) but this does not happen in modern
webkit based browsers since jQuery was updated.

This patch adds the suggested fix to the jQuery plugin code as
suggested on https://code.google.com/p/humanmsg/issues/detail?id=9

Signed-off-by: Kyle M Hall 
Tested with Google Chrome on Windows 7

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


[Koha-bugs] [Bug 8924] Some modules erroneously skipped by 00-load

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

Jared Camins-Esakov  changed:

   What|Removed |Added

 Status|Passed QA   |Pushed to Master

--- Comment #7 from Jared Camins-Esakov  ---
This patch has been pushed to 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 6918] can't place holds on 'on order' items with AllowOnShelfHolds off

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

Jared Camins-Esakov  changed:

   What|Removed |Added

 Status|Passed QA   |Signed Off

--- Comment #7 from Jared Camins-Esakov  ---
The revised patch needs to be QAed.

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


[Koha-bugs] [Bug 9346] acqui/neworderempty.pl ignores exchange rates and destroys user data on page load

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

Kyle M Hall  changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off
 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 9294] Move JavaScript out of circulation template

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

Jonathan Druart  changed:

   What|Removed |Added

 Status|Signed Off  |Patch doesn't apply

--- Comment #7 from Jonathan Druart  ---
CONFLICT (content): Merge conflict in
koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt

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


[Koha-bugs] [Bug 9102] [SECURITY] We should set httponly on our session cookie

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

Jared Camins-Esakov  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 9102] [SECURITY] We should set httponly on our session cookie

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

Jared Camins-Esakov  changed:

   What|Removed |Added

 Status|Pushed to Master|ASSIGNED

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


[Koha-bugs] [Bug 9102] [SECURITY] We should set httponly on our session cookie

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

Jared Camins-Esakov  changed:

   What|Removed |Added

  Attachment #14384|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 9102] [SECURITY] We should set httponly on our session cookie

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

Jared Camins-Esakov  changed:

   What|Removed |Added

 Status|Passed QA   |Pushed to Master

--- Comment #13 from Jared Camins-Esakov  ---
The first patch has been pushed to 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 9211] days_between wrong behaviour

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

Jared Camins-Esakov  changed:

   What|Removed |Added

  Attachment #14402|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 9211] days_between wrong behaviour

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

Jared Camins-Esakov  changed:

   What|Removed |Added

  Attachment #14402|1   |0
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 9348] Format dates in HOLD notices consistently

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

Kyle M Hall  changed:

   What|Removed |Added

   Priority|P5 - low|P3
   Severity|enhancement |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/


  1   2   >