[IMP] Improved _openerp__.py of all modules by replacing demo_xml with demo, init_xml and update_xml with data and adding noupdate

bzr revid: pso@tinyerp.com-20120822130232-un52dks3sclyx8m5
This commit is contained in:
Saurang Suthar(OpenERP) 2012-08-22 18:32:32 +05:30 committed by pso (OpenERP)
parent c78a04bc68
commit 095843797c
117 changed files with 551 additions and 752 deletions

View File

@ -36,8 +36,7 @@ of the depreciation lines.
'website': 'http://www.openerp.com',
'category': 'Accounting & Finance',
'sequence': 32,
'demo' : [ 'account_asset_demo.xml'
],
'demo': [ 'account_asset_demo.xml'],
'test': [
'test/account_asset_demo.yml',
'test/account_asset.yml',

View File

@ -28,20 +28,15 @@ Module for the Check Writing and Check Printing.
================================================
""",
'website': 'http://www.openerp.com',
'depends' : [
'account_voucher',
],
'depends' : ['account_voucher'],
'data': [
'account_check_writing_report.xml',
'account_view.xml',
'account_voucher_view.xml',
'account_check_writing_data.xml',
],
'demo': [
'account_demo.xml',
],
'test': [
],
'demo': ['account_demo.xml'],
'test': [],
'installable': True,
'active': False,
}

View File

@ -34,13 +34,13 @@ In OpenERP, analytic accounts are linked to general accounts but are treated
totally independently. So, you can enter various different analytic operations
that have no counterpart in the general financial accounts.
""",
'data': ['security/analytic_security.xml',
'data': [
'security/analytic_security.xml',
'security/ir.model.access.csv',
'analytic_sequence.xml',
'analytic_view.xml'
],
'demo': [
],
'demo': [],
'installable': True,
'auto_install': False,
'certificate' : '00462253285027988541',

View File

@ -31,12 +31,9 @@ This module is for modifying project view to show some data related to the hr_ex
'author': 'OpenERP S.A.',
'website': 'http://www.openerp.com/',
'depends': ['analytic_contract_hr_expense','project'],
'data': [
'analytic_contract_expense_project_view.xml',
],
'data': ['analytic_contract_expense_project_view.xml'],
'demo': [],
'css' : [
],
'css' : [],
'installable': True,
'auto_install': True,
}

View File

@ -31,12 +31,9 @@ This module is for modifying account analytic view to show some data related to
'author': 'OpenERP S.A.',
'website': 'http://www.openerp.com/',
'depends': ['hr_expense','account_analytic_analysis'],
'data': [
'analytic_contract_hr_expense_view.xml',
],
'data': ['analytic_contract_hr_expense_view.xml'],
'demo': [],
'css' : [
],
'css' : [],
'installable': True,
'auto_install': True,
}

View File

