[Koha-patches] Pull Request

Chris Nighswonger cnighswonger at foundations.edu
Wed Sep 2 01:48:58 CEST 2009


The following changes since commit de66ef5c4987039f97e291257682a4941d12d0df:
  Galen Charlton (1):
        bug 3564 follow: ensure NoZebra is passed to templates

are available in the git repository at:

  git://git.foundations.edu/pub/git/koha.labels_recon labels.recon

Chris Nighswonger (40):
      [1/40] Work on C4::Labels::Layout module and tests
      [2/40] Work on C4::Labels::Template and associated tests
      [3/40] Work on C4::Labels::Profile module and tests
      [4/40] Work on C4::Labels::Batch module
      [5/40] Adding C4::Labels::PDF module
      [6/40] Adding C4::Labels::Label Module
      [7/40] Adding C4::Labels::Lib module
      [8/40] Adding new layout management page
      [9/40] Work on template interface.
      [10/40] Work on Label Tool Homepage.
      [11/40] Work on layout editor interface.
      [12/40] Work on label managment interface.
      [13/40] Work on profile editor interface.
      [14/40] Work on batch management interface.
      [15/40] Initial work on label batch edit interface.
      [16/40] Improvements to label management interface code.
      [17/40] Work on C4::Labels::Lib::html_table api to add link field
option
      [18/40] Work on label item search.
      [19/40] Various tweaks to the interface cosmetics, form validation
scripts, css, etc.
      [20/40] Work on label printing code.
      [21/40] Adding de-duplicating method and associated label edit batch
code.
      [22/40] General code cleanup of new labels module code.
      [23/40] Initial work on label export interface.
      [24/40] Adding single/multiple label printing to label export code and
interface.
      [25/40] More work on label export coded and interface. Adding icons
for all export formats & general dressing up.
      [26/40] Refactoring auto label batch generation feature in bulk import
tool and adding error trapping/handling.
      [27/40] Fixing up the labels batches toolbar functionality.
      [28/40] Updating tools homepage to reflect label module rework.
      [29/40] Work on label module general tool bar.
      [30/40] Work on labels module home page.
      [31/40] Misc bugfixes and cosmetic cleanup.
      [32/40] Work on patron card creator module
      [33/40] Porting call number splitting improvements from HEAD
      [34/40] Work on syncing db schema on both new and upgrade installs
      [35/40] Work on C4::Labels tests and various bugfixs resulting
      [36/40] Bugfix for profile update on profile/template association
change.
      [37/40] Updating sample labels data
      [38/40] Misc bugfixs
      [39/40] Removeing depricated functions from label module.
      [40/40] Removing depricated files

 C4/Branch.pm                                       |   11 +-
 C4/Labels.pm                                       | 1494
