[koha-commits] main Koha release repository branch new/bug_7167 created. v3.08.00-1491-gc340173

Git repo owner gitmaster at git.koha-community.org
Thu Dec 27 17:59:40 CET 2012


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, new/bug_7167 has been created
        at  c34017336c3cd03f471b1c5100b9f6b4dbe589db (commit)

- Log -----------------------------------------------------------------
commit c34017336c3cd03f471b1c5100b9f6b4dbe589db
Author: Jared Camins-Esakov <jcamins at cpbibliography.com>
Date:   Thu Dec 27 11:17:00 2012 -0500

    Bug 7167: Set final updatedatabase.pl version

commit 69c19e28b49d1732601c79c9aacf8de4b754b9d8
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Mon Dec 3 15:27:46 2012 +0100

    Bug 7167: Adds Unit tests for C4::Update::Database
    
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>

commit 754392ed88a22aac43172d7e12f4621dae8d8484
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Mon Dec 3 16:39:10 2012 +0100

    Bug 7167: Followup: Removes useless global variables
    
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>

commit 49d6b750cd09abfe8943720c1648894ce3aaced2
Author: Paul Poulain <paul.poulain at biblibre.com>
Date:   Wed Nov 28 14:48:28 2012 +0100

    Bug 7167 follow-up setting DBrevision, before pushing
    
    The 2 files C4/Auth.pm and install.pl *must* have the $version variable
    set to what is the last old-mechanism for updatedatabase
    
    This patch set to 3.11.00001 that is the last number when I QA this patch
    
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>

