[Koha-bugs] [Bug 6210] Choose framework on Merge

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6210

Srdjan Jankovic  changed:

   What|Removed |Added

   Priority|P5  |PATCH-Sent
   Patch Status|--- |Needs Signoff
  Change sponsored?|--- |Sponsored

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6210] Choose framework on Merge

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6210

Srdjan Jankovic  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 AssignedTo|gmcha...@gmail.com  |srd...@catalyst.net.nz

--- Comment #5 from Srdjan Jankovic  2011-10-06 
06:58:46 UTC ---
Created attachment 5731
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5731
patch

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6895] Diacritics in Pootle/po files are broken in source text

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6895

Katrin Fischer  changed:

   What|Removed |Added

   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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6895] Diacritics in Pootle/po files are broken in source text

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6895

Katrin Fischer  changed:

   What|Removed |Added

   Attachment #5709|0   |1
is obsolete||

--- Comment #5 from Katrin Fischer  2011-10-06 
06:55:23 UTC ---
Created attachment 5730
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5730
signed off patch

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 2246] Label printing doesn't work with Unicode characters

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=2246

--- Comment #16 from wajasu  2011-10-06 06:41:36 UTC 
---
(In reply to comment #15)
> I am a bit confused about your example - because I had tested German umlauts
> like 'Jürgen' with one of the last patches that got into master for this bug
> and it worked nicely. Could your problem here be related to unicode
> normalization?

It could be because of unicode normalization.  I faintly recall making a
decision to call or not call some unicode normalization routine when I wrote a
program to convert to marcxml records from a legacy library syste 3 years ago. 
It might have been a windows cp1252 encoding originally, with characters
mapping to utf8.

I did this query against my database for diacritics:
With mysql I run:
select author,HEX(author),CHAR_LENGTH(author) from biblio where HEX(author)
like '%C3BC%';
and get lots of records like:
Moltmann, Jürgen.  | 4D6F6C746D616E6E2C204AC3BC7267656E2E | 17 
where the C3BC represents ü. 

The C3BC is what get written to the PDF file with out my patch. Maybe you can
use a hex editor and see if your label export has C3BC.  If so it might be the
PDF reader that is able to map that.  If yours is F9, then there must be a
difference in the perl version/compile options or module code.

Also, I saved a biblio as marcxml, and the xml contained  JX;rgen in
subfield code "a", so thats an XML entity.
Saving marc.utf8 it has JuCC88rgen  in the text areao of my hex editor.

Another specific query I did for my test record.
select author,HEX(author),CHAR_LENGTH(author) from biblio where author like
'%Habermas%';

mysql version: 5.5.16
mysql> SHOW SESSION VARIABLES LIKE 'character_set%';
+--++
| Variable_name| Value  |
+--++
| character_set_client | utf8   |
| character_set_connection | utf8   |
| character_set_database   | utf8   |
| character_set_filesystem | binary |
| character_set_results| utf8   |
| character_set_server | utf8   |
| character_set_system | utf8   |
| character_sets_dir   | /usr/share/mysql/charsets/ |
+--++


Note: These are barcode labels I'm printing.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 6973] Allow reply-to on cart emails to go to the sender of the cart.

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6973

--- Comment #10 from Robin Sheat  2011-10-06 04:44:11 
UTC ---
Created attachment 5729
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5729
Bug 6973 - have list and cart sending go via message_queue

This forces the emailing of lists and carts to be placed in the message
queue, rather than sent directly from the script. This allows improved
centralised configuration and control of the email system.

Note that an effect of this is that rather than going out immediately,
emails from OPAC users sending carts will only get sent when the
process_message_queue script runs.

(this is intended to apply on top of the other bug 6973 patch)

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6973] Allow reply-to on cart emails to go to the sender of the cart.

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6973

Robin Sheat  changed:

   What|Removed |Added

   Attachment #5728|0   |1
is obsolete||

--- Comment #9 from Robin Sheat  2011-10-06 04:43:50 UTC 
---
Comment on attachment 5728
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5728
Bug 6973 - allow cart and list email to set a reply-to address

Whoops, that attachment was the wrong patch.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6973] Allow reply-to on cart emails to go to the sender of the cart.

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6973

--- Comment #8 from Robin Sheat  2011-10-06 04:42:46 UTC 
---
Created attachment 5728
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5728
Bug 6973 - allow cart and list email to set a reply-to address

