Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | - Some fixes and improvements as suggested by Gary. | Dries Buytaert | 2003-02-23 |
| | |||
* | - 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. | ||
* | - Small improvement to header width. Suggested by Ax. | Dries Buytaert | 2003-02-20 |
| | |||
* | - Bugfix: made the pager work when clean URLs are enabled. Patch by Ax. | Dries Buytaert | 2003-02-20 |
| | |||
* | - Added missing footer logic. Patch by Ax. | Dries Buytaert | 2003-02-19 |
| | |||
* | - Theme options patch. See mailing list. | Dries Buytaert | 2003-02-17 |
| | |||
* | - Fixed off-by-one bug in the search module. Patch by Brad. (Still looking | Dries Buytaert | 2003-02-16 |
| | | | | into the blog module patch.) | ||
* | - Added function node_invoke_all($hook, &$node, $op, $arg = 0). | Kjartan Mannes | 2003-02-16 |
| | | | | | | | | | | | | - Added a _nodeapi hook that in time will replace the _node hook. Trying to make as few changes to existing code as possible until the new api is stabilized. - Modified node_form() to add administration options from other modules using the _nodeapi hook. - Modified node_save() to fetch which fields should be saved to the node table from the _nodeapi hook. - Moved comment and queue options from node_form() and node_save() to the modules _nodeapi hooks. | ||
* | - Removed from the main repository. See 'contrib/modules/devel' for a more | Dries Buytaert | 2003-02-16 |
| | | | | advanced development module maintained by Moshe. | ||
* | - Documented the fact that the $base_url should not have a trailing slash. | Dries Buytaert | 2003-02-15 |
| | | | | | | Requested by Kjartan. - Fixed at least 3 typos. | ||
* | - Modifying user_validate_mail() to accept more e-mail addresses. | Kjartan Mannes | 2003-02-15 |
| | |||
* | - Made sure clean URLs are disabled by default. Reported by Moshe. | Dries Buytaert | 2003-02-15 |
| | |||
* | - Everything is using theme("function") now instead of $theme->function(). | Dries Buytaert | 2003-02-15 |
| | |||
* | - Clean URLs. | Dries Buytaert | 2003-02-14 |
| | |||
* | - fixing a typo in the RewriteRule | natrak | 2003-02-13 |
| | |||
* | - Applied patch from Axel: missing cid in comment search results. | Kjartan Mannes | 2003-02-12 |
| | |||
* | - Fixed blog.module to accept blog/name URLs as well as blog/id | Kjartan Mannes | 2003-02-12 |
| | | | | | | - Changed the RewriteRule in .htaccess. - Fixed form_select() matching incorrectly. - Added missing $Id$ to menu.inc | ||
* | - Fixed blog.module to accept blog/name URLs as well as blog/id | natrak | 2003-02-12 |
| | | | | | | - Changed the RewriteRule in .htaccess. - Fixed form_select() matching incorrectly. - Added missing $Id$ to menu.inc | ||
* | - Added temporary check around inclusion of "xmlrpc.inc". | Dries Buytaert | 2003-02-12 |
| | |||
* | - See http://lists.drupal.org/pipermail/drupal-devel/2003-February/021824.html. | Dries Buytaert | 2003-02-11 |
| | |||
* | - Changed '%s' into '%d' such that an empty $user->uid is converted to 0. Requi | Dries Buytaert | 2003-02-09 |
| | | | | red for Drupal to work on new versions of PostgreSQL. Patch by James. | ||
* | - Changed '%s' into '%d' such that an empty $user->uid is converted to 0. ↵ | Dries Buytaert | 2003-02-09 |
| | | | | Required for Drupal to work on new versions of PostgreSQL. Patch by James. | ||
* | - Changed '%s' into '%d' such that an empty $user->uid is converted to 0. Requi | Dries Buytaert | 2003-02-09 |
| | | | | red for Drupal to work on new versions of PostgreSQL. Patch by James, backported to CVS by me. | ||
* | - 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 | ||
* | - Fixed bug #1133: disabled comments are no longer shown. Thanks Gerhard. | Dries Buytaert | 2003-02-09 |
| | |||
* | - Small improvements to help people getting started with the xtemplate | Dries Buytaert | 2003-02-09 |
| | | | | theme. | ||
* | - Fixed typo: forum2 -> forum. | Dries Buytaert | 2003-02-07 |
| | |||
* | - Updated the database scheme. | Dries Buytaert | 2003-02-06 |
| | |||
* | - Removed redundant code. | Dries Buytaert | 2003-02-02 |
| | |||
* | - Patch by Moshe: sometimes modules display content composed by people who | Dries Buytaert | 2003-02-02 |
| | | | | | | | are not members of the site. Two examples are listhandler and import modules. There is no easy way for these modules to display the true author of the content. Usually, the content appears as if authored by Anonymous User. This 3 line patch enables modules to override the author name in their _view() hook. | ||
* | - Made it possible to print forum submission guidelines. Patch by Moshe. | Dries Buytaert | 2003-02-02 |
| | |||
* | - Some updates | Dries Buytaert | 2003-02-01 |
| | |||
* | - Fixed typo: '$node->nide' -> '$node->nid'. Patch by Alastair. | Dries Buytaert | 2003-02-01 |
| | |||
* | - Added some caching. Patch by Moshe. | Dries Buytaert | 2003-02-01 |
| | |||
* | Patch by Ax: | Dries Buytaert | 2003-02-01 |
| | | | | | | | | | | | | | | | - Bad usage of css ID's: they may be used for a single element only, but were used as #node, #block, which can occur multiple times in a single page. - Moved HTML from theme to template - thats what templates are all about! - Added support for head() hook - Added support for diffentiating between boxes and blocks. - Typo: secundary -> secondary | ||
* | - Committed Alastair Tse's getallheaders() patch. | Dries Buytaert | 2003-01-31 |
| | |||
* | - Bugfix; we got redirected to the wrong URL. | Dries Buytaert | 2003-01-29 |
| | |||
* | - Bugfix: removed the call to comment_moderation. | Dries Buytaert | 2003-01-29 |
| | |||
* | - Renamed "Allow HTML tags" to "Filter HTML tags" for clarity. Reported by | Dries Buytaert | 2003-01-29 |
| | | | | Ax. | ||
* | - Corrected misplaced quote. Reported by Gerhard. | Dries Buytaert | 2003-01-29 |
| | |||
* | - Fixed bug introduced by Moshe's common.inc patch; posting content would | Dries Buytaert | 2003-01-27 |
| | | | | cause "Array" to be displayed. | ||
* | - Fixed XHTML glitch in the sitemap. Thanks Moshe and Michael. | Dries Buytaert | 2003-01-27 |
| | |||
* | - Added sitemap feature to administration pages. Requested by various | Dries Buytaert | 2003-01-26 |
| | | | | people including Michael and Moshe. | ||
* | - 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. | ||
* | - Moved the filter()s back to the individual node modules as it used to be. | Dries Buytaert | 2003-01-23 |
| | |||
* | - Tidied up XHTML. Patch by Ulf. | Dries Buytaert | 2003-01-23 |
| | | | | - Added missing t() function. Patch by Stefan. | ||
* | - Patch by Ulf: XHTML-ified the code. | Dries Buytaert | 2003-01-21 |
| | |||
* | - Applied David's calendar patch: you can now configure at what day a week | Dries Buytaert | 2003-01-21 |
| | | | | start. | ||
* | - Applied Ori's format_plural() patch; see mailing list for details. | Dries Buytaert | 2003-01-21 |
| | | | | NOTE: some modules in the contributions repository might need to be updated. |