# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution # This module copyright (C) 2013 Therp BV () # Code snippets from openobject-server copyright (C) 2004-2013 OpenERP S.A. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # ############################################################################## { 'name': 'Call cron jobs from their form view', 'version': '0.1', 'author': ["Therp BV", "OpenERP S.A."], 'license': 'AGPL-3', 'category': 'Tools', 'description': """ This module adds a button to the cron scheduled task form in OpenERP that allows the administrator to run the job immediately, independently of the scheduler. """, 'depends': ['base'], 'data': ['view/ir_cron.xml'], 'installable': True, }