This adds a syspref (OpacSendReplyTo) that allows the emails sent from
carts and lists to have a reply-to address of the sending user (if
they're logged in.)

(Changes the preference description from the previous version)

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6488] opachiddenitems not working in master

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6488

--- Comment #11 from Srdjan Jankovic  2011-10-06 
04:01:22 UTC ---
Is it possible that cd is marked as lost?

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5459] merging records loses holds from one

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5459

Chris Cormack  changed:

   What|Removed |Added

   Attachment #5726|0   |1
is obsolete||

--- Comment #28 from Chris Cormack  2011-10-06 
03:28:27 UTC ---
Created attachment 5727
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5727
Bug 5459 - Holds not being shifted when merging biblios

Holds are now shifted and reordered by date placed.
Holds already marked waiting, or in transit are not reordered.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5459] merging records loses holds from one

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5459

Chris Cormack  changed:

   What|Removed |Added

   Patch Status|Failed QA   |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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5459] merging records loses holds from one

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5459

Chris Cormack  changed:

   What|Removed |Added

   Attachment #5618|0   |1
is obsolete||

--- Comment #27 from Chris Cormack  2011-10-06 
03:26:44 UTC ---
Created attachment 5726
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5726
Bug 5459 - Holds not being shifted when merging biblios

Holds are now shifted and reordered by date placed.
Holds already marked waiting, or in transit are not reordered.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6975] OPACBaseURL called as OPACBaseurl in many templates

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6975

Chris Cormack  changed:

   What|Removed |Added

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

--- Comment #3 from Chris Cormack  2011-10-06 
01:42:37 UTC ---
Case change in templates only, pushing please test

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6974] MARC21 Leader plugin no longer auto-fills the 000 field

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6974

Srdjan Jankovic  changed:

   What|Removed |Added

   Priority|P5  |PATCH-Sent
   See Also||http://bugs.koha-community.
   ||org/bugzilla3/show_bug.cgi?
   ||id=6576
   Patch Status|--- |Needs Signoff
  Change sponsored?|--- |Sponsored

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6974] MARC21 Leader plugin no longer auto-fills the 000 field

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6974

Srdjan Jankovic  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 AssignedTo|gmcha...@gmail.com  |srd...@catalyst.net.nz

--- Comment #1 from Srdjan Jankovic  2011-10-06 
01:02:11 UTC ---
Created attachment 5725
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5725
patch

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6576] changing framework while cataloging looses data

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6576

--- Comment #8 from Srdjan Jankovic  2011-10-05 
23:56:13 UTC ---
That fixes generating a trapped exception error when attempting to correct
encoding on a non-existing record when op is not 'addbiblio'. I see that I
probably did too much and will correct that.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6973] Allow reply-to on cart emails to go to the sender of the cart.

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6973

--- Comment #7 from Robin Sheat  2011-10-05 22:50:54 UTC 
---
Still working on a followup patch that cleans up the cart and list sending
code.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6973] Allow reply-to on cart emails to go to the sender of the cart.

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6973

Robin Sheat  changed:

   What|Removed |Added

   Attachment #5711|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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6973] Allow reply-to on cart emails to go to the sender of the cart.

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6973

--- Comment #6 from Robin Sheat  2011-10-05 22:49:25 UTC 
---
Created attachment 5724
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5724
Bug 6973 - allow cart and list email to set a reply-to address

This adds a syspref (OpacSendReplyTo) that allows the emails sent from
carts and lists to have a reply-to address of the sending user (if
they're logged in.)

(Changes the preference description from the previous version)

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6979] LDAP authentication fails during password comparison

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6979

Robert Fox  changed:

   What|Removed |Added

   Priority|P5  |PATCH-Sent
   Patch Status|--- |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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6979] LDAP authentication fails during password comparison

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6979

--- Comment #1 from Robert Fox  2011-10-05 21:00:03 UTC ---
Created attachment 5723
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5723
Patch for Bug 6979 - Auth_with_ldap.pm in C4 directory

This patch is being submitted in order to address a bug we encountered in the
checkpw_ldap subroutine in the C4/Auth_with_ldap.pm module. I did not touch the
part of the conditional that obtains if the auth_by_bind variable is set to
true in the configuration.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6973] Allow reply-to on cart emails to go to the sender of the cart.

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6973

