~openerp-commiter/openobject-addons/trunk-extra-addons

« back to all changes in this revision

Viewing changes to segmentation/__terp__.py

  • Committer: Fabien Pinckaers
  • Date: 2008-11-12 06:43:12 UTC
  • Revision ID: fp@tinyerp.com-20081112064312-fp85io97i1e95tuz
moved

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
##############################################################################
1
22
{
2
 
        "name" : "segmentation management",
3
 
        "version" : "1.3",
4
 
        "depends" : ["base"],
5
 
        "author" : "Tiny",
6
 
        "description": """
7
 
        This module allow users to create profile and compute automatically which partners do fit the profile criteria. 
8
 
 
9
 
        In this version the new concept of questionnaire allow you to regroup questions into a questionnaire and directly use it on a partner.
10
 
 
11
 
        """,
12
 
        "website" : "http://tinyerp.com/",
13
 
        "category" : "Generic Modules/Project & Services",
14
 
        "init_xml" : [],
15
 
        "demo_xml" : ["segmentation_demo.xml"],
16
 
        "update_xml" : ["segmentation_view.xml",
17
 
                        ],
18
 
        "active": False,
19
 
        "installable": True
 
23
    "name" : "segmentation management",
 
24
    "version" : "1.3",
 
25
    "depends" : ["base", 'crm_profiling'],
 
26
    "author" : "Tiny",
 
27
    "description": """
 
28
    This module allow users to create profile and compute automatically which partners do fit the profile criteria. 
 
29
 
 
30
    In this version the new concept of questionnaire allow you to regroup questions into a questionnaire and directly use it on a partner.
 
31
 
 
32
 
 
33
NOTICE: This Module is Deprecated. Please install crm_profiling in order to have access to the latest functionnalities.
 
34
    """,
 
35
    "website" : "http://tinyerp.com/",
 
36
    "category" : "Generic Modules/Project & Services",
 
37
    "init_xml" : [],
 
38
    "demo_xml" : ["segmentation_demo.xml"],
 
39
    "update_xml" : ["segmentation_view.xml",
 
40
            ],
 
41
    "active": False,
 
42
    "installable": False
20
43
}
 
44
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
45