-
-
Notifications
You must be signed in to change notification settings - Fork 338
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by pedrobaeza
- Loading branch information
Showing
92 changed files
with
8,958 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
============== | ||
URL attachment | ||
============== | ||
|
||
.. | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! source digest: sha256:798731f5636caba3739d27fc9438343fe78b9972e3e1c689cd61e3dd34342a7c | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |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/17.0/document_url | ||
:alt: OCA/knowledge | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/knowledge-17-0/knowledge-17-0-document_url | ||
:alt: Translate me on Weblate | ||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png | ||
:target: https://runboat.odoo-community.org/builds?repo=OCA/knowledge&target_branch=17.0 | ||
:alt: Try me on Runboat | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
Module that allows to attach an URL as a document. | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Usage | ||
===== | ||
|
||
To use this module, you need to: | ||
|
||
1. Open the form view of an object (Example: Customer Invoice | ||
INV/2019/0007). | ||
2. Go to the chatter and click on the attached icon. | ||
3. Click **Add URL** link. | ||
4. Fill the wizard fields and click on Add button. | ||
5. You will see a new **URL attachment** in the set of attachments | ||
related to the object. | ||
|
||
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 to smash it by providing a detailed and welcomed | ||
`feedback <https://github.com/OCA/knowledge/issues/new?body=module:%20document_url%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
||
Do not contact contributors directly about support or help with technical issues. | ||
|
||
Credits | ||
======= | ||
|
||
Authors | ||
------- | ||
|
||
* Tecnativa | ||
|
||
Contributors | ||
------------ | ||
|
||
- Jonathan Nemry <jonathan.nemry@acsone.eu> | ||
- `Tecnativa <https://www.tecnativa.com>`__: | ||
|
||
- Pedro M. Baeza | ||
- Ernesto Tejeda | ||
- Manuel Calero | ||
- Víctor Martínez | ||
- Matias Peralta - Adhoc SA | ||
|
||
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 <https://github.com/OCA/knowledge/tree/17.0/document_url>`_ project on GitHub. | ||
|
||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Copyright 2014 Serv. Tecnol. Avanzados (http://www.serviciosbaeza.com) | ||
# Copyright 2014 Tecnativa - Pedro M. Baeza | ||
# Copyright 2016 ACSONE SA/NV (<http://acsone.eu>) | ||
from . import models | ||
from . import wizard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright 2014 Tecnativa - Pedro M. Baeza | ||
# Copyright 2020 Tecnativa - Manuel Calero | ||
{ | ||
"name": "URL attachment", | ||
"version": "17.0.1.0.0", | ||
"category": "Tools", | ||
"author": "Tecnativa, Odoo Community Association (OCA)", | ||
"website": "https://github.com/OCA/knowledge", | ||
"license": "AGPL-3", | ||
"depends": ["mail"], | ||
"data": [ | ||
"security/ir.model.access.csv", | ||
"view/document_url_view.xml", | ||
], | ||
"assets": { | ||
"web.assets_backend": [ | ||
"document_url/static/src/js/url.esm.js", | ||
"document_url/static/src/xml/url.xml", | ||
"document_url/static/src/scss/document_url.scss", | ||
], | ||
}, | ||
"installable": True, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * document_url | ||
# | ||
# Translators: | ||
# OCA Transbot <transbot@odoo-community.org>, 2016 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 9.0c\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2016-08-13 13:00+0000\n" | ||
"PO-Revision-Date: 2016-08-13 13:00+0000\n" | ||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||
"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" | ||
"Language: am\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||
|
||
#. module: document_url | ||
#: model_terms:ir.ui.view,arch_db:document_url.view_ir_attachment_add_url_form | ||
msgid "Add" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#. odoo-javascript | ||
#: code:addons/document_url/static/src/xml/url.xml:0 | ||
#: model:ir.actions.act_window,name:document_url.action_ir_attachment_add_url | ||
#: model_terms:ir.ui.view,arch_db:document_url.view_ir_attachment_add_url_form | ||
#, python-format | ||
msgid "Add URL" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#. odoo-javascript | ||
#: code:addons/document_url/static/src/xml/url.xml:0 | ||
#, python-format | ||
msgid "Attach files" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#: model:ir.model,name:document_url.model_ir_attachment | ||
msgid "Attachment" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#: model_terms:ir.ui.view,arch_db:document_url.view_ir_attachment_add_url_form | ||
msgid "Cancel" | ||
msgstr "መሰረዝ" | ||
|
||
#. module: document_url | ||
#: model:ir.model.fields,field_description:document_url.field_ir_attachment_add_url__create_uid | ||
msgid "Created by" | ||
msgstr "Creado por" | ||
|
||
#. module: document_url | ||
#: model:ir.model.fields,field_description:document_url.field_ir_attachment_add_url__create_date | ||
msgid "Created on" | ||
msgstr "Creado en" | ||
|
||
#. module: document_url | ||
#: model:ir.model.fields,field_description:document_url.field_ir_attachment_add_url__display_name | ||
msgid "Display Name" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#: model:ir.model.fields,field_description:document_url.field_ir_attachment_add_url__id | ||
msgid "ID" | ||
msgstr "ID" | ||
|
||
#. module: document_url | ||
#: model:ir.model.fields,field_description:document_url.field_ir_attachment_add_url____last_update | ||
msgid "Last Modified on" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#: model:ir.model.fields,field_description:document_url.field_ir_attachment_add_url__write_uid | ||
msgid "Last Updated by" | ||
msgstr "Última actualización por" | ||
|
||
#. module: document_url | ||
#: model:ir.model.fields,field_description:document_url.field_ir_attachment_add_url__write_date | ||
msgid "Last Updated on" | ||
msgstr "Última actualización en" | ||
|
||
#. module: document_url | ||
#: model:ir.model.fields,field_description:document_url.field_ir_attachment_add_url__name | ||
msgid "Name" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#. odoo-javascript | ||
#: code:addons/document_url/static/src/xml/url.xml:0 | ||
#, python-format | ||
msgid "Open" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#: model:ir.model.fields,field_description:document_url.field_ir_attachment_add_url__url | ||
msgid "URL" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#: model:ir.model,name:document_url.model_ir_attachment_add_url | ||
msgid "Wizard to add URL attachment" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#: model_terms:ir.ui.view,arch_db:document_url.view_ir_attachment_add_url_form | ||
msgid "or" | ||
msgstr "ወይም" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * document_url | ||
# | ||
# Translators: | ||
# OCA Transbot <transbot@odoo-community.org>, 2016 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 9.0c\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2016-08-11 02:46+0000\n" | ||
"PO-Revision-Date: 2016-08-11 02:46+0000\n" | ||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" | ||
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" | ||
"Language: ar\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " | ||
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" | ||
|
||
#. module: document_url | ||
#: model_terms:ir.ui.view,arch_db:document_url.view_ir_attachment_add_url_form | ||
msgid "Add" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#. odoo-javascript | ||
#: code:addons/document_url/static/src/xml/url.xml:0 | ||
#: model:ir.actions.act_window,name:document_url.action_ir_attachment_add_url | ||
#: model_terms:ir.ui.view,arch_db:document_url.view_ir_attachment_add_url_form | ||
#, python-format | ||
msgid "Add URL" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#. odoo-javascript | ||
#: code:addons/document_url/static/src/xml/url.xml:0 | ||
#, python-format | ||
msgid "Attach files" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#: model:ir.model,name:document_url.model_ir_attachment | ||
msgid "Attachment" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#: model_terms:ir.ui.view,arch_db:document_url.view_ir_attachment_add_url_form | ||
msgid "Cancel" | ||
msgstr "إلغاء" | ||
|
||
#. module: document_url | ||
#: model:ir.model.fields,field_description:document_url.field_ir_attachment_add_url__create_uid | ||
msgid "Created by" | ||
msgstr "أنشئ بواسطة" | ||
|
||
#. module: document_url | ||
#: model:ir.model.fields,field_description:document_url.field_ir_attachment_add_url__create_date | ||
msgid "Created on" | ||
msgstr "أنشئ في" | ||
|
||
#. module: document_url | ||
#: model:ir.model.fields,field_description:document_url.field_ir_attachment_add_url__display_name | ||
msgid "Display Name" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#: model:ir.model.fields,field_description:document_url.field_ir_attachment_add_url__id | ||
msgid "ID" | ||
msgstr "المعرف" | ||
|
||
#. module: document_url | ||
#: model:ir.model.fields,field_description:document_url.field_ir_attachment_add_url____last_update | ||
msgid "Last Modified on" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#: model:ir.model.fields,field_description:document_url.field_ir_attachment_add_url__write_uid | ||
msgid "Last Updated by" | ||
msgstr "آخر تحديث بواسطة" | ||
|
||
#. module: document_url | ||
#: model:ir.model.fields,field_description:document_url.field_ir_attachment_add_url__write_date | ||
msgid "Last Updated on" | ||
msgstr "آخر تحديث في" | ||
|
||
#. module: document_url | ||
#: model:ir.model.fields,field_description:document_url.field_ir_attachment_add_url__name | ||
msgid "Name" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#. odoo-javascript | ||
#: code:addons/document_url/static/src/xml/url.xml:0 | ||
#, python-format | ||
msgid "Open" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#: model:ir.model.fields,field_description:document_url.field_ir_attachment_add_url__url | ||
msgid "URL" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#: model:ir.model,name:document_url.model_ir_attachment_add_url | ||
msgid "Wizard to add URL attachment" | ||
msgstr "" | ||
|
||
#. module: document_url | ||
#: model_terms:ir.ui.view,arch_db:document_url.view_ir_attachment_add_url_form | ||
msgid "or" | ||
msgstr "أو" |
Oops, something went wrong.