Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | - Patch #38849 by wtanaka: forum icon does not display as locked (aka ↵ | Dries Buytaert | 2005-12-03 | |
| | | | | closed) if comments are "disabled" instead of "read only". | |||
* | - Patch #39667 by killes: fixed typo in function call: _forum_get_vid -> ↵ | Dries Buytaert | 2005-12-02 | |
| | | | | _forum_get_vid(). | |||
* | - Patch #39576 by chx: rename '_execute' to '_submit' and '#execute' to ↵ | Dries Buytaert | 2005-12-02 | |
| | | | | '#submit'. | |||
* | - Patch #38854 by wtanaka: fixed XHTML validation problem. | Dries Buytaert | 2005-11-26 | |
| | ||||
* | - Patch #35644 by webchick: fixed the sizes of the textareas on the node ↵ | Dries Buytaert | 2005-11-23 | |
| | | | | edit forms. | |||
* | - Patch #35644 by webchick: forms API simplificiations. | Dries Buytaert | 2005-11-12 | |
| | ||||
* | #36791: node_validate was called twice | Steven Wittens | 2005-11-12 | |
| | ||||
* | - Patch #36250 by hunmonk: admin batch delete broken, node_delete needs ↵ | Dries Buytaert | 2005-11-04 | |
| | | | | | | reworked. This commit changes the node_delete() API. A list of affected modules is available at http://drupal.org/node/36250#comment-52963. | |||
* | - Patch #26139 by webchick / Kieran / documentation team: improved admin ↵ | Dries Buytaert | 2005-11-01 | |
| | | | | help of core modules! / | |||
* | - Patch #35205 by stefan: removed some deprecated code from forum.module! Yay. | Dries Buytaert | 2005-10-28 | |
| | ||||
* | - Patch #35061 by Cvbge/ntosi: fixed SQL query problem on PostgreSQL 8. | Dries Buytaert | 2005-10-28 | |
| | ||||
* | - #35505: Forum form api typo | Steven Wittens | 2005-10-28 | |
| | ||||
* | - #26583: Make forum taxonomy links redirect to forums rather than taxonomy ↵ | Steven Wittens | 2005-10-21 | |
| | | | | pages. | |||
* | - Patch #33752 by chx, adrian, et al: another batch of form API changes/fixes. | Dries Buytaert | 2005-10-11 | |
| | ||||
* | - Removing tabs and trailing whitespaces. | Dries Buytaert | 2005-10-07 | |
| | ||||
* | - Patch #29465: new form API by Adrian et al. | Dries Buytaert | 2005-10-07 | |
| | | | | | | | TODO: + The contact.module was broken; a new patch for contact.module is needed. + Documentation is needed. + The most important modules need to be updated ASAP. | |||
* | - Patch #32459 by beardedstoat and tostinni: always add a secondary sort ↵ | Dries Buytaert | 2005-10-01 | |
| | | | | order so the newest comments are on top. | |||
* | - Fixed spaces | Dries Buytaert | 2005-09-27 | |
| | ||||
* | - Patch #28786 by Neil: move pagers out of table. | Dries Buytaert | 2005-09-24 | |
| | ||||
* | - Patch #10056: allow the node title forms to be customized. | Dries Buytaert | 2005-09-23 | |
| | ||||
* | - Patch #29102 by menesis: fixed typo/left-over in switch-statement. | Dries Buytaert | 2005-09-08 | |
| | ||||
* | - Patch #28320 by Neil: improved the HTML/CSS of the user login block. | Dries Buytaert | 2005-09-07 | |
| | ||||
* | - Usablity improvement: check whether the comment module is enabled. If not, | Dries Buytaert | 2005-09-06 | |
| | | | | show an error message. | |||
* | - Patch #7582 by Gerhard: improved node revisions! | Dries Buytaert | 2005-08-30 | |
| | | | | | | | | | | All node revisions were stored in a serialized field in the node table and retrieved for _each_ page view although they are rarely needed. We created a separate revisions table which would be in principle identical to the node table, only that it could have several old copies of the same node. This also allows us to revision-related information, and to provide log entries to non-book pages when a new revision is being created. TODO: 1. Provide upgrade instructions for node module maintainers! 2. Upgrade modules that implement node types. 3. Provide an upgarde path for revisions. Dependency on the upgrade system. | |||
* | - Renamed _node() to _node_info()! We reserve _node for _nodeapi. | Dries Buytaert | 2005-08-29 | |
| | ||||
* | - Patch #29102 by chx: fixed bug in forum module and tidied up the ↵ | Dries Buytaert | 2005-08-28 | |
| | | | | taxonomy_save_*() functions. | |||
* | - Patch #29785 by Chx: multiple node types were broken so we refactored | Dries Buytaert | 2005-08-28 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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). | |||
* | - Patch #29385 by chx: no ?> add end of files. | Dries Buytaert | 2005-08-25 | |
| | ||||
* | - Patch #29133 by DriesK: forum vid remains when vocabulary is deleted. ↵ | Dries Buytaert | 2005-08-18 | |
| | | | | Prevents forum topics from getting lost. | |||
* | - Patch #27737 by Gerhard: format_name($object) -> theme('username', $object). | Dries Buytaert | 2005-08-01 | |
| | | | | | | Usernames can now be themed; eg. an icon/avatar could be added. TODO: update contributed modules + update the migration docs. | |||
* | - Patch #19621 by Morbus/drumm: fixed bugs with taxonomy_save_xxx() functions. | Dries Buytaert | 2005-07-18 | |
| | | | | TODO: update image module too? | |||
* | - Patch #25603 by Stefan: made the sizes of forms consistent. | Dries Buytaert | 2005-06-27 | |
| | | | | TODO: document the defaults in the PHPdoc comments. | |||
* | - Patch #21918 by budda/Robin: forum icons are broken when you change the ↵ | Dries Buytaert | 2005-06-19 | |
| | | | | forum icon path. TODO 1: the forum icons should probably be configurable on a per-site or per-theme basis. TODO 2: I spent 5 minutes looking for this setting. | |||
* | - Code cleanup: improve format_plural usage, add some missing ↵ | Steven Wittens | 2005-05-31 | |
| | | | | placeholder/check calls, and introduce API for <link> tags. | |||
* | - #19434: Improved forum admin texts. | Steven Wittens | 2005-05-25 | |
| | ||||
* | - #23014: Only show forum blocks if there are topics to list. | Steven Wittens | 2005-05-25 | |
| | ||||
* | - Removing the /*! USE INDEX */. It actually degrades performance ↵ | Dries Buytaert | 2005-05-20 | |
| | | | | significantly. | |||
* | - #19621: More sensible status messages for forum admin ("created forum" ↵ | Steven Wittens | 2005-05-07 | |
| | | | | instead of "created term"). | |||
* | - Oopsie | Steven Wittens | 2005-05-06 | |
| | ||||
* | - Missing theme placeholder in forum delete message. | Steven Wittens | 2005-05-06 | |
| | ||||
* | - Patch #15595 by Stefan and Djun: improved status messages. | Dries Buytaert | 2005-05-05 | |
| | | | | | TODO: we should write down a couple guidelines for these document them in the PHPDoc code of drupal_set_message()! . | |||
* | - Patch 20910 by chx: centralize print theme page. | Dries Buytaert | 2005-04-24 | |
| | ||||
* | - Added missing {}. | Dries Buytaert | 2005-04-12 | |
| | ||||
* | - Patch #19884 by Robin Monks: added help text for ?q=admin/forum/configure | Dries Buytaert | 2005-04-11 | |
| | ||||
* | - Patch #19434 by nysus: improved the forum module help texts. | Dries Buytaert | 2005-04-11 | |
| | ||||
* | - Patch #19615 by chx: fixed problem forum container getting lets when ↵ | Dries Buytaert | 2005-04-08 | |
| | | | | editing a forum. | |||
* | - Patch #19451 by JonBob: improved consistency of module descriptions. We ↵ | Dries Buytaert | 2005-04-01 | |
| | | | | should write guidelines for this -- maybe in the PHPDoc code of the _help hook. | |||
* | - Patch #19739 by Uwe: corrected many typo's in the documentation and code ↵ | Dries Buytaert | 2005-03-31 | |
| | | | | comments | |||
* | - #18817: Clean up plain-text checking (see drupal-devel!) | Steven Wittens | 2005-03-31 | |
| | ||||
* | - #18795: Display message to forum admin if there are no forums yet. | Steven Wittens | 2005-03-27 | |
| |