Bug 17600: Standardize our EXPORT_OK
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 9 Nov 2016 12:06:44 +0000 (12:06 +0000)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 16 Jul 2021 06:58:47 +0000 (08:58 +0200)
commit9d6d641d1f8b77271800f43bc027b651f9aea52b
treea848342e002cb6a11552ef550b5c262577a68b7d
parentaf7e41d1142573666d302a8475274ea58e5c99f4
Bug 17600: Standardize our EXPORT_OK

On bug 17591 we discovered that there was something weird going on with
the way we export and use subroutines/modules.
This patch tries to standardize our EXPORT to use EXPORT_OK only.

That way we will need to explicitely define the subroutine we want to
use from a module.

This patch is a squashed version of:
Bug 17600: After export.pl
Bug 17600: After perlimport
Bug 17600: Manual changes
Bug 17600: Other manual changes after second perlimports run
Bug 17600: Fix tests

And a lot of other manual changes.

export.pl is a dirty script that can be found on bug 17600.

"perlimport" is:
git clone https://github.com/oalders/App-perlimports.git
cd App-perlimports/
cpanm --installdeps .
export PERL5LIB="$PERL5LIB:/kohadevbox/koha/App-perlimports/lib"
find . \( -name "*.pl" -o -name "*.pm" \) -exec perl App-perlimports/script/perlimports --inplace-edit --no-preserve-unused --filename {} \;

The ideas of this patch are to:
* use EXPORT_OK instead of EXPORT
* perltidy the EXPORT_OK list
* remove '&' before the subroutine names
* remove some uneeded use statements
* explicitely import the subroutines we need within the controllers or
modules

Note that the private subroutines (starting with _) should not be
exported (and not used from outside of the module except from tests).

EXPORT vs EXPORT_OK (from
https://www.thegeekstuff.com/2010/06/perl-exporter-examples/)
"""
Export allows to export the functions and variables of modules to user’s namespace using the standard import method. This way, we don’t need to create the objects for the modules to access it’s members.

@EXPORT and @EXPORT_OK are the two main variables used during export operation.

@EXPORT contains list of symbols (subroutines and variables) of the module to be exported into the caller namespace.

@EXPORT_OK does export of symbols on demand basis.
"""

If this patch caused a conflict with a patch you wrote prior to its
push:
* Make sure you are not reintroducing a "use" statement that has been
removed
* "$subroutine" is not exported by the C4::$MODULE module
means that you need to add the subroutine to the @EXPORT_OK list
* Bareword "$subroutine" not allowed while "strict subs"
means that you didn't imported the subroutine from the module:
  - use $MODULE qw( $subroutine list );
You can also use the fully qualified namespace: C4::$MODULE::$subroutine

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
1311 files changed:
C4/Accounts.pm
C4/Acquisition.pm
C4/Auth.pm
C4/Auth_with_cas.pm
C4/Auth_with_ldap.pm
C4/Auth_with_shibboleth.pm
C4/AuthoritiesMarc.pm
C4/AuthoritiesMarc/MARC21.pm
C4/BackgroundJob.pm
C4/Barcodes.pm
C4/Barcodes/EAN13.pm
C4/Barcodes/annual.pm
C4/Barcodes/hbyymmincr.pm
C4/Biblio.pm
C4/Breeding.pm
C4/Budgets.pm
C4/Calendar.pm
C4/Charset.pm
C4/Circulation.pm
C4/ClassSortRoutine.pm
C4/ClassSortRoutine/Dewey.pm
C4/ClassSortRoutine/Generic.pm
C4/ClassSortRoutine/LCC.pm
C4/ClassSource.pm
C4/ClassSplitRoutine.pm
C4/Context.pm
C4/Contract.pm
C4/CourseReserves.pm
C4/Creators.pm
C4/Creators/Lib.pm
C4/Creators/PDF.pm
C4/Creators/Profile.pm
C4/Creators/Template.pm
C4/External/BakerTaylor.pm
C4/External/OverDrive.pm
C4/External/Syndetics.pm
C4/Heading.pm
C4/Heading/MARC21.pm
C4/Heading/UNIMARC.pm
C4/HoldsQueue.pm
C4/ILSDI/Services.pm
C4/ImportBatch.pm
C4/ImportExportFramework.pm
C4/InstallAuth.pm
C4/Installer.pm
C4/Installer/PerlModules.pm
C4/Installer/UpgradeBackup.pm
C4/ItemCirculationAlertPreference.pm
C4/Items.pm
C4/Koha.pm
C4/Labels/Label.pm
C4/Languages.pm
C4/Letters.pm
C4/Linker.pm
C4/Linker/Default.pm
C4/Linker/FirstMatch.pm
C4/Linker/LastMatch.pm
C4/Log.pm
C4/MarcModificationTemplates.pm
C4/Matcher.pm
C4/Members.pm
C4/Members/Statistics.pm
C4/Message.pm
C4/OAI/Sets.pm
C4/Output.pm
C4/Output/JSONStream.pm
C4/Overdues.pm
C4/Patroncards.pm
C4/Patroncards/Patroncard.pm
C4/Record.pm
C4/Reports.pm
C4/Reports/Guided.pm
C4/Reserves.pm
C4/Ris.pm
C4/RotatingCollections.pm
C4/SIP/ILS.pm
C4/SIP/ILS/Item.pm
C4/SIP/ILS/Transaction/Checkin.pm
C4/SIP/ILS/Transaction/Checkout.pm
C4/SIP/ILS/Transaction/Hold.pm
C4/SIP/ILS/Transaction/Renew.pm
C4/SIP/ILS/Transaction/RenewAll.pm
C4/SIP/SIPServer.pm
C4/SIP/Sip.pm
C4/Scheduler.pm
C4/Scrubber.pm
C4/Search.pm
C4/Search/History.pm
C4/Search/PazPar2.pm
C4/Serials.pm
C4/Serials/Frequency.pm
C4/Serials/Numberpattern.pm
C4/Service.pm
C4/ShelfBrowser.pm
C4/SocialData.pm
C4/Stats.pm
C4/Suggestions.pm
C4/Tags.pm
C4/Templates.pm
C4/TmplTokenType.pm
C4/UsageStats.pm
C4/Utils/DataTables/Members.pm
C4/Utils/DataTables/VirtualShelves.pm
C4/XISBN.pm
C4/XSLT.pm
Koha/Account.pm
Koha/Account/CreditType.pm
Koha/Account/CreditTypes.pm
Koha/Account/DebitType.pm
Koha/Account/DebitTypes.pm
Koha/Account/Line.pm
Koha/Account/Lines.pm
Koha/Account/Offset.pm
Koha/Account/Offsets.pm
Koha/Acquisition/Basket.pm
Koha/Acquisition/Bookseller/Contact.pm
Koha/Acquisition/Bookseller/Contacts.pm
Koha/Acquisition/Currencies.pm
Koha/Acquisition/Currency.pm
Koha/Acquisition/Invoice/Adjustment.pm
Koha/Acquisition/Invoice/Adjustments.pm
Koha/Acquisition/Order.pm
Koha/Acquisition/Order/Claim.pm
Koha/Acquisition/Order/Claims.pm
Koha/Acquisition/Orders.pm
Koha/AdvancedEditorMacro.pm
Koha/AdvancedEditorMacros.pm
Koha/ApiKey.pm
Koha/ApiKeys.pm
Koha/ArticleRequest.pm
Koha/ArticleRequests.pm
Koha/AudioAlert.pm
Koha/AudioAlerts.pm
Koha/AuthUtils.pm
Koha/AuthorisedValue.pm
Koha/AuthorisedValueCategories.pm
Koha/AuthorisedValueCategory.pm
Koha/AuthorisedValues.pm
Koha/Authorities.pm
Koha/Authority/MergeRequests.pm
Koha/Authority/Type.pm
Koha/Authority/Types.pm
Koha/BackgroundJob.pm
Koha/BackgroundJob/BatchUpdateAuthority.pm
Koha/BackgroundJob/BatchUpdateBiblio.pm
Koha/Biblio.pm
Koha/Biblio/Metadatas.pm
Koha/BiblioFramework.pm
Koha/BiblioFrameworks.pm
Koha/BiblioUtils.pm
Koha/BiblioUtils/Iterator.pm
Koha/Biblioitem.pm
Koha/Biblioitems.pm
Koha/Biblios.pm
Koha/Cache.pm
Koha/Cache/Object.pm
Koha/Calendar.pm
Koha/Cash/Register.pm
Koha/Cash/Register/Action.pm
Koha/Cash/Register/Actions.pm
Koha/Cash/Register/Cashup.pm
Koha/Cash/Register/Cashups.pm
Koha/Cash/Registers.pm
Koha/Charges/Fees.pm
Koha/Checkout.pm
Koha/Checkouts.pm
Koha/Checkouts/ReturnClaims.pm
Koha/CirculationRules.pm
Koha/Cities.pm
Koha/City.pm
Koha/ClassSortRule.pm
Koha/ClassSortRules.pm
Koha/ClassSource.pm
Koha/ClassSources.pm
Koha/ClassSplitRule.pm
Koha/Club.pm
Koha/Club/Enrollment.pm
Koha/Club/Enrollment/Field.pm
Koha/Club/Enrollment/Fields.pm
Koha/Club/Enrollments.pm
Koha/Club/Field.pm
Koha/Club/Fields.pm
Koha/Club/Hold.pm
Koha/Club/Hold/PatronHold.pm
Koha/Club/Hold/PatronHolds.pm
Koha/Club/Holds.pm
Koha/Club/Template.pm
Koha/Club/Template/EnrollmentField.pm
Koha/Club/Template/EnrollmentFields.pm
Koha/Club/Template/Field.pm
Koha/Club/Template/Fields.pm
Koha/Club/Templates.pm
Koha/Clubs.pm
Koha/Config.pm
Koha/Config/SysPref.pm
Koha/Config/SysPrefs.pm
Koha/Course.pm
Koha/Course/Instructor.pm
Koha/Course/Instructors.pm
Koha/Course/Item.pm
Koha/Course/Items.pm
Koha/Course/Reserve.pm
Koha/Course/Reserves.pm
Koha/Courses.pm
Koha/CoverImage.pm
Koha/CoverImages.pm
Koha/CsvProfile.pm
Koha/CsvProfiles.pm
Koha/Database.pm
Koha/Desk.pm
Koha/Desks.pm
Koha/EDI.pm
Koha/Edifact.pm
Koha/Edifact/Line.pm
Koha/Edifact/Order.pm
Koha/Edifact/Transport.pm
Koha/Email.pm
Koha/Exporter/Record.pm
Koha/ExternalContent.pm
Koha/ExternalContent/OverDrive.pm
Koha/ExternalContent/RecordedBooks.pm
Koha/Filter/MARC/EmbedItemsAvailability.pm
Koha/Filter/MARC/EmbedSeeFromHeadings.pm
Koha/Filter/MARC/Null.pm
Koha/Filter/MARC/ViewPolicy.pm
Koha/Hold.pm
Koha/Holds.pm
Koha/I18N.pm
Koha/Illrequest.pm
Koha/Illrequest/Config.pm
Koha/Illrequest/Logger.pm
Koha/Item.pm
Koha/Item/Search/Field.pm
Koha/Item/Transfer.pm
Koha/Item/Transfer/Limit.pm
Koha/Item/Transfers.pm
Koha/ItemType.pm
Koha/ItemTypes.pm
Koha/Items.pm
Koha/KeyboardShortcut.pm
Koha/KeyboardShortcuts.pm
Koha/Libraries.pm
Koha/Library.pm
Koha/Library/Group.pm
Koha/Library/Groups.pm
Koha/Library/OverDriveInfo.pm
Koha/Library/OverDriveInfos.pm
Koha/Linktracker.pm
Koha/List/Patron.pm
Koha/Logger.pm
Koha/MarcSubfieldStructure.pm
Koha/MarcSubfieldStructures.pm
Koha/MessageAttribute.pm
Koha/MessageAttributes.pm
Koha/MetaSearcher.pm
Koha/MetadataRecord.pm
Koha/MetadataRecord/Authority.pm
Koha/News.pm
Koha/NewsItem.pm
Koha/Notice/Message.pm
Koha/Notice/Messages.pm
Koha/Notice/Template.pm
Koha/Notice/Templates.pm
Koha/OAI/Server/Description.pm
Koha/OAI/Server/GetRecord.pm
Koha/OAI/Server/ListBase.pm
Koha/OAI/Server/ListSets.pm
Koha/OAI/Server/Repository.pm
Koha/Object.pm
Koha/Object/Limit/Library.pm
Koha/Objects.pm
Koha/Old/Holds.pm
Koha/Patron.pm
Koha/Patron/Category.pm
Koha/Patron/Discharge.pm
Koha/Patron/Image.pm
Koha/Patron/Images.pm
Koha/Patron/Message.pm
Koha/Patron/Messages.pm
Koha/Patron/Modification.pm
Koha/Patron/Modifications.pm
Koha/Patron/Password/Recovery.pm
Koha/Patron/Relationship.pm
Koha/Patron/Relationships.pm
Koha/Patrons.pm
Koha/Patrons/Import.pm
Koha/Plugins.pm
Koha/Plugins/Base.pm
Koha/Plugins/Handler.pm
Koha/Plugins/Method.pm
Koha/Plugins/Methods.pm
Koha/PseudonymizedTransaction.pm
Koha/PseudonymizedTransactions.pm
Koha/Quote.pm
Koha/Quotes.pm
Koha/REST/Plugin/PluginRoutes.pm
Koha/REST/Plugin/Query.pm
Koha/REST/V1.pm
Koha/REST/V1/Acquisitions/Funds.pm
Koha/REST/V1/Acquisitions/Orders.pm
Koha/REST/V1/Acquisitions/Vendors.pm
Koha/REST/V1/AdvancedEditorMacro.pm
Koha/REST/V1/Auth.pm
Koha/REST/V1/Biblios.pm
Koha/REST/V1/CashRegisters/Cashups.pm
Koha/REST/V1/Checkouts.pm
Koha/REST/V1/CirculationRules.pm
Koha/REST/V1/Cities.pm
Koha/REST/V1/Clubs/Holds.pm
Koha/REST/V1/Config/SMTP/Servers.pm
Koha/REST/V1/Holds.pm
Koha/REST/V1/ImportBatchProfiles.pm
Koha/REST/V1/Items.pm
Koha/REST/V1/Libraries.pm
Koha/REST/V1/OAuth.pm
Koha/REST/V1/Patrons.pm
Koha/REST/V1/Patrons/Account.pm
Koha/REST/V1/Patrons/Attributes.pm
Koha/REST/V1/Patrons/Password.pm
Koha/REST/V1/Quotes.pm
Koha/REST/V1/ReturnClaims.pm
Koha/REST/V1/Static.pm
Koha/REST/V1/TransferLimits.pm
Koha/Rating.pm
Koha/Ratings.pm
Koha/RecordProcessor.pm
Koha/Report.pm
Koha/Reports.pm
Koha/Review.pm
Koha/Reviews.pm
Koha/SMS/Provider.pm
Koha/SMS/Providers.pm
Koha/Schema/Loader/mysql.pm
Koha/Script.pm
Koha/SearchEngine.pm
Koha/SearchEngine/Elasticsearch.pm
Koha/SearchEngine/Elasticsearch/Indexer.pm
Koha/SearchEngine/Elasticsearch/QueryBuilder.pm
Koha/SearchEngine/Elasticsearch/Search.pm
Koha/SearchEngine/Indexer.pm
Koha/SearchEngine/QueryBuilder.pm
Koha/SearchEngine/Search.pm
Koha/SearchEngine/Zebra/Indexer.pm
Koha/SearchEngine/Zebra/Search.pm
Koha/SearchField.pm
Koha/SearchFields.pm
Koha/SearchMarcMap.pm
Koha/SearchMarcMaps.pm
Koha/Serial.pm
Koha/Serial/Item.pm
Koha/Serial/Items.pm
Koha/Serials.pm
Koha/SharedContent.pm
Koha/SimpleMARC.pm
Koha/Sitemapper/Writer.pm
Koha/Statistic.pm
Koha/Statistics.pm
Koha/StockRotationItem.pm
Koha/Subscription.pm
Koha/Subscription/Frequencies.pm
Koha/Subscription/Frequency.pm
Koha/Subscription/Histories.pm
Koha/Subscription/History.pm
Koha/Subscription/Routinglist.pm
Koha/Subscription/Routinglists.pm
Koha/Subscriptions.pm
Koha/Suggestion.pm
Koha/SuggestionEngine.pm
Koha/SuggestionEngine/Plugin/AuthorityFile.pm
Koha/SuggestionEngine/Plugin/ExplodedTerms.pm
Koha/SuggestionEngine/Plugin/LibrisSpellcheck.pm
Koha/SuggestionEngine/Plugin/Null.pm
Koha/Suggestions.pm
Koha/Tag.pm
Koha/Tags.pm
Koha/Tags/Approval.pm
Koha/Tags/Approvals.pm
Koha/Tags/Index.pm
Koha/Tags/Indexes.pm
Koha/Template/Plugin/Asset.pm
Koha/Template/Plugin/AudioAlerts.pm
Koha/Template/Plugin/AuthorisedValues.pm
Koha/Template/Plugin/Categories.pm
Koha/Template/Plugin/I18N.pm
Koha/Template/Plugin/KohaDates.pm
Koha/Template/Plugin/KohaPlugins.pm
Koha/Template/Plugin/To.pm
Koha/Token.pm
Koha/UploadedFiles.pm
Koha/Uploader.pm
Koha/Util/FrameworkPlugin.pm
Koha/Util/MARC.pm
Koha/Util/OpenDocument.pm
Koha/Virtualshelf.pm
Koha/Virtualshelfcontent.pm
Koha/Virtualshelfcontents.pm
Koha/Virtualshelfshare.pm
Koha/Virtualshelfshares.pm
Koha/Virtualshelves.pm
Koha/XSLT/Security.pm
Koha/Z3950Responder/Session.pm
Koha/Z3950Server.pm
Koha/Z3950Servers.pm
Koha/pdfformat/layout2pages.pm
Koha/pdfformat/layout2pagesde.pm
Koha/pdfformat/layout3pages.pm
Koha/pdfformat/layout3pagesfr.pm
about.pl
acqui/acqui-home.pl
acqui/add_user_search.pl
acqui/addorder.pl
acqui/addorderiso2709.pl
acqui/ajax-getauthvaluedropbox.pl
acqui/basket.pl
acqui/basketgroup.pl
acqui/basketheader.pl
acqui/booksellers.pl
acqui/cancelorder.pl
acqui/check_budget_total.pl
acqui/check_uniqueness.pl
acqui/duplicate_orders.pl
acqui/edi_ean.pl
acqui/edifactmsgs.pl
acqui/edimsg.pl
acqui/finishreceive.pl
acqui/histsearch.pl
acqui/invoice-files.pl
acqui/invoice.pl
acqui/invoices.pl
acqui/lateorders-export.pl
acqui/lateorders.pl
acqui/modordernotes.pl
acqui/neworderempty.pl
acqui/newordersubscription.pl
acqui/newordersuggestion.pl
acqui/ordered.pl
acqui/orderreceive.pl
acqui/parcel.pl
acqui/parcels.pl
acqui/showorder.pl
acqui/spent.pl
acqui/supplier.pl
acqui/transferorder.pl
acqui/uncertainprice.pl
acqui/updatesupplier.pl
acqui/z3950_search.pl
admin/add_user_search.pl
admin/additional-fields.pl
admin/admin-home.pl
admin/adveditorshortcuts.pl
admin/aqbudgetperiods.pl
admin/aqbudgets.pl
admin/aqcontract.pl
admin/aqplan.pl
admin/audio_alerts.pl
admin/auth_subfields_structure.pl
admin/auth_tag_structure.pl
admin/authorised_values.pl
admin/authtypes.pl
admin/background_jobs.pl
admin/biblio_framework.pl
admin/branch_transfer_limits.pl
admin/branches.pl
admin/cash_registers.pl
admin/categories.pl
admin/check_budget_parent.pl
admin/check_parent_total.pl
admin/checkmarc.pl
admin/cities.pl
admin/classsources.pl
admin/clone-rules.pl
admin/columns_settings.pl
admin/credit_types.pl
admin/currency.pl
admin/debit_types.pl
admin/desks.pl
admin/didyoumean.pl
admin/edi_accounts.pl
admin/edi_ean_accounts.pl
admin/import_export_framework.pl
admin/item_circulation_alerts.pl
admin/items_search_field.pl
admin/items_search_fields.pl
admin/itemtypes.pl
admin/koha2marclinks.pl
admin/library_groups.pl
admin/localization.pl
admin/marc_subfields_structure.pl
admin/marctagstructure.pl
admin/matching-rules.pl
admin/oai_set_mappings.pl
admin/oai_sets.pl
admin/overdrive.pl
admin/patron-attr-types.pl
admin/preferences.pl
admin/searchengine/elasticsearch/mappings.pl
admin/share_content.pl
admin/smart-rules.pl
admin/sms_providers.pl
admin/smtp_servers.pl
admin/sru_modmapping.pl
admin/systempreferences.pl
admin/transfer_limits.pl
admin/transport-cost-matrix.pl
admin/usage_statistics.pl
admin/z3950servers.pl
api/v1/app.pl
authorities/auth_finder.pl
authorities/authorities-home.pl
authorities/authorities.pl
authorities/blinddetail-biblio-search.pl
authorities/detail-biblio-search.pl
authorities/detail.pl
authorities/export.pl
authorities/merge.pl
authorities/merge_ajax.pl
authorities/ysearch.pl
basket/basket.pl
basket/downloadcart.pl
basket/sendbasket.pl
catalogue/ISBDdetail.pl
catalogue/MARCdetail.pl
catalogue/detail.pl
catalogue/export.pl
catalogue/getitem-ajax.pl
catalogue/imageviewer.pl
catalogue/issuehistory.pl
catalogue/item-export.pl
catalogue/itemsearch.pl
catalogue/labeledMARCdetail.pl
catalogue/moredetail.pl
catalogue/search-history.pl
catalogue/search.pl
catalogue/showmarc.pl
catalogue/stockrotation.pl
catalogue/updateitem.pl
cataloguing/addbiblio.pl
cataloguing/addbooks.pl
cataloguing/additem.pl
cataloguing/editor.pl
cataloguing/linkitem.pl
cataloguing/merge.pl
cataloguing/merge_ajax.pl
cataloguing/moveitem.pl
cataloguing/value_builder/EXAMPLE.pl
cataloguing/value_builder/barcode.pl
cataloguing/value_builder/barcode_manual.pl
cataloguing/value_builder/callnumber-KU.pl
cataloguing/value_builder/callnumber.pl
cataloguing/value_builder/cn_browser.pl
cataloguing/value_builder/dateaccessioned.pl
cataloguing/value_builder/macles.pl
cataloguing/value_builder/marc21_field_006.pl
cataloguing/value_builder/marc21_field_007.pl
cataloguing/value_builder/marc21_field_008.pl
cataloguing/value_builder/marc21_field_008_authorities.pl
cataloguing/value_builder/marc21_field_008_classifications.pl
cataloguing/value_builder/marc21_leader.pl
cataloguing/value_builder/marc21_leader_authorities.pl
cataloguing/value_builder/marc21_linking_section.pl
cataloguing/value_builder/normarc_field_007.pl
cataloguing/value_builder/normarc_field_008.pl
cataloguing/value_builder/normarc_leader.pl
cataloguing/value_builder/stocknumberAV.pl
cataloguing/value_builder/stocknumberam123.pl
cataloguing/value_builder/unimarc_field_010.pl
cataloguing/value_builder/unimarc_field_100.pl
cataloguing/value_builder/unimarc_field_100_authorities.pl
cataloguing/value_builder/unimarc_field_105.pl
cataloguing/value_builder/unimarc_field_106.pl
cataloguing/value_builder/unimarc_field_110.pl
cataloguing/value_builder/unimarc_field_115a.pl
cataloguing/value_builder/unimarc_field_115b.pl
cataloguing/value_builder/unimarc_field_116.pl
cataloguing/value_builder/unimarc_field_117.pl
cataloguing/value_builder/unimarc_field_120.pl
cataloguing/value_builder/unimarc_field_121a.pl
cataloguing/value_builder/unimarc_field_121b.pl
cataloguing/value_builder/unimarc_field_122.pl
cataloguing/value_builder/unimarc_field_123a.pl
cataloguing/value_builder/unimarc_field_123d.pl
cataloguing/value_builder/unimarc_field_123e.pl
cataloguing/value_builder/unimarc_field_123f.pl
cataloguing/value_builder/unimarc_field_123g.pl
cataloguing/value_builder/unimarc_field_123i.pl
cataloguing/value_builder/unimarc_field_123j.pl
cataloguing/value_builder/unimarc_field_124.pl
cataloguing/value_builder/unimarc_field_124a.pl
cataloguing/value_builder/unimarc_field_124b.pl
cataloguing/value_builder/unimarc_field_124c.pl
cataloguing/value_builder/unimarc_field_124d.pl
cataloguing/value_builder/unimarc_field_124e.pl
cataloguing/value_builder/unimarc_field_124f.pl
cataloguing/value_builder/unimarc_field_124g.pl
cataloguing/value_builder/unimarc_field_125.pl
cataloguing/value_builder/unimarc_field_125a.pl
cataloguing/value_builder/unimarc_field_125b.pl
cataloguing/value_builder/unimarc_field_126.pl
cataloguing/value_builder/unimarc_field_126a.pl
cataloguing/value_builder/unimarc_field_126b.pl
cataloguing/value_builder/unimarc_field_127.pl
cataloguing/value_builder/unimarc_field_128a.pl
cataloguing/value_builder/unimarc_field_128b.pl
cataloguing/value_builder/unimarc_field_128c.pl
cataloguing/value_builder/unimarc_field_130.pl
cataloguing/value_builder/unimarc_field_135a.pl
cataloguing/value_builder/unimarc_field_140.pl
cataloguing/value_builder/unimarc_field_141.pl
cataloguing/value_builder/unimarc_field_210c.pl
cataloguing/value_builder/unimarc_field_210c_bis.pl
cataloguing/value_builder/unimarc_field_225a.pl
cataloguing/value_builder/unimarc_field_225a_bis.pl
cataloguing/value_builder/unimarc_field_4XX.pl
cataloguing/value_builder/unimarc_field_686a.pl
cataloguing/value_builder/unimarc_field_700-4.pl
cataloguing/value_builder/unimarc_leader.pl
cataloguing/ysearch.pl
cataloguing/z3950_auth_search.pl
cataloguing/z3950_search.pl
circ/add_message.pl
circ/article-request-slip.pl
circ/article-requests.pl
circ/bookcount.pl
circ/branchoverdues.pl
circ/branchtransfers.pl
circ/checkout-notes.pl
circ/circulation-home.pl
circ/circulation.pl
circ/del_message.pl
circ/hold-transfer-slip.pl
circ/offline-mf.pl
circ/offline.pl
circ/on-site_checkouts.pl
circ/overdue.pl
circ/pendingreserves.pl
circ/renew.pl
circ/request-article.pl
circ/reserveratios.pl
circ/returns.pl
circ/set-library.pl
circ/transfer-slip.pl
circ/transfers_to_send.pl
circ/transferstoreceive.pl
circ/view_holdsqueue.pl
circ/waitingreserves.pl
circ/ysearch.pl
clubs/club-enrollments.pl
clubs/clubs-add-modify.pl
clubs/clubs.pl
clubs/patron-clubs-tab.pl
clubs/patron-enroll.pl
clubs/templates-add-modify.pl
course_reserves/add_items.pl
course_reserves/batch_add_items.pl
course_reserves/batch_rm_items.pl
course_reserves/course-details.pl
course_reserves/course-reserves.pl
course_reserves/course.pl
course_reserves/mod_course.pl
docs/CAS/CASProxy/examples/proxy_cas_callback.pl
docs/CAS/CASProxy/examples/proxy_cas_data.pl
errors/400.pl
errors/401.pl
errors/402.pl
errors/403.pl
errors/404.pl
errors/500.pl
help.pl
ill/ill-requests.pl
installer/data/mysql/backfill_statistics.pl
installer/data/mysql/fix_unclosed_nonaccruing_fines_bug17135.pl
installer/data/mysql/update22to30.pl
installer/html-template-to-template-toolkit.pl
installer/install.pl
installer/onboarding.pl
koha_perl_deps.pl
labels/label-create-csv.pl
labels/label-create-pdf.pl
labels/label-create-xml.pl
labels/label-edit-batch.pl
labels/label-edit-layout.pl
labels/label-edit-profile.pl
labels/label-edit-range.pl
labels/label-edit-template.pl
labels/label-home.pl
labels/label-item-search.pl
labels/label-manage.pl
labels/label-print.pl
labels/spinelabel-home.pl
labels/spinelabel-print.pl
lib/CGI/Session/Serialize/yamlxs.pm
mainpage.pl
members/accountline-details.pl
members/apikeys.pl
members/boraccount.pl
members/cancel-charge.pl
members/deletemem.pl
members/discharge.pl
members/discharges.pl
members/files.pl
members/guarantor_search.pl
members/holdshistory.pl
members/housebound.pl
members/ill-requests.pl
members/mancredit.pl
members/maninvoice.pl
members/member-flags.pl
members/member-password.pl
members/member.pl
members/memberentry.pl
members/members-home.pl
members/members-update-do.pl
members/members-update.pl
members/merge-patrons.pl
members/mod_debarment.pl
members/moremember.pl
members/notices.pl
members/pay.pl
members/paycollect.pl
members/print_overdues.pl
members/printfeercpt.pl
members/printinvoice.pl
members/printslip.pl
members/purchase-suggestions.pl
members/readingrec.pl
members/routing-lists.pl
members/setstatus.pl
members/statistics.pl
members/summary-print.pl
members/update-child.pl
misc/add_date_fields_to_marc_records.pl
misc/admin/set_password.pl
misc/background_jobs_worker.pl
misc/batchCompareMARCvsFrameworks.pl
misc/batchDeleteUnusedSubfields.pl
misc/batchImportMARCWithBiblionumbers.pl
misc/batchRebuildBiblioTables.pl
misc/batchRebuildItemsTables.pl
misc/batchRepairMissingBiblionumbers.pl
misc/batchdeletebiblios.pl
misc/bin/connexion_import_daemon.pl
misc/check_sysprefs.pl
misc/commit_file.pl
misc/cronjobs/advance_notices.pl
misc/cronjobs/archive_purchase_suggestions.pl
misc/cronjobs/automatic_checkin.pl
misc/cronjobs/automatic_item_modification_by_age.pl
misc/cronjobs/automatic_renewals.pl
misc/cronjobs/batch_anonymise.pl
misc/cronjobs/build_browser_and_cloud.pl
misc/cronjobs/cart_to_shelf.pl
misc/cronjobs/check-url-quick.pl
misc/cronjobs/cleanup_database.pl
misc/cronjobs/cloud-kw.pl
misc/cronjobs/create_koc_db.pl
misc/cronjobs/delete_items.pl
misc/cronjobs/delete_patrons.pl
misc/cronjobs/delete_records_via_leader.pl
misc/cronjobs/edi_cron.pl
misc/cronjobs/fines.pl
misc/cronjobs/gather_print_notices.pl
misc/cronjobs/holds/auto_unsuspend_holds.pl
misc/cronjobs/holds/build_holds_queue.pl
misc/cronjobs/holds/cancel_expired_holds.pl
misc/cronjobs/holds/cancel_unfilled_holds.pl
misc/cronjobs/holds/holds_reminder.pl
misc/cronjobs/import_webservice_batch.pl
misc/cronjobs/longoverdue.pl
misc/cronjobs/membership_expiry.pl
misc/cronjobs/merge_authorities.pl
misc/cronjobs/notice_unprocessed_suggestions.pl
misc/cronjobs/overdue_notices.pl
misc/cronjobs/patron_emailer.pl
misc/cronjobs/plugins_nightly.pl
misc/cronjobs/process_message_queue.pl
misc/cronjobs/purge_suggestions.pl
misc/cronjobs/reconcile_balances.pl
misc/cronjobs/rss/rss.pl
misc/cronjobs/runreport.pl
misc/cronjobs/serialsUpdate.pl
misc/cronjobs/share_usage_with_koha_community.pl
misc/cronjobs/sitemap.pl
misc/cronjobs/staticfines.pl
misc/cronjobs/stockrotation.pl
misc/cronjobs/thirdparty/TalkingTech_itiva_inbound.pl
misc/cronjobs/thirdparty/TalkingTech_itiva_outbound.pl
misc/cronjobs/update_patrons_category.pl
misc/cronjobs/update_totalissues.pl
misc/cronjobs/writeoff_debts.pl
misc/devel/add_missing_filters.pl
misc/devel/coverage.pl
misc/devel/create_superlibrarian.pl
misc/devel/get_prepared_letter.pl
misc/devel/install_plugins.pl
misc/devel/update_dbix_class_files.pl
misc/export_borrowers.pl
misc/export_records.pl
misc/exportauth.pl
misc/import_patrons.pl
misc/link_bibs_to_authorities.pl
misc/load_testing/benchmark_circulation.pl
misc/load_testing/benchmark_staff.pl
misc/load_testing/benchmark_webservices.pl
misc/load_yaml.pl
misc/maintenance/UNIMARC_fix_collectiontitle.pl
misc/maintenance/UNIMARC_sync_date_created_with_marc_biblio.pl
misc/maintenance/auth_show_hidden_data.pl
misc/maintenance/borrowers-force-messaging-defaults.pl
misc/maintenance/check_syspref_cache.pl
misc/maintenance/cmp_sysprefs.pl
misc/maintenance/fix_accountlines_date.pl
misc/maintenance/fix_accountlines_rmdupfines_bug8253.pl
misc/maintenance/fix_mysql_constraints.pl
misc/maintenance/fix_tags_weight.pl
misc/maintenance/generate_MARC21Languages.pl
misc/maintenance/process_record_through_filter.pl
misc/maintenance/remove_items_from_biblioitems.pl
misc/maintenance/sanitize_records.pl
misc/maintenance/search_for_data_inconsistencies.pl
misc/maintenance/touch_all_biblios.pl
misc/maintenance/touch_all_items.pl
misc/maintenance/update_authorities.pl
misc/migration_tools/22_to_30/convert_to_utf8.pl
misc/migration_tools/22_to_30/export_Authorities.pl
misc/migration_tools/22_to_30/export_Authorities_xml.pl
misc/migration_tools/22_to_30/missing090field.pl
misc/migration_tools/22_to_30/move_marc_to_authheader.pl
misc/migration_tools/22_to_30/move_marc_to_biblioitems.pl
misc/migration_tools/22_to_30/rebuild_leader.pl
misc/migration_tools/22_to_30/rebuild_unimarc_100.pl
misc/migration_tools/buildCOUNTRY.pl
misc/migration_tools/buildEDITORS.pl
misc/migration_tools/buildLANG.pl
misc/migration_tools/build_oai_sets.pl
misc/migration_tools/bulkmarcimport.pl
misc/migration_tools/checkNonIndexedBiblios.pl
misc/migration_tools/create_analytical_rel.pl
misc/migration_tools/ifla/update.pl
misc/migration_tools/import_lexile.pl
misc/migration_tools/koha-svc.pl
misc/migration_tools/rebuild_zebra.pl
misc/migration_tools/remove_unused_authorities.pl
misc/migration_tools/switch_marc21_series_info.pl
misc/migration_tools/upgradeitems.pl
misc/mod_zebraqueue.pl
misc/recreateIssueStatistics.pl
misc/sax_parser_test.pl
misc/search_tools/export_elasticsearch_mappings.pl
misc/search_tools/rebuild_elasticsearch.pl
misc/stage_file.pl
misc/translator/LangInstaller.pm
misc/translator/TmplTokenizer.pm
misc/translator/VerboseWarnings.pm
misc/translator/tmpl_process3.pl
misc/translator/xgettext.pl
misc/z3950_responder.pl
offline_circ/download.pl
offline_circ/enqueue_koc.pl
offline_circ/list.pl
offline_circ/process.pl
offline_circ/process_koc.pl
offline_circ/service.pl
opac/clubs/clubs-tab.pl
opac/clubs/enroll.pl
opac/errors/400.pl
opac/errors/401.pl
opac/errors/402.pl
opac/errors/403.pl
opac/errors/404.pl
opac/errors/500.pl
opac/external/overdrive/auth.pl
opac/ilsdi.pl
opac/maintenance.pl
opac/opac-ISBDdetail.pl
opac/opac-MARCdetail.pl
opac/opac-account-pay-return.pl
opac/opac-account-pay.pl
opac/opac-account.pl
opac/opac-addbybiblionumber.pl
opac/opac-alert-subscribe.pl
opac/opac-article-request-cancel.pl
opac/opac-authorities-home.pl
opac/opac-authoritiesdetail.pl
opac/opac-basket.pl
opac/opac-blocked.pl
opac/opac-browse.pl
opac/opac-browser.pl
opac/opac-course-details.pl
opac/opac-course-reserves.pl
opac/opac-detail.pl
opac/opac-discharge.pl
opac/opac-downloadcart.pl
opac/opac-downloadshelf.pl
opac/opac-export.pl
opac/opac-holdshistory.pl
opac/opac-ics.pl
opac/opac-idref.pl
opac/opac-illrequests.pl
opac/opac-imageviewer.pl
opac/opac-issue-note.pl
opac/opac-library.pl
opac/opac-main.pl
opac/opac-memberentry.pl
opac/opac-messaging.pl
opac/opac-modrequest-suspend.pl
opac/opac-modrequest.pl
opac/opac-mymessages.pl
opac/opac-news-rss.pl
opac/opac-overdrive-search.pl
opac/opac-passwd.pl
opac/opac-password-recovery.pl
opac/opac-patron-consent.pl
opac/opac-patron-image.pl
opac/opac-privacy.pl
opac/opac-ratings-ajax.pl
opac/opac-ratings.pl
opac/opac-readingrecord.pl
opac/opac-recordedbooks-search.pl
opac/opac-registration-verify.pl
opac/opac-renew.pl
opac/opac-reportproblem.pl
opac/opac-request-article.pl
opac/opac-reserve.pl
opac/opac-restrictedpage.pl
opac/opac-retrieve-file.pl
opac/opac-review.pl
opac/opac-routing-lists.pl
opac/opac-search-history.pl
opac/opac-search.pl
opac/opac-sendbasket.pl
opac/opac-sendshelf.pl
opac/opac-serial-issues.pl
opac/opac-shareshelf.pl
opac/opac-shelves.pl
opac/opac-showmarc.pl
opac/opac-showreviews.pl
opac/opac-suggestions.pl
opac/opac-tags.pl
opac/opac-tags_subject.pl
opac/opac-topissues.pl
opac/opac-user.pl
opac/sci/sci-main.pl
opac/sco/help.pl
opac/sco/printslip.pl
opac/sco/sco-main.pl
opac/sco/sco-patron-image.pl
opac/svc/checkout_notes
opac/svc/shelfbrowser.pl
opac/tracklinks.pl
patron_lists/add-modify.pl
patron_lists/delete.pl
patron_lists/list.pl
patron_lists/lists.pl
patron_lists/patrons.pl
patroncards/add_user_search.pl
patroncards/create-pdf.pl
patroncards/edit-batch.pl
patroncards/edit-layout.pl
patroncards/edit-profile.pl
patroncards/edit-template.pl
patroncards/home.pl
patroncards/image-manage.pl
patroncards/manage.pl
patroncards/print.pl
plugins/plugins-enable.pl
plugins/plugins-home.pl
plugins/plugins-uninstall.pl
plugins/plugins-upload.pl
plugins/run.pl
pos/pay.pl
pos/printreceipt.pl
pos/register.pl
pos/registers.pl
reports/acquisitions_stats.pl
reports/bor_issues_top.pl
reports/borrowers_out.pl
reports/borrowers_stats.pl
reports/cash_register_stats.pl
reports/cat_issues_top.pl
reports/catalogue_out.pl
reports/catalogue_stats.pl
reports/dictionary.pl
reports/guided_reports.pl
reports/issues_avg_stats.pl
reports/issues_stats.pl
reports/itemslost.pl
reports/manager.pl
reports/orders_by_fund.pl
reports/reports-home.pl
reports/reserves_stats.pl
reports/serials_stats.pl
reserve/modrequest.pl
reserve/modrequest_suspendall.pl
reserve/placerequest.pl
reserve/request.pl
reviews/reviewswaiting.pl
rotating_collections/addItems.pl
rotating_collections/editCollections.pl
rotating_collections/rotatingCollections.pl
rotating_collections/transferCollection.pl
serials/acqui-search-result.pl
serials/acqui-search.pl
serials/add_user_search.pl
serials/checkexpiration.pl
serials/claims.pl
serials/create-numberpattern.pl
serials/lateissues-export.pl
serials/routing-preview.pl
serials/routing.pl
serials/serials-collection.pl
serials/serials-edit.pl
serials/serials-home.pl
serials/serials-search.pl
serials/showpredictionpattern.pl
serials/subscription-add.pl
serials/subscription-batchedit.pl
serials/subscription-bib-search.pl
serials/subscription-detail.pl
serials/subscription-frequencies.pl
serials/subscription-frequency.pl
serials/subscription-history.pl
serials/subscription-numberpattern.pl
serials/subscription-numberpatterns.pl
serials/subscription-renew.pl
serials/viewalerts.pl
services/itemrecorddisplay.pl
suggestion/add_user_search.pl
suggestion/suggestion.pl
svc/authorised_values
svc/cataloguing/automatic_linker.pl
svc/checkout_notes
svc/creator_batches
svc/problem_reports
t/Acquisition/CanUserManageBasket.t
t/Auth.t
t/Auth_with_shibboleth.t
t/AuthoritiesMarc_MARC21.t
t/AuthoritiesMarc_UNIMARC.t
t/Biblio.t
t/Biblio/TransformHtmlToXml.t
t/Biblio2.t
t/Budgets/CanUserModifyBudget.t
t/Budgets/CanUserUseBudget.t
t/Charset.t
t/Circulation/AgeRestrictionMarkers.t
t/Circulation_barcodedecode.t
t/ClassSortRoutine_Dewey.t
t/ClassSortRoutine_Generic.t
t/ClassSortRoutine_LCC.t
t/Creators.t
t/External/BakerTaylor.t
t/ImportBatch.t
t/Koha.t
t/Koha/Util/MARC.t
t/Koha/sleep.pl
t/Koha/wait.pl
t/Koha_Util_MARC.t
t/Labels.t
t/Labels_split_Regex.t
t/Labels_split_ddcn.t
t/Labels_split_lccn.t
t/Languages.t
t/Letters.t
t/Matcher.t
t/Members/cardnumber.t
t/Output.t
t/Prices.t
t/SIP/Sip.t
t/SMS.t
t/Scheduler.t
t/Scrubber.t
t/Search/History.t
t/Search/buildQuery.t
t/Serials/GetNextSeq.t
t/Serials/ModSerialStatus.t
t/SimpleMARC.t
t/SocialData.t
t/TmplToken.t
t/db_dependent/Accounts.t
t/db_dependent/Acquisition.t
t/db_dependent/Acquisition/CancelReceipt.t
t/db_dependent/Acquisition/GetBasketAsCSV.t
t/db_dependent/Acquisition/GetBasketsInfosByBookseller.t
t/db_dependent/Acquisition/GetOrdersByBiblionumber.t
t/db_dependent/Acquisition/Invoices.t
t/db_dependent/Acquisition/NewOrder.t
t/db_dependent/Acquisition/OrderFromSubscription.t
t/db_dependent/Acquisition/OrderUsers.t
t/db_dependent/Acquisition/StandingOrders.t
t/db_dependent/Acquisition/TransferOrder.t
t/db_dependent/Acquisition/close_reopen_basket.t
t/db_dependent/Acquisition/populate_order_with_prices.t
t/db_dependent/Amazon.t
t/db_dependent/Auth.t
t/db_dependent/Auth/haspermission.t
t/db_dependent/Auth_with_cas.t
t/db_dependent/Auth_with_ldap.t
t/db_dependent/AuthoritiesMarc.t
t/db_dependent/Authority/Merge.t
t/db_dependent/BackgroundJob.t
t/db_dependent/Barcodes.t
t/db_dependent/Barcodes_ValueBuilder.t
t/db_dependent/Biblio.t
t/db_dependent/Biblio/Isbd.t
t/db_dependent/Biblio/ModBiblioMarc.t
t/db_dependent/Biblio/TransformHtmlToMarc.t
t/db_dependent/Biblio/TransformKohaToMarc.t
t/db_dependent/Biblio/TransformMarcToKoha.t
t/db_dependent/Budgets.t
t/db_dependent/Charset.t
t/db_dependent/Circulation.t
t/db_dependent/Circulation/Branch.t
t/db_dependent/Circulation/CalcDateDue.t
t/db_dependent/Circulation/CalcFine.t
t/db_dependent/Circulation/CheckIfIssuedToPatron.t
t/db_dependent/Circulation/CheckValidBarcode.t
t/db_dependent/Circulation/GetHardDueDate.t
t/db_dependent/Circulation/GetPendingOnSiteCheckouts.t
t/db_dependent/Circulation/GetTopIssues.t
t/db_dependent/Circulation/IsItemIssued.t
t/db_dependent/Circulation/MarkIssueReturned.t
t/db_dependent/Circulation/OfflineOperation.t
t/db_dependent/Circulation/ReturnClaims.t
t/db_dependent/Circulation/Returns.t
t/db_dependent/Circulation/StoreLastBorrower.t
t/db_dependent/Circulation/SwitchOnSiteCheckouts.t
t/db_dependent/Circulation/TooMany.t
t/db_dependent/Circulation/issue.t
t/db_dependent/Circulation/transferbook.t
t/db_dependent/Circulation/transfers.t
t/db_dependent/Contract.t
t/db_dependent/CourseReserves.t
t/db_dependent/CourseReserves/CourseItems.t
t/db_dependent/Creators/Lib.t
t/db_dependent/DecreaseLoanHighHolds.t
t/db_dependent/Exporter/Record.t
t/db_dependent/Filter_MARC_ViewPolicy.t
t/db_dependent/Fines.t
t/db_dependent/FrameworkPlugin.t
t/db_dependent/Heading.t
t/db_dependent/Heading_MARC21.t
t/db_dependent/Hold.t
t/db_dependent/Holds.t
t/db_dependent/Holds/DisallowHoldIfItemsAvailable.t
t/db_dependent/Holds/HoldFulfillmentPolicy.t
t/db_dependent/Holds/HoldItemtypeLimit.t
t/db_dependent/Holds/LocalHoldsPriority.t
t/db_dependent/Holds/RevertWaitingStatus.t
t/db_dependent/Holds/WaitingReserves.t
t/db_dependent/HoldsQueue.t
t/db_dependent/Holidays.t
t/db_dependent/ILSDI_Services.t
t/db_dependent/Illrequests.t
t/db_dependent/ImportBatch.t
t/db_dependent/ImportExportFramework.t
t/db_dependent/Installer.t
t/db_dependent/Items.t
t/db_dependent/Items/AutomaticItemModificationByAge.t
t/db_dependent/Items/GetHostItemsInfo.t
t/db_dependent/Items/GetItemsForInventory.t
t/db_dependent/Items/MoveItemFromBiblio.t
t/db_dependent/Koha.t
t/db_dependent/Koha/Account/Line.t
t/db_dependent/Koha/Acquisition/Basket.t
t/db_dependent/Koha/Acquisition/Booksellers.t
t/db_dependent/Koha/Acquisition/Order.t
t/db_dependent/Koha/ActionLogs.t
t/db_dependent/Koha/Authorities.t
t/db_dependent/Koha/Biblio.t
t/db_dependent/Koha/Biblio/Metadata.t
t/db_dependent/Koha/Biblios.t
t/db_dependent/Koha/Charges/Fees.t
t/db_dependent/Koha/Checkouts.t
t/db_dependent/Koha/Club/Enrollment.t
t/db_dependent/Koha/Filter/EmbedItems.t
t/db_dependent/Koha/Filter/EmbedItemsAvailability.t
t/db_dependent/Koha/Holds.t
t/db_dependent/Koha/Item.t
t/db_dependent/Koha/ItemTypes.t
t/db_dependent/Koha/Items.t
t/db_dependent/Koha/Object.t
t/db_dependent/Koha/Patron/Category.t
t/db_dependent/Koha/Patrons.t
t/db_dependent/Koha/Plugins/Circulation_hooks.t
t/db_dependent/Koha/Plugins/Holds_hooks.t
t/db_dependent/Koha/Pseudonymization.t
t/db_dependent/Koha/SearchEngine/Indexer.t
t/db_dependent/Koha/Statistics.t
t/db_dependent/Koha/Z3950Responder/Session.t
t/db_dependent/Koha/Z3950Responder/Session2.t
t/db_dependent/Koha_Authority.t
t/db_dependent/Koha_ExternalContent_RecordedBooks.t
t/db_dependent/Labels/t_Batch.t
t/db_dependent/Languages.t
t/db_dependent/Letters.t
t/db_dependent/Letters/GetLettersAvailableForALibrary.t
t/db_dependent/Letters/TemplateToolkit.t
t/db_dependent/LibraryGroups.t
t/db_dependent/Linker_Default.t
t/db_dependent/Linker_FirstMatch.t
t/db_dependent/Log.t
t/db_dependent/MarcModificationTemplates.t
t/db_dependent/Members.t
t/db_dependent/Members/GetAllIssues.t
t/db_dependent/Members/IssueSlip.t
t/db_dependent/Members/Statistics.t
t/db_dependent/Message.t
t/db_dependent/MungeMarcPrice.t
t/db_dependent/OAI/AndSets.t
t/db_dependent/OAI/Server.t
t/db_dependent/OAI/Sets.t
t/db_dependent/Overdues.t
t/db_dependent/Passwordrecovery.t
t/db_dependent/Patron/Borrower_PrevCheckout.t
t/db_dependent/Patron/Messages.t
t/db_dependent/Patroncards.t
t/db_dependent/Record.t
t/db_dependent/Record/Record.t
t/db_dependent/Record/marcrecord2csv.t
t/db_dependent/Reports.t
t/db_dependent/Reports/Guided.t
t/db_dependent/Reserves.t
t/db_dependent/Reserves/AutoUnsuspendReserves.t
t/db_dependent/Reserves/CancelExpiredReserves.t
t/db_dependent/Reserves/GetReserveFee.t
t/db_dependent/Reserves/MultiplePerRecord.t
t/db_dependent/RotatingCollections.t
t/db_dependent/SIP/ILS.t
t/db_dependent/SIP/Message.t
t/db_dependent/SIP/SIPServer.t
t/db_dependent/SIP/Transaction.t
t/db_dependent/Search.t
t/db_dependent/Search/History.t
t/db_dependent/Serials.t
t/db_dependent/Serials/Claims.t
t/db_dependent/Serials/Frequency.t
t/db_dependent/Serials/GetFictiveIssueNumber.t
t/db_dependent/Serials/GetNextDate.t
t/db_dependent/Serials/GetNextSeq.t
t/db_dependent/Serials/Numberpattern.t
t/db_dependent/Serials/ReNewSubscription.t
t/db_dependent/Serials_2.t
t/db_dependent/ShelfBrowser.t
t/db_dependent/Stats.t
t/db_dependent/Suggestions.t
t/db_dependent/Tags.t
t/db_dependent/Templates.t
t/db_dependent/UsageStats.t
t/db_dependent/Utils/Datatables.t
t/db_dependent/Utils/Datatables_Virtualshelves.t
t/db_dependent/XISBN.t
t/db_dependent/XSLT.t
t/db_dependent/api/v1/auth.t
t/db_dependent/api/v1/checkouts.t
t/db_dependent/api/v1/holds.t
t/db_dependent/api/v1/return_claims.t
t/db_dependent/rollingloans.t
t/db_dependent/selenium/basic_workflow.t
t/db_dependent/selenium/regressions.t
t/db_dependent/www/regressions.t
t/db_dependent/zebra_config.pl
t/lib/Dates.pm
t/lib/Koha/BackgroundJob/BatchTest.pm
t/lib/Koha/Plugin/BadAPIRoute.pm
t/lib/Koha/Plugin/Test.pm
t/lib/Mocks.pm
t/lib/Selenium.pm
t/lib/TestBuilder.pm
tags/list.pl
tags/review.pl
tools/access_files.pl
tools/ajax-inventory.pl
tools/automatic_item_modification_by_age.pl
tools/background-job-progress.pl
tools/batchMod.pl
tools/batch_delete_records.pl
tools/batch_record_modification.pl
tools/batch_records_ajax.pl
tools/cleanborrowers.pl
tools/copy-holidays.pl
tools/csv-profiles.pl
tools/exceptionHolidays.pl
tools/export.pl
tools/holidays.pl
tools/import_borrowers.pl
tools/inventory.pl
tools/koha-news.pl
tools/letter.pl
tools/manage-marc-import.pl
tools/marc_modification_templates.pl
tools/modborrowers.pl
tools/newHolidays.pl
tools/overduerules.pl
tools/picture-upload.pl
tools/problem-reports.pl
tools/quotes-upload.pl
tools/quotes.pl
tools/scheduler.pl
tools/showdiffmarc.pl
tools/stage-marc-import.pl
tools/stockrotation.pl
tools/tools-home.pl
tools/upload-cover-image.pl
tools/upload-file.pl
tools/upload.pl
tools/viewlog.pl
virtualshelves/addbybiblionumber.pl
virtualshelves/downloadshelf.pl
virtualshelves/sendshelf.pl
virtualshelves/shelves.pl
xt/yaml_valid.pl