mirror of
https://github.com/odoo/runbot.git
synced 2025-03-21 02:15:46 +07:00

Auto save mechanism when switching tab is unwanted in runbot, most of the time we will use other tabs to get the data necessary for the record we are modifying/creating and we don't care about saving yet. We also prevent closing the window if the record is dirty. Auto save in pager and context switch is still kept.
85 lines
2.7 KiB
Python
85 lines
2.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "runbot",
|
|
'summary': "Runbot",
|
|
'description': "Runbot for Odoo 17.0",
|
|
'author': "Odoo SA",
|
|
'website': "http://runbot.odoo.com",
|
|
'category': 'Website',
|
|
'version': '5.9',
|
|
'application': True,
|
|
'depends': ['base', 'base_automation', 'website'],
|
|
'data': [
|
|
'templates/dockerfile.xml',
|
|
'data/dockerfile_data.xml',
|
|
'data/build_parse.xml',
|
|
'data/error_link.xml',
|
|
'data/runbot_build_config_data.xml',
|
|
'data/runbot_data.xml',
|
|
'data/runbot_error_regex_data.xml',
|
|
'data/website_data.xml',
|
|
|
|
'security/runbot_security.xml',
|
|
'security/ir.model.access.csv',
|
|
'security/ir.rule.csv',
|
|
|
|
'templates/utils.xml',
|
|
'templates/badge.xml',
|
|
'templates/batch.xml',
|
|
'templates/branch.xml',
|
|
'templates/build.xml',
|
|
'templates/build_stats.xml',
|
|
'templates/bundle.xml',
|
|
'templates/commit.xml',
|
|
'templates/dashboard.xml',
|
|
'templates/frontend.xml',
|
|
'templates/git.xml',
|
|
'templates/nginx.xml',
|
|
'templates/build_error.xml',
|
|
|
|
'views/branch_views.xml',
|
|
'views/build_error_link_views.xml',
|
|
'views/build_error_views.xml',
|
|
'views/build_views.xml',
|
|
'views/bundle_views.xml',
|
|
'views/codeowner_views.xml',
|
|
'views/commit_views.xml',
|
|
'views/config_views.xml',
|
|
'views/dashboard_views.xml',
|
|
'views/dockerfile_views.xml',
|
|
'views/error_log_views.xml',
|
|
'views/host_views.xml',
|
|
'views/repo_views.xml',
|
|
'views/res_config_settings_views.xml',
|
|
'views/stat_views.xml',
|
|
'views/upgrade.xml',
|
|
'views/warning_views.xml',
|
|
'views/custom_trigger_wizard_views.xml',
|
|
'wizards/stat_regex_wizard_views.xml',
|
|
'views/menus.xml',
|
|
'views/user.xml',
|
|
],
|
|
'license': 'LGPL-3',
|
|
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'runbot/static/src/libs/diff_match_patch/diff_match_patch.js',
|
|
'runbot/static/src/js/views/**/*',
|
|
'runbot/static/src/js/fields/*',
|
|
],
|
|
'runbot.assets_frontend': [
|
|
'/web/static/lib/bootstrap/dist/css/bootstrap.css',
|
|
'/web/static/src/libs/fontawesome/css/font-awesome.css',
|
|
'/runbot/static/src/css/runbot.css',
|
|
|
|
'/web/static/lib/jquery/jquery.js',
|
|
'/web/static/lib/popper/popper.js',
|
|
#'/web/static/lib/bootstrap/js/dist/util.js',
|
|
'/web/static/lib/bootstrap/js/dist/dropdown.js',
|
|
'/web/static/lib/bootstrap/js/dist/collapse.js',
|
|
'/runbot/static/src/js/runbot.js',
|
|
],
|
|
},
|
|
'post_load': 'runbot_post_load',
|
|
}
|