summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* - Patch #245504 by catch, David_Rothstein, Freso, et al: removed the ↵Dries Buytaert2008-04-16
| | | | throttle module from Drupal core.
* - Patch #175841 by catch et al: remove comment controls for users. Yowza.Dries Buytaert2008-04-16
|
* - Patch #236242 by jpoesen and Garrett Albright: fixed two typos in the node ↵Dries Buytaert2008-04-15
| | | | module's install file.
* - Patch #244942 by pwolanin: fixed outdated function name in schema description.Dries Buytaert2008-04-15
|
* - Patch #245826 by Jax: trust_root is not set for OpenID 1.0 due to an ↵Dries Buytaert2008-04-14
| | | | undefined variable.
* - Patch #245904 by boombatower: fixed E_NOTICE warning in the XML-RPC library.Dries Buytaert2008-04-14
|
* - Patch #88892 by darthsteven et al: improved the PHPdoc of ↵Dries Buytaert2008-04-14
| | | | form_set_value(). Great work. Much better. :)
* - Patch #245115 by kkaefer, John Morahan, JohnAlbin et al: after a long ↵Dries Buytaert2008-04-14
| | | | discussion we've decided to make the concatenation operator consistent with the other operators.
* - Patch #240988 by Gabor: break out HTML escaping to its own filter.Dries Buytaert2008-04-11
|
* - Patch #216072 by recidive, David Rothstein, ptalindstrom et al: switched ↵Dries Buytaert2008-04-10
| | | | | | | | | | | from numeric block IDs to string IDs. The short explanation is that Drupal uses a lot of numeric deltas in the block system; blocks are identified by the 'module' and the 'delta'. In early Drupal, delta was numeric, but somewhere along the line it was changed to be possibly a string. In modern Drupal, block overrides are easily done via block-MODULE-DELTA.tpl.php. The primary motivation to switch to string IDs everywhere is to make these deltas friendlier to themers: block-user-0.tpl.php --> block-user-navigation.tpl.php block-user-1.tpl.php --> block-user-login.tpl.php You get the picture.
* - Patch #189568 by dvessel: don't include a CSS file in the aggregated CSS ↵Dries Buytaert2008-04-10
| | | | output when that file is overwritten by a theme-specific CSS file.
* - Patch #195072 by webchick and coltrane: make _comment_load() a public API ↵Dries Buytaert2008-04-10
| | | | function by renaming it to comment_load().
* - Patch #216504 by webchick et al: added missing table alias in ↵Dries Buytaert2008-04-10
| | | | comment_render function.
* - Patch #243524 by christefano: display INFO_ALL output when calling ↵Dries Buytaert2008-04-10
| | | | system_php().
* - Patch #244597 by drumm: remove login form text as this can now be ↵Dries Buytaert2008-04-10
| | | | accomplished using hook form_alter.
* - Patch #228594 by catch et al: removed access rule functionality from core.Dries Buytaert2008-04-08
| | | | | | | | | | | The access rules capability of user module has been stripped down to a simple method for blocking IP addresses. E-mail and username restrictions are now available in a contributed module. IP address range blocking is no longer supported and should be done at the server level. This patch is partly motiviated by the fact that at the usability testing, it frequently came up that users went to "access rules" when trying to configure their site settings.
* - Patch #240387 by matt2000 et al: move 'content types' to 'site building' ↵Dries Buytaert2008-04-06
| | | | per the UMN usability study results.
* - Patch #234785 by Rowanw, yoroy, flobruit, et al: usability: improve ↵Dries Buytaert2008-04-02
| | | | visibility of the 'more help' link by adding an icon.
* - Patch #234403 by Gabor, Bevan and me: drupal_mail_send() had problems with ↵Dries Buytaert2008-04-02
| | | | linebreaks headers.
* - Patch #218403 by Gabor, catch, Arancaytar, keith, doug, et al: duplicate ↵Dries Buytaert2008-04-02
| | | | entry errors in search idexer due to collation issues.
* - Patch #241629 by solotandem: the cron.php query left an extra row in the ↵Dries Buytaert2008-04-02
| | | | watchdog table due to a off-by-one error.
* - Patch #241369 by kkaefer: code style improvements for easier patching later.Dries Buytaert2008-04-01
|
* - Patch #241021 by keith.smith: we forgot to remove a reference to the ↵Dries Buytaert2008-04-01
| | | | 'story' node type. It was renamed to 'article'.
* - Patch #238528 by misamuelson, approved by Stefan: disabled menu items ↵Dries Buytaert2008-04-01
| | | | should not be opaque for usability.
* - Patch #201876 by gk, approved by Stfan N: make drag and drop color stand ↵Dries Buytaert2008-04-01
| | | | out a bit more
* - Oops, I forgot to add this file to CVS when I committed the secure ↵Dries Buytaert2008-04-01
| | | | password hashing patch last night. Mea culpa.
* - Patch #29706 by pwolanin, solardiz, et al: more secure password hashing.Dries Buytaert2008-03-31
| | | | | | | | | | | | | | | | | | | This is a big and important patch for Drupal's security. We are switching to much stronger password hashes that are also compatible with the Portable PHP password hashing framework. The new password hashes defeat a number of attacks, including: - The ability to try candidate passwords against multiple hashes at once. - The ability to use pre-hashed lists of candidate passwords. - The ability to determine whether two users have the same (or different) password without actually having to guess one of the passwords. Also implemented a pluggable password hashing API (similar to how an alternate cache mechanism can be used) to allow developers to readily substitute an alternative hashing and authentication scheme. Thanks all!
* - Patch #238564 by scor: missing t() functions in the operations parameter ↵Dries Buytaert2008-03-31
| | | | of watchdog().
* - Patch #239958 by Steve Dondley: make the explicit cache clearing ↵Dries Buytaert2008-03-31
| | | | functionality reload the theme's .info file. (We're back from a vacation in the French Alpes, BTW! Time to catch up with patches.)
* - Patch #239196 by jvandyk: fix negative percentage on search status page.Dries Buytaert2008-03-27
|
* - Patch #234699 by hass: the active CSS class was not always added for the ↵Dries Buytaert2008-03-25
| | | | active menu item.
* - Patch #223175 by cwgordon07: administers should be able to send as many ↵Dries Buytaert2008-03-25
| | | | contacts as they want.
* - Ported a missing Drupal 6.1 security fix.Dries Buytaert2008-03-23
|
* - Patch #237191 by birdmanx35, keith.smith et al: improve description of ↵Dries Buytaert2008-03-23
| | | | color module.
* - Patch #237717 by hass: missing t() function.Dries Buytaert2008-03-23
|
* - Patch #218803 by Senpai: added minor clarification to the ↵Dries Buytaert2008-03-21
| | | | default.settings.php file.
* - Patch #235821 by kbahey and pwolanin: include upgrade path for cron ↵Dries Buytaert2008-03-21
| | | | changes, improved security of key.
* - Patch #232037 by pwolanin and flobruit: block_list() renders all blocks ↵Dries Buytaert2008-03-21
| | | | even on 404. Refactored the code a bit so ithere is a split between loading and rendering of blocks. By doing so, we are no longer forced to render _all_ blocks if we know they won't be shown. There is more room for improvement here, I believe, but this is an incremental improvement.
* - Patch #220827 by Arancaytar et al: menu system phpdoc improvements.Dries Buytaert2008-03-21
|
* - Patch #218513 by Pancho: Doxygen formatting fixes.Dries Buytaert2008-03-19
|
* - Patch #226881 by boydjd: fixed coding style issues.Dries Buytaert2008-03-19
|
* - Patch #226501 by webchick: permission descriptions were used incorrectly ↵Dries Buytaert2008-03-19
| | | | at admin/user/user.
* - Patch #222578 by pwolanin: alter drupal_to_js() to use json_encode().Dries Buytaert2008-03-17
|
* - Patch #52910 by kbahey, keith.smith, Susurrus, et al: restict access to ↵Dries Buytaert2008-03-17
| | | | cron.php.
* - Patch #226555 by jvandyk, vladimir, rok, et al: remove E_NOTICE.Dries Buytaert2008-03-15
|
* - Patch #214271 by recidive: improved schema identation.Dries Buytaert2008-03-15
|
* - Patch #234403 by alienbrain: drupal_mail_send() should use CRLFs instead ↵Dries Buytaert2008-03-15
| | | | of LFs in e-mail headers.
* - Patch #117748 by pwolanin: made account creation work again.Dries Buytaert2008-03-15
|
* - Patch #234065 by David_Rothstein: added missing period.Dries Buytaert2008-03-14
|
* - Patch #231587 by pwolanin et al: fixed scalability issue in the menu system.Dries Buytaert2008-03-14
|