Index: typo3/sysext/scheduler/mod1/locallang_csh_scheduler.xml
===================================================================
--- typo3/sysext/scheduler/mod1/locallang_csh_scheduler.xml (revision 10227)
+++ typo3/sysext/scheduler/mod1/locallang_csh_scheduler.xml (working copy)
@@ -13,20 +13,15 @@
Scheduler
The Scheduler provides an interface to register and manage recurring or one-time tasks.
- The Scheduler uses a single cron job which handles all registered tasks. It is thus very convenient as a single cron job needs to be set up and all task frequencies can be managed from the BE module.
+ The Scheduler uses a single cron job to handle all registered tasks. It is thus very convenient as only one cron job needs to be set up and all task frequencies can be managed from the BE module.
Class of the task
Choose a class from the list of available tasks
- The tasks are provided by various extensions. See the manual to learn how to create your own tasks and register them with the Scheduler.
+ Some tasks are provided by the TYPO3 Core itself. Others come from extensions. See the manual to learn how to create your own tasks and register them with the Scheduler.
Disable task
Check this box to disable the automatic, scheduled execution of this task. It can still be launched manually from the BE module.
- Additional call arguments
- Enter whatever arguments exist for the chosen task class
-
- Call arguments are entered using a syntax similar to HTTP query strings, i.e. &arg1=value1&arg2=value2 etc.
-
Type of task
Choose whether the task must happen a single time or will be repeated
Start of task
@@ -44,14 +39,16 @@
Can be left blank, if task is not supposed to end at any point.
Frequency of task
- Enter a frequency, either in seconds or using a cron-like syntax
+ Enter a frequency, either in seconds or using a cron-like syntax (minutes, hours, day of month, months and day of week)
The frequency of the task can be simply entered as a number of seconds.
- Alternately it is possible to use the same syntax as for cron jobs. This is simply a list of five numbers or the wildcard "*", separated by blanks. The five numbers are (in order) minutes, hours, day of month, months and day of week. Examples:
+ Alternatively it is possible to use the same syntax as for cron jobs. This is simply a list of five numbers or the wildcard "*", separated by blanks. The five numbers are (in order) minutes, hours, day of month, months and day of week. Examples:
*/5 * * * * means every 5 minutes
30 22 * * * means every day at 22:30
+
+ The Scheduler supports the full cron syntax.
Wikipedia reference|http://en.wikipedia.org/wiki/Cron
Index: typo3/sysext/scheduler/mod1/locallang.xml
===================================================================
--- typo3/sysext/scheduler/mod1/locallang.xml (revision 10227)
+++ typo3/sysext/scheduler/mod1/locallang.xml (working copy)
@@ -54,6 +54,7 @@
The task was successfully deleted.
The end date is before the start date.
Executed: %s
+ Invalid frequency. Please enter either a number of seconds or a valid cron command. The cron parser said: %1$s [code: %2$d].
The information about the last execution of the Scheduler is incomplete.
This is the list of all available tasks in this TYPO3 installation. Click on the icon at the far right to directly create a new scheduled task of the chosen type.
Invalid frequency. Please enter either a number of seconds or a valid cron command.
Index: typo3/sysext/scheduler/doc/manual.sxw
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: typo3/sysext/scheduler/ext_emconf.php
===================================================================
--- typo3/sysext/scheduler/ext_emconf.php (revision 10227)
+++ typo3/sysext/scheduler/ext_emconf.php (working copy)
@@ -15,7 +15,7 @@
'description' => 'The TYPO3 Scheduler let\'s you register tasks to happen at a specific time',
'category' => 'misc',
'shy' => 0,
- 'version' => '1.0.2',
+ 'version' => '1.1.0',
'dependencies' => '',
'conflicts' => 'gabriel',
'priority' => '',
@@ -36,7 +36,7 @@
'constraints' => array(
'depends' => array(
'php' => '5.2.0-0.0.0',
- 'typo3' => '4.4.0-0.0.0',
+ 'typo3' => '4.5.0-0.0.0',
),
'conflicts' => array(
'gabriel' => '',