@ -31,7 +31,7 @@ Add "Contract Data" in project view.
====================================
""",
'data': ['analytic_contract_project_view.xml'],
'demo_xml': [],
'demo': [],
'installable': True,
'auto_install': True,
}

View File

@ -40,9 +40,7 @@ anonymization process to recover your previous data.
'author': 'OpenERP SA',
'website': 'http://www.openerp.com',
'depends': ['base'],
'demo': [
'anonymization_demo.xml',
],
'demo': ['anonymization_demo.xml'],
'data': [
'ir.model.fields.anonymization.csv',
'security/ir.model.access.csv',

View File

@ -10,13 +10,7 @@ Allow anonymous access to OpenERP.
'website': 'http://www.openerp.com',
'installable': True,
'depends': ['web'],
'data': [
'auth_anonymous.xml',
],
'js': [
'static/src/js/auth_anonymous.js',
],
'qweb': [
'static/src/xml/auth_anonymous.xml',
],
'data': ['auth_anonymous.xml'],
'js': ['static/src/js/auth_anonymous.js'],
'qweb': ['static/src/xml/auth_anonymous.xml'],
}

View File

@ -98,8 +98,6 @@ Interaction with base_crypt:
The base_crypt module is not compatible with this module, and will disable LDAP
authentication if installed at the same time.
""",
'website' : 'http://www.openerp.com',
'category' : 'Authentication',
'data' : [

View File

@ -32,21 +32,12 @@ Allow users to login through Google OAuth2.
'maintainer': 'OpenERP s.a.',
'website': 'http://www.openerp.com',
'depends': ['base', 'web'],
'data': [
'auth_oauth_data.xml'
],
'update_xml': [
'data': ['auth_oauth_data.xml',
'auth_oauth_view.xml'
],
'js': [
'static/src/js/auth_oauth.js',
],
'css': [
'static/lib/zocial/css/zocial.css',
],
'qweb': [
'static/src/xml/auth_oauth.xml',
],
'js': ['static/src/js/auth_oauth.js'],
'css': ['static/lib/zocial/css/zocial.css'],
'qweb': ['static/src/xml/auth_oauth.xml'],
'installable': True,
'auto_install': False,
}

View File

@ -32,18 +32,10 @@ Allow users to login through OpenID.
'maintainer': 'OpenERP s.a.',
'website': 'http://www.openerp.com',
'depends': ['base', 'web'],
'data': [
'res_users.xml',
],
'js': [
'static/src/js/auth_openid.js',
],
'css': [
'static/src/css/openid.css',
],
'qweb': [
'static/src/xml/auth_openid.xml',
],
'data': ['res_users.xml'],
'js': ['static/src/js/auth_openid.js'],
'css': ['static/src/css/openid.css'],
'qweb': ['static/src/xml/auth_openid.xml'],
'external_dependencies': {
'python' : ['openid'],
},

View File

@ -10,16 +10,8 @@ Allow users to reset their password from the login page.
'website': 'http://www.openerp.com',
'installable': True,
'depends': ['auth_anonymous', 'email_template'],
'data': [
'auth_reset_password.xml',
],
'js': [
'static/src/js/reset_password.js',
],
'css': [
'static/src/css/reset_password.css',
],
'qweb': [
'static/src/xml/reset_password.xml',
],
'data': ['auth_reset_password.xml'],
'js': ['static/src/js/reset_password.js'],
'css': ['static/src/css/reset_password.css'],
'qweb': ['static/src/xml/reset_password.xml'],
}

View File

@ -31,13 +31,7 @@ Allow users to sign up.
'website': 'http://www.openerp.com',
'installable': True,
'depends': ['base_setup'],
'data': [
'res_config.xml',
],
'js': [
'static/src/js/auth_signup.js',
],
'qweb': [
'static/src/xml/auth_signup.xml',
],
'data': ['res_config.xml'],
'js': ['static/src/js/auth_signup.js'],
'qweb': ['static/src/xml/auth_signup.xml'],
}

View File

@ -60,9 +60,8 @@ def _create_module(self, cr, uid, ids, context=None):
"category" : "%(category)s",
"description": \"\"\"%(description)s\"\"\",
"depends" : [%(depends)s],
"init_xml" : [ ],
"demo_xml" : [ %(demo_name)s],
"update_xml" : [%(update_name)s],
"demo" : [ %(demo_name)s],
"data" : [%(update_name)s],
"installable": True
} """ % data
filewrite = {

View File

@ -11,9 +11,7 @@ Common base for tools modules.
Creates menu link for Tools from where tools like survey, lunch, idea are accessible if installed.
""",
'data': [
'tools_view.xml'
],
'data': ['tools_view.xml'],
'installable': True,
'certificate' : '00571588675379342237'
}

View File

@ -39,16 +39,9 @@ The user can also publish notes.
'board_view.xml',
'board_mydashboard_view.xml'
],
'js': [
'static/src/js/dashboard.js',
],
'css': [
'static/src/css/dashboard.css',
],
'qweb': [
'static/src/xml/*.xml',
],
'js': ['static/src/js/dashboard.js'],
'css': ['static/src/css/dashboard.css'],
'qweb': ['static/src/xml/*.xml'],
'installable': True,
'auto_install': False,
'certificate': '0076912305725',

View File

@ -42,9 +42,7 @@ automatically new claims based on incoming emails.
'res_config_view.xml',
'crm_claim_data.xml',
],
'demo': [
'crm_claim_demo.xml',
],
'demo': ['crm_claim_demo.xml'],
'test': ['test/process/claim.yml',
'test/ui/claim_demo.yml'
],

View File

