Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | #456824 follow-up by catch: Fix D6 -> D7 upgrade path failure. | Angie Byron | 2009-05-16 |
| | |||
* | #455576 by Xano and sirkitree: Revamp user settings page with vertical tabs, ↵ | Angie Byron | 2009-05-16 |
| | | | | better organization, etc. Awesomeness. | ||
* | - Patch #456824 by catch: add better caching to drupal_lookup_path(). | Dries Buytaert | 2009-05-16 |
| | |||
* | - Patch #394572 by Berdir: converted system module to the new database ↵ | Dries Buytaert | 2009-05-16 |
| | | | | abstraction layer. | ||
* | #196862 by Damien Tournoud, et al: Replace COUNT(*) queries with SELECT 1 ↵ | Angie Byron | 2009-05-16 |
| | | | | ... LIMIT 1 queries when all that's required is a check for whether rows exist. | ||
* | - Patch #459836 by Xano: rework admin/settings/regional-settings. | Dries Buytaert | 2009-05-15 |
| | |||
* | - Patch #310467 by chx, moshe weitzman: made hook_theme slimmer. | Dries Buytaert | 2009-05-14 |
| | |||
* | #320011 by lilou, snufkin, and karschp: Add consistent @file declarations to ↵ | Angie Byron | 2009-05-13 |
| | | | | all .install files. | ||
* | - Patch #210876 by deekayen: log enabling and disabling of modules, and ↵ | Dries Buytaert | 2009-05-12 |
| | | | | wrote a handy assertLogMessage() function to assert watchdog messages. | ||
* | - Patch #453080 by Gabor Hojtsy: moved the footer message to a block. | Dries Buytaert | 2009-05-12 |
| | |||
* | - Patch #372471: box.tpl.php is dead. | Dries Buytaert | 2009-05-12 |
| | |||
* | - Patch #353069 by Moshe Weitzman, dmitrig01: make drupal_get_form() return ↵ | Dries Buytaert | 2009-05-12 |
| | | | | unrendered forms. | ||
* | - Patch #428800 by Gabor Hojtsy: convert the mission statement to a block so ↵ | Dries Buytaert | 2009-05-12 |
| | | | | we have more flexibility to place it. | ||
* | #124158 by nedjo, jcnventura: Pull all PHP handling into PHP module. | Angie Byron | 2009-05-07 |
| | |||
* | - 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. |