summaryrefslogtreecommitdiff
path: root/modules/gallery/config/routes.php
AgeCommit message (Collapse)Author
2010-07-13Revert "Fix for ticket #1182. Remove the trailing slash and just let it be ↵Bharat Mediratta
matched by the trailing (.*) group" This breaks adding new albums. I get the following in my error log: "2010-07-13 13:08:46 -07:00 --- error: Kohana_404_Exception [ 43 ]: The page you requested, form/add/albums/1?type=album&g-in-dialog, could not be found." This reverts commit cb4e18f9dddd82a283f0208c694a9b4eb1a2eaca.
2010-07-06Fix for ticket #1182. Remove the trailing slash and just let it be matched ↵Tim Almdal
by the trailing (.*) group
2010-07-05Revert "Make the trailing slash on the url optional. Sometimes it is not ↵Tim Almdal
there, so the regex doesn't match" This reverts commit e4d397d30118a3d673b146c44ed329efa08bbefe.
2010-07-05Make the trailing slash on the url optional. Sometimes it is not there, so ↵Tim Almdal
the regex doesn't match
2010-03-03Update the copyright to 2010. It's only 3 months into the year :-)Bharat Mediratta
2010-01-26Add a routing that allow add and edit form requests to be routed the same ↵Tim Almdal
way as non admin forms. i.e. a uri of /form/add/admin/<controller>/parms gets routed as admin/<controller/form_add/<parms>
2009-11-30Clean up item routing a bit.Bharat Mediratta
1) The new default route is "albums", and Albums_Controller::index() does the right thing 2) Items_Controller redirects to the appropriate specific controller 3) All item controllers now have show() instead of _show(), so that the routing code in url::parse_url() can get to it. But that code is protected against receiving bogus requests.
2009-11-25Forgot to remove the rest references from config/route.phpTim Almdal
2009-05-27Restructure things so that the application is now just another module.Bharat Mediratta
Kohana makes this type of transition fairly straightforward in that all controllers/helpers/etc are still located in the cascading filesystem without any extra effort, except that I've temporarily added a hack to force modules/gallery into the module path. Rename what's left of "core" to be "application" so that it conforms more closely to the Kohana standard (basically, just application/config/config.php which is the minimal thing that you need in the application directory) There's still considerable work left to be done here.