summaryrefslogtreecommitdiff
path: root/modules/user
Commit message (Collapse)AuthorAge
...
* User module patch by Kjartan:Dries Buytaert2003-11-10
| | | | | | | | | | | | | | | | | | | - Optimized user_external_load(), only need to fetch the data once. - Removed unused functions: user_get() user_set() theme_menu_list() - Fixed user_validate_name() to not accept \. - Modified user_validate_name() to use alnum, which varies depending on the system locale. - Optimized user_validate_name() to not use unnecessary regular expressions. - Optimized user_access() by using less logic to fetch permissions and cache. - Removed uncessary logic from user_deny(). - Fixed user_fields() to properly cache $fields. - Optimized user_set_authmaps() to not perform unnecessary queries. - Removed return value from user_set_authmaps().
* - Committed stage 2 of the theme system improvements! Patch by CodeMonkeyX.Dries Buytaert2003-11-09
|
* - Committed stage 1 of the menu callbacks improvements. Patch by Jonathan.Dries Buytaert2003-11-08
|
* - Usability improvement: replaced many selection boxes by radio buttons.Dries Buytaert2003-11-07
| | | | Patch by Stefan.
* - Improvement: made it possible to disable the comment controls and reworded ↵Dries Buytaert2003-10-31
| | | | | | | | | | | | | | | | some of the configuration settings. - Improvement: removed a left-over from Drupal 4.2.0 (dead code). - Improvement: replaced hard-coded XHTML around the XML icons with class="xml-icon". - Improvement: removed the custom navigation menus shown at the top of the "user information page" and integrated them in the new navigation block. The "my account" link in the navigation menu will unfold. Also removed the "delete account" link/functionality (for now). - Improvement: fix for "magic quotes" settings. Patch by Steven. I also removed check_php_settings(). - Improvement: block themability improvements. Modified patch from Ax and Steve/CodeMonkeyX. - Fixed bug #2617: editing user information does not work. Patch by Kjartan.
* - Small corrections to the punctuation.Dries Buytaert2003-10-28
|
* - Bugfix: fixed usernames being shown in the "Who is online" block afterDries Buytaert2003-10-28
| | | | | | | | | you logged out. Patch by Jeremy. - Bugfix: fixed the authmap table in the MSSQL scheme. Patch by Moshe. - Bugfix: properly themes some error messages in the user module. Patch by Moshe.
* - Bugfix: removed depricated documentation.Dries Buytaert2003-10-23
|
* - Bugfix: prefix not prepended to sequences. Fixes bug #3639.Dries Buytaert2003-10-22
| | | | | | | | | | Make sure to write: db_next_id({table}_field); instead of: db_next_id(table_field);
* - Bugfix: changed id="menu" to class="menu" to avoid id="menu" being emittedDries Buytaert2003-10-21
| | | | twice. Patch by Jim Riggs.
* - Bugfix: don't list the anonymous user on the account overview pages. FixesDries Buytaert2003-10-21
| | | | bug #3688.
* - Bugfix: fixed form() being called incorrectly. Fixed bug #3699 reportedDries Buytaert2003-10-20
| | | | by Julian.
* - Bugfix: fixed two problems with adding and deleting access rules. Patch byDries Buytaert2003-10-20
| | | | Moshe. Requires database upgrade.
* - Fixed bug #3637: made comment module settings translatable. Patch #13 by ↵Dries Buytaert2003-10-16
| | | | | | | | | | | | | Moshe. - Fixed bug #3642: removed duplicate settings from user page. Patch #14 by Moshe. - Fixed bug #3503: added 'forum topic' link to the 'create content' menu. Patch by Gobar. I think this might be more intuitive and consistent code-wise; I don't want to introduce small hacks. - Cache improvement: small cache improvement to prevent SQL errors. Patch by Jeremy.
* - Bugfix: added a missing break statement. Patch by Stefan.Dries Buytaert2003-10-15
|
* - Fixed prefix problem with the book module. Patch by Moshe.Dries Buytaert2003-10-13
| | | | | | | | | | | | | | - Usability improvements to the user module: removed some redundant menu items by taking advantage of the column sorting, added status messages and so on. Patch by Moshe plus some fixes. - Made the profile module use the table() function. Patch by Moshe. - Fixed breadcrumb spacing. Patch by Moshe. - Fixed colspan problem with node overview table. Patch by Stefan. - Fixed inconsistency with table sorting. Patch 0122 by Al.
* - Fixed translation bugs with statistics module. Patch by Gabor.Dries Buytaert2003-10-12
| | | | | | - Removed 'homepage' field from user table. Patch by Gabor. - Added 'real name' field to the profile module. Patch by Gabor.
* - Fixed some link titles that were no longer correct due to the menuDries Buytaert2003-10-09
| | | | | | changes. - Fixed some broken links.
* - Fixed a broken link in the user module's documentaiton.Dries Buytaert2003-10-09
|
* - Committed part 3 of Michael's help system improvements: removed the $helpDries Buytaert2003-10-09
| | | | parameter from the menu() function.
* - 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.
* user_mail_encode() fixes:Kjartan Mannes2003-10-04
| | | | | - Made sure the chunk sizes always include groupings of 4 bytes. - Added more comments so fixes are not lost in future changes.
* - Re-wrote user_mail_encode().Kjartan Mannes2003-10-03
|
* - Fixed small performance bug: when a user has no permissions, the queryDries Buytaert2003-10-03
| | | | in user_access() was not cached.
* - Moved the locale settings from the user module to the locale module.Dries Buytaert2003-09-30
| | | | | | | Patch by Stefan. - Moved the theme settings from the user module to the system module and made the code more intelligent. Patch by Stefan.
* - Changed 'view my blog' to 'my blog' and 'view recent posts' to 'recentDries Buytaert2003-09-30
| | | | posts'. See mailing list discussion.
* - Made sure non US-ASCII mails are sent out properly. Patch by Gabor.Dries Buytaert2003-09-29
| | | | | | TODO: rename user_mail() to drupal_mail() and move it to common.inc. Other modules, such as the project module, should use this as well or they risk to send out /invalid/ mails.
* - Fixed CSS.Dries Buytaert2003-09-28
|
* - Fixed bug with "new user". Reported by Matt.Dries Buytaert2003-09-28
|
* - Renamed User information block to Navigation.Kjartan Mannes2003-09-28
| | | | - Fixed Navigation block header.
* - Associate a callback with the menu links! (This callback is not yet beingDries Buytaert2003-09-28
| | | | | | | | | 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.
* - Made sure all menu items can be translated. Path by Goba.Dries Buytaert2003-09-28
|
* - Rewrote the most of the menu system; this fixes Al's problem with theDries Buytaert2003-09-28
| | | | | | | | | "create content" link. - Manually merged the user module's new menu items. Al's patch did not apply. - Added some missing t()s.
* - Committed Al's new admin link texts. Remarks:Dries Buytaert2003-09-27
| | | | | | | 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.
* - Patch by Kjartan:Dries Buytaert2003-09-26
| | | | | | | + Fixed CSS to use the same format as the rest of drupal.css. + Added fallback routine for menu icons. + Fixed anonymous users not seeing the menu. + Added proper access checks for admin and help menu items.
* - Committed the admin menu integration patch. Thanks Adrian, Stefan and others.Dries Buytaert2003-09-26
|
* - Fixed off-by-one error in user admin pages.Dries Buytaert2003-09-20
|
* - Committed a partial administration page integration patch.Dries Buytaert2003-09-19
|
* - Tidied up the usage of module_invoke() and module_invoke_all(). Patch byDries Buytaert2003-09-14
| | | | Jonathan Chaffer.
* - Bugfix: fixed string being check_query()-ed twice. Bug #2425. Patch byDries Buytaert2003-09-14
| | | | Matt.
* - Changed $theme->links() to theme("links", $links).Dries Buytaert2003-09-13
| | | | | | | | - Added page titles. Modified version of patch 0104 by Kendow; patch updated for HEAD branch. > Modified 4.2.0 code to pass localized title text to theme header so user > pages have meaningful <title> element content.
* - Patch by Bart Jansen:Dries Buytaert2003-09-10
| | | | | | | | | | | | | | | | | | | <quote> This adds session support for anonymous users and fixes a bug/typo. 1. changed rid for user #0 from 0 to 1 (rid 1 == anonymous user) to make inner join work. 2. replaced "if ($user .." by "if ($user->uid .." because now $user is always set (my previous change probably caused this). 3. db_next_id("user_uid") -> db_next_id("users_uid"); </quote> I repeat: "This adds session support for anonymous users and fixes a bug/typo."
* - Gerhard's uid 0 patches. These patches bring various performanceDries Buytaert2003-09-09
| | | | improvements. Requires a database update.
* - Added an "edit account" link.Dries Buytaert2003-08-30
|
* - Fixed bug #2548: error reporting from modules didn't always work.Dries Buytaert2003-08-23
|
* - Removed left-overs from the rating module. Patch by Gerhard. Updated theDries Buytaert2003-08-22
| | | | | | | | | | | | | | | | PostgreSQL and MSSQL database scheme as well. - Made sure the update script updates the correct tables when database prefixing is enabled. Patch by Bart Jansens. - Improved the breadcrumb navigation of the book and the forum module as per Keith Instone's suggestions. - Updated page titles (or block titles) and links to match. Suggested by Keith Instone. - Added missing 'thread' field to the comment table of the MySQL database scheme. Fixes bug #2590.
* - Added some missing {} to make database prefixing work. Patch by Moshe.Dries Buytaert2003-08-22
|
* - Fixed bug with user sessions. Patch by Jeremy.Dries Buytaert2003-08-22
|
* - Applied Moshe's tablesort patch! Note that I changed the arrow imagesDries Buytaert2003-08-21
| | | | because those of Moshe where not identical.
* - Committed Jeremy's session patch: this brings us one step closer to havingDries Buytaert2003-08-20
| | | | session for anonymous users.