Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | #64967 follow-up by drewish: Replace ereg with preg in file_scan_directory(). | Angie Byron | 2008-09-20 |
| | |||
* | #108979 by ewhipple, catch, and sun: Order permissions consistently, keep ↵ | Angie Byron | 2008-09-17 |
| | | | | node type related permissions together. | ||
* | - Patch #305645 by pwolanin: ['REQUEST_TIME'] -> REQUEST_TIME. Improved ↵ | Dries Buytaert | 2008-09-17 |
| | | | | developer experience. | ||
* | - Patch #245544 by Dave Reid, oadaeh, drupalgeek: the admin_tasks variable ↵ | Dries Buytaert | 2008-09-16 |
| | | | | is initialized twice. | ||
* | #275092 follow-up by Damien Tournoud: Restoring meta tag generator and ↵ | Angie Byron | 2008-09-15 |
| | | | | fixing failing test. | ||
* | #275092 follow-up by chx: Fix admin blocks page to work with secondary ↵ | Angie Byron | 2008-09-14 |
| | | | | themes + test so we don't break it again. | ||
* | - Patch #302763 by Dave Reid, Rob Loach: replace time() by ['REQUEST_TIME'] ↵ | Dries Buytaert | 2008-09-06 |
| | | | | as per Rasmus' suggestion. Removed drupal_referrer() for consistency. | ||
* | - Patch #261859 by rse, Damien Tournoud: make the trigger module work on ↵ | Dries Buytaert | 2008-09-05 |
| | | | | PostgreSQL. | ||
* | #272883 by hctom and lilou: Fix wrong usage of watchdog severity. | Angie Byron | 2008-09-02 |
| | |||
* | - Patch #276018 by mfb: extend the lifetime of temporary files. | Dries Buytaert | 2008-08-30 |
| | |||
* | - Patch #225450 by Crell, chx, bjaspan, catch, swentel, recidive et al: next ↵ | Dries Buytaert | 2008-08-21 |
| | | | | generation database layer for Drupal 7. | ||
* | - Patch #287877 by dmitrig01: rename drupal_rebuild_code_registry() to ↵ | Dries Buytaert | 2008-08-02 |
| | | | | registry_rebuild() for consistency. | ||
* | - Patch #229129 by dmitrig01: clean up system modules page. | Dries Buytaert | 2008-07-23 |
| | |||
* | - Patch #245001 by kkaefer et al: unify #process callback naming. | Dries Buytaert | 2008-07-18 |
| | |||
* | - Patch #252013 by Eaton, pwolanin, Susurrus et al: drupal_render() now ↵ | Dries Buytaert | 2008-07-16 |
| | | | | printes #markup, not #value. | ||
* | - Patch #248205 by catch et al: increased PostgreSQL requirement to version 8.1. | Dries Buytaert | 2008-07-14 |
| | |||
* | - Patch #275801 by Damien Tournoud and Gribnif: fixed performance issue due ↵ | Dries Buytaert | 2008-07-14 |
| | | | | to typo. | ||
* | - Patch #270508 by paul.levvik and pwolanin: usability improvement: image ↵ | Dries Buytaert | 2008-07-08 |
| | | | | toolkits should not have to be copied. | ||
* | - Patch #277073 by threexk: improve consistency of offline vs off-line and ↵ | Dries Buytaert | 2008-07-01 |
| | | | | online vs on-line. | ||
* | - Patch #275092 by kbahey, greggles and Arancaytar: emit X-Generator and ↵ | Dries Buytaert | 2008-06-28 |
| | | | | meta-generator tags. | ||
* | - Patch #270917 by catch, Bojhan, et al: renamed 'primary links' and ↵ | Dries Buytaert | 2008-06-25 |
| | | | | 'secondary links' to 'main menu' and 'secondary menu' respectively. Based on usability study conducted with the help of Bojhan. | ||
* | - Patch #248436 by catch: fixed some bugs in the statistics module, wrote ↵ | Dries Buytaert | 2008-05-07 |
| | | | | some tests, and made some minor usability improvments along the way. That is _exactly_ how we like it. | ||
* | - Patch #221964 by chx, dopry, webernet, moshe, webchick, justinrandall, ↵ | Dries Buytaert | 2008-05-06 |
| | | | | | | | | | | | flobruit et al. Can you say 'registry'? Drupal now maintains an internal registry of all functions or classes in the system, allowing it to lazy-load code files as needed (reducing the amount of code that must be parsed on each request). The list of included files is cached per menu callback for subsequent loading by the menu router. This way, a given page request will have all the code it needs but little else, minimizing time spent parsing unneeded code. | ||
* | - Patch #227830 by JohnAlbin: link attributes added to l() incorrectly. | Dries Buytaert | 2008-05-02 |
| | |||
* | - Patch #249546 by pwolanin: rip menu access inheritance -- was already ↵ | Dries Buytaert | 2008-04-23 |
| | | | | committed to D6. | ||
* | - Patch #245504 by catch, David_Rothstein, Freso, et al: removed the ↵ | Dries Buytaert | 2008-04-16 |
| | | | | throttle module from Drupal core. | ||
* | - Patch #245115 by kkaefer, John Morahan, JohnAlbin et al: after a long ↵ | Dries Buytaert | 2008-04-14 |
| | | | | discussion we've decided to make the concatenation operator consistent with the other operators. | ||
* | - Patch #216072 by recidive, David Rothstein, ptalindstrom et al: switched ↵ | Dries Buytaert | 2008-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 #228594 by catch et al: removed access rule functionality from core. | Dries Buytaert | 2008-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 #241369 by kkaefer: code style improvements for easier patching later. | Dries Buytaert | 2008-04-01 |
| | |||
* | - Patch #231437 by catch, Rob, freso et al: remove ping module from core. | Dries Buytaert | 2008-03-11 |
| | |||
* | - Patch #30984 by webchick, keith.smith, kkaefer, Crell et al: provide ↵ | Dries Buytaert | 2008-02-20 |
| | | | | descriptions for permissions on the permission administration page. | ||
* | - Patch #221384 by webernet: update core compatibility to Drupal 7. | Dries Buytaert | 2008-02-18 |
| | |||
* | - Patch #221072 by Pancho: fixed access control check on the theme ↵ | Dries Buytaert | 2008-02-14 |
| | | | | configuration page. | ||
* | - Patch #219366 by pwolanin: cannot add external links to admin interface. | Dries Buytaert | 2008-02-12 |
| | |||
* | - Patch #220329 by catch: bumped the minimum MySQL requirement for Drupal 7 ↵ | Dries Buytaert | 2008-02-12 |
| | | | | to MySQL 5. | ||
* | - Patch #220260 by webchick: proper version constant for D7. Oh yeah. :) | Dries Buytaert | 2008-02-12 |
| | |||
* | - Patch #214513 by Lynn: missing break-statement in system_send_email_action. | Dries Buytaert | 2008-02-06 |
| | |||
* | #215858 by pwolanin: localized menu options were saved into the database, ↵ | Gábor Hojtsy | 2008-02-04 |
| | | | | avoid this by using different variable names / array keys | ||
* | Back to 6.0-dev | Gábor Hojtsy | 2008-01-30 |
| | |||
* | Preparing for RC3 | Gábor Hojtsy | 2008-01-30 |
| | |||
* | #105405 by chx, Pancho: (regression) remove web server version checking; it ↵ | Gábor Hojtsy | 2008-01-30 |
| | | | | is not in Drupal 5; Apache 1.3 is surpassed for a long time now | ||
* | #210219 by htalvitie, yched: initialize block caching properties properly on ↵ | Gábor Hojtsy | 2008-01-28 |
| | | | | install (and update bugos RC2 sites as well) | ||
* | #204411 by catch: elevate MySQL requirements to 4.1.1 (the first production ↵ | Gábor Hojtsy | 2008-01-24 |
| | | | | MySQL 4.1.x was 4.1.5 anyway) | ||
* | Outdated use of watchdog() noticed while creating translation templates | Gábor Hojtsy | 2008-01-22 |
| | |||
* | Back to 6.0-dev | Gábor Hojtsy | 2008-01-10 |
| | |||
* | Drupal 6 RC2 | Gábor Hojtsy | 2008-01-10 |
| | |||
* | #207569 by ScoutBaker (minor code style): clean up @see usage in phpdoc blocks | Gábor Hojtsy | 2008-01-08 |
| | |||
* | #197720 by nedjo, scor, keith.smith, catch: inform installing users about ↵ | Gábor Hojtsy | 2008-01-04 |
| | | | | PHP memory requirements of Drupal 6 | ||
* | #198856 by hswong3i: Fix some incorrect use of %s for table name escaping, ↵ | Gábor Hojtsy | 2008-01-04 |
| | | | | implement better security checks |