Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | - Patch #32103 by nedjo: fixed title validation. | 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 #3986 by James (and Boris :)):consolidated all feed-related settings ↵ | Dries Buytaert | 2005-09-18 |
| | | | | | | | | | | | in one place. * adds a "feed settings" section to admin/settings where 2 new settings are introduced: * number of items per feed * default length of feed descriptions (title only, teaser, full) * patches all of core to obey the above - including the new aggregator (out) feeds * adds support for adding namespaces in _nodeapi('rss item') - which means things like iTunes RSS and yahoo's media rss can be implemented by the appropriate modules (i.e. audio.module) * includes some additional info in the default node feed - specifically the element (links directly to comments) - and dc:creator - to show node author information. | ||
* | - #30128: Call by reference left-overs | Steven Wittens | 2005-09-02 |
| | |||
* | - 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 #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 #29593 by tostinni: fixed display of title on ↵ | Dries Buytaert | 2005-08-25 |
| | | | | admin/settings/content-type/ pages. | ||
* | - Patch #29385 by chx: no ?> add end of files. | Dries Buytaert | 2005-08-25 |
| | |||
* | - Patch #17592 by killes: improved access denied messages. | Dries Buytaert | 2005-08-22 |
| | |||
* | - Patch #29335 by jonbob: shuffled the case-statements around for ↵ | Dries Buytaert | 2005-08-22 |
| | | | | performance's sake. | ||
* | - Patch #23750 by jerakeen: use the creation date rather than the update ↵ | Dries Buytaert | 2005-08-11 |
| | | | | date in RSS feeds. | ||
* | - Patch #24002: fixed node created timestamp changing on node edit. | Dries Buytaert | 2005-08-07 |
| | |||
* | - Patch #26637 by Robert Douglas: $teaser misnamed in themes theme_node(). | Dries Buytaert | 2005-08-07 |
| | | | | TODO: update documentation! | ||
* | - #25395: Allow for more integers in node_access grant_x columns | Steven Wittens | 2005-08-05 |
| | |||
* | - #27864: Correctly distinguish 403s from 404s for nodes. | Steven Wittens | 2005-08-05 |
| | |||
* | - 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 #27535 by Ber: set 'preview status message' using drupal_set_message(). | Dries Buytaert | 2005-07-31 |
| | |||
* | - #27551: Rename check_output() to check_markup(). Needs contrib updates! | Steven Wittens | 2005-07-29 |
| | |||
* | - #26458: node_search doesn't node_view, causing bad snippets. | Steven Wittens | 2005-07-29 |
| | |||
* | - #26458: node_search doesn't node_view, causing bad snippets. | Steven Wittens | 2005-07-29 |
| | |||
* | - Patch #26467 by drumm: make the destination persist across multiple pages | Dries Buytaert | 2005-07-20 |
| | | | | and fixed the node delete form to use a return destination. | ||
* | - Fix oopsie in node_load() after recent patch. | Steven Wittens | 2005-07-18 |
| | |||
* | - Updated handbook-link to reflect the recent handbook restructuring. | Dries Buytaert | 2005-07-18 |
| | |||
* | - Fixed typo in PHPdoc | Dries Buytaert | 2005-07-17 |
| | |||
* | - Modified patch #25031 by chx: modified node_list() so one has both the ↵ | Dries Buytaert | 2005-07-17 |
| | | | | | | module and its type. TODO: update migration page in handbook. | ||
* | - Patch #25634 by chx: simplified node_load(). | Dries Buytaert | 2005-07-17 |
| | |||
* | - Fix by darix: fixed content type settings broken by berkes' last patch. | Dries Buytaert | 2005-07-07 |
| | |||
* | - Patches by Ber: move user settings and node settings to admin/settings. | Dries Buytaert | 2005-07-03 |
| | |||
* | - Fixed problems with filter formats and problem with XML-RPC server. | Dries Buytaert | 2005-06-29 |
| | |||
* | - Patch #25603 by Stefan: made the sizes of forms consistent. | Dries Buytaert | 2005-06-27 |
| | | | | TODO: document the defaults in the PHPdoc comments. | ||
* | - Patch #18213 by chx: boostrap system. Modified to work with HEAD, tidied | Dries Buytaert | 2005-06-22 |
| | | | | | | | up the documentation a little. chx: can you double-check whether the global $conf variable is secure? (That is, make sure it can't be send using the URL or something.) | ||
* | - Patch #25121 by Robrecht J.: changed itemized lists with hardcoded CSS to ↵ | Dries Buytaert | 2005-06-21 |
| | | | | definition lists. | ||
* | - Patch #16204 by Thox: committed the collapsible form elements patch. | Dries Buytaert | 2005-06-21 |
| | | | | | | NOTE: this patch works well, but the improved node edit form still has some rough edges. It is important that we continue to improve usability. Give it a try. | ||
* | - Removing some whitespace | Dries Buytaert | 2005-06-06 |
| | |||
* | - #18836: Cleanup teaser generation code, and refine handling of PHP code ↵ | Steven Wittens | 2005-06-01 |
| | | | | teasers. | ||
* | - #18836: Cleanup teaser generation code, and refine handling of PHP code ↵ | Steven Wittens | 2005-06-01 |
| | | | | teasers. | ||
* | - Code cleanup: improve format_plural usage, add some missing ↵ | Steven Wittens | 2005-05-31 |
| | | | | placeholder/check calls, and introduce API for <link> tags. | ||
* | - Patch #18275 by Steven: "create content" menu displays extraneous links. | Dries Buytaert | 2005-05-26 |
| | | | | (Not sure if this needs to be backported to DRUPAL-4-6.) | ||
* | - #18406: make node_page 404 on meaningless nids | Steven Wittens | 2005-05-25 |
| | |||
* | - Sort admin-content by descending node date. This got lost in the ↵ | Steven Wittens | 2005-05-25 |
| | | | | refinement-filter patch. | ||
* | * cue Star Wars theme tune * | Steven Wittens | 2005-05-24 |
| | | | | | | Return of the JavaScript! - #22519: form_autocomplete(): Ajax based autocompletion. Currently used for user names and folksonomy tags. | ||
* | - Patch by chx: added a db_rewrite_sql() in node_load() just to make sure. | Dries Buytaert | 2005-05-17 |
| | |||
* | - Patch 20910 by chx: centralize print theme page. | Dries Buytaert | 2005-04-24 |
| | |||
* | - Patch #20188 by Goba: Node_feed() instructs the nodeapi view call it ↵ | Dries Buytaert | 2005-04-11 |
| | | | | invokes to deal with the body of the node, but afterwards it only uses the teaser to generate the feed. So the nodeapi hook should be called with teaser processing in mind. This simple patch fixes that. | ||
* | - Removed weird phpdoc line | Dries Buytaert | 2005-04-05 |
| | |||
* | - 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 |
| |