mirror of
https://github.com/odoo/runbot.git
synced 2025-03-20 18:05:46 +07:00

The python steps can be long and interresting to track but the change is actually hard to see since a block of code is logged instead of the diff. Also, the whitespaces are not preserverd since we are note in a <pre> block making it hard to read. This proposes an alternative to display python code tracking values as a diff with options to copu the raw content of the old and new version. (as well as showing unchanged lines or not)
83 lines
2.6 KiB
Python
83 lines
2.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "runbot",
|
|
'summary': "Runbot",
|
|
'description': "Runbot for Odoo 15.0",
|
|
'author': "Odoo SA",
|
|
'website': "http://runbot.odoo.com",
|
|
'category': 'Website',
|
|
'version': '5.3',
|
|
'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_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/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',
|
|
],
|
|
}
|
|
|
|
}
|