Skip to content

Commit

Permalink
Merge 2fd796b into da3e482
Browse files Browse the repository at this point in the history
  • Loading branch information
fevxie committed Jun 2, 2015
2 parents da3e482 + 2fd796b commit d16ca44
Show file tree
Hide file tree
Showing 15 changed files with 556 additions and 556 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ install:
- git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
- travis_install_nightly
- sudo pip install unidecode

services:
- postgresql
Expand Down
469 changes: 0 additions & 469 deletions __unported__/base_custom_attributes/custom_attributes.py

This file was deleted.

38 changes: 38 additions & 0 deletions base_custom_attributes/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:alt: License: AGPL-3

Base Custom Attributes
======================
This module adds the possibility to easily create custom attributes
in any OpenERP business object.
See the product_custom_attributes module for instance.

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/{project_repo}/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed feedback
`here <https://github.com/OCA/{project_repo}/issues/new?body=module:%20{module_name}%0Aversion:%20{version}%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Credits
=======

Contributors
------------
* Benoît GUILLOT <benoit.guillot@akretion.com>
* Raphaël VALYI <raphael.valyi@akretion.com>
* Qing Wang <wang.qing@elico-corp.com>

Maintainer
----------

.. image:: http://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: http://odoo-community.org

This module is maintained by the OCA.

OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.

To contribute to this module, please visit http://odoo-community.org.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
###############################################################################
# #
# product_custom_attributes for OpenERP #
# product_custom_attributes for OpenERP #
# Copyright (C) 2011 Akretion Benoît GUILLOT <benoit.guillot@akretion.com> #
# #
# This program is free software: you can redistribute it and/or modify #
Expand All @@ -18,12 +18,5 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################



import ir_model
import custom_attributes




from . import ir_model
from . import custom_attributes
Original file line number Diff line number Diff line change
Expand Up @@ -18,31 +18,25 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################



{
'name': 'base_custom_attributes',
'version': '0.1.1',
'category': 'Generic Modules/Others',
'license': 'AGPL-3',
'description': """This module adds the possibility to easily create custom attributes in any OpenERP business object. See the product_custom_attributes module for instance.
'description': """
""",
'author': "Akretion,Odoo Community Association (OCA)",
'website': 'http://www.akretion.com/',
'depends': ['base'],
'init_xml': [],
'update_xml': [
'security/ir.model.access.csv',
'security/attribute_security.xml',
'custom_attributes_view.xml',
'demo': [],
'data': [
'security/ir.model.access.csv',
'security/attribute_security.xml',
'custom_attributes_view.xml',
],
'demo_xml': [],
'installable': False,
'installable': True,
'active': False,
'external_dependencies' : {
'python' : ['unidecode'],
'external_dependencies': {
'python': ['unidecode'],
}

}

Loading

0 comments on commit d16ca44

Please sign in to comment.