| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2010-02-02 | Fix a bug in valid_password() where an empty password was considered valid. | Bharat Mediratta | |
| 2010-02-01 | Localize validation errors. | Bharat Mediratta | |
| 2010-02-01 | Fix a bug in valid_name where it wasn't checking for name collisions on new ↵ | Bharat Mediratta | |
| users. | |||
| 2010-01-31 | Force all non-guest users to have an email address since that's | Bharat Mediratta | |
| required in model validation. Without this, any save on a user without email will fail which means that you can't log in. Bump user module to version 3. | |||
| 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-30 | Fix the valid_admin code -- it was considering all non-admins invalid. | Bharat Mediratta | |
| Fixes ticket #997 (highest prime under 1000!) | |||
| 2010-01-29 | Strongly type the argument list to the model::validate method. | Tim Almdal | |
| 2010-01-28 | Localize edit form error messages. | Bharat Mediratta | |
| 2010-01-27 | Convert back to using ORM::factory(..., $id) instead of calling where(). | Bharat Mediratta | |
| 2010-01-25 | Use ORM to create the users since now our validation can handle doing | Bharat Mediratta | |
| it the right way. Set a default email address for admins. | |||
| 2010-01-25 | Make some exceptions for guests: | Bharat Mediratta | |
| 1) They don't require email 2) Guest users aren't in the everybody group. | |||
| 2010-01-23 | Merge branch 'master' of git@github.com:gallery/gallery3 into bharat_dev | Bharat Mediratta | |
| Conflicts: modules/gallery/tests/xss_data.txt | |||
| 2010-01-22 | Remove the g-right class on groups element on the manage user/groups page. ↵ | Tim Almdal | |
| fixes ticket #911 | |||
| 2010-01-22 | Change the check_environment method in the module helper and the module ↵ | Tim Almdal | |
| installers to can_activate to reflect that it is doing more than just checking the environment. | |||
| 2010-01-22 | Refactor the identity provider installation in to a common helper method ↵ | Tim Almdal | |
| (change_provider) with an initialization callback. | |||
| 2010-01-22 | Treat identity providers just like other modules and use the admin_module to | Tim Almdal | |
| install and switch to a different identity provider. | |||
| 2010-01-22 | Don't try to access ORM::$changed externally; it's protected. | Bharat Mediratta | |
| 2010-01-21 | Simplify the test using the test helper. | Bharat Mediratta | |
| 2010-01-20 | Stop using MY_ORM::original() | Bharat Mediratta | |
| 2010-01-20 | Fix typo: edit_user -> add_user. | Bharat Mediratta | |
| 2010-01-20 | Stop using MY_ORM::original(). | Bharat Mediratta | |
| 2010-01-19 | Extend Gallery_Unit_Test_Case instead of Unit_Test_Case. | Bharat Mediratta | |
| 2010-01-17 | Change IdentityProvider::create_user() to take $email as well, since that's ↵ | Bharat Mediratta | |
| a required parameter for the Gallery driver. | |||
| 2010-01-17 | Switch to model based validation approach. | Bharat Mediratta | |
| 2010-01-17 | Use an empty password for the guest user. | Bharat Mediratta | |
| 2010-01-17 | Adjust installers to work with model based validation. | 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 Users_Controller to model based validation. | 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 | |
| 2010-01-16 | Whitespace. | Bharat Mediratta | |
| 2010-01-16 | Don't pass MY_ORM::original() to update event handlers, since after | Bharat Mediratta | |
| parent::save() it'll be reset. Clone it first. This is an alternate fix for #978. | |||
| 2010-01-06 | Convert ORM::in() to ORM::where(.., "IN", ..) for K24 compatibility. | Bharat Mediratta | |
| 2010-01-02 | Stop checking the exact nature of all grups after install. It doesn't add ↵ | Bharat Mediratta | |
| any value. | |||
| 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-12-23 | ORM relations now require you to do find_all() or count_all() to get the ↵ | Bharat Mediratta | |
| results. | |||
| 2009-12-18 | Convert html::specialchars() to html::chars() | Bharat Mediratta | |
| 2009-12-17 | In Kohana 2.4, ORM no longer does the find_all() call for us when we | Bharat Mediratta | |
| retrieve related ORMs. If we tack a find_all() on the end, it breaks the User_Definition interface so create User_Model::groups() and Groups_Model::users() as glue. | |||
| 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-26 | ORM::$rules now has a special meaning. Use $form_rules for our | Bharat Mediratta | |
| internal rules code. | |||
| 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 | Merge branch 'master' of git@github.com:gallery/gallery3 | Bharat Mediratta | |
| 2009-11-21 | Make email a required field. We're using the Kohana default error | Bharat Mediratta | |
| messages when this fails, not the Gallery translation system so this is not a great solution. However, it's the same as the other model-based rules we have currently so it's no worse. Fixes ticket #897. | |||
| 2009-11-21 | Correct inconsistent captialization. Fixes #906 | Tim Almdal | |
| 2009-11-17 | Redesign the way that we consider page types to create buckets of page | Bharat Mediratta | |
| types, and a subtype for specifics. Currently the top level bucket collection, item, other Here are the core subtypes so far: collection: album, search, tag item: movie, photo other: login, reset, comment-fragment, comment It's legal to create new page_subtypes whenever you want. Use the appropriate page_type to get the coarse grain behavior that you want. | |||
| 2009-11-14 | Remove g-dialog-link from special groups delete button (registered users, ↵ | Chad Kieffer | |
| everybody), it's supposed to be disabled. Updated wording of headings and instructions. | |||
