[koha-commits] main Koha release repository branch master updated. v3.12.00-beta1-1320-gd33f9b6

Git repo owner gitmaster at git.koha-community.org
Mon Oct 14 23:07:40 CEST 2013


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 "main Koha release repository".

The branch, master has been updated
       via  d33f9b6d8442390d009c2447df18c026f7b9ff1b (commit)
       via  da07b41e115fc4d3012a28e3746edaf4242de653 (commit)
       via  e0b0ae20531736ede2cd1113baf16323cb69b3d9 (commit)
       via  79e3a884aeb8c48e950430b4e292739bda229e85 (commit)
       via  09b8ce2a5f6ef81a2bc3c347a92d01ba7bc5845d (commit)
       via  398b9dfdbd6f0bba6f001c44e6d2576b3b5a29ec (commit)
       via  92a415932cc5a30b03d8b73443eb110c300cbcbf (commit)
       via  9f2f0dbc4a1e46c799b013fcf574aeec37b80526 (commit)
       via  bdf7988c4607297c057e7a014719b6af47fbdcb7 (commit)
       via  8a480ad75d3c78d8cf02959fb8430f4b54f82c1f (commit)
      from  ffd625b88f87663c84a55b7b96e56a32b606e36d (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 d33f9b6d8442390d009c2447df18c026f7b9ff1b
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Mon Oct 14 21:21:30 2013 +0000

    Bug 8798: (follow-up) add libdbix-class-schema-loader-perl to koha-perldeps
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit da07b41e115fc4d3012a28e3746edaf4242de653
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Mon Oct 14 21:03:40 2013 +0000

    Bug 8798: (follow-up) update the DBIC schema class files
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit e0b0ae20531736ede2cd1113baf16323cb69b3d9
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Mon Oct 14 20:57:24 2013 +0000

    bug 8798: (follow-up) pass DB connection params to DBIC schema updater explicitly
    
    This patch changes update_dbix_class_files.pl so that the connection
    parameters to the reference database must be passed explicitly via
    command-line switches, rather than grabbing them from the current Koha
    context.
    
    The purpose of this is to intentionally put up a roadblock to reduce
    the chance that a developer (or release manager) accidentally updates
    the schema files to include local testing cruft such as temporary
    tables.
    
    Usage is now as follows:
    
    [1] Create an empty database
    [2] Load the schema creation script into it, e.g.,
    
    mysql -u dbic -pdbic dbic < installer/data/mysql/kohastructure.sql
    
    [3] Run the schema updater:
    
    ./misc/devel/update_dbix_class_files.pl --db_user=dbic --db_name=dbic --db_passwd=dbic
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 79e3a884aeb8c48e950430b4e292739bda229e85
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Mon Oct 14 20:41:43 2013 +0000

    Bug 10636: DBrev 3.13.00.030
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 09b8ce2a5f6ef81a2bc3c347a92d01ba7bc5845d
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Thu Aug 29 12:23:39 2013 -0400

    Bug 10636 - patronimage should have borrowernumber as PK, not cardnumber
    
    Test Plan:
    1) Apply this patch
    2) Run updatedatabase.pl
    3) Enable patronimages
    4) Verify patron images are still displaying correctly
    5) Test deleting a patron image
    6) Test adding a patron image from moremember.pl
    7) Test adding a patron image from tools/picture-upload.pl
    
    Signed-off-by: Srdjan <srdjan at catalyst.net.nz>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 398b9dfdbd6f0bba6f001c44e6d2576b3b5a29ec
