| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-01-21 | Update copyright to 2013. Fixes #1953. | Bharat Mediratta | |
| 2012-02-27 | Update copyright to 2012. #1822 | Bharat Mediratta | |
| 2011-04-26 | Stop using Pagination() and instead use $theme->pager() in views. | Bharat Mediratta | |
| Move the pager() function up to Gallery_View and replace themes/admin_wind/views/pager.html.php (Pagination based) with a modified version from the wind theme in themes/admin_wind/views/paginator.html.php. Fixes #1718. | |||
| 2011-01-21 | Update copyright to 2011. | Bharat Mediratta | |
| 2011-01-15 | Style fixes. | Bharat Mediratta | |
| 2011-01-15 | Tweake Joe's change to admin_users to revert the code that joins against the ↵ | Bharat Mediratta | |
| items table; it's not clear that this is going to be efficient for large data sets. | |||
| 2011-01-11 | Making good use of Pagination class to reduce code (removed MY_Controller ↵ | Joe7 | |
| which duplicated some functionality available in Pagination as well) | |||
| 2011-01-11 | coding style | Joe7 | |
| 2011-01-09 | Paginator for user manager admin view | Joe7 | |
| Closes ticket #1557 Note: also optimizes the way item count is retrieved for users, saving <user_count>-1 queries when displaying this page | |||
| 2010-09-22 | Remove the 4 character minimum for group name length. Fixes ticket #1396. | Bharat Mediratta | |
| 2010-09-08 | Show the number of photos/albums the user owns in the Admin > Users | Bharat Mediratta | |
| page, and improve the message to explain what's going to happen to the deleted user's items. Partial fix for #1344, which I can't reproduce now. | |||
| 2010-08-01 | Merge branch 'dialog' of github.com:gallery/gallery3 into dialog | Tim Almdal | |
| 2010-08-01 | Merge branch 'master' into dialog | Tim Almdal | |
| 2010-08-01 | Add a localized error message for missing usernames. Fixes ticket #1266. | Bharat Mediratta | |
| 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 | Partial fix for #1225 addresses the issues with the user edit forms. | Tim Almdal | |
| 2010-07-23 | Partial fix for #1225 addresses the issues with the user edit forms. | Tim Almdal | |
| 2010-07-20 | Show the old group name in the error message when we fail to modify a group. ↵ | Bharat Mediratta | |
| Fixes ticket #1233. | |||
| 2010-07-20 | Fix a bunch of missing or invalid error messages. Fixes ticket #1232. | Bharat Mediratta | |
| 2010-07-20 | Add internationalized error messages for adding and editing groups. | Bharat Mediratta | |
| 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-03-03 | Update the copyright to 2010. It's only 3 months into the year :-) | Bharat Mediratta | |
| 2010-02-06 | Fix up Admin_Users_Controller() form handling now that user_form.html | Bharat Mediratta | |
| is gone. Fixes ticket #1005. | |||
| 2010-02-01 | Localize validation errors. | Bharat Mediratta | |
| 2010-01-31 | Fix lots of warnings that pop up when we're in E_STRICT mode. They're | Bharat Mediratta | |
| mostly issues around uninitialized variables, calling non-static functions in a static context, calling Session functions directly instead of on its singleton, passing non-variables by reference, and subclasses not using the same interface as the parent class. | |||
| 2010-01-30 | Don't override the password in the database if it's empty in the form. | Bharat Mediratta | |
| Fixes ticket #995. | |||
| 2010-01-20 | Fix typo: edit_user -> add_user. | Bharat Mediratta | |
| 2010-01-17 | Move model rules down into their validate() function for consistency. | Bharat Mediratta | |
| Change "in_use" error to "conflict" for consistency. | |||
| 2010-01-16 | Use "(string) $form" instead of "$form->__toString()" | Bharat Mediratta | |
| 2010-01-16 | Convert Admin_Users_Controller, User_Model and Group_Model to use | Bharat Mediratta | |
| model based validation. | |||
| 2010-01-16 | Convert Admin_Users::add_user() to use model based validation. Get | Bharat Mediratta | |
| the rules and business logic out of the form and user::create(), and move it into User_Model::save(). | |||
| 2010-01-16 | Whitespace. | Bharat Mediratta | |
| 2009-12-23 | Convert a bunch of leftover kohana::show_404 calls to throw | Bharat Mediratta | |
| Kohana_404_Exception instead. These are the ones where we used a lower-case 'k' so my previous filter didn't catch it. | |||
| 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-11-21 | Correct inconsistent captialization. Fixes #906 | Tim Almdal | |
| 2009-11-06 | Remove width class from add group form, it sizes the form's elements, not ↵ | Chad Kieffer | |
| the form itself. | |||
| 2009-10-31 | Revert "Use an event 'check_user_name_exists' to validate the input name is ↵ | Tim Almdal | |
| already in use. The parameter is a standard class with the name and an exists flag. Any event handler should or their result with the exists flag." This reverts commit 04bf50bfb4241f7c814782c516732d927ff1f457. | |||
| 2009-10-30 | Caught a few more incorrect capitalizations. | Tim Almdal | |
| 2009-10-29 | Use an event 'check_user_name_exists' to validate the input name is already ↵ | Tim Almdal | |
| in use. The parameter is a standard class with the name and an exists flag. Any event handler should or their result with the exists flag. | |||
| 2009-10-27 | Check the minimum length when adding or modifying users via the admin screen. | Tim Almdal | |
| 2009-10-27 | Add a password strength meter. | Tim Almdal | |
| 2009-10-27 | Set the minimum password length to 5. The gallery owner can change this in ↵ | Tim Almdal | |
| the advance settings. | |||
| 2009-10-24 | Merge branch 'master' into talmdal_dev | Tim Almdal | |
| Conflicts: modules/server_add/helpers/server_add_theme.php | |||
| 2009-10-23 | Created user.css. Moved user-related form css to the new sheet. | Chad Kieffer | |
| 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-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 | Cleanup merge of user/group helpers into Identity interface. Reduce ↵ | Tim Almdal | |
| redundant code in the user module and remove references to the Identity helper from the user module as the user module should be able to access things directly. Simplify the get_user_list api method to just accept an array of ids to return user objects for. | |||
| 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. | |||
