├── biwizard ├── __init__.py ├── security │ ├── biwizard_groups.xml │ └── ir.model.access.csv ├── views │ ├── rules.xml │ ├── computedfields.xml │ ├── cubelink.xml │ ├── menu.xml │ ├── cubemodel.xml │ └── cubeunion.xml ├── models │ ├── rule.xml │ ├── ruleunion.xml │ ├── filters.xml │ ├── model.xml │ ├── computedfield.xml │ └── o2m.xml └── __manifest__.py ├── runbot_cla ├── __init__.py ├── __openerp__.py └── runbot.py ├── session_db ├── __init__.py ├── models │ ├── __init__.py │ └── session.py └── __manifest__.py ├── base_report_designer ├── openerp_sxw2rml │ ├── office.dtd │ └── __init__.py ├── plugin │ └── openerp_report_designer │ │ ├── bin │ │ ├── script │ │ │ ├── import │ │ │ ├── compile_all.py │ │ │ ├── lib │ │ │ │ ├── __init__.py │ │ │ │ ├── tools.py │ │ │ │ ├── error.py │ │ │ │ ├── logreport.py │ │ │ │ ├── tiny_socket.py │ │ │ │ └── actions.py │ │ │ ├── LoginTest.py │ │ │ ├── __init__.py │ │ │ ├── ConvertFieldsToBraces.py │ │ │ ├── About.py │ │ │ ├── NewReport.py │ │ │ ├── Expression.py │ │ │ ├── modify.py │ │ │ ├── ExportToRML.py │ │ │ └── Change.py │ │ ├── OOo_run.sh │ │ └── Makefile │ │ ├── test │ │ ├── test_fields.py │ │ └── test.txt │ │ └── README ├── static │ └── base-report-designer-plugin │ │ └── openerp_report_designer.zip ├── wizard │ ├── __init__.py │ └── base_report_design_view.xml ├── __init__.py ├── __openerp__.py ├── installer.py ├── base_report_designer.py ├── base_report_designer_installer.xml └── i18n │ ├── base_report_designer.pot │ ├── lt.po │ ├── nl_BE.po │ ├── tlh.po │ ├── da.po │ └── fa.po ├── document_fs ├── __init__.py ├── __openerp__.py └── ir_attachment.py ├── website_twitter_wall ├── static │ ├── src │ │ ├── img │ │ │ └── img_preview.png │ │ ├── xml │ │ │ ├── website_twitter_wall_tweet.xml │ │ │ ├── website_twitter_wall_customize.xml │ │ │ └── website_twitter_wall_creator.xml │ │ └── js │ │ │ └── website_twitter_wall_editor.js │ └── lib │ │ └── bootstrap-colorpicker │ │ └── src │ │ ├── img │ │ ├── alpha.png │ │ ├── hue.png │ │ ├── saturation.png │ │ ├── alpha-horizontal.png │ │ └── hue-horizontal.png │ │ └── less │ │ └── colorpicker.less ├── controllers │ └── __init__.py ├── models │ ├── __init__.py │ ├── twitter_tweet.py │ ├── twitter_agent.py │ ├── twitter_stream.py │ └── oauth.py ├── data │ └── website_twitter_wall_data.xml ├── views │ └── snippets.xml ├── security │ └── ir.model.access.csv ├── __init__.py └── __openerp__.py ├── runbot ├── __init__.py ├── migrations │ ├── 8.0.1.2 │ │ └── pre-migrate.py │ ├── 1.3 │ │ └── post-logging-build_id.py │ └── 8.0.1.1 │ │ ├── post-migration.py │ │ └── pre-migration.py ├── __openerp__.py ├── security │ ├── ir.model.access.csv │ ├── ir.rule.csv │ └── runbot_security.xml ├── static │ └── src │ │ └── js │ │ └── runbot.js ├── res_config_view.xml └── res_config.py ├── .gitignore ├── README.md └── crm_profiling ├── security └── ir.model.access.csv ├── wizard ├── __init__.py ├── open_questionnaire_view.xml └── open_questionnaire.py ├── __init__.py ├── __openerp__.py └── test └── process └── profiling.yml /biwizard/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /runbot_cla/__init__.py: -------------------------------------------------------------------------------- 1 | import runbot 2 | -------------------------------------------------------------------------------- /session_db/__init__.py: -------------------------------------------------------------------------------- 1 | import models 2 | -------------------------------------------------------------------------------- /base_report_designer/openerp_sxw2rml/office.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /document_fs/__init__.py: -------------------------------------------------------------------------------- 1 | import ir_attachment 2 | -------------------------------------------------------------------------------- /session_db/models/__init__.py: -------------------------------------------------------------------------------- 1 | import session 2 | -------------------------------------------------------------------------------- /website_twitter_wall/static/src/img/img_preview.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runbot/__init__.py: -------------------------------------------------------------------------------- 1 | import runbot 2 | import res_config 3 | -------------------------------------------------------------------------------- /website_twitter_wall/static/lib/bootstrap-colorpicker/src/img/alpha.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website_twitter_wall/static/lib/bootstrap-colorpicker/src/img/hue.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website_twitter_wall/static/lib/bootstrap-colorpicker/src/img/saturation.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website_twitter_wall/static/lib/bootstrap-colorpicker/src/img/alpha-horizontal.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website_twitter_wall/static/lib/bootstrap-colorpicker/src/img/hue-horizontal.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website_twitter_wall/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | import main 3 | -------------------------------------------------------------------------------- /base_report_designer/plugin/openerp_report_designer/bin/script/import: -------------------------------------------------------------------------------- 1 | __name__="package" 2 | 3 | -------------------------------------------------------------------------------- /base_report_designer/plugin/openerp_report_designer/bin/OOo_run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ooffice "-accept=socket,host=localhost,port=2002;urp;" 3 | -------------------------------------------------------------------------------- /website_twitter_wall/models/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | import twitter_stream 3 | import twitter_agent 4 | import twitter_tweet 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # dotfiles 2 | .* 3 | # compiled python files 4 | *.py[co] 5 | # emacs backup files 6 | *~ 7 | # runbot work files 8 | runbot/static/build 9 | runbot/static/repo 10 | runbot/static/nginx 11 | -------------------------------------------------------------------------------- /base_report_designer/static/base-report-designer-plugin/openerp_report_designer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odoo/odoo-extra/HEAD/base_report_designer/static/base-report-designer-plugin/openerp_report_designer.zip -------------------------------------------------------------------------------- /runbot_cla/__openerp__.py: -------------------------------------------------------------------------------- 1 | { 2 | 'name': 'Runbot CLA', 3 | 'category': 'Website', 4 | 'summary': 'Runbot CLA', 5 | 'version': '1.1', 6 | 'description': "Runbot CLA", 7 | 'author': 'Odoo SA', 8 | 'depends': ['runbot'], 9 | 'data': [ ], 10 | } 11 | -------------------------------------------------------------------------------- /website_twitter_wall/static/src/xml/website_twitter_wall_tweet.xml: -------------------------------------------------------------------------------- 1 | 2 |