├── .eslintrc.js ├── .gitattributes ├── .github └── workflows │ └── behat-sqlite.yml ├── .gitignore ├── .l10nignore ├── .php_cs.dist ├── .tx └── config ├── CHANGELOG.md ├── COPYING ├── Makefile ├── README.md ├── appinfo ├── info.xml └── routes.php ├── babel.config.js ├── bin └── generate_docs.php ├── composer.json ├── composer.lock ├── css ├── codemirror.css ├── global.css └── icons.css ├── custom.d.ts ├── docs ├── Admin.md ├── Contribute_API.md ├── Functions.md ├── Integration.md └── README.md ├── examples ├── business_card.lua ├── directory_tree.lua ├── generate_invoice.lua ├── invoice.mustache └── merge_pdfs.lua ├── img ├── files_scripts-dark.svg └── files_scripts.svg ├── l10n ├── .gitkeep ├── af.js ├── af.json ├── an.js ├── an.json ├── ar.js ├── ar.json ├── ast.js ├── ast.json ├── az.js ├── az.json ├── be.js ├── be.json ├── bg.js ├── bg.json ├── bn_BD.js ├── bn_BD.json ├── br.js ├── br.json ├── bs.js ├── bs.json ├── ca.js ├── ca.json ├── cs.js ├── cs.json ├── cy_GB.js ├── cy_GB.json ├── da.js ├── da.json ├── de.js ├── de.json ├── de_DE.js ├── de_DE.json ├── el.js ├── el.json ├── en_GB.js ├── en_GB.json ├── eo.js ├── eo.json ├── es.js ├── es.json ├── es_419.js ├── es_419.json ├── es_AR.js ├── es_AR.json ├── es_CL.js ├── es_CL.json ├── es_CO.js ├── es_CO.json ├── es_CR.js ├── es_CR.json ├── es_DO.js ├── es_DO.json ├── es_EC.js ├── es_EC.json ├── es_GT.js ├── es_GT.json ├── es_HN.js ├── es_HN.json ├── es_MX.js ├── es_MX.json ├── es_NI.js ├── es_NI.json ├── es_PA.js ├── es_PA.json ├── es_PE.js ├── es_PE.json ├── es_PR.js ├── es_PR.json ├── es_PY.js ├── es_PY.json ├── es_SV.js ├── es_SV.json ├── es_UY.js ├── es_UY.json ├── et_EE.js ├── et_EE.json ├── eu.js ├── eu.json ├── fa.js ├── fa.json ├── fi.js ├── fi.json ├── fr.js ├── fr.json ├── ga.js ├── ga.json ├── gd.js ├── gd.json ├── gl.js ├── gl.json ├── he.js ├── he.json ├── hr.js ├── hr.json ├── hu.js ├── hu.json ├── hy.js ├── hy.json ├── ia.js ├── ia.json ├── id.js ├── id.json ├── is.js ├── is.json ├── it.js ├── it.json ├── ja.js ├── ja.json ├── ka.js ├── ka.json ├── ka_GE.js ├── ka_GE.json ├── kab.js ├── kab.json ├── km.js ├── km.json ├── kn.js ├── kn.json ├── ko.js ├── ko.json ├── lb.js ├── lb.json ├── lo.js ├── lo.json ├── lt_LT.js ├── lt_LT.json ├── lv.js ├── lv.json ├── mk.js ├── mk.json ├── mn.js ├── mn.json ├── ms_MY.js ├── ms_MY.json ├── nb.js ├── nb.json ├── nl.js ├── nl.json ├── nn_NO.js ├── nn_NO.json ├── oc.js ├── oc.json ├── pl.js ├── pl.json ├── pt_BR.js ├── pt_BR.json ├── pt_PT.js ├── pt_PT.json ├── ro.js ├── ro.json ├── ru.js ├── ru.json ├── sc.js ├── sc.json ├── si.js ├── si.json ├── sk.js ├── sk.json ├── sl.js ├── sl.json ├── sq.js ├── sq.json ├── sr.js ├── sr.json ├── sr@latin.js ├── sr@latin.json ├── sv.js ├── sv.json ├── sw.js ├── sw.json ├── ta.js ├── ta.json ├── th.js ├── th.json ├── tk.js ├── tk.json ├── tr.js ├── tr.json ├── ug.js ├── ug.json ├── uk.js ├── uk.json ├── ur_PK.js ├── ur_PK.json ├── uz.js ├── uz.json ├── vi.js ├── vi.json ├── zh_CN.js ├── zh_CN.json ├── zh_HK.js ├── zh_HK.json ├── zh_TW.js └── zh_TW.json ├── lib ├── AppInfo │ └── Application.php ├── Command │ ├── ExportScripts.php │ ├── ImportScripts.php │ ├── ListScripts.php │ └── RunScript.php ├── Controller │ ├── ScriptController.php │ ├── ScriptInputController.php │ └── SettingsController.php ├── Db │ ├── BaseMapper.php │ ├── Script.php │ ├── ScriptInput.php │ ├── ScriptInputMapper.php │ └── ScriptMapper.php ├── Event │ └── RegisterScriptFunctionsEvent.php ├── Flow │ └── Operation.php ├── Interpreter │ ├── AbortException.php │ ├── Context.php │ ├── ContextFactory.php │ ├── FunctionProvider.php │ ├── Functions │ │ ├── Files │ │ │ ├── Directory_Listing.php │ │ │ ├── Exists.php │ │ │ ├── Exists_Unsafe.php │ │ │ ├── File_Content.php │ │ │ ├── File_Copy.php │ │ │ ├── File_Copy_Unsafe.php │ │ │ ├── File_Delete.php │ │ │ ├── File_Delete_Unsafe.php │ │ │ ├── File_Move.php │ │ │ ├── File_Move_Unsafe.php │ │ │ ├── File_Unlock.php │ │ │ ├── Full_Path.php │ │ │ ├── Get_Parent.php │ │ │ ├── Home.php │ │ │ ├── Is_File.php │ │ │ ├── Is_Folder.php │ │ │ ├── Meta_Data.php │ │ │ ├── New_File.php │ │ │ ├── New_Folder.php │ │ │ ├── NodeSerializerTrait.php │ │ │ └── UnsafeViewOperationTrait.php │ │ ├── Input │ │ │ ├── Get_Input.php │ │ │ └── Get_Input_Files.php │ │ ├── Media │ │ │ ├── Ffmpeg.php │ │ │ └── Ffprobe.php │ │ ├── Nextcloud │ │ │ ├── CommentSerializerTrait.php │ │ │ ├── Comment_Create.php │ │ │ ├── Comment_Delete.php │ │ │ ├── Comments_Find.php │ │ │ ├── EventSerializerTrait.php │ │ │ ├── Get_Activity.php │ │ │ ├── Get_File_Tags.php │ │ │ ├── Notify.php │ │ │ ├── ShareSerializerTrait.php │ │ │ ├── Share_Delete.php │ │ │ ├── Share_File.php │ │ │ ├── Shares_Find.php │ │ │ ├── Tag_Create.php │ │ │ ├── Tag_File.php │ │ │ ├── Tag_File_Unassign.php │ │ │ ├── TagsSerializerTrait.php │ │ │ ├── Tags_Find.php │ │ │ ├── UserSerializerTrait.php │ │ │ └── Users_Find.php │ │ ├── Output │ │ │ ├── Abort.php │ │ │ ├── Add_Message.php │ │ │ ├── Clear_Messages.php │ │ │ ├── Log.php │ │ │ └── View_Files.php │ │ ├── Pdf │ │ │ ├── CheckDependency.php │ │ │ ├── Pdf_Decrypt.php │ │ │ ├── Pdf_Merge.php │ │ │ ├── Pdf_Overlay.php │ │ │ ├── Pdf_Page_Count.php │ │ │ └── Pdf_Pages.php │ │ ├── Template │ │ │ ├── Html_To_Pdf.php │ │ │ └── Mustache.php │ │ └── Util │ │ │ ├── Create_Date_Time.php │ │ │ ├── Csv_To_Table.php │ │ │ ├── For_Each.php │ │ │ ├── Format_Date_Time.php │ │ │ ├── Format_Price.php │ │ │ ├── Http_Request.php │ │ │ ├── Json.php │ │ │ ├── Shell_Command.php │ │ │ ├── Sort.php │ │ │ ├── Wait.php │ │ │ └── _Include.php │ ├── IFunctionProvider.php │ ├── Interpreter.php │ ├── Lua │ │ ├── LuaInterpreter.php │ │ ├── LuaProvider.php │ │ ├── LuaWrapper.php │ │ └── LuarInterpreter.php │ └── RegistrableFunction.php ├── Listener │ ├── LoadAdditionalListener.php │ ├── RegisterFlowOperationsListener.php │ ├── RegisterScriptFunctionListener.php │ └── ShareLinkAccessedListener.php ├── Middleware │ ├── DefaultScriptsMiddleware.php │ └── examples.json ├── Migration │ ├── Version0100Date20220613.php │ ├── Version0100Date20220616.php │ ├── Version020100Date20221126.php │ ├── Version020102Date20230309.php │ ├── Version030000Date20230322.php │ ├── Version030000Date20230323.php │ ├── Version030000Date20230324.php │ ├── Version030100Date20231215.php │ ├── Version031000Date20231211.php │ └── Version040000Date20231217.php ├── Service │ ├── Notifier.php │ ├── PermissionService.php │ ├── ScriptService.php │ └── ScriptValidationException.php └── Settings │ ├── AdminSection.php │ └── AdminSettings.php ├── package.json ├── screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png └── docs │ ├── mime-type.png │ └── save.png ├── src ├── api │ └── script.ts ├── components │ ├── ScriptCard.vue │ ├── ScriptEdit.vue │ ├── ScriptEdit │ │ ├── EditInputDetails.vue │ │ └── EditInputs.vue │ ├── ScriptSelect │ │ └── ScriptInputComponent.vue │ └── generic │ │ ├── FreeSelect.vue │ │ └── MultiInput.vue ├── files.ts ├── l10n.ts ├── main.ts ├── store │ └── scripts.ts ├── types │ ├── Messages.ts │ ├── files.ts │ └── script.ts ├── views │ ├── Flow.vue │ ├── ScriptSelect.vue │ └── Settings.vue ├── vue.shims.d.ts └── workflow.ts ├── stylelint.config.js ├── templates └── settings-admin.php ├── tests ├── bootstrap.php ├── integration │ ├── config │ │ └── behat.yml │ └── features │ │ ├── bootstrap │ │ └── FeatureContext.php │ │ ├── fixtures │ │ ├── test_abort.lua │ │ ├── test_abort_out.json │ │ ├── test_abort_with_messages.lua │ │ ├── test_abort_with_messages_out.json │ │ ├── test_base.lua │ │ ├── test_files.lua │ │ ├── test_messages.lua │ │ ├── test_messages_out.json │ │ ├── test_nextcloud.lua │ │ └── test_util.lua │ │ └── scripts.feature ├── phpunit.xml └── unit │ ├── Interpreter │ ├── AbortTest.php │ ├── TemplateTest.php │ └── UtilTest.php │ ├── Lua │ ├── InputTest.php │ ├── LuaTestCase.php │ ├── TemplateTest.php │ └── UtilTest.php │ ├── NullLogger.php │ ├── TestFunctionProvider.php │ └── TestTempManager.php ├── tsconfig.json └── webpack.config.ts /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/behat-sqlite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/.github/workflows/behat-sqlite.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /.l10nignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/.l10nignore -------------------------------------------------------------------------------- /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/.tx/config -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/README.md -------------------------------------------------------------------------------- /appinfo/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/appinfo/info.xml -------------------------------------------------------------------------------- /appinfo/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/appinfo/routes.php -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/generate_docs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/bin/generate_docs.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/composer.lock -------------------------------------------------------------------------------- /css/codemirror.css: -------------------------------------------------------------------------------- 1 | .CodeMirror { 2 | height: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /css/global.css: -------------------------------------------------------------------------------- 1 | @import url('icons.css'); 2 | -------------------------------------------------------------------------------- /css/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/css/icons.css -------------------------------------------------------------------------------- /custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/custom.d.ts -------------------------------------------------------------------------------- /docs/Admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/docs/Admin.md -------------------------------------------------------------------------------- /docs/Contribute_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/docs/Contribute_API.md -------------------------------------------------------------------------------- /docs/Functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/docs/Functions.md -------------------------------------------------------------------------------- /docs/Integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/docs/Integration.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/docs/README.md -------------------------------------------------------------------------------- /examples/business_card.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/examples/business_card.lua -------------------------------------------------------------------------------- /examples/directory_tree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/examples/directory_tree.lua -------------------------------------------------------------------------------- /examples/generate_invoice.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/examples/generate_invoice.lua -------------------------------------------------------------------------------- /examples/invoice.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/examples/invoice.mustache -------------------------------------------------------------------------------- /examples/merge_pdfs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/examples/merge_pdfs.lua -------------------------------------------------------------------------------- /img/files_scripts-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/img/files_scripts-dark.svg -------------------------------------------------------------------------------- /img/files_scripts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/img/files_scripts.svg -------------------------------------------------------------------------------- /l10n/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /l10n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/af.js -------------------------------------------------------------------------------- /l10n/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/af.json -------------------------------------------------------------------------------- /l10n/an.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/an.js -------------------------------------------------------------------------------- /l10n/an.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/an.json -------------------------------------------------------------------------------- /l10n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ar.js -------------------------------------------------------------------------------- /l10n/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ar.json -------------------------------------------------------------------------------- /l10n/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ast.js -------------------------------------------------------------------------------- /l10n/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ast.json -------------------------------------------------------------------------------- /l10n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/az.js -------------------------------------------------------------------------------- /l10n/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/az.json -------------------------------------------------------------------------------- /l10n/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/be.js -------------------------------------------------------------------------------- /l10n/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/be.json -------------------------------------------------------------------------------- /l10n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/bg.js -------------------------------------------------------------------------------- /l10n/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/bg.json -------------------------------------------------------------------------------- /l10n/bn_BD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/bn_BD.js -------------------------------------------------------------------------------- /l10n/bn_BD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/bn_BD.json -------------------------------------------------------------------------------- /l10n/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/br.js -------------------------------------------------------------------------------- /l10n/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/br.json -------------------------------------------------------------------------------- /l10n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/bs.js -------------------------------------------------------------------------------- /l10n/bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/bs.json -------------------------------------------------------------------------------- /l10n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ca.js -------------------------------------------------------------------------------- /l10n/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ca.json -------------------------------------------------------------------------------- /l10n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/cs.js -------------------------------------------------------------------------------- /l10n/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/cs.json -------------------------------------------------------------------------------- /l10n/cy_GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/cy_GB.js -------------------------------------------------------------------------------- /l10n/cy_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/cy_GB.json -------------------------------------------------------------------------------- /l10n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/da.js -------------------------------------------------------------------------------- /l10n/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/da.json -------------------------------------------------------------------------------- /l10n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/de.js -------------------------------------------------------------------------------- /l10n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/de.json -------------------------------------------------------------------------------- /l10n/de_DE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/de_DE.js -------------------------------------------------------------------------------- /l10n/de_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/de_DE.json -------------------------------------------------------------------------------- /l10n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/el.js -------------------------------------------------------------------------------- /l10n/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/el.json -------------------------------------------------------------------------------- /l10n/en_GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/en_GB.js -------------------------------------------------------------------------------- /l10n/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/en_GB.json -------------------------------------------------------------------------------- /l10n/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/eo.js -------------------------------------------------------------------------------- /l10n/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/eo.json -------------------------------------------------------------------------------- /l10n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es.js -------------------------------------------------------------------------------- /l10n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es.json -------------------------------------------------------------------------------- /l10n/es_419.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_419.js -------------------------------------------------------------------------------- /l10n/es_419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_419.json -------------------------------------------------------------------------------- /l10n/es_AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_AR.js -------------------------------------------------------------------------------- /l10n/es_AR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_AR.json -------------------------------------------------------------------------------- /l10n/es_CL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_CL.js -------------------------------------------------------------------------------- /l10n/es_CL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_CL.json -------------------------------------------------------------------------------- /l10n/es_CO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_CO.js -------------------------------------------------------------------------------- /l10n/es_CO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_CO.json -------------------------------------------------------------------------------- /l10n/es_CR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_CR.js -------------------------------------------------------------------------------- /l10n/es_CR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_CR.json -------------------------------------------------------------------------------- /l10n/es_DO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_DO.js -------------------------------------------------------------------------------- /l10n/es_DO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_DO.json -------------------------------------------------------------------------------- /l10n/es_EC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_EC.js -------------------------------------------------------------------------------- /l10n/es_EC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_EC.json -------------------------------------------------------------------------------- /l10n/es_GT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_GT.js -------------------------------------------------------------------------------- /l10n/es_GT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_GT.json -------------------------------------------------------------------------------- /l10n/es_HN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_HN.js -------------------------------------------------------------------------------- /l10n/es_HN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_HN.json -------------------------------------------------------------------------------- /l10n/es_MX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_MX.js -------------------------------------------------------------------------------- /l10n/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_MX.json -------------------------------------------------------------------------------- /l10n/es_NI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_NI.js -------------------------------------------------------------------------------- /l10n/es_NI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_NI.json -------------------------------------------------------------------------------- /l10n/es_PA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_PA.js -------------------------------------------------------------------------------- /l10n/es_PA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_PA.json -------------------------------------------------------------------------------- /l10n/es_PE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_PE.js -------------------------------------------------------------------------------- /l10n/es_PE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_PE.json -------------------------------------------------------------------------------- /l10n/es_PR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_PR.js -------------------------------------------------------------------------------- /l10n/es_PR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_PR.json -------------------------------------------------------------------------------- /l10n/es_PY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_PY.js -------------------------------------------------------------------------------- /l10n/es_PY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_PY.json -------------------------------------------------------------------------------- /l10n/es_SV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_SV.js -------------------------------------------------------------------------------- /l10n/es_SV.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_SV.json -------------------------------------------------------------------------------- /l10n/es_UY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_UY.js -------------------------------------------------------------------------------- /l10n/es_UY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/es_UY.json -------------------------------------------------------------------------------- /l10n/et_EE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/et_EE.js -------------------------------------------------------------------------------- /l10n/et_EE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/et_EE.json -------------------------------------------------------------------------------- /l10n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/eu.js -------------------------------------------------------------------------------- /l10n/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/eu.json -------------------------------------------------------------------------------- /l10n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/fa.js -------------------------------------------------------------------------------- /l10n/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/fa.json -------------------------------------------------------------------------------- /l10n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/fi.js -------------------------------------------------------------------------------- /l10n/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/fi.json -------------------------------------------------------------------------------- /l10n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/fr.js -------------------------------------------------------------------------------- /l10n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/fr.json -------------------------------------------------------------------------------- /l10n/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ga.js -------------------------------------------------------------------------------- /l10n/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ga.json -------------------------------------------------------------------------------- /l10n/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/gd.js -------------------------------------------------------------------------------- /l10n/gd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/gd.json -------------------------------------------------------------------------------- /l10n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/gl.js -------------------------------------------------------------------------------- /l10n/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/gl.json -------------------------------------------------------------------------------- /l10n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/he.js -------------------------------------------------------------------------------- /l10n/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/he.json -------------------------------------------------------------------------------- /l10n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/hr.js -------------------------------------------------------------------------------- /l10n/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/hr.json -------------------------------------------------------------------------------- /l10n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/hu.js -------------------------------------------------------------------------------- /l10n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/hu.json -------------------------------------------------------------------------------- /l10n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/hy.js -------------------------------------------------------------------------------- /l10n/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/hy.json -------------------------------------------------------------------------------- /l10n/ia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ia.js -------------------------------------------------------------------------------- /l10n/ia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ia.json -------------------------------------------------------------------------------- /l10n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/id.js -------------------------------------------------------------------------------- /l10n/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/id.json -------------------------------------------------------------------------------- /l10n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/is.js -------------------------------------------------------------------------------- /l10n/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/is.json -------------------------------------------------------------------------------- /l10n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/it.js -------------------------------------------------------------------------------- /l10n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/it.json -------------------------------------------------------------------------------- /l10n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ja.js -------------------------------------------------------------------------------- /l10n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ja.json -------------------------------------------------------------------------------- /l10n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ka.js -------------------------------------------------------------------------------- /l10n/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ka.json -------------------------------------------------------------------------------- /l10n/ka_GE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ka_GE.js -------------------------------------------------------------------------------- /l10n/ka_GE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ka_GE.json -------------------------------------------------------------------------------- /l10n/kab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/kab.js -------------------------------------------------------------------------------- /l10n/kab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/kab.json -------------------------------------------------------------------------------- /l10n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/km.js -------------------------------------------------------------------------------- /l10n/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/km.json -------------------------------------------------------------------------------- /l10n/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/kn.js -------------------------------------------------------------------------------- /l10n/kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/kn.json -------------------------------------------------------------------------------- /l10n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ko.js -------------------------------------------------------------------------------- /l10n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ko.json -------------------------------------------------------------------------------- /l10n/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/lb.js -------------------------------------------------------------------------------- /l10n/lb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/lb.json -------------------------------------------------------------------------------- /l10n/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/lo.js -------------------------------------------------------------------------------- /l10n/lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/lo.json -------------------------------------------------------------------------------- /l10n/lt_LT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/lt_LT.js -------------------------------------------------------------------------------- /l10n/lt_LT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/lt_LT.json -------------------------------------------------------------------------------- /l10n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/lv.js -------------------------------------------------------------------------------- /l10n/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/lv.json -------------------------------------------------------------------------------- /l10n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/mk.js -------------------------------------------------------------------------------- /l10n/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/mk.json -------------------------------------------------------------------------------- /l10n/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/mn.js -------------------------------------------------------------------------------- /l10n/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/mn.json -------------------------------------------------------------------------------- /l10n/ms_MY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ms_MY.js -------------------------------------------------------------------------------- /l10n/ms_MY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ms_MY.json -------------------------------------------------------------------------------- /l10n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/nb.js -------------------------------------------------------------------------------- /l10n/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/nb.json -------------------------------------------------------------------------------- /l10n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/nl.js -------------------------------------------------------------------------------- /l10n/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/nl.json -------------------------------------------------------------------------------- /l10n/nn_NO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/nn_NO.js -------------------------------------------------------------------------------- /l10n/nn_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/nn_NO.json -------------------------------------------------------------------------------- /l10n/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/oc.js -------------------------------------------------------------------------------- /l10n/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/oc.json -------------------------------------------------------------------------------- /l10n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/pl.js -------------------------------------------------------------------------------- /l10n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/pl.json -------------------------------------------------------------------------------- /l10n/pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/pt_BR.js -------------------------------------------------------------------------------- /l10n/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/pt_BR.json -------------------------------------------------------------------------------- /l10n/pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/pt_PT.js -------------------------------------------------------------------------------- /l10n/pt_PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/pt_PT.json -------------------------------------------------------------------------------- /l10n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ro.js -------------------------------------------------------------------------------- /l10n/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ro.json -------------------------------------------------------------------------------- /l10n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ru.js -------------------------------------------------------------------------------- /l10n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ru.json -------------------------------------------------------------------------------- /l10n/sc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/sc.js -------------------------------------------------------------------------------- /l10n/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/sc.json -------------------------------------------------------------------------------- /l10n/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/si.js -------------------------------------------------------------------------------- /l10n/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/si.json -------------------------------------------------------------------------------- /l10n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/sk.js -------------------------------------------------------------------------------- /l10n/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/sk.json -------------------------------------------------------------------------------- /l10n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/sl.js -------------------------------------------------------------------------------- /l10n/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/sl.json -------------------------------------------------------------------------------- /l10n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/sq.js -------------------------------------------------------------------------------- /l10n/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/sq.json -------------------------------------------------------------------------------- /l10n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/sr.js -------------------------------------------------------------------------------- /l10n/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/sr.json -------------------------------------------------------------------------------- /l10n/sr@latin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/sr@latin.js -------------------------------------------------------------------------------- /l10n/sr@latin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/sr@latin.json -------------------------------------------------------------------------------- /l10n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/sv.js -------------------------------------------------------------------------------- /l10n/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/sv.json -------------------------------------------------------------------------------- /l10n/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/sw.js -------------------------------------------------------------------------------- /l10n/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/sw.json -------------------------------------------------------------------------------- /l10n/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ta.js -------------------------------------------------------------------------------- /l10n/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ta.json -------------------------------------------------------------------------------- /l10n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/th.js -------------------------------------------------------------------------------- /l10n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/th.json -------------------------------------------------------------------------------- /l10n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/tk.js -------------------------------------------------------------------------------- /l10n/tk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/tk.json -------------------------------------------------------------------------------- /l10n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/tr.js -------------------------------------------------------------------------------- /l10n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/tr.json -------------------------------------------------------------------------------- /l10n/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ug.js -------------------------------------------------------------------------------- /l10n/ug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ug.json -------------------------------------------------------------------------------- /l10n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/uk.js -------------------------------------------------------------------------------- /l10n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/uk.json -------------------------------------------------------------------------------- /l10n/ur_PK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ur_PK.js -------------------------------------------------------------------------------- /l10n/ur_PK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/ur_PK.json -------------------------------------------------------------------------------- /l10n/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/uz.js -------------------------------------------------------------------------------- /l10n/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/uz.json -------------------------------------------------------------------------------- /l10n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/vi.js -------------------------------------------------------------------------------- /l10n/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/vi.json -------------------------------------------------------------------------------- /l10n/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/zh_CN.js -------------------------------------------------------------------------------- /l10n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/zh_CN.json -------------------------------------------------------------------------------- /l10n/zh_HK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/zh_HK.js -------------------------------------------------------------------------------- /l10n/zh_HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/zh_HK.json -------------------------------------------------------------------------------- /l10n/zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/zh_TW.js -------------------------------------------------------------------------------- /l10n/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/l10n/zh_TW.json -------------------------------------------------------------------------------- /lib/AppInfo/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/AppInfo/Application.php -------------------------------------------------------------------------------- /lib/Command/ExportScripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Command/ExportScripts.php -------------------------------------------------------------------------------- /lib/Command/ImportScripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Command/ImportScripts.php -------------------------------------------------------------------------------- /lib/Command/ListScripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Command/ListScripts.php -------------------------------------------------------------------------------- /lib/Command/RunScript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Command/RunScript.php -------------------------------------------------------------------------------- /lib/Controller/ScriptController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Controller/ScriptController.php -------------------------------------------------------------------------------- /lib/Controller/ScriptInputController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Controller/ScriptInputController.php -------------------------------------------------------------------------------- /lib/Controller/SettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Controller/SettingsController.php -------------------------------------------------------------------------------- /lib/Db/BaseMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Db/BaseMapper.php -------------------------------------------------------------------------------- /lib/Db/Script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Db/Script.php -------------------------------------------------------------------------------- /lib/Db/ScriptInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Db/ScriptInput.php -------------------------------------------------------------------------------- /lib/Db/ScriptInputMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Db/ScriptInputMapper.php -------------------------------------------------------------------------------- /lib/Db/ScriptMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Db/ScriptMapper.php -------------------------------------------------------------------------------- /lib/Event/RegisterScriptFunctionsEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Event/RegisterScriptFunctionsEvent.php -------------------------------------------------------------------------------- /lib/Flow/Operation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Flow/Operation.php -------------------------------------------------------------------------------- /lib/Interpreter/AbortException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/AbortException.php -------------------------------------------------------------------------------- /lib/Interpreter/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Context.php -------------------------------------------------------------------------------- /lib/Interpreter/ContextFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/ContextFactory.php -------------------------------------------------------------------------------- /lib/Interpreter/FunctionProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/FunctionProvider.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/Directory_Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/Directory_Listing.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/Exists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/Exists.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/Exists_Unsafe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/Exists_Unsafe.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/File_Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/File_Content.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/File_Copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/File_Copy.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/File_Copy_Unsafe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/File_Copy_Unsafe.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/File_Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/File_Delete.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/File_Delete_Unsafe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/File_Delete_Unsafe.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/File_Move.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/File_Move.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/File_Move_Unsafe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/File_Move_Unsafe.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/File_Unlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/File_Unlock.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/Full_Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/Full_Path.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/Get_Parent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/Get_Parent.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/Home.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/Is_File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/Is_File.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/Is_Folder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/Is_Folder.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/Meta_Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/Meta_Data.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/New_File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/New_File.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/New_Folder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/New_Folder.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/NodeSerializerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/NodeSerializerTrait.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Files/UnsafeViewOperationTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Files/UnsafeViewOperationTrait.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Input/Get_Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Input/Get_Input.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Input/Get_Input_Files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Input/Get_Input_Files.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Media/Ffmpeg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Media/Ffmpeg.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Media/Ffprobe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Media/Ffprobe.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/CommentSerializerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/CommentSerializerTrait.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/Comment_Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/Comment_Create.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/Comment_Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/Comment_Delete.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/Comments_Find.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/Comments_Find.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/EventSerializerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/EventSerializerTrait.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/Get_Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/Get_Activity.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/Get_File_Tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/Get_File_Tags.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/Notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/Notify.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/ShareSerializerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/ShareSerializerTrait.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/Share_Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/Share_Delete.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/Share_File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/Share_File.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/Shares_Find.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/Shares_Find.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/Tag_Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/Tag_Create.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/Tag_File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/Tag_File.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/Tag_File_Unassign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/Tag_File_Unassign.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/TagsSerializerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/TagsSerializerTrait.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/Tags_Find.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/Tags_Find.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/UserSerializerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/UserSerializerTrait.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Nextcloud/Users_Find.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Nextcloud/Users_Find.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Output/Abort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Output/Abort.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Output/Add_Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Output/Add_Message.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Output/Clear_Messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Output/Clear_Messages.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Output/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Output/Log.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Output/View_Files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Output/View_Files.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Pdf/CheckDependency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Pdf/CheckDependency.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Pdf/Pdf_Decrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Pdf/Pdf_Decrypt.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Pdf/Pdf_Merge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Pdf/Pdf_Merge.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Pdf/Pdf_Overlay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Pdf/Pdf_Overlay.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Pdf/Pdf_Page_Count.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Pdf/Pdf_Page_Count.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Pdf/Pdf_Pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Pdf/Pdf_Pages.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Template/Html_To_Pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Template/Html_To_Pdf.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Template/Mustache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Template/Mustache.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Util/Create_Date_Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Util/Create_Date_Time.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Util/Csv_To_Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Util/Csv_To_Table.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Util/For_Each.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Util/For_Each.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Util/Format_Date_Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Util/Format_Date_Time.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Util/Format_Price.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Util/Format_Price.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Util/Http_Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Util/Http_Request.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Util/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Util/Json.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Util/Shell_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Util/Shell_Command.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Util/Sort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Util/Sort.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Util/Wait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Util/Wait.php -------------------------------------------------------------------------------- /lib/Interpreter/Functions/Util/_Include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Functions/Util/_Include.php -------------------------------------------------------------------------------- /lib/Interpreter/IFunctionProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/IFunctionProvider.php -------------------------------------------------------------------------------- /lib/Interpreter/Interpreter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Interpreter.php -------------------------------------------------------------------------------- /lib/Interpreter/Lua/LuaInterpreter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Lua/LuaInterpreter.php -------------------------------------------------------------------------------- /lib/Interpreter/Lua/LuaProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Lua/LuaProvider.php -------------------------------------------------------------------------------- /lib/Interpreter/Lua/LuaWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Lua/LuaWrapper.php -------------------------------------------------------------------------------- /lib/Interpreter/Lua/LuarInterpreter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/Lua/LuarInterpreter.php -------------------------------------------------------------------------------- /lib/Interpreter/RegistrableFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Interpreter/RegistrableFunction.php -------------------------------------------------------------------------------- /lib/Listener/LoadAdditionalListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Listener/LoadAdditionalListener.php -------------------------------------------------------------------------------- /lib/Listener/RegisterFlowOperationsListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Listener/RegisterFlowOperationsListener.php -------------------------------------------------------------------------------- /lib/Listener/RegisterScriptFunctionListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Listener/RegisterScriptFunctionListener.php -------------------------------------------------------------------------------- /lib/Listener/ShareLinkAccessedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Listener/ShareLinkAccessedListener.php -------------------------------------------------------------------------------- /lib/Middleware/DefaultScriptsMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Middleware/DefaultScriptsMiddleware.php -------------------------------------------------------------------------------- /lib/Middleware/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Middleware/examples.json -------------------------------------------------------------------------------- /lib/Migration/Version0100Date20220613.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Migration/Version0100Date20220613.php -------------------------------------------------------------------------------- /lib/Migration/Version0100Date20220616.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Migration/Version0100Date20220616.php -------------------------------------------------------------------------------- /lib/Migration/Version020100Date20221126.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Migration/Version020100Date20221126.php -------------------------------------------------------------------------------- /lib/Migration/Version020102Date20230309.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Migration/Version020102Date20230309.php -------------------------------------------------------------------------------- /lib/Migration/Version030000Date20230322.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Migration/Version030000Date20230322.php -------------------------------------------------------------------------------- /lib/Migration/Version030000Date20230323.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Migration/Version030000Date20230323.php -------------------------------------------------------------------------------- /lib/Migration/Version030000Date20230324.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Migration/Version030000Date20230324.php -------------------------------------------------------------------------------- /lib/Migration/Version030100Date20231215.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Migration/Version030100Date20231215.php -------------------------------------------------------------------------------- /lib/Migration/Version031000Date20231211.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Migration/Version031000Date20231211.php -------------------------------------------------------------------------------- /lib/Migration/Version040000Date20231217.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Migration/Version040000Date20231217.php -------------------------------------------------------------------------------- /lib/Service/Notifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Service/Notifier.php -------------------------------------------------------------------------------- /lib/Service/PermissionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Service/PermissionService.php -------------------------------------------------------------------------------- /lib/Service/ScriptService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Service/ScriptService.php -------------------------------------------------------------------------------- /lib/Service/ScriptValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Service/ScriptValidationException.php -------------------------------------------------------------------------------- /lib/Settings/AdminSection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Settings/AdminSection.php -------------------------------------------------------------------------------- /lib/Settings/AdminSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/lib/Settings/AdminSettings.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/docs/mime-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/screenshots/docs/mime-type.png -------------------------------------------------------------------------------- /screenshots/docs/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/screenshots/docs/save.png -------------------------------------------------------------------------------- /src/api/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/api/script.ts -------------------------------------------------------------------------------- /src/components/ScriptCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/components/ScriptCard.vue -------------------------------------------------------------------------------- /src/components/ScriptEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/components/ScriptEdit.vue -------------------------------------------------------------------------------- /src/components/ScriptEdit/EditInputDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/components/ScriptEdit/EditInputDetails.vue -------------------------------------------------------------------------------- /src/components/ScriptEdit/EditInputs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/components/ScriptEdit/EditInputs.vue -------------------------------------------------------------------------------- /src/components/ScriptSelect/ScriptInputComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/components/ScriptSelect/ScriptInputComponent.vue -------------------------------------------------------------------------------- /src/components/generic/FreeSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/components/generic/FreeSelect.vue -------------------------------------------------------------------------------- /src/components/generic/MultiInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/components/generic/MultiInput.vue -------------------------------------------------------------------------------- /src/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/files.ts -------------------------------------------------------------------------------- /src/l10n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/l10n.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/store/scripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/store/scripts.ts -------------------------------------------------------------------------------- /src/types/Messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/types/Messages.ts -------------------------------------------------------------------------------- /src/types/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/types/files.ts -------------------------------------------------------------------------------- /src/types/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/types/script.ts -------------------------------------------------------------------------------- /src/views/Flow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/views/Flow.vue -------------------------------------------------------------------------------- /src/views/ScriptSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/views/ScriptSelect.vue -------------------------------------------------------------------------------- /src/views/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/views/Settings.vue -------------------------------------------------------------------------------- /src/vue.shims.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/vue.shims.d.ts -------------------------------------------------------------------------------- /src/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/src/workflow.ts -------------------------------------------------------------------------------- /stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/stylelint.config.js -------------------------------------------------------------------------------- /templates/settings-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/templates/settings-admin.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/integration/config/behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/integration/config/behat.yml -------------------------------------------------------------------------------- /tests/integration/features/bootstrap/FeatureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/integration/features/bootstrap/FeatureContext.php -------------------------------------------------------------------------------- /tests/integration/features/fixtures/test_abort.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/integration/features/fixtures/test_abort.lua -------------------------------------------------------------------------------- /tests/integration/features/fixtures/test_abort_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/integration/features/fixtures/test_abort_out.json -------------------------------------------------------------------------------- /tests/integration/features/fixtures/test_abort_with_messages.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/integration/features/fixtures/test_abort_with_messages.lua -------------------------------------------------------------------------------- /tests/integration/features/fixtures/test_abort_with_messages_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/integration/features/fixtures/test_abort_with_messages_out.json -------------------------------------------------------------------------------- /tests/integration/features/fixtures/test_base.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/integration/features/fixtures/test_base.lua -------------------------------------------------------------------------------- /tests/integration/features/fixtures/test_files.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/integration/features/fixtures/test_files.lua -------------------------------------------------------------------------------- /tests/integration/features/fixtures/test_messages.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/integration/features/fixtures/test_messages.lua -------------------------------------------------------------------------------- /tests/integration/features/fixtures/test_messages_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/integration/features/fixtures/test_messages_out.json -------------------------------------------------------------------------------- /tests/integration/features/fixtures/test_nextcloud.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/integration/features/fixtures/test_nextcloud.lua -------------------------------------------------------------------------------- /tests/integration/features/fixtures/test_util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/integration/features/fixtures/test_util.lua -------------------------------------------------------------------------------- /tests/integration/features/scripts.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/integration/features/scripts.feature -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/phpunit.xml -------------------------------------------------------------------------------- /tests/unit/Interpreter/AbortTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/unit/Interpreter/AbortTest.php -------------------------------------------------------------------------------- /tests/unit/Interpreter/TemplateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/unit/Interpreter/TemplateTest.php -------------------------------------------------------------------------------- /tests/unit/Interpreter/UtilTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/unit/Interpreter/UtilTest.php -------------------------------------------------------------------------------- /tests/unit/Lua/InputTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/unit/Lua/InputTest.php -------------------------------------------------------------------------------- /tests/unit/Lua/LuaTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/unit/Lua/LuaTestCase.php -------------------------------------------------------------------------------- /tests/unit/Lua/TemplateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/unit/Lua/TemplateTest.php -------------------------------------------------------------------------------- /tests/unit/Lua/UtilTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/unit/Lua/UtilTest.php -------------------------------------------------------------------------------- /tests/unit/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/unit/NullLogger.php -------------------------------------------------------------------------------- /tests/unit/TestFunctionProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/unit/TestFunctionProvider.php -------------------------------------------------------------------------------- /tests/unit/TestTempManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tests/unit/TestTempManager.php -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raudius/files_scripts/HEAD/webpack.config.ts --------------------------------------------------------------------------------