- 04 Jul, 2004 2 commits
-
-
Steven Wittens authored
- If you are allowed to vote, results are now shown on a separate node tab "node/id/results". - Poll voting now submits to a separate URL and uses drupal_goto to go back to the poll node
-
Dries Buytaert authored
- Patch by Steven and me: refactored the form handling of nodes. The node 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').
-
- 20 Jun, 2004 1 commit
-
-
Dries Buytaert authored
-
- 18 Jun, 2004 1 commit
-
-
Dries Buytaert authored
Tabs patch! 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').
-
- 09 May, 2004 1 commit
-
-
Dries Buytaert authored
-
- 21 Apr, 2004 1 commit
-
-
Dries Buytaert authored
- Added support for 403 handling. Patch by JonBob. As a side benefit, 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.
-
- 14 Apr, 2004 1 commit
-
-
Steven Wittens authored
Poll.module / Statistics.module: fixing bug caused by using array_merge and drupal_map_assoc. This causes array keys to be renumbered, leading to bugs. Remember to use $array1 + $array2 instead.
-
- 25 Feb, 2004 1 commit
-
-
Dries Buytaert authored
- Patch by Gerhard: move the updates to database/updates.inc so packaging systems can by-pass update.php.
-
- 24 Feb, 2004 1 commit
-
-
Steven Wittens authored
* Code cleaning: simpler structures, removed some old leftovers, ... * Clean URLs everywhere (the old mechanism was broken anyway). Had to get rid of 'inline voting' (i.e. voting with the sideblock and ending up on the same page), but that was a bit confusing anyway. * Simplified submission form with form_group and streamlined choice mechanism. * Improved bar rendering in pollresults for themes with avatars, like xtemplate.
-
- 15 Feb, 2004 1 commit
-
-
Dries Buytaert authored
- Patch 5592 by Goba: let drupal_map_assoc() rule. :-) - Renamed CHANGELOG to CHANGELOG.txt for Windows uses.
-
- 27 Jan, 2004 1 commit
-
-
Dries Buytaert authored
- Patch 5049 by JonBob: allow a module to define multiple node types.
-
- 23 Jan, 2004 1 commit
-
-
Dries Buytaert authored
Patch 5287 by Stefan: multiline help texts should become inside a single $output.
-
- 11 Jan, 2004 1 commit
-
-
Dries Buytaert authored
-
- 04 Jan, 2004 1 commit
-
-
Dries Buytaert authored
- Patch 4948 by Goba: the poll module uses check_output() on the poll options.
-
- 30 Dec, 2003 1 commit
-
-
Steven Wittens authored
- Re-added STYLE/ON*= filtering (this got lost a while ago due to reorganisation) - Added form_group's to node.module's filter options - Fixed incorrect filter usage in poll.module
-
- 22 Dec, 2003 1 commit
-
-
Dries Buytaert authored
the theme functions left the poll module's poll_view() function in a state where it does not display the poll results or vote forms on their own pages, since it uses another (proprietary) $block parameter to handle the case when the poll is rendered to be displayed in a block. Patch by Goba.
-
- 17 Dec, 2003 1 commit
-
-
Dries Buytaert authored
- Updated the calls to menu() to use MENU_HIDE instead of 1
-
- 25 Nov, 2003 1 commit
-
-
Dries Buytaert authored
- Committed phase 4 of JonBob's menu system changes.
-
- 23 Nov, 2003 1 commit
-
-
Dries Buytaert authored
- Committed phase 3 of JonBob's menu changes. Adds an API for modules to define titles and breadcrumbs for their pages, and updates the theme system to display them.
-
- 20 Nov, 2003 1 commit
-
-
Dries Buytaert authored
- Patch by JonBob: 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.
-
- 09 Nov, 2003 1 commit
-
-
Dries Buytaert authored
- Committed stage 2 of the theme system improvements! Patch by CodeMonkeyX.
-
- 08 Nov, 2003 1 commit
-
-
Dries Buytaert authored
- Committed stage 1 of the menu callbacks improvements. Patch by Jonathan.
-
- 07 Nov, 2003 1 commit
-
-
Dries Buytaert authored
- Usability improvement: replaced many selection boxes by radio buttons. Patch by Stefan.
-
- 01 Nov, 2003 1 commit
-
-
Steven Wittens authored
-
- 09 Oct, 2003 1 commit
-
-
Dries Buytaert authored
- Committed part 3 of Michael's help system improvements: removed the $help parameter from the menu() function.
-
- 07 Oct, 2003 1 commit
-
-
Dries Buytaert authored
- Help system improvements: eliminated the _system hook. Patch by Michael. - Bloggerapi module fixes. Patch by Kjartan. - Coding style fixes. Patch by Michael.
-
- 06 Oct, 2003 1 commit
-
-
Dries Buytaert authored
- Small poll block improvement (without configuration option). Patch by Gabor.
-
- 03 Oct, 2003 1 commit
-
-
Dries Buytaert authored
- Help improvements and translation improvements from Michael. Thanks!
-
- 28 Sep, 2003 2 commits
-
-
Dries Buytaert authored
- Associate a callback with the menu links! (This callback is not yet being called but will be as soon the remaining links have been transformed to use the menu system.) - Made sure the menu does not render links with no callback and no children. Like this, the 'create content' link is not being shown when the user has no permission to add any content.
-
Dries Buytaert authored
- Committed Goba's translation fixes.
-
- 27 Sep, 2003 1 commit
-
-
Dries Buytaert authored
- Committed Al's new admin link texts. Remarks: 1) As explained by Al, there is still a glitch with the 'create content' menu. 2) The user module part of the patch did not apply due to Kjartan's earlier patch.
-
- 26 Sep, 2003 1 commit
-
-
Dries Buytaert authored
- Committed the admin menu integration patch. Thanks Adrian, Stefan and others.
-
- 20 Sep, 2003 2 commits
-
-
Dries Buytaert authored
by Jonathan.
-
Dries Buytaert authored
- Committed Nick's _content improvements.
-
- 18 Sep, 2003 1 commit
-
-
Dries Buytaert authored
- Fix for bug #2733: devision by zero. Patch by Jonathan.
-
- 15 Sep, 2003 1 commit
-
-
Dries Buytaert authored
- Book module improvements. This commit changes the behavior of the "view" hook. See mailing list for details; search for a mail with the subject: '[IMPORTANT] behavior of "view" hook changed'. Modified patch from Nick.
-
- 24 Jul, 2003 1 commit
-
-
Dries Buytaert authored
- Bugfix: made deleting polls work. Patch by Marco.
-
- 12 Jul, 2003 1 commit
-
-
Dries Buytaert authored
- Performance improvement: changed a fair amount of "left joins" to "inner joins". Patch by Gerhard.
-
- 10 Jul, 2003 1 commit
-
-
Dries Buytaert authored
- Committed a slightly modified version of Slavica's table prefix patch.
-
- 20 Jun, 2003 1 commit
-
-
Dries Buytaert authored
- Bugfix: fixed problem with changing themes. Didn't apply Al's patch as the fix was somewhat simpler. Fixes bug #2003. - Bugfix: fixed problem with voting on certain poll pages. Patch #37 by Al. - Improvement: removed stupid descriptions from profile module.
-