- Aug 31, 2006
-
-
Dries Buytaert authored
-
- Aug 20, 2006
-
-
Steven Wittens authored
-
- Aug 18, 2006
-
-
Steven Wittens authored
See: http://drupal.org/node/64279#t-placeholders
-
- Aug 14, 2006
-
-
Neil Drumm authored
-
- Aug 06, 2006
-
-
Neil Drumm authored
-
- Jul 31, 2006
-
-
Dries Buytaert authored
-
- May 07, 2006
-
-
Neil Drumm authored
-
- Apr 17, 2006
-
-
Dries Buytaert authored
-
- Mar 17, 2006
-
-
Gerhard Killesreiter authored
#14591, User.module links for blocked/non-existant accounts + menu 403/404 issue, patch by Steven and merlinofchaos
-
- Feb 21, 2006
-
-
Dries Buytaert authored
-
- Feb 06, 2006
-
-
Dries Buytaert authored
-
- Jan 12, 2006
-
-
Dries Buytaert authored
-
- Jan 08, 2006
-
-
Steven Wittens authored
-
- Nov 01, 2005
-
-
Dries Buytaert authored
-
- Sep 24, 2005
-
-
Dries Buytaert authored
-
- Aug 28, 2005
-
-
Dries Buytaert authored
part of the node system! If you have a module that implements node types, you'll have to udpate its CVS HEAD version. We replaced _node_name() and _node_types() by _node(). The new _node() hook let's you define one or more node types, including their names. The implementation of the _node() hook needs to: return array($type1 => array('name' => $name1, 'base' => $base1), $type2 => array('name' => $name2, 'base' => $base2)); where $type is the node type, $name is the human readable name of the type and $base is used instead of <hook> for <hook>_load, <hook>_view, etc. For example, the story module's node hook looks like this: function story_node() { return array('story' => array('name' => t('story'), 'base' => 'story')); } The page module's node hook module like: function page_node() { return array('page' => array('name' => t('page'), 'base' => 'page')); } However, more complex node modules like the project module and the flexinode module can use the 'base' parameter to specify a different base. The project module implements two node types, proejcts and issues, so it can do: function project_node() { return array( array('project_project' => array('name' => t('project'), 'base' => 'project'), array('project_issue' => array('name' => t('issue'), 'base' => 'project_issue')); } In the flexinode module's case there can only one base ... This hook will simplify the CCK, and will make it easy (or easier) to merge the story and page module. In addition, node_list() became node_get_types(). In addition, we created the following functions: node_get_name($type) and node_get_base($type).
-
- Aug 25, 2005
-
-
Dries Buytaert authored
-
- Aug 01, 2005
-
-
Dries Buytaert authored
Usernames can now be themed; eg. an icon/avatar could be added. TODO: update contributed modules + update the migration docs.
-
- May 14, 2005
-
-
Dries Buytaert authored
-
- May 05, 2005
-
-
Dries Buytaert authored
-
- May 01, 2005
-
-
Dries Buytaert authored
It did not return nor print its output.
-
- Apr 24, 2005
-
-
Dries Buytaert authored
- Patch 20910 by chx: centralize print theme page.
-
- Feb 12, 2005
-
-
Dries Buytaert authored
- permissions menu link updates in a number of modules help - anchor link fix in distributed auth help - "my account" link fix in user help - spelling correction in tracker.module help - I also changed 'admin/access/perms' to 'admin/access/permissions'.
-
- Jan 30, 2005
-
-
Dries Buytaert authored
Goba: it would be nice if one of the core themes would showcase this functionality. ;-)
-
Dries Buytaert authored
-
- Jan 29, 2005
-
-
Dries Buytaert authored
- I had to use DISTINCT for the tracker.module's SQL queries.
-
Dries Buytaert authored
-
- Jan 27, 2005
-
-
Dries Buytaert authored
- Patch #16253 by Goba: this simple and straightforward patch adds the ability to define different types of markers (while retaining the old default behaviour of the new and required markers to look the same). Someone with enough time on his hands might be able to partition the new marker to a real new marker and a changed marker (since node_is_new() returns TRUE even if nodes changed, and not only when they are new). This is the base on which the new patch can be worked though.
-
- Jan 19, 2005
-
-
Steven Wittens authored
- Fix tracker pager count query being wrong (it did not return a count but a set, and it counted nodes with more than 1 comment as multiple nodes). - Clean up various SQL queries: removing literally inserted data (db_escape_string is evil!), fixing single "%" which should be "%%", fixing integers being compared as strings.
-
Steven Wittens authored
- Tiny code style fix
-
- Jan 17, 2005
-
-
Steven Wittens authored
-
- Jan 16, 2005
-
-
Dries Buytaert authored
- Patch #14731 by chx: made it possible to rewrite node queries.
-
- Dec 16, 2004
-
-
Dries Buytaert authored
- Patch #14262 by Richard: help text improvements for the tracker module.
-
- Nov 23, 2004
-
-
Dries Buytaert authored
-
- Nov 15, 2004
-
-
Dries Buytaert authored
- Patch #12783 by Stefan: various small consistency/usability improvements.
-
- Nov 04, 2004
-
-
Dries Buytaert authored
- Modifed patch by ccourtne: made the tracker module take advantage of the node_comment_statistics table. Improves performance of the tracker page by facter 10 because it eliminates up to 20 SQL queries.
-
- Oct 15, 2004
-
-
Dries Buytaert authored
- Patch #11577 by drumm: changed t('ago') -> t('%time ago', ...) to make it translatable in languages such as Spanish.
-
- Oct 06, 2004
-
-
Dries Buytaert authored
-
Dries Buytaert authored
-
Dries Buytaert authored
- Usability improvement: the 'recent posts' feature on the user pages lead to a page with a confusing (wrong) title so I shuffled things around a bit and tab-ified it as 'track'.
-