/[drupal]/drupal/modules/system/system.info
ViewVC logotype

Log of /drupal/modules/system/system.info

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Links to HEAD: (view) (download) (annotate)
Sticky Tag:

Revision 1.19 - (view) (download) (annotate) - [select for diffs]
Tue Nov 17 21:24:18 2009 UTC (11 days, 2 hours ago) by dries
Branch: MAIN
CVS Tags: HEAD
Changes since 1.18: +2 -1 lines
Diff to previous 1.18
- Patch #598758 by stBorchert, sun, pwolanin, eigentor, TheRec, seutje: add link to the permissions and configuration page of each module from the module configuration page. Great team work!

Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Thu Oct 15 21:19:31 2009 UTC (6 weeks, 2 days ago) by webchick
Branch: MAIN
CVS Tags: DRUPAL-7-0-UNSTABLE-10
Changes since 1.17: +2 -1 lines
Diff to previous 1.17
#538660 by JacobSingh, dww, JoshuaRogers, adrian, Crell, chx, anarcat, and cwgordon7: Add a functioning Plugin Manager to core. Can you say module installation and updates through the UI? I knew you could! :D

Revision 1.17 - (view) (download) (annotate) - [select for diffs]
Thu Oct 15 17:55:55 2009 UTC (6 weeks, 2 days ago) by dries
Branch: MAIN
Changes since 1.16: +2 -1 lines
Diff to previous 1.16
- Patch #604618 by Crell, JacobSingh: create a common interface for Archive operations so we can handle .zip, .tar.gz.

Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Mon Aug 31 18:30:27 2009 UTC (2 months, 4 weeks ago) by webchick
Branch: MAIN
CVS Tags: DRUPAL-7-0-UNSTABLE-9
Changes since 1.15: +2 -1 lines
Diff to previous 1.15
#331180 by pwolanin and Rob Loach: Added pluggable smtp/mail framework.

Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Wed Aug 19 20:19:37 2009 UTC (3 months, 1 week ago) by dries
Branch: MAIN
Changes since 1.14: +2 -1 lines
Diff to previous 1.14
- Patch #113614 by eaton, fago, et al: add centralized token/placeholder subsituation to core.

Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Wed Jun 17 10:46:49 2009 UTC (5 months, 1 week ago) by dries
Branch: MAIN
CVS Tags: DRUPAL-7-0-UNSTABLE-8
Changes since 1.13: +2 -1 lines
Diff to previous 1.13
- Patch #486558 by PEAR, chx: add tar-support to Drupal.

Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Mon Jun 8 09:23:54 2009 UTC (5 months, 3 weeks ago) by dries
Branch: MAIN
Changes since 1.12: +2 -1 lines
Diff to previous 1.12
- Patch #449198 by boombatower: cealn up test loading and related API.

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Wed May 6 10:37:28 2009 UTC (6 months, 3 weeks ago) by dries
Branch: MAIN
CVS Tags: DRUPAL-7-0-UNSTABLE-7
Changes since 1.11: +2 -1 lines
Diff to previous 1.11
- 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.

Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Sun Oct 12 01:23:06 2008 UTC (13 months, 2 weeks ago) by webchick
Branch: MAIN
CVS Tags: DRUPAL-7-0-UNSTABLE-2, DRUPAL-7-0-UNSTABLE-3, DRUPAL-7-0-UNSTABLE-4, DRUPAL-7-0-UNSTABLE-5, DRUPAL-7-0-UNSTABLE-6
Changes since 1.10: +2 -2 lines
Diff to previous 1.10
#320024 by Dave Reid: Replace hardcoded drupal_required_modules() with required = TRUE in .info files.

Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Sat Oct 11 15:54:14 2008 UTC (13 months, 2 weeks ago) by webchick
Branch: MAIN
Changes since 1.9: +2 -1 lines
Diff to previous 1.9
#319699 follow-up by Dave Reid: Simplify required module hiding in admin/build/modules.

Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Sat Oct 11 02:33:05 2008 UTC (13 months, 2 weeks ago) by webchick
Branch: MAIN
Changes since 1.8: +2 -2 lines
Diff to previous 1.8
#318984 by Xano and Dave Reid: Change 'Core - optional' to 'Core' in modules UI.

Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Thu Oct 9 22:51:40 2008 UTC (13 months, 2 weeks ago) by webchick
Branch: MAIN
Changes since 1.7: +2 -1 lines
Diff to previous 1.7
#318892 by justinrandell and chx: Add .install files to the list of files added to .info files.