commit c9cb55ef4710bfee111e6e2721f3ca2bf58d98f7
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Thu Jun 14 11:46:57 2012 +0200

    Bug 7167: New version for updatedatabase
    
    This patch use DataTable, see BUG|BZ 6836
          - css/datatables.css
          - lib/jquery/plugins/jquery.dataTables.min.js
          - js/datatables.js
    
    http://bugs.koha-community.org/show_bug.cgi?id=7167
    
    Bug 7167 follow-up
    
    Major changes:
    * creating database tables for update on the fly, the  1st time the update script is called
    * version is checked on mainpage.pl (and here only). If syspref Version differ from kohaversion.pl, the old updatedatabase is launched. If there are updates missing from new mechanism, the updatedatabase page is reached
    * kohaversion check on each page is now useless in Auth.pm, removed dead code
    * Updated installer: at the end of the process, retrieve all updates and automatically mark them "OK", as they're included in installer
    
    Minor changes:
    * adding copyright
    * adding poddoc
    * updating a warning, for better clarity
    * switching from $$var to $var->
    * small TT glitch fixed in updatedatabase.tt
    * about.pl now returns the Version systempreference PLUS all the patches that have been applied
    
    Bug 7167 follow-up perlcritic & numbers display & partial apply depending on DEBUG
    
    * add use strict to updatedatabase, that is now perlcritic compliant
    * partial apply of DB revs is now managed by DEBUG env variable = if DEBUG=0, the user can just apply every DBrev. If DEBUG=1, we're in a dev env, the user know has the option to apply DBrevs one by one
    Display:
    * in updatedatabase, small spelling changes
    * in about.pl, remove 0 just after . (3.06.01 is displayed as 3.6.1)
    * improve the display of applied numbers on about.pl
     - before this patch, if you have N, N+1, N+2, N+3 and N+10 DB rev applied, about was displaying : , N+1 / N+2 / N+3 / N+10
     - after this patch you have N......N+3 / N+10
    * add ORDER BY into list_versions_already_knows to have number retrieved in the same order whatever the order they are applied
    
    http://bugs.koha-community.org/show_bug.cgi?id=6679
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>
    
    Bug 7167: Improve the update.pl script
    
     * Added CLI options to update.pl
     * Call update.pl from the installer.
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>
    
    Bug 7167: Now, we check versions on mainpage.pl and after login
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>
    
    Bug 7167: Reimplementing Marcel's suggestions & fixes
    
     * Fixing the bugguy old version check (that was made against 3.0900000 instead of 3.0900027 -the last current kohaversion number
     * in the CLI script, if there is nothing to report, just say it
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    
    Bug 7167: Remove check_coherency
    
    As suggested by Katrin, we've removed the call to check_coherency. It intended to provide readable comments when some SQL was wrong. Removing this sub result in the SQL error being displayed. That's OK because the sysadmin or the developer can google the error, understand it, then fix it.
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>
    
    Bug 7167: Changing in .sql parsing
    
    We first split on delimiter and then extract comments. You can now put
    \n for delimiter comments.
    ex:
    
    DELIMITER ;
    -- this is a comment
    SELECT * FROM  my_table;
    -- another comment
    
    Before this patch, we had to write:
    DELIMITER ;
    -- this is a comment;
    SELECT * FROM  my_table;
    -- another comment;
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>
    
    Bug 7167: Add .pl and .sql examples
    
    Those files are in version directory, so will never be executed by the updater
    If you want to provide an update, do it in a 3.09/ directory (if your update is expected for 3.10 version)
    
    Note that the updater use a md5sum checker. So, if the same update is in 2 different places, it will be detected. That will be handy for changes made on both stable and master: a library running stable will get the update when updating. When upgrading to the next major release, Koha will detect the patch has already been applied, and no error will be thrown. With the previous mechanism, a DBRev ported to stable was re-executed when upgrading to master, resulting in a nasty (but usually harmless) error message
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>
    
    Bug 7167: Improve display + factorize get_queries
    
    Despite it's size, this patch is dealing with display questions only:
     * The text "comments" and "queries" was hardcoded in ajax-updatedb-getinfo.pl script. It has been replaced by a JSON call, returning 2 separate values, "comments:" and "queries:" is now in the template, making it translatable
     * Some minor tweak in the display (like putting things in bold, displaying OK in green, warnings in yellow and KO in red)
     * Reordering the column headers for more readability:
        * Status column is merged with availability, column is after status
        * Status/availability terms more clear: "Not applied" instead of "unknown", "Applied and OK", "Applied and failed", "Applied and forced" are the 3 other statuses
        * Removed one click to display comments on DBREv not yet applied: before the patch, one had to click "Show details", then "Get comments", now, "Get comments" is enough
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>
    
    Bug 7167: FIX typos & moving a script to a proper place
    
    * renamed availables to available
    * renamed already_knows to already_applied
    * fixed FSF & copyright headers
    * removing a "use strict" because we already had use Modern::Perl
    * fixed a tiny typo in about.tt
    
    * moving update.pl to misc/bin because it's a CLI script
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>
    
    Bug 7167: Add dependency File::Find::Rule
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>
    
    Bug 7167: We want to execute non-numeric version with the -all option
    
    Dealing with Marcel comment 100:
    > Note that the current code around line 52/53 does not
    > handle that correctly:
    > Argument "\x{74}\x{65}..." isn't numeric in numeric ge (>=) at
    > installer/data/mysql/update.pl line 52.
    
    Now, a non-numeric DBRev will be applied if you provide the --all parameter, without throwing the error
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>
    
    Bug 7167 reindentation & removing dead code
    
    * The if (! defined $ENV{PERL5LIB}... block was wrongly intented
    * The 3 lines running update.pl are useless: the update (new mechanism) is run from admin/updatedatabase.pl script. This part of install.pl is run only when you have "old style" DB revisions.
    
    Summary:
     * old mechanism = it's run as previously, by reaching the installer/install.pl?step=3 page, that applies all revisions
     * new mechanism = when you log-in or reach mainpage.pl, you reach admin/updatedatabase.pl, where you can see what will be run, and run it
    
    Tiny side effect = the check for old mechanism is now done *after* authentification (thus it's not done on each page call). It means that the user will have to enter login/password twice :
     * first to log-in to Koha
     * second to run installer/updatedatabase.pl?step=3
    As the old mechanism is deprecated, we can expect this will happend only a few time in the history of a setup, it's not a big deal.
    
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>
    
    Bug 7167: Don't raise an error in routine TableExists
    
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>
    
    Bug 7167: FIX merge
    
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>
    
    Bug 7167: Add .pl and .sql examples
    
    Those files are in version directory, so will never be executed by the updater
    If you want to provide an update, do it in a 3.09/ directory (if your update is expected for 3.10 version)
    
    Note that the updater use a md5sum checker. So, if the same update is in 2 different places, it will be detected. That will be handy for changes made on both stable and master: a library running stable will get the update when updating. When upgrading to the next major release, Koha will detect the patch has already been applied, and no error will be thrown. With the previous mechanism, a DBRev ported to stable was re-executed when upgrading to master, resulting in a nasty (but usually harmless) error message
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>
    
    Bug 7167 follow-up fix POD syntax to please koha-qa.pl
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

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


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list