[REM] remove portal_project_long_term
authorAntony Lesuisse <al@openerp.com>
Fri, 25 Apr 2014 00:19:28 +0000 (02:19 +0200)
committerAntony Lesuisse <al@openerp.com>
Fri, 25 Apr 2014 00:19:28 +0000 (02:19 +0200)
bzr revid: al@openerp.com-20140425001928-pacmyw9dfanmczvt

addons/portal_project_long_term/__init__.py [deleted file]
addons/portal_project_long_term/__openerp__.py [deleted file]
addons/portal_project_long_term/security/ir.model.access.csv [deleted file]
addons/portal_project_long_term/security/portal_security.xml [deleted file]

diff --git a/addons/portal_project_long_term/__init__.py b/addons/portal_project_long_term/__init__.py
deleted file mode 100644 (file)
index c8d82ed..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP, Open Source Management Solution
-#    Copyright (C) 2010-Today OpenERP S.A. (<http://www.openerp.com>).
-#
-#    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 <http://www.gnu.org/licenses/>.
-#
-##############################################################################
diff --git a/addons/portal_project_long_term/__openerp__.py b/addons/portal_project_long_term/__openerp__.py
deleted file mode 100644 (file)
index 44156af..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP, Open Source Management Solution
-#    Copyright (C) 2010-Today OpenERP S.A. (<http://www.openerp.com>).
-#
-#    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 <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-
-{
-    'name': 'Portal Project Long Term',
-    'version': '1.0',
-    'category': 'Tools',
-    'complexity': 'easy',
-    'description': """
-This module adds necessary security rules and access rights for project long term and portal.
-=============================================================================================
-    """,
-    'author': 'OpenERP SA',
-    'depends': ['project_long_term', 'portal'],
-    'data': [
-        'security/portal_security.xml',
-        'security/ir.model.access.csv',
-    ],
-    'installable': True,
-    'auto_install': True,
-    'category': 'Hidden',
-}
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
diff --git a/addons/portal_project_long_term/security/ir.model.access.csv b/addons/portal_project_long_term/security/ir.model.access.csv
deleted file mode 100644 (file)
index 0cc108b..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
-access_issues,project_phase,project_long_term.model_project_phase,base.group_portal,1,0,0,0
-access_issues_public,project_phase_public,project_long_term.model_project_phase,base.group_public,1,0,0,0
diff --git a/addons/portal_project_long_term/security/portal_security.xml b/addons/portal_project_long_term/security/portal_security.xml
deleted file mode 100644 (file)
index 642855c..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<openerp>
-    <data>
-
-        <record id="portal_project_long_term_rule" model="ir.rule">
-            <field name="name">Project/Phase: portal users: public or (portal and colleagues following) or (followers and following)</field>
-            <field name="model_id" ref="project_long_term.model_project_phase"/>
-            <field name="domain_force">[('project_id.privacy_visibility', 'in', ['public', 'portal'])]</field>
-            <field name="groups" eval="[(4, ref('base.group_portal'))]"/>
-        </record>
-
-        <record model="ir.rule" id="project_phase_public_rule">
-            <field name="name">Project/Phase: public users: public only</field>
-            <field name="model_id" ref="project_long_term.model_project_phase"/>
-            <field name="domain_force">[('project_id.privacy_visibility', '=', 'public')]</field>
-            <field name="groups" eval="[(4, ref('base.group_public'))]"/>
-        </record>
-
-    </data>
-</openerp>