Re: [Koha-devel] Question about Koha 3.0 Urdu Support!

2009-03-09 Thread Joe Atzberger
Muhammed -- I don't know anything about Urdu cataloging, but perhaps you want to use UNIMARC for "marcflavour" instead of MARC21. UNIMARC handles UTF-8 encoding better, but it a different standard than MARC21. --Joe On Sat, Mar 7, 2009 at 3:21 AM, Muahmmad Wasim wrote: > Hi, > > I'm trying t

Re: [Koha-devel] Mass updating a field

2009-03-09 Thread Michael Hafen
Yeah, that's a problem. I guess for now it'll have to be done with SQL. I will make a bug for this one. UPDATE systempreferences SET options = 'none|whitespace|T-prefix|cuecat' where variable = 'itemBarcodeInputFilter'; That should give you the option at least. Or you could do it directly with

[Koha-devel] Bulkmarcimport and authorities

2009-03-09 Thread Jason Macki
Hello, I'm converting data from our old library system into Koha version 3, running on Linux, and I'm having a problem with authorities. First, I did a bulk import, using bulkmarcimport.pl, then I ran rebuild_nozebra.pl. It was my understanding that rebuild_nozebra.pl would build the authoriti

[Koha-devel] (no subject)

2009-03-09 Thread Edisnel Carrazana Castro
Greetings, I have been installed koha 3.00.01, using UNIMARC, but during the import of records with bulkmarcimport, I have the fallowing error: <".Use of uninitialized value in length at C4/Biblio.pm line 3130, line 207.">. I did the same with koha3.00 and all good. I will appreciate your an

[Koha-devel] Importing data in Koha 3.00.01

2009-03-09 Thread Edisnel Carrazana Castro
Greetings, I have been installed koha 3.00.01, using UNIMARC, but during the import of records with bulkmarcimport, I have the fallowing error: <".Use of uninitialized value in length at C4/Biblio.pm line 3130, line 207.">. I did the same with koha3.00 and all good. I will appreciate your a

[Koha-devel] C4::Members Attributes tightener integration

2009-03-09 Thread LAURENT Henri-Damien
I would like to propose that C4::Members::Attributes could be more tightly integrated into C4::Members so that AddMember(%member) or ModMember,... or whatever... would also call Attributes add. This would allow ppl to have only one function call to add a Member and not many little functions to ca

Re: [Koha-devel] C4::Members Attributes tightener integration

2009-03-09 Thread Joe Atzberger
I have mixed opinions about this. On the one hand it seems reasonable, and on the other it seems unnecessary. There are only three places that call AddMember: memberentry, import_borrowers and Auth_with_ldap. In fact, I recently coded a feature for a client so that import_borrowers has a runtime

Re: [Koha-devel] C4::Members Attributes tightener integration

2009-03-09 Thread LAURENT Henri-Damien
Joe Atzberger a écrit : > I have mixed opinions about this. On the one hand it seems > reasonable, and on the other it seems unnecessary. There are only > three places that call AddMember: memberentry, import_borrowers and > Auth_with_ldap. In fact, I recently coded a feature for a client so