-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy path__manifest__.py
96 lines (95 loc) · 3.51 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# Copyright Nova Code (http://www.novacode.nl)
# See LICENSE file for full licensing details.
{
'name': 'Forms',
'version': '15.0.16.18',
'summary': 'Form Builder for backend, portal, website and embedded forms, to collect any information you need for your business.',
'license': 'LGPL-3',
'author': 'Nova Code',
'website': 'https://www.novacode.nl',
'live_test_url': 'https://demo15.novacode.nl',
'category': 'Forms/Forms',
'depends': ['web', 'portal', 'mail'],
'application': True,
'installable': True,
'post_init_hook': 'post_init_hook',
'uninstall_hook': 'uninstall_hook',
'data': [
# the ordering is important
'data/formio_builder_js_options_data.xml',
'data/formio_default_asset_css_data.xml',
'data/formio_version_data.xml',
'data/formio_asset_data.xml',
'data/formio_extra_asset_data.xml',
'data/formio_default_version_data.xml',
'data/ir_config_param.xml',
'data/ir_cron_data.xml',
'data/mail_activity_data.xml',
'data/mail_template_data.xml',
# translations
'data/formio_translations_sources.xml',
'data/formio_translations_nl.xml',
'data/formio_translations_nl_BE.xml',
'data/formio_translations_pt_BR.xml',
'data/formio_translations_zh_CN.xml',
# security
'security/formio_security.xml',
'security/ir_model_access.xml',
'security/ir_rule.xml',
# views
'views/formio_builder_js_options_views.xml',
'views/formio_builder_translation_views.xml',
'views/formio_builder_views.xml',
'views/formio_extra_asset_views.xml',
'views/formio_form_views.xml',
'views/formio_res_model_views.xml',
'views/formio_translation_source_views.xml',
'views/formio_translation_views.xml',
'views/formio_version_github_tag_views.xml',
'views/formio_version_translation_views.xml',
'views/formio_version_views.xml',
'views/formio_menu.xml',
'views/res_config_settings_views.xml',
'views/res_lang_views.xml',
'views/ir_actions_views.xml',
'views/mail_activity_views.xml',
# formio templates
'views/formio_builder_templates.xml',
'views/formio_form_templates.xml',
'views/formio_portal_templates.xml',
'views/formio_public_templates.xml',
# wizards
'wizard/formio_version_github_checker_wizard.xml'
],
'assets': {
'web.assets_backend': [
# builder
'formio/static/src/css/formio_builder.css',
'formio/static/src/js/views/formio_builder.js',
# form
'formio/static/src/css/formio_form.css',
'formio/static/src/js/views/formio_form.js',
# misc
'formio/static/src/js/views/form_controller.js',
'formio/static/src/js/tours/formio.js',
'formio/static/lib/iframe-resizer/iframeResizer.min.js'
],
'web.assets_frontend': [
'formio/static/src/css/formio_portal_form.css',
'formio/static/lib/iframe-resizer/iframeResizer.min.js',
'formio/static/src/js/formio_form_container.js'
],
'web.assets_common': [
'formio/static/lib/iframe-resizer/iframeResizer.min.js',
],
'web.assets_qweb': [
'formio/static/src/xml/formio.xml',
],
},
'demo': [
'data/formio_demo_data.xml',
],
'images': [
'static/description/banner.gif',
]
}