├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md ├── archive └── adobephotoeditor │ ├── config.json │ ├── index.html │ ├── index_about.html │ ├── resources │ ├── css │ │ └── style.css │ └── img │ │ ├── icon.png │ │ ├── icon2.png │ │ ├── icon2@2x.png │ │ └── icon@2x.png │ ├── scripts │ └── photoeditor.js │ └── translations │ ├── de-DE.json │ ├── es-ES.json │ ├── fr-FR.json │ └── ru-RU.json ├── cbr ├── 3rd-Party.txt ├── README.md ├── config.json ├── index.html ├── licenses │ ├── Fixer.license │ └── jQuery.license ├── resources │ └── img │ │ ├── icon.png │ │ └── icon@2x.png ├── scripts │ └── cbr.js └── vendor │ └── jQuery │ ├── jquery-ui-1.11.4.css │ ├── jquery-ui-1.11.4.js │ └── jquery-v2.2.2-min.js ├── chess ├── README.md ├── config.json ├── index.html ├── index_about.html ├── resources │ ├── icon.png │ └── icon@2x.png └── scripts │ └── chess.js ├── chrome_extension_example ├── README.md ├── main.js └── manifest.json ├── clippy ├── 3rd-Party.txt ├── README.md ├── config.json ├── index.html ├── index_about.html ├── licenses │ ├── clippy.license │ └── jQuery.license ├── resources │ └── img │ │ ├── icon.png │ │ └── icon@2x.png ├── scripts │ └── code.js └── vendor │ ├── clippy │ ├── clippy.css │ └── clippy.min.js │ └── jQuery │ └── jquery-v1.7.2-min.js ├── example_add_comment_in_cell ├── config.json ├── index.html ├── resources │ ├── dark │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png │ └── light │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png └── scripts │ └── code.js ├── example_add_content_controls ├── README.md ├── config.json ├── index.html ├── resources │ ├── dark │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png │ └── light │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png └── scripts │ └── code.js ├── example_autocomplete ├── README.md ├── config.json ├── index.html ├── resources │ ├── dark │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png │ └── light │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png └── scripts │ ├── code.js │ └── dictionary.js ├── example_controls ├── config.json ├── index.html ├── resources │ ├── dark │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png │ └── light │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png └── scripts │ ├── code.js │ └── select2-4.0.6-rc.1 │ ├── LICENSE.md │ ├── README.md │ ├── dist │ ├── css │ │ ├── select2.css │ │ └── select2.min.css │ └── js │ │ ├── select2.full.js │ │ ├── select2.full.min.js │ │ ├── select2.js │ │ └── select2.min.js │ └── docs │ ├── README.md │ ├── announcements-4.0.html │ ├── community.html │ ├── examples.html │ ├── index.html │ ├── options-old.html │ └── options.html ├── example_custom_fields_add_2 ├── README.md ├── config.json ├── index.html ├── resources │ └── img │ │ ├── icon.png │ │ ├── icon2.png │ │ ├── icon2@2x.png │ │ └── icon@2x.png └── scripts │ └── code.js ├── example_customfields_add ├── README.md ├── config.json ├── index.html ├── resources │ ├── dark │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png │ └── light │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png └── scripts │ └── code.js ├── example_customfields_load ├── README.md ├── config.json ├── index.html ├── resources │ ├── dark │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png │ └── light │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png └── scripts │ └── code.js ├── example_extended_comments ├── 3rd-Party.txt ├── LICENSE ├── README.md ├── config.json ├── index.html ├── licenses │ ├── Select2.license │ └── jQuery.license ├── resources │ ├── dark │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png │ └── light │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png ├── scripts │ └── code.js └── vendor │ ├── jQuery-2.2.2-min │ └── jquery-v2.2.2-min.js │ └── select2-4.0.6-rc.1 │ ├── LICENSE.md │ ├── README.md │ ├── dist │ ├── css │ │ ├── select2.css │ │ └── select2.min.css │ └── js │ │ ├── select2.full.js │ │ ├── select2.full.min.js │ │ ├── select2.js │ │ └── select2.min.js │ └── docs │ ├── README.md │ ├── announcements-4.0.html │ ├── community.html │ ├── examples.html │ ├── index.html │ ├── options-old.html │ └── options.html ├── example_insert_content_and_document ├── README.md ├── config.json ├── index.html ├── resources │ ├── dark │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png │ └── light │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png └── scripts │ └── code.js ├── example_jitsi ├── 3rd-Party.txt ├── README.md ├── config.json ├── index.html ├── licenses │ └── jitsi.license ├── resources │ ├── dark │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png │ └── light │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png └── scripts │ └── code.js ├── example_move_cursor ├── README.md ├── config.json ├── index.html ├── resources │ ├── dark │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png │ └── light │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png └── scripts │ └── code.js ├── example_search_and_change_text_background_color ├── README.md ├── config.json ├── index.html ├── resources │ ├── dark │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png │ └── light │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png └── scripts │ └── code.js ├── example_search_replace ├── README.md ├── config.json ├── index.html ├── resources │ ├── dark │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png │ └── light │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png └── scripts │ └── code.js ├── example_speech_input ├── 3rd-Party.txt ├── LICENSE ├── README.md ├── config.json ├── index.html ├── licenses │ ├── Select2.license │ └── jQuery.license ├── resources │ ├── css │ │ └── plugin_style.css │ └── img │ │ ├── icon.png │ │ ├── icon@2x.png │ │ └── mic_src │ │ ├── mic-animate.png │ │ ├── mic-slash.png │ │ └── mic.png ├── scripts │ └── code.js └── vendor │ ├── jQuery-2.2.2-min │ └── jquery-v2.2.2-min.js │ └── select2-4.0.6-rc.1 │ ├── LICENSE.md │ ├── README.md │ ├── dist │ ├── css │ │ ├── select2.css │ │ └── select2.min.css │ └── js │ │ ├── select2.full.js │ │ ├── select2.full.min.js │ │ ├── select2.js │ │ └── select2.min.js │ └── docs │ ├── README.md │ ├── announcements-4.0.html │ ├── community.html │ ├── examples.html │ ├── index.html │ ├── options-old.html │ └── options.html ├── example_work_with_content_controls ├── README.md ├── config.json ├── index.html ├── resources │ ├── dark │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png │ └── light │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png └── scripts │ └── code.js ├── example_work_with_content_controls_combo ├── README.md ├── config.json ├── index.html ├── resources │ ├── dark │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png │ └── light │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png └── scripts │ └── code.js ├── example_work_with_content_controls_content ├── README.md ├── config.json ├── index.html ├── resources │ ├── dark │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png │ └── light │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png └── scripts │ └── code.js ├── example_work_with_content_controls_navigation ├── 3rd-Party.txt ├── LICENSE ├── README.md ├── config.json ├── index.html ├── licenses │ └── jQuery.license ├── resources │ ├── dark │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png │ └── light │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png ├── scripts │ └── code.js └── vendor │ └── jQuery-2.2.2-min │ └── jquery-v2.2.2-min.js ├── example_work_with_content_controls_tags ├── 3rd-Party.txt ├── README.md ├── config.json ├── index.html ├── licenses │ └── jQuery.license ├── resources │ ├── dark │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png │ └── light │ │ ├── icon.png │ │ ├── icon@1.25x.png │ │ ├── icon@1.5x.png │ │ ├── icon@1.75x.png │ │ └── icon@2x.png ├── scripts │ └── code.js └── vendor │ └── jQuery-2.2.2-min │ └── jquery-v2.2.2-min.js ├── externallistener ├── README.md ├── config.json ├── index.html ├── owndrop │ ├── test.html │ └── test.js ├── resources │ └── img │ │ ├── icon.png │ │ └── icon@2x.png ├── scripts │ └── code.js ├── test │ ├── test.html │ └── test.js └── test2 │ ├── test2.html │ └── test2.js ├── helloworld ├── README.md ├── config.json ├── index.html ├── index_about.html ├── resources │ └── img │ │ ├── icon.png │ │ └── icon@2x.png └── scripts │ └── helloworld.js ├── interface ├── 3rd-Party.txt ├── README.md ├── config.json ├── index.html ├── licenses │ └── jQuery.license ├── resources │ └── img │ │ ├── icon.png │ │ ├── icon2.png │ │ ├── icon2@2x.png │ │ └── icon@2x.png └── scripts │ ├── base.js │ └── code.js ├── invoices ├── README.md ├── config.json ├── index.html ├── resources │ └── img │ │ ├── icon.png │ │ └── icon@2x.png └── scripts │ └── code.js ├── num2word ├── README.md ├── config.json ├── index.html ├── resources │ └── img │ │ ├── icon.png │ │ └── icon@2x.png └── scripts │ └── num2word.js ├── onlychain ├── config.json ├── index.html ├── resources │ └── img │ │ ├── icon.png │ │ └── icon@2x.png └── scripts │ └── code.js ├── onlypass ├── config.json ├── index.html ├── resources │ └── img │ │ ├── icon.png │ │ └── icon@2x.png └── scripts │ └── code.js ├── searchAndReplaceOnStart ├── README.md ├── config.json ├── index.html └── scripts │ └── code.js ├── settings ├── README.md ├── config.json ├── index.html └── scripts │ └── code.js ├── symboltable ├── 3rd-Party.txt ├── README.md ├── config.json ├── index.html ├── licenses │ ├── Select2.license │ └── jQuery.license ├── resources │ └── img │ │ ├── icon.png │ │ ├── icon2.png │ │ ├── icon2@2x.png │ │ └── icon@2x.png ├── scripts │ ├── character.js │ └── symboltable.js ├── translations │ ├── cs-CZ.json │ ├── de-DE.json │ ├── es-ES.json │ ├── fr-FR.json │ └── ru-RU.json └── vendor │ ├── jquery │ └── jquery.min.js │ └── select2 │ ├── css │ ├── select2.css │ └── select2.min.css │ └── js │ ├── i18n │ ├── af.js │ ├── ar.js │ ├── az.js │ ├── bg.js │ ├── bs.js │ ├── build.txt │ ├── ca.js │ ├── cs.js │ ├── da.js │ ├── de.js │ ├── dsb.js │ ├── el.js │ ├── en.js │ ├── es.js │ ├── et.js │ ├── eu.js │ ├── fa.js │ ├── fi.js │ ├── fr.js │ ├── gl.js │ ├── he.js │ ├── hi.js │ ├── hr.js │ ├── hsb.js │ ├── hu.js │ ├── hy.js │ ├── id.js │ ├── is.js │ ├── it.js │ ├── ja.js │ ├── km.js │ ├── ko.js │ ├── lt.js │ ├── lv.js │ ├── mk.js │ ├── ms.js │ ├── nb.js │ ├── nl.js │ ├── pl.js │ ├── ps.js │ ├── pt-BR.js │ ├── pt.js │ ├── ro.js │ ├── ru.js │ ├── sk.js │ ├── sl.js │ ├── sr-Cyrl.js │ ├── sr.js │ ├── sv.js │ ├── th.js │ ├── tr.js │ ├── uk.js │ ├── vi.js │ ├── zh-CN.js │ └── zh-TW.js │ ├── select2.full.js │ ├── select2.full.min.js │ ├── select2.js │ └── select2.min.js ├── templates ├── README.md ├── config.json ├── index.html ├── resources │ └── img │ │ ├── icon.png │ │ └── icon@2x.png ├── scripts │ └── templates.js └── templates │ ├── TC9990301-LAYOUT-WD1 │ ├── icon.png │ └── script.txt │ ├── TC9990301-LAYOUT-WD2 │ ├── icon.png │ └── script.txt │ ├── bold_report │ ├── icon.png │ └── script.txt │ ├── calendar_2017 │ ├── icon.png │ └── script.txt │ ├── christmas_note_cards │ ├── icon.png │ └── script.txt │ ├── class_newsletter │ ├── icon.png │ └── script.txt │ ├── fax_cover │ ├── icon.png │ └── script.txt │ ├── menu1_code │ ├── icon.png │ └── script.txt │ ├── menu2_code │ ├── icon.png │ └── script.txt │ ├── newsletter │ ├── icon.png │ └── script.txt │ ├── newsletter_green │ ├── icon.png │ └── script.txt │ ├── priglashenie │ ├── icon.png │ └── script.txt │ ├── rsvp_cards │ ├── icon.png │ └── script.txt │ └── your_high_school │ ├── icon.png │ └── script.txt ├── trackchanges ├── README.md ├── config.json └── scripts │ └── code.js └── trackchanges_off ├── README.md ├── config.json └── scripts └── code.js /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | **Do you want to request a *feature* or report a *bug*?** 2 | 3 | **What is the current behavior?** 4 | 5 | **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem.** 6 | 7 | **What is the expected behavior?** 8 | 9 | **Which versions of sdkjs-plugins, and which browser / OS are affected by this issue? Did this work in previous versions of sdkjs-plugins?** 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /archive/adobephotoeditor/resources/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/archive/adobephotoeditor/resources/img/icon.png -------------------------------------------------------------------------------- /archive/adobephotoeditor/resources/img/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/archive/adobephotoeditor/resources/img/icon2.png -------------------------------------------------------------------------------- /archive/adobephotoeditor/resources/img/icon2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/archive/adobephotoeditor/resources/img/icon2@2x.png -------------------------------------------------------------------------------- /archive/adobephotoeditor/resources/img/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/archive/adobephotoeditor/resources/img/icon@2x.png -------------------------------------------------------------------------------- /archive/adobephotoeditor/translations/de-DE.json: -------------------------------------------------------------------------------- 1 | { 2 | "Photo Editor": "Foto Editor", 3 | "Close": "Schließen", 4 | "Image Editor Add-on": "Image Editor Add-on", 5 | "The Creative SDK Image Editing component can be embedded in any website with just a few lines of Javascript, adding simple yet powerful image editing to an existing workflow.": "Die Creative SDK-Bildbearbeitungskomponente kann in eine beliebige Website mit nur wenigen Zeilen von Javascript eingebettet werden, wodurch eine einfache, aber leistungsstarke Bildbearbeitung zu einem vorhandenen Workflow hinzugefügt wird.", 6 | "Source code": "Quellcode" 7 | } -------------------------------------------------------------------------------- /archive/adobephotoeditor/translations/es-ES.json: -------------------------------------------------------------------------------- 1 | { 2 | "Photo Editor": "Editor de Fotos", 3 | "Close": "Cerrar", 4 | "Image Editor Add-on": "Complemento Editor de Imágenes", 5 | "The Creative SDK Image Editing component can be embedded in any website with just a few lines of Javascript, adding simple yet powerful image editing to an existing workflow.": "Editor de Imágenes se basa en el componente The Creative SDK Image Editing component, que puede ser incorporado en cualquier sitio web con ayuda de pocas líneas de código JavaScript.", 6 | "Source code": "Código fuente" 7 | } -------------------------------------------------------------------------------- /archive/adobephotoeditor/translations/fr-FR.json: -------------------------------------------------------------------------------- 1 | { 2 | "Photo Editor": "Photo Editor", 3 | "Close": "Fermer", 4 | "Image Editor Add-on": "Extension Image Editor", 5 | "The Creative SDK Image Editing component can be embedded in any website with just a few lines of Javascript, adding simple yet powerful image editing to an existing workflow.": "Le composant créatif SDK Image Editing peut être intégré dans tous les sites juste quelques lignes de Javascript, ajoutant simple mais puissante édition d'image au flux de travail existant.", 6 | "Source code": "Code source" 7 | } -------------------------------------------------------------------------------- /archive/adobephotoeditor/translations/ru-RU.json: -------------------------------------------------------------------------------- 1 | { 2 | "Photo Editor": "Фоторедактор", 3 | "Close": "Закрыть", 4 | "Image Editor Add-on": "Редактор картинок", 5 | "The Creative SDK Image Editing component can be embedded in any website with just a few lines of Javascript, adding simple yet powerful image editing to an existing workflow.": "Редактор картинок основан на компоненте The Creative SDK Image Editing component, который может быть встроен на любой сайт с помощью нескольких строк кода на JavaScript.", 6 | "Source code": "Исходный код" 7 | } -------------------------------------------------------------------------------- /cbr/3rd-Party.txt: -------------------------------------------------------------------------------- 1 | This plugin uses code from the following 3rd party projects. 2 | 3 | 4 | 1. jQuery - Query is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. (http://jquery.com/) 5 | 6 | License: MIT License 7 | License File: jQuery.license 8 | 9 | 10 | 2. jQuery UI - jQuery UI is a curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library. Whether you're building highly interactive web applications or you just need to add a date picker to a form control, jQuery UI is the perfect choice. (http://jqueryui.com/) 11 | 12 | License: MIT 13 | 14 | 15 | 3. Fixer is a free API for current and historical foreign exchange rates published by the European Central Bank. (https://fixer.io/) 16 | 17 | License: MIT License 18 | License File: jQuery.license -------------------------------------------------------------------------------- /cbr/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | Insert into document current and historical foreign exchange (forex) rates. 4 | CBR shows how to get data from third party service and insert it into your spreadsheet. 5 | 6 | The plugin uses [Fixer] is a simple and lightweight API for 7 | current and historical foreign exchange (forex) rates. (https://fixer.io/). 8 | 9 | It is called Cbr in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 10 | 11 | ## How to use 12 | 13 | 1. Select the cell. 14 | 2. Open the Plugins tab and press cbr. The current exchange rate will be inserted below, starting from the selected cell. 15 | 16 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /cbr/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "cbr", 3 | "guid" : "asc.{5F9D4EB4-AF61-46EF-AE25-46C96E75E1DD}", 4 | 5 | "variations" : [ 6 | { 7 | "description" : "cbr", 8 | "url" : "index.html", 9 | 10 | "icons" : ["resources/img/icon.png", "resources/img/icon@2x.png"], 11 | 12 | "isViewer" : false, 13 | "EditorsSupport" : ["cell"], 14 | 15 | "isVisual" : false, 16 | "isModal" : false, 17 | "isInsideMode" : false, 18 | 19 | "initDataType" : "none", 20 | "initData" : "", 21 | 22 | "isUpdateOleOnResize" : false, 23 | 24 | "buttons" : [] 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /cbr/licenses/Fixer.license: -------------------------------------------------------------------------------- 1 | (The MIT License) 2 | 3 | Copyright (c) Hakan Ensari 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining 6 | a copy of this software and associated documentation files (the 7 | "Software"), to deal in the Software without restriction, including 8 | without limitation the rights to use, copy, modify, merge, publish, 9 | distribute, sublicense, and/or sell copies of the Software, and to 10 | permit persons to whom the Software is furnished to do so, subject to 11 | the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be 14 | included in all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 20 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 21 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 22 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /cbr/licenses/jQuery.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2009 John Resig, http://jquery.com/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /cbr/resources/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/cbr/resources/img/icon.png -------------------------------------------------------------------------------- /cbr/resources/img/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/cbr/resources/img/icon@2x.png -------------------------------------------------------------------------------- /chess/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin shows how to work with OLE-objects and save data to your document. 4 | 5 | It is called Chess in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Open the Plugins tab and press Chess. 10 | 11 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /chess/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/chess/resources/icon.png -------------------------------------------------------------------------------- /chess/resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/chess/resources/icon@2x.png -------------------------------------------------------------------------------- /chrome_extension_example/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin shows how to turn your plugin into a Chrome extension to add its functionality to the cloud version of ONLYOFFICE. 4 | 5 | It isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | For example: 10 | 11 | 1. Add folder chess 12 | 2. Wrap folder to extension 13 | 14 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /chrome_extension_example/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Asc.chess(fen)", 3 | "description": "Plugin for ONLYOFFICE. chess(fen)", 4 | "version": "1.0", 5 | "manifest_version": 2, 6 | "background": { 7 | }, 8 | "browser_action": { 9 | "default_icon": { 10 | "19": "/chess/resources/icon.png", 11 | "38": "/chess/resources/icon@2x.png" 12 | } 13 | }, 14 | "web_accessible_resources": [ 15 | "/main.js", 16 | "/chess/scripts/chess.js", 17 | "/chess/config.json", 18 | "/chess/resources/icon.png", 19 | "/chess/resources/icon@2x.png", 20 | "/chess/index.html", 21 | "/chess/index_about.html" 22 | ], 23 | "content_scripts": [ 24 | { 25 | "match_about_blank" : true, 26 | "all_frames" : true, 27 | "matches": [""], 28 | "js": [ "/main.js" ], 29 | "run_at": "document_end" 30 | } 31 | ], 32 | "permissions": [ 33 | "file:///*", 34 | "", 35 | "tabs" 36 | ], 37 | "content_security_policy": "script-src 'self' https://onlyoffice.github.io/sdkjs-plugins/v1/ 'unsafe-eval'; object-src 'self'" 38 | } 39 | -------------------------------------------------------------------------------- /clippy/3rd-Party.txt: -------------------------------------------------------------------------------- 1 | This plugin uses code from the following 3rd party projects. 2 | 3 | 4 | 1. clippy.js is a full Javascript implementation of Microsoft Agent (AKA Clippy and friends), ready to be embedded in any website. (https://www.smore.com/clippy-js) 5 | 6 | License: MIT License 7 | License File: Highlight.license 8 | 9 | 10 | 2. jQuery - Query is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. (http://jquery.com/) 11 | 12 | License: MIT License 13 | License File: jQuery.license -------------------------------------------------------------------------------- /clippy/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin shows how to add clippy assintant in document editor. 4 | 5 | The plugin uses the [clippy.js] is a full Javascript implementation of Microsoft Agent (AKA Clippy and friends), ready to be embedded in any website. (https://www.smore.com/clippy-js). 6 | 7 | It is called Clippy in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 8 | 9 | ## How to use 10 | 11 | 1. Find the plugin in the Plugins tab. 12 | 2. Select any assistant. 13 | 3. Click on assistan to start random animation. -------------------------------------------------------------------------------- /clippy/licenses/jQuery.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2009 John Resig, http://jquery.com/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /clippy/resources/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/clippy/resources/img/icon.png -------------------------------------------------------------------------------- /clippy/resources/img/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/clippy/resources/img/icon@2x.png -------------------------------------------------------------------------------- /example_add_comment_in_cell/resources/dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_comment_in_cell/resources/dark/icon.png -------------------------------------------------------------------------------- /example_add_comment_in_cell/resources/dark/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_comment_in_cell/resources/dark/icon@1.25x.png -------------------------------------------------------------------------------- /example_add_comment_in_cell/resources/dark/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_comment_in_cell/resources/dark/icon@1.5x.png -------------------------------------------------------------------------------- /example_add_comment_in_cell/resources/dark/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_comment_in_cell/resources/dark/icon@1.75x.png -------------------------------------------------------------------------------- /example_add_comment_in_cell/resources/dark/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_comment_in_cell/resources/dark/icon@2x.png -------------------------------------------------------------------------------- /example_add_comment_in_cell/resources/light/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_comment_in_cell/resources/light/icon.png -------------------------------------------------------------------------------- /example_add_comment_in_cell/resources/light/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_comment_in_cell/resources/light/icon@1.25x.png -------------------------------------------------------------------------------- /example_add_comment_in_cell/resources/light/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_comment_in_cell/resources/light/icon@1.5x.png -------------------------------------------------------------------------------- /example_add_comment_in_cell/resources/light/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_comment_in_cell/resources/light/icon@1.75x.png -------------------------------------------------------------------------------- /example_add_comment_in_cell/resources/light/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_comment_in_cell/resources/light/icon@2x.png -------------------------------------------------------------------------------- /example_add_content_controls/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin shows how to add, content controls using plugins. 4 | 5 | It is called "Example add content controls" in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Open the Plugins tab and press "Example add content controls". 10 | 2. In each field you can edit settings of content controls. After that press the "Insert". 11 | 3. In the first field - plain text or rich text, in the second field - check box, in the third field - picture, in the fourth field - combo box or drop-down list, in the fifth field - date. 12 | 13 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /example_add_content_controls/resources/dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_content_controls/resources/dark/icon.png -------------------------------------------------------------------------------- /example_add_content_controls/resources/dark/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_content_controls/resources/dark/icon@1.25x.png -------------------------------------------------------------------------------- /example_add_content_controls/resources/dark/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_content_controls/resources/dark/icon@1.5x.png -------------------------------------------------------------------------------- /example_add_content_controls/resources/dark/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_content_controls/resources/dark/icon@1.75x.png -------------------------------------------------------------------------------- /example_add_content_controls/resources/dark/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_content_controls/resources/dark/icon@2x.png -------------------------------------------------------------------------------- /example_add_content_controls/resources/light/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_content_controls/resources/light/icon.png -------------------------------------------------------------------------------- /example_add_content_controls/resources/light/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_content_controls/resources/light/icon@1.25x.png -------------------------------------------------------------------------------- /example_add_content_controls/resources/light/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_content_controls/resources/light/icon@1.5x.png -------------------------------------------------------------------------------- /example_add_content_controls/resources/light/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_content_controls/resources/light/icon@1.75x.png -------------------------------------------------------------------------------- /example_add_content_controls/resources/light/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_add_content_controls/resources/light/icon@2x.png -------------------------------------------------------------------------------- /example_autocomplete/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin is an example of an input assistant/non-standard keyboard. It has its own window that appears and disappears when you type the text. Its location is tied to the cursor. 4 | 5 | It isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Start typing any word. If plugin find some words in dictionary, then you will see input helper window with found words. 10 | 2. Select an option and press the "Enter" button to complete the word. 11 | 12 | This is system plugin (in config has flag "isSystem": true,) and you don't need stat it. It starts automatically. 13 | 14 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /example_autocomplete/resources/dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_autocomplete/resources/dark/icon.png -------------------------------------------------------------------------------- /example_autocomplete/resources/dark/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_autocomplete/resources/dark/icon@1.25x.png -------------------------------------------------------------------------------- /example_autocomplete/resources/dark/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_autocomplete/resources/dark/icon@1.5x.png -------------------------------------------------------------------------------- /example_autocomplete/resources/dark/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_autocomplete/resources/dark/icon@1.75x.png -------------------------------------------------------------------------------- /example_autocomplete/resources/dark/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_autocomplete/resources/dark/icon@2x.png -------------------------------------------------------------------------------- /example_autocomplete/resources/light/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_autocomplete/resources/light/icon.png -------------------------------------------------------------------------------- /example_autocomplete/resources/light/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_autocomplete/resources/light/icon@1.25x.png -------------------------------------------------------------------------------- /example_autocomplete/resources/light/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_autocomplete/resources/light/icon@1.5x.png -------------------------------------------------------------------------------- /example_autocomplete/resources/light/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_autocomplete/resources/light/icon@1.75x.png -------------------------------------------------------------------------------- /example_autocomplete/resources/light/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_autocomplete/resources/light/icon@2x.png -------------------------------------------------------------------------------- /example_controls/resources/dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_controls/resources/dark/icon.png -------------------------------------------------------------------------------- /example_controls/resources/dark/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_controls/resources/dark/icon@1.25x.png -------------------------------------------------------------------------------- /example_controls/resources/dark/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_controls/resources/dark/icon@1.5x.png -------------------------------------------------------------------------------- /example_controls/resources/dark/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_controls/resources/dark/icon@1.75x.png -------------------------------------------------------------------------------- /example_controls/resources/dark/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_controls/resources/dark/icon@2x.png -------------------------------------------------------------------------------- /example_controls/resources/light/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_controls/resources/light/icon.png -------------------------------------------------------------------------------- /example_controls/resources/light/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_controls/resources/light/icon@1.25x.png -------------------------------------------------------------------------------- /example_controls/resources/light/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_controls/resources/light/icon@1.5x.png -------------------------------------------------------------------------------- /example_controls/resources/light/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_controls/resources/light/icon@1.75x.png -------------------------------------------------------------------------------- /example_controls/resources/light/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_controls/resources/light/icon@2x.png -------------------------------------------------------------------------------- /example_controls/scripts/select2-4.0.6-rc.1/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2012-2017 Kevin Brown, Igor Vaynberg, and Select2 contributors 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /example_controls/scripts/select2-4.0.6-rc.1/docs/README.md: -------------------------------------------------------------------------------- 1 | Effective beginning September 10, 2017, the Select2 documentation repository is now available at [`select2/docs`](https://github.com/select2/docs). 2 | -------------------------------------------------------------------------------- /example_controls/scripts/select2-4.0.6-rc.1/docs/announcements-4.0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | select2 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /example_controls/scripts/select2-4.0.6-rc.1/docs/community.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | select2 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /example_controls/scripts/select2-4.0.6-rc.1/docs/examples.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | select2 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /example_controls/scripts/select2-4.0.6-rc.1/docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | select2 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /example_controls/scripts/select2-4.0.6-rc.1/docs/options-old.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | select2 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /example_controls/scripts/select2-4.0.6-rc.1/docs/options.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | select2 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /example_custom_fields_add_2/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | Insert into document custom fields. 4 | 5 | It is called "Example add custom fields 2" in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Open the Plugins tab and press "Example add custom fields 2". 10 | 2. Add textQ or listQ in the corresponding tabs (type necessary text, check necessary options and press the "Save" button). 11 | 3. If you nee you can copy necessary field in the corresponding tab. 12 | 4. You can insert option into document in "Insert Option" tab (choose an option and press the "Insert" button). 13 | 14 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /example_custom_fields_add_2/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Example add custom fields 2", 3 | "guid" : "asc.{C05D81BC-92C7-4C48-BA49-E8B9AAFCD776}", 4 | 5 | "variations" : [ 6 | { 7 | "description" : "Example add custom fields 2", 8 | "url" : "index.html", 9 | 10 | "icons" : ["resources/img/icon.png", "resources/img/icon@2x.png", "resources/img/icon2.png", "resources/img/icon2@2x.png"], 11 | "isViewer" : false, 12 | "EditorsSupport" : ["word"], 13 | 14 | "isVisual" : true, 15 | "isModal" : false, 16 | "isInsideMode" : true, 17 | 18 | "initDataType" : "none", 19 | "initData" : "", 20 | 21 | "isUpdateOleOnResize" : false, 22 | 23 | "buttons" : [] 24 | } 25 | ] 26 | } -------------------------------------------------------------------------------- /example_custom_fields_add_2/resources/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_custom_fields_add_2/resources/img/icon.png -------------------------------------------------------------------------------- /example_custom_fields_add_2/resources/img/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_custom_fields_add_2/resources/img/icon2.png -------------------------------------------------------------------------------- /example_custom_fields_add_2/resources/img/icon2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_custom_fields_add_2/resources/img/icon2@2x.png -------------------------------------------------------------------------------- /example_custom_fields_add_2/resources/img/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_custom_fields_add_2/resources/img/icon@2x.png -------------------------------------------------------------------------------- /example_customfields_add/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | Insert into document custom field. This plugin works in pair with plugin "Example loading custom fields". 4 | 5 | It is called Example add custom fields in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Open the Plugins tab and press "Example add custom fields". 10 | 2. For adding simple field type your question and label in necessary fields (they are marked) and press the button "Add simple field". This field will added in current cursor position. 11 | 3. For adding simple field type your question and label in necessary fields (they are marked). For adding answer variation type it in field (marked "Type your item") and press the button "Add" (repeat it if you need add more variations). If you need remove any answer variation - select him in combo box and press the button "Remove". When field is ready press the button "Add drop down field". This field will adding in current cursor position. 12 | 13 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /example_customfields_add/resources/dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_add/resources/dark/icon.png -------------------------------------------------------------------------------- /example_customfields_add/resources/dark/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_add/resources/dark/icon@1.25x.png -------------------------------------------------------------------------------- /example_customfields_add/resources/dark/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_add/resources/dark/icon@1.5x.png -------------------------------------------------------------------------------- /example_customfields_add/resources/dark/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_add/resources/dark/icon@1.75x.png -------------------------------------------------------------------------------- /example_customfields_add/resources/dark/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_add/resources/dark/icon@2x.png -------------------------------------------------------------------------------- /example_customfields_add/resources/light/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_add/resources/light/icon.png -------------------------------------------------------------------------------- /example_customfields_add/resources/light/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_add/resources/light/icon@1.25x.png -------------------------------------------------------------------------------- /example_customfields_add/resources/light/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_add/resources/light/icon@1.5x.png -------------------------------------------------------------------------------- /example_customfields_add/resources/light/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_add/resources/light/icon@1.75x.png -------------------------------------------------------------------------------- /example_customfields_add/resources/light/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_add/resources/light/icon@2x.png -------------------------------------------------------------------------------- /example_customfields_load/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | Load custom fields from document (the fields should already be added to the document). This plugin works in pair with plugin "Example add custom fields". 4 | 5 | It is called Example load custom fields in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Open the Plugins tab and press "Example load custom fields". 10 | 2. For answering on simple field just type your answer in the field "typo here..." and press the button "Next" or "Back" to go back to the previous question. 11 | 3. For answering on question with drop down variants select one variant and press the button "Next" or "Back" to go back to the previous question. 12 | 4. When the questions are finished, the plugin will automatically close. And your answers will appear in the document. 13 | 14 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /example_customfields_load/resources/dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_load/resources/dark/icon.png -------------------------------------------------------------------------------- /example_customfields_load/resources/dark/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_load/resources/dark/icon@1.25x.png -------------------------------------------------------------------------------- /example_customfields_load/resources/dark/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_load/resources/dark/icon@1.5x.png -------------------------------------------------------------------------------- /example_customfields_load/resources/dark/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_load/resources/dark/icon@1.75x.png -------------------------------------------------------------------------------- /example_customfields_load/resources/dark/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_load/resources/dark/icon@2x.png -------------------------------------------------------------------------------- /example_customfields_load/resources/light/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_load/resources/light/icon.png -------------------------------------------------------------------------------- /example_customfields_load/resources/light/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_load/resources/light/icon@1.25x.png -------------------------------------------------------------------------------- /example_customfields_load/resources/light/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_load/resources/light/icon@1.5x.png -------------------------------------------------------------------------------- /example_customfields_load/resources/light/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_load/resources/light/icon@1.75x.png -------------------------------------------------------------------------------- /example_customfields_load/resources/light/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_customfields_load/resources/light/icon@2x.png -------------------------------------------------------------------------------- /example_extended_comments/3rd-Party.txt: -------------------------------------------------------------------------------- 1 | This plugin uses code from the following 3rd party projects. 2 | 3 | 4 | 1. jQuery - Query is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. (http://jquery.com/) 5 | 6 | License: MIT License 7 | License File: jQuery.license 8 | 9 | 10 | 2 Select2 gives you a customizable select box with support for searching, tagging, remote data sets, infinite scrolling, and many other highly used options. (https://select2.org/) 11 | 12 | License: MIT 13 | License File: Select2.license -------------------------------------------------------------------------------- /example_extended_comments/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 ONLYOFFICE 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /example_extended_comments/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | Paste, edit, remove comments and replies (with user data) in document. 4 | 5 | It is called Extended comments in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Find the plugin in the Plugins tab. 10 | 2. Enter the comment text, select some params (if you need) and click the "Comment" button to add comment into document. 11 | 3. For delete any comment or reply checked them and click the "Delete" buttom. 12 | 4. For edit any cooment or reply click on the pen icon, enter new text and click the "Ok" button. 13 | 5. For add reply click the "Add reply" button, enter a text and clock the "Reply" button. 14 | 6. The "Cancel" button resets all entered values. 15 | 7. If some comment or reply was chanched (added, removed) in the interface, the plugin will automatically receive these changes. 16 | 17 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /example_extended_comments/licenses/Select2.license: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2012-2017 Kevin Brown, Igor Vaynberg, and Select2 contributors 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /example_extended_comments/licenses/jQuery.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2009 John Resig, http://jquery.com/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /example_extended_comments/resources/dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_extended_comments/resources/dark/icon.png -------------------------------------------------------------------------------- /example_extended_comments/resources/dark/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_extended_comments/resources/dark/icon@1.25x.png -------------------------------------------------------------------------------- /example_extended_comments/resources/dark/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_extended_comments/resources/dark/icon@1.5x.png -------------------------------------------------------------------------------- /example_extended_comments/resources/dark/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_extended_comments/resources/dark/icon@1.75x.png -------------------------------------------------------------------------------- /example_extended_comments/resources/dark/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_extended_comments/resources/dark/icon@2x.png -------------------------------------------------------------------------------- /example_extended_comments/resources/light/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_extended_comments/resources/light/icon.png -------------------------------------------------------------------------------- /example_extended_comments/resources/light/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_extended_comments/resources/light/icon@1.25x.png -------------------------------------------------------------------------------- /example_extended_comments/resources/light/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_extended_comments/resources/light/icon@1.5x.png -------------------------------------------------------------------------------- /example_extended_comments/resources/light/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_extended_comments/resources/light/icon@1.75x.png -------------------------------------------------------------------------------- /example_extended_comments/resources/light/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_extended_comments/resources/light/icon@2x.png -------------------------------------------------------------------------------- /example_extended_comments/vendor/select2-4.0.6-rc.1/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2012-2017 Kevin Brown, Igor Vaynberg, and Select2 contributors 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /example_extended_comments/vendor/select2-4.0.6-rc.1/docs/README.md: -------------------------------------------------------------------------------- 1 | Effective beginning September 10, 2017, the Select2 documentation repository is now available at [`select2/docs`](https://github.com/select2/docs). 2 | -------------------------------------------------------------------------------- /example_extended_comments/vendor/select2-4.0.6-rc.1/docs/announcements-4.0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | select2 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /example_extended_comments/vendor/select2-4.0.6-rc.1/docs/community.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | select2 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /example_extended_comments/vendor/select2-4.0.6-rc.1/docs/examples.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | select2 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /example_extended_comments/vendor/select2-4.0.6-rc.1/docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | select2 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /example_extended_comments/vendor/select2-4.0.6-rc.1/docs/options-old.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | select2 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /example_extended_comments/vendor/select2-4.0.6-rc.1/docs/options.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | select2 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /example_insert_content_and_document/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin shows how to insert content or another document in current documents. 4 | 5 | 6 | It is called "Example insert content & document" in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 7 | 8 | ## How to use 9 | 10 | 1. Open the Plugins tab and press "Example insert content & document" (all content will be added at the current cursor position). 11 | 12 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /example_insert_content_and_document/index.html: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 20 | Example insert content and document 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /example_insert_content_and_document/resources/dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_insert_content_and_document/resources/dark/icon.png -------------------------------------------------------------------------------- /example_insert_content_and_document/resources/dark/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_insert_content_and_document/resources/dark/icon@1.25x.png -------------------------------------------------------------------------------- /example_insert_content_and_document/resources/dark/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_insert_content_and_document/resources/dark/icon@1.5x.png -------------------------------------------------------------------------------- /example_insert_content_and_document/resources/dark/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_insert_content_and_document/resources/dark/icon@1.75x.png -------------------------------------------------------------------------------- /example_insert_content_and_document/resources/dark/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_insert_content_and_document/resources/dark/icon@2x.png -------------------------------------------------------------------------------- /example_insert_content_and_document/resources/light/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_insert_content_and_document/resources/light/icon.png -------------------------------------------------------------------------------- /example_insert_content_and_document/resources/light/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_insert_content_and_document/resources/light/icon@1.25x.png -------------------------------------------------------------------------------- /example_insert_content_and_document/resources/light/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_insert_content_and_document/resources/light/icon@1.5x.png -------------------------------------------------------------------------------- /example_insert_content_and_document/resources/light/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_insert_content_and_document/resources/light/icon@1.75x.png -------------------------------------------------------------------------------- /example_insert_content_and_document/resources/light/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_insert_content_and_document/resources/light/icon@2x.png -------------------------------------------------------------------------------- /example_jitsi/3rd-Party.txt: -------------------------------------------------------------------------------- 1 | This plugin uses code from the following 3rd party projects. 2 | 3 | 4 | 1. Jitsi is a collection of Open Source projects which provide state-of-the-art video conferencing capabilities that are secure, easy to use and easy to self-host. (https://meet.jit.si/) 5 | 6 | License: Apache version 2.0 7 | License File: jisty.license -------------------------------------------------------------------------------- /example_jitsi/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin shows how to integrate Jitsi service in editor. 4 | 5 | The plugin uses [Jitsi] is a collection of Open Source projects which provide state-of-the-art video conferencing capabilities that are secure, easy to use and easy to self-host. (https://meet.jit.si/) 6 | 7 | It is called Jitsi in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 8 | 9 | ## How to use 10 | 11 | 1. Open the Plugins tab and press Jitsi. 12 | 2. Press the "Start" button (for creating jitsi iframe). 13 | 3. Type your nickname and allow the browser to use the camera and microphone. 14 | 3. If you need to destroy jitsi iframe press the "Stop" button. 15 | 16 | ## Known issues 17 | 18 | * The plugin doesn't work with http (it works only with https). 19 | 20 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /example_jitsi/resources/dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_jitsi/resources/dark/icon.png -------------------------------------------------------------------------------- /example_jitsi/resources/dark/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_jitsi/resources/dark/icon@1.25x.png -------------------------------------------------------------------------------- /example_jitsi/resources/dark/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_jitsi/resources/dark/icon@1.5x.png -------------------------------------------------------------------------------- /example_jitsi/resources/dark/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_jitsi/resources/dark/icon@1.75x.png -------------------------------------------------------------------------------- /example_jitsi/resources/dark/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_jitsi/resources/dark/icon@2x.png -------------------------------------------------------------------------------- /example_jitsi/resources/light/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_jitsi/resources/light/icon.png -------------------------------------------------------------------------------- /example_jitsi/resources/light/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_jitsi/resources/light/icon@1.25x.png -------------------------------------------------------------------------------- /example_jitsi/resources/light/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_jitsi/resources/light/icon@1.5x.png -------------------------------------------------------------------------------- /example_jitsi/resources/light/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_jitsi/resources/light/icon@1.75x.png -------------------------------------------------------------------------------- /example_jitsi/resources/light/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_jitsi/resources/light/icon@2x.png -------------------------------------------------------------------------------- /example_move_cursor/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin shows how to move cursor to start or end document. 4 | 5 | It is called "Example move cursor" in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Open the Plugins tab and press "Example move cursor". 10 | 2. Press the "Start" button to move cursor to start a document. 11 | 3. Press the "Stop" button to move cursor to end a document. 12 | 13 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /example_move_cursor/resources/dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_move_cursor/resources/dark/icon.png -------------------------------------------------------------------------------- /example_move_cursor/resources/dark/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_move_cursor/resources/dark/icon@1.25x.png -------------------------------------------------------------------------------- /example_move_cursor/resources/dark/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_move_cursor/resources/dark/icon@1.5x.png -------------------------------------------------------------------------------- /example_move_cursor/resources/dark/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_move_cursor/resources/dark/icon@1.75x.png -------------------------------------------------------------------------------- /example_move_cursor/resources/dark/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_move_cursor/resources/dark/icon@2x.png -------------------------------------------------------------------------------- /example_move_cursor/resources/light/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_move_cursor/resources/light/icon.png -------------------------------------------------------------------------------- /example_move_cursor/resources/light/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_move_cursor/resources/light/icon@1.25x.png -------------------------------------------------------------------------------- /example_move_cursor/resources/light/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_move_cursor/resources/light/icon@1.5x.png -------------------------------------------------------------------------------- /example_move_cursor/resources/light/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_move_cursor/resources/light/icon@1.75x.png -------------------------------------------------------------------------------- /example_move_cursor/resources/light/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_move_cursor/resources/light/icon@2x.png -------------------------------------------------------------------------------- /example_search_and_change_text_background_color/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin shows how to search text and change text background color. 4 | 5 | It is called "Example search and change background text" in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Open the Plugins tab and press "Example search and change background text". 10 | 2. Type search text in the field. 11 | 3. Choose the color. 12 | 4. Press the "Color" button to change background color for selected text. 13 | 5. Press the "Color all" button to change the background for all found text. 14 | 6. Press the "Reset" button to reset background color for selected text. 15 | 16 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /example_search_and_change_text_background_color/resources/dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_and_change_text_background_color/resources/dark/icon.png -------------------------------------------------------------------------------- /example_search_and_change_text_background_color/resources/dark/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_and_change_text_background_color/resources/dark/icon@1.25x.png -------------------------------------------------------------------------------- /example_search_and_change_text_background_color/resources/dark/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_and_change_text_background_color/resources/dark/icon@1.5x.png -------------------------------------------------------------------------------- /example_search_and_change_text_background_color/resources/dark/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_and_change_text_background_color/resources/dark/icon@1.75x.png -------------------------------------------------------------------------------- /example_search_and_change_text_background_color/resources/dark/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_and_change_text_background_color/resources/dark/icon@2x.png -------------------------------------------------------------------------------- /example_search_and_change_text_background_color/resources/light/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_and_change_text_background_color/resources/light/icon.png -------------------------------------------------------------------------------- /example_search_and_change_text_background_color/resources/light/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_and_change_text_background_color/resources/light/icon@1.25x.png -------------------------------------------------------------------------------- /example_search_and_change_text_background_color/resources/light/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_and_change_text_background_color/resources/light/icon@1.5x.png -------------------------------------------------------------------------------- /example_search_and_change_text_background_color/resources/light/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_and_change_text_background_color/resources/light/icon@1.75x.png -------------------------------------------------------------------------------- /example_search_and_change_text_background_color/resources/light/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_and_change_text_background_color/resources/light/icon@2x.png -------------------------------------------------------------------------------- /example_search_replace/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin is an example of search & replace feature with settings. 4 | 5 | It is called "Example of search and replace" in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Insert into document some text for searching (in the plugin code, they are in an array arrCodes). 10 | 2. Open the Plugins tab and press "Example of search and replace". 11 | 3. Enter the text you want to replace each field with and press the "Ok" button. 12 | 13 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /example_search_replace/resources/dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_replace/resources/dark/icon.png -------------------------------------------------------------------------------- /example_search_replace/resources/dark/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_replace/resources/dark/icon@1.25x.png -------------------------------------------------------------------------------- /example_search_replace/resources/dark/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_replace/resources/dark/icon@1.5x.png -------------------------------------------------------------------------------- /example_search_replace/resources/dark/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_replace/resources/dark/icon@1.75x.png -------------------------------------------------------------------------------- /example_search_replace/resources/dark/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_replace/resources/dark/icon@2x.png -------------------------------------------------------------------------------- /example_search_replace/resources/light/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_replace/resources/light/icon.png -------------------------------------------------------------------------------- /example_search_replace/resources/light/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_replace/resources/light/icon@1.25x.png -------------------------------------------------------------------------------- /example_search_replace/resources/light/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_replace/resources/light/icon@1.5x.png -------------------------------------------------------------------------------- /example_search_replace/resources/light/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_replace/resources/light/icon@1.75x.png -------------------------------------------------------------------------------- /example_search_replace/resources/light/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_search_replace/resources/light/icon@2x.png -------------------------------------------------------------------------------- /example_speech_input/3rd-Party.txt: -------------------------------------------------------------------------------- 1 | This plugin uses code from the following 3rd party projects. 2 | 3 | 4 | 1. jQuery - Query is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. (http://jquery.com/) 5 | 6 | License: MIT License 7 | License File: jQuery.license 8 | 9 | 10 | 2. Select2 gives you a customizable select box with support for searching, tagging, remote data sets, infinite scrolling, and many other highly used options. (https://select2.org/) 11 | 12 | License: MIT 13 | License File: Select2.license -------------------------------------------------------------------------------- /example_speech_input/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 ONLYOFFICE 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /example_speech_input/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | Accurately convert speech into text using the Web Speech API (https://developer.mozilla.org/en-US/docs/Web/API/Web_Speech_API). 4 | 5 | This plugin work only in Google chrome browser. But you can use it in FireFox (Recognition can be enabled via the media.webspeech.recognition.enable flag in about:config; synthesis is switched on by default). Check it for more information https://developer.mozilla.org/en-US/docs/Web/API/Web_Speech_API 6 | 7 | It is called "Speech input" in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 8 | 9 | ## How to use 10 | 11 | 1. Find the plugin in the Plugins tab. 12 | 2. Set the language you use. 13 | 3. Click the microphone button and start speaking. 14 | 4. After dictation is complete, the text is inserted into the document (for stopping press again the microphone button). 15 | 16 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /example_speech_input/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Speech input", 3 | "guid" : "asc.{F30BDD79-23A0-4B05-8DE3-2AB77D03A1B4}", 4 | "version" : "1.0", 5 | 6 | "variations" : [ 7 | { 8 | "description" : "Speech input", 9 | "url" : "index.html", 10 | 11 | "icons" : ["resources/img/icon.png", "resources/img/icon@2x.png"], 12 | "isViewer" : true, 13 | "EditorsSupport" : ["word","cell"], 14 | 15 | "isVisual" : true, 16 | "isModal" : false, 17 | "isInsideMode" : true, 18 | 19 | "initDataType" : "", 20 | "initData" : "", 21 | 22 | "isUpdateOleOnResize" : false, 23 | 24 | "buttons" : [ ], 25 | 26 | "initOnSelectionChanged" : false 27 | } 28 | ] 29 | } -------------------------------------------------------------------------------- /example_speech_input/licenses/Select2.license: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2012-2017 Kevin Brown, Igor Vaynberg, and Select2 contributors 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /example_speech_input/licenses/jQuery.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2009 John Resig, http://jquery.com/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /example_speech_input/resources/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_speech_input/resources/img/icon.png -------------------------------------------------------------------------------- /example_speech_input/resources/img/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_speech_input/resources/img/icon@2x.png -------------------------------------------------------------------------------- /example_speech_input/resources/img/mic_src/mic-animate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_speech_input/resources/img/mic_src/mic-animate.png -------------------------------------------------------------------------------- /example_speech_input/resources/img/mic_src/mic-slash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_speech_input/resources/img/mic_src/mic-slash.png -------------------------------------------------------------------------------- /example_speech_input/resources/img/mic_src/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_speech_input/resources/img/mic_src/mic.png -------------------------------------------------------------------------------- /example_speech_input/vendor/select2-4.0.6-rc.1/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2012-2017 Kevin Brown, Igor Vaynberg, and Select2 contributors 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /example_speech_input/vendor/select2-4.0.6-rc.1/docs/README.md: -------------------------------------------------------------------------------- 1 | Effective beginning September 10, 2017, the Select2 documentation repository is now available at [`select2/docs`](https://github.com/select2/docs). 2 | -------------------------------------------------------------------------------- /example_speech_input/vendor/select2-4.0.6-rc.1/docs/announcements-4.0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | select2 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /example_speech_input/vendor/select2-4.0.6-rc.1/docs/community.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | select2 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /example_speech_input/vendor/select2-4.0.6-rc.1/docs/examples.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | select2 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /example_speech_input/vendor/select2-4.0.6-rc.1/docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | select2 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /example_speech_input/vendor/select2-4.0.6-rc.1/docs/options-old.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | select2 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /example_speech_input/vendor/select2-4.0.6-rc.1/docs/options.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | select2 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /example_work_with_content_controls/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin shows how to add, edit, and delete content controls using plugins. 4 | 5 | It is called "Example work with content controls" in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Open the Plugins tab and press "Example work with content controls". 10 | 2. In the first field you can remove, edit (setting) or add new content controls. After that press the "Insert/Replace". 11 | 3. In the second field you can past InternalId for remove content control and press the "Remove" button. 12 | 4. Press the "Get All Content Controls" button for get all content controls (info will apear in the third field). 13 | 5. Press the "Change Field State" button for change field state (is content control or not). 14 | 6. Press the "Get Current Field ID" and check console in your browser. 15 | 16 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /example_work_with_content_controls/resources/dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls/resources/dark/icon.png -------------------------------------------------------------------------------- /example_work_with_content_controls/resources/dark/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls/resources/dark/icon@1.25x.png -------------------------------------------------------------------------------- /example_work_with_content_controls/resources/dark/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls/resources/dark/icon@1.5x.png -------------------------------------------------------------------------------- /example_work_with_content_controls/resources/dark/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls/resources/dark/icon@1.75x.png -------------------------------------------------------------------------------- /example_work_with_content_controls/resources/dark/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls/resources/dark/icon@2x.png -------------------------------------------------------------------------------- /example_work_with_content_controls/resources/light/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls/resources/light/icon.png -------------------------------------------------------------------------------- /example_work_with_content_controls/resources/light/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls/resources/light/icon@1.25x.png -------------------------------------------------------------------------------- /example_work_with_content_controls/resources/light/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls/resources/light/icon@1.5x.png -------------------------------------------------------------------------------- /example_work_with_content_controls/resources/light/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls/resources/light/icon@1.75x.png -------------------------------------------------------------------------------- /example_work_with_content_controls/resources/light/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls/resources/light/icon@2x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_combo/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin shows how add for content control combo box like in plugin example_autocomplete. 4 | 5 | It is called "example_work_with_content_controls_combo" in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Open the Plugins tab and press "example_work_with_content_controls_combo" (you nee add some content controls (with tag {people} or {position}, this tags use in code plugin for example) before or after start plugin). 10 | 2. Click on content control. If plugin find necessary tag, then you will see input helper window with some options. 11 | 2. Select an option and press the "Enter" button or click to paste option value in content control. 12 | 13 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /example_work_with_content_controls_combo/resources/dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_combo/resources/dark/icon.png -------------------------------------------------------------------------------- /example_work_with_content_controls_combo/resources/dark/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_combo/resources/dark/icon@1.25x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_combo/resources/dark/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_combo/resources/dark/icon@1.5x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_combo/resources/dark/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_combo/resources/dark/icon@1.75x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_combo/resources/dark/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_combo/resources/dark/icon@2x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_combo/resources/light/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_combo/resources/light/icon.png -------------------------------------------------------------------------------- /example_work_with_content_controls_combo/resources/light/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_combo/resources/light/icon@1.25x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_combo/resources/light/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_combo/resources/light/icon@1.5x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_combo/resources/light/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_combo/resources/light/icon@1.75x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_combo/resources/light/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_combo/resources/light/icon@2x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_content/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin show how to insert the contents of one content control into another. 4 | 5 | It is called "Example work with content controls content" in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Add two content control (1 - with tag 11, 2 - with tag 14). 10 | 2. Open the Plugins tab and press "Example work with content controls content" (content from content control with tag 11 will be inserted into content control with tag 14). 11 | 12 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /example_work_with_content_controls_content/index.html: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | Example work with content controls content 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /example_work_with_content_controls_content/resources/dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_content/resources/dark/icon.png -------------------------------------------------------------------------------- /example_work_with_content_controls_content/resources/dark/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_content/resources/dark/icon@1.25x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_content/resources/dark/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_content/resources/dark/icon@1.5x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_content/resources/dark/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_content/resources/dark/icon@1.75x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_content/resources/dark/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_content/resources/dark/icon@2x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_content/resources/light/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_content/resources/light/icon.png -------------------------------------------------------------------------------- /example_work_with_content_controls_content/resources/light/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_content/resources/light/icon@1.25x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_content/resources/light/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_content/resources/light/icon@1.5x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_content/resources/light/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_content/resources/light/icon@1.75x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_content/resources/light/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_content/resources/light/icon@2x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_navigation/3rd-Party.txt: -------------------------------------------------------------------------------- 1 | This plugin uses code from the following 3rd party projects. 2 | 3 | 4 | 1. jQuery - Query is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. (http://jquery.com/) 5 | 6 | License: MIT License 7 | License File: jQuery.license -------------------------------------------------------------------------------- /example_work_with_content_controls_navigation/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 ONLYOFFICE 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /example_work_with_content_controls_navigation/licenses/jQuery.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2009 John Resig, http://jquery.com/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /example_work_with_content_controls_navigation/resources/dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_navigation/resources/dark/icon.png -------------------------------------------------------------------------------- /example_work_with_content_controls_navigation/resources/dark/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_navigation/resources/dark/icon@1.25x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_navigation/resources/dark/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_navigation/resources/dark/icon@1.5x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_navigation/resources/dark/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_navigation/resources/dark/icon@1.75x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_navigation/resources/dark/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_navigation/resources/dark/icon@2x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_navigation/resources/light/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_navigation/resources/light/icon.png -------------------------------------------------------------------------------- /example_work_with_content_controls_navigation/resources/light/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_navigation/resources/light/icon@1.25x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_navigation/resources/light/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_navigation/resources/light/icon@1.5x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_navigation/resources/light/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_navigation/resources/light/icon@1.75x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_navigation/resources/light/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_navigation/resources/light/icon@2x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_tags/3rd-Party.txt: -------------------------------------------------------------------------------- 1 | This plugin uses code from the following 3rd party projects. 2 | 3 | 4 | 1. jQuery - Query is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. (http://jquery.com/) 5 | 6 | License: MIT License 7 | License File: jQuery.license -------------------------------------------------------------------------------- /example_work_with_content_controls_tags/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin shows how to work with content constrols tags. 4 | 5 | It is called "Example work with content controls tags" in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Open the Plugins tab and press "Example work with content controls tags". You need to add some content controls into document (you can do it before or after the plugin was started). Also you need to set any tag for content controls. 10 | 2. In the field below you can see all content controls tags (press the "Refresh list" button). 11 | 3. Press the "Past "Test paste for document"" for paste text into selected content control. 12 | 13 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /example_work_with_content_controls_tags/licenses/jQuery.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2009 John Resig, http://jquery.com/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /example_work_with_content_controls_tags/resources/dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_tags/resources/dark/icon.png -------------------------------------------------------------------------------- /example_work_with_content_controls_tags/resources/dark/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_tags/resources/dark/icon@1.25x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_tags/resources/dark/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_tags/resources/dark/icon@1.5x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_tags/resources/dark/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_tags/resources/dark/icon@1.75x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_tags/resources/dark/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_tags/resources/dark/icon@2x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_tags/resources/light/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_tags/resources/light/icon.png -------------------------------------------------------------------------------- /example_work_with_content_controls_tags/resources/light/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_tags/resources/light/icon@1.25x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_tags/resources/light/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_tags/resources/light/icon@1.5x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_tags/resources/light/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_tags/resources/light/icon@1.75x.png -------------------------------------------------------------------------------- /example_work_with_content_controls_tags/resources/light/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/example_work_with_content_controls_tags/resources/light/icon@2x.png -------------------------------------------------------------------------------- /externallistener/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin shows how to manipulate the editor from an external panel of a 3rd party service. 4 | 5 | It is called Listener in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Open the "test.html" (pluginfolder/test/test.html or pluginfolder/owndrop/test.html) file and past url to editor in iframe src (this file has instruction how to need open it to try). 10 | 2. Open the "test.html" file as described in the instructions inside the file. 11 | 3. Find the plugin in the Plugins tab. 12 | 4. Press buttons (or dropping item) in left side of screen to try it. Also you can write your own scripts (test2 folder). 13 | 14 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic 15 | -------------------------------------------------------------------------------- /externallistener/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Listener", 3 | "guid" : "asc.{A8705DEE-7544-4C33-B3D5-168406D92F72}", 4 | "baseUrl" : "", 5 | "variations" : [ 6 | { 7 | "description" : "Listener", 8 | "url" : "index.html", 9 | "icons" : ["resources/img/icon.png", "resources/img/icon@2x.png"], 10 | "isViewer" : false, 11 | "EditorsSupport" : ["word", "cell", "slide"], 12 | "isVisual" : false, 13 | "isModal" : true, 14 | "isInsideMode" : false, 15 | "isSystem" : true, 16 | "initDataType" : "none", 17 | "initData" : "", 18 | "isUpdateOleOnResize" : true, 19 | "buttons" : [] 20 | } 21 | ] 22 | } -------------------------------------------------------------------------------- /externallistener/index.html: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 20 | Listener 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /externallistener/resources/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/externallistener/resources/img/icon.png -------------------------------------------------------------------------------- /externallistener/resources/img/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/externallistener/resources/img/icon@2x.png -------------------------------------------------------------------------------- /helloworld/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This simple plugin is designed to show the basic functionality of ONLYOFFICE Document Editor plugins. It inserts the 'Hello World!' phrase when you press the button. 4 | 5 | It is without interface plugin and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Open the Plugins tab and press "hello world". 10 | 11 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /helloworld/index.html: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 20 | Hello world 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /helloworld/resources/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/helloworld/resources/img/icon.png -------------------------------------------------------------------------------- /helloworld/resources/img/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/helloworld/resources/img/icon@2x.png -------------------------------------------------------------------------------- /interface/3rd-Party.txt: -------------------------------------------------------------------------------- 1 | This plugin uses code from the following 3rd party projects. 2 | 3 | 4 | 1. jQuery - Query is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. (http://jquery.com/) 5 | 6 | License: MIT License 7 | License File: jQuery.license -------------------------------------------------------------------------------- /interface/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin shows how you can change interface. 4 | 5 | It isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Add this plugin to yourself and open any document. 10 | 11 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /interface/index.html: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 20 | interface 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /interface/licenses/jQuery.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2009 John Resig, http://jquery.com/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /interface/resources/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/interface/resources/img/icon.png -------------------------------------------------------------------------------- /interface/resources/img/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/interface/resources/img/icon2.png -------------------------------------------------------------------------------- /interface/resources/img/icon2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/interface/resources/img/icon2@2x.png -------------------------------------------------------------------------------- /interface/resources/img/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/interface/resources/img/icon@2x.png -------------------------------------------------------------------------------- /invoices/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This simple plugin is designed to show the basic functionality of ONLYOFFICE Document Editor plugins. It inserts the text when you press the button. 4 | 5 | It is called "Invoices" in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Open the Plugins tab and press "Invoices". 10 | 2. Press the "+" or "Mark" buttons to add text into document. 11 | 12 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /invoices/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Invoices", 3 | "guid" : "asc.{6B6715E5-A558-4F70-8058-40704CD659CF}", 4 | 5 | "variations" : [ 6 | { 7 | "description" : "invoices", 8 | "url" : "index.html", 9 | 10 | "icons" : ["resources/img/icon.png", "resources/img/icon@2x.png"], 11 | "isViewer" : false, 12 | "EditorsSupport" : ["word"], 13 | 14 | "isVisual" : true, 15 | "isModal" : false, 16 | "isInsideMode" : true, 17 | 18 | "initDataType" : "none", 19 | "initData" : "", 20 | 21 | "isUpdateOleOnResize" : false, 22 | 23 | "buttons" : [ ] 24 | } 25 | ] 26 | } -------------------------------------------------------------------------------- /invoices/resources/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/invoices/resources/img/icon.png -------------------------------------------------------------------------------- /invoices/resources/img/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/invoices/resources/img/icon@2x.png -------------------------------------------------------------------------------- /num2word/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugins shows hot to how to convert a number to a word (a number written as a string). 4 | 5 | It is called "num2word" in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Select any number. 10 | 2. Open the Plugins tab and press "num2word". 11 | 3. The number converted to a string in Russian will be inserted in the cell below. 12 | 13 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /num2word/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "num2word", 3 | "guid" : "asc.{902F74A4-89F2-4028-8DB0-BD913E07335C}", 4 | 5 | "variations" : [ 6 | { 7 | "description" : "num2word", 8 | "url" : "index.html", 9 | 10 | "icons" : ["resources/img/icon.png", "resources/img/icon@2x.png"], 11 | "isViewer" : false, 12 | "EditorsSupport" : ["cell"], 13 | 14 | "isVisual" : false, 15 | "isModal" : false, 16 | "isInsideMode" : false, 17 | 18 | "initDataType" : "text", 19 | "initData" : "", 20 | 21 | "isUpdateOleOnResize" : false, 22 | 23 | "buttons" : [], 24 | 25 | "initOnSelectionChanged" : true 26 | } 27 | ] 28 | } -------------------------------------------------------------------------------- /num2word/index.html: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 20 | num2word 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /num2word/resources/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/num2word/resources/img/icon.png -------------------------------------------------------------------------------- /num2word/resources/img/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/num2word/resources/img/icon@2x.png -------------------------------------------------------------------------------- /onlychain/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "OnlyPass", 3 | "guid" : "asc.{F2402876-659F-47FB-A646-67B49F2B57D0}", 4 | 5 | "variations" : [ 6 | { 7 | "description" : "onlychain", 8 | "url" : "index.html", 9 | 10 | "icons" : ["resources/img/icon.png", "resources/img/icon@2x.png", "resources/img/icon.png", "resources/img/icon@2x.png"], 11 | "isViewer" : false, 12 | "EditorsSupport" : ["word", "cell", "slide"], 13 | 14 | "isVisual" : false, 15 | "isModal" : false, 16 | "isInsideMode" : false, 17 | 18 | "initDataType" : "desktop", 19 | "initData" : "", 20 | 21 | "isUpdateOleOnResize" : false, 22 | 23 | "buttons" : [] 24 | } 25 | ] 26 | } -------------------------------------------------------------------------------- /onlychain/resources/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/onlychain/resources/img/icon.png -------------------------------------------------------------------------------- /onlychain/resources/img/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/onlychain/resources/img/icon@2x.png -------------------------------------------------------------------------------- /onlypass/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "OnlyPass", 3 | "guid" : "asc.{F2402876-659F-47FB-A646-67B49F2B57D0}", 4 | 5 | "variations" : [ 6 | { 7 | "description" : "onlychain", 8 | "url" : "index.html", 9 | 10 | "icons" : ["resources/img/icon.png", "resources/img/icon@2x.png", "resources/img/icon.png", "resources/img/icon@2x.png"], 11 | "isViewer" : false, 12 | "EditorsSupport" : ["word", "cell", "slide"], 13 | 14 | "isVisual" : false, 15 | "isModal" : false, 16 | "isInsideMode" : false, 17 | 18 | "initDataType" : "desktop", 19 | "initData" : "", 20 | 21 | "isUpdateOleOnResize" : false, 22 | 23 | "buttons" : [] 24 | } 25 | ] 26 | } -------------------------------------------------------------------------------- /onlypass/resources/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/onlypass/resources/img/icon.png -------------------------------------------------------------------------------- /onlypass/resources/img/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/onlypass/resources/img/icon@2x.png -------------------------------------------------------------------------------- /searchAndReplaceOnStart/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin shows how to search and replace in document on start. 4 | 5 | It is without interface plugin and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Enter any text into document (for this example is "ONLYOFFICE"). 10 | 2. In plugin code in "replaceString" field enter text to replace. 11 | 3. Reopen a document. 12 | 13 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /searchAndReplaceOnStart/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "searchAndReplaceOnStart", 3 | "guid" : "asc.{C820F3CC-1248-4CA2-8D0F-D7EFD44DE09C}", 4 | "baseUrl" : "", 5 | "variations" : [ 6 | { 7 | "description" : "searchAndReplaceOnStart", 8 | "url" : "index.html", 9 | "icons" : ["resources/img/icon.png", "resources/img/icon@2x.png"], 10 | "isViewer" : true, 11 | "EditorsSupport" : [ "word" ], 12 | "isSystem" : true, 13 | "isVisual" : false, 14 | "isModal" : false, 15 | "isInsideMode" : false, 16 | "initDataType" : "none", 17 | "initData" : "", 18 | "buttons" : [], 19 | 20 | "events" : ["onDocumentContentReady"] 21 | } 22 | ] 23 | } -------------------------------------------------------------------------------- /searchAndReplaceOnStart/index.html: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 20 | settings 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /settings/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin shows how to protect a document using a watermark. 4 | 5 | It is without interface plugin and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. In plugin code in "initSettings" field the document settings. 10 | 3. Reopen a document. 11 | 12 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /settings/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "settings", 3 | "guid" : "asc.{CF3A000F-C6B4-451D-AC0B-F3DDAB1880D2}", 4 | "baseUrl" : "", 5 | "variations" : [ 6 | { 7 | "description" : "settings", 8 | "url" : "index.html", 9 | "icons" : ["icon.png", "icon@2x.png"], 10 | "isViewer" : true, 11 | "EditorsSupport" : [ "word", "cell", "slide" ], 12 | "isSystem" : true, 13 | "isVisual" : false, 14 | "isModal" : false, 15 | "isInsideMode" : false, 16 | "initDataType" : "none", 17 | "initData" : "", 18 | "buttons" : [] 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /settings/index.html: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 20 | settings 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /symboltable/3rd-Party.txt: -------------------------------------------------------------------------------- 1 | This plugin uses code from the following 3rd party projects. 2 | 3 | 4 | 1. jQuery - Query is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. (http://jquery.com/) 5 | 6 | License: MIT License 7 | License File: jQuery.license 8 | 9 | 10 | 2. Select2 gives you a customizable select box with support for searching, tagging, remote data sets, infinite scrolling, and many other highly used options. (https://select2.org/) 11 | 12 | License: MIT 13 | License File: Select2.license -------------------------------------------------------------------------------- /symboltable/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin shows how to past symbols into documend. 4 | 5 | It is called "Symbol Table" in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Find the plugin in the Plugins tab. 10 | 2. Сhoose any character you want to paste (you can enter unicode Hex value yourself). 11 | 3. Press the "Insert" button. 12 | 13 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /symboltable/licenses/Select2.license: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2012-2017 Kevin Brown, Igor Vaynberg, and Select2 contributors 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /symboltable/licenses/jQuery.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2009 John Resig, http://jquery.com/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /symboltable/resources/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/symboltable/resources/img/icon.png -------------------------------------------------------------------------------- /symboltable/resources/img/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/symboltable/resources/img/icon2.png -------------------------------------------------------------------------------- /symboltable/resources/img/icon2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/symboltable/resources/img/icon2@2x.png -------------------------------------------------------------------------------- /symboltable/resources/img/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/symboltable/resources/img/icon@2x.png -------------------------------------------------------------------------------- /symboltable/translations/cs-CZ.json: -------------------------------------------------------------------------------- 1 | { 2 | "Font:": "Písmo:", 3 | "Range:": "Rozsah:", 4 | "Recently used symbols:": "Nedávno použité symboly:", 5 | "Unicode HEX value:": "Unicode HEX hodnota:", 6 | "Font Name": "Název písma", 7 | "Insert": "Vložit" 8 | } 9 | -------------------------------------------------------------------------------- /symboltable/translations/de-DE.json: -------------------------------------------------------------------------------- 1 | { 2 | "Font:": "Schriftart:", 3 | "Range:": "Bereich:", 4 | "Recently used symbols:": "Kürzlich verwendete Symbole:", 5 | "Unicode HEX value:": "Unicode-HEX-Wert:", 6 | "Font Name": "Schriftname", 7 | "Insert": "Einfügen" 8 | } -------------------------------------------------------------------------------- /symboltable/translations/es-ES.json: -------------------------------------------------------------------------------- 1 | { 2 | "Font:": "Fuente:", 3 | "Range:": "Rango:", 4 | "Recently used symbols:": "Símbolos usados recientemente:", 5 | "Unicode HEX value:": "Valor HEX Unicode:", 6 | "Font Name": "Nombre de Fuente", 7 | "Insert": "Insertar" 8 | } -------------------------------------------------------------------------------- /symboltable/translations/fr-FR.json: -------------------------------------------------------------------------------- 1 | { 2 | "Font:": "Police :", 3 | "Range:": "Ensemble :", 4 | "Recently used symbols:": "Symboles récemment utilisés :", 5 | "Unicode HEX value:": "Valeur Hex Unicode :", 6 | "Font Name": "Nom de Police", 7 | "Insert": "Insérer" 8 | } -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/af.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/af",[],function(){return{errorLoading:function(){return"Die resultate kon nie gelaai word nie."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Verwyders asseblief "+t+" character";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Voer asseblief "+t+" of meer karakters";return n},loadingMore:function(){return"Meer resultate word gelaai…"},maximumSelected:function(e){var t="Kies asseblief net "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"Geen resultate gevind"},searching:function(){return"Besig…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/ar.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ar",[],function(){return{errorLoading:function(){return"لا يمكن تحميل النتائج"},inputTooLong:function(e){var t=e.input.length-e.maximum;return"الرجاء حذف "+t+" عناصر"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"الرجاء إضافة "+t+" عناصر"},loadingMore:function(){return"جاري تحميل نتائج إضافية..."},maximumSelected:function(e){return"تستطيع إختيار "+e.maximum+" بنود فقط"},noResults:function(){return"لم يتم العثور على أي نتائج"},searching:function(){return"جاري البحث…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/az.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/bg.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bg",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Моля въведете с "+t+" по-малко символ";return t>1&&(n+="a"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Моля въведете още "+t+" символ";return t>1&&(n+="a"),n},loadingMore:function(){return"Зареждат се още…"},maximumSelected:function(e){var t="Можете да направите до "+e.maximum+" ";return e.maximum>1?t+="избора":t+="избор",t},noResults:function(){return"Няма намерени съвпадения"},searching:function(){return"Търсене…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/bs.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bs",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Preuzimanje nije uspijelo."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Obrišite "+n+" simbol";return r+=e(n,"","a","a"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Ukucajte bar još "+n+" simbol";return r+=e(n,"","a","a"),r},loadingMore:function(){return"Preuzimanje još rezultata…"},maximumSelected:function(t){var n="Možete izabrati samo "+t.maximum+" stavk";return n+=e(t.maximum,"u","e","i"),n},noResults:function(){return"Ništa nije pronađeno"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/ca.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ca",[],function(){return{errorLoading:function(){return"La càrrega ha fallat"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Si us plau, elimina "+t+" car";return t==1?n+="àcter":n+="àcters",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Si us plau, introdueix "+t+" car";return t==1?n+="àcter":n+="àcters",n},loadingMore:function(){return"Carregant més resultats…"},maximumSelected:function(e){var t="Només es pot seleccionar "+e.maximum+" element";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No s'han trobat resultats"},searching:function(){return"Cercant…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/cs.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/cs",[],function(){function e(e,t){switch(e){case 2:return t?"dva":"dvě";case 3:return"tři";case 4:return"čtyři"}return""}return{errorLoading:function(){return"Výsledky nemohly být načteny."},inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím, zadejte o jeden znak méně.":n<=4?"Prosím, zadejte o "+e(n,!0)+" znaky méně.":"Prosím, zadejte o "+n+" znaků méně."},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím, zadejte ještě jeden znak.":n<=4?"Prosím, zadejte ještě další "+e(n,!0)+" znaky.":"Prosím, zadejte ještě dalších "+n+" znaků."},loadingMore:function(){return"Načítají se další výsledky…"},maximumSelected:function(t){var n=t.maximum;return n==1?"Můžete zvolit jen jednu položku.":n<=4?"Můžete zvolit maximálně "+e(n,!1)+" položky.":"Můžete zvolit maximálně "+n+" položek."},noResults:function(){return"Nenalezeny žádné položky."},searching:function(){return"Vyhledávání…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/da.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/da",[],function(){return{errorLoading:function(){return"Resultaterne kunne ikke indlæses."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Angiv venligst "+t+" tegn mindre"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Angiv venligst "+t+" tegn mere"},loadingMore:function(){return"Indlæser flere resultater…"},maximumSelected:function(e){var t="Du kan kun vælge "+e.maximum+" emne";return e.maximum!=1&&(t+="r"),t},noResults:function(){return"Ingen resultater fundet"},searching:function(){return"Søger…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/de.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/de",[],function(){return{errorLoading:function(){return"Die Ergebnisse konnten nicht geladen werden."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Bitte "+t+" Zeichen weniger eingeben"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Bitte "+t+" Zeichen mehr eingeben"},loadingMore:function(){return"Lade mehr Ergebnisse…"},maximumSelected:function(e){var t="Sie können nur "+e.maximum+" Eintr";return e.maximum===1?t+="ag":t+="äge",t+=" auswählen",t},noResults:function(){return"Keine Übereinstimmungen gefunden"},searching:function(){return"Suche…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/dsb.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/dsb",[],function(){var e=["znamuško","znamušce","znamuška","znamuškow"],t=["zapisk","zapiska","zapiski","zapiskow"],n=function(t,n){if(t===1)return n[0];if(t===2)return n[1];if(t>2&&t<=4)return n[2];if(t>=5)return n[3]};return{errorLoading:function(){return"Wuslědki njejsu se dali zacytaś."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Pšosym lašuj "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Pšosym zapódaj nanejmjenjej "+r+" "+n(r,e)},loadingMore:function(){return"Dalšne wuslědki se zacytaju…"},maximumSelected:function(e){return"Móžoš jano "+e.maximum+" "+n(e.maximum,t)+"wubraś."},noResults:function(){return"Žedne wuslědki namakane"},searching:function(){return"Pyta se…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/el.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/el",[],function(){return{errorLoading:function(){return"Τα αποτελέσματα δεν μπόρεσαν να φορτώσουν."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Παρακαλώ διαγράψτε "+t+" χαρακτήρ";return t==1&&(n+="α"),t!=1&&(n+="ες"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Παρακαλώ συμπληρώστε "+t+" ή περισσότερους χαρακτήρες";return n},loadingMore:function(){return"Φόρτωση περισσότερων αποτελεσμάτων…"},maximumSelected:function(e){var t="Μπορείτε να επιλέξετε μόνο "+e.maximum+" επιλογ";return e.maximum==1&&(t+="ή"),e.maximum!=1&&(t+="ές"),t},noResults:function(){return"Δεν βρέθηκαν αποτελέσματα"},searching:function(){return"Αναζήτηση…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/en.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Please delete "+t+" character";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Please enter "+t+" or more characters";return n},loadingMore:function(){return"Loading more results…"},maximumSelected:function(e){var t="You can only select "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/es.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/es",[],function(){return{errorLoading:function(){return"No se pudieron cargar los resultados"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor, elimine "+t+" car";return t==1?n+="ácter":n+="acteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Por favor, introduzca "+t+" car";return t==1?n+="ácter":n+="acteres",n},loadingMore:function(){return"Cargando más resultados…"},maximumSelected:function(e){var t="Sólo puede seleccionar "+e.maximum+" elemento";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No se encontraron resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/et.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/et",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" vähem",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" rohkem",n},loadingMore:function(){return"Laen tulemusi…"},maximumSelected:function(e){var t="Saad vaid "+e.maximum+" tulemus";return e.maximum==1?t+="e":t+="t",t+=" valida",t},noResults:function(){return"Tulemused puuduvad"},searching:function(){return"Otsin…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/eu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/eu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gutxiago",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gehiago",n},loadingMore:function(){return"Emaitza gehiago kargatzen…"},maximumSelected:function(e){return e.maximum===1?"Elementu bakarra hauta dezakezu":e.maximum+" elementu hauta ditzakezu soilik"},noResults:function(){return"Ez da bat datorrenik aurkitu"},searching:function(){return"Bilatzen…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/fa.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fa",[],function(){return{errorLoading:function(){return"امکان بارگذاری نتایج وجود ندارد."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="لطفاً "+t+" کاراکتر را حذف نمایید";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="لطفاً تعداد "+t+" کاراکتر یا بیشتر وارد نمایید";return n},loadingMore:function(){return"در حال بارگذاری نتایج بیشتر..."},maximumSelected:function(e){var t="شما تنها می‌توانید "+e.maximum+" آیتم را انتخاب نمایید";return t},noResults:function(){return"هیچ نتیجه‌ای یافت نشد"},searching:function(){return"در حال جستجو..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/fi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{errorLoading:function(){return"Tuloksia ei saatu ladattua."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){return"Haetaan…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/fr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fr",[],function(){return{errorLoading:function(){return"Les résultats ne peuvent pas être chargés."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Supprimez "+t+" caractère"+(t>1)?"s":""},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Saisissez au moins "+t+" caractère"+(t>1)?"s":""},loadingMore:function(){return"Chargement de résultats supplémentaires…"},maximumSelected:function(e){return"Vous pouvez seulement sélectionner "+e.maximum+" élément"+(e.maximum>1)?"s":""},noResults:function(){return"Aucun résultat trouvé"},searching:function(){return"Recherche en cours…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/gl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/gl",[],function(){return{errorLoading:function(){return"Non foi posíbel cargar os resultados."},inputTooLong:function(e){var t=e.input.length-e.maximum;return t===1?"Elimine un carácter":"Elimine "+t+" caracteres"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t===1?"Engada un carácter":"Engada "+t+" caracteres"},loadingMore:function(){return"Cargando máis resultados…"},maximumSelected:function(e){return e.maximum===1?"Só pode seleccionar un elemento":"Só pode seleccionar "+e.maximum+" elementos"},noResults:function(){return"Non se atoparon resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/he.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/he",[],function(){return{errorLoading:function(){return"שגיאה בטעינת התוצאות"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="נא למחוק ";return t===1?n+="תו אחד":n+=t+" תווים",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="נא להכניס ";return t===1?n+="תו אחד":n+=t+" תווים",n+=" או יותר",n},loadingMore:function(){return"טוען תוצאות נוספות…"},maximumSelected:function(e){var t="באפשרותך לבחור עד ";return e.maximum===1?t+="פריט אחד":t+=e.maximum+" פריטים",t},noResults:function(){return"לא נמצאו תוצאות"},searching:function(){return"מחפש…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/hi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hi",[],function(){return{errorLoading:function(){return"परिणामों को लोड नहीं किया जा सका।"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" अक्षर को हटा दें";return t>1&&(n=t+" अक्षरों को हटा दें "),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="कृपया "+t+" या अधिक अक्षर दर्ज करें";return n},loadingMore:function(){return"अधिक परिणाम लोड हो रहे है..."},maximumSelected:function(e){var t="आप केवल "+e.maximum+" आइटम का चयन कर सकते हैं";return t},noResults:function(){return"कोई परिणाम नहीं मिला"},searching:function(){return"खोज रहा है..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/hr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hr",[],function(){function e(e){var t=" "+e+" znak";return e%10<5&&e%10>0&&(e%100<5||e%100>19)?e%10>1&&(t+="a"):t+="ova",t}return{errorLoading:function(){return"Preuzimanje nije uspjelo."},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Unesite "+e(n)},inputTooShort:function(t){var n=t.minimum-t.input.length;return"Unesite još "+e(n)},loadingMore:function(){return"Učitavanje rezultata…"},maximumSelected:function(e){return"Maksimalan broj odabranih stavki je "+e.maximum},noResults:function(){return"Nema rezultata"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/hsb.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hsb",[],function(){var e=["znamješko","znamješce","znamješka","znamješkow"],t=["zapisk","zapiskaj","zapiski","zapiskow"],n=function(t,n){if(t===1)return n[0];if(t===2)return n[1];if(t>2&&t<=4)return n[2];if(t>=5)return n[3]};return{errorLoading:function(){return"Wuslědki njedachu so začitać."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Prošu zhašej "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Prošu zapodaj znajmjeńša "+r+" "+n(r,e)},loadingMore:function(){return"Dalše wuslědki so začitaja…"},maximumSelected:function(e){return"Móžeš jenož "+e.maximum+" "+n(e.maximum,t)+"wubrać"},noResults:function(){return"Žane wuslědki namakane"},searching:function(){return"Pyta so…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/hu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{errorLoading:function(){return"Az eredmények betöltése nem sikerült."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/hy.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hy",[],function(){return{errorLoading:function(){return"Արդյունքները հնարավոր չէ բեռնել։"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Խնդրում ենք հեռացնել "+t+" նշան";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Խնդրում ենք մուտքագրել "+t+" կամ ավել նշաններ";return n},loadingMore:function(){return"Բեռնվում են նոր արդյունքներ․․․"},maximumSelected:function(e){var t="Դուք կարող եք ընտրել առավելագույնը "+e.maximum+" կետ";return t},noResults:function(){return"Արդյունքներ չեն գտնվել"},searching:function(){return"Որոնում․․․"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/id.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/id",[],function(){return{errorLoading:function(){return"Data tidak boleh diambil."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Hapuskan "+t+" huruf"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Masukkan "+t+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(e){return"Anda hanya dapat memilih "+e.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/is.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/is",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vinsamlegast styttið texta um "+t+" staf";return t<=1?n:n+"i"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vinsamlegast skrifið "+t+" staf";return t>1&&(n+="i"),n+=" í viðbót",n},loadingMore:function(){return"Sæki fleiri niðurstöður…"},maximumSelected:function(e){return"Þú getur aðeins valið "+e.maximum+" atriði"},noResults:function(){return"Ekkert fannst"},searching:function(){return"Leita…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/it.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/it",[],function(){return{errorLoading:function(){return"I risultati non possono essere caricati."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Per favore cancella "+t+" caratter";return t!==1?n+="i":n+="e",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Per favore inserisci "+t+" o più caratteri";return n},loadingMore:function(){return"Caricando più risultati…"},maximumSelected:function(e){var t="Puoi selezionare solo "+e.maximum+" element";return e.maximum!==1?t+="i":t+="o",t},noResults:function(){return"Nessun risultato trovato"},searching:function(){return"Sto cercando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/ja.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ja",[],function(){return{errorLoading:function(){return"結果が読み込まれませんでした"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" 文字を削除してください";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="少なくとも "+t+" 文字を入力してください";return n},loadingMore:function(){return"読み込み中…"},maximumSelected:function(e){var t=e.maximum+" 件しか選択できません";return t},noResults:function(){return"対象が見つかりません"},searching:function(){return"検索しています…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/km.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/km",[],function(){return{errorLoading:function(){return"មិនអាចទាញយកទិន្នន័យ"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="សូមលុបចេញ "+t+" អក្សរ";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="សូមបញ្ចូល"+t+" អក្សរ រឺ ច្រើនជាងនេះ";return n},loadingMore:function(){return"កំពុងទាញយកទិន្នន័យបន្ថែម..."},maximumSelected:function(e){var t="អ្នកអាចជ្រើសរើសបានតែ "+e.maximum+" ជម្រើសប៉ុណ្ណោះ";return t},noResults:function(){return"មិនមានលទ្ធផល"},searching:function(){return"កំពុងស្វែងរក..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/ko.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="너무 깁니다. "+t+" 글자 지워주세요.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="너무 짧습니다. "+t+" 글자 더 입력해주세요.";return n},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(e){var t="최대 "+e.maximum+"개까지만 선택 가능합니다.";return t},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/lt.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lt",[],function(){function e(e,t,n,r){return e%10===1&&(e%100<11||e%100>19)?t:e%10>=2&&e%10<=9&&(e%100<11||e%100>19)?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Pašalinkite "+n+" simbol";return r+=e(n,"į","ius","ių"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Įrašykite dar "+n+" simbol";return r+=e(n,"į","ius","ių"),r},loadingMore:function(){return"Kraunama daugiau rezultatų…"},maximumSelected:function(t){var n="Jūs galite pasirinkti tik "+t.maximum+" element";return n+=e(t.maximum,"ą","us","ų"),n},noResults:function(){return"Atitikmenų nerasta"},searching:function(){return"Ieškoma…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/lv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lv",[],function(){function e(e,t,n,r){return e===11?t:e%10===1?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Lūdzu ievadiet par "+n;return r+=" simbol"+e(n,"iem","u","iem"),r+" mazāk"},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Lūdzu ievadiet vēl "+n;return r+=" simbol"+e(n,"us","u","us"),r},loadingMore:function(){return"Datu ielāde…"},maximumSelected:function(t){var n="Jūs varat izvēlēties ne vairāk kā "+t.maximum;return n+=" element"+e(t.maximum,"us","u","us"),n},noResults:function(){return"Sakritību nav"},searching:function(){return"Meklēšana…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/mk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/mk",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Ве молиме внесете "+e.maximum+" помалку карактер";return e.maximum!==1&&(n+="и"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Ве молиме внесете уште "+e.maximum+" карактер";return e.maximum!==1&&(n+="и"),n},loadingMore:function(){return"Вчитување резултати…"},maximumSelected:function(e){var t="Можете да изберете само "+e.maximum+" ставк";return e.maximum===1?t+="а":t+="и",t},noResults:function(){return"Нема пронајдено совпаѓања"},searching:function(){return"Пребарување…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/ms.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ms",[],function(){return{errorLoading:function(){return"Keputusan tidak berjaya dimuatkan."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Sila hapuskan "+t+" aksara"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Sila masukkan "+t+" atau lebih aksara"},loadingMore:function(){return"Sedang memuatkan keputusan…"},maximumSelected:function(e){return"Anda hanya boleh memilih "+e.maximum+" pilihan"},noResults:function(){return"Tiada padanan yang ditemui"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/nb.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nb",[],function(){return{errorLoading:function(){return"Kunne ikke hente resultater."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Vennligst fjern "+t+" tegn"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vennligst skriv inn "+t+" tegn til";return n+" tegn til"},loadingMore:function(){return"Laster flere resultater…"},maximumSelected:function(e){return"Du kan velge maks "+e.maximum+" elementer"},noResults:function(){return"Ingen treff"},searching:function(){return"Søker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/nl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nl",[],function(){return{errorLoading:function(){return"De resultaten konden niet worden geladen."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Gelieve "+t+" karakters te verwijderen";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Gelieve "+t+" of meer karakters in te voeren";return n},loadingMore:function(){return"Meer resultaten laden…"},maximumSelected:function(e){var t=e.maximum==1?"kan":"kunnen",n="Er "+t+" maar "+e.maximum+" item";return e.maximum!=1&&(n+="s"),n+=" worden geselecteerd",n},noResults:function(){return"Geen resultaten gevonden…"},searching:function(){return"Zoeken…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/pl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pl",[],function(){var e=["znak","znaki","znaków"],t=["element","elementy","elementów"],n=function(t,n){if(t===1)return n[0];if(t>1&&t<=4)return n[1];if(t>=5)return n[2]};return{errorLoading:function(){return"Nie można załadować wyników."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Usuń "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Podaj przynajmniej "+r+" "+n(r,e)},loadingMore:function(){return"Trwa ładowanie…"},maximumSelected:function(e){return"Możesz zaznaczyć tylko "+e.maximum+" "+n(e.maximum,t)},noResults:function(){return"Brak wyników"},searching:function(){return"Trwa wyszukiwanie…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/ps.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ps",[],function(){return{errorLoading:function(){return"پايلي نه سي ترلاسه کېدای"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="د مهربانۍ لمخي "+t+" توری ړنګ کړئ";return t!=1&&(n=n.replace("توری","توري")),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="لږ تر لږه "+t+" يا ډېر توري وليکئ";return n},loadingMore:function(){return"نوري پايلي ترلاسه کيږي..."},maximumSelected:function(e){var t="تاسو يوازي "+e.maximum+" قلم په نښه کولای سی";return e.maximum!=1&&(t=t.replace("قلم","قلمونه")),t},noResults:function(){return"پايلي و نه موندل سوې"},searching:function(){return"لټول کيږي..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/pt-BR.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt-BR",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Apague "+t+" caracter";return t!=1&&(n+="es"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Digite "+t+" ou mais caracteres";return n},loadingMore:function(){return"Carregando mais resultados…"},maximumSelected:function(e){var t="Você só pode selecionar "+e.maximum+" ite";return e.maximum==1?t+="m":t+="ns",t},noResults:function(){return"Nenhum resultado encontrado"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/pt.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor apague "+t+" ";return n+=t!=1?"caracteres":"caractere",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Introduza "+t+" ou mais caracteres";return n},loadingMore:function(){return"A carregar mais resultados…"},maximumSelected:function(e){var t="Apenas pode seleccionar "+e.maximum+" ";return t+=e.maximum!=1?"itens":"item",t},noResults:function(){return"Sem resultados"},searching:function(){return"A procurar…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/ro.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ro",[],function(){return{errorLoading:function(){return"Rezultatele nu au putut fi incărcate."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vă rugăm să ștergeți"+t+" caracter";return t!==1&&(n+="e"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vă rugăm să introduceți "+t+" sau mai multe caractere";return n},loadingMore:function(){return"Se încarcă mai multe rezultate…"},maximumSelected:function(e){var t="Aveți voie să selectați cel mult "+e.maximum;return t+=" element",e.maximum!==1&&(t+="e"),t},noResults:function(){return"Nu au fost găsite rezultate"},searching:function(){return"Căutare…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/ru.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ru",[],function(){function e(e,t,n,r){return e%10<5&&e%10>0&&e%100<5||e%100>20?e%10>1?n:t:r}return{errorLoading:function(){return"Невозможно загрузить результаты"},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Пожалуйста, введите на "+n+" символ";return r+=e(n,"","a","ов"),r+=" меньше",r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Пожалуйста, введите еще хотя бы "+n+" символ";return r+=e(n,"","a","ов"),r},loadingMore:function(){return"Загрузка данных…"},maximumSelected:function(t){var n="Вы можете выбрать не более "+t.maximum+" элемент";return n+=e(t.maximum,"","a","ов"),n},noResults:function(){return"Совпадений не найдено"},searching:function(){return"Поиск…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/sk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sk",[],function(){var e={2:function(e){return e?"dva":"dve"},3:function(){return"tri"},4:function(){return"štyri"}};return{errorLoading:function(){return"Výsledky sa nepodarilo načítať."},inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím, zadajte o jeden znak menej":n>=2&&n<=4?"Prosím, zadajte o "+e[n](!0)+" znaky menej":"Prosím, zadajte o "+n+" znakov menej"},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím, zadajte ešte jeden znak":n<=4?"Prosím, zadajte ešte ďalšie "+e[n](!0)+" znaky":"Prosím, zadajte ešte ďalších "+n+" znakov"},loadingMore:function(){return"Načítanie ďalších výsledkov…"},maximumSelected:function(t){return t.maximum==1?"Môžete zvoliť len jednu položku":t.maximum>=2&&t.maximum<=4?"Môžete zvoliť najviac "+e[t.maximum](!1)+" položky":"Môžete zvoliť najviac "+t.maximum+" položiek"},noResults:function(){return"Nenašli sa žiadne položky"},searching:function(){return"Vyhľadávanie…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/sl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sl",[],function(){return{errorLoading:function(){return"Zadetkov iskanja ni bilo mogoče naložiti."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Prosim zbrišite "+t+" znak";return t==2?n+="a":t!=1&&(n+="e"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Prosim vpišite še "+t+" znak";return t==2?n+="a":t!=1&&(n+="e"),n},loadingMore:function(){return"Nalagam več zadetkov…"},maximumSelected:function(e){var t="Označite lahko največ "+e.maximum+" predmet";return e.maximum==2?t+="a":e.maximum!=1&&(t+="e"),t},noResults:function(){return"Ni zadetkov."},searching:function(){return"Iščem…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr-Cyrl",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Преузимање није успело."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Обришите "+n+" симбол";return r+=e(n,"","а","а"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Укуцајте бар још "+n+" симбол";return r+=e(n,"","а","а"),r},loadingMore:function(){return"Преузимање још резултата…"},maximumSelected:function(t){var n="Можете изабрати само "+t.maximum+" ставк";return n+=e(t.maximum,"у","е","и"),n},noResults:function(){return"Ништа није пронађено"},searching:function(){return"Претрага…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/sr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Preuzimanje nije uspelo."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Obrišite "+n+" simbol";return r+=e(n,"","a","a"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Ukucajte bar još "+n+" simbol";return r+=e(n,"","a","a"),r},loadingMore:function(){return"Preuzimanje još rezultata…"},maximumSelected:function(t){var n="Možete izabrati samo "+t.maximum+" stavk";return n+=e(t.maximum,"u","e","i"),n},noResults:function(){return"Ništa nije pronađeno"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/sv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sv",[],function(){return{errorLoading:function(){return"Resultat kunde inte laddas."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vänligen sudda ut "+t+" tecken";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vänligen skriv in "+t+" eller fler tecken";return n},loadingMore:function(){return"Laddar fler resultat…"},maximumSelected:function(e){var t="Du kan max välja "+e.maximum+" element";return t},noResults:function(){return"Inga träffar"},searching:function(){return"Söker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/th.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/th",[],function(){return{errorLoading:function(){return"ไม่สามารถค้นข้อมูลได้"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="โปรดลบออก "+t+" ตัวอักษร";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="โปรดพิมพ์เพิ่มอีก "+t+" ตัวอักษร";return n},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(e){var t="คุณสามารถเลือกได้ไม่เกิน "+e.maximum+" รายการ";return t},noResults:function(){return"ไม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/tr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tr",[],function(){return{errorLoading:function(){return"Sonuç yüklenemedi"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/uk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/uk",[],function(){function e(e,t,n,r){return e%100>10&&e%100<15?r:e%10===1?t:e%10>1&&e%10<5?n:r}return{errorLoading:function(){return"Неможливо завантажити результати"},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Будь ласка, видаліть "+n+" "+e(t.maximum,"літеру","літери","літер")},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Будь ласка, введіть "+t+" або більше літер"},loadingMore:function(){return"Завантаження інших результатів…"},maximumSelected:function(t){return"Ви можете вибрати лише "+t.maximum+" "+e(t.maximum,"пункт","пункти","пунктів")},noResults:function(){return"Нічого не знайдено"},searching:function(){return"Пошук…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/vi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/vi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vui lòng nhập ít hơn "+t+" ký tự";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vui lòng nhập nhiều hơn "+t+" ký tự";return n},loadingMore:function(){return"Đang lấy thêm kết quả…"},maximumSelected:function(e){var t="Chỉ có thể chọn được "+e.maximum+" lựa chọn";return t},noResults:function(){return"Không tìm thấy kết quả"},searching:function(){return"Đang tìm…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /symboltable/vendor/select2/js/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /templates/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin shows how to set document templates. 4 | 5 | It is called "Document Templates" in the interface and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Find the plugin in the Plugins tab. 10 | 2. Сhoose any style you want to set. 11 | 12 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /templates/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Document Templates", 3 | "guid" : "asc.{94DF0B57-299D-4F68-AF6F-9A6BB53F3031}", 4 | 5 | "variations" : [ 6 | { 7 | "description" : "templates", 8 | "url" : "index.html", 9 | 10 | "icons" : ["resources/img/icon.png", "resources/img/icon@2x.png"], 11 | "isViewer" : false, 12 | "EditorsSupport" : ["word"], 13 | 14 | "isVisual" : true, 15 | "isModal" : false, 16 | "isInsideMode" : true, 17 | 18 | "initDataType" : "none", 19 | "initData" : "", 20 | 21 | "isUpdateOleOnResize" : false, 22 | 23 | "buttons" : [ ] 24 | } 25 | ] 26 | } -------------------------------------------------------------------------------- /templates/resources/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/templates/resources/img/icon.png -------------------------------------------------------------------------------- /templates/resources/img/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/templates/resources/img/icon@2x.png -------------------------------------------------------------------------------- /templates/templates/TC9990301-LAYOUT-WD1/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/templates/templates/TC9990301-LAYOUT-WD1/icon.png -------------------------------------------------------------------------------- /templates/templates/TC9990301-LAYOUT-WD2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/templates/templates/TC9990301-LAYOUT-WD2/icon.png -------------------------------------------------------------------------------- /templates/templates/bold_report/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/templates/templates/bold_report/icon.png -------------------------------------------------------------------------------- /templates/templates/calendar_2017/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/templates/templates/calendar_2017/icon.png -------------------------------------------------------------------------------- /templates/templates/christmas_note_cards/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/templates/templates/christmas_note_cards/icon.png -------------------------------------------------------------------------------- /templates/templates/class_newsletter/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/templates/templates/class_newsletter/icon.png -------------------------------------------------------------------------------- /templates/templates/fax_cover/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/templates/templates/fax_cover/icon.png -------------------------------------------------------------------------------- /templates/templates/menu1_code/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/templates/templates/menu1_code/icon.png -------------------------------------------------------------------------------- /templates/templates/menu2_code/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/templates/templates/menu2_code/icon.png -------------------------------------------------------------------------------- /templates/templates/newsletter/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/templates/templates/newsletter/icon.png -------------------------------------------------------------------------------- /templates/templates/newsletter_green/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/templates/templates/newsletter_green/icon.png -------------------------------------------------------------------------------- /templates/templates/priglashenie/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/templates/templates/priglashenie/icon.png -------------------------------------------------------------------------------- /templates/templates/rsvp_cards/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/templates/templates/rsvp_cards/icon.png -------------------------------------------------------------------------------- /templates/templates/your_high_school/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/sdkjs-plugins/19aacf27e81a0807fbd34cc080d4553b6f79421d/templates/templates/your_high_school/icon.png -------------------------------------------------------------------------------- /trackchanges/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin enables track changes in any document and does not allow you to disable it. 4 | 5 | It is without interface plugin and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 6 | 7 | ## How to use 8 | 9 | 1. Add this plugin to yourself and open document editor. 10 | 11 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /trackchanges/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "trackchanges", 3 | "guid" : "asc.{F46F9895-3D7C-4FD3-A008-29BCC929C641}", 4 | "isUICustomizer" : true, 5 | 6 | "variations" : [ 7 | { 8 | "description" : "trackchanges", 9 | "url" : "scripts/code.js", 10 | 11 | "isViewer" : false, 12 | "EditorsSupport" : ["word"], 13 | 14 | "isVisual" : false, 15 | "isModal" : false, 16 | "isInsideMode" : false, 17 | "isSystem" : false, 18 | 19 | "initDataType" : "none", 20 | "initData" : "", 21 | 22 | "isUpdateOleOnResize" : false, 23 | 24 | "buttons" : [ ] 25 | } 26 | ] 27 | } 28 | -------------------------------------------------------------------------------- /trackchanges_off/README.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | This plugin disables track changes in any document and does not allow you to enable it. 4 | 5 | It works only in special regime (when in customization was added showReviewChanges flag). 6 | 7 | It is without interface plugin and isn't installed by default in cloud, [self-hosted](https://github.com/ONLYOFFICE/DocumentServer) and [desktop version](https://github.com/ONLYOFFICE/DesktopEditors) of ONLYOFFICE editors. 8 | 9 | ## How to use 10 | 11 | 1. Add this plugin to yourself and open document editor. 12 | 13 | If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic -------------------------------------------------------------------------------- /trackchanges_off/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "trackchanges off", 3 | "guid" : "asc.{613BBDC4-5E44-4E65-87E0-F5A4A4E2786F}", 4 | "isUICustomizer" : true, 5 | 6 | "variations" : [ 7 | { 8 | "description" : "trackchanges off", 9 | "url" : "scripts/code.js", 10 | 11 | "isViewer" : false, 12 | "EditorsSupport" : ["word"], 13 | 14 | "isVisual" : false, 15 | "isModal" : false, 16 | "isInsideMode" : false, 17 | "isSystem" : false, 18 | 19 | "initDataType" : "none", 20 | "initData" : "", 21 | 22 | "isUpdateOleOnResize" : false, 23 | 24 | "buttons" : [ ] 25 | } 26 | ] 27 | } 28 | --------------------------------------------------------------------------------