Commit 726553a1 authored by Aurel's avatar Aurel

add property for definition of minutes periodicity


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@7841 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 9b1957b6
......@@ -60,47 +60,55 @@ class Periodicity:
{ 'id' : 'periodicity_start_date',
'description' : 'When this periodic event will start',
'type' : 'date',
'mode' : 'w' },
'mode' : 'w' },
{ 'id' : 'periodicity_stop_date',
'description' : 'When this periodic event will stop',
'type' : 'date',
'mode' : 'w' },
'mode' : 'w' },
{ 'id' : 'periodicity_minute',
'description' : 'Recur every periodicity minute (ex, at 10 and at 16 )',
'type' : 'lines',
'mode' : 'w' },
{ 'id' : 'periodicity_minute_frequency',
'description' : 'Recur every periodicity minute (ex every 2 minute)',
'type' : 'int',
'mode' : 'w' },
{ 'id' : 'periodicity_hour',
'description' : 'Recur every periodicity hours (ex, at 10 and at 16 )',
'type' : 'lines',
'mode' : 'w' },
'mode' : 'w' },
{ 'id' : 'periodicity_hour_frequency',
'description' : 'Recur every periodicity hours (ex every 2 hours)',
'type' : 'int',
'mode' : 'w' },
'mode' : 'w' },
{ 'id' : 'periodicity_day_frequency',
'description' : 'Recur every periodicity days (ex every 2 days)',
'type' : 'int',
'mode' : 'w' },
'mode' : 'w' },
{ 'id' : 'periodicity_week_frequency',
'description' : 'Recur every periodicity weeks (ex every 3 weeks)',
'type' : 'int',
'mode' : 'w' },
'mode' : 'w' },
{ 'id' : 'periodicity_week',
'description' : 'Recur every periodicity week (ex, week 41 and 43)',
'type' : 'lines',
'mode' : 'w' },
'mode' : 'w' },
{ 'id' : 'periodicity_week_day',
'description' : 'Recur on some days of the week (ex monday and sunday)',
'type' : 'lines',
'mode' : 'w' },
'mode' : 'w' },
{ 'id' : 'periodicity_month_frequency',
'description' : 'Recur every periodicity month (ex every 4 months)',
'type' : 'int',
'mode' : 'w' },
'mode' : 'w' },
{ 'id' : 'periodicity_month_day',
'description' : 'Recur on some days of the month (ex 5th, and 14th)',
'type' : 'lines',
'mode' : 'w' },
'mode' : 'w' },
{ 'id' : 'periodicity_month',
'description' : 'Recur on some months of the year (ex 5th, and 10th)',
'type' : 'lines',
'mode' : 'w' },
'mode' : 'w' },
{ 'id' : 'periodicity_year_frequency',
'description' : 'Recur every periodicity years (ex every 2 year)',
'type' : 'int',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment