| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-05-19 | Create an ajax response framework that inserts <meta> tags to guard | Bharat Mediratta | |
| against UTF-7, and create a $.gallery_autocomplete variant of jQuery's autocomplete that expects the first line to be a <meta> tag and discards it. More complete fix for #1871. | |||
| 2012-05-19 | Revert "Prevent server_add autocomplete from being interpreted as UTF-7. ↵ | Bharat Mediratta | |
| Fixes #1871." This only fixes server_add, we need to fix it more systemically. This reverts commit 88c0363344860ff87bb7fa2d084b8ab190b364cb. | |||
| 2012-05-16 | Prevent server_add autocomplete from being interpreted as UTF-7. Fixes #1871. | Bharat Mediratta | |
| 2012-05-11 | Improve the way server add deals with wacky directory names. Fixes #1857. | Bharat Mediratta | |
| 2012-05-07 | Use legal_file::get_extensions() and variants where appropriate. Fixes #1815. | Bharat Mediratta | |
| 2012-02-27 | Update copyright to 2012. #1822 | Bharat Mediratta | |
| 2011-04-02 | Fix an outdated reference to $entry->file which went away in v4 of the | Bharat Mediratta | |
| module. Fixes #1669. | |||
| 2011-01-21 | Update copyright to 2011. | Bharat Mediratta | |
| 2011-01-21 | Fix: photos get added as albums in case only some photos are selected via ↵ | Joe7 | |
| server ad Fixes #1619 | |||
| 2011-01-20 | Fix a bug introduced in the refactor in | Bharat Mediratta | |
| 65448548637f462ad17c12b149cdb2a169d07026 for #1547. By skipping the staging dirs, we wind up scanning the entire filesystem because the first model is blank so there's no leading path before the /*. | |||
| 2011-01-19 | Fix a bug introduced in 65ff2470a505fbc18211093ac131c29b1e820c3e, | Bharat Mediratta | |
| clearly I didn't test this enough. Further fix for #1460. | |||
| 2011-01-10 | New albums should take the sort order from their parent. Fixes #1599. | Bharat Mediratta | |
| 2011-01-09 | Use eeldivad's fallback code from ↵ | Bharat Mediratta | |
| http://gallery.menalto.com/node/96806#comment-358404 instead of relying solely on preg_quote. Fixes #1460. | |||
| 2011-01-09 | Move the directory queue into the database as well, otherwise if you | Bharat Mediratta | |
| have too many directories it blows out the task queue and the whole thing falls over. Fixes #1547. | |||
| 2011-01-09 | Replace preg_quote with a more targeted regex to fix the problem where | Bharat Mediratta | |
| directories get skipped. Fixes #1460, I think. | |||
| 2010-07-31 | Full pass over all the JSON encoding and JS dialog code. We now abide | Bharat Mediratta | |
| by the following rules: 1) An initial dialog or panel load can take either HTML or JSON, but the mime type must accurately reflect its payload. 2) dialog form submits can handle a pure HTML response, but the mime type must also be correct. This properly resolves the problem where the reauth code gets a JSON response first from the reauth code, and then an HTML response when you reauth and continue on to a given form -- try it out with Admin > Settings > Advanced. 3) All JSON replies must set the mime type correctly. The json::reply convenience function does this for us. 4) By default, any HTML content sent back in the JSON response should be in the "html" field, no longer the "form" field. The combination of these allows us to stop doing boilerplate code like this in our controllers: // Print our view, JSON encoded json::reply(array("form" => (string) $view)); instead, controllers can just return HTML, eg: // Print our view print $view; That's much more intuitive for developers. | |||
| 2010-07-31 | More patches as part of #1225. Change the 'core' modules to use the json::reply | Tim Almdal | |
| method to set the content type header and encode the response as a json object | |||
| 2010-07-11 | Merge branch 'master' into talmdal_dev | Tim Almdal | |
| 2010-07-10 | Cast the status message to a string so that it gets sent down as a string in ↵ | Bharat Mediratta | |
| the json blob. Fixes ticket #1198. | |||
| 2010-07-10 | Accept extension .m4v as video/mp4 | Romain LE DISEZ | |
| 2010-07-06 | Fix for ticket #1181. Use $.getJSON to retrieve the json contents of the ↵ | Tim Almdal | |
| dialog. Convert all the controllers that create the data to go into a dialog to return the html as part of a json object. | |||
| 2010-04-30 | Add page_title to admin views. Closes #1038. | ckieffer | |
| 2010-04-04 | preg_quote() the pattern we use for directory globs to avoid letting | Bharat Mediratta | |
| the filename be treated as a regexp. Fixes #1086. | |||
| 2010-03-03 | Update the copyright to 2010. It's only 3 months into the year :-) | Bharat Mediratta | |
| 2010-02-22 | Fix server-add for German and other locales that use comma as decimal separator. | Andy Staudacher | |
| 2010-01-31 | Remove debug code. | Bharat Mediratta | |
| 2010-01-28 | cast $task->done to bool so that it doesn't show up as "0" to the JS, | Bharat Mediratta | |
| which will interpret that as a true value, when it's not. | |||
| 2010-01-27 | Convert back to using ORM::factory(..., $id) instead of calling where(). | Bharat Mediratta | |
| 2010-01-23 | Switch to model based validation. | Bharat Mediratta | |
| 2010-01-24 | First pass at converting server add to model based validation. | Bharat Mediratta | |
| 2010-01-09 | Fix for ticket #972 and more. In Kohana 2.4, ORM::delete_all ignores any where | Tim Almdal | |
| clauses and deletes all the entries in the table unless an array of id's are passed as the parameter. This fix used the Database_builder to specify any where conditions. Thanks psvo for find the first one. :-) | |||
| 2009-12-30 | The problem occurs because the square brackets are treated as special ↵ | Tim Almdal | |
| characters in the glob to find the children. This patch escapes the square brackets. Fixes ticket #855 | |||
| 2009-12-25 | Fix uses of count_records() and use ORM to count instead. | Bharat Mediratta | |
| 2009-12-21 | Updates for the latest version of Kohana 2.4: | Bharat Mediratta | |
| 1) Controller::$input is gone -- use Input::instance() now 2) Handle new 'database.<default>.connection.params' parameter 3) Handle new 'cache.<default>.prefix' parameter | |||
| 2009-12-18 | Convert a database call. | Bharat Mediratta | |
| 2009-12-02 | Fix a bunch of places where we were using "= null" instead of "IS NULL". | Bharat Mediratta | |
| 2009-11-26 | Convert all DB where() calls to take 3 arguments. | Bharat Mediratta | |
| Convert all open_paren() calls to and_open() or or_open() as appropriate. | |||
| 2009-11-25 | ORM::orderby -> ORM::order_by | Bharat Mediratta | |
| 2009-11-25 | Preliminary work to cut over to Kohana 2.4 | Bharat Mediratta | |
| - Kohana::log() -> Kohana_Log::add() - Kohana::config_XXX -> Kohana_Config::instance()->XXX - Implement View::set_global in MY_View - Updated Cache_Database_Driver to latest APIs - ORM::$loaded -> ORM::loaded() - Updated item::viewable() to use K2.4 parenthesization | |||
| 2009-10-24 | Merge branch 'master' into talmdal_dev | Tim Almdal | |
| Conflicts: modules/server_add/helpers/server_add_theme.php | |||
| 2009-10-23 | Adjust order of items on server_add admin page. Restore autocomplete to the ↵ | Chad Kieffer | |
| add form. Created a server_add.css file. | |||
| 2009-10-22 | Change the name of identity library from Identity to IdentityProvider. ↵ | Tim Almdal | |
| Create a helper class called identity to simplify call the Identity Provider. Move the contents of MY_Session.php to the new helper class and remove the MY_Session class | |||
| 2009-10-19 | Merge branch 'master' into talmdal_dev | Tim Almdal | |
| Conflicts: modules/user/views/admin_users.html.php | |||
| 2009-10-18 | Moved the short_form init function to gallery.common and made it jQuery ↵ | Chad Kieffer | |
| plugin. Dropped gallery.form.js. Applied short forms to server_add and tag admin pages. Added tag.css to admin views. Added .g-wide {}. | |||
| 2009-10-16 | Remove all non Identity API methods from Identity.php. Created an ↵ | Tim Almdal | |
| MY_Session class to provide the user state changes in the session and a login.php helper that has the login form. | |||
| 2009-10-16 | Start simplifying the interface by moving the static methods from user.php ↵ | Tim Almdal | |
| and group.php. Tried creating a identity helper, but the helper identity.php was confused with the library Identity.php. So got around this by making the methods on Identity static and calling the instance within the static methods. Also temporarily moved the user.php and group.php back into the user module. | |||
| 2009-10-04 | Renamed more CSS selectors from gName to g-name. | Chad Kieffer | |
| 2009-10-04 | Renamed most, if not all css selectors from gName to g-name. Moved a few ↵ | Chad Kieffer | |
| shared images from wind to lib. Deleted unused images in the admin_wind. This will likely break a few ajax features. | |||
| 2009-09-17 | Don't try to creat an album that corresponds to the staging directory. Just ↵ | Tim Almdal | |
| add the contents of the staging directlyinto the album that server_add was invoked from. Fixes ticket #785 | |||
| 2009-09-17 | Don't show links as part of the auto complete list | Tim Almdal | |
