Yannick Vaucher
11 years ago
16 changed files with 198 additions and 95 deletions
-
16.coveragerc
-
56.gitignore
-
19.travis.yml
-
8README
-
12README.md
-
11hide_duplicate_button/__openerp__.py
-
1web_ckeditor4/__init__.py
-
108web_ckeditor4/__openerp__.py
-
24web_export_view/__openerp__.py
-
6web_export_view/controllers.py
-
1web_import_models_with_inherits/model/basemodel.py
-
1web_print_from_browser/__init__.py
-
16web_widget_classes/__openerp__.py
@ -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: |
@ -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 |
@ -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 6.1 |
||||
|
- pip install coveralls flake8 |
||||
|
|
||||
|
script: |
||||
|
- travis_run_flake8 |
||||
|
- travis_run_tests 6.1 |
||||
|
|
||||
|
after_success: |
||||
|
coveralls |
@ -1,8 +0,0 @@ |
|||||
This project aim to deal with modules related to the webclient of OpenERP. You'll find modules that: |
|
||||
|
|
||||
- Add facilities to the UI |
|
||||
- Ease the import/export features |
|
||||
- Add tabs |
|
||||
- ... |
|
||||
|
|
||||
|
|
@ -0,0 +1,12 @@ |
|||||
|
[![Build Status](https://travis-ci.org/OCA/web.svg?branch=6.1)](https://travis-ci.org/OCA/web) |
||||
|
[![Coverage Status](https://coveralls.io/repos/OCA/web/badge.png?branch=6.1)](https://coveralls.io/r/OCA/web?branch=6.1) |
||||
|
|
||||
|
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 |
Write
Preview
Loading…
Cancel
Save
Reference in new issue