summaryrefslogtreecommitdiff
path: root/modules/taxonomy.module
Commit message (Collapse)AuthorAge
* - More tab-improvements by JonBob: improved support for the default tabs!Dries Buytaert2004-07-10
|
* - Marked required fields on the node (story, book, page, blog) and commentDries Buytaert2004-07-08
| | | | | | | | | forms using the $required argument of the form_ functions. - Replaced all Optional's and Required's from the taxonomy forms with proper use of the form_ functions. Please check your contributed modules too!
* - Moving the title.module from core to contrib as discussed on the mailing list.Dries Buytaert2004-07-07
|
* - Patch by Steven and me: refactored the form handling of nodes. The node ↵Dries Buytaert2004-07-04
| | | | | | | | system is now using form_set_error() and friends like the rest of Drupal does. This makes for both a consistent user experience and consistent code. It simplifies the forms and validation code, however, it does change the node API slightly: * The _validate hook and the _nodeapi('validate') hook of the node API (1) no longer take an 'error' parameter and (2) should no longer return an error array. To set an error, call form_set_error(). * The _form hook of the node module no longer takes a form hook and should not worry about displaying errors. Ditto for _nodeapi('form_post') and _nodeapi('form_pre').
* - Patch #8973 by JonBob: Drupal contains many undefined variables and array ↵Dries Buytaert2004-07-02
| | | | indices, which makes PHP throw a lot of warnings when the reporting level is set to E_ALL. Things run fine with these warnings, but as a matter of code style if nothing else we should probably strive to avoid them. The attached fixes most of the more egregious offenders (about 95% of the warnings when I load /node on my test site).
* - Taxonomy fix by Matt.Dries Buytaert2004-06-23
|
* - Patch #8681 by asimmonds: more help text updatesDries Buytaert2004-06-21
|
* - Patch #8670 by asimmonds: spelling fixes.Dries Buytaert2004-06-20
|
* - Patch #7696 by TDobes: renamed 'static' to 'sticky' which is a moreDries Buytaert2004-06-19
| | | | logical name. Requires a database upgrade.
* - Patch #8632 by Mohse: made the taxonomy select menus more flexible.Dries Buytaert2004-06-19
| | | | | | | | | | | Specifically, it lets you edit more than one node's taxonomy within the same form. This patch also removes the behavior where taxonomy remembers your last choice for a given vocab and automatically selects it for you. That is poor behavior. If someone changes a date or author in a node, he is likely to inadvertently add taxo terms using with this 'feature'.
* Tabs patch!Dries Buytaert2004-06-18
| | | | | | | | | | | | | | | | | | CHANGES ------- + Introduced tabs. First, we extended the menu system to support tabs. Next, a tab was added for every link that was (1) an administrative action other than the implicit 'view' (2) relevant to that particular page only. This is illustrated by the fact that all tabs are verbs and that clicking a page's tab leads you to a subpage of that page. + Flattened the administration menu. The tabs helped simplify the navigation menu as I could separate 'actions' from 'navigation'. In addition, I removed the 'administer > configuration'-menu, renamed 'blocks' to 'sidebars' which I hope is a bit more descriptive, and made a couple more changes. Earlier, we already renamed 'taxonomy' to 'categorization' and we move 'statistics' under 'logs'. + Grouped settings. All settings have been grouped under 'administer > settings'. TODO ---- + Update core themes: only Xtemplate default supports tabs and even those look ugly. Need help. + Update contributed modules. The menu() hook changed drastically. Updating your code adhere the new menu() function should be 90% of the work. Moreover, ensure that your modue's admin links are still valid and that URLs to node get updated to the new scheme ('node/view/x' -> 'node/x').
* - Patch #8548 by Moshe: fixed warning when creating new vocabulary.Dries Buytaert2004-06-17
|
* - Patch #8418 by Axel: don't insert tid=0's in the databaseDries Buytaert2004-06-15
|
* - Patch #7350 by Mathias: return part a taxonomy tree to a user-definedDries Buytaert2004-05-31
| | | | | | depth/level. - Updated CHANGELOG.txt.
* - Patch #6682 by jhriggs: added form_checkboxes(), much like form_radios()Dries Buytaert2004-05-15
| | | | and updated some modules to take advantage of it.
* #7468 - Added title="" attribute with term descriptions (if present) to ↵Steven Wittens2004-05-04
| | | | | | taxonomy links. See http://drupal.org/node/view/7468
* - Patch #6009 by Matthias: reworked the help texts of the taxonomy module ↵Dries Buytaert2004-04-24
| | | | generated forms. The help text can now be customized.
* - Patch #7302 by Gerhard: saves the selected terms in a session variable.Dries Buytaert2004-04-23
|
* - Added support for 403 handling. Patch by JonBob. As a side benefit,Dries Buytaert2004-04-21
| | | | | | | | administrators will be able to define a custom 403 page, just as they can define 404 pages now. This needs to be documented in the "Changes since / migrating to ..." pages.
* - Renamed 'taxonomy' menu to 'categories' for sake of usability.Dries Buytaert2004-04-18
|
* - Patch by JonBob/Jonathan: reworked the menu system so that menus areDries Buytaert2004-04-15
| | | | | | | | | | | | configurable! Menu items can be disabled, repositioned, added and so on. Upgrading to requires you to run update.php. This functionality depricates some of the 'navigation modules' in the contributions repository. Furthermore, modules can now 'suggest' menu items and site adminstrators can choose to enable them. Modules in the contributions repository should try to take advantage of this.
* Patch #5588 by bylund: XHTML improvements: <i> -> <em> and <b> -> <strong>.Dries Buytaert2004-03-20
|
* - Patch #6470 by Brian: fixed XHTML error with multiple selection boxes.Dries Buytaert2004-03-14
|
* - Patch #4902 by Goba: fix URLs in RSS feeds.Dries Buytaert2004-03-06
| | | | | | + Make all channel links absolute. + Always set the $base_url as xml:base, thus providing a solid base for relative URLs.
* - Fix implode() errors.Kjartan Mannes2004-02-21
|
* - Patch by Gerhard: fixed incorrect regex in the taxonomy module.Dries Buytaert2004-02-21
|
* - Patch by Steven: removed redundant permission checks. These are no longerDries Buytaert2004-02-15
| | | | required thanks to the new 404 handling.
* - Fixed bug #5831: added validation for posting to forum containers. PatchDries Buytaert2004-02-12
| | | | by UnConeD.
* - Refined the regex to validate the input.Dries Buytaert2004-02-08
|
* - Bug 4853: fixed invalid taxonomy query.Dries Buytaert2004-02-07
|
* - Patch #5575 by Stefan: fixed invalid XHTML code in the node and taxonomy ↵Dries Buytaert2004-02-01
| | | | module.
* - Patch #5567 by Goba: fixed t() functions, cleanup of locale module's help,Dries Buytaert2004-02-01
| | | | fixed translation issues in taxonomy module, etc.
* - Patch 5049 by JonBob: allow a module to define multiple node types.Dries Buytaert2004-01-27
|
* Patch 5287 by Stefan: multiline help texts should become inside a single ↵Dries Buytaert2004-01-23
| | | | $output.
* - Patch 5080 by lizardo: fixed two typos in the taxonomy module's help text.Dries Buytaert2004-01-18
|
* Patch 5114 by Kjartan:Dries Buytaert2004-01-14
| | | | | | | - Adds drupal_set_header() and drupal_get_headers(). - Cache now stores custom headers. - Replace theme_head() with drupal_get_html_head(), added drupal_set_html_head(). - Added RSS autodiscover links to node, blog and taxonomy pages.
* - Patch #5021: clean up URLs in _help texts. Patch by UnConeD.Dries Buytaert2004-01-11
|
* - Updated code to use new semantics of url() and l().Dries Buytaert2003-12-29
|
* - XHTML improvements: <b> -> <strong>. Patch by Stefan.Dries Buytaert2003-12-29
|
* - Tidied up some inconsistencies in the code: scripts/code-style.sh is your ↵Dries Buytaert2003-12-28
| | | | friend.
* Fixed bug #4551: missing {} for prefix supportDries Buytaert2003-12-28
|
* - Fixed the breadcrumb trail of nested forums. Patch by Goba.Dries Buytaert2003-12-24
|
* - Updated the calls to menu() to use MENU_HIDE instead of 1Dries Buytaert2003-12-17
|
* - Patch 187: made taxonomy module take advantage of breadcrumb navigation.Dries Buytaert2003-12-11
| | | | Modified patch by Moshe.
* - Improvements by Goba:Dries Buytaert2003-12-08
| | | | | | + removes the lots of pagers and indirect pager themeing + add the theme_pager() function, which should be called as theme("pager", ...) to get a pager.
* - Tidied up the DoxyGen comments. Patch by Kjartan.Dries Buytaert2003-12-08
|
* - Fixed the taxonomy title of taxonomy pages. Patch by Moshe.Dries Buytaert2003-12-07
|
* - Fixed broken status message. Patch by Gerhard.Dries Buytaert2003-12-05
|
* - Introduced a drupal_set_message() and drupal_get_message() function.Dries Buytaert2003-12-01
| | | | | | | Contributed themes and modules need to be updated: - modules: status() is no more; use drupal_set_message() instead. - themes: use drupal_get_message() to check for status messages and visualize them.
* - Committed phase 4 of JonBob's menu system changes.Dries Buytaert2003-11-25
|