Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | - Patch #455172 by RoboPhred: updated documentation example. | Dries Buytaert | 2009-05-07 |
| | |||
* | - Patch #300750 by brianV: documented a variable. | Dries Buytaert | 2009-05-07 |
| | |||
* | #453962 by neclimdul: Change all instances of getInfo() to static functions. | Angie Byron | 2009-05-06 |
| | |||
* | - Patch #431976 by mcrittenden, Arancaytar webchick, chx, et al: added a ↵ | Dries Buytaert | 2009-05-06 |
| | | | | wrapper for ?q=. No tests. | ||
* | - Patch #453720 by yched: fixed the display of user fields. | Dries Buytaert | 2009-05-06 |
| | |||
* | - Patch #271515 by JamesAn: corrected PHPdoc. | Dries Buytaert | 2009-05-06 |
| | |||
* | - Patch #366610 by mr.baileys: make sure we generate valid markup. | Dries Buytaert | 2009-05-06 |
| | |||
* | - Patch #370276 by JamesAn: improved help text of authoring field. | Dries Buytaert | 2009-05-06 |
| | |||
* | - Patch #424640 by mustafau: remove non-existing reference. | Dries Buytaert | 2009-05-06 |
| | |||
* | - Patch #424660 by mustafau: remove non-existing reference. | Dries Buytaert | 2009-05-06 |
| | |||
* | - Patch #267333 by cwgordon7, David_Rothstein, lilou, et al: fixed batch api ↵ | Dries Buytaert | 2009-05-06 |
| | | | | rounding. | ||
* | - Patch #445468 by reaneyk: remove no-op block_update_7000(). | Dries Buytaert | 2009-05-06 |
| | |||
* | - Patch #453596 by Xano: clean-up of function names. | 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 #452936 by catch: use db_truncate() in cache_clear_all(). | Dries Buytaert | 2009-05-04 |
| | |||
* | - Patch #352872 by Damien Tournoud: clean-up xmlrpc() wrapper. | Dries Buytaert | 2009-05-04 |
| | |||
* | #295864 follow-up by boombatower: Clarify when to use randomName() vs. ↵ | Angie Byron | 2009-05-03 |
| | | | | randomString(). | ||
* | #452388 by Freso: Standardize quoting in iso.inc. | Angie Byron | 2009-05-03 |
| | |||
* | #444744 by mikejoconnor: Include .module file automatically during ↵ | Angie Byron | 2009-05-03 |
| | | | | hook_install(). | ||
* | - Patch #451678 by Damien Tournoud: fixed broken query. | Dries Buytaert | 2009-05-03 |
| | |||
* | - Patch #449718 by alienbrain: node_feed() is now using new node building API. | Dries Buytaert | 2009-05-03 |
| | |||
* | - Patch #402264 by yched, bjaspan: adapt field's add-more js handler to ↵ | Dries Buytaert | 2009-05-03 |
| | | | | recent fapi changes. Added tests. | ||
* | - Patch #419114 by boombatower: clean up assertions. | Dries Buytaert | 2009-05-03 |
| | |||
* | - Patch #396578 by Damien Tournoud: added db_truncate_table() to the ↵ | Dries Buytaert | 2009-05-03 |
| | | | | database layer. | ||
* | - Patch #172571 by mgifford, lilou: remove theme_xml_icon because it is not ↵ | Dries Buytaert | 2009-05-03 |
| | | | | used and we have theme_feed_icon. | ||
* | - Patch #329015 by Damien Tournoud: improved error handling of batch API. | Dries Buytaert | 2009-05-03 |
| | |||
* | - Patch #451660 by Damien Tournoud: fixed menu creation/deletion tests. | Dries Buytaert | 2009-05-03 |
| | |||
* | - Patch #407202 by Damien Tournoud: make it clear that PostgreSQL and SQLite ↵ | Dries Buytaert | 2009-05-03 |
| | | | | are supported. | ||
* | - Patch #392696 by yched et al: save default values on insert. | Dries Buytaert | 2009-05-01 |
| | |||
* | - Patch #432864 by mcrittenden, sun: documentation improvements for base_url(). | Dries Buytaert | 2009-05-01 |
| | |||
* | - Patch #392696 by yched et al: save default values on insert. | Dries Buytaert | 2009-05-01 |
| | |||
* | - Patch #360128 by chx, quicksketch, Frando et al: security fix for ↵ | Dries Buytaert | 2009-05-01 |
| | | | | simplified AHAH callbacks. | ||
* | #445950 follow-up: Committing missing simpletest.pages.inc. | Angie Byron | 2009-05-01 |
| | |||
* | - Patch #445950 by boombatower: interface improvements for SimpleTest. | Dries Buytaert | 2009-05-01 |
| | |||
* | - Patch #240873 by Gábor Hojtsy, sun: block system clean-ups. Thanks for ↵ | Dries Buytaert | 2009-04-30 |
| | | | | the review sun. | ||
* | #449142 by pwolanin: SA-CORE-2009-005 #2. | Angie Byron | 2009-04-30 |
| | |||
* | - Patch #394594 by Berdir: additional conversion to the new database ↵ | Dries Buytaert | 2009-04-30 |
| | | | | abstraction layer plus clean-up. | ||
* | - Rolled back patch #343415. Needs more work and discussion. | Dries Buytaert | 2009-04-30 |
| | |||
* | - Patch #392706 by yched: clean of field tests: | Dries Buytaert | 2009-04-30 |
| | | | | | | | + fixes a few missing whitelines + makes it clear that the same function tests field_attach_insert(), field_attach_update() and field_attach_load() + streamlines a few overly detailed explanations + add missing t() functions | ||
* | - Patch #441180 by bjaspan: added a point. | Dries Buytaert | 2009-04-30 |
| | |||
* | - Patch #374068 by alienbrain, bjaspan: improved documentation of field ↵ | Dries Buytaert | 2009-04-30 |
| | | | | display settings. | ||
* | #356908 by andypost and yched: Run field prefixes and suffixes through ↵ | Angie Byron | 2009-04-29 |
| | | | | field_filter_xss() rather than check_plain() to prevent funny characters. | ||
* | - Patch #295864 by boombatower, sun: fixed typos in the documentation. Nice ↵ | Dries Buytaert | 2009-04-29 |
| | | | | catches, sun\! | ||
* | - Patch #392706 by bjaspan, yched, puradata: some of the field attach tests ↵ | Dries Buytaert | 2009-04-29 |
| | | | | in field.test use database queries to verify correct functionality. This makes the field attach tests work only if field_sql_module is the only field storage module in use. Instead, tests of database storage should be in the field storage module's tests, and field attach tests should operate purely at the field attach api level. | ||
* | #220592 by dww and pwolanin: Update module now always uses the database for ↵ | Angie Byron | 2009-04-29 |
| | | | | caching so that drupal.org project data persists and site performance (in both directions) is not horrifically mangled. | ||
* | - Patch #446742 by sun, dmitrig01: fixed various bugs. | Dries Buytaert | 2009-04-29 |
| | |||
* | - Patch #295864 by boombatower: cleaned up the randomName() method by ↵ | Dries Buytaert | 2009-04-29 |
| | | | | removing unnecessary prefix code, and added a new randomString() method which includes characters like spaces. | ||
* | - Patch #340081 by dmitrig01, boombatower: clean-up of drupalCreateUser() | Dries Buytaert | 2009-04-29 |
| | |||
* | - Patch #240873 by Gábor Hojtsy: move custom help settings to blocks. Very ↵ | Dries Buytaert | 2009-04-29 |
| | | | | exciting. | ||
* | - Patch #251245 by c960657: added tests for the OpenID module. The test ↵ | Dries Buytaert | 2009-04-29 |
| | | | | module implements a dummy OpenID provider/server. Most impressive patch of the month. |