summaryrefslogtreecommitdiff
path: root/modules/system/system.install
Commit message (Collapse)AuthorAge
...
* - Patch #257910 by Damien Tournoud: use primary key instead.Dries Buytaert2008-11-02
|
* - Patch #257910 by douggreen et al: Performance Issue during Indexing - ↵Dries Buytaert2008-11-02
| | | | search_dataset.sid_type unique key should be an Index.
* - Patch #298600 by chx, justinrandell, Damien, et al: make module_implements ↵Dries Buytaert2008-10-31
| | | | work regardless of bootstrap phase.
* - Patch #296321 by pwolanin, swentel: link to cron.php broken when clean ↵Dries Buytaert2008-10-13
| | | | URLs are disabled.
* #282405 by Damien Tournoud, lilou, Dave Reid: Enforce coding standard on elseif.Angie Byron2008-10-12
|
* #305566 by agentrickard and moshe weitzman: Split 'bypass node access' from ↵Angie Byron2008-10-11
| | | | 'administer nodes'.
* - Patch #312306 by Jaza: no activation e-mail for user 1.Dries Buytaert2008-09-27
|
* #259623 by dopry and Damien Tournoud: Convert includes/requires to use ↵Angie Byron2008-09-20
| | | | absolute paths.
* - Patch #309488 by kbahey: correct capitalization of TRUE and FALSE.Dries Buytaert2008-09-19
|
* - Patch #302149 by pwolanin: fixed confusing/duplicate use of names in menu ↵Dries Buytaert2008-09-18
| | | | admin.
* - Patch #305645 by pwolanin: ['REQUEST_TIME'] -> REQUEST_TIME. Improved ↵Dries Buytaert2008-09-17
| | | | developer experience.
* #308434 by drewish, dopry, quicksketch, aaron, jhedstrom, and friends: ↵Angie Byron2008-09-15
| | | | Massive file.inc cleanup aaaaaand... tests! Yay! :D
* - Patch #302763 by Dave Reid, Rob Loach: replace time() by ['REQUEST_TIME'] ↵Dries Buytaert2008-09-06
| | | | as per Rasmus' suggestion. Removed drupal_referrer() for consistency.
* - Patch #299292 by keith.smith: head installation was broken.Dries Buytaert2008-08-30
|
* - Patch #227486 by profix898: increase length of database fields for menu items.Dries Buytaert2008-08-23
|
* - Patch #225450 by Crell, chx, bjaspan, catch, swentel, recidive et al: next ↵Dries Buytaert2008-08-21
| | | | generation database layer for Drupal 7.
* - Patch #221230 by Heine: convert requirement error on update to requirement ↵Dries Buytaert2008-08-14
| | | | warning.
* - Patch #287877 by dmitrig01: rename drupal_rebuild_code_registry() to ↵Dries Buytaert2008-08-02
| | | | registry_rebuild() for consistency.
* - Patch #257009 by bjaspan, mustafu, Freso, Dries et al: fixed simpletest ↵Dries Buytaert2008-08-02
| | | | exceptions on PostgreSQL.
* - Patch #277073 by threexk: improve consistency of offline vs off-line and ↵Dries Buytaert2008-07-01
| | | | online vs on-line.
* - Patch #270917 by catch, Bojhan, et al: renamed 'primary links' and ↵Dries Buytaert2008-06-25
| | | | 'secondary links' to 'main menu' and 'secondary menu' respectively. Based on usability study conducted with the help of Bojhan.
* - Patch #193076 by quicksketch, dmitrig01 and paul.lovvik: drag and drop ↵Dries Buytaert2008-05-15
| | | | support for poll module.
* - Patch #73874 by pwolanin: normalize the permissions table and wrote ↵Dries Buytaert2008-05-07
| | | | simpletests for the (new) permission handling. At last.
* - Patch #221964 by chx, dopry, webernet, moshe, webchick, justinrandall, ↵Dries Buytaert2008-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 #244942 by Freso and pwoladin: removed outdated string from ↵Dries Buytaert2008-05-05
| | | | documentation.
* - 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 #244942 by pwolanin: fixed outdated function name in schema description.Dries Buytaert2008-04-15
|
* - 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 #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 #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 #235821 by kbahey and pwolanin: include upgrade path for cron ↵Dries Buytaert2008-03-21
| | | | changes, improved security of key.
* - Patch #52910 by kbahey, keith.smith, Susurrus, et al: restict access to ↵Dries Buytaert2008-03-17
| | | | cron.php.
* - Patch #214271 by recidive: improved schema identation.Dries Buytaert2008-03-15
|
* - Patch #234065 by David_Rothstein: added missing period.Dries Buytaert2008-03-14
|
* - Patch #216813 by pwolanin et al: fixed upgrade path for primary links and ↵Dries Buytaert2008-02-23
| | | | navigation.
* - Patch #30984 by webchick, keith.smith, kkaefer, Crell et al: provide ↵Dries Buytaert2008-02-20
| | | | descriptions for permissions on the permission administration page.
* #105405 by chx, Pancho: (regression) remove web server version checking; it ↵Gábor Hojtsy2008-01-30
| | | | is not in Drupal 5; Apache 1.3 is surpassed for a long time now
* #210219 follow by myself: update_sql() does not support placeholders, so we ↵Gábor Hojtsy2008-01-29
| | | | should compose our own SQL ourselfs
* #210219 by htalvitie, yched: initialize block caching properties properly on ↵Gábor Hojtsy2008-01-28
| | | | install (and update bugos RC2 sites as well)
* Three remaining instances of t() use in system module update code removed.Gábor Hojtsy2008-01-24
|
* #209409 by Heine, webernet, dww: more accurate register globals value checkingGábor Hojtsy2008-01-21
|
* #211353 follow up by JirkaRybka: ensure that on upgrades, if the ↵Gábor Hojtsy2008-01-21
| | | | file_directory_path was not set, set it to the Drupal 5 default
* #211359 by chx: make dead menu items disappear on a Drupal 6 upgradeGábor Hojtsy2008-01-20
|
* #208938 by bjaspan, scor: use schema PI for index updates instead of ↵Gábor Hojtsy2008-01-16
| | | | database dependent code
* #200674 by scor, catch: update.php should inform users if their memory limit ↵Gábor Hojtsy2008-01-16
| | | | will possibly result in a WSOD
* Drupal 6 RC2Gábor Hojtsy2008-01-10
|
* #208542 by KarenS, webernet: save old actions table when upgrading from ↵Gábor Hojtsy2008-01-10
| | | | Drupal 5 with a previous actions install
* #153998 by David_Rothstein and myself: clean up permissions in book, blog, ↵Gábor Hojtsy2008-01-09
| | | | blogapi, forum and locale modules
* #197720 follow up by myself: cleaning up the memory_limit requirement check, ↵Gábor Hojtsy2008-01-08
| | | | use dollar t