[commits] Horde branch master updated. 141b088dfea802b1d72fbbc8576fa8ae675a04b0

Michael J. Rubinsky mrubinsk at horde.org
Mon Jun 20 17:49:17 UTC 2011


The branch "master" has been updated.
The following is a summary of the commits.

from: 89f69cf64e633d335914d52c7c33025c2d1ed976

ff4bb08 refactor remote-import script and move to bin/
541109d fix retrieving image attributes
ae70900 Clean up some tag handling
123664f Refactor and move exit-to-tags utility script
7de005a Fix(?) off by one error.
2335ea8 refactor and move garbage collection script
56ebd4d refactor ansel-remote-import:
92ca5d0 change name of script to reflect functionality
27968e6 typehint, wrapping
141b088 Add list support for at least the local helper

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

commit ff4bb082b3608de492001b569fa4f58a365e95ed
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Thu Jun 16 17:01:27 2011 -0400

    refactor remote-import script and move to bin/

 ansel/bin/ansel-remote-import   |  324 +++++++++++++++++++++++++++++++++++++++
 ansel/scripts/remote_import.php |  324 ---------------------------------------
 2 files changed, 324 insertions(+), 324 deletions(-)
 create mode 100644 ansel/bin/ansel-remote-import
 delete mode 100755 ansel/scripts/remote_import.php

http://git.horde.org/horde-git/-/commit/ff4bb082b3608de492001b569fa4f58a365e95ed

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

commit 541109dab8a40ee9d1c9d9b8086bc876b171a73e
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Thu Jun 16 18:01:26 2011 -0400

    fix retrieving image attributes

 ansel/lib/Storage.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/541109dab8a40ee9d1c9d9b8086bc876b171a73e

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

commit ae709001a28fb967db025a40e052e00a92569270
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Thu Jun 16 18:21:02 2011 -0400

    Clean up some tag handling

 ansel/image.php       |   41 ++++++++++++++++++++-----------------
 ansel/lib/Gallery.php |   39 +++++++++++++++++++++++++++++++++--
 ansel/lib/Image.php   |   52 +++++++++++++++++++++++++++++++++++++++---------
 3 files changed, 100 insertions(+), 32 deletions(-)

http://git.horde.org/horde-git/-/commit/ae709001a28fb967db025a40e052e00a92569270

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

commit 123664f38c32cab0ef244fd7999210a572a64099
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Thu Jun 16 18:21:51 2011 -0400

    Refactor and move exit-to-tags utility script

 ansel/bin/ansel-exif-to-tags              |   69 +++++++++++++++++++++++
 ansel/scripts/all_images_exif_to_tags.php |   87 -----------------------------
 2 files changed, 69 insertions(+), 87 deletions(-)
 create mode 100644 ansel/bin/ansel-exif-to-tags
 delete mode 100755 ansel/scripts/all_images_exif_to_tags.php

http://git.horde.org/horde-git/-/commit/123664f38c32cab0ef244fd7999210a572a64099

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

commit 7de005a1f890167efc30eacd3446fe520307c8ba
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Thu Jun 16 18:33:30 2011 -0400

    Fix(?) off by one error.
    
    With the backtrace nesting level set to '2' here, I get exceptions thrown
    about unknown nesting level when I reach this exception.

 framework/Db/lib/Horde/Db/Adapter/Base.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/7de005a1f890167efc30eacd3446fe520307c8ba

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

commit 2335ea85ce48adc1103c1cee34e37f08823d4550
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Thu Jun 16 18:52:57 2011 -0400

    refactor and move garbage collection script

 ansel/bin/ansel-garbage-collection   |  129 ++++++++++++++++++++++++++++++++++
 ansel/scripts/garbage_collection.php |  106 ----------------------------
 2 files changed, 129 insertions(+), 106 deletions(-)
 create mode 100755 ansel/bin/ansel-garbage-collection
 delete mode 100755 ansel/scripts/garbage_collection.php

http://git.horde.org/horde-git/-/commit/2335ea85ce48adc1103c1cee34e37f08823d4550

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

commit 56ebd4d07182a61f969b6446dc1d0747285f97fe
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Thu Jun 16 22:14:57 2011 -0400

    refactor ansel-remote-import:
    
    Start making it a more general purpose cli utility for Ansel.
    For now, this just combines the functionality of the
    recursive_import script. This one script now acts either locally or
    remotely. Still planning on bringing in functionality from ansel.php.
    Yes, classes are all in single file for now. Need to think through
    if we can somehow package this in a small bundle to install on a
    client machine without the need for an entire horde install.

 ansel/bin/AnselPublish.scpt        |  Bin 0 -> 4188 bytes
 ansel/bin/ansel-remote-import      |  589 +++++++++++++++++++++++++-----------
 ansel/scripts/AnselPublish.scpt    |  Bin 4188 -> 0 bytes
 ansel/scripts/recursive_import.php |  250 ---------------
 4 files changed, 405 insertions(+), 434 deletions(-)
 create mode 100644 ansel/bin/AnselPublish.scpt
 delete mode 100644 ansel/scripts/AnselPublish.scpt
 delete mode 100755 ansel/scripts/recursive_import.php

http://git.horde.org/horde-git/-/commit/56ebd4d07182a61f969b6446dc1d0747285f97fe

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

commit 92ca5d028ca6d55b208286c652c91727b715a34a
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Thu Jun 16 22:18:17 2011 -0400

    change name of script to reflect functionality

 ansel/bin/ansel               |  545 +++++++++++++++++++++++++++++++++++++++++
 ansel/bin/ansel-remote-import |  545 -----------------------------------------
 2 files changed, 545 insertions(+), 545 deletions(-)
 create mode 100644 ansel/bin/ansel
 delete mode 100644 ansel/bin/ansel-remote-import

http://git.horde.org/horde-git/-/commit/92ca5d028ca6d55b208286c652c91727b715a34a

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

commit 27968e6c9f5676e8a650075af2ad9ca137dbba94
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Jun 20 10:55:47 2011 -0400

    typehint, wrapping

 ansel/lib/Gallery.php |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

http://git.horde.org/horde-git/-/commit/27968e6c9f5676e8a650075af2ad9ca137dbba94

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

commit 141b088dfea802b1d72fbbc8576fa8ae675a04b0
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Jun 20 13:48:08 2011 -0400

    Add list support for at least the local helper

 ansel/bin/ansel |   83 ++++++++++++++++++++++++++++++++++++++++++++----------
 1 files changed, 67 insertions(+), 16 deletions(-)

http://git.horde.org/horde-git/-/commit/141b088dfea802b1d72fbbc8576fa8ae675a04b0




More information about the commits mailing list