--- Comment #5 from Robin Sheat  2011-10-05 20:40:13 UTC 
---
That's a good idea!

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 3498] Allow partial fine payments

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3498

Sharon Moreland  changed:

   What|Removed |Added

 CC||smorel...@nekls.org

--- Comment #28 from Sharon Moreland  2011-10-05 20:19:36 
UTC ---
Hi all,
I tried to reverse payment of a partial payment and it didn't account as
expected.  Can anyone duplicate?
http://screencast.com/t/BK6RKtQvnrel

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6957] Authors disappearing when emailing lists

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6957

Owen Leonard  changed:

   What|Removed |Added

 Blocks||5010

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5010] Incomplete links in carts and lists sent from the staff client

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5010

Owen Leonard  changed:

   What|Removed |Added

Version|rel_3_2 |master
 Depends on||6957

--- Comment #2 from Owen Leonard  2011-10-05 20:07:34 UTC 
---
My fix for Bug 6957 will address this issue by hiding the link if the
OPACBaseURL preference is not filled out.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6980] New: Existing extended patron attributes are shown on patron screens even when ExtendedPatronAttributes is disabled

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6980

 Bug #: 6980
   Summary: Existing extended patron attributes are shown on
patron screens even when ExtendedPatronAttributes is
disabled
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: master
  Platform: All
OS/Version: All
Status: ASSIGNED
  Severity: normal
  Priority: P5
 Component: Patrons
AssignedTo: oleon...@myacpl.org
ReportedBy: oleon...@myacpl.org
 QAContact: koha-bugs@lists.koha-community.org
CC: gmcha...@gmail.com


If you have added extended patron attributes but have since turned off the
ExtendedPatronAttributes preference those existing attributes will still be
displayed in the sidebar of circulation and patron-related pages. The display
of these attributes should be controlled by the ExtendedPatronAttributes
preference.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6979] New: LDAP authentication fails during password comparison

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6979

 Bug #: 6979
   Summary: LDAP authentication fails during password comparison
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: rel_3_4
  Platform: Other
OS/Version: Linux
Status: NEW
  Severity: major
  Priority: P5
 Component: Architecture, internals, and plumbing
AssignedTo: gmcha...@gmail.com
ReportedBy: rf...@nd.edu
 QAContact: koha-bugs@lists.koha-community.org


Password is failing during comparison in Auth_with_ldap.pm in code (between
lines 140 and 165) in this call:

my $cmpmesg = $db->compare( $userldapentry, attr=>'userpassword', value =>
$password );

This was failing 100% of the time, even if a correct password was submitted
with:

"LDAP Auth rejected : invalid password for user ..."

The attribute comparison is not always a valid way to check the password
validity because not all LDAP databases support the userpassword attribute.
Also, many LDAP databases require a valid DN string from the user as opposed to
the uid for authentication purposes.

I have a fix for this that does a recursive lookup of the user's DN in the LDAP
database, and then uses that DN to perform a bind in a similar manner to the
auth_by_bind method. The auth_by_bind method should also be changed so that it
uses the retrieved DN of the user to perform a bind against the LDAP server.

I plan on submitting a code revision for this and soliciting feedback.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6978] Notify the user on his account page when it is almost expired.

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6978

Frédérick Capovilla  changed:

   What|Removed |Added

   Priority|P5  |PATCH-Sent
   Patch Status|--- |Needs Signoff
  Change sponsored?|--- |Sponsored
 AssignedTo|oleon...@myacpl.org |fcapovi...@live.ca

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 6978] New: Notify the user on his account page when it is almost expired.

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6978

 Bug #: 6978
   Summary: Notify the user on his account page when it is almost
expired.
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: rel_3_6
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: P5
 Component: OPAC
AssignedTo: oleon...@myacpl.org
ReportedBy: fcapovi...@live.ca
 QAContact: koha-bugs@lists.koha-community.org


Created attachment 5722
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5722
Notify the user on his account page when his account is almost expired

New feature : If the "NotifyBorrowerDeparture" system preference is defined, a
notification appears in the user's account page if his subscription is almost
expired.

Patch sponsored bu the CCSR ( http://www.ccsr.qc.ca )

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6975] OPACBaseURL called as OPACBaseurl in many templates

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6975

