Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | - Michael Frankowski's excellent help text improvements! | Dries Buytaert | 2003-05-29 |
| | |||
* | - Fixed a typo in the PostgreSQL database scheme. Patch by Michael Frankowski. | Dries Buytaert | 2003-05-13 |
| | | | | | | | | | | | | | - Fixed a typo in the MSSQL database scheme. Patch by Michael Frankowski. - Removed dependency on "register_globals = on"! Patches by Michael Frankowski. Notes: + Updated the patches to use $foo["bar"] instead of $foo['bar']. + Updated the INSTALL and CHANGELOG files as well. - Tiny improvement to the "./scripts/code-clean.sh" script. | ||
* | - Applied Michael Caerwyn's "%s -> %d" patch. | Dries Buytaert | 2003-05-07 |
| | | | | - Changed all occurences of '%d' to %d as suggested on the mailing list. | ||
* | - I have added an option to enable/disable cron support. | Dries Buytaert | 2003-04-15 |
| | | | | - Updated the cache system's documentation - it was no longer current. | ||
* | - Cache improvement: only flush cache when told to. | Dries Buytaert | 2003-03-16 |
| | |||
* | - Fixed coding style issues. Patch by Ax. | Dries Buytaert | 2003-03-14 |
| | |||
* | - Eliminated system_init(), the session stuff, and made it possible to | Dries Buytaert | 2003-03-12 |
| | | | | rebuild the menu. | ||
* | - Changed _nodeapi("conf") to _nodeapi("settings"). | Kjartan Mannes | 2003-03-08 |
| | | | | | - Changed node settings page to use table(). - Minor code beautification here and there. | ||
* | - Removed the path_uri() function in favor of the $base_url variable and | Dries Buytaert | 2003-03-07 |
| | | | | fixes a handful of bugs introduced by the clean URL patch. | ||
* | - Corrected coding style and fixed some "undefined index/variable" warnings. | Dries Buytaert | 2003-03-04 |
| | | | | Patch by Ax. | ||
* | - Fixed typo in system module. Patch by Ax. | Dries Buytaert | 2003-03-04 |
| | |||
* | - Various system module improvements. Patch by Al. | Dries Buytaert | 2003-03-02 |
| | |||
* | - Removed <?php ?> tags from documentation and made sure the important links are | Dries Buytaert | 2003-02-27 |
| | | | | at the top. Patch by Al. | ||
* | - Fixed some broken links. | Dries Buytaert | 2003-02-24 |
| | |||
* | - New menu houskeeping. Prototyped by Zbynek. | Dries Buytaert | 2003-02-20 |
| | | | | | | | | | | | | | | | | The following modules need updating: * glossary module * feed module (Breyten's version) * mailhandler module * notify module * project module * smileys module * admin module * style module * taxonomy_dhtml module To avoid unexpected problems menu_add() is deprecated (it will print an error message when used) and menu() should be used instead. | ||
* | - Theme options patch. See mailing list. | Dries Buytaert | 2003-02-17 |
| | |||
* | - Clean URLs. | Dries Buytaert | 2003-02-14 |
| | |||
* | - See http://lists.drupal.org/pipermail/drupal-devel/2003-February/021824.html. | Dries Buytaert | 2003-02-11 |
| | |||
* | - Applied Alastair's date patch. | Dries Buytaert | 2003-02-09 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Removed all instances of '$user->nodes'. - Committed Moshe's taxonomy patch - minus the node_compact_list() bit. It needs a bit more thought/work. This patch changes the links of taxonomy pages/feeds so update your custom code and themes accordingly! Themes should now use "taxonomy_link("taxonomy terms", $node)" to get an array of taxonomy term links. The old construct is deprecated and should be changed. // old theme blob: if (function_exists("taxonomy_node_get_terms")) { foreach (taxonomy_node_get_terms($node->nid) as $term) { $terms[] = l($term->name, NULL, array(), "or=$term->tid"); } } // new theme blob: if (module_exist("taxonomy")) { $terms = taxonomy_link("taxonomy terms", $node); } // old URL: http://foo.com/index.php?or=1,2 // new URL: http://foo.com/?q=taxonomy/page/or/1,2 | ||
* | - Applied Moshe's _exit patch (slightly modified). | Dries Buytaert | 2003-01-26 |
| | | | | - Fixed bug in system.module. | ||
* | - Some first changes to the system.module; tidied up some code, preparations | Dries Buytaert | 2003-01-26 |
| | | | | | for theme settings and borrowing some ideas from Kjartan's long-awaited system.module patch. | ||
* | - Clean URL patch. | Dries Buytaert | 2003-01-06 |
| | |||
* | - Fixed a typo in the documentation, as well as extended the documentation | Dries Buytaert | 2002-12-29 |
| | | | | while I was at it. | ||
* | - Usability improvement: made the theme selector and module selector pages | Dries Buytaert | 2002-12-29 |
| | | | | use the new table rendering functions. | ||
* | - Refactored the administration pages. | Dries Buytaert | 2002-12-24 |
| | |||
* | - Applied patch by Gerhard to dissable submission throttle. | Dries Buytaert | 2002-12-02 |
| | |||
* | - Fixed a caching bug. | Dries Buytaert | 2002-11-25 |
| | |||
* | - removing some obsolete code. | Kjartan Mannes | 2002-11-20 |
| | |||
* | - Applied Natrak's "create PHP content" patch. | Dries Buytaert | 2002-11-18 |
| | |||
* | Patch based on work of Kjartan: | Dries Buytaert | 2002-11-17 |
| | | | | | | | | | | | | | | - Changed cache API. - Fixed caching bug in comment.module. Odd this hasn't been reported yet. - Fixed caching bug in forum.module. - Fixed caching bug in system.module. - Fixed caching bug in block.module. - Simplified caching support in forum.module thanks to improved cache API. | ||
* | - Applied Stefan's t()-function patches. | Dries Buytaert | 2002-11-10 |
| | |||
* | - Settings will no longer be lost of including a file fails. | Kjartan Mannes | 2002-11-08 |
| | |||
* | Patch by Natrak: | Dries Buytaert | 2002-11-08 |
| | | | | | | | | | - Modules and themes now use the same functions to find and administer files. - Modules can now be placed in sub-directories. - Theme descriptions can no longer be edited. This will be handled by Dries' theme_conf patch. - Update required to keep old modules enabled. | ||
* | - Made two INSERT queries ANSI compliant. Patch by James, slightly modified | Dries Buytaert | 2002-08-26 |
| | | | | by Dries. | ||
* | - Small cosmetic change to the system module. | Dries Buytaert | 2002-08-15 |
| | |||
* | - Bugfix: moved the delete query down. Patch by Marco. | Dries Buytaert | 2002-08-14 |
| | |||
* | - Patch by kika: "If a module is disabled on the "site configuration | Dries Buytaert | 2002-08-08 |
| | | | | | > modules" page, its operations (view, admin) should not be clickable (they should be present though, but as static text). | ||
* | - Made a small cosmetic change to the modules admin page. | Dries Buytaert | 2002-06-09 |
| | |||
* | - improved module descriptions. | Kjartan Mannes | 2002-06-08 |
| | | | | | | | - removed admin options for queue and comment module if the modules are not loaded. - nodes are now auto promoted when queue module isn't enabled. - moderation result block is now visible by the node author. | ||
* | - Bugfix: clicking "help" on the "site configuration" didn't show any help. | Dries Buytaert | 2002-06-08 |
| | |||
* | - Clarified the help texts a bit. | Dries Buytaert | 2002-06-08 |
| | |||
* | - The Drupal module is no longer required. | Dries Buytaert | 2002-06-06 |
| | |||
* | - adding descriptions to modules (thanks Joe + Scott). | Kjartan Mannes | 2002-06-01 |
| | | | | | | | | | | - fixed comment flat list view missing 1 comment. - changed update.php around a bit. * security check isn't in effect if the db hasn't been updated. * instructions re-organized. * fixed some minor updates. - updated database.mysql done by UnConeD. - changelog update. | ||
* | - Ran the code through 'scripts/code-clean.sh': removed trailing whitespace | Dries Buytaert | 2002-05-20 |
| | | | | (and possibly tabs). | ||
* | - updating all nodes to use taxonomy terms. | Kjartan Mannes | 2002-05-19 |
| | | | | | | | - updated node modules not to cause errors when taxonomy module is disabled. - added %date variable to user mail configuration. - added hyperlinks to admin.php?mod=system (site configuration) for easy access. - usual coding style and xhtml fixes. | ||
* | - module and theme admin pages work again. | Kjartan Mannes | 2002-05-12 |
| | |||
* | - changed block, module and theme config pages to use checkboxes. | Kjartan Mannes | 2002-05-11 |
| | | | | | - coding style clean ups. - fixed taxonomy causing errors. | ||
* | - XHTML-ified a few things. | Dries Buytaert | 2002-05-02 |
| | |||
* | - Renamed "settings and filters" to "site configuration": you might have to | Dries Buytaert | 2002-04-28 |
| | | | | update your user's permissions. | ||
* | - Made the date strings configurable. Patch by Simon Lindsay. | Dries Buytaert | 2002-04-24 |
| |