Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-05-27 | Restructure things so that the application is now just another module. | Bharat Mediratta | |
Kohana makes this type of transition fairly straightforward in that all controllers/helpers/etc are still located in the cascading filesystem without any extra effort, except that I've temporarily added a hack to force modules/gallery into the module path. Rename what's left of "core" to be "application" so that it conforms more closely to the Kohana standard (basically, just application/config/config.php which is the minimal thing that you need in the application directory) There's still considerable work left to be done here. | |||
2009-05-13 | Gee it's May already. Update copyright to 2009. | Bharat Mediratta | |
2009-04-05 | Add a weight column to the items model. Change the album ordering to | Tim Almdal | |
use this as the default instead of id. This prepares the way for manual reordering in the organize functionality. | |||
2009-03-25 | Fix unit tests where the albums, resizes and thumbs directory were | Tim Almdal | |
being deleted. Fix for ticket #182 | |||
2009-03-11 | Fix the test failures. If albums are created manually instead of | Tim Almdal | |
calling album::create, then the default sourt column needs to be set to id. | |||
2009-01-11 | Fix ORM MPTT tests for MySQL strict mode (can't omit Iten type in inserts, ↵ | Andy Staudacher | |
it doesn't have a default value). | |||
2008-12-23 | Change photo::create() and album::create() to take ORM instances | Bharat Mediratta | |
instead of ids. | |||
2008-12-07 | Change ORM_MPTT::add_to_parent() to take an ORM instead of an id so | Bharat Mediratta | |
that it's consistent with ORM_MPTT::move_to() | |||
2008-12-07 | Rename moveTo to move_to and extend the test a bit. | Bharat Mediratta | |
2008-12-05 | * Add a moveTo unit test | Tim Almdal | |
* Pass the module::event(..., $data) by reference to the handlers | |||
2008-12-04 | Implement ORM_MPTT::delete() properly. | Bharat Mediratta | |
Inline ORM_MPTT::_grow() for now Rewrite ORM_MPTT tests to be domain specific; they no longer use album/photo helpers. | |||
2008-12-04 | Replace grow_test and constrict_test with add_hierarchy_test and | Bharat Mediratta | |
delete_hierarchy_test. Our tests will be more robust if we test the public API and not the internal private functions. If we get to the point where we have to test the private functions, we should probably move those functions into their own separate class with a public API. | |||
2008-12-04 | Add unit tests to test growing and contracting the left and right pointers | Tim Almdal | |
Added a delete method to ORM_MPTT that contracts the tree when an item is deleted | |||
2008-11-20 | Add unittest and caching for ORM_MTPP::descendants | Tim Almdal | |
2008-11-20 | Add unittest and caching to ORM_MTPP::descendants_count | Tim Almdal | |
2008-11-07 | Add children_count() to ORM_MPTT | Bharat Mediratta | |
2008-11-05 | ORM_MPTT::parents() should not include the node itself. | Bharat Mediratta | |
2008-11-04 | New tests for the ORM_MPTT class. | Bharat Mediratta | |