- 06 Aug, 2004 2 commits
-
-
Steven Wittens authored
-
Steven Wittens authored
- #9811: Remove session ID before matching block path
-
- 05 Aug, 2004 1 commit
-
- 01 Aug, 2004 1 commit
-
-
Dries authored
- Simplified the block help a bit by removing some dated information. It should be simplified more.
-
- 10 Jul, 2004 2 commits
- 07 Jul, 2004 1 commit
- 27 Jun, 2004 1 commit
-
-
Dries authored
$ diffstat user.patch database/database.mysql | 4 database/database.pgsql | 2 database/updates.inc | 10 - modules/block.module | 20 +- modules/locale.module | 9 modules/profile.module | 108 +++++++---- modules/system.module | 8 modules/user.module | 456 +++++++++++++++++++----------------------------- 8 files changed, 289 insertions(+), 328 deletions(-) More functionality, less code. Here is a list of the changes: - Some user API changes: + When $type is 'form', you have to return an associative array of groups. In turn, each group is an array with a 'title', 'data' and 'weight'. + A new $type has been added, namely 'categories'. User settings can be organized in categories. Categories can be sorted, as can the groups within a category. (Ordering 'categories' is somewhat broken due to a bug in the menu system.) - The 'my account > edit' page will use subtabs for each 'category'. Read: you can break down the account settings into multiple subpages. - Profile module improvements: + Added support for private fields to the profile module! + Improved workflow of profile administration pages. + Improved the form descriptions. - Code improvements: + Unified user_edit() and user_admin_edit(). + Unified and cleaned up the validation code. Fixed some validation glitches too.
-
- 21 Jun, 2004 1 commit
-
-
Dries authored
-
- 20 Jun, 2004 1 commit
-
-
Dries authored
-
- 18 Jun, 2004 2 commits
-
-
Dries authored
-
Dries 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').
-
- 02 Jun, 2004 1 commit
-
-
Dries authored
-
- 17 May, 2004 2 commits
- 11 May, 2004 1 commit
-
-
Dries authored
- Code improvements by JonBob. Thanks again.
-
- 21 Apr, 2004 1 commit
-
-
Dries 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.
-
- 29 Mar, 2004 1 commit
-
-
Dries authored
-
- 25 Mar, 2004 1 commit
-
-
Dries authored
Patch 6523 by Steven: - Strips the leading / from URLs to match with block paths. The reason is that everywhere else in Drupal, we use URLs without leading slash (e.g. URL aliasing). For consistency we should keep this behaviour everywhere. The replacement uses ereg_replace instead of str_replace, but the expression now only match the beginning of the URI so in fact it's faster, esp. for longer URIs. - Updates the block docs about path matching: gets rid of leading slash, adds initial matching operator '^' and emphasises the slash behaviour (which was not mentioned anywhere before) - Replaces the example expression for a negative match. It was horribly broken and odd, the replacement in this patch is correct and simpler.
-
- 21 Mar, 2004 1 commit
-
-
Dries authored
-
- 05 Mar, 2004 1 commit
-
-
Dries authored
-
- 25 Feb, 2004 1 commit
-
-
Steven Wittens authored
Fixed an apparently old bug which always defaulted user-togglable blocks to off, and clarified the explanation a bit.
-
- 15 Feb, 2004 1 commit
-
-
Dries authored
- Patch by Steven: removed redundant permission checks. These are no longer required thanks to the new 404 handling.
-
- 07 Feb, 2004 2 commits
-
-
Dries authored
- Batch two with profile module improvements: + Reworked the 'account administration' page. + Fixed bug in the 'edit account' page. + Removed some dead code from the system.module.
-
Dries authored
+ Tidied up the profile configuration page: grouped form elements. + Tidied up the block configuration settings: removed hard-coded table. + Changed the profile API to return the preferred group name, and changed the user module to group settings. Modules implementing the _user hook will need to be udpated. + Removed register_form and register_validate for now.
-
- 23 Jan, 2004 1 commit
-
-
Dries authored
Patch 5287 by Stefan: multiline help texts should become inside a single $output.
-
- 21 Jan, 2004 1 commit
-
-
Dries authored
Patch 5187 by Goba: - puts the long multiline help text into one string - fixes the ambiquity of calling two things on the same name: "custom block" now the user customizeable blocks are called custom blocks, and the admin defined blocks are called Administator Defined Blocks - added info on throttle to the explanation on when a block is displyed - also fixing some small typos
-
- 19 Jan, 2004 1 commit
-
-
Dries authored
- Removed instances of the 'throttle_enable' variable.
-
- 17 Jan, 2004 1 commit
-
- 11 Jan, 2004 1 commit
-
-
Dries authored
-
- 29 Dec, 2003 1 commit
-
-
Dries authored
-
- 28 Dec, 2003 1 commit
-
-
Dries authored
-
- 08 Dec, 2003 1 commit
-
-
Dries authored
- Tidied up the DoxyGen comments. Patch by Kjartan.
-
- 07 Dec, 2003 1 commit
-
-
Dries authored
- Patch 0185 by Jeremy: made it possible to automatically disable modules when under heave load.
-
- 04 Dec, 2003 1 commit
-
-
Dries authored
- Patch 185 by Ax: fixed undefined variables, synchronized xtemplate with sf, etc.
-
- 01 Dec, 2003 1 commit
-
-
Dries authored
- Introduced a drupal_set_message() and drupal_get_message() function. 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.
-
- 29 Nov, 2003 1 commit
-
-
Dries authored
-
- 28 Nov, 2003 2 commits
- 25 Nov, 2003 1 commit
-
-
Dries authored
- Committed phase 4 of JonBob's menu system changes.
-