Ian Walls  changed:

   What|Removed |Added

   Attachment #5720|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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6975] OPACBaseURL called as OPACBaseurl in many templates

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6975

Ian Walls  changed:

   What|Removed |Added

   Priority|P5  |PATCH-Sent
   Patch Status|--- |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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6975] OPACBaseURL called as OPACBaseurl in many templates

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6975

--- Comment #2 from Ian Walls  2011-10-05 
18:33:40 UTC ---
Created attachment 5721
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5721
Proposed Patch (updated)

Updated patch, not only with rename, but with T:T scope fixes.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5280] Fix password field in members.pl so that the password is masked as it is entered

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5280

Owen Leonard  changed:

   What|Removed |Added

Version|rel_3_4 |Rel_3_8
 AssignedTo|cnighswon...@foundations.ed |oleon...@myacpl.org
   |u   |

--- Comment #2 from Owen Leonard  2011-10-05 18:28:01 UTC 
---
I've got a work in progress for this, which adds second password-confirmation
entry field on both the change password page and the patron entry page.

The main blocker to adding this is that I don't see how the update to the
change password page (member-password.pl) can work with the "suggest random
password" feature currently in place. If we accept the random password
suggestion it's masked by the password-type input field. What good is entering
a password if the patron can't know what it is?

Is the "suggest random password" feature worth keeping?

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6975] OPACBaseURL called as OPACBaseurl in many templates

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6975

--- Comment #1 from Ian Walls  2011-10-05 
18:22:46 UTC ---
Created attachment 5720
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5720
Proposed Patch

on all opac tmpl, s/OPACBaseurl/OPACBaseURL/g;

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6977] Support for repeated subfields when importing an authority into a biblio record field.

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6977

Frédérick Capovilla  changed:

   What|Removed |Added

   Priority|P5  |PATCH-Sent
   Patch Status|--- |Needs Signoff
  Change sponsored?|--- |Sponsored
 AssignedTo|gmcha...@gmail.com  |fcapovi...@live.ca

--- Comment #1 from Frédérick Capovilla  2011-10-05 
17:59:25 UTC ---
Sponsored by the CCSR ( http://www.ccsr.qc.ca )

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 6977] New: Support for repeated subfields when importing an authority into a biblio record field.

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6977

 Bug #: 6977
   Summary: Support for repeated subfields when importing an
authority into a biblio record field.
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: rel_3_6
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: P5
 Component: Cataloging
AssignedTo: gmcha...@gmail.com
ReportedBy: fcapovi...@live.ca
 QAContact: koha-bugs@lists.koha-community.org
CC: ian.wa...@bywatersolutions.com


Created attachment 5719
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5719
Adds support for repeatable subfields when importing authorities.

For example, if we try to import an authority with multiple $x subfields into a
bibliographic record using the "..." link, only the last $x value get added to
the form and the other values are ignored.

Patch attached that adds all subfield values to the form, including repeated
subfield values.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6966] Update Help Files for Koha 3.6 Release

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6966

--- Comment #6 from Nicole C. Engard  2011-10-05 17:56:33 
UTC ---
Created attachment 5718
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5718
Bug 6966 Cataloging Help Files

This patch updates the help files in the cataloging folder.
It adds one missing help file and adds links to the manual
and updates to the others.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6966] Update Help Files for Koha 3.6 Release

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6966

Nicole C. Engard  changed:

   What|Removed |Added

   Attachment #5715|0   |1
is obsolete||

--- Comment #5 from Nicole C. Engard  2011-10-05 17:18:53 
UTC ---
Created attachment 5717
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5717
Bug 6966 Authorities Help Files

This patch updates help files in the authorities folder. It
adds links to the manual for all files that weren't edit in
patches for bug 6942.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6966] Update Help Files for Koha 3.6 Release

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6966

--- Comment #4 from Nicole C. Engard  2011-10-05 17:17:10 
UTC ---
Created attachment 5716
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5716
Bug 6966 Catalogue Help Files

This patch updates the help files in the catalogue folder
by including the link to the manual.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6966] Update Help Files for Koha 3.6 Release

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6966

--- Comment #3 from Nicole C. Engard  2011-10-05 17:11:26 
UTC ---
Created attachment 5715
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5715
Bug 6966 Authorities Help Files