@ -21,8 +21,8 @@
{
'category': 'Customer Relationship Management',
'name': 'Helpdesk',
'category': 'Customer Relationship Management',
'version': '1.0',
'description': """
Helpdesk Management.
@ -43,9 +43,7 @@ and categorize your interventions with a channel and a priority level.
'report/crm_helpdesk_report_view.xml',
'crm_helpdesk_data.xml',
],
'demo': [
'crm_helpdesk_demo.xml',
],
'demo': ['crm_helpdesk_demo.xml'],
'test': ['test/process/help-desk.yml'],
'installable': True,
'auto_install': False,

View File

@ -38,9 +38,7 @@ You can also use the geolocalization without using the GPS coordinates.
""",
'author': 'OpenERP SA',
'depends': ['crm', 'account'],
'demo': [
'res_partner_demo.xml',
],
'demo': ['res_partner_demo.xml'],
'data': [
'security/ir.model.access.csv',
'res_partner_view.xml',
@ -49,9 +47,7 @@ You can also use the geolocalization without using the GPS coordinates.
'report/crm_lead_report_view.xml',
'report/crm_partner_report_view.xml',
],
'test': [
'test/partner_assign.yml'
],
'test': ['test/partner_assign.yml'],
'installable': True,
'auto_install': False,
'certificate': '00503409558942442061',

View File

@ -30,12 +30,8 @@ Todo list for CRM leads and opportunities.
""",
'author': 'OpenERP SA',
'depends': ['crm','project_gtd'],
'data': [
'crm_todo_view.xml',
],
'demo': [
'crm_todo_demo.xml',
],
'data': ['crm_todo_view.xml'],
'demo': ['crm_todo_demo.xml'],
'installable': True,
'auto_install': False,
}

View File

@ -41,9 +41,7 @@ invoices from picking, OpenERP is able to add and compute the shipping line.
'delivery_data.xml'
],
'demo': ['delivery_demo.xml'],
'test': [
'test/delivery_cost.yml',
],
'test': ['test/delivery_cost.yml'],
'installable': True,
'auto_install': False,
'certificate': '0033981912253',

View File

@ -56,9 +56,7 @@ ATTENTION:
'board_document_view.xml',
],
'demo': [ 'document_demo.xml','board_document_demo.xml'],
'test': [
'test/document_test2.yml',
],
'test': ['test/document_test2.yml'],
'installable': True,
'auto_install': False,
'certificate': '0070515416461',

View File

@ -38,12 +38,8 @@ Web pages
'security/document_page_security.xml',
'security/ir.model.access.csv',
],
'demo': [
'document_page_demo.xml'
],
'test': [
'test/document_page_test00.yml'
],
'demo': ['document_page_demo.xml'],
'test': ['test/document_page_test00.yml'],
'installable': True,
'auto_install': False,
'certificate': '0086363630317',
@ -52,8 +48,6 @@ Web pages
'static/src/lib/wiky/wiky.js',
'static/src/js/document_page.js'
],
'css' : [
'static/src/css/document_page.css'
],
'css' : ['static/src/css/document_page.css'],
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -36,21 +36,11 @@ documentation at http://doc.openerp.com.
'website': 'http://www.openerp.com',
'depends': ['base', 'email_template'],
'icon': '/edi/static/src/img/knowledge.png',
'data': [
'security/ir.model.access.csv',
],
'test': [
'test/edi_partner_test.yml',
],
'js': [
'static/src/js/edi.js',
],
'css': [
'static/src/css/edi.css'
],
'qweb': [
'static/src/xml/*.xml',
],
'data': ['security/ir.model.access.csv'],
'test': ['test/edi_partner_test.yml'],
'js': ['static/src/js/edi.js'],
'css': ['static/src/css/edi.css'],
'qweb': ['static/src/xml/*.xml'],
'installable': True,
'auto_install': False,
'certificate': '002046536359186',

View File

@ -62,9 +62,7 @@ campaigns on any OpenERP document.
'wizard/mail_compose_message_view.xml',
'security/ir.model.access.csv'
],
'demo': [
'res_partner_demo.yml',
],
'demo': ['res_partner_demo.yml'],
'installable': True,
'auto_install': False,
'certificate' : '00817073628967384349',

View File

@ -39,9 +39,7 @@ this event.
""",
'author': 'OpenERP SA',
'depends': ['event','sale','sale_crm'],
'data': [
'event_sale_view.xml',
],
'data': ['event_sale_view.xml'],
'demo': ['event_demo.xml'],
'test': ['test/confirm.yml'],
'installable': True,

View File

@ -61,9 +61,7 @@ For more specific needs, you may also assign custom-defined actions
'security/ir.model.access.csv',
'fetchmail_installer_view.xml'
],
'demo': [
],
'demo': [],
'installable': True,
'auto_install': False,
'certificate' : '00692978332890137453',

