~akretion-team/openerp-product-attributes/openerp-product-attributes

« back to all changes in this revision

Viewing changes to product_images/__openerp__.py

  • Committer: nicolas.bessi at camptocamp
  • Author(s): guewenb-c2c
  • Date: 2013-02-06 09:12:47 UTC
  • mfrom: (196.2.9 7.0-product_images-migr)
  • Revision ID: nicolas.bessi@camptocamp.com-20130206091247-06537foux0hip1fd
[MRG] migration of product_images (previously product_images_olbs) to openerp 7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
1
2
#########################################################################
2
3
# Copyright (C) 2009  Sharoon Thomas, Open Labs Business solutions      #
3
4
# Copyright (C) 2012-Today  Akretion www.akretion.com                   #
19
20
 
20
21
{
21
22
    "name" : "Product Image Gallery",
22
 
    "version" : "0.1 ",
 
23
    "version" : "0.2",
23
24
    "author" : "Sharoon Thomas, Open Labs Business Solutions, Akretion",
24
25
    "website" : "http://openlabs.co.in/",
25
 
    "category" : "Added functionality - Product Extension",
 
26
    "category" : "Generic Modules",
26
27
    "depends" : ['product_sequence'],
27
28
    "description": """
28
 
    This Module implements an Image Gallery for products.
29
 
    You can add images against every product.
 
29
This Module implements an Image Gallery for products.
 
30
You can add images to every product.
30
31
 
31
 
    This module is generic but built for Magento ERP connector and
32
 
    the upcoming e-commerce system for Open ERP by Open Labs
 
32
This module is generic but built for Magento ERP connector and
 
33
the upcoming e-commerce system for Open ERP by Open Labs
33
34
    """,
34
 
    "init_xml": [],
35
 
    "update_xml": [
 
35
    "data": [
36
36
        'security/ir.model.access.csv',
37
37
        'views/product_images_view.xml',
38
38
        'views/company_view.xml'
39
39
    ],
40
 
    'installable': False,
 
40
    'installable': True,
41
41
    "active": False,
42
42
}
43
 
 
44
43
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: