-
-
Notifications
You must be signed in to change notification settings - Fork 332
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
53 changed files
with
51,662 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,109 @@ | ||
=================== | ||
Preview attachments | ||
=================== | ||
|
||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! 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/12.0/attachment_preview | ||
:alt: OCA/knowledge | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/knowledge-12-0/knowledge-12-0-attachment_preview | ||
: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/12.0 | ||
:alt: Try me on Runbot | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
This addon allows to preview attachments supported by http://viewerjs.org. | ||
|
||
Currently, that's most Libreoffice files and PDFs. | ||
|
||
.. image:: https://raw.githubusercontent.com/attachment_preview/static/description/screenshot-split.png | ||
:alt: Screenshot of split form view | ||
:width: 100% | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Installation | ||
============ | ||
|
||
For filetype recognition, you'll get the best results by installing | ||
``python-magic``: | ||
|
||
sudo apt-get install python-magic | ||
|
||
Usage | ||
===== | ||
|
||
The module adds a little print preview icon right of download links for | ||
attachments or binary fields. When a preview is opened from the attachments | ||
menu it's shown next to the form view. From this screen you can navigate | ||
through the attachments using the arrow buttons. Using the pop-out button | ||
next to the navigational buttons you can open the preview in a separate window. | ||
|
||
.. image:: https://raw.githubusercontent.com/attachment_preview/static/description/screenshot-paginator.png | ||
:alt: Screenshot navigator | ||
|
||
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 <https://github.com/OCA/knowledge/issues/new?body=module:%20attachment_preview%0Aversion:%2012.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 | ||
~~~~~~~ | ||
|
||
* Therp BV | ||
* Onestein | ||
|
||
Contributors | ||
~~~~~~~~~~~~ | ||
|
||
* Holger Brunn <[email protected]> | ||
* Dennis Sluijk <[email protected]> | ||
|
||
Other credits | ||
~~~~~~~~~~~~~ | ||
|
||
Addon icon | ||
---------- | ||
|
||
* courtesy of http://commons.wikimedia.org/wiki/Crystal_Clear | ||
|
||
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/12.0/attachment_preview>`_ 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,4 @@ | ||
# Copyright 2014 Therp BV (<http://therp.nl>) | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
from . import models |
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,16 @@ | ||
# Copyright 2014 Therp BV (<http://therp.nl>) | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
{ | ||
"name": "Preview attachments", | ||
"version": "14.0.1.0.0", | ||
"author": "Therp BV," "Onestein," "Odoo Community Association (OCA)", | ||
"license": "AGPL-3", | ||
"summary": "Preview attachments supported by Viewer.js", | ||
"website": "https://github.com/OCA/knowledge", | ||
"category": "Knowledge Management", | ||
"depends": ["web", "mail"], | ||
"data": ["templates/assets.xml"], | ||
"qweb": ["static/src/xml/attachment_preview.xml"], | ||
"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,28 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * attachment_preview | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 12.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"Last-Translator: <>\n" | ||
"Language-Team: \n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: \n" | ||
|
||
#. module: attachment_preview | ||
#: model:ir.model,name:attachment_preview.model_ir_attachment | ||
msgid "Attachment" | ||
msgstr "" | ||
|
||
#. module: attachment_preview | ||
#. openerp-web | ||
#: code:addons/attachment_preview/static/src/js/attachment_preview.js:188 | ||
#: code:addons/attachment_preview/static/src/js/attachment_preview.js:216 | ||
#, python-format | ||
msgid "Preview %s" | ||
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,33 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * attachment_preview | ||
# | ||
# Translators: | ||
# Rudolf Schnapka <[email protected]>, 2015 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: knowledge (8.0)\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2015-12-08 08:32+0000\n" | ||
"PO-Revision-Date: 2015-11-25 09:41+0000\n" | ||
"Last-Translator: Rudolf Schnapka <[email protected]>\n" | ||
"Language-Team: German (http://www.transifex.com/oca/OCA-knowledge-8-0/" | ||
"language/de/)\n" | ||
"Language: de\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: attachment_preview | ||
#: model:ir.model,name:attachment_preview.model_ir_attachment | ||
msgid "Attachment" | ||
msgstr "" | ||
|
||
#. module: attachment_preview | ||
#. openerp-web | ||
#: code:addons/attachment_preview/static/src/js/attachment_preview.js:188 | ||
#: code:addons/attachment_preview/static/src/js/attachment_preview.js:216 | ||
#, python-format | ||
msgid "Preview %s" | ||
msgstr "Vorschau %s" |
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,33 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * attachment_preview | ||
# | ||
# Translators: | ||
# Antonio Trueba, 2016 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: knowledge (8.0)\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2015-12-19 10:18+0000\n" | ||
"PO-Revision-Date: 2016-01-25 18:15+0000\n" | ||
"Last-Translator: Antonio Trueba\n" | ||
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-knowledge-8-0/" | ||
"language/es/)\n" | ||
"Language: es\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: attachment_preview | ||
#: model:ir.model,name:attachment_preview.model_ir_attachment | ||
msgid "Attachment" | ||
msgstr "" | ||
|
||
#. module: attachment_preview | ||
#. openerp-web | ||
#: code:addons/attachment_preview/static/src/js/attachment_preview.js:188 | ||
#: code:addons/attachment_preview/static/src/js/attachment_preview.js:216 | ||
#, python-format | ||
msgid "Preview %s" | ||
msgstr "Previsualizar %s" |
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,33 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * attachment_preview | ||
# | ||
# Translators: | ||
# Paolo Valier, 2016 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: knowledge (8.0)\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2016-03-05 11:50+0000\n" | ||
"PO-Revision-Date: 2016-03-13 16:56+0000\n" | ||
"Last-Translator: Paolo Valier\n" | ||
"Language-Team: Italian (http://www.transifex.com/oca/OCA-knowledge-8-0/" | ||
"language/it/)\n" | ||
"Language: it\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: attachment_preview | ||
#: model:ir.model,name:attachment_preview.model_ir_attachment | ||
msgid "Attachment" | ||
msgstr "" | ||
|
||
#. module: attachment_preview | ||
#. openerp-web | ||
#: code:addons/attachment_preview/static/src/js/attachment_preview.js:188 | ||
#: code:addons/attachment_preview/static/src/js/attachment_preview.js:216 | ||
#, python-format | ||
msgid "Preview %s" | ||
msgstr "Anteprima %s" |
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,32 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * attachment_preview | ||
# | ||
# Translators: | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: knowledge (8.0)\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2015-12-08 08:32+0000\n" | ||
"PO-Revision-Date: 2015-11-07 12:44+0000\n" | ||
"Last-Translator: OCA Transbot <[email protected]>\n" | ||
"Language-Team: Dutch (http://www.transifex.com/oca/OCA-knowledge-8-0/" | ||
"language/nl/)\n" | ||
"Language: nl\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: attachment_preview | ||
#: model:ir.model,name:attachment_preview.model_ir_attachment | ||
msgid "Attachment" | ||
msgstr "" | ||
|
||
#. module: attachment_preview | ||
#. openerp-web | ||
#: code:addons/attachment_preview/static/src/js/attachment_preview.js:188 | ||
#: code:addons/attachment_preview/static/src/js/attachment_preview.js:216 | ||
#, python-format | ||
msgid "Preview %s" | ||
msgstr "Voorbeeld %s" |
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,28 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * attachment_preview | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 12.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"Last-Translator: Automatically generated\n" | ||
"Language-Team: none\n" | ||
"Language: pt_BR\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: attachment_preview | ||
#: model:ir.model,name:attachment_preview.model_ir_attachment | ||
msgid "Attachment" | ||
msgstr "" | ||
|
||
#. module: attachment_preview | ||
#. openerp-web | ||
#: code:addons/attachment_preview/static/src/js/attachment_preview.js:188 | ||
#: code:addons/attachment_preview/static/src/js/attachment_preview.js:216 | ||
#, python-format | ||
msgid "Preview %s" | ||
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,33 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * attachment_preview | ||
# | ||
# Translators: | ||
# Pedro Castro Silva <[email protected]>, 2016 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: knowledge (8.0)\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2016-05-07 16:07+0000\n" | ||
"PO-Revision-Date: 2016-05-22 22:19+0000\n" | ||
"Last-Translator: Pedro Castro Silva <[email protected]>\n" | ||
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-" | ||
"knowledge-8-0/language/pt_PT/)\n" | ||
"Language: pt_PT\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: attachment_preview | ||
#: model:ir.model,name:attachment_preview.model_ir_attachment | ||
msgid "Attachment" | ||
msgstr "" | ||
|
||
#. module: attachment_preview | ||
#. openerp-web | ||
#: code:addons/attachment_preview/static/src/js/attachment_preview.js:188 | ||
#: code:addons/attachment_preview/static/src/js/attachment_preview.js:216 | ||
#, python-format | ||
msgid "Preview %s" | ||
msgstr "Antever %s" |
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,38 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * attachment_preview | ||
# | ||
# Translators: | ||
# Matjaž Mozetič <[email protected]>, 2015 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: knowledge (8.0)\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2015-12-08 08:32+0000\n" | ||
"PO-Revision-Date: 2020-08-11 14:59+0000\n" | ||
"Last-Translator: Matjaz Mozetic <[email protected]>\n" | ||
"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-knowledge-8-0/" | ||
"language/sl/)\n" | ||
"Language: sl\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" | ||
"%100==4 ? 2 : 3;\n" | ||
"X-Generator: Weblate 3.10\n" | ||
|
||
#. module: attachment_preview | ||
#: model:ir.model,name:attachment_preview.model_ir_attachment | ||
msgid "Attachment" | ||
msgstr "" | ||
|
||
#. module: attachment_preview | ||
#. openerp-web | ||
#: code:addons/attachment_preview/static/src/js/attachment_preview.js:188 | ||
#: code:addons/attachment_preview/static/src/js/attachment_preview.js:216 | ||
#, python-format | ||
msgid "Preview %s" | ||
msgstr "Predogled %s" | ||
|
||
#~ msgid "ir.attachment" | ||
#~ msgstr "ir.attachment" |
Oops, something went wrong.