View File

@ -57,9 +57,7 @@ You can manage:
'hr_data.xml',
'res_config_view.xml',
],
'demo': [
'hr_demo.xml',
],
'demo': ['hr_demo.xml'],
'test': [
'test/open2recruit2close_job.yml',
'test/hr_demo.yml',

View File

@ -45,9 +45,7 @@ You can assign several contracts per employee.
'hr_contract_data.xml'
],
'demo': [],
'test': [
'test/test_hr_contract.yml'
],
'test': ['test/test_hr_contract.yml'],
'installable': True,
'auto_install': False,
'certificate': '0046298028637',

View File

@ -59,9 +59,7 @@ re-invoice your customer's expenses if your work by project.
'board_hr_expense_view.xml',
'hr_expense_installer_view.xml',
],
'demo': [
'hr_expense_demo.xml',
],
'demo': ['hr_expense_demo.xml'],
'test': [
'test/expense_demo.yml',
'test/expense_process.yml',

View File

@ -64,9 +64,7 @@ Generic Payroll system.
# 'test/payroll_register.yml',
# 'test/hr_payroll_report.yml',
],
'demo': [
'hr_payroll_demo.xml'
],
'demo': ['hr_payroll_demo.xml'],
'installable': True,
'auto_install': False,
'certificate' : '001046261404562128861',

View File

@ -39,15 +39,9 @@ Generic Payroll system Integrated with Accounting.
'account',
'hr_expense'
],
'data': [
'hr_payroll_account_view.xml',
],
'demo': [
'hr_payroll_account_demo.xml'
],
'test': [
'test/hr_payroll_account.yml',
],
'data': ['hr_payroll_account_view.xml'],
'demo': ['hr_payroll_account_demo.xml'],
'test': ['test/hr_payroll_account.yml'],
'installable': True,
'auto_install': False,
'certificate' : '00923971112835220957',

View File

@ -60,13 +60,9 @@ system to store and search in your CV base.
'res_config_view.xml',
'hr_recruitment_data.xml'
],
'demo': [
'hr_recruitment_demo.yml',
],
'demo': ['hr_recruitment_demo.yml'],
'js': ['static/src/js/hr_recruitment.js'],
'test': [
'test/recruitment_process.yml',
],
'test': ['test/recruitment_process.yml'],
'installable': True,
'auto_install': False,
'certificate': '001073437025460275621',

View File

@ -48,9 +48,7 @@ reports.""",
'wizard/hr_timesheet_invoice_create_view.xml',
'wizard/hr_timesheet_invoice_create_final_view.xml',
],
'demo': [
'hr_timesheet_invoice_demo.xml',
],
'demo': ['hr_timesheet_invoice_demo.xml'],
'test': ['test/test_hr_timesheet_invoice.yml',
'test/hr_timesheet_invoice_report.yml',
],

View File

@ -66,9 +66,7 @@ The validation can be configured in the company:
'hr_timesheet_sheet_data.xml',
'res_config_view.xml',
],
'demo': ['hr_timesheet_sheet_demo.xml',
],
'demo': ['hr_timesheet_sheet_demo.xml'],
'test':['test/test_hr_timesheet_sheet.yml'],
'installable': True,
'auto_install': False,

View File

@ -42,11 +42,8 @@ Once installed, check the menu 'Ideas' in the 'Tools' main menu.""",
'idea_view.xml',
'idea_workflow.xml',
],
'demo': [
'idea_data.xml'
],
'test':[
],
'demo': ['idea_data.xml'],
'test':[],
'installable': True,
'images': [],
}

View File

