[imp] knowledge: add a bunch of help text and descriptions

bzr revid: xmo@tinyerp.com-20100124182052-hd28ydinab5icnk0
This commit is contained in:
Xavier Morel 2010-01-24 19:20:52 +01:00
parent 21b5c146e7
commit 38ec2626c1
2 changed files with 24 additions and 5 deletions

View File

@ -26,12 +26,25 @@ class knowledge_installer(osv.osv_memory):
_columns = {
# Knowledge Management
'document_ftp':fields.boolean('Shared Repositories (FTP)'),
'document_webdav':fields.boolean('Shared Repositories (WebDAV)'),
'wiki':fields.boolean('Collaborative Content (Wiki)'),
'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."),
'document_webdav':fields.boolean('Shared Repositories (WebDAV)',
help="Provides a WebDAV access to your OpenERP's Document "
"Management System. Lets you access attachments and "
"virtual documents through your standard file browser."),
'wiki':fields.boolean('Collaborative Content (Wiki)',
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'),
'wiki_quality_manual':fields.boolean('Quality Manual'),
'wiki_faq':fields.boolean('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',
help="Creates an example skeleton for a standard quality manual."),
}
_defaults = {
'document_ftp':True,

View File

@ -15,6 +15,12 @@
<attribute name="string"
>Configure Your Knowledge Management System</attribute>
</separator>
<xpath expr="//label[@string='description']"
position="attributes">
<attribute name="string">From this screen, you can select various
OpenERP applications which will help employees store information, distribute
it and share it with one another.</attribute>
</xpath>
<group colspan="8">
<separator string="Knowledge Management" colspan="4"/>
<field name="document_ftp"/>