--------------------
 C4/Labels/Batch.pm                                 |  309 ++++
 C4/Labels/Label.pm                                 |  800 +++++++++++
 C4/Labels/Layout.pm                                |  420 ++++++
 C4/Labels/Lib.pm                                   |  513 +++++++
 C4/Labels/PDF.pm                                   |  291 ++++
 C4/Labels/Profile.pm                               |  356 +++++
 C4/Labels/Template.pm                              |  397 ++++++
 C4/Patroncards/Patroncards.pm                      |  294 ++++
 installer/data/mysql/en/optional/sample_labels.sql |   40 +-
 installer/data/mysql/en/optional/sample_labels.txt |    3 +-
 .../data/mysql/fr-FR/2-Optionel/sample_labels.sql  |   34 +-
 .../data/mysql/fr-FR/2-Optionel/sample_labels.txt  |    3 +-
 installer/data/mysql/kohastructure.sql             |  132 +-
 installer/data/mysql/labels_upgrade.pl             |  184 +++
 installer/data/mysql/updatedatabase.pl             |    9 +
 koha-tmpl/intranet-tmpl/prog/en/css/label.css      |   37 +
 .../intranet-tmpl/prog/en/css/staff-global.css     |  105 ++-
 .../intranet-tmpl/prog/en/includes/header.inc      |  104 +-
 .../prog/en/includes/labels-batches-toolbar.inc    |  179 +++
 .../intranet-tmpl/prog/en/includes/labels-menu.inc |   10 +-
 .../prog/en/includes/labels-new-toolbar.inc        |   23 +
 .../prog/en/includes/labels-toolbar.inc            |   75 +
 .../en/includes/tools-labels-batches-toolbar.inc   |   85 --
 .../prog/en/includes/tools-labels-toolbar.inc      |   29 -
 .../prog/en/lib/greybox/gb_styles.css              |   24 +-
 .../prog/en/modules/cataloguing/z3950_search.tmpl  |    5 +-
 .../en/modules/labels/label-create-layout.tmpl     |  255 ----
 .../en/modules/labels/label-create-profile.tmpl    |   95 --
 .../en/modules/labels/label-create-template.tmpl   |   86 --
 .../prog/en/modules/labels/label-edit-batch.tmpl   |   70 +
 .../prog/en/modules/labels/label-edit-layout.tmpl  |  434 +++----
 .../prog/en/modules/labels/label-edit-profile.tmpl |  169 ++-
 .../en/modules/labels/label-edit-template.tmpl     |  257 ++--
 .../prog/en/modules/labels/label-home.tmpl         |  125 +-
 .../prog/en/modules/labels/label-manage.tmpl       |  152 ++
 .../prog/en/modules/labels/label-print.tmpl        |  343 +++---
 .../prog/en/modules/labels/label-profiles.tmpl     |   98 --
 .../prog/en/modules/labels/label-templates.tmpl    |   72 -
 .../prog/en/modules/labels/result.tmpl             |  272 ++--
 .../prog/en/modules/tools/manage-marc-import.tmpl  |   10 +-
 .../prog/en/modules/tools/tools-home.tmpl          |    5 +-
 koha-tmpl/intranet-tmpl/prog/img/csv_icon.gif      |  Bin 0 -> 1315 bytes
 koha-tmpl/intranet-tmpl/prog/img/icon_xml.gif      |  Bin 0 -> 1239 bytes
 .../intranet-tmpl/prog/img/label-creator-image.png |  Bin 0 -> 154915 bytes
 koha-tmpl/intranet-tmpl/prog/img/pdficon_large.gif |  Bin 0 -> 434 bytes
 kohaversion.pl                                     |    2 +-
 labels/label-create-csv.pl                         |  111 ++
 labels/label-create-layout.pl                      |   73 -
 labels/label-create-pdf.pl                         |  226 +++
 labels/label-create-profile.pl                     |  103 --
 labels/label-create-template.pl                    |  103 --
 labels/label-create-xml.pl                         |  124 ++
 labels/label-edit-batch.pl                         |  120 ++
 labels/label-edit-layout.pl                        |  205 ++-
 labels/label-edit-profile.pl                       |  143 ++-
 labels/label-edit-template.pl                      |  200 ++--
 labels/label-home.pl                               |   94 +-
 labels/label-item-search.pl                        |  141 +--
 labels/label-manage.pl                             |  115 ++
 labels/label-manager.pl                            |  192 ---
 labels/label-print-csv.pl                          |   55 -
 labels/label-print-pdf.pl                          |  260 ----
 labels/label-print.pl                              |  132 ++
 labels/label-profiles.pl                           |   63 -
 labels/label-save-template.pl                      |   53 -
 labels/label-templates.pl                          |   77 -
 t/db_dependent/Labels/t_Batch.t                    |   82 ++
 t/db_dependent/Labels/t_Layout.t                   |  100 ++
 t/db_dependent/Labels/t_Profile.t                  |   95 ++
 t/db_dependent/Labels/t_Template.t                 |  133 ++
 tools/manage-marc-import.pl                        |   32 +-
 73 files changed, 6850 insertions(+), 4593 deletions(-)
 delete mode 100644 C4/Labels.pm
 create mode 100644 C4/Labels/Batch.pm
 create mode 100644 C4/Labels/Label.pm
 create mode 100644 C4/Labels/Layout.pm
 create mode 100644 C4/Labels/Lib.pm
 create mode 100644 C4/Labels/PDF.pm
 create mode 100644 C4/Labels/Profile.pm
 create mode 100644 C4/Labels/Template.pm
 create mode 100644 C4/Patroncards/Patroncards.pm
 create mode 100644 installer/data/mysql/labels_upgrade.pl
 create mode 100644 koha-tmpl/intranet-tmpl/prog/en/css/label.css
 create mode 100644
koha-tmpl/intranet-tmpl/prog/en/includes/labels-batches-toolbar.inc
 create mode 100644
koha-tmpl/intranet-tmpl/prog/en/includes/labels-new-toolbar.inc
 create mode 100644
koha-tmpl/intranet-tmpl/prog/en/includes/labels-toolbar.inc
 delete mode 100644
koha-tmpl/intranet-tmpl/prog/en/includes/tools-labels-batches-toolbar.inc
 delete mode 100644
koha-tmpl/intranet-tmpl/prog/en/includes/tools-labels-toolbar.inc
 delete mode 100644
koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-create-layout.tmpl
 delete mode 100644
koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-create-profile.tmpl
 delete mode 100644
koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-create-template.tmpl
 create mode 100644
koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-batch.tmpl
 create mode 100644
koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-manage.tmpl
 delete mode 100644
koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-profiles.tmpl
 delete mode 100644
koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-templates.tmpl
 create mode 100644 koha-tmpl/intranet-tmpl/prog/img/csv_icon.gif
 create mode 100644 koha-tmpl/intranet-tmpl/prog/img/icon_xml.gif
 create mode 100644 koha-tmpl/intranet-tmpl/prog/img/label-creator-image.png
 create mode 100644 koha-tmpl/intranet-tmpl/prog/img/pdficon_large.gif
 create mode 100755 labels/label-create-csv.pl
 delete mode 100755 labels/label-create-layout.pl
 create mode 100755 labels/label-create-pdf.pl
 delete mode 100755 labels/label-create-profile.pl
 delete mode 100755 labels/label-create-template.pl
 create mode 100755 labels/label-create-xml.pl
 create mode 100755 labels/label-edit-batch.pl
 create mode 100755 labels/label-manage.pl
 delete mode 100755 labels/label-manager.pl
 delete mode 100755 labels/label-print-csv.pl
 delete mode 100755 labels/label-print-pdf.pl
 create mode 100755 labels/label-print.pl
 delete mode 100755 labels/label-profiles.pl
 delete mode 100755 labels/label-save-template.pl
 delete mode 100755 labels/label-templates.pl
 create mode 100644 t/db_dependent/Labels/t_Batch.t
 create mode 100644 t/db_dependent/Labels/t_Layout.t
 create mode 100644 t/db_dependent/Labels/t_Profile.t
 create mode 100644 t/db_dependent/Labels/t_Template.t
-------------- next part --------------
An HTML attachment was scrubbed...
URL: </pipermail/koha-patches/attachments/20090901/12816370/attachment-0002.htm>


More information about the Koha-patches mailing list