Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | - #42234: Use standardized feed icon for RSS | Steven Wittens | 2005-12-29 |
| | |||
* | - #41744: global urlencode() for menu paths | Steven Wittens | 2005-12-22 |
| | |||
* | - Patch #40813: Taxonomy forms should be in a fieldset. | Dries Buytaert | 2005-12-16 |
| | |||
* | - Patch #34920 by Morbus/webchick/tangent: fixed order of form fields. | Dries Buytaert | 2005-12-15 |
| | |||
* | - Patch #40631 by Chris Johnson: is_array() slower than isset() or empty(). | Dries Buytaert | 2005-12-14 |
| | |||
* | - Patch #39598 by Gerhard: fixed problem with taxonomy terms not being selected. | Dries Buytaert | 2005-12-06 |
| | |||
* | - Patch #35125 by zoo33: made the taxonomy.module work with PostgreSQL. | Dries Buytaert | 2005-12-05 |
| | |||
* | - Patch #39778 by chx: obliterate nodeapi op form in favor of the forms ↵ | Dries Buytaert | 2005-12-05 |
| | | | | API's way of doing things. Tested with help from webchick. | ||
* | - Patch #31151: adding taxonomy terms has no feedback | Dries Buytaert | 2005-11-29 |
| | |||
* | - Bring back taxonomy_form_all(). | Dries Buytaert | 2005-11-28 |
| | |||
* | - Patch #39003 by Jaza: remove taxnomy_form_all(). | Dries Buytaert | 2005-11-27 |
| | |||
* | - Patch #29151 by fgm: simplified SQL query in taxonomy_node_form(). | Dries Buytaert | 2005-11-23 |
| | |||
* | - Patch #35644 by webchick: forms API simplificiations. | Dries Buytaert | 2005-11-12 |
| | |||
* | #30993: Make taxonomy selector widget themable | Steven Wittens | 2005-11-12 |
| | |||
* | - Patch #35178 by Robert Douglas: add title attribute to taxonomy links - ↵ | Dries Buytaert | 2005-11-08 |
| | | | | use term description as text. | ||
* | - Patch #26139 by webchick / Kieran / documentation team: improved admin ↵ | Dries Buytaert | 2005-11-01 |
| | | | | help of core modules! / | ||
* | - #26583: Make forum taxonomy links redirect to forums rather than taxonomy ↵ | Steven Wittens | 2005-10-21 |
| | | | | pages. | ||
* | - Code style | Steven Wittens | 2005-10-19 |
| | |||
* | - Patch #33752 by leafish_paul / adrian: added missing apostrophes to the ↵ | Dries Buytaert | 2005-10-18 |
| | | | | form API code. | ||
* | - Patch #33752 by chx, adrian, et al: another batch of form API changes/fixes. | Dries Buytaert | 2005-10-11 |
| | |||
* | - Patch #33433 by chx: fixed a number of form API problems. | Dries Buytaert | 2005-10-08 |
| | | | | | | | | | | | * Default form value * Leftover debug function in form.inc * PHP5 issue with comment date (I got this patch from another issue) * Validation error fix (was calling legacy form validate) * Lots o' warnings on comment preview * Filter tips plus argument (gremlins. I swear this was not there.) * Message to clear what's going on with system settings * Non-freetagging taxonomies fixed | ||
* | - 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 #31014 by chx, zack: on taxonomy overview pages, make term names ↵ | Dries Buytaert | 2005-09-19 |
| | | | | link to their respective taxonomy/term/(x) page. | ||
* | - 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. | ||
* | - Patch #30956 by Cvbge: PostgreSQL fix: taxonomy_save_vocabulary() should ↵ | Dries Buytaert | 2005-09-12 |
| | | | | check for 'tags' not set. | ||
* | - Patch #16452 by chx: allow modules to rewrite taxonomy-related SQL queries ↵ | Dries Buytaert | 2005-08-28 |
| | | | | | | | | much like we do with node-related SQL queries. (chx promised to document this, check his documentation as soon it is available.) | ||
* | - 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 #21658 by Uwe: fixed broken link in help text. | Dries Buytaert | 2005-08-24 |
| | |||
* | - #16440: Allow taxonomy vocabulary and term forms to be extended. | Steven Wittens | 2005-07-25 |
| | |||
* | - Patch #26683 by matteo: added missing DISTINCT()s | Dries Buytaert | 2005-07-19 |
| | |||
* | - Removed <strong>s | Dries Buytaert | 2005-07-19 |
| | |||
* | - Misplaced backet | Dries Buytaert | 2005-07-19 |
| | |||
* | - Modified patch #20505 by Morbus: fixed scalability issues with terms, ↵ | Dries Buytaert | 2005-07-19 |
| | | | | tried to create a better distinction between vocabularies and terms, fixed problem with term pager (temporary fix). | ||
* | - Patch #19621 by Morbus/drumm: fixed bugs with taxonomy_save_xxx() functions. | Dries Buytaert | 2005-07-18 |
| | | | | TODO: update image module too? | ||
* | - 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 |
| | |||
* | - Patch #25603 by Stefan: made the sizes of forms consistent. | Dries Buytaert | 2005-06-27 |
| | | | | TODO: document the defaults in the PHPdoc comments. | ||
* | - Removing some whitespace | Dries Buytaert | 2005-06-06 |
| | |||
* | - Code cleanup: improve format_plural usage, add some missing ↵ | Steven Wittens | 2005-05-31 |
| | | | | placeholder/check calls, and introduce API for <link> tags. | ||
* | - #20963: Make taxonomy_select_nodes() more useful to other modules, by ↵ | Steven Wittens | 2005-05-25 |
| | | | | allowing custom sorting orders. | ||
* | * 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 #16452 by chx: made it possible to rewrite some taxonomy queries. | Dries Buytaert | 2005-05-21 |
| | |||
* | - Patch #7684 by MrRoot/grohk: order taxonomy terms by vocabulary weight, ↵ | Dries Buytaert | 2005-05-21 |
| | | | | then term weight. | ||
* | - Patch #22469 by mathias: added missing DISTINCT()s to two SQL queries. | Dries Buytaert | 2005-05-21 |
| | |||
* | - Modified patch #22878 by Junyor: made all terms on the taxonomy overview ↵ | Dries Buytaert | 2005-05-14 |
| | | | | page links to the taxonomy term list page. | ||
* | - #19621: More sensible status messages for forum admin ("created forum" ↵ | Steven Wittens | 2005-05-07 |
| | | | | instead of "created term"). | ||
* | - Patch #21751 by crunchywhelch: added missing check_plain() when emitting ↵ | Dries Buytaert | 2005-05-02 |
| | | | | the <category>-tag in RSS feeds. |