[commits] Horde branch master updated. 306217a2d64cf605a5ad3390279c7376d41cf0d4

Michael Rubinsky mike at theupstairsroom.com
Sat Sep 18 02:27:48 UTC 2010


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

from: 5c3f79af7972721f0cb019ceea653269fd155083

5e4cc53 Move gallery property page to an Ansel_View.
08cad3e Short circuit if we have an empty $tag
b82a17a Don't attempt to create empty tags
667bab7 Start working on adding gallery style information to the gallery properties UI
c3c6189 Implement Ansel_Style
d5af214 Standardize on ImageGenerator names, fix mini thumbnail display on owner group view.
8d6a2b5 Document the supported style properties, add default widget array
a4100cd Use default styled key images for this block
4462bde ws
f9f1249 Fix image cache clearing with new style code.
a7fcd90 ws
a35458e Add DB migrations for Ansel
cbf307d remove old sql creation scripts and legacy upgrades
c193416 Add update script for moving deprecated gallery categories to the tag system
9ac6880 Add upgrade/migration script for new style format.
9ae0087 remove commented out code, make note of this change.
7bb2948 Use ansel_default for any style names that don't currently exist.
fc5407e Actually, we need to migrate ansel_default as well...an empty style means to use the user's default style pref
58774be phpdoc
eb29b00 More style related refactoring:
306217a Merge branch 'Ansel_Styles'

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

commit 5e4cc535f3399360b1fbb7bdc3d20d5fb7891d11
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Tue Sep 14 11:10:07 2010 -0400

    Move gallery property page to an Ansel_View.
    
    Also, start moving style information to be stored as a serialized array
    within the gallery object. An empty style would mean to use the user
    preference for default style. Gallery property page will implement
    showing/editing style properties shortly.

 ansel/gallery.php                           |  265 +------------------
 ansel/lib/Gallery.php                       |    7 +-
 ansel/lib/Storage.php                       |    2 +-
 ansel/lib/View/Gallery.php                  |    1 +
 ansel/lib/View/GalleryProperties.php        |  374 +++++++++++++++++++++++++++
 ansel/scripts/sql/ansel.sql                 |    2 +-
 ansel/templates/common-header.inc           |    2 +-
 ansel/templates/gallery/gallery.inc         |  123 ---------
 ansel/templates/gallery/properties.html.php |  131 ++++++++++
 9 files changed, 522 insertions(+), 385 deletions(-)
 create mode 100644 ansel/lib/View/GalleryProperties.php
 delete mode 100644 ansel/templates/gallery/gallery.inc
 create mode 100644 ansel/templates/gallery/properties.html.php

http://git.horde.org/diff.php/ansel/gallery.php?rt=horde-git&r1=7277728730e6ab11d05f3a5f0c7133315a350917&r2=5e4cc535f3399360b1fbb7bdc3d20d5fb7891d11
http://git.horde.org/diff.php/ansel/lib/Gallery.php?rt=horde-git&r1=0f5fc56d126e237c05adf339174b95e67e1aa633&r2=5e4cc535f3399360b1fbb7bdc3d20d5fb7891d11
http://git.horde.org/diff.php/ansel/lib/Storage.php?rt=horde-git&r1=f47d1052eae37d542155791fb06a127c4b553f36&r2=5e4cc535f3399360b1fbb7bdc3d20d5fb7891d11
http://git.horde.org/diff.php/ansel/lib/View/Gallery.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=5e4cc535f3399360b1fbb7bdc3d20d5fb7891d11
http://git.horde.org/co.php/ansel/lib/View/GalleryProperties.php?rt=horde-git&r=5e4cc535f3399360b1fbb7bdc3d20d5fb7891d11
http://git.horde.org/diff.php/ansel/scripts/sql/ansel.sql?rt=horde-git&r1=f104d311cd2e22aa6d09911de9d0facb79cbd055&r2=5e4cc535f3399360b1fbb7bdc3d20d5fb7891d11
http://git.horde.org/diff.php/ansel/templates/common-header.inc?rt=horde-git&r1=a0ce9ace9c3114b59d4926dd43c89cd19f4794c4&r2=5e4cc535f3399360b1fbb7bdc3d20d5fb7891d11
http://git.horde.org/diff.php/ansel/templates/gallery/gallery.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=5e4cc535f3399360b1fbb7bdc3d20d5fb7891d11
http://git.horde.org/co.php/ansel/templates/gallery/properties.html.php?rt=horde-git&r=5e4cc535f3399360b1fbb7bdc3d20d5fb7891d11

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

commit 08cad3ed234a2110ebdf0101854da3e1c92cd30a
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Tue Sep 14 11:33:00 2010 -0400

    Short circuit if we have an empty $tag

 ansel/lib/Tagger.php                 |    4 ++++
 ansel/lib/View/GalleryProperties.php |    3 +--
 2 files changed, 5 insertions(+), 2 deletions(-)

http://git.horde.org/diff.php/ansel/lib/Tagger.php?rt=horde-git&r1=3ea705ebaba4710d1d8cafec1c314114f8746588&r2=08cad3ed234a2110ebdf0101854da3e1c92cd30a
http://git.horde.org/diff.php/ansel/lib/View/GalleryProperties.php?rt=horde-git&r1=5e4cc535f3399360b1fbb7bdc3d20d5fb7891d11&r2=08cad3ed234a2110ebdf0101854da3e1c92cd30a

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

commit b82a17affd3f5d6266d451eee431d560ba23be8d
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Tue Sep 14 11:33:25 2010 -0400

    Don't attempt to create empty tags

 content/lib/Tagger.php |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

http://git.horde.org/diff.php/content/lib/Tagger.php?rt=horde-git&r1=3a10cef33f09caf1bef2db270ce08cf0cf0b15af&r2=b82a17affd3f5d6266d451eee431d560ba23be8d

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

commit 667bab71347c8b970605fecb6d3ddc78055b76b2
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Tue Sep 14 17:49:58 2010 -0400

    Start working on adding gallery style information to the gallery properties UI

 ansel/lib/View/GalleryProperties.php        |    5 +-
 ansel/templates/gallery/properties.html.php |   59 +++++++++++++++------------
 2 files changed, 35 insertions(+), 29 deletions(-)

http://git.horde.org/diff.php/ansel/lib/View/GalleryProperties.php?rt=horde-git&r1=08cad3ed234a2110ebdf0101854da3e1c92cd30a&r2=667bab71347c8b970605fecb6d3ddc78055b76b2
http://git.horde.org/diff.php/ansel/templates/gallery/properties.html.php?rt=horde-git&r1=5e4cc535f3399360b1fbb7bdc3d20d5fb7891d11&r2=667bab71347c8b970605fecb6d3ddc78055b76b2

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

