| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-05-11 | Avoid using ORM_MPTT::parents() in relative_path() so that we're not | Bharat Mediratta | |
| calling ORM just to get paths. This is a 10x performance increase. | |||
| 2009-05-10 | Disable default sorting for performance. (thanks Romain LE DISEZ) | Bharat Mediratta | |
| 2009-05-09 | Fix for ticket #255 | Tim Almdal | |
| 2nd iteration | |||
| 2009-05-09 | Fix for ticket #255 | Tim Almdal | |
| 2009-05-02 | Move make_album_cover and remove_album_cover out of Item_Model and | Bharat Mediratta | |
| into the core helper. Clean up interactions so that when we remove an album cover we pick a new one, or clean out the old album cover if there are no other choices. | |||
| 2009-05-02 | Clean up API to be organized around the functionality it provides, not the ↵ | Bharat Mediratta | |
| feature its provided for. | |||
| 2009-04-29 | Refactor the creation and removal of the album covers into | Tim Almdal | |
| make_album_cover and remove_album_cover methods in Item_Model. Usage: $photo->make_album_cover() $album->remove_album_cover() | |||
| 2009-04-29 | Reset the parent thumbnail in Item_Model::delete instead of where the | Tim Almdal | |
| delete was happening. This will insure that it is consistently done for all deletes and we don't have to remember to replicate the code. | |||
| 2009-04-29 | Move the module::event("before_item_delete") into the | Tim Almdal | |
| Item_Model::delete method. This will insure that it will get called for all events. Currently it is not being called for children of an album when the parent album is deleted. | |||
| 2009-04-28 | Change _adjust_thumb_size to adjust_thumb_size and make public so we | Tim Almdal | |
| can access if from organize | |||
| 2009-04-24 | Fixed typo in comment, added docblock. | Chad Kieffer | |
| 2009-04-22 | Remove the negative weighting for albums. The are now positioned | Tim Almdal | |
| based on the insertion order. | |||
| 2009-04-09 | Missed a closing para ) | Tim Almdal | |
| 2009-04-09 | Change the weight for albums from zero, which could give us | Tim Almdal | |
| indeterminate ordering, so that ablums are initially shown first. | |||
| 2009-04-09 | Clean up delete code as per Bharat's note | Tim Almdal | |
| 2009-04-09 | Merge the micro_thumb_tag method into thumb_tag and add a third | Tim Almdal | |
| parameter to indicate that a micro thumb is being generated | |||
| 2009-04-08 | Fixes issues with Server Add: | Tim Almdal | |
| 1) Fixes Ticket #208 2) Fixes Ticket #190 3) Fixes an unticketed issue where two items could collide when creating the thumbnail and/or resize. For example, loading a.flv and a.jpg would have generated the same thumbnail image. This change adds a random value to the name to avoid conflicts. 4) Added item::__set() to clear the relative path if the name changes | |||
| 2009-04-05 | Add a weight column to the items model. Change the album ordering to | Tim Almdal | |
| use this as the default instead of id. This prepares the way for manual reordering in the organize functionality. | |||
| 2009-03-27 | Add a method to create a micro_thumb that is centered vertically in | Tim Almdal | |
| its container (initially used for organize album view) | |||
| 2009-03-26 | Update comments to reflect that the results of item::children or | Tim Almdal | |
| item::descendants uses the specified sort order | |||
| 2009-03-25 | untabify | Bharat Mediratta | |
| 2009-03-24 | Change the item model so it will actually delete all the file system | Tim Almdal | |
| objects when an item is deleted. | |||
| 2009-03-23 | Fix for ticket #168: Set a default value for extra_attrs on the ↵ | Tim Almdal | |
| Item_Model::thumb_tag() | |||
| 2009-03-20 | Don't divide by zero in thumb_tag if there's no thumbnail | Bharat Mediratta | |
| 2009-03-20 | Restore $extra_attrs in img tags. Roll back to using .gThumbnail in quick pane. | Chad Kieffer | |
| 2009-03-18 | Fix for ticket #155. Delete the item record before unlinking the | Tim Almdal | |
| files. | |||
| 2009-03-16 | Oops, I used the wrong resize variables in my last change. | Bharat Mediratta | |
| 2009-03-16 | Remove unnecessary __get() function | Bharat Mediratta | |
| 2009-03-15 | Move references to "album" out of ORM_MPTT since it's supposed to be | Bharat Mediratta | |
| implementation agnostic. | |||
| 2009-03-14 | Don't use html::image because it forces absolute urls, which we don't want. | Bharat Mediratta | |
| 2009-03-14 | Default thumb/resizes to relative urls. | Bharat Mediratta | |
| 2009-03-09 | Override the ORM_MTTP::children and ORM_MTPP::descendants methods in | Tim Almdal | |
| the item model and always pass the orderby fields. This insures that all children or descendant calls will respect the album sort order. | |||
| 2009-03-09 | Change Item_Model::get_position to respect the sort order. This also | Tim Almdal | |
| forced the next/prev buttons in album navication to respect the sort order as well. | |||
| 2009-03-09 | More tasks cleanup. | Bharat Mediratta | |
| Don't join through to the users table; that won't work in embedded mode. Instead, add Tasks_Model::owner() that calls user::lookup() and refer to the object directly in the view. Add Admin_Maintenance:remove_finished_tasks() so that we can easily do old task cleanup. Hide Running / Finished sections if there aren't any running or finished tasks. | |||
| 2009-03-09 | Make the description a text column so that we can handle much larger | Bharat Mediratta | |
| descriptions. | |||
| 2009-03-05 | Fix for ticket #114 Permissions seem to be ignored | Tim Almdal | |
| 2009-03-04 | Allow url() to return absolute urls | Bharat Mediratta | |
| 2009-02-27 | * Refactor task management methods from admin_maintenance.php to | Tim Almdal | |
| task.php * Added a owner_id field to the task database * Modified the admin maintenace to show the owner of the task <<**** Requires a reinstallation of core ****>> | |||
| 2009-02-25 | Add support MP4 movies also. Flowplayer supports them and can stream | Bharat Mediratta | |
| them using the h264streaming plugin. Everything else is a fairly minor change. | |||
| 2009-02-24 | Fix for ticket #98. | Tim Almdal | |
| The problem was that item::delete was deleting the parent album | |||
| 2009-02-22 | If the album_cover_item_id points to a missing item (unlikely but possible) ↵ | Bharat Mediratta | |
| just treat it like it was missing and continue | |||
| 2009-02-22 | Very basic movie support. You can upload a FLV file, we use ffmpeg to | Bharat Mediratta | |
| extract a thumbnail out of it and if you click through we show it using flowplayer. | |||
| 2009-02-09 | Add local localization functionality. Local = no means to upload / download ↵ | Andy Staudacher | |
| translations to a translation server yet. - Added an outgoing_translations table to store translations from the local translation UI. - I18n class is checking incoming_ and outgoing_translations for translations, giving the latter priority. - Not handling plural strings in the translations UI yet. | |||
| 2009-02-08 | rollback r20001-r19998, r19995. This may require a reinstall | Tim Almdal | |
| 2009-02-07 | Assign the Album|Photo path field explicitly instead of hiding that in | Tim Almdal | |
| the item::__set magic method. | |||
| 2009-02-06 | Implement fix for ticket #35. *** Requires reinstall of core *** | Tim Almdal | |
| * Added new field in items table (path) which is sanitized version of name. * Added __set method on Items_module to set the path field whenever the name field is changed. * Made some changes to the scaffolding so missing the path column would not kill the scaffolding. * Changed MY_url::site so not having a 3rd parameter won't throw an error. | |||
| 2009-02-06 | Convert all item->type == "album" to item->is_album() | Tim Almdal | |
| Convert all item->type == "photo" to item->is_photo() | |||
| 2009-01-29 | Add delete support as a quick-edit option | Bharat Mediratta | |
| 2009-01-29 | Add support for pretty urls. So now instead of urls like: | Bharat Mediratta | |
| http://example.com/gallery3/index.php/albums/2 http://example.com/gallery3/index.php/photos/9 You'll see urls like: http://example.com/gallery3/index.php/Family/Weddings http://example.com/gallery3/index.php/Family/Weddings/Bob.jpg | |||
| 2009-01-24 | Add move support. Use the move icon in the quick pane. You can't | Bharat Mediratta | |
| move an item into its own hierarchy, or into an album where you don't have edit permission. | |||
