Re: [Koha-devel] question/problem with date

2008-04-02 Thread Joe Atzberger
Paul -- if the incoming date is -00-00, then the result is : 02/00/0, which is > not really a date. > -00-00 is not really a date either, and certainly not ISO. Currently the module notices, warns, but stops short of returning undef. (My earlier versions were more strict about input.)

Re: [Koha-devel] Table sorting and articles

2008-04-02 Thread Owen Leonard
> One thing to keep in mind is that even if the catalog is in just one > language, say English or French, any tables derived from bibliographic > data may have to deal with a lot more than just the language of the > catalog Sure, and then there's the question of whether a predominantly-English

Re: [Koha-devel] Table sorting and articles

2008-04-02 Thread Galen Charlton
Hi, On Wed, Apr 2, 2008 at 10:24 AM, Owen Leonard <[EMAIL PROTECTED]> wrote: > I'm hoping the same can be done for other languages by implementing a > system preference that contains the articles ("the|an|a") in the > script above. One thing to keep in mind is that even if the catalog is in ju

Re: [Koha-devel] question/problem with date

2008-04-02 Thread Galen Charlton
Hi, On Wed, Apr 2, 2008 at 10:20 AM, Joshua Ferraro <[EMAIL PROTECTED]> wrote: > On Wed, Apr 2, 2008 at 9:54 AM, Galen Charlton > > Doing this would require going through a lot of code that uses > > format_date(), of course. Also, I think we should remove usage of > > "-00-00" to signif

[Koha-devel] Table sorting and articles

2008-04-02 Thread Owen Leonard
I've been adding a javascript-based table sorter to many tables in the 3.0 staff client and OPAC. It's a jquery plugin (http://tablesorter.com), and allows one to set custom parsers for dealing with specialized kinds of data. I implemented a special parser for English-language articles, so that tit

Re: [Koha-devel] question/problem with date

2008-04-02 Thread Joshua Ferraro
On Wed, Apr 2, 2008 at 9:54 AM, Galen Charlton <[EMAIL PROTECTED]> wrote: > Hi, > > > On Wed, Apr 2, 2008 at 5:30 AM, Paul POULAIN <[EMAIL PROTECTED]> wrote: > > It seems that the C4::Dates::format_date function, has a small problem : > > if the incoming date is -00-00, then the result is

Re: [Koha-devel] migrate from Koha-2.9 to koha-3-Beta

2008-04-02 Thread Ricardo Dias Marques
Hi Roxana... and everyone else! :) On Mon, Mar 31, 2008, Roxana Luz Fleipaz <[EMAIL PROTECTED]> wrote: > One of you can help me to migrate from Koha-2.9 to koha-3-Beta I think that you mean Koha 2.2.9 (and not Koha 2.9). There is a tutorial in the Koha Developer Wiki - http://wiki.koha.org - t

Re: [Koha-devel] question/problem with date

2008-04-02 Thread Galen Charlton
Hi, On Wed, Apr 2, 2008 at 5:30 AM, Paul POULAIN <[EMAIL PROTECTED]> wrote: > It seems that the C4::Dates::format_date function, has a small problem : > if the incoming date is -00-00, then the result is : 02/00/0, which > is not really a date. > I think we should get a '' (nothing) in th

Re: [Koha-devel] very nerdish geek onto the lazy git

2008-04-02 Thread Henri-Damien LAURENT
Ignacio Javier a écrit : > Hi all: > Hi alone > I'm trying to undo changes I've made on a lot (70) files in my kohaclone > directory, so trash them and revert all since the last commit I've made to > the origin branch, anyone has idea how using a git command or commands > sequence? > > I've trie

[Koha-devel] very nerdish geek onto the lazy git

2008-04-02 Thread Ignacio Javier
Hi all: I'm trying to undo changes I've made on a lot (70) files in my kohaclone directory, so trash them and revert all since the last commit I've made to the origin branch, anyone has idea how using a git command or commands sequence? I've tried a: git fetch git rebase --continue origin but

[Koha-devel] question/problem with date

2008-04-02 Thread Paul POULAIN
Hello, It seems that the C4::Dates::format_date function, has a small problem : if the incoming date is -00-00, then the result is : 02/00/0, which is not really a date. I think we should get a '' (nothing) in this case. I tried to understand why this happend, but could not understand. Do yo