| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2010-01-17 | Fix item_rename_fails_with_existing_name_test() -- broken because of | Bharat Mediratta | |
| http://dev.kohanaphp.com/issues/2504 | |||
| 2010-01-17 | Fix rename_album_test() | Bharat Mediratta | |
| 2010-01-17 | Fix rename_photo_test(). | Bharat Mediratta | |
| 2010-01-17 | Partially updated for model based validation. | Bharat Mediratta | |
| 2010-01-17 | Mostly conver to model based validation. Not all tests pass yet. | Bharat Mediratta | |
| 2010-01-16 | Merge branch 'master' of git@github.com:gallery/gallery3 into bharat_dev | Bharat Mediratta | |
| Conflicts: modules/gallery/models/item.php | |||
| 2010-01-15 | Revert "Fix for ticket #978. Don't reset the original property as part of ↵ | Bharat Mediratta | |
| the save processing, because that will overwrite the original values with all the new values. The problem with the original approach is that when changed event handlers used ->original(), it had already been reset as part of the save processing. Went back and forth on either leaving this alone and forcing callers to save the original prior to calling the save function, but there were a few event handlers that used ->original(). This seemed the easier change. So to reset the original you need to call reload() or clear(). There is now an optional parameter on the reload to only reload the original." This reverts commit daeaca110d16128040c86727c65df225e957f7c6. | |||
| 2010-01-15 | Merge branch 'master' of git@github.com:gallery/gallery3 into bharat_dev | Bharat Mediratta | |
| 2010-01-13 | Fix for ticket #978. Don't reset the original property as part of the save ↵ | Tim Almdal | |
| processing, because that will overwrite the original values with all the new values. The problem with the original approach is that when changed event handlers used ->original(), it had already been reset as part of the save processing. Went back and forth on either leaving this alone and forcing callers to save the original prior to calling the save function, but there were a few event handlers that used ->original(). This seemed the easier change. So to reset the original you need to call reload() or clear(). There is now an optional parameter on the reload to only reload the original. | |||
| 2010-01-10 | Merge branch 'master' of git@github.com:gallery/gallery3 into bharat_dev | 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. :-) | |||
| 2010-01-07 | Merge branch 'master' of git@github.com:gallery/gallery3 into bharat_dev | Bharat Mediratta | |
| 2010-01-06 | Correct the controller_auth_data golden file to reflect that the csrf is not ↵ | Tim Almdal | |
| longer considered dirty in the logout controller. | |||
| 2010-01-03 | Simplify the REST API code. Here's what I did: | Bharat Mediratta | |
| 1) Simplify gallery_rest to return flat models, no children and do no validation for now. 2) Flatten the REST replies and use HTTP codes to indicate success/failure instead of additional status messages. 3) Use the message and error code support in the base Exception class, instead of brewing our own in Rest_Exception. 4) Get rid of rest::success() and rest::fail() -- we only need rest::reply() since all failures are covered by throwing an exception. 5) Get rid of /rest/access_key and just use /rest for authentication. 6) Inline and simplify rest::normalize_request since we only use it once 7) Change rest::set_active_user to succeed or throw an exception 8) Extract Rest_Exception::sendHeaders into rest::send_headers() Here's what's currently broken: 1) Data validation. There currently is none 2) Logging. That's gone too 3) image block and tag code is broken 4) Tests are broken 5) No movie support | |||
| 2010-01-02 | Add rest_controller::__call to the authorized controller methods | Tim Almdal | |
| 2010-01-02 | Clean up gallery_rest helper test | Tim Almdal | |
| 2010-01-02 | Merge branch 'master' of git@github.com:gallery/gallery3 | Bharat Mediratta | |
| 2010-01-02 | Fix two issues with change_album_test() | Bharat Mediratta | |
| 1) We do support changing the name. 2) Choose a random name to avoid conflicts. | |||
| 2010-01-02 | Correct unexpected error in gallery_rest_put_album_no_path_test | Tim Almdal | |
| 2010-01-02 | Ignore modules/gallery/views/kohana/error.php -- we're required to have that ↵ | Bharat Mediratta | |
| name by Kohana_404_Exception. | |||
| 2010-01-02 | Update the expected response after modifying an album to match the | Bharat Mediratta | |
| change I made in 20bd09ff004816ae152a2f890a24dc5e85741fac | |||
| 2010-01-02 | Update the expected response after modifying an album to match the | Bharat Mediratta | |
| change I made in 20bd09ff004816ae152a2f890a24dc5e85741fac | |||
| 2010-01-02 | Correct file structure tests, Have the tests delete the userid they create ↵ | Tim Almdal | |
| so as not to impact other tests. | |||
| 2010-01-02 | Verified and updated. | Bharat Mediratta | |
| 2010-01-02 | Verified and updated. | Bharat Mediratta | |
| 2010-01-02 | Update the expected response after modifying an album to match the | Bharat Mediratta | |
| change I made in 20bd09ff004816ae152a2f890a24dc5e85741fac | |||
| 2010-01-02 | Add a cache buster to the resize and file urls. This fixes ticket | Bharat Mediratta | |
| 2009-12-31 | Merge branch 'master' into talmdal_dev | Tim Almdal | |
| 2009-12-31 | Modify Forge to accept multiple hidden params (this was broken by an | Bharat Mediratta | |
| API change in K24). | |||
| 2009-12-31 | Create helper functions to create a test user, an album or image. Don't ↵ | Tim Almdal | |
| create the test objects in the setup, but do it in each test. | |||
| 2009-12-30 | 1) Remove the rest::not_found method and replace it with "throw new ↵ | Tim Almdal | |
| Kohana_404_Exception 2) Don't use the input path to lookup the item via relative_path_cache. Instead use url::get_item_from_uri method. | |||
| 2009-12-27 | Clean up validation the check for duplicate names or slugs, finish ↵ | Tim Almdal | |
| converting the rest API to Kohana 2.4 | |||
| 2009-12-26 | Merge branch 'master' into talmdal_dev | Tim Almdal | |
| Conflicts: modules/gallery/controllers/albums.php modules/gallery/controllers/movies.php modules/gallery/controllers/photos.php | |||
| 2009-12-24 | Update the gallery_rest handlers test to pass the path in as an array in the ↵ | Tim Almdal | |
| request arguments property instead of the path property. | |||
| 2009-12-23 | Updated the unit tests to match the current API | Tim Almdal | |
| Corrected a problem identified with the unit tests... failed if the path was empty on PUT. | |||
| 2009-12-22 | Checkpoint | Bharat Mediratta | |
| 2009-12-22 | Update. | Bharat Mediratta | |
| 2009-12-22 | The default value for $offset should always be null (according to the | Bharat Mediratta | |
| new K24 ORM). Fix up a bad where tuple in the test. | |||
| 2009-12-22 | Use a Database_Expression to handle the MAX() function. | Bharat Mediratta | |
| 2009-12-22 | Latest K24 does not automatically add an id attribute to every form | Bharat Mediratta | |
| element with the same value as the name. Yay! That was a weird and unexpected behavior. | |||
| 2009-12-22 | Don't rely on implicit object -> id conversion, that doesn't work with K24's ↵ | Bharat Mediratta | |
| Database_Builder::where() | |||
| 2009-12-21 | Fix preambles, and fix the File_Structure_Test to be more lenient | Bharat Mediratta | |
| because of preamble variation in K24. | |||
| 2009-12-21 | Updated for recent K24 Forge changes. | Bharat Mediratta | |
| 2009-12-21 | Update database tests for K24. Use a mock database that we load | Bharat Mediratta | |
| through the framework so that we're properly testing the Database_Builder, it's a lot cleaner than what we had before. | |||
| 2009-12-21 | Updated for K24 | Bharat Mediratta | |
| 2009-12-21 | Fix some bugs in the cache database driver, and update the tests for K24. | Bharat Mediratta | |
| 2009-12-21 | Updated for K24 | Bharat Mediratta | |
| 2009-12-21 | Forgot to rename the file when I renamed the class. | 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-12-15 | Updates the the interface based on actually using it. | Tim Almdal | |
