I Use This!
Moderate Activity

Commits : Listings

Analyzed about 9 hours ago. based on code collected about 13 hours ago.
May 01, 2023 — May 01, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
I've merged in the changes by [email protected]. For more information please see http://www.bluemargin.com/cake_custom_errors.zip. Olle, can you extract some information from the app/views/pages/home.thtml of that file? More... almost 19 years ago
- fix for Ticket #30 More... almost 19 years ago
- minor fix to CCSS More... almost 19 years ago
- added the csspp library that automatically reduces the size of CSS files; it is activated by prefixing an CSS file URL with /ccss/ instead of /css/ and there's a switch in the /config/core.php to activate it in Controller::cssTag() - added a new class, File, currently only used by the Log class and Compressed CSS (CCSS) caching; aims to support easy reading and writing of files More... almost 19 years ago
Temporary directory for tests. More... almost 19 years ago
Two missing changes. More... almost 19 years ago
- merged in Brego's SimpleTest implementation, fixed some of the tests (the Folder test fails to delete one of the test directories on my system, so it's not perfectly clean yet) - Dispatcher sets a Controller::here variable with the real URL used to access the page, so that tag generators can that use an url (linkTo and formTag for example) use the real url, not guess it from the controller and action names which often fails - Log class works more reliably and a LogError() shortcut function was added - Nstring class added, to store string-related functions (there are just four yet, including a random password generator and an string-to-array splitter - SimpleTest library (with Rephlux) included in /vendors; I've tweaked SimpleScorer::inCli() function, because it didn't work on my setup, it should work everywhere now (it checks for empty REQUEST_METHOD, which should only be empty in CLI) More... almost 19 years ago
- Controller::imageTag() uses a path set in /config/paths.php - new Controller::linkEmail() tag generator, with binary encoding (not UTF-8 compatibile) - Controller::parseHtmlOptions() accepts a new second parameter -- options to exclude - fixed DBO::farr() (ticked #23) - fixed and cleaned up DBO layers NEEDS TESTING! - fixed Template::renderElement(), it didn't use the controller's view vars - models are loaded only if a database configuration is present More... almost 19 years ago
- Bake pluralized all controller names, fixed. - vendor() function to load a vendor library - uses() is simple again - config() treats database config differently (needs to because database config is a class, not a great idea after all) - moved DBO layers into their own subfolder in /libs -- there's too many of them already - AdoDB and Pear::DB support much better, although needs testing - fixes in Flay URL parsing - Model::findAll() uses the new DBO::selectLimit() method for wider database compatibility - changed Template::_page_title into _pageTitle - /public/index.php cleaned up More... almost 19 years ago
- I've rebuilt the startup a bit, more libraries are explicitly loaded at startup. They were loaded anyway (Object, Inflector), but implicitly thru uses() calls. I did it to untangle the relationships between files. - Link tag generator fixed for compatibility with XHTML (& => &) - prepare() and tables() methods renamed to prepareField() and tablesList() in database layers, prepare() and tables() meta-methods created in Model. The first one so that prepare() can accept both strings and arrays, the second one to fix Ticket #26 (case-sensitive table names didn't work for DB2). - Few minor changes of includes() to requires() and the other way, to prevent unnecessary program terminations, and potential crashes. - Time::toAtom() and Time::toRss() to format dates for XML feeds. - Some code cleanups (unnecessary __construct()'s), also, I'm changing the parentheses into: More... almost 19 years ago
Added back the @package and @subpackage headers to /app and /config files. More... almost 19 years ago
- Cake didn't work without mod_rewrite, fixed (/index.php, /libs/router.php). - Controller accepts $params as a constructor parameter (for Larry). - DBO::prepare() returned an array even when a string was passed to it, fixed. - Flay and Folder tests fixed, DBO_Factory test disabled (no database config by default, so do database access to test). - More... almost 19 years ago
I've merged in Olle's changes. More... almost 19 years ago
Merging current trunk into my sandbox. Added docblocks that where missing from some files in the trunk
PhpNut
as phpnut
More... almost 19 years ago
Merging current trunk into my sandbox. Added docblocks that where missing from some files in the trunk
PhpNut
as phpnut
More... almost 19 years ago
Merging current trunk into my sandbox. Added docblocks to some methods that were missing in the trunk/cake/libs/basics.php
PhpNut
as phpnut
More... almost 19 years ago
- NeatArray::threaded() returns to the repository, it got lost somehow. - A limit (default: 200 lines) on query log size in DBO. - A fix for Flay's url guessing. - Removed application specific code from /libs/legacy.php - A fix for /libs/model.php - An unfinished /libs/dbo_pear.php; if anyone can help out finishing it, it would be great -- I don't know Pear::DB too well More... almost 19 years ago
Merged in Olle's changes (comments). Olle, can you sync with the trunk? It's up to half an hour ago. More... almost 19 years ago
SQLite driver should work. More... almost 19 years ago
(I don't know what's happening:/ ) More... almost 19 years ago
(I've lost Internet connection during a commit, I thought svn was supposed to roll back, I don't think it did though, I'm including the changelog again, perhaps it's just Tortoise SVN). --- Sync'd with my sandbox, the changes are the same as with my previous commit, here's a copy: --- Sync'd with Olle's sandbox and with the Ajax stuff I've received. I'm trying to put together a sample application using Ajax, but it's gonna take at least few days (mostly because I've already done it and got bored with it:) More... almost 19 years ago
Sync'd with Olle's sandbox and with the Ajax stuff I've received. I'm trying to put together a sample application using Ajax, but it's gonna take at least few days (mostly because I've already done it and got bored with it:) More... almost 19 years ago
I've added some fixes and new methods, hope this gets to be in the today's release. If not, at least the fixes should get in as soon as possible. More... almost 19 years ago
- fixed a bug in default config by changing PagesController::show() instead of PagesController::display() - added Template::renderElement('element_name_or_path', $params_array) with appropriate /config/paths.php defines and a /app/views/elements directory - added Ajax stuff to the Controller class, but I think it needs to be moved out into some helper class, along with all the tag generators - new Flay::extractWords() to return an array of words from a string - new Time::timeAgoInWords() - added /vendors/javascript/prototype.js and /public/js/prototype.js (with some changes, we can keep only one copy in the tree) More... almost 19 years ago
The default home route was correct after all ;) More... almost 19 years ago
- default layout uses the new cssTag and charsetTag - default set of routes no longer routes all unknown requests to Pages controller (/pages/* is used now for that) - Pages::index is used as default home, I'll try to make it read all the controllers and methods and present them as a website menu - added tag definitions for cssTag and charsetTag - extended NeatArray class with some more methods - DbFactory auto-loads database configuration - missing error message added (for no action set) - /logs directory added (at least, I hope) More... almost 19 years ago
Added /app/helpers and /modules. More... almost 19 years ago
- Two standard controllers -- PageController and TestsController - Helpers for controllers -- each controller has it's own helper in the /app/helpers directory - /logs and /modules directories - The application runs just fine without /config/database.php if controllers don't ask for db access - Changed the name of /public/dispatch.php to /public/index.php, it's nicer and more standard, won't you agree? Kamil's fix for no-mod_rewrite needs to be re-implemented - Cleanups, fixes, and even one or two comments ;) More... almost 19 years ago
Fixed a bug in log.php and object.php, deleted 'components' dir (it's now 'modules'). More... almost 19 years ago
git-svn-id: https://svn.cakephp.org/repo/trunk/cake@148 3807eeeb-6ff5-0310-8944-8be069107fe0 More... almost 19 years ago