diff --git a/dev/odoo-server-dev-aa.conf b/dev/odoo-server-dev-aa.conf new file mode 100644 index 00000000..89126ca0 --- /dev/null +++ b/dev/odoo-server-dev-aa.conf @@ -0,0 +1,17 @@ +[options] + +xmlrpc_port = 8080 +; This is the password that allows database operations: +; admin_passwd = admin +db_host = False +db_port = 5432 +db_user = False +db_password = False + +addons_path = ext/odoo/addons,ext/custom-addons,dmi/run1 +; For enterprise use the addons path bellow +; addons_path = ext/enterprise-addons,ext/odoo/addons,ext/3rd-party-addons,ext/custom-addons,dmi/run1 +timezone = Europe/Vienna + +#dbfilter_test = ['.*',] +show_debug = 1 diff --git a/dev/odoo-server-dev-xx.conf b/dev/odoo-server-dev-xx.conf index 7f9451fc..89126ca0 100644 --- a/dev/odoo-server-dev-xx.conf +++ b/dev/odoo-server-dev-xx.conf @@ -8,7 +8,7 @@ db_port = 5432 db_user = False db_password = False -addons_path = ext/odoo/addons,ext/3rd-party-addons,ext/custom-addons,dmi/run1 +addons_path = ext/odoo/addons,ext/custom-addons,dmi/run1 ; For enterprise use the addons path bellow ; addons_path = ext/enterprise-addons,ext/odoo/addons,ext/3rd-party-addons,ext/custom-addons,dmi/run1 timezone = Europe/Vienna diff --git a/ext/custom-addons/dp_custom/static/src/img/favicon.ico b/ext/custom-addons/dp_custom/static/src/img/favicon.ico index 3c33e99b..90f1e91c 100644 Binary files a/ext/custom-addons/dp_custom/static/src/img/favicon.ico and b/ext/custom-addons/dp_custom/static/src/img/favicon.ico differ diff --git a/ext/custom-addons/dp_custom/static/src/img/logo.png b/ext/custom-addons/dp_custom/static/src/img/logo.png index 8387d765..32c1481d 100644 Binary files a/ext/custom-addons/dp_custom/static/src/img/logo.png and b/ext/custom-addons/dp_custom/static/src/img/logo.png differ diff --git a/setup/lib/environments.py b/setup/lib/environments.py index b108107f..c3596b02 100644 --- a/setup/lib/environments.py +++ b/setup/lib/environments.py @@ -24,10 +24,10 @@ Port: %s ENVIRONMENTS = { # Local environments are listed with passwords - 'br': Environment('http://localhost', '8080', 'demo11c_1', 'admin', 'x', 'admin'), - 'aa': Environment('http://localhost', '8080', 'demo11c_1', 'admin', 'x', 'admin'), + 'br': Environment('http://localhost', '8080', 'tz-austria_1', 'admin', 'x', 'admin'), + 'aa': Environment('http://localhost', '8080', 'tz-austria_1', 'admin', 'x', 'admin'), # Remote environments are always listed without passwords! # Do not store them here, you have to type them anyway! - 'test': Environment('https://demo11c_1.datenpol.at', '443', 'demo11c_1', 'admin'), + 'test': Environment('https://tz-austria.datenpol.at', '443', 'tz-austria_1', 'admin'), }