commit c3c6189c23971de660d2f8f1876562d15a086286
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Wed Sep 15 20:00:05 2010 -0400

    Implement Ansel_Style
    
    Style info is always passed around as an Ansel_Style object now, except when
    calling via the API...which will take a named style.  Also, now optionally pass the
    thumbbnail type and background color to the img/* scripts since each gallery now
    has it's own copy of the style information. Some other misc. changes...basically
    a touchstone commit.

 ansel/gallery/captions.php                       |    1 -
 ansel/gallery/sort.php                           |    4 +-
 ansel/img/mini.php                               |    2 +-
 ansel/img/prettythumb.php                        |   11 ++++-
 ansel/img/screen.php                             |    2 +-
 ansel/img/thumb.php                              |    2 +-
 ansel/lib/Ansel.php                              |   51 +++++++-----------
 ansel/lib/Api.php                                |   18 ++++++-
 ansel/lib/Block/gallery.php                      |    7 +--
 ansel/lib/Block/my_galleries.php                 |    3 +-
 ansel/lib/Block/recent_comments.php              |    1 -
 ansel/lib/Block/recently_added.php               |    2 +-
 ansel/lib/Block/recently_added_geodata.php       |    2 +-
 ansel/lib/Gallery.php                            |   51 +++++++----------
 ansel/lib/Gallery/Decorator/Date.php             |    9 +---
 ansel/lib/Image.php                              |   45 +++++++--------
 ansel/lib/ImageGenerator/PlainStack.php          |    4 +-
 ansel/lib/ImageGenerator/PolaroidStack.php       |    4 +-
 ansel/lib/ImageGenerator/PolaroidThumb.php       |    4 +-
 ansel/lib/ImageGenerator/PrettyThumb.php         |    4 +-
 ansel/lib/ImageGenerator/RoundedStack.php        |    4 +-
 ansel/lib/ImageGenerator/ShadowSharpThumb.php    |    4 +-
 ansel/lib/Storage.php                            |    4 +-
 ansel/lib/Style.php                              |   62 ++++++++++++++++++++++
 ansel/lib/Tile/DateGallery.php                   |   14 +++---
 ansel/lib/Tile/Gallery.php                       |   18 +++----
 ansel/lib/Tile/Image.php                         |    8 ++-
 ansel/lib/View/Base.php                          |    2 +-
 ansel/lib/View/EmbeddedRenderer/GalleryLink.php  |    2 +-
 ansel/lib/View/Gallery.php                       |    2 +-
 ansel/lib/View/GalleryProperties.php             |   22 ++++++--
 ansel/lib/View/GalleryRenderer/Base.php          |   13 +++--
 ansel/lib/View/Image.php                         |    8 ++--
 ansel/lib/View/List.php                          |    3 +-
 ansel/lib/View/Results.php                       |    5 +-
 ansel/lib/Widget/Base.php                        |    4 +-
 ansel/lib/Widget/GalleryFaces.php                |    2 +-
 ansel/lib/Widget/OtherGalleries.php              |    4 +-
 ansel/lib/Widget/OwnerFaces.php                  |    2 +-
 ansel/report.php                                 |    1 -
 ansel/rss.php                                    |   14 ++----
 ansel/templates/faces/face.inc                   |    3 +-
 ansel/templates/gallery/partial/_styles.html.php |   29 ++++++++++
 ansel/templates/gallery/properties.html.php      |    4 +-
 ansel/templates/group/owner.inc                  |    2 +-
 ansel/templates/image/crop_image.inc             |    1 -
 ansel/templates/image/edit_image.inc             |    1 -
 ansel/templates/image/resize_image.inc           |    2 -
 ansel/templates/list/header.inc                  |    2 +-
 ansel/templates/tile/image.inc                   |    2 +-
 ansel/templates/view/gallery.inc                 |    4 +-
 ansel/templates/view/gallerylightbox.inc         |    4 +-
 ansel/templates/view/image.inc                   |    2 +-
 ansel/templates/view/list.inc                    |    4 +-
 ansel/templates/view/results.inc                 |    4 +-
 ansel/templates/view/slideshow.inc               |    2 +-
 56 files changed, 284 insertions(+), 207 deletions(-)
 create mode 100644 ansel/lib/Style.php
 create mode 100644 ansel/templates/gallery/partial/_styles.html.php

http://git.horde.org/diff.php/ansel/gallery/captions.php?rt=horde-git&r1=7277728730e6ab11d05f3a5f0c7133315a350917&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/gallery/sort.php?rt=horde-git&r1=7277728730e6ab11d05f3a5f0c7133315a350917&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/img/mini.php?rt=horde-git&r1=04ce072847321ac9a2eed7f88ebdd23d96969e62&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/img/prettythumb.php?rt=horde-git&r1=04ce072847321ac9a2eed7f88ebdd23d96969e62&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/img/screen.php?rt=horde-git&r1=04ce072847321ac9a2eed7f88ebdd23d96969e62&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/img/thumb.php?rt=horde-git&r1=04ce072847321ac9a2eed7f88ebdd23d96969e62&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/Ansel.php?rt=horde-git&r1=7277728730e6ab11d05f3a5f0c7133315a350917&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/Api.php?rt=horde-git&r1=4d5577215ba1bbafa134233036eef8132f6da226&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/Block/gallery.php?rt=horde-git&r1=c6f86a76f9ed9d8ec7f13c25c9ffff34ab5abce9&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/Block/my_galleries.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/Block/recent_comments.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/Block/recently_added.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/Block/recently_added_geodata.php?rt=horde-git&r1=eb9895ffb9b0e03c09f2b4defe7fd5d18da724d3&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/Gallery.php?rt=horde-git&r1=5e4cc535f3399360b1fbb7bdc3d20d5fb7891d11&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/Gallery/Decorator/Date.php?rt=horde-git&r1=942bf89bab0d677af430b8893eadf2cc88ad330e&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/Image.php?rt=horde-git&r1=ecd4a50936b0f11b44b02c339f1a1299e38e7fe5&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/PlainStack.php?rt=horde-git&r1=d293fe9fedf628bfe4bf1743f4d6d9c452011465&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/PolaroidStack.php?rt=horde-git&r1=d293fe9fedf628bfe4bf1743f4d6d9c452011465&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/PolaroidThumb.php?rt=horde-git&r1=7115a22bef9ead59732b473875f5cd38efee3b38&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/PrettyThumb.php?rt=horde-git&r1=7115a22bef9ead59732b473875f5cd38efee3b38&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/RoundedStack.php?rt=horde-git&r1=d293fe9fedf628bfe4bf1743f4d6d9c452011465&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/ShadowSharpThumb.php?rt=horde-git&r1=7115a22bef9ead59732b473875f5cd38efee3b38&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/Storage.php?rt=horde-git&r1=5e4cc535f3399360b1fbb7bdc3d20d5fb7891d11&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/co.php/ansel/lib/Style.php?rt=horde-git&r=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/Tile/DateGallery.php?rt=horde-git&r1=2b952aa90ed203f5b5c2f20103f1487cfec0caec&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/Tile/Gallery.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/Tile/Image.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/View/Base.php?rt=horde-git&r1=f904da0c64f3d1e0f37342a0fb9796fa2bef48be&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/View/EmbeddedRenderer/GalleryLink.php?rt=horde-git&r1=c6f86a76f9ed9d8ec7f13c25c9ffff34ab5abce9&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/View/Gallery.php?rt=horde-git&r1=5e4cc535f3399360b1fbb7bdc3d20d5fb7891d11&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/View/GalleryProperties.php?rt=horde-git&r1=667bab71347c8b970605fecb6d3ddc78055b76b2&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/View/GalleryRenderer/Base.php?rt=horde-git&r1=ace4fa3d7de342930641ae9da807abefe49c5284&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/View/Image.php?rt=horde-git&r1=2a0c35ce910d5f159586b3e74c497f250965f268&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/View/List.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/View/Results.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/Widget/Base.php?rt=horde-git&r1=93c95c6b48100852e4584f23f54c225ff9f5d03b&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/Widget/GalleryFaces.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/Widget/OtherGalleries.php?rt=horde-git&r1=9583b1984dd8cd40fde0bbc6e67291ab16374451&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/lib/Widget/OwnerFaces.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/report.php?rt=horde-git&r1=7277728730e6ab11d05f3a5f0c7133315a350917&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/rss.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/templates/faces/face.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/co.php/ansel/templates/gallery/partial/_styles.html.php?rt=horde-git&r=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/templates/gallery/properties.html.php?rt=horde-git&r1=667bab71347c8b970605fecb6d3ddc78055b76b2&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/templates/group/owner.inc?rt=horde-git&r1=797229d80340f75bbd61cb4511d79c6e4312031d&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/templates/image/crop_image.inc?rt=horde-git&r1=a0662bb9e501771ae1fdb966f7331dedd19b5ece&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/templates/image/edit_image.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/templates/image/resize_image.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/templates/list/header.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/templates/tile/image.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/templates/view/gallery.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/templates/view/gallerylightbox.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/templates/view/image.inc?rt=horde-git&r1=98ed03542df709a6bc37f19cbe04dc2c889e051d&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/templates/view/list.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/templates/view/results.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286
http://git.horde.org/diff.php/ansel/templates/view/slideshow.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=c3c6189c23971de660d2f8f1876562d15a086286

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

commit d5af214e527ee89933a480551646dd0b87b7eb66
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Thu Sep 16 12:03:56 2010 -0400

    Standardize on ImageGenerator names, fix mini thumbnail display on owner group view.
    
    To allow for easier theming, ImageGenerator classes for thumbnails are now named as:
    
      Ansel_ImageGenerator_{type}Thumb
    
    and if there is a matching stack generator, it should be named as:
    
      Ansel_ImageGenerator_{type}ThumbStack
    
    other types of generators, such as the screen, and mini generators, are named as before:
    
      Ansel_ImageGenerator_Screen, Ansel_ImageGenerator_Mini etc...

 ansel/img/mini.php                               |    2 +-
 ansel/lib/Gallery.php                            |   23 +++++++--
 ansel/lib/ImageGenerator/PlainStack.php          |   44 -----------------
 ansel/lib/ImageGenerator/PolaroidStack.php       |   44 -----------------
 ansel/lib/ImageGenerator/PolaroidThumbStack.php  |   44 +++++++++++++++++
 ansel/lib/ImageGenerator/PrettyThumb.php         |   57 ----------------------
 ansel/lib/ImageGenerator/RoundedStack.php        |   46 -----------------
 ansel/lib/ImageGenerator/RoundedThumb.php        |   57 ++++++++++++++++++++++
 ansel/lib/ImageGenerator/RoundedThumbStack.php   |   46 +++++++++++++++++
 ansel/lib/ImageGenerator/ShadowSharpThumb.php    |   57 ----------------------
 ansel/lib/ImageGenerator/ShadowThumb.php         |   57 ++++++++++++++++++++++
 ansel/lib/ImageGenerator/ShadowThumbStack.php    |   44 +++++++++++++++++
 ansel/lib/Style.php                              |   11 ++++-
 ansel/lib/View/GalleryProperties.php             |    1 -
 ansel/templates/gallery/partial/_styles.html.php |   15 +++++-
 ansel/templates/group/owner.inc                  |    2 +-
 16 files changed, 292 insertions(+), 258 deletions(-)
 delete mode 100644 ansel/lib/ImageGenerator/PlainStack.php
 delete mode 100644 ansel/lib/ImageGenerator/PolaroidStack.php
 create mode 100644 ansel/lib/ImageGenerator/PolaroidThumbStack.php
 delete mode 100644 ansel/lib/ImageGenerator/PrettyThumb.php
 delete mode 100644 ansel/lib/ImageGenerator/RoundedStack.php
 create mode 100644 ansel/lib/ImageGenerator/RoundedThumb.php
 create mode 100644 ansel/lib/ImageGenerator/RoundedThumbStack.php
 delete mode 100644 ansel/lib/ImageGenerator/ShadowSharpThumb.php
 create mode 100644 ansel/lib/ImageGenerator/ShadowThumb.php
 create mode 100644 ansel/lib/ImageGenerator/ShadowThumbStack.php

http://git.horde.org/diff.php/ansel/img/mini.php?rt=horde-git&r1=c3c6189c23971de660d2f8f1876562d15a086286&r2=d5af214e527ee89933a480551646dd0b87b7eb66
http://git.horde.org/diff.php/ansel/lib/Gallery.php?rt=horde-git&r1=c3c6189c23971de660d2f8f1876562d15a086286&r2=d5af214e527ee89933a480551646dd0b87b7eb66
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/PlainStack.php?rt=horde-git&r1=c3c6189c23971de660d2f8f1876562d15a086286&r2=d5af214e527ee89933a480551646dd0b87b7eb66
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/PolaroidStack.php?rt=horde-git&r1=c3c6189c23971de660d2f8f1876562d15a086286&r2=d5af214e527ee89933a480551646dd0b87b7eb66
http://git.horde.org/co.php/ansel/lib/ImageGenerator/PolaroidThumbStack.php?rt=horde-git&r=d5af214e527ee89933a480551646dd0b87b7eb66
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/PrettyThumb.php?rt=horde-git&r1=c3c6189c23971de660d2f8f1876562d15a086286&r2=d5af214e527ee89933a480551646dd0b87b7eb66
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/RoundedStack.php?rt=horde-git&r1=c3c6189c23971de660d2f8f1876562d15a086286&r2=d5af214e527ee89933a480551646dd0b87b7eb66
http://git.horde.org/co.php/ansel/lib/ImageGenerator/RoundedThumb.php?rt=horde-git&r=d5af214e527ee89933a480551646dd0b87b7eb66
http://git.horde.org/co.php/ansel/lib/ImageGenerator/RoundedThumbStack.php?rt=horde-git&r=d5af214e527ee89933a480551646dd0b87b7eb66
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/ShadowSharpThumb.php?rt=horde-git&r1=c3c6189c23971de660d2f8f1876562d15a086286&r2=d5af214e527ee89933a480551646dd0b87b7eb66
http://git.horde.org/co.php/ansel/lib/ImageGenerator/ShadowThumb.php?rt=horde-git&r=d5af214e527ee89933a480551646dd0b87b7eb66
http://git.horde.org/co.php/ansel/lib/ImageGenerator/ShadowThumbStack.php?rt=horde-git&r=d5af214e527ee89933a480551646dd0b87b7eb66
http://git.horde.org/diff.php/ansel/lib/Style.php?rt=horde-git&r1=c3c6189c23971de660d2f8f1876562d15a086286&r2=d5af214e527ee89933a480551646dd0b87b7eb66
http://git.horde.org/diff.php/ansel/lib/View/GalleryProperties.php?rt=horde-git&r1=c3c6189c23971de660d2f8f1876562d15a086286&r2=d5af214e527ee89933a480551646dd0b87b7eb66
http://git.horde.org/diff.php/ansel/templates/gallery/partial/_styles.html.php?rt=horde-git&r1=c3c6189c23971de660d2f8f1876562d15a086286&r2=d5af214e527ee89933a480551646dd0b87b7eb66
http://git.horde.org/diff.php/ansel/templates/group/owner.inc?rt=horde-git&r1=c3c6189c23971de660d2f8f1876562d15a086286&r2=d5af214e527ee89933a480551646dd0b87b7eb66

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

commit 8d6a2b5ab210eddfc283c09d3c14a5129b0cb0c5
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Thu Sep 16 12:22:32 2010 -0400

    Document the supported style properties, add default widget array

 ansel/lib/Style.php                  |   29 ++++++++++++++++++++++++-----
 ansel/lib/View/GalleryProperties.php |    2 +-
 2 files changed, 25 insertions(+), 6 deletions(-)

http://git.horde.org/diff.php/ansel/lib/Style.php?rt=horde-git&r1=d5af214e527ee89933a480551646dd0b87b7eb66&r2=8d6a2b5ab210eddfc283c09d3c14a5129b0cb0c5
http://git.horde.org/diff.php/ansel/lib/View/GalleryProperties.php?rt=horde-git&r1=d5af214e527ee89933a480551646dd0b87b7eb66&r2=8d6a2b5ab210eddfc283c09d3c14a5129b0cb0c5

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

commit a4100cd297fef5513877cb096e061beb7dccfd62
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Thu Sep 16 12:25:12 2010 -0400

    Use default styled key images for this block

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

http://git.horde.org/diff.php/ansel/lib/Widget/OtherGalleries.php?rt=horde-git&r1=c3c6189c23971de660d2f8f1876562d15a086286&r2=a4100cd297fef5513877cb096e061beb7dccfd62

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

commit 4462bde6780d3194771b5c71c21f43b09f1f64d5
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Thu Sep 16 17:24:08 2010 -0400

    ws

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

http://git.horde.org/diff.php/ansel/lib/Gallery.php?rt=horde-git&r1=d5af214e527ee89933a480551646dd0b87b7eb66&r2=4462bde6780d3194771b5c71c21f43b09f1f64d5

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

commit f9f124904165a010eeb62f0ad057a0e3b31b001d
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Thu Sep 16 17:25:51 2010 -0400

    Fix image cache clearing with new style code.
    
    Need to store all style hashes that the server knows about, so we can
    be sure to delete all cached thumbnails from the VFS.

 ansel/lib/Image.php                  |   21 +++++----------------
 ansel/lib/Storage.php                |   33 +++++++++++++++++++++++++++++++++
 ansel/lib/View/GalleryProperties.php |    5 +++++
 3 files changed, 43 insertions(+), 16 deletions(-)

http://git.horde.org/diff.php/ansel/lib/Image.php?rt=horde-git&r1=c3c6189c23971de660d2f8f1876562d15a086286&r2=f9f124904165a010eeb62f0ad057a0e3b31b001d
http://git.horde.org/diff.php/ansel/lib/Storage.php?rt=horde-git&r1=c3c6189c23971de660d2f8f1876562d15a086286&r2=f9f124904165a010eeb62f0ad057a0e3b31b001d
http://git.horde.org/diff.php/ansel/lib/View/GalleryProperties.php?rt=horde-git&r1=8d6a2b5ab210eddfc283c09d3c14a5129b0cb0c5&r2=f9f124904165a010eeb62f0ad057a0e3b31b001d

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

commit a7fcd9011d009541c824b810f19500ec0ff5eab7
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Thu Sep 16 17:26:53 2010 -0400

    ws

 ansel/lib/Widget/OtherGalleries.php |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

http://git.horde.org/diff.php/ansel/lib/Widget/OtherGalleries.php?rt=horde-git&r1=a4100cd297fef5513877cb096e061beb7dccfd62&r2=a7fcd9011d009541c824b810f19500ec0ff5eab7

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

commit a35458e2384c6de05e1a7d93eee764cf3eb27acf
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Thu Sep 16 17:27:20 2010 -0400

    Add DB migrations for Ansel

 ansel/migration/1_ansel_base_tables.php   |  186 +++++++++++++++++++++++++++++
 ansel/migration/2_ansel_upgrade_style.php |   33 +++++
 2 files changed, 219 insertions(+), 0 deletions(-)
 create mode 100644 ansel/migration/1_ansel_base_tables.php
 create mode 100644 ansel/migration/2_ansel_upgrade_style.php

http://git.horde.org/co.php/ansel/migration/1_ansel_base_tables.php?rt=horde-git&r=a35458e2384c6de05e1a7d93eee764cf3eb27acf
http://git.horde.org/co.php/ansel/migration/2_ansel_upgrade_style.php?rt=horde-git&r=a35458e2384c6de05e1a7d93eee764cf3eb27acf

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

commit cbf307dcc89f988880f6bad99aca3abd9700f2e3
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Thu Sep 16 17:30:01 2010 -0400

    remove old sql creation scripts and legacy upgrades

 ansel/scripts/sql/ansel.pgsql.sql                               |  142 ------
 ansel/scripts/sql/ansel.sql                                     |  145 -------
 ansel/scripts/upgrades/1.0_to_1.1.php                           |   44 --
 ansel/scripts/upgrades/2008-06-04-faces.sql                     |   25 --
 ansel/scripts/upgrades/2008-06-17_fix_varchar_lengths.sql       |    4 -
 ansel/scripts/upgrades/2008-09-13_add_image_original_date.sql   |    8 -
 ansel/scripts/upgrades/2008-09-16_add_original_date_values.php  |   32 --
 ansel/scripts/upgrades/2008-09-23_fix_group_uid.sql             |    2 -
 ansel/scripts/upgrades/2008-12-5_add_geolocation_tables.sql     |    7 -
 ansel/scripts/upgrades/2009-01-10_fix_view_mode.sql             |    5 -
 ansel/scripts/upgrades/2009-04-14_fix_view_mode.pgsql.sql       |    5 -
 ansel/scripts/upgrades/2009-06-14_fix_geolocation_values.php    |   36 --
 ansel/scripts/upgrades/2009-06-22_add_geolocation_fields.sql    |    3 -
 ansel/scripts/upgrades/2009-06-22_move_geolocation_values.php   |   23 -
 ansel/scripts/upgrades/2009-07-06_add_geolocation_timestamp.sql |    1 -
 ansel/scripts/upgrades/2010-03-24_fix_default_faces_value.sql   |    1 -
 16 files changed, 0 insertions(+), 483 deletions(-)
 delete mode 100644 ansel/scripts/sql/ansel.pgsql.sql
 delete mode 100644 ansel/scripts/sql/ansel.sql
 delete mode 100644 ansel/scripts/upgrades/1.0_to_1.1.php
 delete mode 100755 ansel/scripts/upgrades/2008-06-04-faces.sql
 delete mode 100755 ansel/scripts/upgrades/2008-06-17_fix_varchar_lengths.sql
 delete mode 100644 ansel/scripts/upgrades/2008-09-13_add_image_original_date.sql
 delete mode 100755 ansel/scripts/upgrades/2008-09-16_add_original_date_values.php
 delete mode 100644 ansel/scripts/upgrades/2008-09-23_fix_group_uid.sql
 delete mode 100644 ansel/scripts/upgrades/2008-12-5_add_geolocation_tables.sql
 delete mode 100644 ansel/scripts/upgrades/2009-01-10_fix_view_mode.sql
 delete mode 100644 ansel/scripts/upgrades/2009-04-14_fix_view_mode.pgsql.sql
 delete mode 100755 ansel/scripts/upgrades/2009-06-14_fix_geolocation_values.php
 delete mode 100644 ansel/scripts/upgrades/2009-06-22_add_geolocation_fields.sql
 delete mode 100644 ansel/scripts/upgrades/2009-06-22_move_geolocation_values.php
 delete mode 100644 ansel/scripts/upgrades/2009-07-06_add_geolocation_timestamp.sql
 delete mode 100644 ansel/scripts/upgrades/2010-03-24_fix_default_faces_value.sql

http://git.horde.org/diff.php/ansel/scripts/sql/ansel.pgsql.sql?rt=horde-git&r1=8ed90edffe98a49db78921c296cfa1ec2dd06cdb&r2=cbf307dcc89f988880f6bad99aca3abd9700f2e3
http://git.horde.org/diff.php/ansel/scripts/sql/ansel.sql?rt=horde-git&r1=5e4cc535f3399360b1fbb7bdc3d20d5fb7891d11&r2=cbf307dcc89f988880f6bad99aca3abd9700f2e3
http://git.horde.org/diff.php/ansel/scripts/upgrades/1.0_to_1.1.php?rt=horde-git&r1=54a26e22e01a369372381a50d79eb655339c0956&r2=cbf307dcc89f988880f6bad99aca3abd9700f2e3
http://git.horde.org/diff.php/ansel/scripts/upgrades/2008-06-04-faces.sql?rt=horde-git&r1=8a517bbf2a3f1bee8f19b8bf1de4cb270fb8a2b7&r2=cbf307dcc89f988880f6bad99aca3abd9700f2e3
http://git.horde.org/diff.php/ansel/scripts/upgrades/2008-06-17_fix_varchar_lengths.sql?rt=horde-git&r1=8a517bbf2a3f1bee8f19b8bf1de4cb270fb8a2b7&r2=cbf307dcc89f988880f6bad99aca3abd9700f2e3
http://git.horde.org/diff.php/ansel/scripts/upgrades/2008-09-13_add_image_original_date.sql?rt=horde-git&r1=8a517bbf2a3f1bee8f19b8bf1de4cb270fb8a2b7&r2=cbf307dcc89f988880f6bad99aca3abd9700f2e3
http://git.horde.org/diff.php/ansel/scripts/upgrades/2008-09-16_add_original_date_values.php?rt=horde-git&r1=6a6307582db22eb8331e8bc7e7372d3149ecc71b&r2=cbf307dcc89f988880f6bad99aca3abd9700f2e3
http://git.horde.org/diff.php/ansel/scripts/upgrades/2008-09-23_fix_group_uid.sql?rt=horde-git&r1=8a517bbf2a3f1bee8f19b8bf1de4cb270fb8a2b7&r2=cbf307dcc89f988880f6bad99aca3abd9700f2e3
http://git.horde.org/diff.php/ansel/scripts/upgrades/2008-12-5_add_geolocation_tables.sql?rt=horde-git&r1=0395936f19ae533fdc096354b5b358da57ae8036&r2=cbf307dcc89f988880f6bad99aca3abd9700f2e3
http://git.horde.org/diff.php/ansel/scripts/upgrades/2009-01-10_fix_view_mode.sql?rt=horde-git&r1=8a517bbf2a3f1bee8f19b8bf1de4cb270fb8a2b7&r2=cbf307dcc89f988880f6bad99aca3abd9700f2e3
http://git.horde.org/diff.php/ansel/scripts/upgrades/2009-04-14_fix_view_mode.pgsql.sql?rt=horde-git&r1=8a517bbf2a3f1bee8f19b8bf1de4cb270fb8a2b7&r2=cbf307dcc89f988880f6bad99aca3abd9700f2e3
http://git.horde.org/diff.php/ansel/scripts/upgrades/2009-06-14_fix_geolocation_values.php?rt=horde-git&r1=54a26e22e01a369372381a50d79eb655339c0956&r2=cbf307dcc89f988880f6bad99aca3abd9700f2e3
http://git.horde.org/diff.php/ansel/scripts/upgrades/2009-06-22_add_geolocation_fields.sql?rt=horde-git&r1=9335aea9d1c2ac42c65d4c7f42691e1545a416bf&r2=cbf307dcc89f988880f6bad99aca3abd9700f2e3
http://git.horde.org/diff.php/ansel/scripts/upgrades/2009-06-22_move_geolocation_values.php?rt=horde-git&r1=54a26e22e01a369372381a50d79eb655339c0956&r2=cbf307dcc89f988880f6bad99aca3abd9700f2e3
http://git.horde.org/diff.php/ansel/scripts/upgrades/2009-07-06_add_geolocation_timestamp.sql?rt=horde-git&r1=8a517bbf2a3f1bee8f19b8bf1de4cb270fb8a2b7&r2=cbf307dcc89f988880f6bad99aca3abd9700f2e3
http://git.horde.org/diff.php/ansel/scripts/upgrades/2010-03-24_fix_default_faces_value.sql?rt=horde-git&r1=0676364a3ac2e4a8b7c5f8dc90ade310c2561d1e&r2=cbf307dcc89f988880f6bad99aca3abd9700f2e3

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

commit c1934161b08260b734354b79532a68f6fb2df42c
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Thu Sep 16 17:45:08 2010 -0400

    Add update script for moving deprecated gallery categories to the tag system

 ansel/scripts/upgrades/2010-09-16_migrate_categories_to_tags.php |   23 ++++++
 1 files changed, 23 insertions(+), 0 deletions(-)
 create mode 100644 ansel/scripts/upgrades/2010-09-16_migrate_categories_to_tags.php

http://git.horde.org/co.php/ansel/scripts/upgrades/2010-09-16_migrate_categories_to_tags.php?rt=horde-git&r=c1934161b08260b734354b79532a68f6fb2df42c

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

commit 9ac68806590918892ec7626bc1ef3f99c005cc97
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Thu Sep 16 18:17:38 2010 -0400

    Add upgrade/migration script for new style format.
    
    Run this after the db migration is run. Do not remove or change
    anything in the config/styles.php before this is run.

 ansel/scripts/upgrades/2010-09-16_migrate_styles.php |   45 ++++++++++++++++++
 1 files changed, 45 insertions(+), 0 deletions(-)
 create mode 100644 ansel/scripts/upgrades/2010-09-16_migrate_styles.php

http://git.horde.org/co.php/ansel/scripts/upgrades/2010-09-16_migrate_styles.php?rt=horde-git&r=9ac68806590918892ec7626bc1ef3f99c005cc97

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

commit 9ae008729b7e42ef7864930a18488fbd3385ff22
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Thu Sep 16 18:18:50 2010 -0400

    remove commented out code, make note of this change.

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

http://git.horde.org/diff.php/ansel/lib/Storage.php?rt=horde-git&r1=f9f124904165a010eeb62f0ad057a0e3b31b001d&r2=9ae008729b7e42ef7864930a18488fbd3385ff22

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

commit 7bb29485af8e490db3e523521b2504a2038d6a17
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Thu Sep 16 18:34:02 2010 -0400

    Use ansel_default for any style names that don't currently exist.

 ansel/scripts/upgrades/2010-09-16_migrate_styles.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/diff.php/ansel/scripts/upgrades/2010-09-16_migrate_styles.php?rt=horde-git&r1=9ac68806590918892ec7626bc1ef3f99c005cc97&r2=7bb29485af8e490db3e523521b2504a2038d6a17

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

commit fc5407e568e4fb2404464dca7c5d6ee00ca2d27f
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Thu Sep 16 18:46:37 2010 -0400

    Actually, we need to migrate ansel_default as well...an empty style
    means to use the user's default style pref

 ansel/scripts/upgrades/2010-09-16_migrate_styles.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/diff.php/ansel/scripts/upgrades/2010-09-16_migrate_styles.php?rt=horde-git&r1=7bb29485af8e490db3e523521b2504a2038d6a17&r2=fc5407e568e4fb2404464dca7c5d6ee00ca2d27f

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

commit 58774be5d0eac27e0a45cd4c3df70714f45506b0
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Fri Sep 17 13:21:35 2010 -0400

    phpdoc

 ansel/lib/ImageGenerator.php |   15 +++++++++++----
 1 files changed, 11 insertions(+), 4 deletions(-)

http://git.horde.org/diff.php/ansel/lib/ImageGenerator.php?rt=horde-git&r1=a16a5edbbc21b19397fb306f2234d85ec56b7938&r2=58774be5d0eac27e0a45cd4c3df70714f45506b0

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

commit eb29b00fb8aaf7a9de0ac0a250a31837b60a46d6
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Fri Sep 17 22:14:33 2010 -0400

    More style related refactoring:
    
    Ansel now automatically picks up and makes available any new image
    generators placed in lib/ImageGenerator. Will look for a matching "Stack"
    generator for generating image stacks, if no match found, reverts to standard
    thumbnail.  Ditto for gallery view styles placed in lib/View/GalleryRenderer.
    
    Gallery property page now displays and allows changing current gallery style settings.
    
    Some other phpdoc, and cleanup.

 ansel/config/conf.xml                              |    3 +-
 ansel/config/styles.php.dist                       |   76 +++++-----------
 ansel/lib/Gallery.php                              |   23 ++++--
 ansel/lib/ImageGenerator.php                       |   24 ++++-
 ansel/lib/ImageGenerator/PolaroidThumb.php         |    6 ++
 ansel/lib/ImageGenerator/RoundedThumb.php          |    6 ++
 ansel/lib/ImageGenerator/ShadowThumb.php           |    6 ++
 ansel/lib/ImageGenerator/Thumb.php                 |    6 ++
 ansel/lib/Injector/Binder/Styles.php               |    4 +-
 ansel/lib/View/GalleryProperties.php               |   96 +++++++++++++++-----
 ansel/lib/View/GalleryRenderer/Base.php            |   11 ++-
 ansel/lib/View/GalleryRenderer/Gallery.php         |    7 ++
 ansel/lib/View/GalleryRenderer/GalleryLightbox.php |    7 ++
 ansel/templates/gallery/partial/_styles.html.php   |   29 ++----
 ansel/templates/gallery/properties.html.php        |    4 +-
 15 files changed, 192 insertions(+), 116 deletions(-)

http://git.horde.org/diff.php/ansel/config/conf.xml?rt=horde-git&r1=6b2c7d5e725f211a601798d707c631ba710748e2&r2=eb29b00fb8aaf7a9de0ac0a250a31837b60a46d6
http://git.horde.org/diff.php/ansel/config/styles.php.dist?rt=horde-git&r1=6b3f11381ab010b38dfa9f80178a5ae712d66bf4&r2=eb29b00fb8aaf7a9de0ac0a250a31837b60a46d6
http://git.horde.org/diff.php/ansel/lib/Gallery.php?rt=horde-git&r1=4462bde6780d3194771b5c71c21f43b09f1f64d5&r2=eb29b00fb8aaf7a9de0ac0a250a31837b60a46d6
http://git.horde.org/diff.php/ansel/lib/ImageGenerator.php?rt=horde-git&r1=58774be5d0eac27e0a45cd4c3df70714f45506b0&r2=eb29b00fb8aaf7a9de0ac0a250a31837b60a46d6
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/PolaroidThumb.php?rt=horde-git&r1=c3c6189c23971de660d2f8f1876562d15a086286&r2=eb29b00fb8aaf7a9de0ac0a250a31837b60a46d6
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/RoundedThumb.php?rt=horde-git&r1=d5af214e527ee89933a480551646dd0b87b7eb66&r2=eb29b00fb8aaf7a9de0ac0a250a31837b60a46d6
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/ShadowThumb.php?rt=horde-git&r1=d5af214e527ee89933a480551646dd0b87b7eb66&r2=eb29b00fb8aaf7a9de0ac0a250a31837b60a46d6
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/Thumb.php?rt=horde-git&r1=7115a22bef9ead59732b473875f5cd38efee3b38&r2=eb29b00fb8aaf7a9de0ac0a250a31837b60a46d6
http://git.horde.org/diff.php/ansel/lib/Injector/Binder/Styles.php?rt=horde-git&r1=915027da14f7b892c0790896264146249b54d68a&r2=eb29b00fb8aaf7a9de0ac0a250a31837b60a46d6
http://git.horde.org/diff.php/ansel/lib/View/GalleryProperties.php?rt=horde-git&r1=f9f124904165a010eeb62f0ad057a0e3b31b001d&r2=eb29b00fb8aaf7a9de0ac0a250a31837b60a46d6
http://git.horde.org/diff.php/ansel/lib/View/GalleryRenderer/Base.php?rt=horde-git&r1=c3c6189c23971de660d2f8f1876562d15a086286&r2=eb29b00fb8aaf7a9de0ac0a250a31837b60a46d6
http://git.horde.org/diff.php/ansel/lib/View/GalleryRenderer/Gallery.php?rt=horde-git&r1=0f5fc56d126e237c05adf339174b95e67e1aa633&r2=eb29b00fb8aaf7a9de0ac0a250a31837b60a46d6
http://git.horde.org/diff.php/ansel/lib/View/GalleryRenderer/GalleryLightbox.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=eb29b00fb8aaf7a9de0ac0a250a31837b60a46d6
http://git.horde.org/diff.php/ansel/templates/gallery/partial/_styles.html.php?rt=horde-git&r1=d5af214e527ee89933a480551646dd0b87b7eb66&r2=eb29b00fb8aaf7a9de0ac0a250a31837b60a46d6
http://git.horde.org/diff.php/ansel/templates/gallery/properties.html.php?rt=horde-git&r1=c3c6189c23971de660d2f8f1876562d15a086286&r2=eb29b00fb8aaf7a9de0ac0a250a31837b60a46d6

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

commit 306217a2d64cf605a5ad3390279c7376d41cf0d4
Merge: 5c3f79a eb29b00
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date:   Fri Sep 17 22:18:14 2010 -0400

    Merge branch 'Ansel_Styles'

 ansel/config/conf.xml                                            |    3 +-
 ansel/config/styles.php.dist                                     |   76 +-
 ansel/gallery.php                                                |  265 +---
 ansel/gallery/captions.php                                       |    1 -
 ansel/gallery/sort.php                                           |    4 +-
 ansel/img/mini.php                                               |    4 +-
 ansel/img/prettythumb.php                                        |   11 +-
 ansel/img/screen.php                                             |    2 +-
 ansel/img/thumb.php                                              |    2 +-
 ansel/lib/Ansel.php                                              |   51 +-
 ansel/lib/Api.php                                                |   18 +-
 ansel/lib/Block/gallery.php                                      |    7 +-
 ansel/lib/Block/my_galleries.php                                 |    3 +-
 ansel/lib/Block/recent_comments.php                              |    1 -
 ansel/lib/Block/recently_added.php                               |    2 +-
 ansel/lib/Block/recently_added_geodata.php                       |    2 +-
 ansel/lib/Gallery.php                                            |   91 +-
 ansel/lib/Gallery/Decorator/Date.php                             |    9 +-
 ansel/lib/Image.php                                              |   60 +-
 ansel/lib/ImageGenerator.php                                     |   39 +-
 ansel/lib/ImageGenerator/PlainStack.php                          |   44 -
 ansel/lib/ImageGenerator/PolaroidStack.php                       |   44 -
 ansel/lib/ImageGenerator/PolaroidThumb.php                       |   10 +-
 ansel/lib/ImageGenerator/PolaroidThumbStack.php                  |   44 +
 ansel/lib/ImageGenerator/PrettyThumb.php                         |   57 -
 ansel/lib/ImageGenerator/RoundedStack.php                        |   46 -
 ansel/lib/ImageGenerator/RoundedThumb.php                        |   63 +
 ansel/lib/ImageGenerator/RoundedThumbStack.php                   |   46 +
 ansel/lib/ImageGenerator/ShadowSharpThumb.php                    |   57 -
 ansel/lib/ImageGenerator/ShadowThumb.php                         |   63 +
 ansel/lib/ImageGenerator/ShadowThumbStack.php                    |   44 +
 ansel/lib/ImageGenerator/Thumb.php                               |    6 +
 ansel/lib/Injector/Binder/Styles.php                             |    4 +-
 ansel/lib/Storage.php                                            |   40 +-
 ansel/lib/Style.php                                              |   90 ++
 ansel/lib/Tagger.php                                             |    4 +
 ansel/lib/Tile/DateGallery.php                                   |   14 +-
 ansel/lib/Tile/Gallery.php                                       |   18 +-
 ansel/lib/Tile/Image.php                                         |    8 +-
 ansel/lib/View/Base.php                                          |    2 +-
 ansel/lib/View/EmbeddedRenderer/GalleryLink.php                  |    2 +-
 ansel/lib/View/Gallery.php                                       |    3 +-
 ansel/lib/View/GalleryProperties.php                             |  438 ++++++
 ansel/lib/View/GalleryRenderer/Base.php                          |   24 +-
 ansel/lib/View/GalleryRenderer/Gallery.php                       |    7 +
 ansel/lib/View/GalleryRenderer/GalleryLightbox.php               |    7 +
 ansel/lib/View/Image.php                                         |    8 +-
 ansel/lib/View/List.php                                          |    3 +-
 ansel/lib/View/Results.php                                       |    5 +-
 ansel/lib/Widget/Base.php                                        |    4 +-
 ansel/lib/Widget/GalleryFaces.php                                |    2 +-
 ansel/lib/Widget/OtherGalleries.php                              |    5 +-
 ansel/lib/Widget/OwnerFaces.php                                  |    2 +-
 ansel/migration/1_ansel_base_tables.php                          |  186 +++
 ansel/migration/2_ansel_upgrade_style.php                        |   33 +
 ansel/report.php                                                 |    1 -
 ansel/rss.php                                                    |   14 +-
 ansel/scripts/sql/ansel.pgsql.sql                                |  142 --
 ansel/scripts/sql/ansel.sql                                      |  145 --
 ansel/scripts/upgrades/1.0_to_1.1.php                            |   44 -
 ansel/scripts/upgrades/2008-06-04-faces.sql                      |   25 -
 ansel/scripts/upgrades/2008-06-17_fix_varchar_lengths.sql        |    4 -
 ansel/scripts/upgrades/2008-09-13_add_image_original_date.sql    |    8 -
 ansel/scripts/upgrades/2008-09-16_add_original_date_values.php   |   32 -
 ansel/scripts/upgrades/2008-09-23_fix_group_uid.sql              |    2 -
 ansel/scripts/upgrades/2008-12-5_add_geolocation_tables.sql      |    7 -
 ansel/scripts/upgrades/2009-01-10_fix_view_mode.sql              |    5 -
 ansel/scripts/upgrades/2009-04-14_fix_view_mode.pgsql.sql        |    5 -
 ansel/scripts/upgrades/2009-06-14_fix_geolocation_values.php     |   36 -
 ansel/scripts/upgrades/2009-06-22_add_geolocation_fields.sql     |    3 -
 ansel/scripts/upgrades/2009-06-22_move_geolocation_values.php    |   23 -
 ansel/scripts/upgrades/2009-07-06_add_geolocation_timestamp.sql  |    1 -
 ansel/scripts/upgrades/2010-03-24_fix_default_faces_value.sql    |    1 -
 ansel/scripts/upgrades/2010-09-16_migrate_categories_to_tags.php |   23 +
 ansel/scripts/upgrades/2010-09-16_migrate_styles.php             |   45 +
 ansel/templates/common-header.inc                                |    2 +-
 ansel/templates/faces/face.inc                                   |    3 +-
 ansel/templates/gallery/gallery.inc                              |  123 --
 ansel/templates/gallery/partial/_styles.html.php                 |   29 +
 ansel/templates/gallery/properties.html.php                      |  136 ++
 ansel/templates/group/owner.inc                                  |    2 +-
 ansel/templates/image/crop_image.inc                             |    1 -
 ansel/templates/image/edit_image.inc                             |    1 -
 ansel/templates/image/resize_image.inc                           |    2 -
 ansel/templates/list/header.inc                                  |    2 +-
 ansel/templates/tile/image.inc                                   |    2 +-
 ansel/templates/view/gallery.inc                                 |    4 +-
 ansel/templates/view/gallerylightbox.inc                         |    4 +-
 ansel/templates/view/image.inc                                   |    2 +-
 ansel/templates/view/list.inc                                    |    4 +-
 ansel/templates/view/results.inc                                 |    4 +-
 ansel/templates/view/slideshow.inc                               |    2 +-
 92 files changed, 1582 insertions(+), 1391 deletions(-)

http://git.horde.org/diff.php/ansel/config/conf.xml?rt=horde-git&r1=6b2c7d5e725f211a601798d707c631ba710748e2&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/config/styles.php.dist?rt=horde-git&r1=6b3f11381ab010b38dfa9f80178a5ae712d66bf4&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/gallery.php?rt=horde-git&r1=7277728730e6ab11d05f3a5f0c7133315a350917&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/gallery/captions.php?rt=horde-git&r1=7277728730e6ab11d05f3a5f0c7133315a350917&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/gallery/sort.php?rt=horde-git&r1=7277728730e6ab11d05f3a5f0c7133315a350917&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/img/mini.php?rt=horde-git&r1=04ce072847321ac9a2eed7f88ebdd23d96969e62&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/img/prettythumb.php?rt=horde-git&r1=04ce072847321ac9a2eed7f88ebdd23d96969e62&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/img/screen.php?rt=horde-git&r1=04ce072847321ac9a2eed7f88ebdd23d96969e62&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/img/thumb.php?rt=horde-git&r1=04ce072847321ac9a2eed7f88ebdd23d96969e62&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Ansel.php?rt=horde-git&r1=7277728730e6ab11d05f3a5f0c7133315a350917&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Api.php?rt=horde-git&r1=4d5577215ba1bbafa134233036eef8132f6da226&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Block/gallery.php?rt=horde-git&r1=c6f86a76f9ed9d8ec7f13c25c9ffff34ab5abce9&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Block/my_galleries.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Block/recent_comments.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Block/recently_added.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Block/recently_added_geodata.php?rt=horde-git&r1=eb9895ffb9b0e03c09f2b4defe7fd5d18da724d3&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Gallery.php?rt=horde-git&r1=0f5fc56d126e237c05adf339174b95e67e1aa633&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Gallery/Decorator/Date.php?rt=horde-git&r1=942bf89bab0d677af430b8893eadf2cc88ad330e&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Image.php?rt=horde-git&r1=ecd4a50936b0f11b44b02c339f1a1299e38e7fe5&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/ImageGenerator.php?rt=horde-git&r1=a16a5edbbc21b19397fb306f2234d85ec56b7938&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/PlainStack.php?rt=horde-git&r1=d293fe9fedf628bfe4bf1743f4d6d9c452011465&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/PolaroidStack.php?rt=horde-git&r1=d293fe9fedf628bfe4bf1743f4d6d9c452011465&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/PolaroidThumb.php?rt=horde-git&r1=7115a22bef9ead59732b473875f5cd38efee3b38&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/co.php/ansel/lib/ImageGenerator/PolaroidThumbStack.php?rt=horde-git&r=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/PrettyThumb.php?rt=horde-git&r1=7115a22bef9ead59732b473875f5cd38efee3b38&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/RoundedStack.php?rt=horde-git&r1=d293fe9fedf628bfe4bf1743f4d6d9c452011465&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/co.php/ansel/lib/ImageGenerator/RoundedThumb.php?rt=horde-git&r=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/co.php/ansel/lib/ImageGenerator/RoundedThumbStack.php?rt=horde-git&r=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/ShadowSharpThumb.php?rt=horde-git&r1=7115a22bef9ead59732b473875f5cd38efee3b38&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/co.php/ansel/lib/ImageGenerator/ShadowThumb.php?rt=horde-git&r=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/co.php/ansel/lib/ImageGenerator/ShadowThumbStack.php?rt=horde-git&r=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/ImageGenerator/Thumb.php?rt=horde-git&r1=7115a22bef9ead59732b473875f5cd38efee3b38&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Injector/Binder/Styles.php?rt=horde-git&r1=915027da14f7b892c0790896264146249b54d68a&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Storage.php?rt=horde-git&r1=f47d1052eae37d542155791fb06a127c4b553f36&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/co.php/ansel/lib/Style.php?rt=horde-git&r=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Tagger.php?rt=horde-git&r1=3ea705ebaba4710d1d8cafec1c314114f8746588&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Tile/DateGallery.php?rt=horde-git&r1=2b952aa90ed203f5b5c2f20103f1487cfec0caec&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Tile/Gallery.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Tile/Image.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/View/Base.php?rt=horde-git&r1=f904da0c64f3d1e0f37342a0fb9796fa2bef48be&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/View/EmbeddedRenderer/GalleryLink.php?rt=horde-git&r1=c6f86a76f9ed9d8ec7f13c25c9ffff34ab5abce9&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/View/Gallery.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/co.php/ansel/lib/View/GalleryProperties.php?rt=horde-git&r=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/View/GalleryRenderer/Base.php?rt=horde-git&r1=ace4fa3d7de342930641ae9da807abefe49c5284&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/View/GalleryRenderer/Gallery.php?rt=horde-git&r1=0f5fc56d126e237c05adf339174b95e67e1aa633&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/View/GalleryRenderer/GalleryLightbox.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/View/Image.php?rt=horde-git&r1=2a0c35ce910d5f159586b3e74c497f250965f268&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/View/List.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/View/Results.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Widget/Base.php?rt=horde-git&r1=93c95c6b48100852e4584f23f54c225ff9f5d03b&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Widget/GalleryFaces.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Widget/OtherGalleries.php?rt=horde-git&r1=9583b1984dd8cd40fde0bbc6e67291ab16374451&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/lib/Widget/OwnerFaces.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/co.php/ansel/migration/1_ansel_base_tables.php?rt=horde-git&r=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/co.php/ansel/migration/2_ansel_upgrade_style.php?rt=horde-git&r=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/report.php?rt=horde-git&r1=7277728730e6ab11d05f3a5f0c7133315a350917&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/rss.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/scripts/sql/ansel.pgsql.sql?rt=horde-git&r1=8ed90edffe98a49db78921c296cfa1ec2dd06cdb&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/scripts/sql/ansel.sql?rt=horde-git&r1=f104d311cd2e22aa6d09911de9d0facb79cbd055&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/scripts/upgrades/1.0_to_1.1.php?rt=horde-git&r1=54a26e22e01a369372381a50d79eb655339c0956&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/scripts/upgrades/2008-06-04-faces.sql?rt=horde-git&r1=8a517bbf2a3f1bee8f19b8bf1de4cb270fb8a2b7&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/scripts/upgrades/2008-06-17_fix_varchar_lengths.sql?rt=horde-git&r1=8a517bbf2a3f1bee8f19b8bf1de4cb270fb8a2b7&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/scripts/upgrades/2008-09-13_add_image_original_date.sql?rt=horde-git&r1=8a517bbf2a3f1bee8f19b8bf1de4cb270fb8a2b7&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/scripts/upgrades/2008-09-16_add_original_date_values.php?rt=horde-git&r1=6a6307582db22eb8331e8bc7e7372d3149ecc71b&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/scripts/upgrades/2008-09-23_fix_group_uid.sql?rt=horde-git&r1=8a517bbf2a3f1bee8f19b8bf1de4cb270fb8a2b7&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/scripts/upgrades/2008-12-5_add_geolocation_tables.sql?rt=horde-git&r1=0395936f19ae533fdc096354b5b358da57ae8036&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/scripts/upgrades/2009-01-10_fix_view_mode.sql?rt=horde-git&r1=8a517bbf2a3f1bee8f19b8bf1de4cb270fb8a2b7&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/scripts/upgrades/2009-04-14_fix_view_mode.pgsql.sql?rt=horde-git&r1=8a517bbf2a3f1bee8f19b8bf1de4cb270fb8a2b7&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/scripts/upgrades/2009-06-14_fix_geolocation_values.php?rt=horde-git&r1=54a26e22e01a369372381a50d79eb655339c0956&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/scripts/upgrades/2009-06-22_add_geolocation_fields.sql?rt=horde-git&r1=9335aea9d1c2ac42c65d4c7f42691e1545a416bf&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/scripts/upgrades/2009-06-22_move_geolocation_values.php?rt=horde-git&r1=54a26e22e01a369372381a50d79eb655339c0956&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/scripts/upgrades/2009-07-06_add_geolocation_timestamp.sql?rt=horde-git&r1=8a517bbf2a3f1bee8f19b8bf1de4cb270fb8a2b7&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/scripts/upgrades/2010-03-24_fix_default_faces_value.sql?rt=horde-git&r1=0676364a3ac2e4a8b7c5f8dc90ade310c2561d1e&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/co.php/ansel/scripts/upgrades/2010-09-16_migrate_categories_to_tags.php?rt=horde-git&r=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/co.php/ansel/scripts/upgrades/2010-09-16_migrate_styles.php?rt=horde-git&r=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/templates/common-header.inc?rt=horde-git&r1=a0ce9ace9c3114b59d4926dd43c89cd19f4794c4&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/templates/faces/face.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/templates/gallery/gallery.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/co.php/ansel/templates/gallery/partial/_styles.html.php?rt=horde-git&r=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/co.php/ansel/templates/gallery/properties.html.php?rt=horde-git&r=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/templates/group/owner.inc?rt=horde-git&r1=797229d80340f75bbd61cb4511d79c6e4312031d&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/templates/image/crop_image.inc?rt=horde-git&r1=a0662bb9e501771ae1fdb966f7331dedd19b5ece&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/templates/image/edit_image.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/templates/image/resize_image.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/templates/list/header.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/templates/tile/image.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/templates/view/gallery.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/templates/view/gallerylightbox.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/templates/view/image.inc?rt=horde-git&r1=98ed03542df709a6bc37f19cbe04dc2c889e051d&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/templates/view/list.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/templates/view/results.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4
http://git.horde.org/diff.php/ansel/templates/view/slideshow.inc?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=306217a2d64cf605a5ad3390279c7376d41cf0d4




More information about the commits mailing list