diff --git a/.copier-answers.yml b/.copier-answers.yml index ce945410..297c9076 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -1,5 +1,5 @@ # Do NOT update manually; changes here will be overwritten by Copier -_commit: v1.11.0 +_commit: v1.11.1 _src_path: gh:oca/oca-addons-repo-template ci: GitHub dependency_installation_mode: PIP diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 28505787..e573d0ba 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -104,7 +104,7 @@ repos: - --settings=. exclude: /__init__\.py$ - repo: https://github.com/acsone/setuptools-odoo - rev: 3.1.5 + rev: 3.1.8 hooks: - id: setuptools-odoo-make-default - id: setuptools-odoo-get-requirements @@ -113,7 +113,7 @@ repos: - requirements.txt - --header - "# generated from manifests external_dependencies" - - repo: https://gitlab.com/PyCQA/flake8 + - repo: https://github.com/PyCQA/flake8 rev: 3.9.2 hooks: - id: flake8 diff --git a/document_page/README.rst b/document_page/README.rst new file mode 100644 index 00000000..6e2bcb80 --- /dev/null +++ b/document_page/README.rst @@ -0,0 +1,118 @@ +============= +Document Page +============= + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fknowledge-lightgray.png?logo=github + :target: https://github.com/OCA/knowledge/tree/15.0/document_page + :alt: OCA/knowledge +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/knowledge-15-0/knowledge-15-0-document_page + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/118/15.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows you to write web pages for internal documentation. + +**Table of contents** + +.. contents:: + :local: + +Installation +============ + +This module depends on module knowledge. So make sure to have it in your addons list. + +Configuration +============= + +No configuration required. + +Usage +===== + +To use this module, you need to: + +* Go to Knowledge menu +* Click on Categories to create the document's category you need with the template +* Click on Pages to create pages and select the previous category to use the template + +Bug Tracker +=========== + +Bugs are tracked on `GitHub 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 `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* OpenERP SA + +Contributors +~~~~~~~~~~~~ + +* Gervais Naoussi +* Maxime Chambreuil +* Iván Todorovich +* Jose Maria Alzaga +* Lois Rilo +* Simone Orsi +* `Tecnativa `_: + + * Ernesto Tejeda + * Víctor Martínez + +Trobz + +* Dung Tran + +* `Sygel `_: + + * Ángel García de la Chica Herrera + +Other credits +~~~~~~~~~~~~~ + +The development of this module has been financially supported by: + +* Odoo SA +* Savoir-faire Linux +* Camptocamp + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +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. + +This module is part of the `OCA/knowledge `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/document_page/__init__.py b/document_page/__init__.py new file mode 100644 index 00000000..4d7a49b5 --- /dev/null +++ b/document_page/__init__.py @@ -0,0 +1,4 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import models +from . import wizard diff --git a/document_page/__manifest__.py b/document_page/__manifest__.py new file mode 100644 index 00000000..adab6879 --- /dev/null +++ b/document_page/__manifest__.py @@ -0,0 +1,37 @@ +# Copyright (C) 2004-2010 Tiny SPRL (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + + +{ + "name": "Document Page", + "version": "16.0.1.0.0", + "category": "Knowledge Management", + "author": "OpenERP SA, Odoo Community Association (OCA)", + "images": [ + "images/category_list.png", + "images/create_category.png", + "images/page_list.png", + "images/create_page.png", + "images/customer_invoice.jpeg", + "images/page_history.png", + ], + "website": "https://github.com/OCA/knowledge", + "license": "AGPL-3", + "depends": ["mail", "document_knowledge"], + "data": [ + "security/document_page_security.xml", + "security/ir.model.access.csv", + "wizard/document_page_create_menu.xml", + "wizard/document_page_show_diff.xml", + "views/document_page.xml", + "views/document_page_category.xml", + "views/document_page_history.xml", + "views/report_document_page.xml", + ], + "demo": ["demo/document_page.xml"], + "assets": { + "web.assets_backend": [ + "document_page/static/src/scss/document_page.scss", + ], + }, +} diff --git a/document_page/demo/document_page.xml b/document_page/demo/document_page.xml new file mode 100644 index 00000000..450f7575 --- /dev/null +++ b/document_page/demo/document_page.xml @@ -0,0 +1,142 @@ + + + + + + + + + Odoo Features + category + +Summary of the feature + +Long explanation + +Conclusion + +Additional ressources + + + + + + Odoo 15.0 Functional Demo + 1.0 + Init + + + +
+The news is out, Odoo's latest version 15.0 is here. It's more
+user-friendly, even more business oriented and efficient to manage your company
+
+How to discover the latest version 15.0?
+
+Demo :
+Online:
+Download:
+
+We have also put together a functional demo that presents 15.0. Watch this video
+to learn directly from us what Odoo 15.0 can do for you. Share it in your
+company, with your clients and implement it now for your business.
+
+

Watch on Youtube!


+
+
+
+
+