summaryrefslogtreecommitdiff
path: root/application
AgeCommit message (Collapse)Author
2009-12-21Fix preambles, and fix the File_Structure_Test to be more lenientBharat Mediratta
because of preamble variation in K24.
2009-12-06Overload Kohana_Exception::text() to dump out the complete stack traceBharat Mediratta
so that we have useful data in the logs.
2009-11-26Add kohana23_compat module to bring along functionality that gotBharat Mediratta
deleted, but we still want. Start off with the Pagination library.
2009-11-24Update to Kohana r4684 which is now Kohana 2.4 and has substantialBharat Mediratta
changes.
2009-10-04Revert "Create a modules and themes directory in the application directory. ↵Tim Almdal
All subdirectories are ignored by git, so provides a place to put 3rd party themes and modules separate from the core release." This reverts commit e8733e262b37461b6e162ca065521165c6dc31a1.
2009-10-04Create a modules and themes directory in the application directory. All ↵Tim Almdal
subdirectories are ignored by git, so provides a place to put 3rd party themes and modules separate from the core release.
2009-06-24Add support for mod_rewrite in the .htaccess file. There are nowBharat Mediratta
instructions for how to tweak RewriteBase correctly. Once that's done, index.php will automagically disappear. \o/
2009-06-08Try again to properly detect the base url, taking into account theBharat Mediratta
sites that mangle SCRIPT_NAME
2009-06-05Use ORIG_SCRIPT_PATH if it's available to detect the base url, forBharat Mediratta
compatibility with the CGI sapi.
2009-05-31Convert single quotes to double quotesBharat Mediratta
2009-05-28Force modules/gallery to be at the end of the module load path, soBharat Mediratta
that all other modules can override the core code.
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.