mirror of
https://github.com/OCA/knowledge.git
synced 2025-07-20 02:06:45 -06:00
49 lines
1.7 KiB
Python
49 lines
1.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# OpenERP, Open Source Management Solution
|
|
# Copyright (C) 2013 Savoir-faire Linux (<http://www.savoirfairelinux.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': 'Document Page Approval',
|
|
'version': '9.0.1.0.0',
|
|
"author": "Savoir-faire Linux,Odoo Community Association (OCA)",
|
|
"website": "http://www.savoirfairelinux.com",
|
|
"license": "AGPL-3",
|
|
'category': 'Knowledge Management',
|
|
'depends': [
|
|
'knowledge',
|
|
'document_page',
|
|
'mail',
|
|
],
|
|
'data': [
|
|
'data/email_template.xml',
|
|
'workflows/document_page_approval.xml',
|
|
'views/document_page_approval.xml',
|
|
'security/document_page_security.xml',
|
|
'security/ir.model.access.csv',
|
|
],
|
|
'installable': False,
|
|
'auto_install': False,
|
|
'images': [
|
|
'images/category.png',
|
|
'images/page_history_list.png',
|
|
'images/page_history.png',
|
|
],
|
|
}
|