Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | - Patch #271515 by JamesAn: corrected PHPdoc. | Dries Buytaert | 2009-05-06 |
| | |||
* | - Patch #391340 by chx, dww, neclimdul, Crell, alex_b, et al: job queue API. | Dries Buytaert | 2009-05-06 |
| | | | | | | | | | | | | | | | | 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. | ||
* | - Patch #329015 by Damien Tournoud: improved error handling of batch API. | Dries Buytaert | 2009-05-03 |
| | |||
* | - Patch #240873 by Gábor Hojtsy, sun: block system clean-ups. Thanks for ↵ | Dries Buytaert | 2009-04-30 |
| | | | | the review sun. | ||
* | - Patch #240873 by Gábor Hojtsy: move custom help settings to blocks. Very ↵ | Dries Buytaert | 2009-04-29 |
| | | | | exciting. | ||
* | #331832 follow-up by jhodgdon: Fix spelling of hook_form_FORM_ID_alter(). | Angie Byron | 2009-04-28 |
| | |||
* | #444402 follow-up by kkaefer: Fix autocomplete, enforce code style for ↵ | Angie Byron | 2009-04-27 |
| | | | | anonymous JS functions. | ||
* | - Patch #445966 by Damien Tournoud: allow theme engine and theme settings form. | Dries Buytaert | 2009-04-27 |
| | |||
* | #359391 by kresimir: Clarify that various caching modes are 'page' caching ↵ | Angie Byron | 2009-04-27 |
| | | | | modes. | ||
* | - Patch #330748 by stBorchert: remove from theme_pager*. | Dries Buytaert | 2009-04-26 |
| | |||
* | #444402 by kkaefer and RobLoach: Enforce coding standards on all core ↵ | Angie Byron | 2009-04-26 |
| | | | | JavaScript. | ||
* | - Patch #368821 by Senpai, sun, JuliaKM: documentation improvements. | Dries Buytaert | 2009-04-26 |
| | |||
* | - Patch #445062 by Arancaytar: check for PHP tokenizer extension to be ↵ | Dries Buytaert | 2009-04-26 |
| | | | | installed. | ||
* | - Patch #383220 by mr.baileys: cron trigger needs an action. | Dries Buytaert | 2009-04-26 |
| | |||
* | - Patch #445070 by Arancaytar: added missing parameter documentation. | Dries Buytaert | 2009-04-26 |
| | |||
* | - Patch #19837 by xmacinfo, j.somers: make 'not verified' togglable as a ↵ | Dries Buytaert | 2009-04-26 |
| | | | | theme setting. | ||
* | - Patch #352880 by dereine, Dave Reid: replace strstre with strpos. | Dries Buytaert | 2009-04-26 |
| | |||
* | #369409 by dropcube: Move block.tpl.php to block.module rather than ↵ | Angie Byron | 2009-04-26 |
| | | | | system.module. | ||
* | - Patch #440826 by brianV: whitespace clean-up. | Dries Buytaert | 2009-04-25 |
| | |||
* | - Patch #147310 by c960657: added tests for private files, fixed a problem ↵ | Dries Buytaert | 2009-04-24 |
| | | | | with private files and minor improvements. | ||
* | - Patch #147310 by c960657 et al: better cache headers for reverse proxies. | Dries Buytaert | 2009-04-22 |
| | |||
* | - Patch #375482 by mfb: avoid PDO exceptions when block module is not enabled. | Dries Buytaert | 2009-04-21 |
| | |||
* | - Patch #423948 by mfb: updated documentation, update functions should ↵ | Dries Buytaert | 2009-04-21 |
| | | | | include schema descriptions. | ||
* | - Patch #439038 by JeremyFrench: fixed typo in CSS file. | Dries Buytaert | 2009-04-20 |
| | |||
* | - Patch #299176 by chx, Crell: added example of hook_query_alter to API ↵ | Dries Buytaert | 2009-04-20 |
| | | | | documentation. | ||
* | - Patch #427296 by taz88ny: move some code from system.module to bloc.module ↵ | Dries Buytaert | 2009-04-20 |
| | | | | where it belongs. | ||
* | Roll-back of #333054; needs more discussion. | Angie Byron | 2009-04-20 |
| | |||
* | - Patch #430342 by kkaefer et al: usability improvement: changed 'site ↵ | Dries Buytaert | 2009-04-19 |
| | | | | maintenance' to 'maintenance mode'. | ||
* | #372563 by cytefx: Rename drupal_set_html_head() to drupal_ADD_html_head() ↵ | Angie Byron | 2009-04-15 |
| | | | | which actually describes what it does. | ||
* | - Patch #394332 by Xano: clean up language around logging and alerts. | Dries Buytaert | 2009-04-13 |
| | |||
* | #323112 by dmitrig01, kkaefer, quicksketch, frando and many many more: Now ↵ | Angie Byron | 2009-04-11 |
| | | | | presenting... Vertical Tabs. Fantastic new UI improvement for node forms and hopefully more in the future. | ||
* | - Patch #424252 by swentel: move block cache settings from system module to ↵ | Dries Buytaert | 2009-04-05 |
| | | | | block module now block module is optional. | ||
* | - Patch #392362 by Xano, Dave Reid: remove clean URL option from the ↵ | Dries Buytaert | 2009-04-04 |
| | | | | installation process -- automatically enable clean URLs when possible, or hide the option when clean URLs cannot be enabled. | ||
* | - Patch #363262 by Dave Reid: adds a lost index to the URL table. | Dries Buytaert | 2009-04-03 |
| | |||
* | - Patch #333054 by c960657: page cache should be case sensitive. | Dries Buytaert | 2009-04-01 |
| | |||
* | #376129 by boombatower, Damien Tournoud, and chx: Change getInfo() to a ↵ | Angie Byron | 2009-03-31 |
| | | | | static method to reduce memory footprint of SimpleTest. | ||
* | #414218 by cha0s: Document hook_update_N()'s ability to use batch API. | Angie Byron | 2009-03-29 |
| | |||
* | #410638 follow-up by foxtrotcharlie and David Rothstein: Fix help text on ↵ | Angie Byron | 2009-03-25 |
| | | | | blocks so that 'Powered by' doesn't show up on all system blocks. | ||
* | #410638 by foxtrotcharlie: Prevent 'Powered by Drupal' settings showing up ↵ | Angie Byron | 2009-03-25 |
| | | | | on all system blocks. | ||
* | - Patch #273137 by pwolanin, David_Rothstein, chx, et al: split navigation ↵ | Dries Buytaert | 2009-03-20 |
| | | | | to user and administration menu. Will require follow-up patches. | ||
* | - Patch #333156 by stella: add ability to configure the default country. | Dries Buytaert | 2009-03-17 |
| | |||
* | #347250 by catch, drewish, and Berdir: Add function for loading multiple ↵ | Angie Byron | 2009-03-14 |
| | | | | users in one request. | ||
* | #360081 by quicksketch: Stop using global variables for JavaScript settings. | Angie Byron | 2009-03-13 |
| | |||
* | - Patch #331013 by drewish: documentation clean-up. | Dries Buytaert | 2009-03-10 |
| | |||
* | - Patch #373613 by drewish, quicksketch: working around some Debian issues. ↵ | Dries Buytaert | 2009-03-10 |
| | | | | They ship a different GD library. | ||
* | - Patch #373613 by quicksketch and drewish: in order to operate on images ↵ | Dries Buytaert | 2009-03-09 |
| | | | | | | | | | | multiple times (such as crop, scale, then desaturate) without quality loss, we need to pass images by their raw GD (or other library) resources rather than re-opening the same image repeatedly, which causes wasted processing and loss of quality when using JPEG images. This patch reworks the image toolkits, adds some new image manipulations and adds some impressive SimpleTests. | ||
* | - Patch #244904 by keith.smith, edmund.kwok, xano, David_Rothstein: rename ↵ | Dries Buytaert | 2009-03-08 |
| | | | | 'input formats'. | ||
* | #383066 by David Strauss: Rename hook_nodeapi_X to hook_node_X. | Angie Byron | 2009-03-08 |
| | |||
* | #331832 by jhodgdon: Add pointer from hook_form_alter() docs to ↵ | Angie Byron | 2009-03-08 |
| | | | | hook_form_FORM_ID_alter(). | ||
* | #387218 by geerlingguy, JohnAlbin, and scor: Print/document RDF variables in ↵ | Angie Byron | 2009-03-02 |
| | | | | page.tpl.php. |