| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2008-12-12 | Change the check from class_exists to module::is_installed | Tim Almdal | |
| 2008-12-12 | Remove a couple of todo's by store the "theme name", "admin theme name" and ↵ | Tim Almdal | |
| "page size" in the vars table and initializing when the core module is installed | |||
| 2008-12-12 | If the user class doesn't exist, then just set the owner_id to null. Another ↵ | Tim Almdal | |
| issue of generating data before the user class is installed | |||
| 2008-12-12 | Refaactor module::install() and module::uninstall() out of the | Bharat Mediratta | |
| scaffolding and unit test code so that we can use it consistently. This fixes an issue where adding a module was not refreshing the statically cached module list causing the test framework to break. | |||
| 2008-12-12 | Use restore_error_handler() instead of a second set_error_handler() call | Bharat Mediratta | |
| 2008-12-12 | Randomly choose images from core/tests/images as test images | Tim Almdal | |
| 2008-12-12 | Remove the attempt at a local import module | Tim Almdal | |
| 2008-12-12 | Get rid of all pseudo users and pseudo groups, while preserving all | Bharat Mediratta | |
| other functionality. This makes our user/group and access code fully consistent. | |||
| 2008-12-11 | 1) Begins the creation of the local import module by adding the ↵ | Tim Almdal | |
| administation component to the scaffolding Actions tab. The importing functionality will follow shortly. 2) Defines a routining pattern for module administration controllers. URI's of the form admin/module/method/parameters gets remapped into module_admin/method/parameters. This will result in the lookup of the the controller Module_Admin_Controller | |||
| 2008-12-10 | Change all access API methods to take ORMs instead of ids. This will | Bharat Mediratta | |
| minimize reloading objects from the database. | |||
| 2008-12-09 | Check view permissions before allowing view access to albums/photos. | Bharat Mediratta | |
| 2008-12-09 | Move code to delete users and add/remove users from groups into the | Bharat Mediratta | |
| model. | |||
| 2008-12-09 | move user::delete() to User_Model::delete() | Bharat Mediratta | |
| 2008-12-07 | Fix a bug in the redirect after adding photos. | Bharat Mediratta | |
| 2008-12-07 | * Don't call _getadd_photo_html() when we don't have an items table. | Bharat Mediratta | |
| * Guard against errors when uninstalling modules that don't have any code left (eg: carousel) * Create the var/uploads dir automatically. | |||
| 2008-12-06 | Implemented photo::_get_photo_add(). You need to create the var/uploads ↵ | Tim Almdal | |
| directory and make it writable by the server. The location of the temporary upload directory is specified in config/upload.php | |||
| 2008-12-06 | Correct @todo's in Item_Controller | Tim Almdal | |
| 2008-12-05 | Fix a bug where any uninstall removed the entire database. | Bharat Mediratta | |
| 2008-12-04 | Moving albums around with a drag and drop interface seems to work and ↵ | Tim Almdal | |
| preserve the left right pointers. * changed _lock and _unlock to protected methods lock and lock respectively * added a moveTo method on the Item_Model * Corrected the hole closure on delete. * added moveTo on the ORM_MTPP class * Changed the rearrange javascript to do moves with ajax | |||
| 2008-12-04 | Change the startup code to only put installed modules on the autoload | Bharat Mediratta | |
| path. This breaks a bunch of places where we had hardcoded dependencies, so guard all of those cases. Restructure module::available() a bit and the way that we do install/uninstall in the scaffolding. | |||
| 2008-12-04 | Get rid of the rearrange helper as the code could be inlined | Tim Almdal | |
| 2008-12-03 | Rename file::unlink() to dir::unlink(). This creates an API that is | Bharat Mediratta | |
| clearer about its actions, otherwise we may accidentally blow away an entire hierarchy when we think we're deleting a single file (there's a reason why rm won't let you delete dirs that aren't empty!) Name it "dir" instead of "directory" because apparently "directory" is already reserved. Move the delete call out of Items_Controller and into the model. The model is responsible for keeping state integrity, not the controller. | |||
| 2008-12-03 | Add a MY_file class that extends the file helper by creating an unlink ↵ | Tim Almdal | |
| method that deletes a file or an album directory. Modify Items_Controller::_delete to call this new helper method when deleting an item | |||
| 2008-12-03 | Add /welcome/form/add/photos to give you the add photo form. | Bharat Mediratta | |
| 2008-12-02 | The rearrange module will now add an album if you drag the "new album" onto ↵ | Tim Almdal | |
| the album tree. I haven't had a chance to figure out why the form does get any styling or why a textarea is no included as a list item. | |||
| 2008-12-01 | Fix profiler settings in the scaffolding | Bharat Mediratta | |
| 2008-12-01 | Add access::reset() so that you can specify your intent to use the | Bharat Mediratta | |
| parent's permissions. Update scaffolding to demonstrate that it works. | |||
| 2008-12-01 | Prototype access control model. There's much left to do, but it's a | Bharat Mediratta | |
| working implementation. | |||
| 2008-11-30 | Move rearrange HTML generation into welcome.php so that we gracefully | Bharat Mediratta | |
| handle the case where the DB is not installed yet. | |||
| 2008-11-29 | Add access model (not fully baked yet). | Bharat Mediratta | |
| Update scaffolding to allow addition of just albums (helpful for testing permissions) | |||
| 2008-11-29 | Insure that the page and offset refere to valid items | Tim Almdal | |
| 2008-11-28 | Dynamically create the list of available modules. This permits new modules ↵ | Tim Almdal | |
| to be added without having to update the config.php file | |||
| 2008-11-28 | Create module::event() which runs Gallery events. It works by | Bharat Mediratta | |
| convention. To respond to the "photo_created" event in the gmaps module, you create modules/gmaps/helpers/gmaps_event.php containing class gmaps_event which has function photo_created. Renamed all events from gallery.foo.bar to foo_bar Updated tag module to use new convention. | |||
| 2008-11-28 | Add an easy way to add a bunch of servers from the server side | Bharat Mediratta | |
| 2008-11-28 | Rename item events and create events for comment create, login, logout, user ↵ | Tim Almdal | |
| creation. I probably forgot some, but its a start. | |||
| 2008-11-27 | 1) Create a Theme_View class that combines the functionality of the Theme ↵ | Tim Almdal | |
| class with the View class. 2) Only define the form.html.php::DrawForm method once if there are multiple forms on the page (i.e. comments and add tags) | |||
| 2008-11-27 | Make tags look a little better. | Bharat Mediratta | |
| 2008-11-27 | Centralize logging around installing/uninstalling modules. | Bharat Mediratta | |
| 2008-11-27 | Add children_count to album/photo controllers for consistency with tags | Bharat Mediratta | |
| 2008-11-26 | Draw an album tree in the access -> permissions tab. | Bharat Mediratta | |
| 2008-11-26 | Add a new "tag" page type. | Bharat Mediratta | |
| Create the concept of "page types" which let us specify the kind of page that we're rendering in high level terms. Currently there are three page types: album, photo and tag. The tag page type uses slightly different variables. It has a $tag but no $item. Adjust all sidebar_block() functions to avoid printing stuff that's dependent on the item if there is no item. Simplify the tag code to stop trying to fake an item. Update the theme slightly to use $item and $tag where appropriate (notably, for making the <title> element). | |||
| 2008-11-26 | Add support for marking users as "admin" | Bharat Mediratta | |
| 2008-11-26 | Add support in the scaffolding for adding users to groups, adding and | Bharat Mediratta | |
| removing users and groups. | |||
| 2008-11-26 | Use lorem2 words as inputs to generateTags. Limiting the number of | Bharat Mediratta | |
| tags results in a better distribution of the tags (so the cloud looks nicer). | |||
| 2008-11-26 | Create user/group create/delete functions and have the scaffolding use them. | Bharat Mediratta | |
| 2008-11-25 | 1) Changed how the test tags are generated to be able to create a better ↵ | Tim Almdal | |
| distribution 2) Added a new helper function "load_buckets" assign the class suffix to each tag 3) Created a unit test to test the load_buckets function | |||
| 2008-11-25 | The scaffolding can now add and delete users and groups. Yippee! | Bharat Mediratta | |
| 2008-11-25 | Add a "Access" tab to the scaffolding and list users and groups. | Bharat Mediratta | |
| Refactor welcome.php a little bit to make index() more readable. | |||
| 2008-11-25 | tag::add_tag() -> tag::add | Bharat Mediratta | |
| 2008-11-25 | Add theme debugging. Activate it in the [info] tab in the | Bharat Mediratta | |
| scaffolding, then browse around your Gallery3 to see where you can add visible elements via modules. | |||
