~zaber/openobject-addons/stable_5.0-extra-addons

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2010 Camptocamp SA (http://www.camptocamp.com)
# All Right Reserved
#
##############################################################################

{
    'name': 'C2c Cron Audittrail',
    'version': '0.1',
    'category': 'Generic Modules/Others',
    'description': """
Better cron management.
Allows fully threaded crons to run in parallel.
Cron run at the given time. Overlapping jobs of the same cron are not possible
but the cron next run will be calculated and done even if a job run was not done because
its predecessor was still running. Different crons can run in parallel!!!
This is as good as it is dangerous!!!
Cron state, success execution date, output are visible in admin.
""",
    'author': 'camptocamp',
    'website': 'http://www.camptocamp.com',
    'depends': ['base'],
    'init_xml': [],
    'update_xml': ['c2c_cron_audittrail_view.xml'],
    'demo_xml': [],
    'installable': True,
    'active': False,
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: