summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2008-11-11Create REST_Controller abstract base class for all REST based resourceBharat Mediratta
controllers. Any controller that wants to act RESTful can extend this class and implement get/post/put/delete. Tweak default routes to disallow direct access to the REST controller and direct access to any REST methods.
2008-11-10Manually delete the auth table and module entry to ease transitions for devs.Bharat Mediratta
2008-11-10Comment creation controller, helper and test. Add comments from the scaffold.Jozef Selesi
2008-11-10Remove Auth moduleTim Almdal
2008-11-10Reset the links in the header and update the readmeTim Almdal
2008-11-10Add a test to make sure that we have no windows-style line endings.Bharat Mediratta
2008-11-10Add support for multi-file-upload using jquery.MultiFile and modifyBharat Mediratta
Item_Controller to accept it.
2008-11-10The start of the login functionality. It shows the login popup but doesn't ↵Tim Almdal
do anything else. Just got tire of my changes being clobbered :-)
2008-11-10Clean up HTML for adding albums/photos a tad.Bharat Mediratta
2008-11-10Add the ability to create albums to the scaffoldingBharat Mediratta
Revert $_POST back to $this->input->post() because that supports default values.
2008-11-10Tests for Item_ControllerBharat Mediratta
2008-11-10Convert quote stylesBharat Mediratta
Convert $this->input->post to $_POST
2008-11-09Rename tests to make room for controller testsBharat Mediratta
Album_Test -> Album_Helper_Test Photo_Test -> Photo_Helper_Test
2008-11-09Implement Item_Controller::put() and delete()Bharat Mediratta
Adjust/simplify photo::create Add image uploading to the scaffolding
2008-11-09style fixBharat Mediratta
2008-11-09Beginnings of the comment module. Install and uninstall.Jozef Selesi
2008-11-09Make Gallery3 more RESTful.Bharat Mediratta
Create Item_Controller as a common superclass for Album_Controller and Photo_Controller. Change routes to route requests to Item_Controller for dispatching, which in turn will generate get/post/put/delete requests to the controlller so that each controller has a RESTful surface. Change in_place editing to take advantage of this.
2008-11-08Simplify the CSS a bit.Bharat Mediratta
2008-11-08Restrict our dom traversal to look only for span.gInPlaceEdit for speed.Bharat Mediratta
2008-11-08Add support for in-place editing of data fields.Bharat Mediratta
2008-11-08Tell users to install the user module before installing auth.Bharat Mediratta
2008-11-08Create permanent owner_id column in the item table, and use a softBharat Mediratta
relationship to bind the two. To do this, I overrode __get in Item_Model so that $item->owner returns the appropriate User_Model.
2008-11-08Simplify the way that we find the user id (just look it up, and if there's a ↵Bharat Mediratta
database exception use the null value)
2008-11-08Adding user (owner) to items; info moduleFelix Rabinovich
2008-11-0844 --> E_DATABASE_ERRORBharat Mediratta
2008-11-08The start of an authentication module. This provides the installation and a ↵Tim Almdal
basic install test. There is no interface at the moment to do authentication. It is dependent on the install of the user module.
2008-11-08Change how the modules table doesn't exist is caught. In running unit test, ↵Tim Almdal
sometimes i would get the message "There was an SQL error: Table 'gallery3_unittest.modules' doesn't exist - ...." and sometimes I would get the message "Table modules does not exist in your database." In both cases the error code was 44.
2008-11-07Change add() to add photos:albums at a ratio of 10:1Bharat Mediratta
2008-11-07move block.html.php into the default themeBharat Mediratta
2008-11-07Add automatic pagination. All you have to do is add <?= $theme->pagerBharat Mediratta
?> to your theme file and you get a well formed pager. Themes can customize this any way they want. A version that matches the mockup is provided in the default theme.
2008-11-07Use get_object_vars to simplify codeBharat Mediratta
2008-11-07Add children_count() to ORM_MPTTBharat Mediratta
2008-11-07Use jquery.cookie to keep the same tab open when you refreshBharat Mediratta
Add a switch to turn profiling on/off
2008-11-07Move default theme up above modules so that it can override module viewsBharat Mediratta
2008-11-06Oops, these files got left out of r18525.Bharat Mediratta
2008-11-06album::set_thumbnail is now part of Item_Model so it can go.Bharat Mediratta
Fix a bug in the scaffolding where we weren't saving the album after adding its thumbnail (so its dimensions weren't getting set).
2008-11-06Add quick-link to the deepest photo to test hierarchical navigationBharat Mediratta
2008-11-06Drop the ? from the base url; we're going to count on Apache PathInfo for ↵Bharat Mediratta
navigation.
2008-11-06spruce up the display of commandsChad Kieffer
2008-11-06When uninstalling the core, uninstall all the other modules first.Bharat Mediratta
Otherwise, when you reinstall the other module's tables are still hanging around and interfere with their install.
2008-11-06Fix a typo.Bharat Mediratta
2008-11-05Guard the module loading code against database errors (in case the database ↵Bharat Mediratta
isn't configured yet)
2008-11-05replaced Feature URLs with new oneChris Kelly
2008-11-05remove tabsBharat Mediratta
2008-11-05Add info section with MPTT graphsBharat Mediratta
2008-11-05* Add thumbnail and resize dimensions to the item table and use themBharat Mediratta
properly in the theme. * Move thumbnail and resize generation down into the model for consistency. * Add a sample thumbnail for albums * Fix a bug in the ORM to clear the cache when we reload an object. * Add Kohana docs to the scaffold.
2008-11-05Style/doc cleanups.Bharat Mediratta
2008-11-05ORM_MPTT::parents() should not include the node itself.Bharat Mediratta
2008-11-05Add the photo controller, and tie it to the photo page in our theme.Bharat Mediratta
Implement a real breadcrumb.
2008-11-05Change the default theme to actually render what's in the Gallery.Bharat Mediratta
Currently only the album view works, albums have no thumbnails, and there's only 1 image in use. Improved Item_Model to have the following API methods file_path() -- returns the path to the source image or album dir thumbnail_path(), thumbnail_url() -- returns path/url to the thumbnail resize_path(), resize_url() -- returns path/url to the resize All tests updated.