[Koha-bugs] [Bug 6803] Removing remote include in MODS xslt

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

Frère Sébastien Marie semarie-k...@latrappe.fr changed:

   What|Removed |Added

 CC||semarie-k...@latrappe.fr

--- Comment #11 from Frère Sébastien Marie semarie-k...@latrappe.fr 
2011-11-07 08:20:29 UTC ---
(In reply to comment #10)
 I still would like to have better test plan for this. Does this bug only 
 happen
 when there is a connectivity issue with LOC?

You could modify the include in MARC21slim2MODS3-1.xsl, in order to have the
href point to a URI where the status in well-known (sorry not well explained...
try with examples after...)

In order to obtain check with a connectivity issue:

 - for test a DNS problem: change in MARC21slim2MODS3-1.xsl, the href (line
3) with : http://www.loc.gov.example.com/marcxml/xslt/MARC21slimUtils.xsl;

This will result Koha trying resolving www.loc.gov.example.com (which should
not exist), and see what happens.


 - for test a server error: (not exactly the same that before: DNS answered
correctly, but no HTTP server found), replace by a valid DNS name where no HTTP
server are running (for example
http://google-public-dns-a.google.com/marcxml/xslt/MARC21slimUtils.xsl;, but
you should prefer a local owned-host, instead of perform aggression to a public
internet server)

This will result Koha successfully resolv google-public-dns-a.google.com, but
cannot connecting to http service.


 - for test a 404 error: replace by
http://www.loc.gov/marcxml/xslt/MARC21slimUtils.xsl.noexistant;.

This will result Koha successfully resolv www.loc.gov, successfully connect
to http service, but (should) obtain a 404 error.

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

[Koha-bugs] [Bug 6803] Removing remote include in MODS xslt

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

--- Comment #12 from M. de Rooy m.de.r...@rijksmuseum.nl 2011-11-07 08:33:34 
UTC ---
(In reply to comment #11)
Thanks for more tests!
Do you think that is safer to replace this remote include by the way?

From another point of view (consistency), I would like to replace it too; it is
the only remaining remote include in a xslt file in Koha.

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


[Koha-bugs] [Bug 6893] Order from suggestion does not remove suggestion from 'accepted' list

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

--- Comment #13 from Adrien SAURAT adrien.sau...@biblibre.com 2011-11-07 
09:11:22 UTC ---
Ok, I expect the OPAC side to be affected, but thought it could be in a good
way as this useless CLAIMED status could have broken something.

In fact, that's my 2nd modification (replacing CLAIMED with ORDERED) which
broke something, and I see what's happening so most of these problems will
disappear : I'll soon make another version of the patch with the OPAC ordered
suggestions appearing (with status Ordered by the library), and Admin ordered
suggestions appearing in the Ordered tab.

If we are sure that the CLAIMED status for a suggestion does no exist (I didn't
find any other occurence in the whole code), then I will just suppress it to
make the Suggestions.pm file clearer.



I didn't encounter any of the 1st and 3rd bugs mentionned by François, they
probably appear in some perticuliar cases, and this is probably something
different requiring another BZ bug (they don't look closely related to the
ORDERED status change).

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

[Koha-bugs] [Bug 6803] Removing remote include in MODS xslt

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

--- Comment #13 from Frère Sébastien Marie semarie-k...@latrappe.fr 
2011-11-07 09:19:08 UTC ---
(In reply to comment #12)
 Thanks for more tests!
 Do you think that is safer to replace this remote include by the way?
 
 From another point of view (consistency), I would like to replace it too; it 
 is
 the only remaining remote include in a xslt file in Koha.

It will be better to not depend of external source.

If I remember well about XSLT processing, XML::LibXSLT don't use security by
default (and koha don't set it).

But, this remote inclusion is *not* a security issue (if you trust LOC), as for
successfully use this vector, an attacker should:
 - or compromise LOC (change what it is included)
 - or compromise your local network infrastructure (DNS, router, server, ...)

So the risk is low (not null, but low).

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

[Koha-bugs] [Bug 7163] BibLibre acquisitions omnibus

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

claire.hernan...@biblibre.com claire.hernan...@biblibre.com changed:

   What|Removed |Added

 CC||claire.hernandez@biblibre.c
   ||om

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


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

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

--- Comment #6 from Nicole C. Engard neng...@gmail.com 2011-11-07 13:30:41 
UTC ---
(In reply to comment #5)
 * The freight price didn't show up in my budgets. I think it should be
 detracted from the budget the items were ordered for?
   That was not asked for. I need more instructions if we decide to go with
 that.

That would probably be by fault for not being clearer.  If we're tracking the
shipping then it makes sense that it show as a negative against our budgets.
The whole point of tracking the shipping was that we needed an accurate budget
keeping device. So, shipping costs (which I do prefer over freight) should be
subtracted from budgets.

What additional information is necessary to make this happen?

Nicole

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


[Koha-bugs] [Bug 6752] Be stricter with utf-8 output

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

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

   What|Removed |Added

   Attachment #5252|0   |1
is obsolete||

--- Comment #8 from Colin Campbell colin.campb...@ptfs-europe.com 2011-11-07 
14:28:40 UTC ---
Created attachment 6248
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=6248
Patch rebased against current HEAD

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


[Koha-bugs] [Bug 6752] Be stricter with utf-8 output

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

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

   What|Removed |Added

   Patch Status|Does not apply  |Needs Signoff

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


[Koha-bugs] [Bug 7157] Improve the j2a.pl cronjob

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

Liz Rea wizzy...@gmail.com changed:

   What|Removed |Added

 AssignedTo|gmcha...@gmail.com  |wizzy...@gmail.com

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


[Koha-bugs] [Bug 7128] logged in and logged out states of opac-main.tt are hard to style

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

--- Comment #8 from Liz Rea wizzy...@gmail.com 2011-11-07 14:39:00 UTC ---
ah, I see that now, thanks all!

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


[Koha-bugs] [Bug 6137] Fix a little bug when userenv is null

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

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

   What|Removed |Added

 CC||m.de.r...@rijksmuseum.nl
   Patch Status|Signed Off  |Failed QA

--- Comment #6 from M. de Rooy m.de.r...@rijksmuseum.nl 2011-11-07 14:42:15 
UTC ---
As mentioned above, test plan is wanted.
Just looking at the code, the patch could change the flow through code. It
seems that the check on existence should be handled within the if block, and
provide the alternative in case it fails. Do I overlook something?

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


[Koha-bugs] [Bug 6752] Be stricter with utf-8 output

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

Serhij Dubyk du...@library.lviv.ua changed:

   What|Removed |Added

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

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


[Koha-bugs] [Bug 6323] Attach/move items -- error handling cleanup

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

--- Comment #9 from Liz Rea wizzy...@gmail.com 2011-11-07 14:55:56 UTC ---
Created attachment 6249
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=6249
Bug 6323 -- Error handling cleanup for moveitem.tt

Added button to retry attaching item, added default bib view handling, cosmetic
changes to the error display (buttons now in error div).

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


[Koha-bugs] [Bug 6323] Attach/move items -- error handling cleanup

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

Liz Rea wizzy...@gmail.com changed:

   What|Removed |Added

   Attachment #5628|0   |1
is obsolete||

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


[Koha-bugs] [Bug 6323] Attach/move items -- error handling cleanup

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

--- Comment #10 from Liz Rea wizzy...@gmail.com 2011-11-07 14:57:09 UTC ---
Comment on attachment 6249
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=6249
Bug 6323 -- Error handling cleanup for moveitem.tt

This latest patch changes the wording back to try again with a different
barcode

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


[Koha-bugs] [Bug 3230] Automatic Credit when Lost item is returned

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

Nicole C. Engard neng...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from Nicole C. Engard neng...@gmail.com 2011-11-07 16:31:04 
UTC ---
I believe this is fixed in 3.6. Please reopen if I'm wrong.

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


[Koha-bugs] [Bug 4379] Lost item charged, but if returned not credited to patron

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

Nicole C. Engard neng...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||neng...@gmail.com
 Resolution||FIXED

--- Comment #1 from Nicole C. Engard neng...@gmail.com 2011-11-07 16:31:22 
UTC ---
I believe this is fixed in 3.6. Please reopen if I'm wrong.

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


[Koha-bugs] [Bug 3607] Lost item returned credit to borrower - but can't resolve credit

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

Nicole C. Engard neng...@gmail.com changed:

   What|Removed |Added

 CC||neng...@gmail.com

--- Comment #1 from Nicole C. Engard neng...@gmail.com 2011-11-07 16:32:02 
UTC ---
Is this still an issue in 3.6?

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


[Koha-bugs] [Bug 7189] New: preference to control if returning lost items gives refund

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

 Bug #: 7189
   Summary: preference to control if returning lost items gives
refund
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: master
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Circulation
AssignedTo: kyle.m.h...@gmail.com
ReportedBy: neng...@gmail.com
 QAContact: ian.wa...@bywatersolutions.com
CC: gmcha...@gmail.com


Right now when you return an item that was lost the patron's card is credited
with the lost fee, but not all libraries refund lost fees and sometimes the fee
is refunded after the patron has paid for it - causing all kinds of financial
issues.

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


[Koha-bugs] [Bug 7190] New: written off fines being refunded

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

 Bug #: 7190
   Summary: written off fines being refunded
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: master
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: P5 - low
 Component: Circulation
AssignedTo: kyle.m.h...@gmail.com
ReportedBy: neng...@gmail.com
 QAContact: ian.wa...@bywatersolutions.com
CC: gmcha...@gmail.com


When a lost charge is written off (using the write off function) and then
returned at a later date the patron is refunded the fee for the book - this
means the patron makes out with extra money that they shouldn't be getting.  

If a fine line was written off then when returning the item the fees should not
be refunded.

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


[Koha-bugs] [Bug 4809] Lost Paid For doesn't record payment

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

--- Comment #3 from Nicole C. Engard neng...@gmail.com 2011-11-07 16:36:13 
UTC ---
I believe this is still an issue in 3.6

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


[Koha-bugs] [Bug 7157] Improve the j2a.pl cronjob

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

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

   What|Removed |Added

   Attachment #6209|0   |1
is obsolete||

--- Comment #2 from Chris Cormack ch...@bigballofwax.co.nz 2011-11-07 
23:36:09 UTC ---
Created attachment 6250
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=6250
Bug 7157 - Improve the j2a.pl cronjob

- Calculates updates date based on the upper age limit defined in the patron
categories.
- Allows libraries to work on all branches or only one.
- Allows libraries to specify which Adult patron category to update child
categories to.
- Allows libraries to specify a single Child patron category to update to an
adult category.
- Has a test mode to display what transforms would be done on the database
without executing the changes.

Includes improved help, copyright statement, and uses warnings.

To test:

Create two patron categories, a child and an adult category. Make sure they
have an upper age limit.

Create or modify some patrons in multiple branches that fall into the category
of my birthdate is less than or equal to today's date minus the upper age
limit

1. Run the script with no flags - nothing should  happen, it will suggest you
try the -help flag.
2. Run the script with the -help flag - you should see the help
3. Run the script with the -fromcat=child category -tocat=adult category -v
-n - should show you results from all branches but take no action and tell you
what its computations are.
4. Run the script with the -fromcat=child category -tocat=adult category
-branch=branchcode -v -n - should show you results from your specified
branch, but take no action and tell you what it's computations are.
5. Run the script with the -fromcat=child category -tocat=adult category -v
-branch=branchcode - should show you the computations and tell you how many
patrons were modified in your single branch. It will not show you the
information on which patrons were updated.
6. Run the script with the -fromcat=child category -tocat=adult category -v
- should show you the computations and tell you how many patrons were modified
across all branches.
7. Run the script without the -v flag, if you care what the non-verbose output
looks like.

There is more this script could do, please feel free to take it and run.

Signed-off-by: Chris Cormack chr...@catalyst.net.nz

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


[Koha-bugs] [Bug 7157] Improve the j2a.pl cronjob

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

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

   What|Removed |Added

 CC||ch...@bigballofwax.co.nz
   Patch Status|Needs Signoff   |Signed Off

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are 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 6302] Failing to send email notices - to_address not set

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

--- Comment #5 from Nicholas van Oudtshoorn vano...@gmail.com 2011-11-08 
01:45:41 UTC ---
Have tested, and it does work as noted in Comment 4 when the 
AutoEmailPrimaryAddress is set to first valid.

A few suggestions though:

1) That the system preference AutoEmailPrimaryAddress be made distinct from
the AutoEmailOpacUser prefernce. I don't want to send an email to newly
created patrons with their account details, but I *do* want to send them
overdue notices. (Under 3.4.2 the preferences seem to be joined together?)

2) That process_message_queue should update the to_address field in the
message_queue table upon sending the email. That way, there's a historical
record of which email address the notice was actually sent to (even if the
email address for a user is changed in the future)

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


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

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

--- Comment #7 from Srdjan Jankovic srd...@catalyst.net.nz 2011-11-08 
01:54:01 UTC ---
I need to know which screen(s) and what field on the screen should be affected.

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


[Koha-bugs] [Bug 6660] limiting search to a patron category shows all patrons in category

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

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

   What|Removed |Added

 CC||srd...@catalyst.net.nz

--- Comment #2 from Srdjan Jankovic srd...@catalyst.net.nz 2011-11-08 
04:21:18 UTC ---
I believe this one is fixed, probably with
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6253

Can you please confirm.

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