[koha-commits] updated branch master (5577540da7410b35caa266d1b370526b5d4c8ce3)

Koha Gitosis gitosis at git.koha.org
Wed Feb 17 12:46:29 CET 2010


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Koha GitWeb".

The branch, master has been updated
       via  5577540da7410b35caa266d1b370526b5d4c8ce3 (commit)
       via  44967351ef796efbc66746f4b1200f2ec60fec12 (commit)
       via  8724f88bdb7c0b302d9ba28054364d5dd0fb08d1 (commit)
       via  c353d9170769456d32286186bd0adb90fee7800a (commit)
       via  6827107ed48fadac534e34528c6855c65ef48bc4 (commit)
       via  599887a1855349de6bafe9c1b6ce155ed9be5fb5 (commit)
      from  8594f3f14196641040fe1900b6fec2e1b050df06 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 5577540da7410b35caa266d1b370526b5d4c8ce3
Author: Galen Charlton <gmcharlt at gmail.com>
Date:   Wed Feb 17 06:45:04 2010 -0500

    updated install instructions to include Locale::Currency::Format
    
    Signed-off-by: Galen Charlton <gmcharlt at gmail.com>

commit 44967351ef796efbc66746f4b1200f2ec60fec12
Author: Galen Charlton <gmcharlt at gmail.com>
Date:   Wed Feb 17 06:39:22 2010 -0500

    set Locale::Currency::Format dep test as DBrev 119
    
    Also fixed bug that prevented updatedatabase.pl
    from compiling if Locale::Currency::Format wasn't
    already installed.  To test to see if module is present,
    do
    
    eval{require Locale::Currency::Format};
    
    not
    
    eval{use Locale::Currency::Format};
    
    Signed-off-by: Galen Charlton <gmcharlt at gmail.com>

commit 8724f88bdb7c0b302d9ba28054364d5dd0fb08d1
Author: Chris Nighswonger <cnighswonger at foundations.edu>
Date:   Tue Feb 16 10:40:05 2010 -0500

    Bugfix: Moving sample_notices.sql to mandatory subdir
    
    Signed-off-by: Galen Charlton <gmcharlt at gmail.com>

commit c353d9170769456d32286186bd0adb90fee7800a
Author: Chris Nighswonger <cnighswonger at foundations.edu>
Date:   Tue Feb 16 10:43:26 2010 -0500

    Bugfix: [3/3] [TRANSLATION NEEDED] overdue_notices.pl does not process all advertised fields
    
    Updating mandatory sample notices sql files
    
    NOTE TO TRANSLATORS: Some of these will require new translations
    
    Signed-off-by: Galen Charlton <gmcharlt at gmail.com>

commit 6827107ed48fadac534e34528c6855c65ef48bc4
Author: Chris Nighswonger <cnighswonger at foundations.edu>
Date:   Tue Feb 16 10:56:03 2010 -0500

    Bugfix: [2/3] overdue_notices.pl does not process all advertised fields
    
    This patch adds a dependency requirement for Locale::Currency::Format
    
    NOTE: It does not adjust kohaversion.pl and sets the dev version to XXX.
    
    Signed-off-by: Galen Charlton <gmcharlt at gmail.com>

commit 599887a1855349de6bafe9c1b6ce155ed9be5fb5
Author: Chris Nighswonger <cnighswonger at foundations.edu>
Date:   Tue Feb 16 10:56:02 2010 -0500

    Bugfix: [1/3] overdue_notices.pl does not process all advertised fields
    
    Note: overdue_notices.pl really needs to be completely re-written.
    
    The script does not process all fields advertised in tools/letter.pl
    This patch adds code to process all fields advertised as well as any
    from the items table.
    
    It also adds two additional tags for use in the letter templates:
    
    <item></item> which should enclose all fields from the biblio, biblioitems,
    and items tables.
    
    <fine></fine> which should be enclosed by the item tag and should
    enclose a currency identifier per ISO 4217. If this tag is present with
    a proper identifier, the fine for that item will be displayed in the
    proper currency format. Note: ISO 4217 changes from time to time therefore
    all currencies may not be supported. If you find one that is not
    supported, please file a bug with the Locale::Currency::Format author
    Tan D Nguyen <tnguyen at cpan doe org>.
    
    An example of the implimentation of these two tags in a notice template
    might be like:
    
    The following item(s) is/are currently overdue:
    
    <item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <fine>GBP</fine></item>
    
    Which, assuming two items were overdue, would result in a notice like:
    
    The following item(s) is/are currently overdue:
    
    "A Short History of Western Civilization" by Harrison, John B, 909.09821 H2451, Barcode: 08030003 Fine: £3.50
    "History of Western Civilization" by Hayes, Carlton Joseph Huntley, 909.09821 H3261 v.1, Barcode: 08030004 Fine: £3.50
    
    Signed-off-by: Galen Charlton <gmcharlt at gmail.com>

-----------------------------------------------------------------------

Summary of changes:
 C4/Letters.pm                                      |   11 ++-
 INSTALL.debian                                     |    2 +-
 INSTALL.debian-lenny                               |    3 +-
 INSTALL.ubuntu                                     |    3 +-
 Makefile.PL                                        |    1 +
 about.pl                                           |    1 +
 .../data/mysql/en/mandatory/sample_notices.sql     |    2 +-
 .../mysql/fr-FR/1-Obligatoire/sample_notices.sql   |    2 +-
 .../data/mysql/pl-PL/mandatory/sample_notices.sql  |   12 ++--
 .../{en => ru-RU}/mandatory/sample_notices.sql     |    2 +-
 .../{optional => mandatory}/sample_notices.txt     |    0 
 .../data/mysql/ru-RU/optional/sample_notices.sql   |   22 ------
 .../{optional => mandatory}/sample_notices.sql     |    3 +-
 .../{optional => mandatory}/sample_notices.txt     |    0 
 installer/data/mysql/updatedatabase.pl             |   14 ++++
 kohaversion.pl                                     |    2 +-
 misc/cronjobs/overdue_notices.pl                   |   68 ++++++++++++++------
 17 files changed, 87 insertions(+), 61 deletions(-)
 copy installer/data/mysql/{en => ru-RU}/mandatory/sample_notices.sql (76%)
 rename installer/data/mysql/ru-RU/{optional => mandatory}/sample_notices.txt (100%)
 delete mode 100644 installer/data/mysql/ru-RU/optional/sample_notices.sql
 rename installer/data/mysql/uk-UA/{optional => mandatory}/sample_notices.sql (59%)
 rename installer/data/mysql/uk-UA/{optional => mandatory}/sample_notices.txt (100%)


hooks/post-receive
-- 
Koha GitWeb



More information about the koha-commits mailing list