X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=addons%2Fknowledge%2Finstaller.py;h=0f6b29597de144d12ba90567064e5062444e862a;hb=81a1eb18a1b91f1950156dc3ed03edba8cb02f75;hp=f3ee456944d10b7c6c59e5b20da30eff36e84144;hpb=38ec2626c1ac01a4f1aa80c5168e0d3a3930f301;p=odoo%2Fodoo.git diff --git a/addons/knowledge/installer.py b/addons/knowledge/installer.py index f3ee456..0f6b295 100644 --- a/addons/knowledge/installer.py +++ b/addons/knowledge/installer.py @@ -21,15 +21,14 @@ from osv import fields, osv class knowledge_installer(osv.osv_memory): - _name = 'knowledge.installer' - _inherit = 'res.config.installer' + _inherit = 'base.setup.installer' _columns = { # Knowledge Management 'document_ftp':fields.boolean('Shared Repositories (FTP)', - help="Provides an FTP access to your OpenERP's Document " - "Management System. Lets you access attachments and " - "virtual documents through a standard FTP client."), + help="Provides an FTP access to your OpenERP's " + "Document Management System. It lets you access attachments " + "and virtual documents through a standard FTP client."), 'document_webdav':fields.boolean('Shared Repositories (WebDAV)', help="Provides a WebDAV access to your OpenERP's Document " "Management System. Lets you access attachments and " @@ -38,12 +37,12 @@ class knowledge_installer(osv.osv_memory): help="Lets you create wiki pages and page groups in order " "to keep track of business knowledge and share it with " "and between your employees."), - # Templates of Content - 'wiki_faq':fields.boolean('Internal FAQ', + # Content templates + 'wiki_faq':fields.boolean('Template: Internal FAQ', help="Creates a skeleton internal FAQ pre-filled with " "documentation about OpenERP's Document Management " "System."), - 'wiki_quality_manual':fields.boolean('Quality Manual', + 'wiki_quality_manual':fields.boolean('Template: Quality Manual', help="Creates an example skeleton for a standard quality manual."), } _defaults = {