Browse Source

Merge pull request #6 from hbrunn/7.0_flake8

[FIX] flake8
pull/12/head
Yannick Vaucher 11 years ago
parent
commit
9fdf8be962
  1. 16
      .coveragerc
  2. 56
      .gitignore
  3. 19
      .travis.yml
  4. 12
      README.md
  5. 1
      web_ckeditor4/__init__.py
  6. 5
      web_m2x_options/__openerp__.py
  7. 13
      web_send_message_popup/__openerp__.py
  8. 6
      web_widget_float_formula/__openerp__.py

16
.coveragerc

@ -0,0 +1,16 @@
# Config file .coveragerc
[report]
include =
*/OCA/web/*
omit =
*/tests/*
*__init__.py
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain about null context checking
if context is None:

56
.gitignore

@ -0,0 +1,56 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
# C extensions
*.so
# Distribution / packaging
.Python
env/
bin/
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.cache
nosetests.xml
coverage.xml
# Translations
*.mo
# Pycharm
.idea
# Mr Developer
.mr.developer.cfg
.project
.pydevproject
# Rope
.ropeproject
# Sphinx documentation
docs/_build/
# Backup files
*~
*.swp

19
.travis.yml

@ -0,0 +1,19 @@
language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
install:
- git clone https://github.com/gurneyalex/maintainer-quality-tools.git $HOME/maintainer-quality-tools
- export PATH=$HOME/maintainer-quality-tools/travis:$PATH
- travis_install_nightly 7.0
- pip install coveralls flake8
script:
- travis_run_flake8
- travis_run_tests 7.0
after_success:
coveralls

12
README.md

@ -0,0 +1,12 @@
[![Build Status](https://travis-ci.org/OCA/web.svg?branch=7.0)](https://travis-ci.org/OCA/web)
[![Coverage Status](https://coveralls.io/repos/OCA/web/badge.png?branch=7.0)](https://coveralls.io/r/OCA/web?branch=7.0)
Web addons for Odoo
===================
This project aims to deal with modules related to the webclient of Odoo. You'll find modules that:
- Add facilities to the UI
- Add widgets
- Ease the import/export features
- Generally add clientside functionality

1
web_ckeditor4/__init__.py

@ -19,4 +19,3 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################

5
web_m2x_options/__openerp__.py

@ -3,8 +3,7 @@
{
"name": 'web_m2x_options',
"version": "0.1",
"description":
"""
"description": """
=====================================================
Add new options for many2one and many2manytags field:
=====================================================
@ -42,5 +41,3 @@ Thanks to:
"installable": True,
"active": False,
}

13
web_send_message_popup/__openerp__.py

@ -19,14 +19,14 @@
#
##############################################################################
{'name': 'Web Send Message as Popup',
{
'name': 'Web Send Message as Popup',
'version': '1.0',
'author': 'Camptocamp',
'maintainer': 'Camptocamp',
'license': 'AGPL-3',
'category': 'Hidden',
'depends': ['web',
],
'depends': ['web'],
'description': """
Web Send Message as Popup
=========================
@ -38,12 +38,9 @@ attachments and followers.
This module changes the link 'Send a message' so it opens directly the
full featured popup instead of the text field, avoiding an extra click
if the popup is always wanted.
""",
if the popup is always wanted.""",
'website': 'http://www.camptocamp.com',
'qweb': ['static/src/xml/mail.xml',
],
'qweb': ['static/src/xml/mail.xml'],
'installable': True,
'auto_install': False,
}

6
web_widget_float_formula/__openerp__.py

@ -22,9 +22,11 @@ Documentations:
Technical informations:
------------------------
* Overloads "instance.web.form.FieldFloat"; (so works for fields.integer & fields.float);
* Overloads "instance.web.form.FieldFloat"; (so works for fields.integer &
fields.float);
* To compute, the module simply use the eval() javascript function;
* Rounding computation is not done by this module (The module has the same behaviour if the user tips "=1/3" or if he tips "0.33[...]");
* Rounding computation is not done by this module (The module has the same
behaviour if the user tips "=1/3" or if he tips "0.33[...]");
* avoid code injonction by regexpr test: "=alert('security')" is not valid;
Limits:

Loading…
Cancel
Save