~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to product_icecat/__openerp__.py

  • Committer: Israel Fermín Montilla
  • Date: 2011-11-07 21:07:05 UTC
  • Revision ID: israel@openerp.com.ve-20111107210705-84dksooth0kfrsvz
[ADD] added missing product_icecat module

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) 2010 Zikzakmedia S.L. (<http://www.zikzakmedia.com>). 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
{
 
24
    "name" : "Product Information Import from icecat",
 
25
    "version" : "1.0",
 
26
    "author" : "Zikzakmedia SL",
 
27
    "website" : "http://www.zikzakmedia.com",
 
28
    "category" : "Added functionality",
 
29
    "depends" : [
 
30
        "base",
 
31
        "product_manufacturer",
 
32
        "product_images_olbs"
 
33
    ],
 
34
    "init_xml" : [],
 
35
    "demo_xml" : [],
 
36
    "description": """
 
37
    Import information XML from icecat to OpenERP products.
 
38
    This wizard download XML in openerp-server (addons/product_icecat/xml) and after process data mapping line to product import.
 
39
    - Language import: User preference or force into wizard (option)
 
40
    - HTML Category option: create list details
 
41
    - FTP image
 
42
    http://www.icecat.biz/
 
43
    """,
 
44
    'update_xml': [
 
45
        'security/ir.model.access.csv',
 
46
        'product_icecat.xml',
 
47
        'product_manufacturer.xml',
 
48
        'wizard/wizard_product_icecat.xml',
 
49
    ],
 
50
    'test':[''],
 
51
    'installable': True,
 
52
    'active': False,
 
53
}