This patch updates help files in the admin folder. It adds
links to the manual for all files that weren't edit in
patches for bug 6942.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 4045] No check for maximum number of allowed holds.

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=4045

Nicole C. Engard  changed:

   What|Removed |Added

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

--- Comment #6 from Nicole C. Engard  2011-10-05 16:43:44 
UTC ---
*** Bug 6976 has been marked as a duplicate of this bug. ***

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6976] User hold limit can be avoided by users in OPAC

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6976

Nicole C. Engard  changed:

   What|Removed |Added

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

--- Comment #1 from Nicole C. Engard  2011-10-05 16:43:44 
UTC ---


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

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6976] New: User hold limit can be avoided by users in OPAC

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6976

 Bug #: 6976
   Summary: User hold limit can be avoided by users in OPAC
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: rel_3_4
  Platform: All
OS/Version: All
Status: NEW
  Severity: major
  Priority: P5
 Component: Circulation
AssignedTo: kyle.m.h...@gmail.com
ReportedBy: colin.campb...@ptfs-europe.com
 QAContact: koha-bugs@lists.koha-community.org
CC: gmcha...@gmail.com


Problem as reported:
borrowers are only allowed 5 holds.  If holds are done individually, it is
obeying that law i.e. X has held 5 separate books – when I tried to do a 6th
book it told me that I could not place a hold.  However, if a borrower checks
the catalogue, gets the intial list up and clicks items on the “results” box
and then clicks “place hold” they can hold more than 5 items – I have been able
to hold 8 (and I suspect could do more) 

Looks like the logic is a bit flawed when placing multiple holds as the
variable canreserve is not reset for each iteration of the loop. Testing fix on
site patch to follow

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 6975] New: OPACBaseURL called as OPACBaseurl in many templates

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6975

 Bug #: 6975
   Summary: OPACBaseURL called as OPACBaseurl in many templates
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: rel_3_6
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: P5
 Component: Templates
AssignedTo: ian.wa...@bywatersolutions.com
ReportedBy: ian.wa...@bywatersolutions.com
 QAContact: koha-bugs@lists.koha-community.org


Template::Toolkit translation issue; the capitalization is off, preventing the
value from being parsed into many key pages on the OPAC.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6576] changing framework while cataloging looses data

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6576

--- Comment #7 from Ian Walls  2011-10-05 
15:16:23 UTC ---
Srdjan,


The addition of this logic to addbiblio.pl is causing bug 6974:

+if ( $record eq -1 ) {
+$record = TransformHtmlToMarc( $input );
+}
+else {
 #FIXME: it's kind of silly to go from MARC::Record to MARC::File::XML and then
back again just to fix the encoding
-eval {
-my $uxml = $record->as_xml;
-MARC::Record::default_record_format("UNIMARC")
-  if ( C4::Context->preference("marcflavour") eq "UNIMARC" );
-my $urecord = MARC::Record::new_from_xml( $uxml, 'UTF-8' );
-$record = $urecord;
-};
+eval {
+my $uxml = $record->as_xml;
+MARC::Record::default_record_format("UNIMARC")
+if ( C4::Context->preference("marcflavour") eq "UNIMARC" );
+my $urecord = MARC::Record::new_from_xml( $uxml, 'UTF-8' );
+$record = $urecord;
+};
+}

Can you help me understand the reasoning behind adding the conditional check
for $record eq -1?  What does that fix?

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6970] logout not redirecting to login page

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6970

--- Comment #4 from Ian Walls  2011-10-05 
14:12:29 UTC ---
Proposed patch works on FF7 and Chromium 12; need to check other browsers
before I can definitely sign off and pass QA.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6974] New: MARC21 Leader plugin no longer auto-fills the 000 field

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6974

 Bug #: 6974
   Summary: MARC21 Leader plugin no longer auto-fills the 000
field
Classification: Unclassified
 Change sponsored?: ---
   Product: Koha
   Version: master
  Platform: All
OS/Version: All
Status: NEW
  Severity: major
  Priority: P5
 Component: Cataloging
AssignedTo: gmcha...@gmail.com
ReportedBy: oleon...@myacpl.org
 QAContact: koha-bugs@lists.koha-community.org
CC: ian.wa...@bywatersolutions.com


