This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
ODOO_VERSION=12.0 | |
ODOO_ROOT=~/development/odoo/$ODOO_VERSION/odoo | |
ODOO_BIN=odoo-bin | |
ADDONS_PATH=$ODOO_ROOT/addons | |
for d in $(ls -1d */); do | |
ADDONS_PATH=$ADDONS_PATH,$(pwd)/$d | |
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TestCustom(Test): | |
def __init__(self, methodName='runTest'): | |
super(TestCustom, self).__init__(methodName) | |
# Skip original test from inherited class | |
custom_attributes = set(dir(TestCustom)) - set(dir(Test)) | |
custom_test_methods = [ | |
name for name in custom_attributes | |
if name.startswith('test_') and callable(getattr(self, name))] | |
if methodName not in custom_test_methods: | |
method = getattr(self, methodName) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
¢‿¢ | |
©¿© o | |
ª{•̃̾_•̃̾}ª | |
¬_¬ | |
¯\(º_o)/¯ | |
¯\(º o)/¯ | |
¯\_(⊙︿⊙)_/¯ | |
¯\_(ツ)_/¯ | |
°ω° | |
°Д° |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
GUNICORN=/usr/local/bin/gunicorn | |
ROOT=/home/odoo/odoo | |
PID=/var/run/gunicorn.pid | |
APP=openerp:service.wsgi_server.application | |
#openerp:wsgi.proxied.application | |
if [ -f $PID ]; then rm $PID; fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
edx_platform_repo: "https://github.com/cecep-edu/edx-platform.git" | |
edxapp_use_custom_theme: true | |
edxapp_theme_name: 'stanford' | |
edxapp_theme_source_repo: https://github.com/cecep-edu/upex-theme.git | |
edxapp_theme_version: 'master' | |
edxapp_platform_name: 'formaX' | |
edx_tech_support_email: '[email protected]' | |
edxapp_contact_email: '[email protected]' | |
edapp_bugs_email: '[email protected]' | |
edxapp_default_from_email: '[email protected]' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
color-picker.png gtk-paste-v.png stock_gantt.png STOCK_ZOOM_OUT.png | |
gtk-about.png gtk-preferences.png STOCK_GO_BACK.png terp-accessories-archiver-minus.png | |
gtk-add.png gtk-print.png STOCK_GO_DOWN.png terp-accessories-archiver.png | |
gtk-apply.png gtk-print-preview.png STOCK_GO_FORWARD.png terp-accessories-archiver+.png | |
gtk-bold.png gtk-properties.png STOCK_GOTO_BOTTOM.png terp-account.png | |
gtk-cancel.png gtk-quit.png STOCK_GOTO_FIRST.png terp-administration.png | |
gtk-cdrom.png gtk-redo.png STOCK_GOTO_LAST.png terp-calendar.png | |
gtk-clear.png gtk-refresh.png STOCK_GOTO_TOP.png terp-call-start.png | |
gtk-close.png gtk-remove.png STOCK_GO_UP.png t |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Babel==1.3 | |
Cython==0.20.2 | |
Jinja2==2.7.2 | |
Mako==0.9.1 | |
MarkupSafe==0.18 | |
Pillow==2.5.1 | |
http://download.gna.org/pychart/PyChart-1.39.tar.gz | |
PyYAML==3.10 | |
Werkzeug==0.9.4 | |
argparse==1.2.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSERT INTO `cities_city` (`id`, `name`, `code`, `state_id`) VALUES | |
(3, 'CAMILO PONCE ENRIQUEZ', '20115', 29), | |
(4, 'CHORDELEG', '20111', 29), | |
(5, 'CUENCA', '20101', 29), | |
(6, 'EL PAN', '20112', 29), | |
(7, 'GIRON', '20102', 29), | |
(8, 'GUACHAPALA', '20114', 29), | |
(9, 'GUALACEO', '20103', 29), | |
(10, 'NABON', '20104', 29), | |
(11, 'OÑA', '20110', 29), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSERT INTO `cities_state` (`id`, `code`, `name`, `country`) VALUES | |
(29, '201', 'AZUAY', 'EC'), | |
(30, '202', 'BOLIVAR', 'EC'), | |
(31, '203', 'CAÑAR', 'EC'), | |
(32, '204', 'CARCHI', 'EC'), | |
(33, '206', 'CHIMBORAZO', 'EC'), | |
(34, '205', 'COTOPAXI', 'EC'), | |
(35, '107', 'EL ORO', 'EC'), | |
(36, '108', 'ESMERALDAS', 'EC'), | |
(37, '420', 'GALAPAGOS', 'EC'), |
NewerOlder