[Koha-devel] I have a problem

2008-10-15 Thread Luis Maguina Silva
My name is Luis. I\'m running koha at San Marcos university. http://sisbib-03.unmsm.edu.pe:8080/cgi-bin/koha/about.pl I have a problem with rebuild_zebra.pl. 1. the staff members delete a record, then I search the record, koha retrieve this record, but don´t show me information, because the

Re: [Koha-devel] RFC: Improvements to Koha security and privacy

2008-10-15 Thread Nicolas Morin
On Wed, Oct 15, 2008 at 8:47 AM, Nicolas Morin [EMAIL PROTECTED] wrote: On Wed, Oct 8, 2008 at 11:49 AM, Krishnan Mani [EMAIL PROTECTED] wrote: Improvements To introduce an e-mail workflow requiring patrons to confirm membership. I'm not too sure about that: some might think it places an

[Koha-devel] hourly circulation policies

2008-10-15 Thread Paul POULAIN
Hello Daniel ( koha-dev), I'm reading your RFCs abour hourly circulation policies. and I have a question about them. Here in France, a common situation is the following : the students can issue ON SITE (in the library) some books (say 10), for the day. If they are happy with the book, they can

Re: [Koha-devel] adding a model abstraction ?

2008-10-15 Thread Henri-Damien LAURENT
Joe Atzberger a écrit : Marc -- I think you meant Marc++ ;) Looks cool. We have been talking about consolidating all the repetitive table operations in similar ways. I have an experimental implementation as C4::Table that also tries to provide baseline SELECT, UPDATE and eventually DELETE.

Re: [Koha-devel] adding a model abstraction ?

2008-10-15 Thread Paul POULAIN
Joe Atzberger a écrit : Marc -- Hi Joe, so, in fact, it's marc ++, right ;-) we (BibLibre) have decided to dedicate Marc half time on this kind of subjects, from nov, 1st, to dec, 31. Marc has a lot of ideas that, i'm sure will improve Koha performances code. (PS : Unless a new contract

Re: [Koha-devel] adding a model abstraction ?

2008-10-15 Thread Marc Chantreux
On Wed, Oct 15, 2008 at 10:45:07AM -0400, Joe Atzberger wrote: Marc -- yeah, i know ... that's almost a part of your autoreply, now :) It is a little more of an OO approach, and I'll be interested to see what you think of it. it would be a pleasure to me. I didn't use OO approach because

Re: [Koha-devel] Not know how to use finesMode

2008-10-15 Thread Michael Hafen
I'll assume you have the circulation and fines rules setup already for overdue fines. Also it sounds like you have Koha version 3, so I'll assume you do. Setting finesMode to production is the first step. The next is to make a cron job to run the script fines.pl once a day. There is an example

[Koha-devel] adding a model abstraction ?

2008-10-15 Thread Marc Chantreux
hello guys, I just rewritten the C4::Bookseller::AddBookseller and it now looks like: sub AddBookseller { _koha_insert_and_get_id( 'aqbooksellers', shift ); } _koha_insert_and_get_id is a function where i deal with DBI and all specific DBD tricks with reuse in mind. You can

Re: [Koha-devel] hourly circulation policies

2008-10-15 Thread Daniel Sweeney
Hi Paul, This is interesting. The scenario you describe would not be accounted for in the Hourly Circulation Policies specification. Libraries that I have talked to in the US and UK that have significant closed-stack or reserve collections don't seem to follow the model you talk about

Re: [Koha-devel] adding a model abstraction ?

2008-10-15 Thread Ryan Higgins
I highly favor adopting DBIx::Class or another db abstraction layer over writing our own lightweight abstraction layer. While it will seem lighter at first to create our own, we will want to add more functionality, multi-db support, etc. I think it is better to take advantage of the excellent

Re: [Koha-devel] I have a problem

2008-10-15 Thread Galen Charlton
Hi, On Tue, Oct 14, 2008 at 6:17 PM, Luis Maguina Silva [EMAIL PROTECTED] wrote: 3. I write a console (Debian etch) ./rebuild_zebra.pl -b -a -z /dev/null the koha show me :can\'t use an undefined value as a hash reference at rebuild_zebra.pl line 87 the line 87 says: my $biblioserverdir =

Re: [Koha-devel] adding a model abstraction ?

2008-10-15 Thread Chris Nighswonger
On Wed, Oct 15, 2008 at 12:41 PM, Ryan Higgins [EMAIL PROTECTED] wrote: I highly favor adopting DBIx::Class or another db abstraction layer over writing our own lightweight abstraction layer. While it will seem lighter at first to create our own, we will want to add more functionality,

[Koha-devel] Constraints on issues tables

2008-10-15 Thread Galen Charlton
Hi, I've found at least one Koha database that has multiple issues rows for the same item but different patrons. This doesn't map well to the reality of loaning physical items, unless somebody's slipped in a Star Trek-style replicator feature, so I propose the following changes to constraints on

Re: [Koha-devel] Constraints on issues tables

2008-10-15 Thread Joe Atzberger
All sound good to me. On Wed, Oct 15, 2008 at 6:37 PM, Galen Charlton [EMAIL PROTECTED]wrote: Hi, I've found at least one Koha database that has multiple issues rows for the same item but different patrons. This doesn't map well to the reality of loaning physical items, unless somebody's

Re: [Koha-devel] Constraints on issues tables

2008-10-15 Thread Chris Cormack
Hi Galen Does the issues table now only contain current issues? Ie no history of past issues How do we find out a borrowers reading history then? (People in NZ like this feature a lot, especially places like retirement homes so the library doesnt send them the same books all the time) Im hoping

Re: [Koha-devel] Constraints on issues tables

2008-10-15 Thread Galen Charlton
Hi, On Wed, Oct 15, 2008 at 7:12 PM, Chris Cormack [EMAIL PROTECTED] wrote: Does the issues table now only contain current issues? Ie no history of past issues Past issues were moved to old_issues a while back, so the reading history is still retained until purged or anonymized. Regards,

Re: [Koha-devel] Not know how to use finesMode

2008-10-15 Thread Joe Atzberger
The example crontab file was altered to make it's examples invalid. They look like lines for cron, not crontab. Please see the original crontab.example: http://git.koha.org/cgi-bin/gitweb.cgi?p=Koha;a=blob;f=misc/cronjobs/crontab.example;hb=830d1f19b458fce4ba9c03bd9aa7759e9f698def --Joe