Commit Graph

70 Commits (26024e03c895c7f590dcd076ebd76f8e95db3895)

Author SHA1 Message Date
Angie Byron a9762cd3bf #201415 by sun: Add a permission to access site in maintenance mode. 2009-08-22 18:24:14 +00:00
Dries Buytaert 4c028a19fb - Patch #331611 by sun, joshmiller, TheRec, Rob Loach, Damien Tournoud: add a poormanscron-like feature to core. 2009-08-22 16:01:10 +00:00
Dries Buytaert bb54be48b9 - Patch rollback of #549432: tests didn't actually ran successfully. 2009-08-22 09:44:56 +00:00
Dries Buytaert bee1240231 - Patch #549432 by Gábor Hojtsy: moving 'IP blocking' to 'People and permissions'. 2009-08-22 09:23:24 +00:00
Angie Byron 34a8a369aa #367595 by plach, catch, sun, yched, et al: Added support for translatable fields to Field API. 2009-08-22 00:58:55 +00:00
Dries Buytaert 40003c8307 - Patch #113614 by eaton, fago, et al: add centralized token/placeholder subsituation to core. 2009-08-19 20:19:37 +00:00
Angie Byron b41323642b #517814 by jmstacey, justinrandell, pwolanin, drewish, Jody Lynn, aaron, dopry, and c960657: Converted File API to stream wrappers, for enhanced private/public file handling, and the ability to reference other storage mechanisms such as s3:// and flicker://. 2009-08-17 19:14:42 +00:00
Angie Byron 049a8896f5 #545952 by yoroy and Gábor Hojtsy: move modules to config/modules. 2009-08-12 23:51:19 +00:00
Angie Byron e758e30450 #533584 by chx, dww, and Nick Lewis: Allow version-level dependency support to work with beta, rc, etc. 2009-08-05 16:16:41 +00:00
Dries Buytaert 9f44fd1b86 - Patch #536440 by Gábor Hojtsy: the attached patch moves the Structure >> Themes section to the top level Appearance item as outlined in the D7UX IA. 2009-07-31 11:20:43 +00:00
Dries Buytaert 1cb77e4622 - Patch #535990 by catch: removed a silly test. 2009-07-30 21:21:37 +00:00
Dries Buytaert 12d6d6662e - Patch #211747 by chx, alex_b, dww: allow specifying version information as part of module dependencies. 2009-07-28 19:06:16 +00:00
Angie Byron 708f3b970f #292565 follow-up by John Morahan: Restore ability to set 'user' as the 403/404 page. 2009-07-23 20:58:26 +00:00
Dries Buytaert d24d954479 - Patch #521474 by bangpound, JuliaKM et al: rename admin/site-building to admin/structure. 2009-07-20 18:51:36 +00:00
Dries Buytaert 44740785fe - Patch #518750 by Damien Tournoud: rethink system settings form. 2009-07-16 10:44:21 +00:00
Angie Byron 735e1d904f #500866 by boombatower: Remove t() from getInfo in tests. 2009-07-13 21:51:42 +00:00
Dries Buytaert fb125851a3 - Patch #306027 by agentrickard, catch, dereine, Dave Reid, drewish, et al: automatically clean the {role_permission} table when modules are uninstalled. 2009-07-01 08:39:56 +00:00
Angie Byron 4dafb3953c #482346 by Berdir: Move module installation logic to module_enable() to prevent errors upon enabling modules. 2009-06-28 03:56:43 +00:00
Angie Byron 27ffb437a2 #504016 by catch: Remove faulty assertion that makes assumptions about default installed modules. 2009-06-27 17:29:38 +00:00
Dries Buytaert 77c643ec17 - Patch #501466 by catch: move comment administration to a tab. 2009-06-27 10:13:28 +00:00
Dries Buytaert 07b6c7bcd8 - Fixed a merge problem. 2009-06-13 21:08:31 +00:00
Dries Buytaert bc50341c5c - Fixed a merge problem. 2009-06-13 21:07:53 +00:00
Dries Buytaert daedf71b7c - Patch #391412 by JamesAn et al: move contact form, post, and user settings below Site configuration. 2009-06-13 20:40:09 +00:00
Dries Buytaert 3d64cb5eca - Patch #372743 by bjaspan, yched, KarenS, catch et al: node body and teasers as fields. Oh, my. 2009-06-12 08:39:40 +00:00
Dries Buytaert 0f4060f377 - Patch #472642 by stella, agentrickard: remove 'implementation of' nominalizations from Docblocks. 2009-05-27 18:34:03 +00:00
Angie Byron 827e278489 #296693 by Damien Tournoud, boombatower, sun, and Xano: Hide parent administrative menu items when user has no access to any of their children. 2009-05-27 02:21:53 +00:00
Dries Buytaert a24a6c2bba - Patch #471070 by stella: millions of code style fixes. 2009-05-24 17:39:35 +00:00
Dries Buytaert 196da1b876 - Patch #394572 by Berdir: converted system module to the new database abstraction layer. 2009-05-16 18:34:23 +00:00
Dries Buytaert a07e17a92c - Patch #210876 by deekayen: log enabling and disabling of modules, and wrote a handy assertLogMessage() function to assert watchdog messages. 2009-05-12 18:08:43 +00:00
Dries Buytaert 4ef77a590c - Patch #391340 by chx, dww, neclimdul, Crell, alex_b, et al: job queue API.
The queue system allows placing items in a queue and processing them later.  The system tries to ensure that only one consumer can process an item.

