-
-
Notifications
You must be signed in to change notification settings - Fork 393
[11.0][MIG] Knowledge Migration #149
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
f9ba20a
944a9c4
10bfec2
406b108
8ecf107
a601b56
08f46d5
3bc34cb
b458479
4cc65e5
00e02e2
204dd63
145b971
5eb44df
d6df022
e34ee87
060de62
d3b2a36
17e70d8
641bea8
ad39193
9fc5c49
d991026
64a0203
409b195
2535cde
7c12b32
b9575b1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -48,3 +48,6 @@ coverage.xml | |
| # Backup files | ||
| *~ | ||
| *.swp | ||
|
|
||
| # Mac TMP Files | ||
| .DS_Store | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,75 @@ | ||
| .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg | ||
| :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html | ||
| :alt: License: AGPL-3 | ||
|
|
||
| ================================ | ||
| Knowledge Management System base | ||
| ================================ | ||
|
|
||
| This module is the base for any knowledge and document management application. | ||
|
|
||
| Installation | ||
| ============ | ||
|
|
||
| * None | ||
|
|
||
| Configuration | ||
| ============= | ||
|
|
||
| * None | ||
|
|
||
| Usage | ||
| ===== | ||
|
|
||
| To use this module, you need to: | ||
|
|
||
| * Go to Knowledge / Configuration / Settings | ||
|
|
||
| .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas | ||
| :alt: Try me on Runbot | ||
| :target: https://runbot.odoo-community.org/runbot/repo/118/10.0 | ||
|
|
||
|
|
||
| Known issues / Roadmap | ||
| ====================== | ||
|
|
||
| * Migrate related modules to v10 and add options in the settings as soon as they are installable | ||
|
|
||
| Bug Tracker | ||
| =========== | ||
|
|
||
| Bugs are tracked on `GitHub Issues <https://github.com/OCA/ | ||
| knowledge/issues>`_. | ||
| In case of trouble, please check there if your issue has already been reported. | ||
| If you spotted it first, help us smashing it by providing a detailed and welcomed feedback `here <https://github.com/OCA/ | ||
| knowledge/issues/new?body=module:%20 | ||
| knowledge%0Aversion:%20 | ||
| 10.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
|
||
|
|
||
| Credits | ||
| ======= | ||
|
|
||
| Contributors | ||
| ------------ | ||
|
|
||
| * Odoo SA <info@odoo.com> | ||
| * Savoir-faire Linux <support@savoirfairelinux.com> | ||
| * Gervais Naoussi <gervaisnaoussi@gmail.com> | ||
| * Leonardo Donelli <leonardo.donelli@monksoftware.it> | ||
| * Maxime Chambreuil <mchambreuil@ursainfosystems.com> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @fayezqandeel Please add yourself to this list |
||
|
|
||
| Maintainer | ||
| ---------- | ||
|
|
||
| .. image:: https://odoo-community.org/logo.png | ||
| :alt: Odoo Community Association | ||
| :target: https://odoo-community.org | ||
|
|
||
| This module is maintained by the OCA. | ||
|
|
||
| OCA, or the Odoo Community Association, is a nonprofit organization whose | ||
| mission is to support the collaborative development of Odoo features and | ||
| promote its widespread use. | ||
|
|
||
| To contribute to this module, please visit http://odoo-community.org. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| # Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). | ||
| # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
|
||
| from . import models |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| # Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). | ||
| # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
| { | ||
| "name": "Knowledge Management System", | ||
| "version": "11.0.1.0.0", | ||
| "author": "OpenERP SA, MONK Software, Odoo Community Association (OCA)", | ||
| "category": "Knowledge", | ||
| "license": "AGPL-3", | ||
| "website": "https://odoo-community.org/", | ||
| "depends": ["base"], | ||
| "data": [ | ||
| "data/ir_module_category.xml", | ||
| "security/knowledge_security.xml", | ||
| "views/knowledge.xml", | ||
| "views/res_config.xml", | ||
| ], | ||
| "demo": ["demo/knowledge.xml"], | ||
| "installable": True, | ||
| "auto_install": False, | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No need for the encoding any more.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes for the XML files. It's not needed on Python files in Python 3. |
||
| <odoo> | ||
|
|
||
| <record model="ir.module.category" id="module_category_knowledge"> | ||
| <field name="name">Knowledge</field> | ||
| <field name="description">Manage documents and knowledge-related | ||
| applications | ||
| </field> | ||
| <field name="sequence">30</field> | ||
| </record> | ||
|
|
||
| </odoo> | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <odoo noupdate="1"> | ||
|
|
||
| <record id="base.user_demo" model="res.users"> | ||
| <field name="groups_id" eval="[(4,ref('knowledge.group_document_user'))]"/> | ||
| </record> | ||
|
|
||
| </odoo> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,180 @@ | ||
| # Translation of Odoo Server. | ||
| # This file contains the translation of the following modules: | ||
| # * knowledge | ||
| # | ||
| # Translators: | ||
| msgid "" | ||
| msgstr "" | ||
| "Project-Id-Version: knowledge (9.0)\n" | ||
| "Report-Msgid-Bugs-To: \n" | ||
| "POT-Creation-Date: 2016-08-13 13:00+0000\n" | ||
| "PO-Revision-Date: 2016-09-09 12:26+0000\n" | ||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" | ||
| "Language-Team: Amharic (http://www.transifex.com/oca/OCA-knowledge-9-0/language/am/)\n" | ||
| "MIME-Version: 1.0\n" | ||
| "Content-Type: text/plain; charset=UTF-8\n" | ||
| "Content-Transfer-Encoding: \n" | ||
| "Language: am\n" | ||
| "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.model.fields,help:knowledge.field_knowledge_config_settings_module_document_page_approval | ||
| msgid "" | ||
| "Add workflow on documents per category.\n" | ||
| "- This installs the module document_page_approval." | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.ui.view,arch_db:knowledge.view_knowledge_configuration | ||
| msgid "Apply" | ||
| msgstr "ማመልከት" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.model.fields,field_description:knowledge.field_knowledge_config_settings_module_cmis_read | ||
| msgid "Attach files from an external DMS into Odoo" | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.ui.view,arch_db:knowledge.view_knowledge_configuration | ||
| msgid "Cancel" | ||
| msgstr "መሰረዝ" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.ui.menu,name:knowledge.menu_document2 | ||
| msgid "Collaborative Content" | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.ui.menu,name:knowledge.menu_document_configuration | ||
| msgid "Configuration" | ||
| msgstr "ማስተካከያዎች" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration | ||
| #: model:ir.ui.view,arch_db:knowledge.view_knowledge_configuration | ||
| msgid "Configure Knowledge" | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.model.fields,help:knowledge.field_knowledge_config_settings_module_cmis_read | ||
| msgid "" | ||
| "Connect Odoo with a CMIS compatible server to attach files\n" | ||
| "to an Odoo record.\n" | ||
| "- This installs the module cmis_read." | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.model.fields,help:knowledge.field_knowledge_config_settings_module_cmis_write | ||
| msgid "" | ||
| "Connect Odoo with a CMIS compatible server to store files.\n" | ||
| "- This installs the module cmis_write." | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.ui.view,arch_db:knowledge.view_knowledge_configuration | ||
| msgid "Connect with an external DMS" | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.model.fields,field_description:knowledge.field_knowledge_config_settings_create_uid | ||
| msgid "Created by" | ||
| msgstr "Creado por" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.model.fields,field_description:knowledge.field_knowledge_config_settings_create_date | ||
| msgid "Created on" | ||
| msgstr "Creado en" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.model.fields,field_description:knowledge.field_knowledge_config_settings_display_name | ||
| msgid "Display Name" | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.model.fields,help:knowledge.field_knowledge_config_settings_module_document | ||
| msgid "" | ||
| "Document indexation, full text search of attachements.\n" | ||
| "- This installs the module document." | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.ui.view,arch_db:knowledge.view_knowledge_configuration | ||
| msgid "Documents" | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.model.fields,field_description:knowledge.field_knowledge_config_settings_id | ||
| msgid "ID" | ||
| msgstr "ID" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.ui.menu,name:knowledge.menu_document | ||
| msgid "Knowledge" | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.ui.view,arch_db:knowledge.view_knowledge_configuration | ||
| msgid "Knowledge and Documents Management" | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.model.fields,field_description:knowledge.field_knowledge_config_settings___last_update | ||
| msgid "Last Modified on" | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.model.fields,field_description:knowledge.field_knowledge_config_settings_write_uid | ||
| msgid "Last Updated by" | ||
| msgstr "Última actualización por" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.model.fields,field_description:knowledge.field_knowledge_config_settings_write_date | ||
| msgid "Last Updated on" | ||
| msgstr "Última actualización en" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.model.fields,field_description:knowledge.field_knowledge_config_settings_module_document_page | ||
| msgid "Manage document pages (Wiki)" | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.model.fields,field_description:knowledge.field_knowledge_config_settings_module_document | ||
| msgid "Manage documents" | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.model.fields,field_description:knowledge.field_knowledge_config_settings_module_document_page_approval | ||
| msgid "Manage documents approval" | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.model.fields,help:knowledge.field_knowledge_config_settings_module_document_page | ||
| msgid "" | ||
| "Provide document page and category as a wiki.\n" | ||
| "- This installs the module document_page." | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration | ||
| msgid "Settings" | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.model.fields,field_description:knowledge.field_knowledge_config_settings_module_cmis_write | ||
| msgid "Store attachments in an external DMS instead of the Odoo Filestore" | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.ui.view,arch_db:knowledge.view_knowledge_configuration | ||
| msgid "Using CMIS" | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.model,name:knowledge.model_knowledge_config_settings | ||
| msgid "knowledge.config.settings" | ||
| msgstr "" | ||
|
|
||
| #. module: knowledge | ||
| #: model:ir.ui.view,arch_db:knowledge.view_knowledge_configuration | ||
| msgid "or" | ||
| msgstr "ወይም" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/118/11.0