@ -34,7 +34,6 @@ The module adds google contact in partner address and add google calendar events
'sync_google_calendar_view.xml',
'wizard/import_google_data_view.xml',
'wizard/google_import_message_view.xml'
],
'demo': [],
'test': [

View File

@ -31,9 +31,7 @@ Plan contable argentino e impuestos de acuerdo a disposiciones vigentes
'author': ['Cubic ERP'],
'website': 'http://cubicERP.com',
'category': 'Localization/Account Charts',
'depends': [
'account_chart',
],
'depends': ['account_chart'],
'data':[
'account_tax_code.xml',
'l10n_ar_chart.xml',

View File

@ -18,7 +18,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{ 'name': 'Belgium - Accounting',
{
'name': 'Belgium - Accounting',
'version': '1.1',
'category': 'Localization/Account Charts',
'description': """

View File

@ -40,9 +40,7 @@ Belgian Payroll Rules.
""",
'auto_install': False,
'demo': [
'l10n_be_hr_payroll_demo.xml',
],
'demo': ['l10n_be_hr_payroll_demo.xml'],
'data':[
'l10n_be_hr_payroll_view.xml',
'l10n_be_hr_payroll_data.xml',

View File

@ -30,8 +30,7 @@ Accounting Data for Belgian Payroll Rules.
""",
'auto_install': True,
'demo': [
],
'demo': [],
'data':[
'l10n_be_hr_payroll_account_data.xml',
'data/hr.salary.rule.csv',

View File

@ -68,14 +68,13 @@ TODO :
'author': 'Camptocamp',
'category': 'Localization/Account Charts',
'website': 'http://www.camptocamp.com',
'depends': ['account_cancel',
'base_iban',
'account_payment',
'account_voucher',
'report_webkit',
'l10n_multilang'],
'l10n_multilang'
],
'data': ['dta_data.xml',
'journal_data.xml',
#FR sterchi chart data
@ -90,19 +89,20 @@ TODO :
'account_invoice.xml',
'bank_view.xml',
'security/ir.model.access.csv',
'report/report_webkit_html_view.xml'],
'report/report_webkit_html_view.xml'
],
'demo': ['demo/demo.xml',
'demo/dta_demo.xml'],
'demo/dta_demo.xml'
],
'test': ['test/l10n_ch_report.yml',
'test/l10n_ch_dta.yml',
#TODO: uncomment the 2 following tests once they are fixed
#'test/l10n_ch_v11.yml',
#'test/l10n_ch_v11_part.yml'
],
'auto_install': False,
'installable': True,
'certificate': '001103836064567088989',
'images': ['images/config_chart_l10n_ch.jpeg','images/l10n_ch_chart.jpeg']}
'images': ['images/config_chart_l10n_ch.jpeg','images/l10n_ch_chart.jpeg']
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -30,9 +30,7 @@ Plan contable chileno e impuestos de acuerdo a disposiciones vigentes
'author': 'Cubic ERP',
'website': 'http://cubicERP.com',
'category': 'Localization/Account Charts',
'depends': [
'account_chart',
],
'depends': ['account_chart'],
'data': [
'account_tax_code.xml',
'l10n_cl_chart.xml',

View File

@ -65,7 +65,6 @@ configuration of their taxes and fiscal positions manually.
'security/ir.model.access.csv',
'wizard/fr_report_bilan_view.xml',
'wizard/fr_report_compute_resultant_view.xml',
],
'test': ['test/l10n_fr_report.yml'],
'demo': [],

View File

@ -38,7 +38,8 @@ Greek accounting chart and localization.
'account_full_chart.xml',
'account_tax.xml',
'account_tax_vat.xml',
'l10n_gr_wizard.xml'],
'l10n_gr_wizard.xml'
],
'installable': True,
'certificate': '001146244418929008029',
'images': ['images/config_chart_l10n_gr.jpeg','images/l10n_gr_chart.jpeg'],

View File

@ -49,8 +49,7 @@ Italian accounting chart and localization.
'data/account.fiscal.position.template.csv',
'l10n_chart_it_generic.xml',
],
'demo': [
],
'demo': [],
'installable': True,
'auto_install': False,
'certificate' : '00926677190009155165',

View File

@ -43,7 +43,6 @@ Seddik au cours du troisième trimestre 2010.""",
'l10n_ma_wizard.xml',
'l10n_ma_tax.xml',
'l10n_ma_journal.xml',
],
'demo' : [],
'auto_install': False,

View File

@ -33,7 +33,8 @@ Mexican accounting chart and localization.
'depends': ['account', 'base_vat', 'account_chart'],
'demo': [],
'data': ['account_tax_code.xml','account_chart.xml',
'account_tax.xml','l10n_chart_mx_wizard.xml'],
'account_tax.xml','l10n_chart_mx_wizard.xml'
],
'auto_install': False,
'installable': True,
'certificate': '00858539161332598061',

View File

@ -32,17 +32,14 @@ SUNAT 2011 (PCGE 2010).
'author': ['Cubic ERP'],
'website': 'http://cubicERP.com',
'category': 'Localization/Account Charts',
'depends': [
'account_chart',
],
'depends': ['account_chart'],
'data':[
'account_tax_code.xml',
'l10n_pe_chart.xml',
'account_tax.xml',
'l10n_pe_wizard.xml',
],
'demo': [
],
'demo': [],
'active': False,
'installable': True,
'certificate' : '0045046493412',

View File

@ -37,7 +37,8 @@ VAT 0%, 7% i 22%. Moduł ustawia też konta do kupna i sprzedaży towarów zakł
'depends' : ['account', 'base_iban', 'base_vat', 'account_chart'],
'demo' : [],
'data' : ['account_tax_code.xml','account_chart.xml',
'account_tax.xml','l10n_chart_pl_wizard.xml'],
'account_tax.xml','l10n_chart_pl_wizard.xml'
],
'auto_install': False,
'installable': True,
'certificate' : '00885794372803776829',

View File

@ -42,9 +42,7 @@ This is the latest UK OpenERP localisation necessary to run OpenERP accounting f
'data/res.country.state.csv',
'l10n_uk_wizard.xml',
],
'demo' : [
'demo/demo.xml'
],
'demo' : ['demo/demo.xml'],
'installable': 'True',
'images': ['images/config_chart_l10n_uk.jpeg','images/l10n_uk_chart.jpeg'],
}

