summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-11-11Reset PasswordHash.php to its original state and exclude it from the ↵Tim Almdal
file_structure_test
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-11New user module with password support. This supports the same password ↵Tim Almdal
mechanism as g1 and g2 to facilitate a migration.
2008-11-10Use select_list() to allow for a single assert_equal in our tests.Bharat Mediratta
2008-11-10Use alternate form of ORM::factory to reduce code.Bharat Mediratta
2008-11-10Manually delete the auth table and module entry to ease transitions for devs.Bharat Mediratta
2008-11-10Remove the complexity of a interface driven user management moduleTim Almdal
2008-11-10Early look at the User/Auth module refactoring. It will look for a driver ↵Tim Almdal
based on the contents of the user/config/user.php file. And load that driver based on the User_Driver interface. There is a default User_Gallery_Driver class that will provide the actual interface implementation. Replacing this driver will allow a completely different user and authentication implementation to be used... hopefully will reduce issues with embedding and other user management systems. Removed from unit tests so they will still run.
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-10Require short_open_tag to be enabled, or die.Bharat Mediratta
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-10Raise upload_max_filesize and post_max_size to very high valuesBharat Mediratta
2008-11-10Prevent direct script access.Jozef Selesi
2008-11-10Indent fixesBharat Mediratta
2008-11-10Indent fixesChad Kieffer
2008-11-10Convert a few more images to ../imagesBharat Mediratta
2008-11-10Switch image paths to relativeBharat Mediratta
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-10IE fixes. Default theme now looks roughly the same in IE and Firefox. We ↵Chad Kieffer
need to avoid using absolute and relative positioning for our primary layout containers (i.e. gHeader, gFooter, etc.).
2008-11-10Clean up HTML for adding albums/photos a tad.Bharat Mediratta
2008-11-10uninstall and reinstall the comment module, tooBharat 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-10jQuery edit in place is so easy, seems like it oughta be added to the photo ↵Chad Kieffer
view :)
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-09Chain away temporary variablesBharat Mediratta
2008-11-09Implement Item_Controller::put() and delete()Bharat Mediratta
Adjust/simplify photo::create Add image uploading to the scaffolding
2008-11-09Fix line endings.Jozef Selesi
2008-11-09style fixBharat Mediratta
2008-11-09Install/uninstall support for the comment module. Missing from the previous ↵Jozef Selesi
commit.
2008-11-09IE fixes, sidebar is now fixed in IE (we were missing a yui-g class). ↵Chad Kieffer
Removed .first class, it's not needed, at least not now. Moved all top-level layout containers to page.html.php so that if themers want to replace YUI grids with something else, like Blueprint, they only really need to edit page.html.php.
2008-11-09Beginnings of the comment module. Install and uninstall.Jozef Selesi
2008-11-09CSS cleanup. Alphabetized all CSS attributes. Use short form declaration for ↵Chad Kieffer
background. Don't precede decimal values with 0 (.8em instead of 0.8em). Convert colors to short form, use lower case hex alpha values (easier to read), convert keyword colors to hex values. Quoted url paths. Fixed the order of border attributes (width style color). Don't clear floated elements around #gContent.
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-09try to disable register_globalsBharat Mediratta
2008-11-09change url::base() to url::file()Bharat Mediratta
2008-11-08Allow in-place editing in the info block.Bharat Mediratta
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-08Standardize on a format for exceptions messages new Exception("@todo ↵Tim Almdal
ERROR_MESSAGE");
2008-11-0844 --> E_DATABASE_ERRORBharat Mediratta