Skip to content

Commit

Permalink
add links to OCA templates + further fixes of quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Yelizariev committed Mar 18, 2016
1 parent 409f3d0 commit 1aeed22
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
5 changes: 5 additions & 0 deletions docs/dev/README.rst.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ Guidlines
Tested on Odoo 8.0 a40d48378d22309e53e6d38000d543de1d2f7a78
See also:

* OCA's README: https://raw.githubusercontent.com/OCA/maintainer-tools/master/template/module/README.rst

Usage
-----

Expand Down Expand Up @@ -58,3 +62,4 @@ commit sha can be found as following
cd /path/to/odoo
git rev-parse HEAD
22 changes: 17 additions & 5 deletions docs/dev/__openerp__.py.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ Use example below as template. What are important here:
}
See also:

* OCA's template: https://github.com/OCA/maintainer-tools/blob/master/template/module/__openerp__.py

version
Expand Down Expand Up @@ -92,27 +93,38 @@ added only to one version (e.g. 9), then version is changed as in example below:

i.e. two module branches cannot have same versions with a different meaning

author
------

Use company first and then developer(s): ::

"author": "IT-Projects LLC, Devenloper Name",

For OCA's repositories put company name first, then OCA. Developers are listed in README file: ::

"author": "IT-Projects LLC, Odoo Community Association (OCA)",


license
-------

IT-Projects LLC uses following licences:

* ``'GPL-3'`` for odoo 8.0 and below
* ``'LGPL-3'`` for odoo 9.0 and above
* ``"GPL-3"`` for odoo 8.0 and below
* ``"LGPL-3"`` for odoo 9.0 and above

For OCA's repositories use ``'AGPL-3'``.
For OCA's repositories use ``"AGPL-3"``.

external_dependencies
---------------------

Check if some python library exists::

external_dependencies': {'python' : ['openid']}
"external_dependencies": {"python" : ["openid"]}


Check if some sytem application exists::

external_dependencies': {'bin' : ['libreoffice']}
"external_dependencies": {"bin" : ["libreoffice"]}


0 comments on commit 1aeed22

Please sign in to comment.