summaryrefslogtreecommitdiff
path: root/modules/path/path.module
Commit message (Collapse)AuthorAge
* - Small code simplifications.Dries Buytaert2004-07-13
| | | | | - Small usability improvement thanks to using drupal_goto() after deleting an alias.
* - Patch by Matt: made it possible to alias an URL multiple times.Dries Buytaert2004-07-11
|
* - More tab-improvements by JonBob: improved support for the default tabs!Dries Buytaert2004-07-10
|
* - Simplified some of the help texts.Dries Buytaert2004-07-08
| | | | | - Removed left-over instance of theme('error'): error handling is now done by the form code.
* - 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 #8500 by jseng (modified/simplified): improved usability of editingDries Buytaert2004-06-22
| | | | URL aliases.
* 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 #8105 by mathias: made the menu system aware of path aliases.Dries Buytaert2004-06-01
|
* - Patch #7350 by Mathias: return part a taxonomy tree to a user-definedDries Buytaert2004-05-31
| | | | | | depth/level. - Updated CHANGELOG.txt.
* - Updated the form handling to use form_set_error(). All core modules haveDries Buytaert2004-05-31
| | | | | been updated (almost none have error checking for forms) except the node forms ...
* - More code improvements by JonBob. Thanks a bunch.Dries Buytaert2004-05-18
|
* - 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.
* Patch #5588 by bylund: XHTML improvements: <i> -> <em> and <b> -> <strong>.Dries Buytaert2004-03-20
|
* - Patch by Steven: removed redundant permission checks. These are no longerDries Buytaert2004-02-15
| | | | required thanks to the new 404 handling.
* - Code improvements by Mathias: made the path module use drupal_set_message().Dries Buytaert2004-02-14
|
* - Fixes by Goba: updated help text of mass URL aliasing and fixed escaping ↵Dries Buytaert2004-02-01
| | | | problem.
* Patch 5287 by Stefan: multiline help texts should become inside a single ↵Dries Buytaert2004-01-23
| | | | $output.
* - Many excellent news aggregator improvements by Kjartan:Dries Buytaert2004-01-07
| | | | | | | + Added drupal_http_request(). + Replaced rssfeeds with OPML feed subscription list. + Added support for pubDate. + Added support for conditional gets using ETag and Last-Modified.
* - 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.
* - Path module documentation updates.Dries Buytaert2003-12-09
|
* - 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.
* - 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.
* - Fixed non-ANSI SQL query in path moduleDries Buytaert2003-11-27
|
* - Committed phase 4 of JonBob's menu system changes.Dries Buytaert2003-11-25
|
* - Patch by JonBob:Dries Buytaert2003-11-20
| | | | | | | | Phase 2 of the menu system integration project. This unifies the interface used by admin and non-admin pages, and deprecates the _page hook in favor of explicit callbacks from menu(). Breadcrumbs, titles, and help text go away as a result of this patch; they will return in the phase 3 patch, printed by the theme.
* - table(...) -> theme("table", ...)Dries Buytaert2003-11-13
|
* - Committed stage 2 of the theme system improvements! Patch by CodeMonkeyX.Dries Buytaert2003-11-09
|
* - Bugfix: 'path' -> {url_alias}. Patch by Mark Coady.Dries Buytaert2003-10-27
|
* Typoes.Steven Wittens2003-10-23
|
* - Bugfix: renamed the 'statistics' table to 'node_counter' as 'statistics' isDries Buytaert2003-10-22
| | | | | | | | a reserved SQL keyword. Required for both PostgreSQL and MSSQL. Patch by Adrian. - Bugfix: renamed the 'path' table to 'url_alias' as 'path' is a reserved SQL keyword. Required for both PostgreSQL and MSSQL. Patch by Adrian.
* - Bugfix: pass the node by reference in path_nodeapi so that $node->path is setDries Buytaert2003-10-17
| | | | | | | | for the node. Fixes bug #3680. Patch by Matt. - Bugfix: when creating a new node, don't try to insert a path if it wasn't set in the node form. This destroys any paths which the user may have created ahead of time for that node. Patch by Matt.
* - Committed part 3 of Michael's help system improvements: removed the $helpDries Buytaert2003-10-09
| | | | parameter from the menu() function.
* - Bugfix: inserting and updating paths was not working. Patch by Matt.Dries Buytaert2003-10-09
| | | | | - Bugfix: updated the queue module menu so the "view submission" link appears in the navigation when enabled. Patch by Matt.
* - Help system improvements: eliminated the _system hook. Patch by Michael.Dries Buytaert2003-10-07
| | | | | | - Bloggerapi module fixes. Patch by Kjartan. - Coding style fixes. Patch by Michael.
* - Node API code clean-up. Patch by Kjartan.Dries Buytaert2003-10-07
|
* - Various path module fixes by Gabor.Dries Buytaert2003-10-05
|
* - Fix visual bug: incorrect colspan for table.Dries Buytaert2003-10-04
|
* - Path modoule improvements. Modified path by Matt.Dries Buytaert2003-10-03
|
* - Modifies path.module to get rid of pgsql reserved word. Patch by Adrian.Dries Buytaert2003-10-01
| | | | | | | | | | - Updates database.pgsql and database.mysql to work with current cvs. Patch by Adrian. - Updates update.php to be able to update postgres from 4.2 to current. Patch by Adrian. - Small fixes by me.
* - The path module itselfDries Buytaert2003-09-30