Before a queue can be used it needs to be created by DrupalQueueInterface::createQueue().

Items can be added to the queue by passing an arbitrary data object to DrupalQueueInterface::createItem().

To process an item, call DrupalQueueInterface::claimItem() and specify how long you want to have a lease for working on that item. When finished processing, the item needs to be deleted by calling DrupalQueueInterface::deleteItem(). If the consumer dies, the item will be made available again by the DrapalQueueInterface implementation once the lease expires. Another consumer will then be able to receive it when calling DrupalQueueInterface::claimItem().

The $item object used by the DrupalQueueInterface can contain arbitrary metadata depending on the implementation. Systems using the interface should only rely on the data property which will contain the information passed to DrupalQueueInterface::createItem(). The full queue item returned by DrupalQueueInterface::createItem() needs to be passed to DrupalQueueInterface::deleteItem() once processing is completed.

While the queue system makes a best effort to preserve order in messages, due to the pluggable nature of the queue, there is no guarantee that items will be delivered on claim in the order they were sent. For example, some implementations like beanstalkd or others with distributed back-ends like Amazon SQS will be managing jobs for a large set of producers and consumers where a strict FIFO ordering will likely not be preserved.

The system also makes no guarantees about a task only being executed once: callers that have non-idempotent tasks either need to live with the possiblity of the task being invoked multiple times in cases where a claim lease expires, or need to implement their own transactions to make their tasks idempotent.
2009-05-06 10:37:28 +00:00
Angie Byron f40532da76 #376129 by boombatower, Damien Tournoud, and chx: Change getInfo() to a static method to reduce memory footprint of SimpleTest. 2009-03-31 01:49:55 +00:00
Angie Byron 6afc39c2e4 #135976 by Dave Reid: Move Administration Theme setting to the themes page where it is findable (with tests). 2009-02-11 05:33:18 +00:00
Angie Byron 250e486bb0 #363687 by chx: Simplify DBTNG codeflow. 2009-01-25 12:19:32 +00:00
Dries Buytaert 60c06921ce - Patch #291026 by Dave Reid et al: further (usability) improvements to the E_NOTICE handling. 2009-01-21 14:22:33 +00:00
Dries Buytaert a10731cedf - Patch #320451 by chx, Damien Tournoud: improved Drupal's module dependency system. This helps with fields in core. Comes with tests\! 2009-01-14 12:18:37 +00:00
Dries Buytaert bdbd0dffe5 - Patch #266246 by David Strauss: added smart defaults for system_settings_form(). 2009-01-11 21:19:19 +00:00
Dries Buytaert 86aa636c8b - Patch #353207 by CitizenKane and drewish: cleaned up the FILE_STATUS_TEMPORARY field. 2009-01-02 21:45:11 +00:00
Dries Buytaert 92a8adea65 - Patch #352470 by scor: fixed typos and grammar in comments. 2008-12-30 16:43:20 +00:00
Dries Buytaert 53b83cdcb9 - Patch #330633 by drewish: temporary file clean-up _and_ unit tests. Oh yeah. 2008-12-28 19:11:31 +00:00
Dries Buytaert 574a2e47ee - Patch #345866 by alexanderpas, justinrandell, Dave Reid: remove from hook_block(). 2008-12-16 23:57:33 +00:00
Dries Buytaert c50651f7fb - Patch #340557 by Dave Reid: use static caching in drupal_is_front_page(). 2008-12-09 07:16:10 +00:00
Dries Buytaert 55382d04a7 - Patch #318016 by Dave Reid: step one to standardizing type-hinting. 2008-12-08 21:41:54 +00:00
Dries Buytaert 58b0235a72 - Patch #324313 by catch et al: load multiple nodes and terms at once. 2008-12-05 22:18:46 +00:00
Dries Buytaert 74f2efd561 - Patch #314870 by drewish: removed some code that accidentically got committed with api.php and that broke the tests. 2008-11-26 18:56:16 +00:00
Angie Byron 66df602593 #314870 by Rob Loach, drewish, catch, and sun: Add hook API documentation to Drupal core. 2008-11-25 02:37:33 +00:00
Dries Buytaert 5083e13522 - Patch #333143 by justinrandell: cleaning up the Drupal bootstrap code, removing bootstrap flag in system table. 2008-11-24 10:41:40 +00:00
Angie Byron 53f53b6db5 #11077 by mfb, KarenS, macgirvin, and jjkd: Can you say Daylight Savings Time? I bet you didn't think Drupal ever would! :) 2008-11-20 06:56:17 +00:00
Dries Buytaert fa94c66c92 - Patch #328719 by c960657: make the module list tests succeed again. 2008-11-01 21:21:35 +00:00
Dries Buytaert 35c7673cae - Patch #327480 by chx: remove DB specific code from simpletest. 2008-10-31 11:13:31 +00:00
Dries Buytaert f7e61d77e9 - Patch #296321 by pwolanin, swentel: link to cron.php broken when clean URLs are disabled. 2008-10-13 20:29:42 +00:00