- 23 Feb, 2003 3 commits
- 20 Feb, 2003 3 commits
-
-
Dries authored
- New menu houskeeping. Prototyped by Zbynek. 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.
-
Dries authored
- Small improvement to header width. Suggested by Ax.
-
Dries authored
- Bugfix: made the pager work when clean URLs are enabled. Patch by Ax.
-
- 19 Feb, 2003 1 commit
-
-
Dries authored
- Added missing footer logic. Patch by Ax.
-
- 17 Feb, 2003 1 commit
-
-
Dries authored
- Theme options patch. See mailing list.
-
- 16 Feb, 2003 3 commits
-
-
Dries authored
- Fixed off-by-one bug in the search module. Patch by Brad. (Still looking into the blog module patch.)
-
Kjartan authored
- 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.
-
Dries authored
- Removed from the main repository. See 'contrib/modules/devel' for a more advanced development module maintained by Moshe.
-
- 15 Feb, 2003 4 commits
-
-
Dries authored
- Documented the fact that the $base_url should not have a trailing slash. Requested by Kjartan. - Fixed at least 3 typos.
-
Kjartan authored
-
Dries authored
- Made sure clean URLs are disabled by default. Reported by Moshe.
-
Dries authored
- Everything is using theme("function") now instead of $theme->function().
-
- 14 Feb, 2003 1 commit
-
-
Dries authored
- Clean URLs.
-
- 13 Feb, 2003 1 commit
-
-
natrak authored
-
- 12 Feb, 2003 4 commits
- 11 Feb, 2003 1 commit
-
- 09 Feb, 2003 6 commits
-
-
Dries authored
- Changed '%s' into '%d' such that an empty $user->uid is converted to 0. Requi red for Drupal to work on new versions of PostgreSQL. Patch by James.
-
Dries authored
- Changed '%s' into '%d' such that an empty $user->uid is converted to 0. Required for Drupal to work on new versions of PostgreSQL. Patch by James.
-
Dries authored
red for Drupal to work on new versions of PostgreSQL. Patch by James, backported to CVS by me.
-
Dries authored
- Applied Alastair's date patch. - 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
-
Dries authored
- Small improvements to help people getting started with the xtemplate theme.
-
- 07 Feb, 2003 1 commit
-
-
Dries authored
- Fixed typo: forum2 -> forum.
-
- 06 Feb, 2003 1 commit
-
-
Dries authored
- Updated the database scheme.
-
- 02 Feb, 2003 3 commits
-
-
Dries authored
- Removed redundant code.
-
Dries authored
- Patch by Moshe: sometimes modules display content composed by people who 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.
-
Dries authored
- Made it possible to print forum submission guidelines. Patch by Moshe.
-
- 01 Feb, 2003 4 commits
-
-
Dries authored
-
Dries authored
- Fixed typo: '$node->nide' -> '$node->nid'. Patch by Alastair.
-
Dries authored
- Added some caching. Patch by Moshe.
-
Dries authored
Patch by Ax: - 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
-
- 31 Jan, 2003 1 commit
-
-
Dries authored
-
- 29 Jan, 2003 2 commits