Revision 1.7 - (view) (download) (annotate) - [select for diffs]
Tue Jul 8 01:08:15 2008 UTC (16 months, 3 weeks ago) by dries
Branch: MAIN
CVS Tags: DRUPAL-7-0-UNSTABLE-1
Changes since 1.6: +2 -1 lines
Diff to previous 1.6
- Patch #270508 by paul.levvik and pwolanin: usability improvement: image toolkits should not have to be copied.

Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Tue May 6 12:18:50 2008 UTC (18 months, 3 weeks ago) by dries
Branch: MAIN
Changes since 1.5: +3 -1 lines
Diff to previous 1.5
- 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.

Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Mon Feb 18 19:19:47 2008 UTC (21 months, 1 week ago) by dries
Branch: MAIN
Changes since 1.4: +2 -2 lines
Diff to previous 1.4
- Patch #221384 by webernet: update core compatibility to Drupal 7.

Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Fri Jun 8 05:50:56 2007 UTC (2 years, 5 months ago) by dries
Branch: MAIN
CVS Tags: DRUPAL-6-0, DRUPAL-6-0-BETA-1, DRUPAL-6-0-BETA-2, DRUPAL-6-0-BETA-3, DRUPAL-6-0-BETA-4, DRUPAL-6-0-RC-1, DRUPAL-6-0-RC-2, DRUPAL-6-0-RC-3, DRUPAL-6-0-RC-4, DRUPAL-6-1, DRUPAL-6-10, DRUPAL-6-11, DRUPAL-6-12, DRUPAL-6-13, DRUPAL-6-14, DRUPAL-6-2, DRUPAL-6-3, DRUPAL-6-4, DRUPAL-6-5, DRUPAL-6-6, DRUPAL-6-7, DRUPAL-6-8, DRUPAL-6-9
Branch point for: DRUPAL-6
Changes since 1.3: +2 -1 lines
Diff to previous 1.3
- Patch #146910 by dww: only allow enabling modules with the same Drupal core compatibility version.

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Tue Nov 21 20:55:35 2006 UTC (3 years ago) by dries
Branch: MAIN
CVS Tags: DRUPAL-5-0, DRUPAL-5-0-BETA-2, DRUPAL-5-0-RC-1, DRUPAL-5-0-RC-2, DRUPAL-5-1, DRUPAL-5-10, DRUPAL-5-11, DRUPAL-5-12, DRUPAL-5-13, DRUPAL-5-14, DRUPAL-5-15, DRUPAL-5-16, DRUPAL-5-17, DRUPAL-5-18, DRUPAL-5-19, DRUPAL-5-2, DRUPAL-5-20, DRUPAL-5-3, DRUPAL-5-4, DRUPAL-5-5, DRUPAL-5-6, DRUPAL-5-7, DRUPAL-5-8, DRUPAL-5-9
Branch point for: DRUPAL-5
Changes since 1.2: +2 -1 lines
Diff to previous 1.2
- Patch #87298 by webchick, neil, dww et al: show version numbers on modules page.

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Thu Oct 5 15:47:57 2006 UTC (3 years, 1 month ago) by dries
Branch: MAIN
CVS Tags: DRUPAL-5-0-BETA-1
Changes since 1.1: +2 -2 lines
Diff to previous 1.1
- Patch #81740 by merlinofchaos, webchick, moshe, neclimdul et al: added package support to the modules page.

Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Thu Aug 31 20:22:36 2006 UTC (3 years, 2 months ago) by dries
Branch: MAIN
- Patch #80952 by earl, webchick, neclimdul et al: .info files

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

  ViewVC Help
Powered by ViewVC 1.1.2