Author: Chris Cormack <chrisc at catalyst.net.nz>
Date:   Wed Jun 19 10:17:21 2013 +1200

    Bug 8798: moving code to Koha::Database and adding tests
    
    - Fixing a bug .. ping does not exist we need to use connected
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 92a415932cc5a30b03d8b73443eb110c300cbcbf
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Tue Jun 18 13:14:43 2013 -0400

    Bug 8798: (follow-up) update schema files
    
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 9f2f0dbc4a1e46c799b013fcf574aeec37b80526
Author: Elliott Davis <elliott at bywatersolutions.com>
Date:   Mon Sep 3 22:22:12 2012 -0500

    Bug 8798: (follow-up) remove tabs
    
    Signed-off-by: wajasu <matted-34813 at mypacks.net>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit bdf7988c4607297c057e7a014719b6af47fbdcb7
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Fri Sep 21 12:16:04 2012 -0400

    Bug 8798: (follow-up) rename schema class updater script
    
    updateDatabase.pl is a bit too close to updatedatabase.pl in installer
    and may cause some confusion. I would suggest update_dbix_class_files.pl
    as a unambiguous and descriptive name for this file.
    
    Signed-off-by: wajasu <matted-34813 at mypacks.net>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 8a480ad75d3c78d8cf02959fb8430f4b54f82c1f
Author: Elliott Davis <elliott at bywatersolutions.com>
Date:   Sun Sep 2 08:45:40 2012 -0500

    Bug 8798: DBIx::Class base classes for all Koha tables
    
    * Added base class files for all tables in koha using
    DBIx::Class::Schema::Loader.
    * Added a (very basic) test file for C4::Context
    * Also added dependencies in required files.
    
    To Test:
    
    [1] Install patch
    [2] Make sure you can still connect to Koha
    [3] You may optionally run this test script:
    
            use Koha::Database;
            use Data::Dumper;
            my $db = Koha::Database->new();
            my $schema = $db->schema();
            print Dumper($schema->resultset("Borrower"));
    
        If you run this file you should get a DBIx dump of the borrowers table.
    
    Signed-off-by: wajasu <matted-34813 at mypacks.net>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

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

