Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-11-11 | Reset PasswordHash.php to its original state and exclude it from the ↵ | Tim Almdal | |
file_structure_test | |||
2008-11-11 | Create REST_Controller abstract base class for all REST based resource | Bharat 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-11 | New user module with password support. This supports the same password ↵ | Tim Almdal | |
mechanism as g1 and g2 to facilitate a migration. | |||
2008-11-10 | Use select_list() to allow for a single assert_equal in our tests. | Bharat Mediratta | |
2008-11-10 | Use alternate form of ORM::factory to reduce code. | Bharat Mediratta | |
2008-11-10 | Manually delete the auth table and module entry to ease transitions for devs. | Bharat Mediratta | |
2008-11-10 | Remove the complexity of a interface driven user management module | Tim Almdal | |
2008-11-10 | Early 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-10 | Comment creation controller, helper and test. Add comments from the scaffold. | Jozef Selesi | |
2008-11-10 | Remove Auth module | Tim Almdal | |
2008-11-10 | Reset the links in the header and update the readme | Tim Almdal | |
2008-11-10 | Require short_open_tag to be enabled, or die. | Bharat Mediratta | |
2008-11-10 | Add a test to make sure that we have no windows-style line endings. | Bharat Mediratta | |
2008-11-10 | Add support for multi-file-upload using jquery.MultiFile and modify | Bharat Mediratta | |
Item_Controller to accept it. | |||
2008-11-10 | Raise upload_max_filesize and post_max_size to very high values | Bharat Mediratta | |
2008-11-10 | Prevent direct script access. | Jozef Selesi | |
2008-11-10 | Indent fixes | Bharat Mediratta | |
2008-11-10 | Indent fixes | Chad Kieffer | |
2008-11-10 | Convert a few more images to ../images | Bharat Mediratta | |
2008-11-10 | Switch image paths to relative | Bharat Mediratta | |
2008-11-10 | The 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-10 | IE 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-10 | Clean up HTML for adding albums/photos a tad. | Bharat Mediratta | |
2008-11-10 | uninstall and reinstall the comment module, too | Bharat Mediratta | |
2008-11-10 | Add the ability to create albums to the scaffolding | Bharat Mediratta | |
Revert $_POST back to $this->input->post() because that supports default values. | |||
2008-11-10 | jQuery edit in place is so easy, seems like it oughta be added to the photo ↵ | Chad Kieffer | |
view :) | |||
2008-11-10 | Tests for Item_Controller | Bharat Mediratta | |
2008-11-10 | Convert quote styles | Bharat Mediratta | |
Convert $this->input->post to $_POST | |||
2008-11-09 | Rename tests to make room for controller tests | Bharat Mediratta | |
Album_Test -> Album_Helper_Test Photo_Test -> Photo_Helper_Test | |||
2008-11-09 | Chain away temporary variables | Bharat Mediratta | |
2008-11-09 | Implement Item_Controller::put() and delete() | Bharat Mediratta | |
Adjust/simplify photo::create Add image uploading to the scaffolding | |||
2008-11-09 | Fix line endings. | Jozef Selesi | |
2008-11-09 | style fix | Bharat Mediratta | |
2008-11-09 | Install/uninstall support for the comment module. Missing from the previous ↵ | Jozef Selesi | |
commit. | |||
2008-11-09 | IE 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-09 | Beginnings of the comment module. Install and uninstall. | Jozef Selesi | |
2008-11-09 | CSS 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-09 | Make 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-09 | try to disable register_globals | Bharat Mediratta | |
2008-11-09 | change url::base() to url::file() | Bharat Mediratta | |
2008-11-08 | Allow in-place editing in the info block. | Bharat Mediratta | |
2008-11-08 | Simplify the CSS a bit. | Bharat Mediratta | |
2008-11-08 | Restrict our dom traversal to look only for span.gInPlaceEdit for speed. | Bharat Mediratta | |
2008-11-08 | Add support for in-place editing of data fields. | Bharat Mediratta | |
2008-11-08 | Tell users to install the user module before installing auth. | Bharat Mediratta | |
2008-11-08 | Create permanent owner_id column in the item table, and use a soft | Bharat 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-08 | Simplify 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-08 | Adding user (owner) to items; info module | Felix Rabinovich | |
2008-11-08 | Standardize on a format for exceptions messages new Exception("@todo ↵ | Tim Almdal | |
ERROR_MESSAGE"); | |||
2008-11-08 | 44 --> E_DATABASE_ERROR | Bharat Mediratta | |