View File

@ -28,9 +28,7 @@ United States - Chart of accounts.
==================================
""",
'website': 'http://www.openerp.com',
'depends': [
'account_chart',
],
'depends': ['account_chart'],
'data': [
'l10n_us_account_type.xml',
'account_chart_template.xml',

View File

@ -35,9 +35,7 @@ Provide Templates for Chart of Accounts, Taxes for Uruguay.
""",
'license': 'AGPL-3',
'depends' : [
'account',
],
'depends': ['account'],
'data': [
'account_types.xml',
'taxes_code_template.xml',

View File

@ -37,7 +37,8 @@ Este módulo es para manejar un catálogo de cuentas ejemplo para Venezuela.
'depends': ['account', 'base_vat', 'account_chart'],
'demo': [],
'data': ['account_tax_code.xml','account_chart.xml',
'account_tax.xml','l10n_chart_ve_wizard.xml'],
'account_tax.xml','l10n_chart_ve_wizard.xml'
],
'auto_install': False,
'installable': True,
'certificate': '00763145921185574557',

View File

@ -75,9 +75,7 @@ The main features of the module are:
'mail_alias_view.xml',
'res_users_view.xml',
],
'demo': [
'data/mail_demo.xml',
],
'demo': ['data/mail_demo.xml'],
'installable': True,
'auto_install': False,
'application': True,

View File

@ -64,12 +64,8 @@ input segments, workflow.
'security/marketing_campaign_security.xml',
'security/ir.model.access.csv'
],
'demo': [
'marketing_campaign_demo.xml',
],
'test': [
'test/marketing_campaign.yml',
],
'demo': ['marketing_campaign_demo.xml'],
'test': ['test/marketing_campaign.yml'],
'installable': True,
'auto_install': False,
'certificate': '00421723279617928365',

View File