Summary of changes:
 C4/Context.pm                                      |    1 -
 C4/Installer/PerlDependencies.pm                   |    5 +
 C4/Members.pm                                      |   26 +-
 Koha/Database.pm                                   |  185 ++++
 Koha/Schema.pm                                     |   20 +
 Koha/Schema/Result/Accountline.pm                  |  222 +++++
 Koha/Schema/Result/Accountoffset.pm                |  106 ++
 Koha/Schema/Result/ActionLog.pm                    |  107 +++
 Koha/Schema/Result/ActionLogs.pm                   |   90 ++
 Koha/Schema/Result/Alert.pm                        |   83 ++
 Koha/Schema/Result/Aqbasket.pm                     |  228 +++++
 Koha/Schema/Result/Aqbasketgroup.pm                |  143 +++
 Koha/Schema/Result/Aqbookseller.pm                 |  400 ++++++++
 Koha/Schema/Result/Aqbudget.pm                     |  246 +++++
 Koha/Schema/Result/Aqbudgetborrower.pm             |   99 ++
 Koha/Schema/Result/Aqbudgetperiod.pm               |  119 +++
 Koha/Schema/Result/AqbudgetsPlanning.pm            |  121 +++
 Koha/Schema/Result/Aqcontract.pm                   |  128 +++
 Koha/Schema/Result/Aqinvoice.pm                    |  164 ++++
 Koha/Schema/Result/Aqorder.pm                      |  454 +++++++++
 Koha/Schema/Result/Aqorderdelivery.pm              |   75 ++
 Koha/Schema/Result/AqordersItem.pm                 |   95 ++
 Koha/Schema/Result/AqordersTransfer.pm             |  135 +++
 Koha/Schema/Result/AuthHeader.pm                   |  124 +++
 Koha/Schema/Result/AuthSubfieldStructure.pm        |  193 ++++
 Koha/Schema/Result/AuthTagStructure.pm             |  135 +++
 Koha/Schema/Result/AuthType.pm                     |  100 ++
 Koha/Schema/Result/AuthorisedValue.pm              |  116 +++
 Koha/Schema/Result/AuthorisedValuesBranch.pm       |   96 ++
 Koha/Schema/Result/Biblio.pm                       |  336 +++++++
 Koha/Schema/Result/BiblioFramework.pm              |   67 ++
 Koha/Schema/Result/Biblioimage.pm                  |  104 ++
 Koha/Schema/Result/Biblioitem.pm                   |  352 +++++++
 Koha/Schema/Result/Borrower.pm                     | 1010 ++++++++++++++++++++
 Koha/Schema/Result/BorrowerAttribute.pm            |  102 ++
 Koha/Schema/Result/BorrowerAttributeType.pm        |  170 ++++
 Koha/Schema/Result/BorrowerAttributeTypesBranch.pm |   97 ++
 Koha/Schema/Result/BorrowerFile.pm                 |  127 +++
 Koha/Schema/Result/BorrowerMessagePreference.pm    |  197 ++++
 .../Result/BorrowerMessageTransportPreference.pm   |  115 +++
 Koha/Schema/Result/BorrowerModification.pm         |  577 +++++++++++
 Koha/Schema/Result/Branch.pm                       |  462 +++++++++
 Koha/Schema/Result/BranchBorrowerCircRule.pm       |  108 +++
 Koha/Schema/Result/BranchItemRule.pm               |  116 +++
 Koha/Schema/Result/BranchTransferLimit.pm          |   89 ++
 Koha/Schema/Result/Branchcategory.pm               |  116 +++
 Koha/Schema/Result/Branchrelation.pm               |  115 +++
 Koha/Schema/Result/Branchtransfer.pm               |  161 ++++
 Koha/Schema/Result/Browser.pm                      |   74 ++
 Koha/Schema/Result/CategoriesBranch.pm             |   97 ++
 Koha/Schema/Result/Category.pm                     |  233 +++++
 Koha/Schema/Result/City.pm                         |   90 ++
 Koha/Schema/Result/ClassSortRule.pm                |   91 ++
 Koha/Schema/Result/ClassSource.pm                  |  106 ++
 Koha/Schema/Result/Closure.pm                      |   79 ++
 Koha/Schema/Result/ClosureRrule.pm                 |   69 ++
 Koha/Schema/Result/Collection.pm                   |   83 ++
 Koha/Schema/Result/CollectionTracking.pm           |   77 ++
 Koha/Schema/Result/Course.pm                       |  189 ++++
 Koha/Schema/Result/CourseInstructor.pm             |   99 ++
 Koha/Schema/Result/CourseItem.pm                   |  177 ++++
 Koha/Schema/Result/CourseReserve.pm                |  133 +++
 Koha/Schema/Result/CreatorBatch.pm                 |  182 ++++
 Koha/Schema/Result/CreatorImage.pm                 |   92 ++
 Koha/Schema/Result/CreatorLayout.pm                |  188 ++++
 Koha/Schema/Result/CreatorTemplate.pm              |  211 ++++
 Koha/Schema/Result/Currency.pm                     |  127 +++
 Koha/Schema/Result/DefaultBorrowerCircRule.pm      |   82 ++
 Koha/Schema/Result/DefaultBranchCircRule.pm        |   97 ++
 Koha/Schema/Result/DefaultBranchItemRule.pm        |   90 ++
 Koha/Schema/Result/DefaultCircRule.pm              |   85 ++
 Koha/Schema/Result/Deletedbiblio.pm                |  144 +++
 Koha/Schema/Result/Deletedbiblioitem.pm            |  314 ++++++
 Koha/Schema/Result/Deletedborrower.pm              |  543 +++++++++++
 Koha/Schema/Result/Deleteditem.pm                  |  372 +++++++
 Koha/Schema/Result/Ethnicity.pm                    |   66 ++
 Koha/Schema/Result/ExportFormat.pm                 |  125 +++
 Koha/Schema/Result/Fieldmapping.pm                 |   90 ++
 Koha/Schema/Result/HoldFillTarget.pm               |  157 +++
 Koha/Schema/Result/ImportAuth.pm                   |   93 ++
 Koha/Schema/Result/ImportBatch.pm                  |  242 +++++
 Koha/Schema/Result/ImportBiblio.pm                 |  125 +++
 Koha/Schema/Result/ImportItem.pm                   |  125 +++
 Koha/Schema/Result/ImportRecord.pm                 |  278 ++++++
 Koha/Schema/Result/ImportRecordMatches.pm          |   77 ++
 Koha/Schema/Result/Issue.pm                        |  188 ++++
 Koha/Schema/Result/Issuingrule.pm                  |  222 +++++
 Koha/Schema/Result/Item.pm                         |  593 ++++++++++++
 .../Result/ItemCirculationAlertPreference.pm       |   89 ++
 Koha/Schema/Result/Itemtype.pm                     |  149 +++
 Koha/Schema/Result/LanguageDescription.pm          |   89 ++
 Koha/Schema/Result/LanguageRfc4646ToIso639.pm      |   73 ++
 Koha/Schema/Result/LanguageScriptBidi.pm           |   53 +
 Koha/Schema/Result/LanguageScriptMapping.pm        |   53 +
 Koha/Schema/Result/LanguageSubtagRegistry.pm       |   89 ++
 Koha/Schema/Result/Letter.pm                       |  134 +++
 Koha/Schema/Result/Linktracker.pm                  |   97 ++
 Koha/Schema/Result/MarcMatcher.pm                  |  144 +++
 Koha/Schema/Result/MarcSubfieldStructure.pm        |  198 ++++
 Koha/Schema/Result/MarcTagStructure.pm             |  111 +++
 Koha/Schema/Result/Matchcheck.pm                   |  128 +++
 Koha/Schema/Result/MatcherMatchpoint.pm            |   85 ++
 Koha/Schema/Result/Matchpoint.pm                   |  159 +++
 Koha/Schema/Result/MatchpointComponent.pm          |  147 +++
 Koha/Schema/Result/MatchpointComponentNorm.pm      |   85 ++
 Koha/Schema/Result/Message.pm                      |  101 ++
 Koha/Schema/Result/MessageAttribute.pm             |  120 +++
 Koha/Schema/Result/MessageQueue.pm                 |  177 ++++
 Koha/Schema/Result/MessageTransport.pm             |  177 ++++
 Koha/Schema/Result/MessageTransportType.pm         |  124 +++
 Koha/Schema/Result/NeedMergeAuthority.pm           |   72 ++
 Koha/Schema/Result/Notify.pm                       |   94 ++
 Koha/Schema/Result/Nozebra.pm                      |   64 ++
 Koha/Schema/Result/OaiSet.pm                       |  144 +++
 Koha/Schema/Result/OaiSetsBiblio.pm                |   99 ++
 Koha/Schema/Result/OaiSetsDescription.pm           |   70 ++
 Koha/Schema/Result/OaiSetsMapping.pm               |  100 ++
 Koha/Schema/Result/OldIssue.pm                     |  188 ++++
 Koha/Schema/Result/OldReserve.pm                   |  269 ++++++
 Koha/Schema/Result/OpacNews.pm                     |  118 +++
 Koha/Schema/Result/Overduerule.pm                  |  140 +++
 Koha/Schema/Result/Patroncard.pm                   |  105 ++
 Koha/Schema/Result/Patronimage.pm                  |   89 ++
 Koha/Schema/Result/PendingOfflineOperation.pm      |  119 +++
 Koha/Schema/Result/Permission.pm                   |  117 +++
 Koha/Schema/Result/PluginData.pm                   |   74 ++
 Koha/Schema/Result/Printer.pm                      |   74 ++
 Koha/Schema/Result/PrintersProfile.pm              |  171 ++++
 Koha/Schema/Result/Quote.pm                        |   83 ++
 Koha/Schema/Result/Rating.pm                       |  120 +++
 Koha/Schema/Result/RepeatableHoliday.pm            |  103 ++
 Koha/Schema/Result/ReportsDictionary.pm            |  111 +++
 Koha/Schema/Result/Reserve.pm                      |  293 ++++++
 Koha/Schema/Result/Reserveconstraint.pm            |   82 ++
 Koha/Schema/Result/Review.pm                       |  141 +++
 Koha/Schema/Result/Roadtype.pm                     |   66 ++
 Koha/Schema/Result/SavedReport.pm                  |   83 ++
 Koha/Schema/Result/SavedSql.pm                     |  170 ++++
 Koha/Schema/Result/SearchHistory.pm                |   88 ++
 Koha/Schema/Result/Serial.pm                       |  147 +++
 Koha/Schema/Result/Serialitem.pm                   |   99 ++
 Koha/Schema/Result/ServicesThrottle.pm             |   66 ++
 Koha/Schema/Result/Session.pm                      |   64 ++
 Koha/Schema/Result/SocialData.pm                   |  101 ++
 Koha/Schema/Result/SpecialHoliday.pm               |  114 +++
 Koha/Schema/Result/Statistic.pm                    |  133 +++
 Koha/Schema/Result/Stopword.pm                     |   45 +
 Koha/Schema/Result/Subscription.pm                 |  500 ++++++++++
 Koha/Schema/Result/Subscriptionhistory.pm          |  113 +++
 Koha/Schema/Result/Subscriptionroutinglist.pm      |  128 +++
 Koha/Schema/Result/Suggestion.pm                   |  307 ++++++
 Koha/Schema/Result/Systempreference.pm             |   87 ++
 Koha/Schema/Result/Tag.pm                          |   66 ++
 Koha/Schema/Result/TagAll.pm                       |  132 +++
 Koha/Schema/Result/TagsApproval.pm                 |  130 +++
 Koha/Schema/Result/TagsIndex.pm                    |  108 +++
 Koha/Schema/Result/TmpHoldsqueue.pm                |  149 +++
 Koha/Schema/Result/TransportCost.pm                |  117 +++
 Koha/Schema/Result/UserPermission.pm               |  111 +++
 Koha/Schema/Result/Userflag.pm                     |   97 ++
 Koha/Schema/Result/Virtualshelfcontent.pm          |  146 +++
 Koha/Schema/Result/Virtualshelfshare.pm            |  130 +++
 Koha/Schema/Result/Virtualshelve.pm                |  179 ++++
 Koha/Schema/Result/Z3950server.pm                  |  196 ++++
 Koha/Schema/Result/Zebraqueue.pm                   |  111 +++
 circ/circulation.pl                                |    2 +-
 debian/control                                     |    2 +
 install_misc/debian.packages                       |    1 +
 installer/data/mysql/kohastructure.sql             |    6 +-
 installer/data/mysql/updatedatabase.pl             |   45 +
 .../intranet-tmpl/prog/en/includes/circ-menu.inc   |    2 +-
 .../intranet-tmpl/prog/en/includes/circ-menu.tt    |    2 +-
 kohaversion.pl                                     |    2 +-
 members/boraccount.pl                              |    2 +-
 members/deletemem.pl                               |    2 +-
 members/files.pl                                   |    2 +-
 members/mancredit.pl                               |    2 +-
 members/maninvoice.pl                              |    2 +-
 members/member-flags.pl                            |    2 +-
 members/member-password.pl                         |    2 +-
 members/moremember.pl                              |    2 +-
 members/notices.pl                                 |    2 +-
 members/patronimage.pl                             |   18 +-
 members/pay.pl                                     |    2 +-
 members/paycollect.pl                              |    2 +-
 members/printfeercpt.pl                            |    2 +-
 members/printinvoice.pl                            |    2 +-
 members/readingrec.pl                              |    2 +-
 members/routing-lists.pl                           |    2 +-
 members/statistics.pl                              |    2 +-
 misc/devel/update_dbix_class_files.pl              |   46 +
 opac/opac-memberentry.pl                           |    2 +-
 opac/opac-patron-image.pl                          |    3 +-
 opac/sco/sco-main.pl                               |    2 +-
 opac/sco/sco-patron-image.pl                       |    4 +-
 patroncards/create-pdf.pl                          |    2 +-
 t/Context.t                                        |   10 +
 t/db_dependent/Koha_Database.t                     |   27 +
 tools/picture-upload.pl                            |    2 +-
 tools/viewlog.pl                                   |    2 +-
 200 files changed, 24704 insertions(+), 55 deletions(-)
 create mode 100644 Koha/Database.pm
 create mode 100644 Koha/Schema.pm
 create mode 100644 Koha/Schema/Result/Accountline.pm
 create mode 100644 Koha/Schema/Result/Accountoffset.pm
 create mode 100644 Koha/Schema/Result/ActionLog.pm
 create mode 100644 Koha/Schema/Result/ActionLogs.pm
 create mode 100644 Koha/Schema/Result/Alert.pm
 create mode 100644 Koha/Schema/Result/Aqbasket.pm
 create mode 100644 Koha/Schema/Result/Aqbasketgroup.pm
 create mode 100644 Koha/Schema/Result/Aqbookseller.pm
 create mode 100644 Koha/Schema/Result/Aqbudget.pm
 create mode 100644 Koha/Schema/Result/Aqbudgetborrower.pm
 create mode 100644 Koha/Schema/Result/Aqbudgetperiod.pm
 create mode 100644 Koha/Schema/Result/AqbudgetsPlanning.pm
 create mode 100644 Koha/Schema/Result/Aqcontract.pm
 create mode 100644 Koha/Schema/Result/Aqinvoice.pm
 create mode 100644 Koha/Schema/Result/Aqorder.pm
 create mode 100644 Koha/Schema/Result/Aqorderdelivery.pm
 create mode 100644 Koha/Schema/Result/AqordersItem.pm
 create mode 100644 Koha/Schema/Result/AqordersTransfer.pm
 create mode 100644 Koha/Schema/Result/AuthHeader.pm
 create mode 100644 Koha/Schema/Result/AuthSubfieldStructure.pm
 create mode 100644 Koha/Schema/Result/AuthTagStructure.pm
 create mode 100644 Koha/Schema/Result/AuthType.pm
 create mode 100644 Koha/Schema/Result/AuthorisedValue.pm
 create mode 100644 Koha/Schema/Result/AuthorisedValuesBranch.pm
 create mode 100644 Koha/Schema/Result/Biblio.pm
 create mode 100644 Koha/Schema/Result/BiblioFramework.pm
 create mode 100644 Koha/Schema/Result/Biblioimage.pm
 create mode 100644 Koha/Schema/Result/Biblioitem.pm
 create mode 100644 Koha/Schema/Result/Borrower.pm
 create mode 100644 Koha/Schema/Result/BorrowerAttribute.pm
 create mode 100644 Koha/Schema/Result/BorrowerAttributeType.pm
 create mode 100644 Koha/Schema/Result/BorrowerAttributeTypesBranch.pm
 create mode 100644 Koha/Schema/Result/BorrowerFile.pm
 create mode 100644 Koha/Schema/Result/BorrowerMessagePreference.pm
 create mode 100644 Koha/Schema/Result/BorrowerMessageTransportPreference.pm
 create mode 100644 Koha/Schema/Result/BorrowerModification.pm
 create mode 100644 Koha/Schema/Result/Branch.pm
 create mode 100644 Koha/Schema/Result/BranchBorrowerCircRule.pm
 create mode 100644 Koha/Schema/Result/BranchItemRule.pm
 create mode 100644 Koha/Schema/Result/BranchTransferLimit.pm
 create mode 100644 Koha/Schema/Result/Branchcategory.pm
 create mode 100644 Koha/Schema/Result/Branchrelation.pm
 create mode 100644 Koha/Schema/Result/Branchtransfer.pm
 create mode 100644 Koha/Schema/Result/Browser.pm
 create mode 100644 Koha/Schema/Result/CategoriesBranch.pm
 create mode 100644 Koha/Schema/Result/Category.pm
 create mode 100644 Koha/Schema/Result/City.pm
 create mode 100644 Koha/Schema/Result/ClassSortRule.pm
 create mode 100644 Koha/Schema/Result/ClassSource.pm
 create mode 100644 Koha/Schema/Result/Closure.pm
 create mode 100644 Koha/Schema/Result/ClosureRrule.pm
 create mode 100644 Koha/Schema/Result/Collection.pm
 create mode 100644 Koha/Schema/Result/CollectionTracking.pm
 create mode 100644 Koha/Schema/Result/Course.pm
 create mode 100644 Koha/Schema/Result/CourseInstructor.pm
 create mode 100644 Koha/Schema/Result/CourseItem.pm
 create mode 100644 Koha/Schema/Result/CourseReserve.pm
 create mode 100644 Koha/Schema/Result/CreatorBatch.pm
 create mode 100644 Koha/Schema/Result/CreatorImage.pm
 create mode 100644 Koha/Schema/Result/CreatorLayout.pm
 create mode 100644 Koha/Schema/Result/CreatorTemplate.pm
 create mode 100644 Koha/Schema/Result/Currency.pm
 create mode 100644 Koha/Schema/Result/DefaultBorrowerCircRule.pm
 create mode 100644 Koha/Schema/Result/DefaultBranchCircRule.pm
 create mode 100644 Koha/Schema/Result/DefaultBranchItemRule.pm
 create mode 100644 Koha/Schema/Result/DefaultCircRule.pm
 create mode 100644 Koha/Schema/Result/Deletedbiblio.pm
 create mode 100644 Koha/Schema/Result/Deletedbiblioitem.pm
 create mode 100644 Koha/Schema/Result/Deletedborrower.pm
 create mode 100644 Koha/Schema/Result/Deleteditem.pm
 create mode 100644 Koha/Schema/Result/Ethnicity.pm
 create mode 100644 Koha/Schema/Result/ExportFormat.pm
 create mode 100644 Koha/Schema/Result/Fieldmapping.pm
 create mode 100644 Koha/Schema/Result/HoldFillTarget.pm
 create mode 100644 Koha/Schema/Result/ImportAuth.pm
 create mode 100644 Koha/Schema/Result/ImportBatch.pm
 create mode 100644 Koha/Schema/Result/ImportBiblio.pm
 create mode 100644 Koha/Schema/Result/ImportItem.pm
 create mode 100644 Koha/Schema/Result/ImportRecord.pm
 create mode 100644 Koha/Schema/Result/ImportRecordMatches.pm
 create mode 100644 Koha/Schema/Result/Issue.pm
 create mode 100644 Koha/Schema/Result/Issuingrule.pm
 create mode 100644 Koha/Schema/Result/Item.pm
 create mode 100644 Koha/Schema/Result/ItemCirculationAlertPreference.pm
 create mode 100644 Koha/Schema/Result/Itemtype.pm
 create mode 100644 Koha/Schema/Result/LanguageDescription.pm
 create mode 100644 Koha/Schema/Result/LanguageRfc4646ToIso639.pm
 create mode 100644 Koha/Schema/Result/LanguageScriptBidi.pm
 create mode 100644 Koha/Schema/Result/LanguageScriptMapping.pm
 create mode 100644 Koha/Schema/Result/LanguageSubtagRegistry.pm
 create mode 100644 Koha/Schema/Result/Letter.pm
 create mode 100644 Koha/Schema/Result/Linktracker.pm
 create mode 100644 Koha/Schema/Result/MarcMatcher.pm
 create mode 100644 Koha/Schema/Result/MarcSubfieldStructure.pm
 create mode 100644 Koha/Schema/Result/MarcTagStructure.pm
 create mode 100644 Koha/Schema/Result/Matchcheck.pm
 create mode 100644 Koha/Schema/Result/MatcherMatchpoint.pm
 create mode 100644 Koha/Schema/Result/Matchpoint.pm
 create mode 100644 Koha/Schema/Result/MatchpointComponent.pm
 create mode 100644 Koha/Schema/Result/MatchpointComponentNorm.pm
 create mode 100644 Koha/Schema/Result/Message.pm
 create mode 100644 Koha/Schema/Result/MessageAttribute.pm
 create mode 100644 Koha/Schema/Result/MessageQueue.pm
 create mode 100644 Koha/Schema/Result/MessageTransport.pm
 create mode 100644 Koha/Schema/Result/MessageTransportType.pm
 create mode 100644 Koha/Schema/Result/NeedMergeAuthority.pm
 create mode 100644 Koha/Schema/Result/Notify.pm
 create mode 100644 Koha/Schema/Result/Nozebra.pm
 create mode 100644 Koha/Schema/Result/OaiSet.pm
 create mode 100644 Koha/Schema/Result/OaiSetsBiblio.pm
 create mode 100644 Koha/Schema/Result/OaiSetsDescription.pm
 create mode 100644 Koha/Schema/Result/OaiSetsMapping.pm
 create mode 100644 Koha/Schema/Result/OldIssue.pm
 create mode 100644 Koha/Schema/Result/OldReserve.pm
 create mode 100644 Koha/Schema/Result/OpacNews.pm
 create mode 100644 Koha/Schema/Result/Overduerule.pm
 create mode 100644 Koha/Schema/Result/Patroncard.pm
 create mode 100644 Koha/Schema/Result/Patronimage.pm
 create mode 100644 Koha/Schema/Result/PendingOfflineOperation.pm
 create mode 100644 Koha/Schema/Result/Permission.pm
 create mode 100644 Koha/Schema/Result/PluginData.pm
 create mode 100644 Koha/Schema/Result/Printer.pm
 create mode 100644 Koha/Schema/Result/PrintersProfile.pm
 create mode 100644 Koha/Schema/Result/Quote.pm
 create mode 100644 Koha/Schema/Result/Rating.pm
 create mode 100644 Koha/Schema/Result/RepeatableHoliday.pm
 create mode 100644 Koha/Schema/Result/ReportsDictionary.pm
 create mode 100644 Koha/Schema/Result/Reserve.pm
 create mode 100644 Koha/Schema/Result/Reserveconstraint.pm
 create mode 100644 Koha/Schema/Result/Review.pm
 create mode 100644 Koha/Schema/Result/Roadtype.pm
 create mode 100644 Koha/Schema/Result/SavedReport.pm
 create mode 100644 Koha/Schema/Result/SavedSql.pm
 create mode 100644 Koha/Schema/Result/SearchHistory.pm
 create mode 100644 Koha/Schema/Result/Serial.pm
 create mode 100644 Koha/Schema/Result/Serialitem.pm
 create mode 100644 Koha/Schema/Result/ServicesThrottle.pm
 create mode 100644 Koha/Schema/Result/Session.pm
 create mode 100644 Koha/Schema/Result/SocialData.pm
 create mode 100644 Koha/Schema/Result/SpecialHoliday.pm
 create mode 100644 Koha/Schema/Result/Statistic.pm
 create mode 100644 Koha/Schema/Result/Stopword.pm
 create mode 100644 Koha/Schema/Result/Subscription.pm
 create mode 100644 Koha/Schema/Result/Subscriptionhistory.pm
 create mode 100644 Koha/Schema/Result/Subscriptionroutinglist.pm
 create mode 100644 Koha/Schema/Result/Suggestion.pm
 create mode 100644 Koha/Schema/Result/Systempreference.pm
 create mode 100644 Koha/Schema/Result/Tag.pm
 create mode 100644 Koha/Schema/Result/TagAll.pm
 create mode 100644 Koha/Schema/Result/TagsApproval.pm
 create mode 100644 Koha/Schema/Result/TagsIndex.pm
 create mode 100644 Koha/Schema/Result/TmpHoldsqueue.pm
 create mode 100644 Koha/Schema/Result/TransportCost.pm
 create mode 100644 Koha/Schema/Result/UserPermission.pm
 create mode 100644 Koha/Schema/Result/Userflag.pm
 create mode 100644 Koha/Schema/Result/Virtualshelfcontent.pm
 create mode 100644 Koha/Schema/Result/Virtualshelfshare.pm
 create mode 100644 Koha/Schema/Result/Virtualshelve.pm
 create mode 100644 Koha/Schema/Result/Z3950server.pm
 create mode 100644 Koha/Schema/Result/Zebraqueue.pm
 create mode 100755 misc/devel/update_dbix_class_files.pl
 create mode 100755 t/Context.t
 create mode 100644 t/db_dependent/Koha_Database.t


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list