Commit Graph

270 Commits (11074d9120ef1e4a2d9e7a78486d2df0f1d81c32)

Author SHA1 Message Date
Angie Byron 89b0570d70 #305566 by agentrickard and moshe weitzman: Split 'bypass node access' from 'administer nodes'. 2008-10-11 18:29:20 +00:00
Dries Buytaert 4cbb7b7512 - Patch #312306 by Jaza: no activation e-mail for user 1. 2008-09-27 20:16:17 +00:00
Angie Byron a3bb66e4e8 #259623 by dopry and Damien Tournoud: Convert includes/requires to use absolute paths. 2008-09-20 20:22:25 +00:00
Dries Buytaert 8fc581d4d7 - Patch #309488 by kbahey: correct capitalization of TRUE and FALSE. 2008-09-19 07:53:59 +00:00
Dries Buytaert 9020f77388 - Patch #302149 by pwolanin: fixed confusing/duplicate use of names in menu admin. 2008-09-18 10:44:19 +00:00
Dries Buytaert 7f29b14277 - Patch #305645 by pwolanin: ['REQUEST_TIME'] -> REQUEST_TIME. Improved developer experience. 2008-09-17 07:11:59 +00:00
Angie Byron e7ac5c58fd #308434 by drewish, dopry, quicksketch, aaron, jhedstrom, and friends: Massive file.inc cleanup aaaaaand... tests! Yay! :D 2008-09-15 09:28:50 +00:00
Dries Buytaert e5b0e5f76c - Patch #302763 by Dave Reid, Rob Loach: replace time() by ['REQUEST_TIME'] as per Rasmus' suggestion. Removed drupal_referrer() for consistency. 2008-09-06 08:36:22 +00:00
Dries Buytaert 3ccf6d89e4 - Patch #299292 by keith.smith: head installation was broken. 2008-08-30 10:03:57 +00:00
Dries Buytaert 580feef5e0 - Patch #227486 by profix898: increase length of database fields for menu items. 2008-08-23 08:15:37 +00:00
Dries Buytaert 69e6f411a9 - Patch #225450 by Crell, chx, bjaspan, catch, swentel, recidive et al: next generation database layer for Drupal 7. 2008-08-21 19:36:39 +00:00
Dries Buytaert 77375441e5 - Patch #221230 by Heine: convert requirement error on update to requirement warning. 2008-08-14 12:59:05 +00:00
Dries Buytaert 6c1068e48d - Patch #287877 by dmitrig01: rename drupal_rebuild_code_registry() to registry_rebuild() for consistency. 2008-08-02 19:01:02 +00:00
Dries Buytaert a859eb3668 - Patch #257009 by bjaspan, mustafu, Freso, Dries et al: fixed simpletest exceptions on PostgreSQL. 2008-08-02 18:44:36 +00:00
Dries Buytaert bb232c728a - Patch #277073 by threexk: improve consistency of offline vs off-line and online vs on-line. 2008-07-01 20:36:40 +00:00
Dries Buytaert 5299b92689 - Patch #270917 by catch, Bojhan, et al: renamed 'primary links' and 'secondary links' to 'main menu' and 'secondary menu' respectively. Based on usability study conducted with the help of Bojhan. 2008-06-25 09:12:25 +00:00
Dries Buytaert 75a777a3ea - Patch #193076 by quicksketch, dmitrig01 and paul.lovvik: drag and drop support for poll module. 2008-05-15 20:56:48 +00:00
Dries Buytaert b9f1018ea4 - Patch #73874 by pwolanin: normalize the permissions table and wrote simpletests for the (new) permission handling. At last. 2008-05-07 19:34:24 +00:00
Dries Buytaert 2e18cb8924 - Patch #221964 by chx, dopry, webernet, moshe, webchick, justinrandall, 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.
2008-05-06 12:18:54 +00:00
Dries Buytaert 9c528c137f - Patch #244942 by Freso and pwoladin: removed outdated string from documentation. 2008-05-05 21:36:47 +00:00
Dries Buytaert 76151a8bc9 - Patch #245504 by catch, David_Rothstein, Freso, et al: removed the throttle module from Drupal core. 2008-04-16 11:35:52 +00:00
Dries Buytaert 46546ef478 - Patch #175841 by catch et al: remove comment controls for users. Yowza. 2008-04-16 11:26:29 +00:00
Dries Buytaert 7ea831c54f - Patch #244942 by pwolanin: fixed outdated function name in schema description. 2008-04-15 07:44:54 +00:00
Dries Buytaert 56d2664a90 - Patch #245115 by kkaefer, John Morahan, JohnAlbin et al: after a long discussion we've decided to make the concatenation operator consistent with the other operators. 2008-04-14 17:48:46 +00:00
Dries Buytaert 79b016d915 - Patch #216072 by recidive, David Rothstein, ptalindstrom et al: switched 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.
2008-04-10 10:28:23 +00:00
Dries Buytaert 08aa23227e - Patch #228594 by catch et al: removed access rule functionality from core.
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.
2008-04-08 22:50:55 +00:00
Dries Buytaert 013774ba79 - Patch #235821 by kbahey and pwolanin: include upgrade path for cron changes, improved security of key. 2008-03-21 08:52:25 +00:00
Dries Buytaert 45097b78b7 - Patch #52910 by kbahey, keith.smith, Susurrus, et al: restict access to cron.php. 2008-03-17 16:53:58 +00:00
Dries Buytaert f5d4287cd5 - Patch #214271 by recidive: improved schema identation. 2008-03-15 12:31:29 +00:00
Dries Buytaert 39f1a6be73 - Patch #234065 by David_Rothstein: added missing period. 2008-03-14 08:54:31 +00:00
Dries Buytaert a730d23d14 - Patch #216813 by pwolanin et al: fixed upgrade path for primary links and navigation. 2008-02-23 08:13:09 +00:00
Dries Buytaert 584f3e886a - Patch #30984 by webchick, keith.smith, kkaefer, Crell et al: provide descriptions for permissions on the permission administration page. 2008-02-20 13:46:43 +00:00
Gábor Hojtsy 7f2f0072f9 #105405 by chx, Pancho: (regression) remove web server version checking; it is not in Drupal 5; Apache 1.3 is surpassed for a long time now 2008-01-30 20:30:35 +00:00
Gábor Hojtsy 18575200c6 #210219 follow by myself: update_sql() does not support placeholders, so we should compose our own SQL ourselfs 2008-01-29 10:50:15 +00:00
Gábor Hojtsy 4bdf24ea52 #210219 by htalvitie, yched: initialize block caching properties properly on install (and update bugos RC2 sites as well) 2008-01-28 19:56:27 +00:00
Gábor Hojtsy 04daca2394 Three remaining instances of t() use in system module update code removed. 2008-01-24 10:41:17 +00:00
Gábor Hojtsy ff1c3902b9 #209409 by Heine, webernet, dww: more accurate register globals value checking 2008-01-21 20:04:35 +00:00
Gábor Hojtsy 1a0e5b534c #211353 follow up by JirkaRybka: ensure that on upgrades, if the file_directory_path was not set, set it to the Drupal 5 default 2008-01-21 12:01:24 +00:00
Gábor Hojtsy c3949c505c #211359 by chx: make dead menu items disappear on a Drupal 6 upgrade 2008-01-20 12:47:32 +00:00
Gábor Hojtsy 7f85bc5bc4 #208938 by bjaspan, scor: use schema PI for index updates instead of database dependent code 2008-01-16 21:45:30 +00:00
Gábor Hojtsy 44d71e1eef #200674 by scor, catch: update.php should inform users if their memory limit will possibly result in a WSOD 2008-01-16 10:37:43 +00:00
Gábor Hojtsy 78bc68f304 Drupal 6 RC2 2008-01-10 22:47:17 +00:00
Gábor Hojtsy b3c7ff77ff #208542 by KarenS, webernet: save old actions table when upgrading from Drupal 5 with a previous actions install 2008-01-10 22:04:32 +00:00
Gábor Hojtsy 33f455d2df #153998 by David_Rothstein and myself: clean up permissions in book, blog, blogapi, forum and locale modules 2008-01-09 09:51:35 +00:00
Gábor Hojtsy 9b1172f26f #197720 follow up by myself: cleaning up the memory_limit requirement check, use dollar t 2008-01-08 21:22:28 +00:00
Gábor Hojtsy 0ab0b1d65f #164532 follow up by pwolanin, David Strauss, catch and myself, testing also by hswong3i: some indexes added before Drupal 6 RC1 were too unique, and our code did not back them, so we should not add those indexes 2008-01-08 07:46:41 +00:00
Gábor Hojtsy 6d191fb5b5 #197720 follow up by keith.smith, scor: include php.ini path in memory limit messages 2008-01-07 15:31:50 +00:00
Gábor Hojtsy b5e64f5a6e #197720 by nedjo, scor, keith.smith, catch: inform installing users about PHP memory requirements of Drupal 6 2008-01-04 17:19:04 +00:00
Gábor Hojtsy 641fdad0b5 #204420 follow up by webernet: fix bad permission check introduced for update module message 2007-12-31 17:20:20 +00:00
Dries Buytaert 178c28535b - Patch #204900 by webernet: code style fixes. Likely my last patch of the year. Fiew. Thanks all, and see you on the other side. :) 2007-12-31 08:54:37 +00:00