- 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 4 commits
- 27 Jan, 2003 2 commits
- 26 Jan, 2003 3 commits
-
-
Dries authored
- Added sitemap feature to administration pages. Requested by various people including Michael and Moshe.
-
Dries authored
- Applied Moshe's _exit patch (slightly modified). - Fixed bug in system.module.
-
Dries authored
- Some first changes to the system.module; tidied up some code, preparations for theme settings and borrowing some ideas from Kjartan's long-awaited system.module patch.
-
- 23 Jan, 2003 2 commits
- 21 Jan, 2003 8 commits
-
-
Dries authored
- Patch by Ulf: XHTML-ified the code.
-
Dries authored
- Applied David's calendar patch: you can now configure at what day a week start.
-
Dries authored
- Applied Ori's format_plural() patch; see mailing list for details. NOTE: some modules in the contributions repository might need to be updated.
-
Dries authored
- A node's comment table is now being emitted by the new table rendering functions.
-
Dries authored
-
Dries authored
- Tidied up some SQL queries.
-
Dries authored
- Corrected the documentation.
-
Dries authored
Patch by Ax: - Removed the XML prolog from xtemplate.xtmpl because some browsers have difficulties with it and it's not required. see http://webstandards.org/learn/reference/prolog_problems.html. - Fixed the term link.
-
- 20 Jan, 2003 5 commits