Before the patch for Bug 6576 was pushed clicking in the 000 field in the MARC
editor would fill the field with a default value. Now the field auto-fills with
some spaces but no data.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6970] logout not redirecting to login page

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6970

Owen Leonard  changed:

   What|Removed |Added

   Priority|P5  |PATCH-Sent
 Status|NEW |ASSIGNED
   Patch Status|--- |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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6970] logout not redirecting to login page

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6970

--- Comment #3 from Owen Leonard  2011-10-05 13:56:43 UTC 
---
Created attachment 5714
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5714
Proposed fix

As Ian points out, there is code which tries to redirect to "about:blank" and
close the window (since the main context of the function is the Cart's popup
window.

This patch adds a parameter to the delBasket function so that we can pass a
"popup" context to the function and choose whether or not we want to ask JS to
close the window.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 3946] can't export Items with no checkouts

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3946

Owen Leonard  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
   Platform|PC  |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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 5282] Guided reports itemtype limit not applying

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5282

Owen Leonard  changed:

   What|Removed |Added

Summary|itemtype limit not applying |Guided reports itemtype
   ||limit not applying

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6973] Allow reply-to on cart emails to go to the sender of the cart.

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6973

Nicole C. Engard  changed:

   What|Removed |Added

 CC||neng...@gmail.com

--- Comment #4 from Nicole C. Engard  2011-10-05 12:09:25 
UTC ---
Total nitpicky thing here .. 

Why not change the preference so that it doesn't have a 'warning'


Use (Sender's Email|Library Admin Address) as the reply to address when sending
carts and lists.


Instead of a Do/Don't kind of thing.


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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 2246] Label printing doesn't work with Unicode characters

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=2246

--- Comment #15 from Katrin Fischer  2011-10-05 
08:34:36 UTC ---
I am a bit confused about your example - because I had tested German umlauts
like 'Jürgen' with one of the last patches that got into master for this bug
and it worked nicely. Could your problem here be related to unicode
normalization?

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 2246] Label printing doesn't work with Unicode characters

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=2246

--- Comment #14 from wajasu  2011-10-05 08:30:09 UTC 
---
Created attachment 5713
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5713
Bug 2246 - (Partial) Map multibyte UTF8 to single byte for ISOLatin1 fonts
(fixes diacritics Compress(1) line so that
you can see the PDF test instructions when generating. (Export it.)
b) Use a hexfile viewer (I use hexedit), and search for Habermas, and you
will see
the corresponding Jurgen with two bytes C3BC before the patch, and FC after
the patch.
(You can use od -x in unix to also view the PDF if you don't have hexedit).

Some explanation:
The utf8 flag is turned off, and the FC is passed thru.  I tried
Encode:decode routines,
but I think they keep the perl internal utf8 flag on, and the bytes stream
out as C3BC.
I've read when strings are concatenated, the flag can switch on/off, so I
hoped something
in the PDF::Reuse module would not tern it back on (if thats what is
helping).

Observations:
I tried this on my production 3.2 ish koha, and it did't work so this patch
is dependent
on other fixes such as
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=4293
I hoped folks in older versions could make the change in production without
an upgrade,
but one could try as see since its a staff client tool.

It worked for me 3.4.4 and 3.5.x koho git master  as of October 5th 2011

Things that might be needed:
Pertinent modules?
MyTestEnv version   HEAD Required
PDF::API2   2.019   2  
 Yes
PDF::API2::Page 2.019   2  
 Yes
PDF::API2::Simple   1.1.4   1  
 Yes
PDF::API2::Util 2.019   2  
 Yes
PDF::Reuse  0.350.33   
 Yes
PDF::Reuse::Barcode 0.050.05   
 Yes
PDF::Table  0.9.3   0.9.3  
 Yes
Unicode::Normalize  1.030.32   
 Yes

perl -v
This is perl 5, version 12, subversion 1 (v5.12.1) built for x86_64-linux

If you test, be sure to test with a diacritic that has a corresponding
ISOLatin1
mapping.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 6954] z39.50 results highlighting not sticking

2011-10-05 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6954

Katrin Fischer  changed:

   What|Removed |Added

 CC||katrin.fisc...@bsz-bw.de

--- Comment #7 from Katrin Fischer  2011-10-05 
07:14:16 UTC ---
I think it's not a new feature but a small improvement to make things easier.
+1 for inclusion.

-- 
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.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/