@ -36,9 +36,7 @@ Creates demo data like leads, campaigns and segments for the module marketing_ca
""",
'website': 'http://www.openerp.com',
'data': [],
'demo': [
'marketing_campaign_demo.xml',
],
'demo': ['marketing_campaign_demo.xml'],
'installable': True,
'auto_install': False,
'certificate': '001005497972871352957',

View File

@ -87,9 +87,7 @@ Dashboard provided by this module:
'board_manufacturing_view.xml',
'res_config_view.xml',
],
'demo': [
'mrp_demo.xml',
],
'demo': ['mrp_demo.xml'],
#TODO: This yml tests are needed to be completely reviewed again because the product wood panel is removed in product demo as it does not suit for new demo context of computer and consultant company
# so the ymls are too complex to change at this stage
'test': [

View File

@ -66,7 +66,8 @@ So, that we can compare the theoretic delay and real delay.
'mrp_operations_workflow_instance.xml'
],
'demo': ['mrp_operation_data.xml',
'mrp_operations_demo.yml'],
'mrp_operations_demo.yml'
],
'test': [
# 'test/workcenter_operations.yml',
],

View File

@ -55,7 +55,8 @@ The following topics should be covered by this module:
'test/test_mrp_repair_b4inv.yml',
'test/test_mrp_repair_afterinv.yml',
'test/test_mrp_repair_cancel.yml',
'test/mrp_repair_report.yml'],
'test/mrp_repair_report.yml'
],
'installable': True,
'auto_install': False,
'certificate': '0060814381277',

View File

@ -47,9 +47,7 @@ With this module:
'mrp_subproduct_view.xml'
],
'demo': [],
'test': [
'test/mrp_subproduct.yml'
],
'test': ['test/mrp_subproduct.yml'],
'installable': True,
'auto_install': False,
'certificate': '0050060616733',

View File

@ -37,12 +37,8 @@ This module is the base module for other multi-company modules.
'sale',
'project',
],
'data': [
'res_company_view.xml'
],
'demo': [
'multi_company_demo.xml'
],
'data': ['res_company_view.xml'],
'demo': ['multi_company_demo.xml'],
'installable': True,
'auto_install': False,
'certificate' : '001115526094673097933',

View File

@ -13,17 +13,13 @@ pads (by default, http://ietherpad.com/).
'author': 'OpenERP SA',
'website': 'http://openerp.com',
'depends': ['base'],
'data': [
'res_company.xml'
],
'data': ['res_company.xml'],
'installable': True,
'auto_install': False,
'web': True,
'certificate' : '001183545978470526509',
'js': ['static/src/js/pad.js'],
'qweb' : [
'static/src/xml/*.xml',
],
'qweb' : ['static/src/xml/*.xml'],
'images': ['static/src/img/pad_link_companies.jpeg'],
'css': ['static/src/css/etherpad.css',],
}

View File

@ -30,9 +30,7 @@ The common interface for plug-in.
""",
'author': 'OpenERP SA',
'website': 'http://www.openerp.com',
'depends': [
'base',
],
'depends': ['base'],
'data': [],
'demo': [],
'test': [],

View File

@ -50,9 +50,7 @@ very handy when used in combination with the module 'share'.
'wizard/portal_wizard_view.xml',
'wizard/share_wizard_view.xml',
],
'demo': [
'portal_demo.xml',
],
'demo': ['portal_demo.xml'],
'installable': True,
}

View File

@ -24,7 +24,7 @@
'name': 'Portal Claim',
'version': '0.1',
'category': 'Tools',
'complexity': "easy",
'complexity': 'easy',
'description': """
This module adds claim menu and features to your portal if claim and portal are installed.
==========================================================================================

View File

@ -31,15 +31,10 @@ This module adds a contact page (with a contact form creating a lead when submit
""",
'author': 'OpenERP SA',
'depends': ['crm','portal'],
'data': [
'wizard/contact_view.xml',
],
'installable': True
, 'auto_install':True,
'data': ['wizard/contact_view.xml'],
'installable': True,
'auto_install': True,
'category': 'Hidden',
'css': [
'static/src/css/portal_crm.css',
],
'css': ['static/src/css/portal_crm.css'],
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -38,9 +38,6 @@ This module adds a list of employees to your portal's contact page if hr and por
'installable': True,
'auto_install': True,
'category': 'Hidden',
'css': [
'static/src/css/portal_hr_employees.css',
],
'css': ['static/src/css/portal_hr_employees.css'],
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -39,8 +39,6 @@ This module adds issue menu and features to your portal if project_issue and por
'installable': True,
'auto_install': True,
'category': 'Hidden',
'css': [
'static/src/css/portal_project_issue.css',
],
'css': ['static/src/css/portal_project_issue.css'],
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -70,9 +70,7 @@ Dashboard for project management that includes:
'board_project_view.xml',
'res_config_view.xml',
],
'demo': [
'project_demo.xml',
],
'demo': ['project_demo.xml'],
'test': [
'test/project_demo.yml',
'test/project_process.yml',

View File

@ -56,9 +56,7 @@ performing those tasks.
'wizard/project_gtd_fill_view.xml',
],
'demo': ['project_gtd_demo.xml'],
'test':[
'test/task_timebox.yml'
],
'test':['test/task_timebox.yml'],
'installable': True,
'application': True,
'auto_install': False,

View File

@ -64,9 +64,7 @@ and decide on their status as they evolve.
'auto_install': False,
'application': True,
'certificate': '001236490750848623845',
'js': [
'static/src/js/project_issue.js',
],
'js': ['static/src/js/project_issue.js'],
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -34,9 +34,7 @@ the tasks will change accordingly.
'depends': ['base', 'project'],
'data': [],
'demo': [],
'test' : [
'test/deadline_change.yml'
],
'test': ['test/deadline_change.yml'],
'installable': True,
'auto_install': False,
'certificate': '0057235475485',

