3391
by Fabien Pinckaers
merge |
1 |
# -*- encoding: utf-8 -*-
|
2 |
##############################################################################
|
|
3 |
#
|
|
4 |
# OpenERP, Open Source Management Solution
|
|
5 |
# Copyright (C) 2004-2008 Tiny SPRL (<http://tiny.be>). All Rights Reserved
|
|
6 |
# $Id$
|
|
7 |
#
|
|
8 |
# This program is free software: you can redistribute it and/or modify
|
|
9 |
# it under the terms of the GNU General Public License as published by
|
|
10 |
# the Free Software Foundation, either version 3 of the License, or
|
|
11 |
# (at your option) any later version.
|
|
12 |
#
|
|
13 |
# This program is distributed in the hope that it will be useful,
|
|
14 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16 |
# GNU General Public License for more details.
|
|
17 |
#
|
|
18 |
# You should have received a copy of the GNU General Public License
|
|
19 |
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
20 |
#
|
|
21 |
##############################################################################
|
|
22 |
||
23 |
{
|
|
3397.1.1
by Jay (Open ERP)
corrections,views and menus to comparison module |
24 |
"name" : "ERP Comparisons", |
3391
by Fabien Pinckaers
merge |
25 |
"version" : "0.1", |
26 |
"author" : "Tiny", |
|
3397.1.1
by Jay (Open ERP)
corrections,views and menus to comparison module |
27 |
"website" : "http://www.openerp.com", |
3391
by Fabien Pinckaers
merge |
28 |
"category" : "Tools", |
3397.1.1
by Jay (Open ERP)
corrections,views and menus to comparison module |
29 |
"description": """ |
3544
by Fabien Pinckaers
merge |
30 |
This module manages the backend of a collaborative comparison website amongst
|
31 |
different products.
|
|
3397.1.1
by Jay (Open ERP)
corrections,views and menus to comparison module |
32 |
""", |
3391
by Fabien Pinckaers
merge |
33 |
"depends" : ['base'], |
34 |
"init_xml" : [ ], |
|
3547.2.12
by Jay (Open ERP)
Comparison : Moved CSVs to demo from update |
35 |
"demo_xml" : [ |
36 |
'data/comparison.factor.csv', |
|
37 |
'data/comparison.item.csv', |
|
38 |
'data/comparison.user.csv', |
|
39 |
'data/comparison.vote.values.csv', |
|
40 |
'data/comparison.vote.csv', |
|
41 |
# 'data/comparison.factor.result.csv',
|
|
42 |
],
|
|
3391
by Fabien Pinckaers
merge |
43 |
"update_xml" : [ |
3397.1.1
by Jay (Open ERP)
corrections,views and menus to comparison module |
44 |
'comparison_view.xml', |
3424.1.2
by Jay (Open ERP)
Comparison:Added Access Rights |
45 |
'security/comparison_security.xml', |
46 |
'security/ir.model.access.csv', |
|
3391
by Fabien Pinckaers
merge |
47 |
],
|
3401
by Fabien Pinckaers
adding_files_demo |
48 |
"active" : False, |
3547.1.14
by Jay (Open ERP)
Corrections |
49 |
"installable": True, |
50 |
"certificate": '', |
|
3391
by Fabien Pinckaers
merge |
51 |
}
|
52 |
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|
|
53 |