Preparation for 8.0 branch

This commit is contained in:
Pedro M. Baeza
2014-09-30 21:09:35 +02:00
parent d1249c1e9d
commit 834c3fc277
16 changed files with 105 additions and 13 deletions

56
.gitignore vendored Normal file
View File

@@ -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

23
.travis.yml Normal file
View File

@@ -0,0 +1,23 @@
language: python
python:
- "2.7"
env:
- VERSION="8.0" ODOO_REPO="odoo/odoo"
- VERSION="8.0" ODOO_REPO="OCA/OCB"
virtualenv:
system_site_packages: true
install:
- pip install xlwt
- 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 ${VERSION}
script:
- travis_run_tests ${VERSION}
after_success:
coveralls

11
README
View File

@@ -1,11 +0,0 @@
This repository hosts alternative reporting engines to the ones included on OpenERP core (RML and Webkit). It is complemented with the ones that host the reports theirself:
https://launchpad.net/account-financial-report
https://launchpad.net/purchase-report
https://launchpad.net/sale-reports
...
The convention is to use a suffix to each module to indicate that it's for using with that report engine (for example, account_invoice_report_birt or sale_order_report_pentaho).
It can contain also another utilities directly involved with reports (like merge/split utils, checkers, signing tools and so on).

24
README.md Normal file
View File

@@ -0,0 +1,24 @@
[![Build Status](https://travis-ci.org/OCA/reporting-engine.svg?branch=8.0)](https://travis-ci.org/OCA/reporting-engine)
[![Coverage Status](https://img.shields.io/coveralls/OCA/reporting-engine.svg)](https://coveralls.io/r/OCA/reporting-engine?branch=8.0)
OCA alternative reporting engines and reporting utilities for Odoo
==================================================================
This repository hosts alternative reporting engines to the ones included on Odoo core (RML, QWeb and Webkit). It is complemented with the ones that host the reports theirself:
https://github.com/OCA/account-financial-reporting
https://github.com/OCA/purchase-reporting
https://github.com/OCA/sale-reporting
...
The convention is to use a suffix to each module to indicate that it's for using with that report engine (for example, account_invoice_report_birt or sale_order_report_pentaho).
It can contain also another utilities directly involved with reports (like merge/split utils, checkers, signing tools and so on).
----
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.
http://odoo-community.org/

View File

@@ -43,7 +43,7 @@ the folling module(s):
'depends': ['base'],
'data': [],
'test': [],
'installable': True,
'installable': False,
'auto_install': False,
'application': False,
}

View File

@@ -75,6 +75,6 @@ Contact info@noviat.com for help with the development of Excel reports in OpenER
'demo': [],
'data': [],
'active': False,
'installable': True,
'installable': False,
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB