Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 19 additions & 12 deletions runbot/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,21 +63,28 @@

'assets': {
'web.assets_backend': [
'runbot/static/src/libs/diff_match_patch/diff_match_patch.js',
'runbot/static/src/js/fields/*',
'runbot/static/libs/diff_match_patch/diff_match_patch.js',
'runbot/static/src/diff_match_patch_module.js',
'runbot/static/src/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',
('include', 'web.assets_frontend_minimal'), # Pray the gods this stays named correctly

'/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',
],
'runbot/static/libs/bootstrap/css/bootstrap.css',
'runbot/static/libs/fontawesome/css/font-awesome.css',
'runbot/static/src/css/runbot.css',
'runbot/static/libs/jquery/jquery.js',
'runbot/static/libs/popper/popper.js',
'runbot/static/libs/bootstrap/js/bootstrap.bundle.js',

'runbot/static/libs/owl.js',
'runbot/static/src/owl_module.js',

'runbot/static/src/vendored/**/*', # Vendored files coming from odoo modules

'runbot/static/src/frontend/root.js',
'runbot/static/src/frontend/runbot.js',
]
},
'post_load': 'runbot_post_load',
}
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Original file line number Diff line number Diff line change
Expand Up @@ -2235,7 +2235,7 @@ var diff_match_patch = function() {
// /** @suppress {globalThis} */
// this['DIFF_EQUAL'] = DIFF_EQUAL;

export {
(typeof window !== "undefined" ? window : this).DiffMatchPatch = {
diff_match_patch,
DIFF_DELETE,
DIFF_INSERT,
Expand Down
Loading