View File

@ -34,9 +34,7 @@ Makes the Reporting Hidden Configuration available from where you can install
modules like base_report_designer and base_report_creator.
""",
'website': 'http://www.openerp.com',
'data': [
'security/ir.model.access.csv',
],
'data': ['security/ir.model.access.csv'],
'demo': [],
'installable': True,
'auto_install': False,

View File

@ -46,9 +46,7 @@ You have to create the print buttons by calling the wizard. For more details see
'category': 'Reporting',
'author': 'Camptocamp SA - NBessi',
'url': 'http://www.camptocamp.com/',
'data': ['report_webkit_html_view.xml',
],
'data': ['report_webkit_html_view.xml'],
'installable': True,
'auto_install': False,
'certificate': '00436592682591421981',

View File

@ -40,8 +40,7 @@ associated to every resource. It also manages the leaves of every resource.
'security/ir.model.access.csv',
'resource_view.xml',
],
'demo': ['resource_demo.xml'
],
'demo': ['resource_demo.xml'],
'test': [
'test/resource.yml',
'test/duplicate_resource.yml',

View File

@ -38,7 +38,8 @@ modules.
'website': 'http://www.openerp.com',
'images': ['images/crm_statistics_dashboard.jpeg', 'images/opportunity_to_quote.jpeg'],
'depends': ['sale', 'crm'],
'data': ['wizard/crm_make_sale_view.xml',
'data': [
'wizard/crm_make_sale_view.xml',
'sale_crm_view.xml',
'process/sale_crm_process.xml',
'security/sale_crm_security.xml',

View File

@ -38,9 +38,7 @@ You can add the following additional dates to a sale order:
'website': 'http://www.openerp.com',
'images': ['images/sale_order_dates.jpeg'],
'depends': ['sale'],
'data': [
'sale_order_dates_view.xml',
],
'data': ['sale_order_dates_view.xml'],
'demo': [],
'test': [],
'installable': True,

View File

@ -53,9 +53,7 @@ synchronization with other companies.
'certificate' : '001301246528927038493',
'js': ['static/src/js/share.js'],
'css': ['static/src/css/share.css'],
'qweb' : [
'static/src/xml/*.xml',
],
'qweb' : ['static/src/xml/*.xml'],
'images': ['images/share_wizard.jpeg','images/sharing_wizard_step1.jpeg', 'images/sharing_wizard_step2.jpeg'],
}

View File

@ -35,7 +35,8 @@ user name and password for the invitation of the survey.
""",
'author': 'OpenERP SA',
'depends': ['base_tools', 'mail'],
'data': ['survey_report.xml',
'data': [
'survey_report.xml',
'survey_data.xml',
'wizard/survey_selection.xml',
'wizard/survey_answer.xml',
@ -46,7 +47,8 @@ user name and password for the invitation of the survey.
'wizard/survey_print_answer.xml',
'wizard/survey_browse_answer.xml',
'wizard/survey_print.xml',
'wizard/survey_send_invitation.xml'],
'wizard/survey_send_invitation.xml'
],
'demo': ['survey_demo.xml'],
'test': [
'test/draft2open2close_survey.yml',

View File

@ -9,19 +9,11 @@ OpenERP Web LinkedIn module.
============================
This module provides the Integration of the LinkedIn with OpenERP.
""",
'data': [
'web_linkedin_view.xml',
],
'data': ['web_linkedin_view.xml'],
'depends' : ['base'],
'js': [
'static/src/js/*.js'
],
'css': [
'static/src/css/*.css'
],
'qweb': [
'static/src/xml/*.xml'
],
'js': ['static/src/js/*.js'],
'css': ['static/src/css/*.css'],
'qweb': ['static/src/xml/*.xml'],
'installable': True,
'auto_install': False,
}

View File

@ -34,15 +34,9 @@ Add a Shortcut icon besides the views title in order to add/remove a shortcut.
'website': 'http://openerp.com',
'depends': ['base'],
'data': [],
'js' : [
'static/src/js/web_shortcuts.js',
],
'css' : [
'static/src/css/web_shortcuts.css',
],
'qweb' : [
'static/src/xml/*.xml',
],
'js' : ['static/src/js/web_shortcuts.js'],
'css' : ['static/src/css/web_shortcuts.css'],
'qweb' : ['static/src/xml/*.xml'],
'installable': True,
'auto_install': False,
}