Skip to content

Commit f76e670

Browse files
ged-odooaans-odooAlessandroLupoagau-odooZynton
committed
[ADD] html_builder: new addon to edit html content
Co-authored-by: aans-odoo <aans@odoo.com> Co-authored-by: Alessandro Lupo <alup@odoo.com> Co-authored-by: Alice Gaudon <agau@odoo.com> Co-authored-by: Antoine Guenet <age@odoo.com> Co-authored-by: Augustin (duau) <duau@odoo.com> Co-authored-by: Benoit Socias <bso@odoo.com> Co-authored-by: chdh-odoo <chdh@odoo.com> Co-authored-by: Davide Bonetto <dabo@odoo.com> Co-authored-by: Denis Rygaert <dery@odoo.com> Co-authored-by: divy-odoo <divy@odoo.com> Co-authored-by: emge-odoo <emge@odoo.com> Co-authored-by: fdardenne <dafl@odoo.com> Co-authored-by: FrancoisGe <fge@odoo.com> Co-authored-by: Géry Debongnie <ged@odoo.com> Co-authored-by: Guillaume Jacquet <guja@odoo.com> Co-authored-by: Jinjiu Liu <jili@odoo.com> Co-authored-by: ksbh-odoo <ksbh@odoo.com> Co-authored-by: Louis (loco) <loco@odoo.com> Co-authored-by: Mohammed Shekha <msh@odoo.com> Co-authored-by: Nicolas Bayet <nby@odoo.com> Co-authored-by: panv-odoo <panv@odoo.com> Co-authored-by: paru-odoo <paru@odoo.com> Co-authored-by: Rahil Ghanchi <rahg@odoo.com> Co-authored-by: Robin Lejeune (role) <role@odoo.com> Co-authored-by: Rodolpho Lima <rcdl@odoo.com> Co-authored-by: Sanjay Sharma <shsa@odoo.com> Co-authored-by: Sébastien Blondiau <blse@odoo.com> Co-authored-by: Sébastien Geelen <sge@odoo.com> Co-authored-by: Serhii Rubanskyi - seru <seru@odoo.com> Co-authored-by: Soukéina Bojabza <sobo@odoo.com> Co-authored-by: Subhadeep <info.subhadeep@gmail.com> Co-authored-by: visp-odoo <visp@odoo.com>
1 parent 768b28a commit f76e670

File tree

1,099 files changed

+70499
-3175
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,099 files changed

+70499
-3175
lines changed

addons/html_builder/__init__.py

Whitespace-only changes.

addons/html_builder/__manifest__.py

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
'name': "HTML Builder",
3+
'summary': "Generic html builder",
4+
'description': """
5+
This addon contains a generic html builder application. It is designed to be
6+
used by the website builder and mass mailing editor.
7+
""",
8+
9+
'author': "Odoo",
10+
'website': "https://www.odoo.com",
11+
12+
# Categories can be used to filter modules in modules listing
13+
# Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml
14+
# for the full list
15+
'category': 'Uncategorized',
16+
'version': '0.1',
17+
18+
# any module necessary for this one to work correctly
19+
# so stupid that we need to use the stupid defineMailModel helper, so we need
20+
# to depend on mail
21+
'depends': ['base', 'html_editor', 'mail'],
22+
23+
'assets': {
24+
# this bundle is lazy loaded when the editor is ready
25+
'html_builder.assets': [
26+
('include', 'web._assets_helpers'),
27+
28+
'html_builder/static/src/bootstrap_overriden.scss',
29+
'web/static/src/scss/pre_variables.scss',
30+
'web/static/lib/bootstrap/scss/_variables.scss',
31+
'web/static/lib/bootstrap/scss/_variables-dark.scss',
32+
'web/static/lib/bootstrap/scss/_maps.scss',
33+
'html_builder/static/src/**/*',
34+
],
35+
'html_builder.inside_builder_style': [
36+
('include', 'web._assets_helpers'),
37+
('include', 'web._assets_primary_variables'),
38+
'web/static/src/scss/bootstrap_overridden.scss',
39+
'html_builder/static/src/**/*.inside.scss',
40+
],
41+
'html_builder.assets_edit_frontend': [
42+
('include', 'website.assets_edit_frontend'),
43+
],
44+
'html_builder.iframe_add_dialog': [
45+
('include', 'web.assets_frontend'),
46+
'html_builder/static/src/snippets/snippet_viewer.scss',
47+
'website/static/src/snippets/**/*.edit.scss',
48+
],
49+
'web.assets_unit_tests': [
50+
'html_builder/static/tests/**/*',
51+
('include', 'html_builder.assets'),
52+
],
53+
},
54+
'license': 'LGPL-3',
55+
}
Lines changed: 13 additions & 0 deletions
Loading
Lines changed: 13 additions & 0 deletions
Loading
Lines changed: 13 additions & 0 deletions
Loading
Lines changed: 13 additions & 0 deletions
Loading
Lines changed: 13 additions & 0 deletions
Loading
Lines changed: 13 additions & 0 deletions
Loading
Lines changed: 13 additions & 0 deletions
Loading
Lines changed: 13 additions & 0 deletions
Loading
Lines changed: 13 additions & 0 deletions
Loading
Lines changed: 31 additions & 0 deletions
Loading
Lines changed: 40 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)