Browse Source

[FIX] community remarks

pull/376/head
David Beal 9 years ago
parent
commit
32c3fb62bc
  1. 10
      attachment_metadata/README.rst
  2. 2
      attachment_metadata/__init__.py
  3. 8
      attachment_metadata/__openerp__.py
  4. 1
      attachment_metadata/models/__init__.py
  5. 0
      attachment_metadata/models/attachment.py
  6. 0
      attachment_metadata/views/attachment_view.xml

10
attachment_metadata/README.rst

@ -22,25 +22,23 @@ You can create / see standard attachments with additional fields
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot :alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/{repo_id}/8.0
:target: https://runbot.odoo-community.org/runbot/149/8.0
.. repo_id is available in https://github.com/OCA/maintainer-tools/blob/master/tools/repos_with_ids.txt
.. branch is "8.0" for example
Known issues / Roadmap Known issues / Roadmap
====================== ======================
* ...
Bug Tracker Bug Tracker
=========== ===========
Bugs are tracked on `GitHub Issues Bugs are tracked on `GitHub Issues
<https://github.com/OCA/connector-interfaces/issues>`_. In case of trouble, please
<https://github.com/OCA/server-tools/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first, 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 help us smashing it by providing a detailed and welcomed `feedback
<https://github.com/OCA/ <https://github.com/OCA/
connector-interfaces/issues/new?body=module:%20
server-tools/issues/new?body=module:%20
attachment_metadata%0Aversion:%20 attachment_metadata%0Aversion:%20
8.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. 8.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

2
attachment_metadata/__init__.py

@ -1 +1 @@
from . import attachment
from . import models

8
attachment_metadata/__openerp__.py

@ -3,8 +3,8 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{'name': 'attachment_metadata', {'name': 'attachment_metadata',
'version': '0.0.1',
'author': 'Akretion',
'version': '8.0.1.0.0',
'author': 'Akretion,Odoo Community Association (OCA)',
'website': 'www.akretion.com', 'website': 'www.akretion.com',
'license': 'AGPL-3', 'license': 'AGPL-3',
'category': 'Generic Modules', 'category': 'Generic Modules',
@ -13,11 +13,9 @@
internal and external hash for coherence verification internal and external hash for coherence verification
""", """,
'depends': [ 'depends': [
'base',
'mail'
], ],
'data': [ 'data': [
'attachment_view.xml',
'views/attachment_view.xml',
'security/ir.model.access.csv', 'security/ir.model.access.csv',
], ],
'installable': True, 'installable': True,

1
attachment_metadata/models/__init__.py

@ -0,0 +1 @@
from . import attachment

0
attachment_metadata/attachment.py → attachment_metadata/models/attachment.py

0
attachment_metadata/attachment_view.xml → attachment_metadata/views/attachment_view.xml

Loading…
Cancel
Save