| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-07-22 | Merge commit 'upstream/master' | Romain LE DISEZ | |
| 2009-07-22 | Duh... when I added user_can, I passed in the user, but still used the ↵ | Tim Almdal | |
| groups from the session | |||
| 2009-07-22 | Upgrade code to migrate the ACL from integer to boolean. | Romain LE DISEZ | |
| Related to 719c59e0402464a0e2b14915f6d10218ff5d4729 | |||
| 2009-07-22 | Merge commit 'upstream/master' | Romain LE DISEZ | |
| 2009-07-21 | Add an API method user_can that allows for checking a specific user has the | Tim Almdal | |
| specified permission to the item. Changed can to delegate to this method passing in the active user. | |||
| 2009-07-21 | Always display the option menu so that modules with options that require | Tim Almdal | |
| menu items with view permission have somewhere to hang these menu items from. If its empty it will get removed by $menu->compact() | |||
| 2009-07-21 | The RSS link should go to the parent album when looking at photos/movies. | Bharat Mediratta | |
| Fixes ticket #566. | |||
| 2009-07-20 | Merge commit 'upstream/master' | Romain LE DISEZ | |
| 2009-07-20 | Make some API changes simplify the tag editing code. We now have a | Bharat Mediratta | |
| good pattern for allowing modules to add their own hooks to item forms! 1) Album, photo and movie forms now all use edit_item as the group and we publish item_edit_form and item_edit_form_completed events which makes it much easier in the module to handle all events. They can still differentiate based on $item->type if they want to. 2) Added tag::clear_all() and tag::compact() functions which takes the place of hiwilson's tag::update() function and is now used in tag_event::item_delete(). This provides a simple API that allows us to have a lot less event handling code. It's less efficient than what hiwilson was doing before in that it will delete and re-add tags, but if that ever turns out to be a performance issue we can do something about it then. | |||
| 2009-07-20 | (1)Add tag edit field in album/photo edit form. (2)provide edit ↵ | hiwilson | |
| functionality. (3)support multi-word tagging. | |||
| 2009-07-20 | Merge commit 'upstream/master' | Romain LE DISEZ | |
| 2009-07-20 | Don't let the task status message exceed the size of the status column when ↵ | Bharat Mediratta | |
| there's an error. | |||
| 2009-07-19 | Remove excess success logging. In the rebuild images case, it can | Bharat Mediratta | |
| make a huge log file. In the l10n_client case, it's not really necessary to know that level of detail and it makes for a weird API. | |||
| 2009-07-19 | Consistency : always use self::XXX | Romain LE DISEZ | |
| 2009-07-19 | Use BOOLEAN instead of integer to describe the permissions : | Romain LE DISEZ | |
| - DENY = false - ALLOW = true - UNKNOW = null (for intent only) - INHERIT = null (for cache) Upgrade is not included for now. | |||
| 2009-07-17 | Rename "locale" helper to "locales" to avoid conflicting with PHP 5.3. | Bharat Mediratta | |
| Fixes ticket #194 | |||
| 2009-07-17 | Change model_cache::clear() API to clear everything. This prevents | Bharat Mediratta | |
| old ORM relationships from hanging around, which was causing problems when doing MPTT manipulations (resulting in incorrect permission propagation-- very bad!) | |||
| 2009-07-17 | Fix a bug where moved items don't properly inherit permissions from | Bharat Mediratta | |
| their new target. After each move, recalculate the permissions for the new parent's hierarchy. Fixes ticket #552 | |||
| 2009-07-16 | Second non-trivial change to the event code. We now publish model | Bharat Mediratta | |
| related events from within the model handling code. The only exception to this currently is item_created which is challenging because we have to save the item using ORM_MPTT::add_to_parent() before the object itself is fully set up. When we get that down to one call to save() we can publish that event from within the model also. | |||
| 2009-07-16 | Non-trivial changes to the event handling code: | Bharat Mediratta | |
| 1) The item_updated event no longer takes the old and new items. Instead we overload ORM to track the original data and make that available via the item. This will allow us to move event publishing down into the API methods which in turn will give us more stability since we won't require each controller to remember to do it. 2) ORM class now tracks the original values. It doesn't track the original relationships (no need for that, yet) 3) Added new events: item_deleted group_deleted user_deleted | |||
| 2009-07-14 | Move the gallery version out of a module variable and into a constant | Bharat Mediratta | |
| in the gallery helper. This will let us bump the version without having to bump the gallery module number. | |||
| 2009-07-14 | Add /opt/bin as a binary path. | Bharat Mediratta | |
| 2009-07-11 | Whitespace fixes. | Bharat Mediratta | |
| 2009-07-11 | Position gItem and gPhoto relative, then position quick and thumb menus as ↵ | Chad Kieffer | |
| absolute within them. Moved css from quick.js to quick.css. | |||
| 2009-07-10 | Fix for ticket #341. | Tim Almdal | |
| Change the wording for the sort order from "Default" to "Order Added" | |||
| 2009-07-10 | Create a new [options] submenu under the thumb menu, and move the | Bharat Mediratta | |
| Digibug print button into it. Right now, it doesn't display properly. | |||
| 2009-07-07 | Merge branch 'master' of git@github.com:/gallery/gallery3 | Bharat Mediratta | |
| 2009-07-08 | Add task logging to the "Update Search Index" task | Tim Almdal | |
| 2009-07-08 | Add task logging to the Update translations | Tim Almdal | |
| 2009-07-08 | Added task logging to the Rebuild Images task. | Tim Almdal | |
| 2009-07-07 | Change references to Gallery 2 and Gallery 3 to consistently refer to | Tim Almdal | |
| Gallery n as opposed any variants of this. | |||
| 2009-07-06 | Always log the task completion status message | Tim Almdal | |
| 2009-07-06 | Catch exceptions that are thrown within the task and log them to the task log | Tim Almdal | |
| and then set the task to done, the state to error and the status message set to the Exception Message. | |||
| 2009-07-05 | Add task logging functionality. When a task runs, it creates a log that is | Tim Almdal | |
| stored in the persistant cache for 30 days. On the admin_maintenance page there is a new link for completed tasks "browse log". Clicking this will open a dialog box that has the the contents of the log displayed. The user can then view the log and close the dialog, or press the save button to download the log to their local machine. | |||
| 2009-07-04 | Fix for ticket #477. Use nl2br method when rendering comment::text and | Tim Almdal | |
| item::description. In addition add p::clean or p::purify to places that xss cleaning had missed (i.e. rss feeds) | |||
| 2009-07-03 | Split the clean method into two clean and purify. clean is a light weight | Tim Almdal | |
| approach using html::specialchars and purify uses HTMLPurifier to intelligently cleanse the output fields. Use purifier for text and title fields where it is likely that a user would enter html to format their data. | |||
| 2009-07-03 | Ignore lib/ folders in l10n_scanner task. | Andy Staudacher | |
| 1. Because it makes sense. 2. As a quick fix - For some reason it wouldn't work properly anymore now with the HTMLPurifier lib | |||
| 2009-07-03 | Update the source so the third party code passes the File Structure Test | Tim Almdal | |
| 2009-07-03 | Fix for ticket #400: Add HTMLPurifier to gallery3 and change p::clean() to ↵ | Tim Almdal | |
| call HTMLPurifier->purify() | |||
| 2009-07-03 | Fix for ticket #400: Add HTMLPurifier to gallery3 and change p::clean() to ↵ | Tim Almdal | |
| call HTMLPurifier->purify() | |||
| 2009-07-03 | Merge branch 'master' of git@github.com:/gallery/gallery3 | Bharat Mediratta | |
| 2009-07-03 | Merge branch 'master' of git@github.com:/gallery/gallery3 | Bharat Mediratta | |
| 2009-07-02 | Merge branch 'master' of git@github.com:/gallery/gallery3 | Bharat Mediratta | |
| Conflicts: modules/server_add/controllers/admin_server_add.php | |||
| 2009-07-02 | Suppress the filesize error if the thumbnail is not found so we can get | Tim Almdal | |
| an EMPTY_INPUT_FILE exception which we can then log and continue. | |||
| 2009-07-02 | ORM::Factory -> ORM::factory | Bharat Mediratta | |
| 2009-07-01 | Fix a bunch of XSS vulnerabilities turned up by manual inspection | Bharat Mediratta | |
| using the checklist in ticket #385. | |||
| 2009-06-30 | Fix i18n issue - accidentally called t() on translated messages. Please ↵ | Andy Staudacher | |
| truncate incoming_translations after this update to get rid of bad messages in your DB. | |||
| 2009-06-29 | Partial fix for ticket 471 - Fix parsing of module/theme info files in l10n ↵ | Andy Staudacher | |
| scanner. | |||
| 2009-06-29 | Partial fix for ticket 471 - i18n of module names in upgrader. | Andy Staudacher | |
| 2009-06-29 | Merge branch 'master' of git@github.com:gallery/gallery3 | Bharat Mediratta | |
