Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-11-12 | Create a simple benchmark that loads 500 localized messages and performs | Bharat Mediratta | |
500 localizations on them. | |||
2008-11-11 | Override View_Core::render so that we trap errors stemming from bad | Bharat Mediratta | |
PHP includes and show a visible stack trace to help developers. | |||
2008-11-11 | Change the PUT/DELETE tunneling param from __action to _method | Bharat Mediratta | |
to be like Rails. | |||
2008-11-11 | Updated for recent Item_Controller API change | Bharat Mediratta | |
2008-11-11 | Move scaffolding code out of the comments controller to welcome.php. | Jozef Selesi | |
2008-11-11 | Change Album and Photo controllers to set the user object as a global ↵ | Tim Almdal | |
variable; change the header so it links to the user controllers; and add the user controllers which don't do anything. | |||
2008-11-11 | Change REST API to use non-routable functions: _get(), _post(), | Bharat Mediratta | |
_put(), _delete(). This should make it more obvious that these are not your typical routes, simplifies overall routing by removing a rule and removes the possibility of accidentally leaking information if we route to one of them by accident. | |||
2008-11-11 | Add phpdocs to explain how to use REST_Controller | Bharat Mediratta | |
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-10 | Manually delete the auth table and module entry to ease transitions for devs. | Bharat Mediratta | |
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 | 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 | 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 | Clean up HTML for adding albums/photos a tad. | 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 | 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 | Implement Item_Controller::put() and delete() | Bharat Mediratta | |
Adjust/simplify photo::create Add image uploading to the scaffolding | |||
2008-11-09 | style fix | Bharat Mediratta | |
2008-11-09 | Beginnings of the comment module. Install and uninstall. | Jozef Selesi | |
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-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 | 44 --> E_DATABASE_ERROR | Bharat Mediratta | |
2008-11-08 | The 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-08 | Change 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-07 | Change add() to add photos:albums at a ratio of 10:1 | Bharat Mediratta | |
2008-11-07 | move block.html.php into the default theme | Bharat Mediratta | |
2008-11-07 | Add automatic pagination. All you have to do is add <?= $theme->pager | Bharat 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-07 | Use get_object_vars to simplify code | Bharat Mediratta | |
2008-11-07 | Add children_count() to ORM_MPTT | Bharat Mediratta | |
2008-11-07 | Use jquery.cookie to keep the same tab open when you refresh | Bharat Mediratta | |
Add a switch to turn profiling on/off | |||
2008-11-07 | Move default theme up above modules so that it can override module views | Bharat Mediratta | |
2008-11-06 | Oops, these files got left out of r18525. | Bharat Mediratta | |
2008-11-06 | album::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-06 | Add quick-link to the deepest photo to test hierarchical navigation | Bharat Mediratta | |
2008-11-06 | Drop the ? from the base url; we're going to count on Apache PathInfo for ↵ | Bharat Mediratta | |
navigation. | |||
2008-11-06 | spruce up the display of commands | Chad Kieffer | |
2008-11-06 | When 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-06 | Fix a typo. | Bharat Mediratta | |