| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2010-02-09 | Rename item name and slug if necessary to avoid a conflict when we | Bharat Mediratta | |
| move photos. Fixes ticket #957. | |||
| 2010-02-09 | Add unit tests for item::move() in preparation for renaming when there | Bharat Mediratta | |
| are conflicts (see ticket #957) | |||
| 2010-02-07 | Add prefix support for the target of RENAME TABLE. | Bharat Mediratta | |
| 2010-02-06 | Fix for ticket 1004: Replace all uses of split with explode (none actually ↵ | Andy Staudacher | |
| required regular expressions). Thanks to Brian Hartsock for providing a patch! | |||
| 2010-02-02 | use html::purify to cleans the additional content on the admin maintence page. | Tim Almdal | |
| 2010-02-02 | Update the xss golden file to reflect the changes to the admin screen. | Tim Almdal | |
| 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 | Use Item_Model::as_restful_array() to simplify tests. | Bharat Mediratta | |
| 2010-01-30 | Add Item_Model::as_restful_array() for convenience. | Bharat Mediratta | |
| 2010-01-30 | Verified | Bharat Mediratta | |
| 2010-01-28 | Reviewed DIRTY_ATTR | Bharat Mediratta | |
| 2010-01-28 | Reviewed all DIRTY_JS entries | Bharat Mediratta | |
| 2010-01-28 | Make the varible for the profile name more descriptive and clean the label | Tim Almdal | |
| 2010-01-28 | Update the xss golden file for user profile changes. | Tim Almdal | |
| 2010-01-27 | Prevent accidentally deleting the root album. | Bharat Mediratta | |
| 2010-01-27 | Change "resource" to "entity" in REST responses. They're all | Bharat Mediratta | |
| resources, but we differentiate resources as collections and entities. | |||
| 2010-01-27 | Verified and updated | Bharat Mediratta | |
| 2010-01-27 | Switch to using test helper. Also, reload the album before running | Bharat Mediratta | |
| access::deny since the mptt pointers will have changed. | |||
| 2010-01-26 | Added view_permissions_propagate_down_to_photos_test(). | Bharat Mediratta | |
| 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-23 | Update the Xss_Security_Test and the Controller_Auth_Test. | Tim Almdal | |
| 2010-01-23 | Updated | Bharat Mediratta | |
| 2010-01-23 | Update tests for recent REST changes. | Bharat Mediratta | |
| 2010-01-23 | Don't use ORM_MPTT::move_to directly, it's protected. | Bharat Mediratta | |
| 2010-01-22 | Moved to Item_Rest_Helper_Test.php | Bharat Mediratta | |
| 2010-01-22 | Updated tests to pass after recent refactor of gallery_rest -> item_rest. | Bharat Mediratta | |
| 2010-01-21 | We don't need CSRF in Rest_Controller::__call() because we use access tokens. | Bharat Mediratta | |
| 2010-01-21 | Make sure that we actually don't have permissions, to avoid contamination w/ ↵ | Bharat Mediratta | |
| other tests. | |||
| 2010-01-21 | Exclude modules/gallery_unit_test/views/kohana/error.php | Bharat Mediratta | |
| 2010-01-21 | Fix a minor bad expectation. | Bharat Mediratta | |
| 2010-01-21 | Can't call ORM_MPTT::move_to() externally, so call Item_Model::save() instead. | Bharat Mediratta | |
| 2010-01-21 | Reload the album after adding the photo so that MPTT pointers are correct. | Bharat Mediratta | |
| 2010-01-20 | Remove debug code. | Bharat Mediratta | |
| 2010-01-20 | Stop using MY_ORM::original(). | Bharat Mediratta | |
| 2010-01-20 | Stop using MY_ORM::original(). It's got very odd semantics and we are | Bharat Mediratta | |
| not capturing all cases for setting and resetting $original, which leads to some weird and hard to reproduce behavior. Instead, if we need the original just reload it from the database. This may result in a somewhat excessive load in places, but we'll have to fix that in a later optimization pass. | |||
| 2010-01-19 | Extend Gallery_Unit_Test_Case instead of Unit_Test_Case. | Bharat Mediratta | |
| 2010-01-19 | Fix some validation checks to check to see if the original was loaded | Bharat Mediratta | |
| before deciding whether or not we changed a value. Change valid_name to be cascading, not parallel. | |||
| 2010-01-19 | Change "filename" to "name" in the edit album form. I'd rather have | Bharat Mediratta | |
| consistency between field names than deal with underlying issues with Forge bitching about the "name" property. | |||
| 2010-01-19 | Change "dirname" to "name" in the edit album form. I'd rather have | Bharat Mediratta | |
| consistency between field names than deal with underlying issues with Forge bitching about the "name" property. | |||
| 2010-01-19 | Change rest::url() to take a module name and a resource. The module | Bharat Mediratta | |
| does the rest. This function is symmetrical to rest::resolve. | |||
| 2010-01-19 | Rewrite the tests entirely to cover the new REST code. | Bharat Mediratta | |
| 2010-01-18 | Updated for model based validation. Fixed | Bharat Mediratta | |
| change_photo_no_csrf_fails_test() which has been broken since we deleted Rest_Controller. | |||
| 2010-01-18 | Add slug_is_url_safe_test() | Bharat Mediratta | |
| 2010-01-18 | Update for model validation. Move the url safe tests into Item_Model_Test. | Bharat Mediratta | |
| 2010-01-18 | No longer necessary; all photo and movie helper code is now in the model. | Bharat Mediratta | |
| 2010-01-18 | No longer necessary; all relevant album helper code is now in the model. | Bharat Mediratta | |
| 2010-01-18 | Updated for model based validation. | Bharat Mediratta | |
| change_album_no_csrf_fails_test() had been broken since we got rid of REST_Controller, but was poorly written so we didn't realize it. Boo. | |||
| 2010-01-18 | Update for model based validation. Use test helper. Reduce the code size ↵ | Bharat Mediratta | |
| greatly! | |||
| 2010-01-18 | switch to test::starts_with(). | Bharat Mediratta | |
| 2010-01-18 | Minor test cleanup. | Bharat Mediratta | |
