From 0aa394f708822aa75695ddf5105c4f5337140308 Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Thu, 22 Sep 2011 09:36:13 +0200 Subject: [PATCH] [IMP] fetchmail_project_issue: Add a link between the fetchmail and project_issue modules bzr revid: stw@openerp.com-20110922073613-f19p2n8k2o955c0t --- addons/fetchmail_project_issue/__init__.py | 20 ++++++++++ addons/fetchmail_project_issue/__openerp__.py | 39 +++++++++++++++++++ addons/fetchmail_project_issue/installer.xml | 18 +++++++++ 3 files changed, 77 insertions(+) create mode 100644 addons/fetchmail_project_issue/__init__.py create mode 100644 addons/fetchmail_project_issue/__openerp__.py create mode 100644 addons/fetchmail_project_issue/installer.xml diff --git a/addons/fetchmail_project_issue/__init__.py b/addons/fetchmail_project_issue/__init__.py new file mode 100644 index 00000000000..5831b3284bb --- /dev/null +++ b/addons/fetchmail_project_issue/__init__.py @@ -0,0 +1,20 @@ +#-*- coding:utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2011 OpenERP S.A. (). All Rights Reserved +# +# 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 . +# +############################################################################## diff --git a/addons/fetchmail_project_issue/__openerp__.py b/addons/fetchmail_project_issue/__openerp__.py new file mode 100644 index 00000000000..641012fc9ab --- /dev/null +++ b/addons/fetchmail_project_issue/__openerp__.py @@ -0,0 +1,39 @@ +#-*- coding:utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2011 OpenERP S.A. (). All Rights Reserved +# +# 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" : "Fetchmail for Project Issue", + "version" : "1.0", + "depends" : ["fetchmail", "project_issue"], + "author" : "OpenERP SA", + "category": 'Tools', + "description": """ + """, + 'website': 'http://www.openerp.com', + 'init_xml': [], + 'update_xml': [ + "installer.xml", + ], + 'demo_xml': [ + ], + 'installable': True, + 'active': False, +} diff --git a/addons/fetchmail_project_issue/installer.xml b/addons/fetchmail_project_issue/installer.xml new file mode 100644 index 00000000000..b0ca7b39c6f --- /dev/null +++ b/addons/fetchmail_project_issue/installer.xml @@ -0,0 +1,18 @@ + + + + + Create Issues from Email Account + ir.actions.act_window + fetchmail.server + form + form + {'default_name' : "Email Account For Issue", 'fetchmail_model' : 'project.issue'} + + + + + + + +