├── .gitattributes ├── .github └── workflows │ └── php.yml ├── .gitignore ├── .htaccess ├── App ├── Config │ └── config.php ├── Controller │ ├── ApiController.php │ ├── CalendarController.php │ ├── CategoryController.php │ ├── ForumCommentController.php │ ├── ForumController.php │ ├── HelpController.php │ ├── HomeController.php │ ├── LoginController.php │ ├── NoteController.php │ ├── ProjectController.php │ ├── TaskController.php │ ├── UploadController.php │ ├── UserController.php │ └── UserProjectController.php ├── Core │ ├── Controller.php │ ├── Core.php │ ├── Model.php │ └── UploadFile.php ├── Entity │ ├── Category.php │ ├── Forum.php │ ├── ForumComment.php │ ├── Note.php │ ├── Project.php │ ├── Task.php │ ├── Upload.php │ ├── User.php │ └── UserProject.php ├── Function │ └── functions.php ├── Model │ ├── CategoryModel.php │ ├── ForumCommentModel.php │ ├── ForumModel.php │ ├── NoteModel.php │ ├── ProjectModel.php │ ├── TaskModel.php │ ├── UploadModel.php │ ├── UserModel.php │ └── UserProjectModel.php └── View │ ├── calendar │ └── show.php │ ├── category │ ├── create.php │ ├── edit.php │ └── show.php │ ├── forum │ ├── create.php │ ├── edit.php │ ├── result.php │ └── show.php │ ├── help │ └── main.php │ ├── index.php │ ├── layout │ ├── 404.php │ ├── denied.php │ ├── home.php │ └── partials │ │ ├── menu-desktop.php │ │ └── menu-mobile.php │ ├── login │ ├── auth.php │ └── login.php │ ├── message │ └── nolink.php │ ├── note │ ├── create.php │ ├── edit.php │ ├── list.php │ ├── result.php │ └── show.php │ ├── project │ ├── create.php │ ├── edit.php │ ├── list.php │ ├── myproject.php │ ├── result.php │ └── show.php │ ├── task │ ├── create.php │ ├── edit.php │ ├── result.php │ └── show.php │ ├── upload │ └── result.php │ ├── user │ ├── create.php │ ├── edit.php │ ├── passwordchange.php │ ├── passwordreset.php │ ├── passwordupdate.php │ ├── show.php │ ├── store.php │ └── update.php │ └── userproject │ ├── result.php │ └── show.php ├── Docs ├── Database │ ├── Dados tabela.txt │ ├── Default User.txt │ ├── Modelo.png │ ├── SQL.txt │ └── Tasks.png ├── Image │ ├── Glify.gliffy │ └── siteMap.png ├── modal.html └── sql.sql ├── LICENSE ├── Public ├── .htaccess ├── css │ ├── bootstrap.min.css │ ├── bootstrap.sketchy.min.css │ └── style.css ├── img │ ├── favicon.ico │ ├── help │ │ └── sitemap.png │ ├── logo-white.png │ ├── logo_color.png │ ├── logo_dark.png │ ├── project.png │ └── push-pin.png ├── index.php ├── js │ ├── category.js │ ├── forum.js │ ├── global.js │ ├── jquery-3.4.1.min.js │ ├── note.js │ ├── project.js │ ├── task.js │ ├── upload.js │ └── user.js ├── resources │ ├── .htaccess │ ├── files │ │ └── .htaccess │ └── images │ │ └── .htaccess └── vendor │ ├── ckeditor │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── adapters │ │ └── jquery.js │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ │ └── en.js │ ├── plugins │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ ├── a11yhelp.js │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── oc.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── logo_ckeditor.png │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── codesnippet │ │ │ ├── dialogs │ │ │ │ └── codesnippet.js │ │ │ └── lib │ │ │ │ └── highlight │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── README.ru.md │ │ │ │ ├── highlight.pack.js │ │ │ │ └── styles │ │ │ │ ├── arta.css │ │ │ │ ├── ascetic.css │ │ │ │ ├── atelier-dune.dark.css │ │ │ │ ├── atelier-dune.light.css │ │ │ │ ├── atelier-forest.dark.css │ │ │ │ ├── atelier-forest.light.css │ │ │ │ ├── atelier-heath.dark.css │ │ │ │ ├── atelier-heath.light.css │ │ │ │ ├── atelier-lakeside.dark.css │ │ │ │ ├── atelier-lakeside.light.css │ │ │ │ ├── atelier-seaside.dark.css │ │ │ │ ├── atelier-seaside.light.css │ │ │ │ ├── brown_paper.css │ │ │ │ ├── brown_papersq.png │ │ │ │ ├── dark.css │ │ │ │ ├── default.css │ │ │ │ ├── docco.css │ │ │ │ ├── far.css │ │ │ │ ├── foundation.css │ │ │ │ ├── github.css │ │ │ │ ├── googlecode.css │ │ │ │ ├── idea.css │ │ │ │ ├── ir_black.css │ │ │ │ ├── magula.css │ │ │ │ ├── mono-blue.css │ │ │ │ ├── monokai.css │ │ │ │ ├── monokai_sublime.css │ │ │ │ ├── obsidian.css │ │ │ │ ├── paraiso.dark.css │ │ │ │ ├── paraiso.light.css │ │ │ │ ├── pojoaque.css │ │ │ │ ├── pojoaque.jpg │ │ │ │ ├── railscasts.css │ │ │ │ ├── rainbow.css │ │ │ │ ├── school_book.css │ │ │ │ ├── school_book.png │ │ │ │ ├── solarized_dark.css │ │ │ │ ├── solarized_light.css │ │ │ │ ├── sunburst.css │ │ │ │ ├── tomorrow-night-blue.css │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ ├── tomorrow-night.css │ │ │ │ ├── tomorrow.css │ │ │ │ ├── vs.css │ │ │ │ ├── xcode.css │ │ │ │ └── zenburn.css │ │ ├── colordialog │ │ │ └── dialogs │ │ │ │ ├── colordialog.css │ │ │ │ └── colordialog.js │ │ ├── copyformatting │ │ │ ├── cursors │ │ │ │ ├── cursor-disabled.svg │ │ │ │ └── cursor.svg │ │ │ └── styles │ │ │ │ └── copyformatting.css │ │ ├── dialog │ │ │ ├── dialogDefinition.js │ │ │ └── styles │ │ │ │ └── dialog.css │ │ ├── div │ │ │ └── dialogs │ │ │ │ └── div.js │ │ ├── find │ │ │ └── dialogs │ │ │ │ └── find.js │ │ ├── flash │ │ │ ├── dialogs │ │ │ │ └── flash.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── forms │ │ │ ├── dialogs │ │ │ │ ├── button.js │ │ │ │ ├── checkbox.js │ │ │ │ ├── form.js │ │ │ │ ├── hiddenfield.js │ │ │ │ ├── radio.js │ │ │ │ ├── select.js │ │ │ │ ├── textarea.js │ │ │ │ └── textfield.js │ │ │ └── images │ │ │ │ └── hiddenfield.gif │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── iframe │ │ │ ├── dialogs │ │ │ │ └── iframe.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── liststyle │ │ │ └── dialogs │ │ │ │ └── liststyle.js │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── hidpi │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ ├── pagebreak │ │ │ └── images │ │ │ │ └── pagebreak.gif │ │ ├── pastefromgdocs │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── pastetools │ │ │ └── filter │ │ │ │ └── common.js │ │ ├── preview │ │ │ └── preview.html │ │ ├── scayt │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dialogs │ │ │ │ ├── dialog.css │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ │ └── skins │ │ │ │ └── moono-lisa │ │ │ │ └── scayt.css │ │ ├── showblocks │ │ │ └── images │ │ │ │ ├── block_address.png │ │ │ │ ├── block_blockquote.png │ │ │ │ ├── block_div.png │ │ │ │ ├── block_h1.png │ │ │ │ ├── block_h2.png │ │ │ │ ├── block_h3.png │ │ │ │ ├── block_h4.png │ │ │ │ ├── block_h5.png │ │ │ │ ├── block_h6.png │ │ │ │ ├── block_p.png │ │ │ │ └── block_pre.png │ │ ├── smiley │ │ │ ├── dialogs │ │ │ │ └── smiley.js │ │ │ └── images │ │ │ │ ├── angel_smile.gif │ │ │ │ ├── angel_smile.png │ │ │ │ ├── angry_smile.gif │ │ │ │ ├── angry_smile.png │ │ │ │ ├── broken_heart.gif │ │ │ │ ├── broken_heart.png │ │ │ │ ├── confused_smile.gif │ │ │ │ ├── confused_smile.png │ │ │ │ ├── cry_smile.gif │ │ │ │ ├── cry_smile.png │ │ │ │ ├── devil_smile.gif │ │ │ │ ├── devil_smile.png │ │ │ │ ├── embaressed_smile.gif │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ ├── embarrassed_smile.png │ │ │ │ ├── envelope.gif │ │ │ │ ├── envelope.png │ │ │ │ ├── heart.gif │ │ │ │ ├── heart.png │ │ │ │ ├── kiss.gif │ │ │ │ ├── kiss.png │ │ │ │ ├── lightbulb.gif │ │ │ │ ├── lightbulb.png │ │ │ │ ├── omg_smile.gif │ │ │ │ ├── omg_smile.png │ │ │ │ ├── regular_smile.gif │ │ │ │ ├── regular_smile.png │ │ │ │ ├── sad_smile.gif │ │ │ │ ├── sad_smile.png │ │ │ │ ├── shades_smile.gif │ │ │ │ ├── shades_smile.png │ │ │ │ ├── teeth_smile.gif │ │ │ │ ├── teeth_smile.png │ │ │ │ ├── thumbs_down.gif │ │ │ │ ├── thumbs_down.png │ │ │ │ ├── thumbs_up.gif │ │ │ │ ├── thumbs_up.png │ │ │ │ ├── tongue_smile.gif │ │ │ │ ├── tongue_smile.png │ │ │ │ ├── tounge_smile.gif │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ ├── wink_smile.gif │ │ │ │ └── wink_smile.png │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── oc.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ │ └── specialchar.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tableselection │ │ │ └── styles │ │ │ │ └── tableselection.css │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ ├── templates │ │ │ ├── dialogs │ │ │ │ ├── templates.css │ │ │ │ └── templates.js │ │ │ └── templates │ │ │ │ ├── default.js │ │ │ │ └── images │ │ │ │ ├── template1.gif │ │ │ │ ├── template2.gif │ │ │ │ └── template3.gif │ │ ├── videodetector │ │ │ ├── dialogs │ │ │ │ └── videoDialog.js │ │ │ └── videodetector.css │ │ ├── widget │ │ │ └── images │ │ │ │ └── handle.png │ │ ├── wsc │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ │ └── skins │ │ │ │ └── moono-lisa │ │ │ │ └── wsc.css │ │ └── youtube │ │ │ └── images │ │ │ ├── icon-hdpi.png │ │ │ └── icon.png │ ├── samples │ │ ├── css │ │ │ └── samples.css │ │ ├── img │ │ │ ├── github-top.png │ │ │ ├── header-bg.png │ │ │ ├── header-separator.png │ │ │ ├── logo.png │ │ │ ├── logo.svg │ │ │ └── navigation-tip.png │ │ ├── index.html │ │ ├── js │ │ │ ├── sample.js │ │ │ └── sf.js │ │ ├── old │ │ │ ├── ajax.html │ │ │ ├── api.html │ │ │ ├── appendto.html │ │ │ ├── assets │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ ├── outputxhtml │ │ │ │ │ └── outputxhtml.css │ │ │ │ ├── posteddata.php │ │ │ │ ├── sample.jpg │ │ │ │ └── uilanguages │ │ │ │ │ └── languages.js │ │ │ ├── codesnippet │ │ │ │ └── codesnippet.html │ │ │ ├── datafiltering.html │ │ │ ├── dialog │ │ │ │ ├── assets │ │ │ │ │ └── my_dialog.js │ │ │ │ └── dialog.html │ │ │ ├── divreplace.html │ │ │ ├── enterkey │ │ │ │ └── enterkey.html │ │ │ ├── htmlwriter │ │ │ │ ├── assets │ │ │ │ │ └── outputforflash │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ └── swfobject.js │ │ │ │ ├── outputforflash.html │ │ │ │ └── outputhtml.html │ │ │ ├── index.html │ │ │ ├── inlineall.html │ │ │ ├── inlinebycode.html │ │ │ ├── inlinetextarea.html │ │ │ ├── jquery.html │ │ │ ├── magicline │ │ │ │ └── magicline.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── tabindex.html │ │ │ ├── toolbar │ │ │ │ └── toolbar.html │ │ │ ├── uicolor.html │ │ │ ├── uilanguages.html │ │ │ ├── wysiwygarea │ │ │ │ └── fullpage.html │ │ │ └── xhtmlstyle.html │ │ └── toolbarconfigurator │ │ │ ├── css │ │ │ └── fontello.css │ │ │ ├── font │ │ │ ├── LICENSE.txt │ │ │ ├── config.json │ │ │ ├── fontello.eot │ │ │ ├── fontello.svg │ │ │ ├── fontello.ttf │ │ │ └── fontello.woff │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── abstracttoolbarmodifier.js │ │ │ ├── fulltoolbareditor.js │ │ │ ├── toolbarmodifier.js │ │ │ └── toolbartextmodifier.js │ │ │ └── lib │ │ │ └── codemirror │ │ │ ├── LICENSE │ │ │ ├── codemirror.css │ │ │ ├── codemirror.js │ │ │ ├── javascript.js │ │ │ ├── neo.css │ │ │ ├── show-hint.css │ │ │ └── show-hint.js │ ├── skins │ │ └── kama │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie7.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── editor.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie7.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── dialog_sides.gif │ │ │ ├── dialog_sides.png │ │ │ ├── dialog_sides_rtl.png │ │ │ ├── mini.gif │ │ │ ├── spinner.gif │ │ │ ├── sprites.png │ │ │ ├── sprites_ie6.png │ │ │ └── toolbar_start.gif │ │ │ └── readme.md │ ├── styles.js │ └── vendor │ │ └── promise.js │ ├── full-calendar │ ├── LICENSE.txt │ ├── README.md │ ├── packages │ │ ├── bootstrap │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.css │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.css │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── core │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── locales-all.js │ │ │ ├── locales-all.min.js │ │ │ ├── locales │ │ │ │ ├── af.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── ko.js │ │ │ │ ├── lb.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ ├── main.css │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.css │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── daygrid │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.css │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.css │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── google-calendar │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── interaction │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── list │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.css │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.css │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── luxon │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── moment-timezone │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── moment │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── rrule │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.js │ │ │ └── package.json │ │ └── timegrid │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.css │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.css │ │ │ ├── main.min.js │ │ │ └── package.json │ └── vendor │ │ └── rrule.js │ └── highlight │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── README.ru.md │ ├── highlight.pack.js │ └── styles │ ├── atom-one-dark.css │ └── github.css ├── README.md ├── composer.json └── vendor ├── autoload.php └── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php └── autoload_static.php /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- 1 | name: PHP Composer 2 | 3 | on: [push] 4 | 5 | jobs: 6 | build: 7 | 8 | runs-on: ubuntu-latest 9 | 10 | steps: 11 | - uses: actions/checkout@v1 12 | 13 | - name: Validate composer.json and composer.lock 14 | run: composer validate 15 | 16 | - name: Install dependencies 17 | run: composer install --prefer-dist --no-progress --no-suggest 18 | 19 | # Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit" 20 | # Docs: https://getcomposer.org/doc/articles/scripts.md 21 | 22 | # - name: Run test suite 23 | # run: composer run-script test 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | App/config/ 2 | Public/Resources/ 3 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteBase / 3 | 4 | RewriteCond %{THE_REQUEST} Public/([^\s?]*) [NC] 5 | RewriteRule ^ %1 [L,NE,R=302] 6 | RewriteRule ^((?!Public/).*)$ opentask/Public/$1 [L,NC] 7 | -------------------------------------------------------------------------------- /App/Config/config.php: -------------------------------------------------------------------------------- 1 | 27 | define("METHOD_HTTP", "Httpindex");//call befrore 28 | 29 | //UPLOAD 30 | define("FILE_PATH", "resources/files"); 31 | define("IMAGE_PATH", "resources/images"); 32 | define("MAX_FILE_SIZE", 50); //MB 33 | define("MAX_IMAGE_SIZE", 1);//MB 34 | define("ACCEPT_FORMAT", [ 35 | "image/gif", 36 | "image/jpeg", 37 | "image/png", 38 | "application", 39 | "application", 40 | "application/zip", 41 | "application/x-7z-compressed", 42 | "application/x-zip-compressed" 43 | ]); 44 | define("RENAME_FILE", true); 45 | -------------------------------------------------------------------------------- /App/Controller/ApiController.php: -------------------------------------------------------------------------------- 1 | "Invalid URL"])); 17 | } 18 | 19 | public function Httpcalendar($strIds = ""){ 20 | $strIds = filter_var($strIds, FILTER_SANITIZE_STRING); 21 | 22 | if(strlen($strIds) <= 0){ 23 | exit(json_encode(["message" => "Invalid ID"])); 24 | } 25 | 26 | if(substr($strIds, -1) == ","){ 27 | $strIds = substr($strIds, 0, -1); 28 | } 29 | 30 | $taskModel = (new \App\Model\TaskModel()); 31 | $totalDays = cal_days_in_month(CAL_GREGORIAN, date("m"), date("Y")); // 31 32 | $last = date("Y-m-") . $totalDays; //return last day from currentMonth 33 | 34 | $tasks = $taskModel->getAllMonthTask($strIds, date("Y-m-d"), $last); 35 | 36 | exit(json_encode($tasks)); 37 | } 38 | 39 | } 40 | -------------------------------------------------------------------------------- /App/Controller/CalendarController.php: -------------------------------------------------------------------------------- 1 | getUserProjects($_SESSION['i'])); 19 | 20 | if(count($userProjects) > 0){ 21 | $strIds = implode(",", $userProjects);//Convert array to string: 1,2,5,90,111 22 | } 23 | 24 | $this->Load("calendar/show.php", 25 | ["strIds" => $strIds]); 26 | } 27 | 28 | public function headerIndex(){ 29 | echo "Calendário - Open Task"; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /App/Controller/ForumCommentController.php: -------------------------------------------------------------------------------- 1 | forumCommentModel = new ForumCommentModel(); 16 | } 17 | 18 | public function index(){ 19 | $this->Load("layout/404.php"); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /App/Controller/HelpController.php: -------------------------------------------------------------------------------- 1 | Load("help/main.php"); 14 | } 15 | 16 | public function Headerindex(){ 17 | echo "Help - Open Task"; 18 | } 19 | } 20 | ?> 21 | -------------------------------------------------------------------------------- /App/Controller/HomeController.php: -------------------------------------------------------------------------------- 1 | getMyProjects($_SESSION['i']); 14 | $this->Load("layout/home.php", ["listProject" => $listProject]); 15 | } 16 | 17 | public function Headerindex(){ 18 | echo "Home - Open Task"; 19 | } 20 | } 21 | ?> 22 | -------------------------------------------------------------------------------- /App/Core/Controller.php: -------------------------------------------------------------------------------- 1 | denied(); 20 | die(); 21 | } 22 | } 23 | 24 | protected function notFound(){ 25 | $this->Load("layout/404.php"); 26 | } 27 | 28 | protected function denied(){ 29 | $this->Load("layout/denied.php"); 30 | } 31 | } 32 | ?> 33 | -------------------------------------------------------------------------------- /App/Entity/Category.php: -------------------------------------------------------------------------------- 1 | id = $id; 15 | $this->name = $name; 16 | $this->register = $register; 17 | $this->project = ($project != null ? $project : (new Project())); 18 | } 19 | 20 | public function setId($id){ 21 | $this->id = $id; 22 | } 23 | 24 | public function setName($name){ 25 | $this->name = $name; 26 | } 27 | 28 | public function setRegister($register){ 29 | $this->register = $register; 30 | } 31 | 32 | public function setProject($project){ 33 | $this->project = $project; 34 | } 35 | 36 | public function getId(){ 37 | return $this->id; 38 | } 39 | 40 | public function getName(){ 41 | return $this->name; 42 | } 43 | 44 | public function getRegister(){ 45 | return $this->register; 46 | } 47 | 48 | public function getProject(){ 49 | return $this->project; 50 | } 51 | 52 | 53 | } 54 | -------------------------------------------------------------------------------- /App/Entity/Forum.php: -------------------------------------------------------------------------------- 1 | task = new Task(); 19 | $this->user = new User(); 20 | } 21 | 22 | //Setters 23 | public function setId($id){ 24 | $this->id = $id; 25 | } 26 | 27 | public function setTitle($Title){ 28 | $this->title = $Title; 29 | } 30 | 31 | public function setContent($Content){ 32 | $this->content = $Content; 33 | } 34 | 35 | public function setCreated($Created){ 36 | $this->created = $Created; 37 | } 38 | 39 | public function setTask($Task){ 40 | $this->task = $Task; 41 | } 42 | 43 | public function setUser($User){ 44 | $this->user = $User; 45 | } 46 | 47 | 48 | //Getter 49 | public function getId(){ 50 | return $this->id; 51 | } 52 | 53 | public function getTitle(){ 54 | return $this->title; 55 | } 56 | 57 | public function getContent(){ 58 | return $this->content; 59 | } 60 | 61 | public function getCreated(){ 62 | return $this->created; 63 | } 64 | 65 | public function getTask(){ 66 | return $this->task; 67 | } 68 | 69 | public function getUser(){ 70 | return $this->user; 71 | } 72 | 73 | } 74 | -------------------------------------------------------------------------------- /App/Entity/ForumComment.php: -------------------------------------------------------------------------------- 1 | forum = new Forum(); 19 | $this->user = new User(); 20 | } 21 | 22 | //Setters 23 | public function setId($Id){ 24 | $this->id = $Id; 25 | } 26 | 27 | public function setContent($Content){ 28 | $this->content = $Content; 29 | } 30 | 31 | public function setCreated($Created){ 32 | $this->created = $Created; 33 | } 34 | 35 | public function setSubid($Subid){ 36 | $this->subid = $Subid; 37 | } 38 | 39 | public function setForum($Forum){ 40 | $this->forum = $Forum; 41 | } 42 | 43 | public function setUser($User){ 44 | $this->user = $User; 45 | } 46 | 47 | 48 | //Getter 49 | public function getId(){ 50 | return $this->id; 51 | } 52 | 53 | public function getContent(){ 54 | return $this->content; 55 | } 56 | 57 | public function getCreated(){ 58 | return $this->created; 59 | } 60 | 61 | public function getSubid(){ 62 | return $this->subid; 63 | } 64 | 65 | public function getForum(){ 66 | return $this->forum; 67 | } 68 | 69 | public function getUser(){ 70 | return $this->user; 71 | } 72 | 73 | } 74 | -------------------------------------------------------------------------------- /App/Entity/Project.php: -------------------------------------------------------------------------------- 1 | id = $Id; 18 | } 19 | 20 | public function setTitle($Title){ 21 | $this->title = $Title; 22 | } 23 | 24 | public function setDescription($Description){ 25 | $this->description = $Description; 26 | } 27 | 28 | public function setDeadline($Deadline){ 29 | $this->deadline = $Deadline; 30 | } 31 | 32 | public function setCreated($Created){ 33 | $this->created = $Created; 34 | } 35 | 36 | public function setStatus($Status){ 37 | $this->status = $Status; 38 | } 39 | 40 | public function setUserID($UserID){ 41 | $this->userID = $UserID; 42 | } 43 | 44 | 45 | //Getter 46 | public function getId(){ 47 | return $this->id; 48 | } 49 | 50 | public function getTitle(){ 51 | return $this->title; 52 | } 53 | 54 | public function getDescription(){ 55 | return $this->description; 56 | } 57 | 58 | public function getDeadline(){ 59 | return $this->deadline; 60 | } 61 | 62 | public function getCreated(){ 63 | return $this->created; 64 | } 65 | 66 | public function getStatus(){ 67 | return $this->status; 68 | } 69 | 70 | public function getUserID(){ 71 | return $this->userID; 72 | } 73 | 74 | 75 | } 76 | -------------------------------------------------------------------------------- /App/Entity/Upload.php: -------------------------------------------------------------------------------- 1 | user = new User(); 17 | $this->task = new Task(); 18 | } 19 | 20 | //Setters 21 | public function setId($Id){ 22 | $this->id = $Id; 23 | } 24 | 25 | public function setTitle($title){ 26 | $this->title = $title; 27 | } 28 | 29 | public function setFile($file){ 30 | $this->file = $file; 31 | } 32 | 33 | public function setType($type){ 34 | $this->type = $type; 35 | } 36 | 37 | public function setTask($task){ 38 | $this->task = $task; 39 | } 40 | 41 | public function setUser($user){ 42 | $this->user = $user; 43 | } 44 | 45 | public function getId(){ 46 | return $this->id; 47 | } 48 | 49 | public function getTitle(){ 50 | return $this->title; 51 | } 52 | 53 | public function getFile(){ 54 | return $this->file; 55 | } 56 | 57 | public function getType(){ 58 | return $this->type; 59 | } 60 | 61 | public function getTask(){ 62 | return $this->task; 63 | } 64 | 65 | public function getUser(){ 66 | return $this->user; 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /App/Entity/UserProject.php: -------------------------------------------------------------------------------- 1 | user = new User(); 14 | $this->project = new Project(); 15 | } 16 | 17 | public function setUser($user){ 18 | $this->user = $user; 19 | } 20 | 21 | public function getUser(){ 22 | return $this->user; 23 | } 24 | 25 | public function setProject($project){ 26 | $this->project = $project; 27 | } 28 | 29 | public function getProject(){ 30 | return $this->project; 31 | } 32 | 33 | public function setPosition($position){ 34 | $this->position = $position; 35 | } 36 | 37 | public function getPosition(){ 38 | return $this->position; 39 | } 40 | 41 | public function setStatus($status){ 42 | $this->status = $status; 43 | } 44 | 45 | public function getStatus(){ 46 | return $this->status; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /App/Function/functions.php: -------------------------------------------------------------------------------- 1 | diff($date2)->format('%a'); 23 | $completeTime = $date1->diff($currentDate)->format('%a'); 24 | 25 | $t = round(($totalTime - $completeTime) / $totalTime, 2) * 100; 26 | return (100 - $t < 100 ? 100 - $t : 100); 27 | } 28 | 29 | //Show debug element 30 | function debug($element){ 31 | echo "
";
32 |   print_r($element);
33 |   echo "
"; 34 | } 35 | 36 | function redirect($url){ 37 | echo ""; 38 | } 39 | 40 | ?> 41 | -------------------------------------------------------------------------------- /App/View/forum/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/App/View/forum/edit.php -------------------------------------------------------------------------------- /App/View/forum/result.php: -------------------------------------------------------------------------------- 1 |
2 |

3 | Meus projetos 4 |
5 | -------------------------------------------------------------------------------- /App/View/help/main.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | Help 4 |
5 |
6 |
7 | Sitemap 8 |
9 |
10 |
11 | -------------------------------------------------------------------------------- /App/View/layout/404.php: -------------------------------------------------------------------------------- 1 |
2 |

Page not found.

3 | Back to home 4 |
5 | -------------------------------------------------------------------------------- /App/View/layout/denied.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Acesso negado

4 |

Você não possui permissão para acessar esse módulo.

5 | Home 6 |
7 |
8 | -------------------------------------------------------------------------------- /App/View/layout/partials/menu-desktop.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
5 | Minhas tarefas 6 |
7 |
8 | 13 |
14 |
15 | 16 | 17 | 20 |
21 |
22 | Administrator 23 |
24 |
25 | 29 |
30 |
31 | 32 | 33 | 34 | 35 |
36 |
37 | Configurações 38 |
39 |
40 | 44 |
45 |
46 |
47 | -------------------------------------------------------------------------------- /App/View/login/auth.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | Open Task Logo 5 | Login - Open Task 6 |
7 |
8 |

9 | Voltar 10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /App/View/message/nolink.php: -------------------------------------------------------------------------------- 1 |
2 |

3 |

4 |
5 | -------------------------------------------------------------------------------- /App/View/note/list.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | Lista de notas 4 |
5 |
6 |
7 |
8 | 13 |
14 |
15 | 16 |
17 | 20 |
21 |
22 |
title, 0, 20);?>
23 |
24 | 25 | title;?> 26 |
27 |
28 |
29 | 32 |
33 | 34 | 35 |
36 |
37 | -------------------------------------------------------------------------------- /App/View/note/result.php: -------------------------------------------------------------------------------- 1 |
2 |

3 | Voltar 4 |
5 | -------------------------------------------------------------------------------- /App/View/note/show.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | title;?> 4 |
5 |
6 |
7 |
8 | 14 |
15 |
16 | userid == $_SESSION['i']){ 18 | ?> 19 | Editar 20 | 23 |
24 |
25 | 26 |

Criado em: created);?> 27 | Por: username;?>

28 | 29 |
30 | content);?> 31 |
32 | 33 |
34 |
35 | -------------------------------------------------------------------------------- /App/View/project/result.php: -------------------------------------------------------------------------------- 1 |
2 |

3 | Cadastro 4 | Projeto 5 |
6 | -------------------------------------------------------------------------------- /App/View/task/result.php: -------------------------------------------------------------------------------- 1 |
2 |

3 | Meus projetos 4 |
5 | -------------------------------------------------------------------------------- /App/View/upload/result.php: -------------------------------------------------------------------------------- 1 |
2 |

3 | Home 4 | Voltar 5 |
6 | -------------------------------------------------------------------------------- /App/View/user/passwordchange.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | Alterar senha 4 |
5 |
6 |
7 |
8 |
9 | 10 | 11 |
12 |

- Informe sua nova senha

13 |
14 | 15 |
16 | 17 |
18 |
19 |

- Insira uma senha com no minimo sete caracteres.

20 |

- Sua senha é intransferível.

21 |
22 |
23 |
24 |
25 |
26 |
27 | 28 | -------------------------------------------------------------------------------- /App/View/user/passwordreset.php: -------------------------------------------------------------------------------- 1 |
2 |

3 | Voltar 4 |
5 | 6 | 9 | -------------------------------------------------------------------------------- /App/View/user/passwordupdate.php: -------------------------------------------------------------------------------- 1 |
2 |

3 | Voltar 4 |
5 | -------------------------------------------------------------------------------- /App/View/user/store.php: -------------------------------------------------------------------------------- 1 |
2 |

3 | Cadastro 4 | Usuário 5 |
6 | -------------------------------------------------------------------------------- /App/View/user/update.php: -------------------------------------------------------------------------------- 1 |
2 |

3 | Cadastro 4 | Usuário 5 |
6 | -------------------------------------------------------------------------------- /App/View/userproject/result.php: -------------------------------------------------------------------------------- 1 |
2 |

3 | Voltar 4 |
5 | -------------------------------------------------------------------------------- /Docs/Database/Dados tabela.txt: -------------------------------------------------------------------------------- 1 | User 2 | us_permission: 1 = admin | 2 = comum 3 | us_status: : 1 = ativo | 2 = bloqueado 4 | 5 | Project 6 | pr_status: 1 = Ativo | 2= Cancelado | 3 = Finalizado -------------------------------------------------------------------------------- /Docs/Database/Default User.txt: -------------------------------------------------------------------------------- 1 | INSERT INTO `user` (`id`, `us_name`, `us_email`, `us_login`, `us_password`, `us_permission`, `us_status`, `us_register`, `us_last_login`) VALUES 2 | (4, 'Admin sys', 'admin@admin.com', 'admin.sys', '$2y$10$M.w36VNczE3Zbv29CE21TOmRKRCgCUtNnk86rVmdZTOM8eTdJcLM6', 1, 1, '2020-02-12 21:57:27', '0000-00-00 00:00:00'); 3 | 4 | 5 | 6 | user: admin.sys 7 | pass: admin123 -------------------------------------------------------------------------------- /Docs/Database/Modelo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Docs/Database/Modelo.png -------------------------------------------------------------------------------- /Docs/Database/Tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Docs/Database/Tasks.png -------------------------------------------------------------------------------- /Docs/Image/siteMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Docs/Image/siteMap.png -------------------------------------------------------------------------------- /Docs/modal.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | Título aqui 5 |
6 | 7 |
8 |

content

9 |
10 | 11 | 15 |
16 |
17 | 18 | 19 | 20 | 21 | //Show modal 22 | showModal(ID_MODAL); 23 | 24 | 25 | 26 | //Close modal 27 | closeModal(ID_MODAL); 28 | 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 SatellaSoft 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Public/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | RewriteCond %{REQUEST_FILENAME} !-f 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteRule ^(.*)$ index.php [NC,L] 5 | 6 | Options -Indexes 7 | -------------------------------------------------------------------------------- /Public/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/img/favicon.ico -------------------------------------------------------------------------------- /Public/img/help/sitemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/img/help/sitemap.png -------------------------------------------------------------------------------- /Public/img/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/img/logo-white.png -------------------------------------------------------------------------------- /Public/img/logo_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/img/logo_color.png -------------------------------------------------------------------------------- /Public/img/logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/img/logo_dark.png -------------------------------------------------------------------------------- /Public/img/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/img/project.png -------------------------------------------------------------------------------- /Public/img/push-pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/img/push-pin.png -------------------------------------------------------------------------------- /Public/index.php: -------------------------------------------------------------------------------- 1 | Run(); 17 | -------------------------------------------------------------------------------- /Public/js/category.js: -------------------------------------------------------------------------------- 1 | function validateCategory(update = false){ 2 | var msg = ""; 3 | 4 | if(update && valueById("txtId") <= 0) 5 | msg += "

- ID não encontrado

"; 6 | 7 | if(valueById("txtTitle").length < 3 || valueById("txtTitle").length > 150) 8 | msg += "

- Título inválido

"; 9 | 10 | if(valueById("txtProjectId") <= 0) 11 | msg += "

- Projeto não identificado

"; 12 | 13 | setHTMLById("dvAlert", msg); 14 | 15 | return msg == ""; 16 | } 17 | -------------------------------------------------------------------------------- /Public/js/forum.js: -------------------------------------------------------------------------------- 1 | function validateProject(){ 2 | var msg = ""; 3 | 4 | if(valueById("txtTaskId") <= 0) 5 | msg += "

- Tarefa não encontrado

"; 6 | 7 | if(valueById("txtTitle").length < 3 || valueById("txtTitle").length > 150) 8 | msg += "

- Título inválido

"; 9 | 10 | if(CKEDITOR.instances['txtDescription'].getData().length < 10) 11 | msg += "

- Descrição inválida

"; 12 | 13 | setHTMLById("dvAlert", msg); 14 | 15 | return msg == ""; 16 | } 17 | 18 | function validateForumComment(){ 19 | var msg = ""; 20 | 21 | if(valueById("txtForumId") <= 0) 22 | msg += "

- Fórum não encontrado

"; 23 | 24 | if(CKEDITOR.instances['txtContent'].getData().length < 10) 25 | msg += "

- Conteúdo inválido

"; 26 | 27 | setHTMLById("dvAlert", msg); 28 | 29 | return msg == ""; 30 | } 31 | 32 | function RunHeighLight(){ 33 | document.addEventListener("DOMContentLoaded", function(){ 34 | $('pre code').each(function (i, block) { 35 | hljs.highlightBlock(block); 36 | }); 37 | }, false); 38 | } 39 | -------------------------------------------------------------------------------- /Public/js/global.js: -------------------------------------------------------------------------------- 1 | //Return value 2 | function valueById(id){ 3 | return document.getElementById(id).value; 4 | } 5 | 6 | //Set HTML 7 | function setHTMLById(id, html){ 8 | document.getElementById(id).innerHTML = html; 9 | } 10 | 11 | function redirect(url){ 12 | document.location.href = url; 13 | } 14 | 15 | function getCurrentDate(){ 16 | var today = new Date(); 17 | var dd = String(today.getDate()).padStart(2, '0'); 18 | var mm = String(today.getMonth() + 1).padStart(2, '0'); //January is 0! 19 | var yyyy = today.getFullYear(); 20 | 21 | return yyyy + "-" + mm + "-" + dd; 22 | } 23 | 24 | function updateAttribute(el, attr, value){ 25 | if(el.hasAttribute(attr)) 26 | el.removeAttribute(attr); 27 | el.setAttribute(attr, value); 28 | } 29 | 30 | /*MODAL*/ 31 | 32 | function showModal(id){ 33 | var el = document.getElementById(id); 34 | if(el == null) 35 | return; 36 | el.style.display = "block"; 37 | } 38 | 39 | function closeModal(id){ 40 | var el = document.getElementById(id); 41 | if(el == null) 42 | return; 43 | el.style.display = "none"; 44 | } 45 | 46 | /*END MODAL*/ 47 | -------------------------------------------------------------------------------- /Public/js/note.js: -------------------------------------------------------------------------------- 1 | function validateNote(update = false){ 2 | var msg = ""; 3 | 4 | if(update && valueById("txtId") <= 0) 5 | msg += "

- ID não encontrado

"; 6 | 7 | if(valueById("txtTitle").length < 3 || valueById("txtTitle").length > 150) 8 | msg += "

- Título inválido

"; 9 | 10 | if(CKEDITOR.instances['txtDescription'].getData().length < 10) 11 | msg += "

- Descrição inválida

"; 12 | 13 | if(valueById("slStatus") < 1 || valueById("slStatus") > 2) 14 | msg += "

- Status inválido

"; 15 | 16 | if(valueById("slColor") == "") 17 | msg += "

- Cor inválida

"; 18 | 19 | setHTMLById("dvAlert", msg); 20 | 21 | return msg == ""; 22 | } 23 | -------------------------------------------------------------------------------- /Public/js/project.js: -------------------------------------------------------------------------------- 1 | function validateProject(update = false){ 2 | var msg = ""; 3 | 4 | if(update && valueById("txtId") <= 0) 5 | msg += "

- ID não encontrado

"; 6 | 7 | if(valueById("txtTitle").length < 3 || valueById("txtTitle").length > 150) 8 | msg += "

- Título inválido

"; 9 | 10 | if(CKEDITOR.instances['txtDescription'].getData().length < 10) 11 | msg += "

- Descrição inválida

"; 12 | 13 | if(valueById("slStatus") < 1 || valueById("slStatus") > 3) 14 | msg += "

- Status inválido

"; 15 | 16 | setHTMLById("dvAlert", msg); 17 | 18 | return msg == ""; 19 | } 20 | -------------------------------------------------------------------------------- /Public/js/task.js: -------------------------------------------------------------------------------- 1 | document.addEventListener("DOMContentLoaded", function(){ 2 | $("#dvTaskContent").hide(); 3 | 4 | $("#btnShowTaskContent").click(function(){ 5 | $("#dvTaskContent").toggle(); 6 | }); 7 | }, false); 8 | 9 | function validateTask(update = false){ 10 | var msg = ""; 11 | 12 | if(update && valueById("txtId") <= 0) 13 | msg += "

- ID não encontrado

"; 14 | 15 | if(valueById("txtTitle").length < 3 || valueById("txtTitle").length > 150) 16 | msg += "

- Título inválido

"; 17 | 18 | if(valueById("txtDeadline") == "") 19 | msg += "

- Deadline inválido

"; 20 | 21 | if(CKEDITOR.instances['txtDescription'].getData().length < 10) 22 | msg += "

- Descrição inválida

"; 23 | 24 | if(valueById("slStatus") < 1 || valueById("slStatus") > 3) 25 | msg += "

- Status inválido

"; 26 | 27 | if(valueById("slCategory") < 1 || valueById("slStatus") == "") 28 | msg += "

- Selecione uma categoria

"; 29 | 30 | setHTMLById("dvAlert", msg); 31 | 32 | return msg == ""; 33 | } 34 | -------------------------------------------------------------------------------- /Public/js/upload.js: -------------------------------------------------------------------------------- 1 | document.getElementById("slType").addEventListener("change", function(){ 2 | var type = document.getElementById("slType"); 3 | var file = document.getElementById("flFile"); 4 | 5 | if(type.value == "i") 6 | updateAttribute(file, "accept", "image/*"); 7 | else 8 | updateAttribute(file, "accept", ".zip"); 9 | }); 10 | 11 | 12 | function validateUpload(){ 13 | var msg = ""; 14 | 15 | if(valueById("txtTaskId") <= 0) 16 | msg += "

- ID da tarefa não encontrado

"; 17 | 18 | if(valueById("txtUploadTitle").length < 3 || valueById("txtUploadTitle").length > 100) 19 | msg += "

- Título inválido

"; 20 | 21 | if(document.getElementById("flFile").files.length == 0 ) 22 | msg += "

- Selecione um arquivo inválido

"; 23 | 24 | setHTMLById("dvAlert", msg); 25 | 26 | return msg == ""; 27 | } 28 | -------------------------------------------------------------------------------- /Public/js/user.js: -------------------------------------------------------------------------------- 1 | function validate(update = false){ 2 | var msg = ""; 3 | 4 | if(update && valueById("txtId") <= 0) 5 | msg += "

- ID não encontrado

"; 6 | 7 | if(valueById("txtName").length < 7) 8 | msg += "

- Nome inválido

"; 9 | 10 | if(valueById("txtEmail").indexOf("@") <=0 || valueById("txtEmail").indexOf(".") <=0) 11 | msg += "

- E-mail inválido

"; 12 | 13 | if(valueById("txtLogin").length < 7 || valueById("txtLogin").indexOf(".") <=0) 14 | msg += "

- Login inválido. Ex. gunnar.correa

"; 15 | 16 | if(!update && valueById("txtPassword").length < 7) 17 | msg += "

- Senha inválida

"; 18 | 19 | if(valueById("slStatus") < 1 || valueById("slStatus") > 2) 20 | msg += "

- Status inválido

"; 21 | 22 | if(valueById("slPermission") < 1 || valueById("slPermission") > 2) 23 | msg += "

- Permissão inválida

"; 24 | 25 | setHTMLById("dvAlert", msg); 26 | 27 | return msg == ""; 28 | } 29 | 30 | function validatePassword(){ 31 | var msg = ""; 32 | if(valueById("txtPassword").length < 7) 33 | msg += "

- Senha inválida

"; 34 | 35 | setHTMLById("dvAlert", msg); 36 | 37 | return msg == ""; 38 | } 39 | -------------------------------------------------------------------------------- /Public/resources/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | -------------------------------------------------------------------------------- /Public/resources/files/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | -------------------------------------------------------------------------------- /Public/resources/images/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) { 7 | // Define changes to default configuration here. For example: 8 | // config.language = 'fr'; 9 | // config.uiColor = '#AADC6E'; 10 | }; 11 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 3 | 4 | cs.js Found: 30 Missing: 0 5 | cy.js Found: 30 Missing: 0 6 | da.js Found: 12 Missing: 18 7 | de.js Found: 30 Missing: 0 8 | el.js Found: 25 Missing: 5 9 | eo.js Found: 30 Missing: 0 10 | fa.js Found: 30 Missing: 0 11 | fi.js Found: 30 Missing: 0 12 | fr.js Found: 30 Missing: 0 13 | gu.js Found: 12 Missing: 18 14 | he.js Found: 30 Missing: 0 15 | it.js Found: 30 Missing: 0 16 | mk.js Found: 5 Missing: 25 17 | nb.js Found: 30 Missing: 0 18 | nl.js Found: 30 Missing: 0 19 | no.js Found: 30 Missing: 0 20 | pt-br.js Found: 30 Missing: 0 21 | ro.js Found: 6 Missing: 24 22 | tr.js Found: 30 Missing: 0 23 | ug.js Found: 27 Missing: 3 24 | vi.js Found: 6 Missing: 24 25 | zh-cn.js Found: 30 Missing: 0 26 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/codesnippet/dialogs/codesnippet.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | (function(){CKEDITOR.dialog.add("codeSnippet",function(c){var b=c._.codesnippet.langs,d=c.lang.codesnippet,g=document.documentElement.clientHeight,e=[],f;e.push([c.lang.common.notSet,""]);for(f in b)e.push([b[f],f]);b=CKEDITOR.document.getWindow().getViewPaneSize();c=Math.min(b.width-70,800);b=b.height/1.5;650>g&&(b=g-220);return{title:d.title,minHeight:200,resizable:CKEDITOR.DIALOG_RESIZE_NONE,contents:[{id:"info",elements:[{id:"lang",type:"select",label:d.language,items:e,setup:function(a){a.ready&& 6 | a.data.lang&&this.setValue(a.data.lang);!CKEDITOR.env.gecko||a.data.lang&&a.ready||(this.getInputElement().$.selectedIndex=-1)},commit:function(a){a.setData("lang",this.getValue())}},{id:"code",type:"textarea",label:d.codeContents,setup:function(a){this.setValue(a.data.code)},commit:function(a){a.setData("code",this.getValue())},required:!0,validate:CKEDITOR.dialog.validate.notEmpty(d.emptySnippetError),inputStyle:"cursor:auto;width:"+c+"px;height:"+b+"px;tab-size:4;text-align:left;","class":"cke_source"}]}]}})})(); -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/codesnippet/lib/highlight/styles/ascetic.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Original style from softwaremaniacs.org (c) Ivan Sagalaev 4 | 5 | */ 6 | 7 | .hljs { 8 | display: block; padding: 0.5em; 9 | background: white; color: black; 10 | } 11 | 12 | .hljs-string, 13 | .hljs-tag .hljs-value, 14 | .hljs-filter .hljs-argument, 15 | .hljs-addition, 16 | .hljs-change, 17 | .apache .hljs-tag, 18 | .apache .hljs-cbracket, 19 | .nginx .hljs-built_in, 20 | .tex .hljs-formula { 21 | color: #888; 22 | } 23 | 24 | .hljs-comment, 25 | .hljs-template_comment, 26 | .hljs-shebang, 27 | .hljs-doctype, 28 | .hljs-pi, 29 | .hljs-javadoc, 30 | .hljs-deletion, 31 | .apache .hljs-sqbracket { 32 | color: #CCC; 33 | } 34 | 35 | .hljs-keyword, 36 | .hljs-tag .hljs-title, 37 | .ini .hljs-title, 38 | .lisp .hljs-title, 39 | .clojure .hljs-title, 40 | .http .hljs-title, 41 | .nginx .hljs-title, 42 | .css .hljs-tag, 43 | .hljs-winutils, 44 | .hljs-flow, 45 | .apache .hljs-tag, 46 | .tex .hljs-command, 47 | .hljs-request, 48 | .hljs-status { 49 | font-weight: bold; 50 | } 51 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_papersq.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/codesnippet/lib/highlight/styles/mono-blue.css: -------------------------------------------------------------------------------- 1 | /* 2 | Five-color theme from a single blue hue. 3 | */ 4 | .hljs { 5 | display: block; padding: 0.5em; 6 | background: #EAEEF3; color: #00193A; 7 | } 8 | 9 | .hljs-keyword, 10 | .hljs-title, 11 | .hljs-important, 12 | .hljs-request, 13 | .hljs-header, 14 | .hljs-javadoctag { 15 | font-weight: bold; 16 | } 17 | 18 | .hljs-comment, 19 | .hljs-chunk, 20 | .hljs-template_comment { 21 | color: #738191; 22 | } 23 | 24 | .hljs-string, 25 | .hljs-title, 26 | .hljs-parent, 27 | .hljs-built_in, 28 | .hljs-literal, 29 | .hljs-filename, 30 | .hljs-value, 31 | .hljs-addition, 32 | .hljs-tag, 33 | .hljs-argument, 34 | .hljs-link_label, 35 | .hljs-blockquote, 36 | .hljs-header { 37 | color: #0048AB; 38 | } 39 | 40 | .hljs-decorator, 41 | .hljs-prompt, 42 | .hljs-yardoctag, 43 | .hljs-subst, 44 | .hljs-symbol, 45 | .hljs-doctype, 46 | .hljs-regexp, 47 | .hljs-preprocessor, 48 | .hljs-pragma, 49 | .hljs-pi, 50 | .hljs-attribute, 51 | .hljs-attr_selector, 52 | .hljs-javadoc, 53 | .hljs-xmlDocTag, 54 | .hljs-deletion, 55 | .hljs-shebang, 56 | .hljs-string .hljs-variable, 57 | .hljs-link_url, 58 | .hljs-bullet, 59 | .hljs-sqbracket, 60 | .hljs-phony { 61 | color: #4C81C9; 62 | } 63 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.jpg -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/colordialog/dialogs/colordialog.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | .cke_colordialog_colorcell { 7 | width: 12px; /* All cells have equal width which depends on parent width (in this case table parent). Width works more like max-width. */ 8 | height: 14px; 9 | padding: 1px; /* Padding is replaced by border for focused cells. Prevents 'jumping' when adding borders. */ 10 | } 11 | 12 | .cke_colordialog_colorcell.cke_colordialog_focused_light, 13 | .cke_colordialog_colorcell.cke_colordialog_focused_dark { 14 | padding: 0; /* Shrink cell to allow 1px border indicating focus. */ 15 | border: 1px dotted #000; 16 | } 17 | 18 | .cke_colordialog_colorcell.cke_colordialog_focused_dark { 19 | border-color: #FFF; 20 | } 21 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/dialog/styles/dialog.css: -------------------------------------------------------------------------------- 1 | .cke_dialog_open { 2 | overflow: hidden; 3 | } 4 | 5 | .cke_dialog_container { 6 | position: fixed; 7 | overflow-y: auto; 8 | overflow-x: auto; 9 | width: 100%; 10 | height: 100%; 11 | top: 0; 12 | left: 0; 13 | z-index: 10010; 14 | } 15 | 16 | .cke_dialog_body { 17 | position: relative; 18 | } 19 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/scayt/dialogs/dialog.css: -------------------------------------------------------------------------------- 1 | div.cke_dialog_ui_scaytItemList { 2 | border: 1px solid #c9cccf; 3 | } 4 | 5 | .cke_scaytItemList-child { 6 | position: relative; 7 | padding: 6px 30px 6px 5px; 8 | overflow: hidden; 9 | text-overflow: ellipsis; 10 | white-space: nowrap; 11 | } 12 | 13 | .cke_scaytItemList-child:hover { 14 | background: #ebebeb; 15 | } 16 | 17 | .cke_scaytItemList-child .cke_scaytItemList_remove { 18 | position: absolute; 19 | top: 0; 20 | right: 5px; 21 | width: 26px; 22 | height: 26px; 23 | } 24 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/scayt/skins/moono-lisa/scayt.css: -------------------------------------------------------------------------------- 1 | .scayt-lang-list > div 2 | { 3 | padding-bottom: 6px !important; 4 | } 5 | 6 | .scayt-lang-list > div input 7 | { 8 | margin-right: 4px; 9 | } 10 | 11 | #scayt_about_ 12 | { 13 | margin: 30px auto 0 auto; 14 | } 15 | 16 | #scayt_about_ p 17 | { 18 | text-align: center; 19 | margin-bottom: 10px; 20 | } 21 | 22 | .cke_dialog_contents_body div[name=dictionaries] .cke_dialog_ui_hbox_last > a.cke_dialog_ui_button 23 | { 24 | margin-top: 0; 25 | } 26 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/angel_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/angel_smile.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/angry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/angry_smile.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/broken_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/broken_heart.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/confused_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/confused_smile.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/cry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/cry_smile.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/devil_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/devil_smile.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/embarrassed_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/embarrassed_smile.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/heart.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/lightbulb.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/omg_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/omg_smile.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/regular_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/regular_smile.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/sad_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/sad_smile.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/shades_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/shades_smile.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/teeth_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/teeth_smile.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/thumbs_down.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/thumbs_up.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/tongue_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/tongue_smile.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/smiley/images/wink_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/smiley/images/wink_smile.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 3 | 4 | cs.js Found: 118 Missing: 0 5 | cy.js Found: 118 Missing: 0 6 | de.js Found: 118 Missing: 0 7 | el.js Found: 16 Missing: 102 8 | eo.js Found: 118 Missing: 0 9 | et.js Found: 31 Missing: 87 10 | fa.js Found: 24 Missing: 94 11 | fi.js Found: 23 Missing: 95 12 | fr.js Found: 118 Missing: 0 13 | hr.js Found: 23 Missing: 95 14 | it.js Found: 118 Missing: 0 15 | nb.js Found: 118 Missing: 0 16 | nl.js Found: 118 Missing: 0 17 | no.js Found: 118 Missing: 0 18 | tr.js Found: 118 Missing: 0 19 | ug.js Found: 39 Missing: 79 20 | zh-cn.js Found: 118 Missing: 0 21 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/tableselection/styles/tableselection.css: -------------------------------------------------------------------------------- 1 | .cke_table-faked-selection-editor *::selection, table[data-cke-table-faked-selection-table] *::selection { 2 | background: transparent; 3 | } 4 | 5 | .cke_table-faked-selection { 6 | background: darkgray !important; 7 | color: black; 8 | } 9 | .cke_table-faked-selection a { 10 | color: black; 11 | } 12 | .cke_editable:focus .cke_table-faked-selection { 13 | /* We have to use !important here, as td might specify it's own background, thus table selection 14 | would not be visible. */ 15 | background: #0076cb !important; 16 | color: white; 17 | } 18 | .cke_editable:focus .cke_table-faked-selection a { 19 | color: white; 20 | } 21 | .cke_table-faked-selection::-moz-selection, .cke_table-faked-selection ::-moz-selection { 22 | background: transparent; 23 | } 24 | .cke_table-faked-selection::selection, .cke_table-faked-selection ::selection { 25 | background: transparent; 26 | } 27 | 28 | /* Change the cursor when selecting cells (#706). 29 | * 30 | * This solution does not work in IE, Edge and Safari due to upstream isues: 31 | * https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/3419602/ 32 | * https://bugs.webkit.org/show_bug.cgi?id=53341 33 | */ 34 | table[data-cke-table-faked-selection-table] { 35 | cursor: cell; 36 | } 37 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/videodetector/videodetector.css: -------------------------------------------------------------------------------- 1 | .videodetector { 2 | position : relative; 3 | width : 100%; 4 | height : 0; 5 | padding-bottom: 60%; 6 | } 7 | 8 | .videodetector iframe { 9 | position: absolute; 10 | top : 0; 11 | left : 0; 12 | width : 100%; 13 | height : 100%; 14 | } 15 | 16 | .remove-videodetector{ 17 | position: absolute; 18 | top: 15px; 19 | left: 15px; 20 | z-index: 999; 21 | cursor: pointer!important; 22 | display: none; 23 | outline: none; 24 | padding: 10px 20px; 25 | appearance: none; 26 | -webkit-appearance: none; 27 | box-shadow: 0px 2px 6px rgba(0,0,0,0.2); 28 | border-radius: 3px; 29 | border: none; 30 | background-color: #e74c3c; 31 | color: #fff; 32 | font-weight: bold; 33 | font-size: 12px; 34 | text-transform: uppercase; 35 | -webkit-transition: 0.2s; 36 | -moz-transition: 0.2s; 37 | -ms-transition: 0.2s; 38 | -o-transition: 0.2s; 39 | transition: 0.2s; 40 | } 41 | 42 | .remove-videodetector:hover{ 43 | background-color: #c0392b; 44 | } 45 | 46 | .videodetector:hover .remove-videodetector{ 47 | display: block; 48 | } 49 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/wsc/skins/moono-lisa/wsc.css: -------------------------------------------------------------------------------- 1 | .cke_dialog_body #overlayBlock, 2 | .cke_dialog_body #no_check_over 3 | { 4 | top: 39px !important; 5 | } 6 | 7 | div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_vbox td > .cke_dialog_ui_button:first-child 8 | { 9 | margin-top: 4px; 10 | } 11 | 12 | div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select > label 13 | { 14 | margin-left: 0; 15 | } 16 | 17 | div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select div.cke_dialog_ui_input_select 18 | { 19 | width: 140px !important; 20 | } 21 | 22 | div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select select.cke_dialog_ui_input_select, 23 | div[name=Thesaurus] div.cke_dialog_ui_input_select select.cke_dialog_ui_input_select 24 | { 25 | margin-top: 1px; 26 | } 27 | 28 | div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select select.cke_dialog_ui_input_select:focus, 29 | div[name=Thesaurus] div.cke_dialog_ui_input_select select.cke_dialog_ui_input_select:focus 30 | { 31 | margin-top: 0; 32 | } 33 | 34 | div[name=GrammTab] .cke_dialog_ui_vbox tbody > tr:first-child .cke_dialog_ui_button, 35 | div[name=Thesaurus] .cke_dialog_ui_vbox tbody > tr:first-child .cke_dialog_ui_button 36 | { 37 | margin-top: 4px !important; 38 | } 39 | 40 | div[name=Thesaurus] div.cke_dialog_ui_input_select 41 | { 42 | width: 180px !important; 43 | } 44 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/youtube/images/icon-hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/youtube/images/icon-hdpi.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/plugins/youtube/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/plugins/youtube/images/icon.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /Public/vendor/ckeditor/samples/old/assets/uilanguages/languages.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | var CKEDITOR_LANGS=function(){var c={af:"Afrikaans",ar:"Arabic",az:"Azerbaijani",bg:"Bulgarian",bn:"Bengali/Bangla",bs:"Bosnian",ca:"Catalan",cs:"Czech",cy:"Welsh",da:"Danish",de:"German","de-ch":"German (Switzerland)",el:"Greek",en:"English","en-au":"English (Australia)","en-ca":"English (Canadian)","en-gb":"English (United Kingdom)",eo:"Esperanto",es:"Spanish","es-mx":"Spanish (Mexico)",et:"Estonian",eu:"Basque",fa:"Persian",fi:"Finnish",fo:"Faroese",fr:"French","fr-ca":"French (Canada)",gl:"Galician", 6 | gu:"Gujarati",he:"Hebrew",hi:"Hindi",hr:"Croatian",hu:"Hungarian",id:"Indonesian",is:"Icelandic",it:"Italian",ja:"Japanese",ka:"Georgian",km:"Khmer",ko:"Korean",ku:"Kurdish",lt:"Lithuanian",lv:"Latvian",mk:"Macedonian",mn:"Mongolian",ms:"Malay",nb:"Norwegian Bokmal",nl:"Dutch",no:"Norwegian",oc:"Occitan",pl:"Polish",pt:"Portuguese (Portugal)","pt-br":"Portuguese (Brazil)",ro:"Romanian",ru:"Russian",si:"Sinhala",sk:"Slovak",sq:"Albanian",sl:"Slovenian",sr:"Serbian (Cyrillic)","sr-latn":"Serbian (Latin)", 7 | sv:"Swedish",th:"Thai",tr:"Turkish",tt:"Tatar",ug:"Uighur",uk:"Ukrainian",vi:"Vietnamese",zh:"Chinese Traditional","zh-cn":"Chinese Simplified"},b=[],a;for(a in CKEDITOR.lang.languages)b.push({code:a,name:c[a]||a});b.sort(function(a,b){return a.name
 2 | 
 3 | -------------------------------------------------------------------------------------------
 4 |   CKEditor - Posted Data
 5 | 
 6 |   We are sorry, but your Web server does not support the PHP language used in this script.
 7 | 
 8 |   Please note that CKEditor can be used with any other server-side language than just PHP.
 9 |   To save the content created with CKEditor you need to read the POST data on the server
10 |   side and write it to a file or the database.
11 | 
12 |   Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
13 |   For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
14 | -------------------------------------------------------------------------------------------
15 | 
16 | 
*/ include "assets/posteddata.php"; ?> 17 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2012 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/samples/toolbarconfigurator/font/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "", 3 | "css_prefix_text": "icon-", 4 | "css_use_suffix": false, 5 | "hinting": true, 6 | "units_per_em": 1000, 7 | "ascent": 850, 8 | "glyphs": [ 9 | { 10 | "uid": "f48ae54adfb27d8ada53d0fd9e34ee10", 11 | "css": "trash-empty", 12 | "code": 59392, 13 | "src": "fontawesome" 14 | }, 15 | { 16 | "uid": "1c4068ed75209e21af36017df8871802", 17 | "css": "down-big", 18 | "code": 59393, 19 | "src": "fontawesome" 20 | }, 21 | { 22 | "uid": "95376bf082bfec6ce06ea1cda7bd7ead", 23 | "css": "up-big", 24 | "code": 59394, 25 | "src": "fontawesome" 26 | } 27 | ] 28 | } -------------------------------------------------------------------------------- /Public/vendor/ckeditor/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /Public/vendor/ckeditor/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /Public/vendor/ckeditor/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /Public/vendor/ckeditor/samples/toolbarconfigurator/lib/codemirror/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (C) 2014 by Marijn Haverbeke and others 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/samples/toolbarconfigurator/lib/codemirror/neo.css: -------------------------------------------------------------------------------- 1 | /* neo theme for codemirror */ 2 | 3 | /* Color scheme */ 4 | 5 | .cm-s-neo.CodeMirror { 6 | background-color:#ffffff; 7 | color:#2e383c; 8 | line-height:1.4375; 9 | } 10 | .cm-s-neo .cm-comment {color:#75787b} 11 | .cm-s-neo .cm-keyword, .cm-s-neo .cm-property {color:#1d75b3} 12 | .cm-s-neo .cm-atom,.cm-s-neo .cm-number {color:#75438a} 13 | .cm-s-neo .cm-node,.cm-s-neo .cm-tag {color:#9c3328} 14 | .cm-s-neo .cm-string {color:#b35e14} 15 | .cm-s-neo .cm-variable,.cm-s-neo .cm-qualifier {color:#047d65} 16 | 17 | 18 | /* Editor styling */ 19 | 20 | .cm-s-neo pre { 21 | padding:0; 22 | } 23 | 24 | .cm-s-neo .CodeMirror-gutters { 25 | border:none; 26 | border-right:10px solid transparent; 27 | background-color:transparent; 28 | } 29 | 30 | .cm-s-neo .CodeMirror-linenumber { 31 | padding:0; 32 | color:#e0e2e5; 33 | } 34 | 35 | .cm-s-neo .CodeMirror-guttermarker { color: #1d75b3; } 36 | .cm-s-neo .CodeMirror-guttermarker-subtle { color: #e0e2e5; } 37 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-hints { 2 | position: absolute; 3 | z-index: 10; 4 | overflow: hidden; 5 | list-style: none; 6 | 7 | margin: 0; 8 | padding: 2px; 9 | 10 | -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 11 | -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 12 | box-shadow: 2px 3px 5px rgba(0,0,0,.2); 13 | border-radius: 3px; 14 | border: 1px solid silver; 15 | 16 | background: white; 17 | font-size: 90%; 18 | font-family: monospace; 19 | 20 | max-height: 20em; 21 | overflow-y: auto; 22 | } 23 | 24 | .CodeMirror-hint { 25 | margin: 0; 26 | padding: 0 4px; 27 | border-radius: 2px; 28 | max-width: 19em; 29 | overflow: hidden; 30 | white-space: pre; 31 | color: black; 32 | cursor: pointer; 33 | } 34 | 35 | li.CodeMirror-hint-active { 36 | background: #08f; 37 | color: white; 38 | } 39 | -------------------------------------------------------------------------------- /Public/vendor/ckeditor/skins/kama/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/skins/kama/icons.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/skins/kama/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/skins/kama/icons_hidpi.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/skins/kama/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/skins/kama/images/dialog_sides.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/skins/kama/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/skins/kama/images/dialog_sides.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/skins/kama/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/skins/kama/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/skins/kama/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/skins/kama/images/mini.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/skins/kama/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/skins/kama/images/spinner.gif -------------------------------------------------------------------------------- /Public/vendor/ckeditor/skins/kama/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/skins/kama/images/sprites.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/skins/kama/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/skins/kama/images/sprites_ie6.png -------------------------------------------------------------------------------- /Public/vendor/ckeditor/skins/kama/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/OpenTask/17dab657fd29cbbeedb681180c292668ee5fc531/Public/vendor/ckeditor/skins/kama/images/toolbar_start.gif -------------------------------------------------------------------------------- /Public/vendor/full-calendar/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 Adam Shaw 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/README.md: -------------------------------------------------------------------------------- 1 | # FullCalendar [![Build Status](https://travis-ci.com/fullcalendar/fullcalendar.svg?branch=master)](https://travis-ci.com/fullcalendar/fullcalendar) 2 | 3 | A full-sized drag & drop JavaScript event calendar 4 | 5 | - [Project website and demos](http://fullcalendar.io/) 6 | - [Documentation](http://fullcalendar.io/docs) 7 | - [Support](http://fullcalendar.io/support) 8 | - [Contributing](CONTRIBUTING.md) 9 | - [Changelog](CHANGELOG.md) 10 | - [License](LICENSE.txt) 11 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/bootstrap/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 Adam Shaw 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/bootstrap/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Bootstrap Plugin 3 | 4 | Bootstrap 4 theming for your calendar 5 | 6 | [View the docs »](https://fullcalendar.io/docs/bootstrap-theme) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/bootstrap/main.css: -------------------------------------------------------------------------------- 1 | .fc.fc-bootstrap a { 2 | text-decoration: none; 3 | } 4 | 5 | .fc.fc-bootstrap a[data-goto]:hover { 6 | text-decoration: underline; 7 | } 8 | 9 | .fc-bootstrap hr.fc-divider { 10 | border-color: inherit; 11 | } 12 | 13 | .fc-bootstrap .fc-today.alert { 14 | border-radius: 0; 15 | } 16 | 17 | .fc-bootstrap a.fc-event:not([href]):not([tabindex]) { 18 | color: #fff; 19 | } 20 | 21 | .fc-bootstrap .fc-popover.card { 22 | position: absolute; 23 | } 24 | 25 | /* Popover 26 | --------------------------------------------------------------------------------------------------*/ 27 | .fc-bootstrap .fc-popover .card-body { 28 | padding: 0; 29 | } 30 | 31 | /* TimeGrid Slats (lines that run horizontally) 32 | --------------------------------------------------------------------------------------------------*/ 33 | .fc-bootstrap .fc-time-grid .fc-slats table { 34 | /* some themes have background color. see through to slats */ 35 | background: none; 36 | } 37 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/bootstrap/main.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by dts-bundle v0.7.3-fork.1 2 | // Dependencies for this module: 3 | // ../../../../../@fullcalendar/core 4 | 5 | declare module '@fullcalendar/bootstrap' { 6 | import { Theme } from '@fullcalendar/core'; 7 | export class BootstrapTheme extends Theme { 8 | } 9 | const _default: import("@fullcalendar/core").PluginDef; 10 | export default _default; 11 | } 12 | 13 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/bootstrap/main.min.css: -------------------------------------------------------------------------------- 1 | .fc.fc-bootstrap a{text-decoration:none}.fc.fc-bootstrap a[data-goto]:hover{text-decoration:underline}.fc-bootstrap hr.fc-divider{border-color:inherit}.fc-bootstrap .fc-today.alert{border-radius:0}.fc-bootstrap a.fc-event:not([href]):not([tabindex]){color:#fff}.fc-bootstrap .fc-popover.card{position:absolute}.fc-bootstrap .fc-popover .card-body{padding:0}.fc-bootstrap .fc-time-grid .fc-slats table{background:0 0} -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/bootstrap/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@fullcalendar/bootstrap", 3 | "version": "4.3.0", 4 | "title": "FullCalendar Bootstrap Plugin", 5 | "description": "Bootstrap 4 theming for your calendar", 6 | "keywords": [ 7 | "calendar", 8 | "event", 9 | "full-sized" 10 | ], 11 | "homepage": "https://fullcalendar.io/", 12 | "docs": "https://fullcalendar.io/docs/bootstrap-theme", 13 | "bugs": "https://fullcalendar.io/reporting-bugs", 14 | "repository": { 15 | "type": "git", 16 | "url": "https://github.com/fullcalendar/fullcalendar.git", 17 | "homepage": "https://github.com/fullcalendar/fullcalendar" 18 | }, 19 | "license": "MIT", 20 | "author": { 21 | "name": "Adam Shaw", 22 | "email": "arshaw@arshaw.com", 23 | "url": "http://arshaw.com/" 24 | }, 25 | "copyright": "2019 Adam Shaw", 26 | "peerDependencies": { 27 | "@fullcalendar/core": "~4.3.0" 28 | }, 29 | "main": "main.js", 30 | "module": "main.esm.js", 31 | "unpkg": "main.min.js", 32 | "types": "main.d.ts" 33 | } 34 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 Adam Shaw 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Core Package 3 | 4 | Provides core functionality, including the Calendar class 5 | 6 | [View the docs »](https://fullcalendar.io/docs/initialize-es6) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/af.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.af = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var af = { 8 | code: "af", 9 | week: { 10 | dow: 1, 11 | doy: 4 // Die week wat die 4de Januarie bevat is die eerste week van die jaar. 12 | }, 13 | buttonText: { 14 | prev: "Vorige", 15 | next: "Volgende", 16 | today: "Vandag", 17 | year: "Jaar", 18 | month: "Maand", 19 | week: "Week", 20 | day: "Dag", 21 | list: "Agenda" 22 | }, 23 | allDayHtml: "Heeldag", 24 | eventLimitText: "Addisionele", 25 | noEventsMessage: "Daar is geen gebeurtenisse nie" 26 | }; 27 | 28 | return af; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/ar-dz.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['ar-dz'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var arDz = { 8 | code: "ar-dz", 9 | week: { 10 | dow: 0, 11 | doy: 4 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | dir: 'rtl', 14 | buttonText: { 15 | prev: "السابق", 16 | next: "التالي", 17 | today: "اليوم", 18 | month: "شهر", 19 | week: "أسبوع", 20 | day: "يوم", 21 | list: "أجندة" 22 | }, 23 | weekLabel: "أسبوع", 24 | allDayText: "اليوم كله", 25 | eventLimitText: "أخرى", 26 | noEventsMessage: "أي أحداث لعرض" 27 | }; 28 | 29 | return arDz; 30 | 31 | })); 32 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/ar-kw.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['ar-kw'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var arKw = { 8 | code: "ar-kw", 9 | week: { 10 | dow: 0, 11 | doy: 12 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | dir: 'rtl', 14 | buttonText: { 15 | prev: "السابق", 16 | next: "التالي", 17 | today: "اليوم", 18 | month: "شهر", 19 | week: "أسبوع", 20 | day: "يوم", 21 | list: "أجندة" 22 | }, 23 | weekLabel: "أسبوع", 24 | allDayText: "اليوم كله", 25 | eventLimitText: "أخرى", 26 | noEventsMessage: "أي أحداث لعرض" 27 | }; 28 | 29 | return arKw; 30 | 31 | })); 32 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/ar-ly.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['ar-ly'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var arLy = { 8 | code: "ar-ly", 9 | week: { 10 | dow: 6, 11 | doy: 12 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | dir: 'rtl', 14 | buttonText: { 15 | prev: "السابق", 16 | next: "التالي", 17 | today: "اليوم", 18 | month: "شهر", 19 | week: "أسبوع", 20 | day: "يوم", 21 | list: "أجندة" 22 | }, 23 | weekLabel: "أسبوع", 24 | allDayText: "اليوم كله", 25 | eventLimitText: "أخرى", 26 | noEventsMessage: "أي أحداث لعرض" 27 | }; 28 | 29 | return arLy; 30 | 31 | })); 32 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/ar-ma.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['ar-ma'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var arMa = { 8 | code: "ar-ma", 9 | week: { 10 | dow: 6, 11 | doy: 12 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | dir: 'rtl', 14 | buttonText: { 15 | prev: "السابق", 16 | next: "التالي", 17 | today: "اليوم", 18 | month: "شهر", 19 | week: "أسبوع", 20 | day: "يوم", 21 | list: "أجندة" 22 | }, 23 | weekLabel: "أسبوع", 24 | allDayText: "اليوم كله", 25 | eventLimitText: "أخرى", 26 | noEventsMessage: "أي أحداث لعرض" 27 | }; 28 | 29 | return arMa; 30 | 31 | })); 32 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/ar-sa.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['ar-sa'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var arSa = { 8 | code: "ar-sa", 9 | week: { 10 | dow: 0, 11 | doy: 6 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | dir: 'rtl', 14 | buttonText: { 15 | prev: "السابق", 16 | next: "التالي", 17 | today: "اليوم", 18 | month: "شهر", 19 | week: "أسبوع", 20 | day: "يوم", 21 | list: "أجندة" 22 | }, 23 | weekLabel: "أسبوع", 24 | allDayText: "اليوم كله", 25 | eventLimitText: "أخرى", 26 | noEventsMessage: "أي أحداث لعرض" 27 | }; 28 | 29 | return arSa; 30 | 31 | })); 32 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/ar-tn.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['ar-tn'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var arTn = { 8 | code: "ar-tn", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | dir: 'rtl', 14 | buttonText: { 15 | prev: "السابق", 16 | next: "التالي", 17 | today: "اليوم", 18 | month: "شهر", 19 | week: "أسبوع", 20 | day: "يوم", 21 | list: "أجندة" 22 | }, 23 | weekLabel: "أسبوع", 24 | allDayText: "اليوم كله", 25 | eventLimitText: "أخرى", 26 | noEventsMessage: "أي أحداث لعرض" 27 | }; 28 | 29 | return arTn; 30 | 31 | })); 32 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/ar.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ar = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var ar = { 8 | code: "ar", 9 | week: { 10 | dow: 6, 11 | doy: 12 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | dir: 'rtl', 14 | buttonText: { 15 | prev: "السابق", 16 | next: "التالي", 17 | today: "اليوم", 18 | month: "شهر", 19 | week: "أسبوع", 20 | day: "يوم", 21 | list: "أجندة" 22 | }, 23 | weekLabel: "أسبوع", 24 | allDayText: "اليوم كله", 25 | eventLimitText: "أخرى", 26 | noEventsMessage: "أي أحداث لعرض" 27 | }; 28 | 29 | return ar; 30 | 31 | })); 32 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/bg.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.bg = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var bg = { 8 | code: "bg", 9 | week: { 10 | dow: 1, 11 | doy: 7 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "назад", 15 | next: "напред", 16 | today: "днес", 17 | month: "Месец", 18 | week: "Седмица", 19 | day: "Ден", 20 | list: "График" 21 | }, 22 | allDayText: "Цял ден", 23 | eventLimitText: function (n) { 24 | return "+още " + n; 25 | }, 26 | noEventsMessage: "Няма събития за показване" 27 | }; 28 | 29 | return bg; 30 | 31 | })); 32 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/bs.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.bs = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var bs = { 8 | code: "bs", 9 | week: { 10 | dow: 1, 11 | doy: 7 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Prošli", 15 | next: "Sljedeći", 16 | today: "Danas", 17 | month: "Mjesec", 18 | week: "Sedmica", 19 | day: "Dan", 20 | list: "Raspored" 21 | }, 22 | weekLabel: "Sed", 23 | allDayText: "Cijeli dan", 24 | eventLimitText: function (n) { 25 | return "+ još " + n; 26 | }, 27 | noEventsMessage: "Nema događaja za prikazivanje" 28 | }; 29 | 30 | return bs; 31 | 32 | })); 33 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/ca.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ca = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var ca = { 8 | code: "ca", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Anterior", 15 | next: "Següent", 16 | today: "Avui", 17 | month: "Mes", 18 | week: "Setmana", 19 | day: "Dia", 20 | list: "Agenda" 21 | }, 22 | weekLabel: "Set", 23 | allDayText: "Tot el dia", 24 | eventLimitText: "més", 25 | noEventsMessage: "No hi ha esdeveniments per mostrar" 26 | }; 27 | 28 | return ca; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/cs.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.cs = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var cs = { 8 | code: "cs", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Dříve", 15 | next: "Později", 16 | today: "Nyní", 17 | month: "Měsíc", 18 | week: "Týden", 19 | day: "Den", 20 | list: "Agenda" 21 | }, 22 | weekLabel: "Týd", 23 | allDayText: "Celý den", 24 | eventLimitText: function (n) { 25 | return "+další: " + n; 26 | }, 27 | noEventsMessage: "Žádné akce k zobrazení" 28 | }; 29 | 30 | return cs; 31 | 32 | })); 33 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/da.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.da = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var da = { 8 | code: "da", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Forrige", 15 | next: "Næste", 16 | today: "I dag", 17 | month: "Måned", 18 | week: "Uge", 19 | day: "Dag", 20 | list: "Agenda" 21 | }, 22 | weekLabel: "Uge", 23 | allDayText: "Hele dagen", 24 | eventLimitText: "flere", 25 | noEventsMessage: "Ingen arrangementer at vise" 26 | }; 27 | 28 | return da; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/de.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.de = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var de = { 8 | code: "de", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Zurück", 15 | next: "Vor", 16 | today: "Heute", 17 | year: "Jahr", 18 | month: "Monat", 19 | week: "Woche", 20 | day: "Tag", 21 | list: "Terminübersicht" 22 | }, 23 | weekLabel: "KW", 24 | allDayText: "Ganztägig", 25 | eventLimitText: function (n) { 26 | return "+ weitere " + n; 27 | }, 28 | noEventsMessage: "Keine Ereignisse anzuzeigen" 29 | }; 30 | 31 | return de; 32 | 33 | })); 34 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/el.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.el = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var el = { 8 | code: "el", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4st is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Προηγούμενος", 15 | next: "Επόμενος", 16 | today: "Σήμερα", 17 | month: "Μήνας", 18 | week: "Εβδομάδα", 19 | day: "Ημέρα", 20 | list: "Ατζέντα" 21 | }, 22 | weekLabel: "Εβδ", 23 | allDayText: "Ολοήμερο", 24 | eventLimitText: "περισσότερα", 25 | noEventsMessage: "Δεν υπάρχουν γεγονότα για να εμφανιστεί" 26 | }; 27 | 28 | return el; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/en-au.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['en-au'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var enAu = { 8 | code: "en-au", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | } 13 | }; 14 | 15 | return enAu; 16 | 17 | })); 18 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/en-gb.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['en-gb'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var enGb = { 8 | code: "en-gb", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | } 13 | }; 14 | 15 | return enGb; 16 | 17 | })); 18 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/en-nz.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['en-nz'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var enNz = { 8 | code: "en-nz", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | } 13 | }; 14 | 15 | return enNz; 16 | 17 | })); 18 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/es-us.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['es-us'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var esUs = { 8 | code: "es", 9 | week: { 10 | dow: 0, 11 | doy: 6 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Ant", 15 | next: "Sig", 16 | today: "Hoy", 17 | month: "Mes", 18 | week: "Semana", 19 | day: "Día", 20 | list: "Agenda" 21 | }, 22 | weekLabel: "Sm", 23 | allDayHtml: "Todo
el día", 24 | eventLimitText: "más", 25 | noEventsMessage: "No hay eventos para mostrar" 26 | }; 27 | 28 | return esUs; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/es.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.es = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var es = { 8 | code: "es", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Ant", 15 | next: "Sig", 16 | today: "Hoy", 17 | month: "Mes", 18 | week: "Semana", 19 | day: "Día", 20 | list: "Agenda" 21 | }, 22 | weekLabel: "Sm", 23 | allDayHtml: "Todo
el día", 24 | eventLimitText: "más", 25 | noEventsMessage: "No hay eventos para mostrar" 26 | }; 27 | 28 | return es; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/et.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.et = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var et = { 8 | code: "et", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Eelnev", 15 | next: "Järgnev", 16 | today: "Täna", 17 | month: "Kuu", 18 | week: "Nädal", 19 | day: "Päev", 20 | list: "Päevakord" 21 | }, 22 | weekLabel: "näd", 23 | allDayText: "Kogu päev", 24 | eventLimitText: function (n) { 25 | return "+ veel " + n; 26 | }, 27 | noEventsMessage: "Kuvamiseks puuduvad sündmused" 28 | }; 29 | 30 | return et; 31 | 32 | })); 33 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/eu.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.eu = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var eu = { 8 | code: "eu", 9 | week: { 10 | dow: 1, 11 | doy: 7 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Aur", 15 | next: "Hur", 16 | today: "Gaur", 17 | month: "Hilabetea", 18 | week: "Astea", 19 | day: "Eguna", 20 | list: "Agenda" 21 | }, 22 | weekLabel: "As", 23 | allDayHtml: "Egun
osoa", 24 | eventLimitText: "gehiago", 25 | noEventsMessage: "Ez dago ekitaldirik erakusteko" 26 | }; 27 | 28 | return eu; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/fa.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.fa = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var fa = { 8 | code: "fa", 9 | week: { 10 | dow: 6, 11 | doy: 12 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | dir: 'rtl', 14 | buttonText: { 15 | prev: "قبلی", 16 | next: "بعدی", 17 | today: "امروز", 18 | month: "ماه", 19 | week: "هفته", 20 | day: "روز", 21 | list: "برنامه" 22 | }, 23 | weekLabel: "هف", 24 | allDayText: "تمام روز", 25 | eventLimitText: function (n) { 26 | return "بیش از " + n; 27 | }, 28 | noEventsMessage: "هیچ رویدادی به نمایش" 29 | }; 30 | 31 | return fa; 32 | 33 | })); 34 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/fi.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.fi = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var fi = { 8 | code: "fi", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Edellinen", 15 | next: "Seuraava", 16 | today: "Tänään", 17 | month: "Kuukausi", 18 | week: "Viikko", 19 | day: "Päivä", 20 | list: "Tapahtumat" 21 | }, 22 | weekLabel: "Vk", 23 | allDayText: "Koko päivä", 24 | eventLimitText: "lisää", 25 | noEventsMessage: "Ei näytettäviä tapahtumia" 26 | }; 27 | 28 | return fi; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/fr-ca.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['fr-ca'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var frCa = { 8 | code: "fr", 9 | buttonText: { 10 | prev: "Précédent", 11 | next: "Suivant", 12 | today: "Aujourd'hui", 13 | year: "Année", 14 | month: "Mois", 15 | week: "Semaine", 16 | day: "Jour", 17 | list: "Mon planning" 18 | }, 19 | weekLabel: "Sem.", 20 | allDayHtml: "Toute la
journée", 21 | eventLimitText: "en plus", 22 | noEventsMessage: "Aucun événement à afficher" 23 | }; 24 | 25 | return frCa; 26 | 27 | })); 28 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/fr-ch.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['fr-ch'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var frCh = { 8 | code: "fr-ch", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Précédent", 15 | next: "Suivant", 16 | today: "Courant", 17 | year: "Année", 18 | month: "Mois", 19 | week: "Semaine", 20 | day: "Jour", 21 | list: "Mon planning" 22 | }, 23 | weekLabel: "Sm", 24 | allDayHtml: "Toute la
journée", 25 | eventLimitText: "en plus", 26 | noEventsMessage: "Aucun événement à afficher" 27 | }; 28 | 29 | return frCh; 30 | 31 | })); 32 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/fr.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.fr = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var fr = { 8 | code: "fr", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Précédent", 15 | next: "Suivant", 16 | today: "Aujourd'hui", 17 | year: "Année", 18 | month: "Mois", 19 | week: "Semaine", 20 | day: "Jour", 21 | list: "Mon planning" 22 | }, 23 | weekLabel: "Sem.", 24 | allDayHtml: "Toute la
journée", 25 | eventLimitText: "en plus", 26 | noEventsMessage: "Aucun événement à afficher" 27 | }; 28 | 29 | return fr; 30 | 31 | })); 32 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/gl.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.gl = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var gl = { 8 | code: "gl", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Ant", 15 | next: "Seg", 16 | today: "Hoxe", 17 | month: "Mes", 18 | week: "Semana", 19 | day: "Día", 20 | list: "Axenda" 21 | }, 22 | weekLabel: "Sm", 23 | allDayHtml: "Todo
o día", 24 | eventLimitText: "máis", 25 | noEventsMessage: "Non hai eventos para amosar" 26 | }; 27 | 28 | return gl; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/he.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.he = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var he = { 8 | code: "he", 9 | dir: 'rtl', 10 | buttonText: { 11 | prev: "הקודם", 12 | next: "הבא", 13 | today: "היום", 14 | month: "חודש", 15 | week: "שבוע", 16 | day: "יום", 17 | list: "סדר יום" 18 | }, 19 | allDayText: "כל היום", 20 | eventLimitText: "אחר", 21 | noEventsMessage: "אין אירועים להצגה", 22 | weekLabel: "שבוע" 23 | }; 24 | 25 | return he; 26 | 27 | })); 28 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/hi.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.hi = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var hi = { 8 | code: "hi", 9 | week: { 10 | dow: 0, 11 | doy: 6 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "पिछला", 15 | next: "अगला", 16 | today: "आज", 17 | month: "महीना", 18 | week: "सप्ताह", 19 | day: "दिन", 20 | list: "कार्यसूची" 21 | }, 22 | weekLabel: "हफ्ता", 23 | allDayText: "सभी दिन", 24 | eventLimitText: function (n) { 25 | return "+अधिक " + n; 26 | }, 27 | noEventsMessage: "कोई घटनाओं को प्रदर्शित करने के लिए" 28 | }; 29 | 30 | return hi; 31 | 32 | })); 33 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/hr.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.hr = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var hr = { 8 | code: "hr", 9 | week: { 10 | dow: 1, 11 | doy: 7 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Prijašnji", 15 | next: "Sljedeći", 16 | today: "Danas", 17 | month: "Mjesec", 18 | week: "Tjedan", 19 | day: "Dan", 20 | list: "Raspored" 21 | }, 22 | weekLabel: "Tje", 23 | allDayText: "Cijeli dan", 24 | eventLimitText: function (n) { 25 | return "+ još " + n; 26 | }, 27 | noEventsMessage: "Nema događaja za prikaz" 28 | }; 29 | 30 | return hr; 31 | 32 | })); 33 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/hu.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.hu = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var hu = { 8 | code: "hu", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "vissza", 15 | next: "előre", 16 | today: "ma", 17 | month: "Hónap", 18 | week: "Hét", 19 | day: "Nap", 20 | list: "Napló" 21 | }, 22 | weekLabel: "Hét", 23 | allDayText: "Egész nap", 24 | eventLimitText: "további", 25 | noEventsMessage: "Nincs megjeleníthető esemény" 26 | }; 27 | 28 | return hu; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/id.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.id = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var id = { 8 | code: "id", 9 | week: { 10 | dow: 1, 11 | doy: 7 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "mundur", 15 | next: "maju", 16 | today: "hari ini", 17 | month: "Bulan", 18 | week: "Minggu", 19 | day: "Hari", 20 | list: "Agenda" 21 | }, 22 | weekLabel: "Mg", 23 | allDayHtml: "Sehari
penuh", 24 | eventLimitText: "lebih", 25 | noEventsMessage: "Tidak ada acara untuk ditampilkan" 26 | }; 27 | 28 | return id; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/is.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.is = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var is = { 8 | code: "is", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Fyrri", 15 | next: "Næsti", 16 | today: "Í dag", 17 | month: "Mánuður", 18 | week: "Vika", 19 | day: "Dagur", 20 | list: "Dagskrá" 21 | }, 22 | weekLabel: "Vika", 23 | allDayHtml: "Allan
daginn", 24 | eventLimitText: "meira", 25 | noEventsMessage: "Engir viðburðir til að sýna" 26 | }; 27 | 28 | return is; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/it.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.it = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var it = { 8 | code: "it", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Prec", 15 | next: "Succ", 16 | today: "Oggi", 17 | month: "Mese", 18 | week: "Settimana", 19 | day: "Giorno", 20 | list: "Agenda" 21 | }, 22 | weekLabel: "Sm", 23 | allDayHtml: "Tutto il
giorno", 24 | eventLimitText: function (n) { 25 | return "+altri " + n; 26 | }, 27 | noEventsMessage: "Non ci sono eventi da visualizzare" 28 | }; 29 | 30 | return it; 31 | 32 | })); 33 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/ja.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ja = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var ja = { 8 | code: "ja", 9 | buttonText: { 10 | prev: "前", 11 | next: "次", 12 | today: "今日", 13 | month: "月", 14 | week: "週", 15 | day: "日", 16 | list: "予定リスト" 17 | }, 18 | weekLabel: "週", 19 | allDayText: "終日", 20 | eventLimitText: function (n) { 21 | return "他 " + n + " 件"; 22 | }, 23 | noEventsMessage: "表示する予定はありません" 24 | }; 25 | 26 | return ja; 27 | 28 | })); 29 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/ka.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ka = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var ka = { 8 | code: "ka", 9 | week: { 10 | dow: 1, 11 | doy: 7 12 | }, 13 | buttonText: { 14 | prev: "წინა", 15 | next: "შემდეგი", 16 | today: "დღეს", 17 | month: "თვე", 18 | week: "კვირა", 19 | day: "დღე", 20 | list: "დღის წესრიგი" 21 | }, 22 | weekLabel: "კვ", 23 | allDayText: "მთელი დღე", 24 | eventLimitText: function (n) { 25 | return "+ კიდევ " + n; 26 | }, 27 | noEventsMessage: "ღონისძიებები არ არის" 28 | }; 29 | 30 | return ka; 31 | 32 | })); 33 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/kk.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.kk = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var kk = { 8 | code: "kk", 9 | week: { 10 | dow: 1, 11 | doy: 7 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Алдыңғы", 15 | next: "Келесі", 16 | today: "Бүгін", 17 | month: "Ай", 18 | week: "Апта", 19 | day: "Күн", 20 | list: "Күн тәртібі" 21 | }, 22 | weekLabel: "Не", 23 | allDayText: "Күні бойы", 24 | eventLimitText: function (n) { 25 | return "+ тағы " + n; 26 | }, 27 | noEventsMessage: "Көрсету үшін оқиғалар жоқ" 28 | }; 29 | 30 | return kk; 31 | 32 | })); 33 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/ko.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ko = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var ko = { 8 | code: "ko", 9 | buttonText: { 10 | prev: "이전달", 11 | next: "다음달", 12 | today: "오늘", 13 | month: "월", 14 | week: "주", 15 | day: "일", 16 | list: "일정목록" 17 | }, 18 | weekLabel: "주", 19 | allDayText: "종일", 20 | eventLimitText: "개", 21 | noEventsMessage: "일정이 없습니다" 22 | }; 23 | 24 | return ko; 25 | 26 | })); 27 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/lb.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.lb = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var lb = { 8 | code: "lb", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Zréck", 15 | next: "Weider", 16 | today: "Haut", 17 | month: "Mount", 18 | week: "Woch", 19 | day: "Dag", 20 | list: "Terminiwwersiicht" 21 | }, 22 | weekLabel: "W", 23 | allDayText: "Ganzen Dag", 24 | eventLimitText: "méi", 25 | noEventsMessage: "Nee Evenementer ze affichéieren" 26 | }; 27 | 28 | return lb; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/lt.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.lt = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var lt = { 8 | code: "lt", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Atgal", 15 | next: "Pirmyn", 16 | today: "Šiandien", 17 | month: "Mėnuo", 18 | week: "Savaitė", 19 | day: "Diena", 20 | list: "Darbotvarkė" 21 | }, 22 | weekLabel: "SAV", 23 | allDayText: "Visą dieną", 24 | eventLimitText: "daugiau", 25 | noEventsMessage: "Nėra įvykių rodyti" 26 | }; 27 | 28 | return lt; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/lv.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.lv = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var lv = { 8 | code: "lv", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Iepr.", 15 | next: "Nāk.", 16 | today: "Šodien", 17 | month: "Mēnesis", 18 | week: "Nedēļa", 19 | day: "Diena", 20 | list: "Dienas kārtība" 21 | }, 22 | weekLabel: "Ned.", 23 | allDayText: "Visu dienu", 24 | eventLimitText: function (n) { 25 | return "+vēl " + n; 26 | }, 27 | noEventsMessage: "Nav notikumu" 28 | }; 29 | 30 | return lv; 31 | 32 | })); 33 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/mk.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.mk = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var mk = { 8 | code: "mk", 9 | buttonText: { 10 | prev: "претходно", 11 | next: "следно", 12 | today: "Денес", 13 | month: "Месец", 14 | week: "Недела", 15 | day: "Ден", 16 | list: "График" 17 | }, 18 | weekLabel: "Сед", 19 | allDayText: "Цел ден", 20 | eventLimitText: function (n) { 21 | return "+повеќе " + n; 22 | }, 23 | noEventsMessage: "Нема настани за прикажување" 24 | }; 25 | 26 | return mk; 27 | 28 | })); 29 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/ms.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ms = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var ms = { 8 | code: "ms", 9 | week: { 10 | dow: 1, 11 | doy: 7 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Sebelum", 15 | next: "Selepas", 16 | today: "hari ini", 17 | month: "Bulan", 18 | week: "Minggu", 19 | day: "Hari", 20 | list: "Agenda" 21 | }, 22 | weekLabel: "Mg", 23 | allDayText: "Sepanjang hari", 24 | eventLimitText: function (n) { 25 | return "masih ada " + n + " acara"; 26 | }, 27 | noEventsMessage: "Tiada peristiwa untuk dipaparkan" 28 | }; 29 | 30 | return ms; 31 | 32 | })); 33 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/nb.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.nb = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var nb = { 8 | code: "nb", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Forrige", 15 | next: "Neste", 16 | today: "I dag", 17 | month: "Måned", 18 | week: "Uke", 19 | day: "Dag", 20 | list: "Agenda" 21 | }, 22 | weekLabel: "Uke", 23 | allDayText: "Hele dagen", 24 | eventLimitText: "til", 25 | noEventsMessage: "Ingen hendelser å vise" 26 | }; 27 | 28 | return nb; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/nl.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.nl = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var nl = { 8 | code: "nl", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Voorgaand", 15 | next: "Volgende", 16 | today: "Vandaag", 17 | year: "Jaar", 18 | month: "Maand", 19 | week: "Week", 20 | day: "Dag", 21 | list: "Agenda" 22 | }, 23 | allDayText: "Hele dag", 24 | eventLimitText: "extra", 25 | noEventsMessage: "Geen evenementen om te laten zien" 26 | }; 27 | 28 | return nl; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/nn.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.nn = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var nn = { 8 | code: "nn", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Førre", 15 | next: "Neste", 16 | today: "I dag", 17 | month: "Månad", 18 | week: "Veke", 19 | day: "Dag", 20 | list: "Agenda" 21 | }, 22 | weekLabel: "Veke", 23 | allDayText: "Heile dagen", 24 | eventLimitText: "til", 25 | noEventsMessage: "Ingen hendelser å vise" 26 | }; 27 | 28 | return nn; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/pl.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.pl = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var pl = { 8 | code: "pl", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Poprzedni", 15 | next: "Następny", 16 | today: "Dziś", 17 | month: "Miesiąc", 18 | week: "Tydzień", 19 | day: "Dzień", 20 | list: "Plan dnia" 21 | }, 22 | weekLabel: "Tydz", 23 | allDayText: "Cały dzień", 24 | eventLimitText: "więcej", 25 | noEventsMessage: "Brak wydarzeń do wyświetlenia" 26 | }; 27 | 28 | return pl; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/pt-br.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['pt-br'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var ptBr = { 8 | code: "pt-br", 9 | buttonText: { 10 | prev: "Anterior", 11 | next: "Próximo", 12 | today: "Hoje", 13 | month: "Mês", 14 | week: "Semana", 15 | day: "Dia", 16 | list: "Compromissos" 17 | }, 18 | weekLabel: "Sm", 19 | allDayText: "dia inteiro", 20 | eventLimitText: function (n) { 21 | return "mais +" + n; 22 | }, 23 | noEventsMessage: "Não há eventos para mostrar" 24 | }; 25 | 26 | return ptBr; 27 | 28 | })); 29 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/pt.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.pt = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var pt = { 8 | code: "pt", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Anterior", 15 | next: "Seguinte", 16 | today: "Hoje", 17 | month: "Mês", 18 | week: "Semana", 19 | day: "Dia", 20 | list: "Agenda" 21 | }, 22 | weekLabel: "Sem", 23 | allDayText: "Todo o dia", 24 | eventLimitText: "mais", 25 | noEventsMessage: "Não há eventos para mostrar" 26 | }; 27 | 28 | return pt; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/ro.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ro = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var ro = { 8 | code: "ro", 9 | week: { 10 | dow: 1, 11 | doy: 7 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "precedentă", 15 | next: "următoare", 16 | today: "Azi", 17 | month: "Lună", 18 | week: "Săptămână", 19 | day: "Zi", 20 | list: "Agendă" 21 | }, 22 | weekLabel: "Săpt", 23 | allDayText: "Toată ziua", 24 | eventLimitText: function (n) { 25 | return "+alte " + n; 26 | }, 27 | noEventsMessage: "Nu există evenimente de afișat" 28 | }; 29 | 30 | return ro; 31 | 32 | })); 33 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/ru.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ru = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var ru = { 8 | code: "ru", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Пред", 15 | next: "След", 16 | today: "Сегодня", 17 | month: "Месяц", 18 | week: "Неделя", 19 | day: "День", 20 | list: "Повестка дня" 21 | }, 22 | weekLabel: "Нед", 23 | allDayText: "Весь день", 24 | eventLimitText: function (n) { 25 | return "+ ещё " + n; 26 | }, 27 | noEventsMessage: "Нет событий для отображения" 28 | }; 29 | 30 | return ru; 31 | 32 | })); 33 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/sk.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.sk = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var sk = { 8 | code: "sk", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Predchádzajúci", 15 | next: "Nasledujúci", 16 | today: "Dnes", 17 | month: "Mesiac", 18 | week: "Týždeň", 19 | day: "Deň", 20 | list: "Rozvrh" 21 | }, 22 | weekLabel: "Ty", 23 | allDayText: "Celý deň", 24 | eventLimitText: function (n) { 25 | return "+ďalšie: " + n; 26 | }, 27 | noEventsMessage: "Žiadne akcie na zobrazenie" 28 | }; 29 | 30 | return sk; 31 | 32 | })); 33 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/sl.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.sl = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var sl = { 8 | code: "sl", 9 | week: { 10 | dow: 1, 11 | doy: 7 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Prejšnji", 15 | next: "Naslednji", 16 | today: "Trenutni", 17 | month: "Mesec", 18 | week: "Teden", 19 | day: "Dan", 20 | list: "Dnevni red" 21 | }, 22 | weekLabel: "Teden", 23 | allDayText: "Ves dan", 24 | eventLimitText: "več", 25 | noEventsMessage: "Ni dogodkov za prikaz" 26 | }; 27 | 28 | return sl; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/sq.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.sq = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var sq = { 8 | code: "sq", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "mbrapa", 15 | next: "Përpara", 16 | today: "sot", 17 | month: "Muaj", 18 | week: "Javë", 19 | day: "Ditë", 20 | list: "Listë" 21 | }, 22 | weekLabel: "Ja", 23 | allDayHtml: "Gjithë
ditën", 24 | eventLimitText: function (n) { 25 | return "+më tepër " + n; 26 | }, 27 | noEventsMessage: "Nuk ka evente për të shfaqur" 28 | }; 29 | 30 | return sq; 31 | 32 | })); 33 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/sr-cyrl.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['sr-cyrl'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var srCyrl = { 8 | code: "sr-cyrl", 9 | week: { 10 | dow: 1, 11 | doy: 7 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Претходна", 15 | next: "следећи", 16 | today: "Данас", 17 | month: "Месец", 18 | week: "Недеља", 19 | day: "Дан", 20 | list: "Планер" 21 | }, 22 | weekLabel: "Сед", 23 | allDayText: "Цео дан", 24 | eventLimitText: function (n) { 25 | return "+ још " + n; 26 | }, 27 | noEventsMessage: "Нема догађаја за приказ" 28 | }; 29 | 30 | return srCyrl; 31 | 32 | })); 33 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/sr.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.sr = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var sr = { 8 | code: "sr", 9 | week: { 10 | dow: 1, 11 | doy: 7 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Prethodna", 15 | next: "Sledeći", 16 | today: "Danas", 17 | month: "Mеsеc", 18 | week: "Nеdеlja", 19 | day: "Dan", 20 | list: "Planеr" 21 | }, 22 | weekLabel: "Sed", 23 | allDayText: "Cеo dan", 24 | eventLimitText: function (n) { 25 | return "+ još " + n; 26 | }, 27 | noEventsMessage: "Nеma događaja za prikaz" 28 | }; 29 | 30 | return sr; 31 | 32 | })); 33 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/sv.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.sv = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var sv = { 8 | code: "sv", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Förra", 15 | next: "Nästa", 16 | today: "Idag", 17 | month: "Månad", 18 | week: "Vecka", 19 | day: "Dag", 20 | list: "Program" 21 | }, 22 | weekLabel: "v.", 23 | allDayText: "Heldag", 24 | eventLimitText: "till", 25 | noEventsMessage: "Inga händelser att visa" 26 | }; 27 | 28 | return sv; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/th.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.th = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var th = { 8 | code: "th", 9 | buttonText: { 10 | prev: "ย้อน", 11 | next: "ถัดไป", 12 | today: "วันนี้", 13 | month: "เดือน", 14 | week: "สัปดาห์", 15 | day: "วัน", 16 | list: "แผนงาน" 17 | }, 18 | allDayText: "ตลอดวัน", 19 | eventLimitText: "เพิ่มเติม", 20 | noEventsMessage: "ไม่มีกิจกรรมที่จะแสดง" 21 | }; 22 | 23 | return th; 24 | 25 | })); 26 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/tr.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.tr = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var tr = { 8 | code: "tr", 9 | week: { 10 | dow: 1, 11 | doy: 7 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "geri", 15 | next: "ileri", 16 | today: "bugün", 17 | month: "Ay", 18 | week: "Hafta", 19 | day: "Gün", 20 | list: "Ajanda" 21 | }, 22 | weekLabel: "Hf", 23 | allDayText: "Tüm gün", 24 | eventLimitText: "daha fazla", 25 | noEventsMessage: "Gösterilecek etkinlik yok" 26 | }; 27 | 28 | return tr; 29 | 30 | })); 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/uk.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.uk = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var uk = { 8 | code: "uk", 9 | week: { 10 | dow: 1, 11 | doy: 7 // The week that contains Jan 1st is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Попередній", 15 | next: "далі", 16 | today: "Сьогодні", 17 | month: "Місяць", 18 | week: "Тиждень", 19 | day: "День", 20 | list: "Порядок денний" 21 | }, 22 | weekLabel: "Тиж", 23 | allDayText: "Увесь день", 24 | eventLimitText: function (n) { 25 | return "+ще " + n + "..."; 26 | }, 27 | noEventsMessage: "Немає подій для відображення" 28 | }; 29 | 30 | return uk; 31 | 32 | })); 33 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/vi.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.vi = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var vi = { 8 | code: "vi", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | }, 13 | buttonText: { 14 | prev: "Trước", 15 | next: "Tiếp", 16 | today: "Hôm nay", 17 | month: "Tháng", 18 | week: "Tuần", 19 | day: "Ngày", 20 | list: "Lịch biểu" 21 | }, 22 | weekLabel: "Tu", 23 | allDayText: "Cả ngày", 24 | eventLimitText: function (n) { 25 | return "+ thêm " + n; 26 | }, 27 | noEventsMessage: "Không có sự kiện để hiển thị" 28 | }; 29 | 30 | return vi; 31 | 32 | })); 33 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/zh-cn.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['zh-cn'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var zhCn = { 8 | code: "zh-cn", 9 | week: { 10 | // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效 11 | dow: 1, 12 | doy: 4 // The week that contains Jan 4th is the first week of the year. 13 | }, 14 | buttonText: { 15 | prev: "上月", 16 | next: "下月", 17 | today: "今天", 18 | month: "月", 19 | week: "周", 20 | day: "日", 21 | list: "日程" 22 | }, 23 | weekLabel: "周", 24 | allDayText: "全天", 25 | eventLimitText: function (n) { 26 | return "另外 " + n + " 个"; 27 | }, 28 | noEventsMessage: "没有事件显示" 29 | }; 30 | 31 | return zhCn; 32 | 33 | })); 34 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/locales/zh-tw.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['zh-tw'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var zhTw = { 8 | code: "zh-tw", 9 | buttonText: { 10 | prev: "上月", 11 | next: "下月", 12 | today: "今天", 13 | month: "月", 14 | week: "週", 15 | day: "天", 16 | list: "活動列表" 17 | }, 18 | weekLabel: "周", 19 | allDayText: "整天", 20 | eventLimitText: '顯示更多', 21 | noEventsMessage: "没有任何活動" 22 | }; 23 | 24 | return zhTw; 25 | 26 | })); 27 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/core/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@fullcalendar/core", 3 | "version": "4.3.1", 4 | "title": "FullCalendar Core Package", 5 | "description": "Provides core functionality, including the Calendar class", 6 | "keywords": [ 7 | "calendar", 8 | "event", 9 | "full-sized" 10 | ], 11 | "homepage": "https://fullcalendar.io/", 12 | "docs": "https://fullcalendar.io/docs/initialize-es6", 13 | "bugs": "https://fullcalendar.io/reporting-bugs", 14 | "repository": { 15 | "type": "git", 16 | "url": "https://github.com/fullcalendar/fullcalendar.git", 17 | "homepage": "https://github.com/fullcalendar/fullcalendar" 18 | }, 19 | "license": "MIT", 20 | "author": { 21 | "name": "Adam Shaw", 22 | "email": "arshaw@arshaw.com", 23 | "url": "http://arshaw.com/" 24 | }, 25 | "copyright": "2019 Adam Shaw", 26 | "main": "main.js", 27 | "module": "main.esm.js", 28 | "unpkg": "main.min.js", 29 | "types": "main.d.ts" 30 | } 31 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/daygrid/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 Adam Shaw 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/daygrid/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Day Grid Plugin 3 | 4 | Display events on Month view or DayGrid view 5 | 6 | [View the docs »](https://fullcalendar.io/docs/month-view) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/daygrid/main.min.css: -------------------------------------------------------------------------------- 1 | .fc-dayGridDay-view .fc-content-skeleton,.fc-dayGridWeek-view .fc-content-skeleton{padding-bottom:1em}.fc-dayGrid-view .fc-body .fc-row{min-height:4em}.fc-row.fc-rigid{overflow:hidden}.fc-row.fc-rigid .fc-content-skeleton{position:absolute;top:0;left:0;right:0}.fc-day-top.fc-other-month{opacity:.3}.fc-dayGrid-view .fc-day-number,.fc-dayGrid-view .fc-week-number{padding:2px}.fc-dayGrid-view th.fc-day-number,.fc-dayGrid-view th.fc-week-number{padding:0 2px}.fc-ltr .fc-dayGrid-view .fc-day-top .fc-day-number{float:right}.fc-rtl .fc-dayGrid-view .fc-day-top .fc-day-number{float:left}.fc-ltr .fc-dayGrid-view .fc-day-top .fc-week-number{float:left;border-radius:0 0 3px}.fc-rtl .fc-dayGrid-view .fc-day-top .fc-week-number{float:right;border-radius:0 0 0 3px}.fc-dayGrid-view .fc-day-top .fc-week-number{min-width:1.5em;text-align:center;background-color:#f2f2f2;color:grey}.fc-dayGrid-view td.fc-week-number{text-align:center}.fc-dayGrid-view td.fc-week-number>*{display:inline-block;min-width:1.25em} -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/daygrid/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@fullcalendar/daygrid", 3 | "version": "4.3.0", 4 | "title": "FullCalendar Day Grid Plugin", 5 | "description": "Display events on Month view or DayGrid view", 6 | "keywords": [ 7 | "calendar", 8 | "event", 9 | "full-sized" 10 | ], 11 | "homepage": "https://fullcalendar.io/", 12 | "docs": "https://fullcalendar.io/docs/month-view", 13 | "bugs": "https://fullcalendar.io/reporting-bugs", 14 | "repository": { 15 | "type": "git", 16 | "url": "https://github.com/fullcalendar/fullcalendar.git", 17 | "homepage": "https://github.com/fullcalendar/fullcalendar" 18 | }, 19 | "license": "MIT", 20 | "author": { 21 | "name": "Adam Shaw", 22 | "email": "arshaw@arshaw.com", 23 | "url": "http://arshaw.com/" 24 | }, 25 | "copyright": "2019 Adam Shaw", 26 | "peerDependencies": { 27 | "@fullcalendar/core": "~4.3.0" 28 | }, 29 | "main": "main.js", 30 | "module": "main.esm.js", 31 | "unpkg": "main.min.js", 32 | "types": "main.d.ts" 33 | } 34 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/google-calendar/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 Adam Shaw 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/google-calendar/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Google Calendar Plugin 3 | 4 | Fetch events from a public Google Calendar feed 5 | 6 | [View the docs »](https://fullcalendar.io/docs/google-calendar) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/google-calendar/main.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by dts-bundle v0.7.3-fork.1 2 | // Dependencies for this module: 3 | // main.d.ts 4 | 5 | declare module '@fullcalendar/google-calendar' { 6 | module '@fullcalendar/core' { 7 | interface OptionsInput { 8 | googleCalendarApiKey?: string; 9 | } 10 | } 11 | module '@fullcalendar/core/structs/event-source' { 12 | interface ExtendedEventSourceInput { 13 | googleCalendarApiKey?: string; 14 | googleCalendarId?: string; 15 | } 16 | } 17 | const _default: import("@fullcalendar/core").PluginDef; 18 | export default _default; 19 | } 20 | 21 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/google-calendar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@fullcalendar/google-calendar", 3 | "version": "4.3.0", 4 | "title": "FullCalendar Google Calendar Plugin", 5 | "description": "Fetch events from a public Google Calendar feed", 6 | "keywords": [ 7 | "calendar", 8 | "event", 9 | "full-sized" 10 | ], 11 | "homepage": "https://fullcalendar.io/", 12 | "docs": "https://fullcalendar.io/docs/google-calendar", 13 | "bugs": "https://fullcalendar.io/reporting-bugs", 14 | "repository": { 15 | "type": "git", 16 | "url": "https://github.com/fullcalendar/fullcalendar.git", 17 | "homepage": "https://github.com/fullcalendar/fullcalendar" 18 | }, 19 | "license": "MIT", 20 | "author": { 21 | "name": "Adam Shaw", 22 | "email": "arshaw@arshaw.com", 23 | "url": "http://arshaw.com/" 24 | }, 25 | "copyright": "2019 Adam Shaw", 26 | "peerDependencies": { 27 | "@fullcalendar/core": "~4.3.0" 28 | }, 29 | "main": "main.js", 30 | "module": "main.esm.js", 31 | "unpkg": "main.min.js", 32 | "types": "main.d.ts" 33 | } 34 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/interaction/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 Adam Shaw 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/interaction/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Interaction Plugin 3 | 4 | Provides functionality for event drag-n-drop, resizing, dateClick, and selectable actions 5 | 6 | [View the docs »](https://fullcalendar.io/docs/editable) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/interaction/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@fullcalendar/interaction", 3 | "version": "4.3.0", 4 | "title": "FullCalendar Interaction Plugin", 5 | "description": "Provides functionality for event drag-n-drop, resizing, dateClick, and selectable actions", 6 | "keywords": [ 7 | "calendar", 8 | "event", 9 | "full-sized" 10 | ], 11 | "homepage": "https://fullcalendar.io/", 12 | "docs": "https://fullcalendar.io/docs/editable", 13 | "bugs": "https://fullcalendar.io/reporting-bugs", 14 | "repository": { 15 | "type": "git", 16 | "url": "https://github.com/fullcalendar/fullcalendar.git", 17 | "homepage": "https://github.com/fullcalendar/fullcalendar" 18 | }, 19 | "license": "MIT", 20 | "author": { 21 | "name": "Adam Shaw", 22 | "email": "arshaw@arshaw.com", 23 | "url": "http://arshaw.com/" 24 | }, 25 | "copyright": "2019 Adam Shaw", 26 | "peerDependencies": { 27 | "@fullcalendar/core": "~4.3.0" 28 | }, 29 | "main": "main.js", 30 | "module": "main.esm.js", 31 | "unpkg": "main.min.js", 32 | "types": "main.d.ts" 33 | } 34 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/list/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 Adam Shaw 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/list/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar List View Plugin 3 | 4 | View your events as a bulleted list 5 | 6 | [View the docs »](https://fullcalendar.io/docs/list-view) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/list/main.min.css: -------------------------------------------------------------------------------- 1 | .fc-event-dot{display:inline-block;width:10px;height:10px;border-radius:5px}.fc-rtl .fc-list-view{direction:rtl}.fc-list-view{border-width:1px;border-style:solid}.fc .fc-list-table{table-layout:auto}.fc-list-table td{border-width:1px 0 0;padding:8px 14px}.fc-list-table tr:first-child td{border-top-width:0}.fc-list-heading{border-bottom-width:1px}.fc-list-heading td{font-weight:700}.fc-ltr .fc-list-heading-main{float:left}.fc-ltr .fc-list-heading-alt,.fc-rtl .fc-list-heading-main{float:right}.fc-rtl .fc-list-heading-alt{float:left}.fc-list-item.fc-has-url{cursor:pointer}.fc-list-item-marker,.fc-list-item-time{white-space:nowrap;width:1px}.fc-ltr .fc-list-item-marker{padding-right:0}.fc-rtl .fc-list-item-marker{padding-left:0}.fc-list-item-title a{text-decoration:none;color:inherit}.fc-list-item-title a[href]:hover{text-decoration:underline}.fc-list-empty-wrap2{position:absolute;top:0;left:0;right:0;bottom:0}.fc-list-empty-wrap1{width:100%;height:100%;display:table}.fc-list-empty{display:table-cell;vertical-align:middle;text-align:center}.fc-unthemed .fc-list-empty{background-color:#eee} -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/list/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@fullcalendar/list", 3 | "version": "4.3.0", 4 | "title": "FullCalendar List View Plugin", 5 | "description": "View your events as a bulleted list", 6 | "keywords": [ 7 | "calendar", 8 | "event", 9 | "full-sized" 10 | ], 11 | "homepage": "https://fullcalendar.io/", 12 | "docs": "https://fullcalendar.io/docs/list-view", 13 | "bugs": "https://fullcalendar.io/reporting-bugs", 14 | "repository": { 15 | "type": "git", 16 | "url": "https://github.com/fullcalendar/fullcalendar.git", 17 | "homepage": "https://github.com/fullcalendar/fullcalendar" 18 | }, 19 | "license": "MIT", 20 | "author": { 21 | "name": "Adam Shaw", 22 | "email": "arshaw@arshaw.com", 23 | "url": "http://arshaw.com/" 24 | }, 25 | "copyright": "2019 Adam Shaw", 26 | "peerDependencies": { 27 | "@fullcalendar/core": "~4.3.0" 28 | }, 29 | "main": "main.js", 30 | "module": "main.esm.js", 31 | "unpkg": "main.min.js", 32 | "types": "main.d.ts" 33 | } 34 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/luxon/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 Adam Shaw 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/luxon/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Luxon Plugin 3 | 4 | A connector to the Luxon date library 5 | 6 | [View the docs »](https://fullcalendar.io/docs/luxon-plugin) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/luxon/main.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by dts-bundle v0.7.3-fork.1 2 | // Dependencies for this module: 3 | // ../../../../../luxon 4 | // ../../../../../@fullcalendar/core 5 | 6 | declare module '@fullcalendar/luxon' { 7 | import { DateTime as LuxonDateTime, Duration as LuxonDuration } from 'luxon'; 8 | import { Calendar, Duration } from '@fullcalendar/core'; 9 | export function toDateTime(date: Date, calendar: Calendar): LuxonDateTime; 10 | export function toDuration(duration: Duration, calendar: Calendar): LuxonDuration; 11 | const _default: import("@fullcalendar/core").PluginDef; 12 | export default _default; 13 | } 14 | 15 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/luxon/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@fullcalendar/luxon", 3 | "version": "4.3.0", 4 | "title": "FullCalendar Luxon Plugin", 5 | "description": "A connector to the Luxon date library", 6 | "keywords": [ 7 | "calendar", 8 | "event", 9 | "full-sized" 10 | ], 11 | "homepage": "https://fullcalendar.io/", 12 | "docs": "https://fullcalendar.io/docs/luxon-plugin", 13 | "bugs": "https://fullcalendar.io/reporting-bugs", 14 | "repository": { 15 | "type": "git", 16 | "url": "https://github.com/fullcalendar/fullcalendar.git", 17 | "homepage": "https://github.com/fullcalendar/fullcalendar" 18 | }, 19 | "license": "MIT", 20 | "author": { 21 | "name": "Adam Shaw", 22 | "email": "arshaw@arshaw.com", 23 | "url": "http://arshaw.com/" 24 | }, 25 | "copyright": "2019 Adam Shaw", 26 | "peerDependencies": { 27 | "@fullcalendar/core": "~4.3.0", 28 | "luxon": "^1.12.1" 29 | }, 30 | "main": "main.js", 31 | "module": "main.esm.js", 32 | "unpkg": "main.min.js", 33 | "types": "main.d.ts" 34 | } 35 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/moment-timezone/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 Adam Shaw 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/moment-timezone/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Moment Timezone Plugin 3 | 4 | A connector to the moment-timezone library 5 | 6 | [View the docs »](https://fullcalendar.io/docs/moment-plugins#moment-timezone) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/moment-timezone/main.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by dts-bundle v0.7.3-fork.1 2 | // Dependencies for this module: 3 | // ../../../../../moment-timezone/builds/moment-timezone-with-data 4 | // ../../../../../@fullcalendar/core 5 | 6 | declare module '@fullcalendar/moment-timezone' { 7 | import 'moment-timezone/builds/moment-timezone-with-data'; 8 | const _default: import("@fullcalendar/core").PluginDef; 9 | export default _default; 10 | } 11 | 12 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/moment-timezone/main.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Moment Timezone Plugin v4.3.0 3 | Docs & License: https://fullcalendar.io/ 4 | (c) 2019 Adam Shaw 5 | */ 6 | !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("moment"),require("moment-timezone/builds/moment-timezone-with-data"),require("@fullcalendar/core")):"function"==typeof define&&define.amd?define(["exports","moment","moment-timezone/builds/moment-timezone-with-data","@fullcalendar/core"],t):t((e=e||self).FullCalendarMomentTimezone={},e.moment,e.moment,e.FullCalendar)}(this,function(e,t,n,o){"use strict";var r=function(e,t){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)};var i=t,u=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return function(e,t){function n(){this.constructor=e}r(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}(t,e),t.prototype.offsetForArray=function(e){return i.tz(e,this.timeZoneName).utcOffset()},t.prototype.timestampToArray=function(e){return i.tz(e,this.timeZoneName).toArray()},t}(o.NamedTimeZoneImpl),m=o.createPlugin({namedTimeZonedImpl:u});e.default=m,Object.defineProperty(e,"__esModule",{value:!0})}); -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/moment-timezone/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@fullcalendar/moment-timezone", 3 | "version": "4.3.0", 4 | "title": "FullCalendar Moment Timezone Plugin", 5 | "description": "A connector to the moment-timezone library", 6 | "keywords": [ 7 | "calendar", 8 | "event", 9 | "full-sized" 10 | ], 11 | "homepage": "https://fullcalendar.io/", 12 | "docs": "https://fullcalendar.io/docs/moment-plugins#moment-timezone", 13 | "bugs": "https://fullcalendar.io/reporting-bugs", 14 | "repository": { 15 | "type": "git", 16 | "url": "https://github.com/fullcalendar/fullcalendar.git", 17 | "homepage": "https://github.com/fullcalendar/fullcalendar" 18 | }, 19 | "license": "MIT", 20 | "author": { 21 | "name": "Adam Shaw", 22 | "email": "arshaw@arshaw.com", 23 | "url": "http://arshaw.com/" 24 | }, 25 | "copyright": "2019 Adam Shaw", 26 | "peerDependencies": { 27 | "@fullcalendar/core": "~4.3.0", 28 | "moment": "^2.24.0", 29 | "moment-timezone": "^0.5.25" 30 | }, 31 | "main": "main.js", 32 | "module": "main.esm.js", 33 | "unpkg": "main.min.js", 34 | "types": "main.d.ts" 35 | } 36 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/moment/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 Adam Shaw 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/moment/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Moment Plugin 3 | 4 | A connector to the MomentJS date library 5 | 6 | [View the docs »](https://fullcalendar.io/docs/moment-plugins) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/moment/main.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by dts-bundle v0.7.3-fork.1 2 | // Dependencies for this module: 3 | // ../../../../../moment 4 | // ../../../../../@fullcalendar/core 5 | 6 | declare module '@fullcalendar/moment' { 7 | import * as momentNs from 'moment'; 8 | import { Calendar, Duration } from '@fullcalendar/core'; 9 | export function toMoment(date: Date, calendar: Calendar): momentNs.Moment; 10 | export function toDuration(fcDuration: Duration): momentNs.Duration; 11 | const _default: import("@fullcalendar/core").PluginDef; 12 | export default _default; 13 | } 14 | 15 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/moment/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@fullcalendar/moment", 3 | "version": "4.3.0", 4 | "title": "FullCalendar Moment Plugin", 5 | "description": "A connector to the MomentJS date library", 6 | "keywords": [ 7 | "calendar", 8 | "event", 9 | "full-sized" 10 | ], 11 | "homepage": "https://fullcalendar.io/", 12 | "docs": "https://fullcalendar.io/docs/moment-plugins", 13 | "bugs": "https://fullcalendar.io/reporting-bugs", 14 | "repository": { 15 | "type": "git", 16 | "url": "https://github.com/fullcalendar/fullcalendar.git", 17 | "homepage": "https://github.com/fullcalendar/fullcalendar" 18 | }, 19 | "license": "MIT", 20 | "author": { 21 | "name": "Adam Shaw", 22 | "email": "arshaw@arshaw.com", 23 | "url": "http://arshaw.com/" 24 | }, 25 | "copyright": "2019 Adam Shaw", 26 | "peerDependencies": { 27 | "@fullcalendar/core": "~4.3.0", 28 | "moment": "^2.24.0" 29 | }, 30 | "main": "main.js", 31 | "module": "main.esm.js", 32 | "unpkg": "main.min.js", 33 | "types": "main.d.ts" 34 | } 35 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/rrule/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 Adam Shaw 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/rrule/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar RRule Plugin 3 | 4 | A connector to the RRule library, for recurring events 5 | 6 | [View the docs »](https://fullcalendar.io/docs/rrule-plugin) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/rrule/main.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by dts-bundle v0.7.3-fork.1 2 | // Dependencies for this module: 3 | // ../../../../../@fullcalendar/core 4 | 5 | declare module '@fullcalendar/rrule' { 6 | const _default: import("@fullcalendar/core").PluginDef; 7 | export default _default; 8 | } 9 | 10 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/rrule/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@fullcalendar/rrule", 3 | "version": "4.3.0", 4 | "title": "FullCalendar RRule Plugin", 5 | "description": "A connector to the RRule library, for recurring events", 6 | "keywords": [ 7 | "calendar", 8 | "event", 9 | "full-sized" 10 | ], 11 | "homepage": "https://fullcalendar.io/", 12 | "docs": "https://fullcalendar.io/docs/rrule-plugin", 13 | "bugs": "https://fullcalendar.io/reporting-bugs", 14 | "repository": { 15 | "type": "git", 16 | "url": "https://github.com/fullcalendar/fullcalendar.git", 17 | "homepage": "https://github.com/fullcalendar/fullcalendar" 18 | }, 19 | "license": "MIT", 20 | "author": { 21 | "name": "Adam Shaw", 22 | "email": "arshaw@arshaw.com", 23 | "url": "http://arshaw.com/" 24 | }, 25 | "copyright": "2019 Adam Shaw", 26 | "peerDependencies": { 27 | "@fullcalendar/core": "~4.3.0", 28 | "rrule": "^2.6.0" 29 | }, 30 | "main": "main.js", 31 | "module": "main.esm.js", 32 | "unpkg": "main.min.js", 33 | "types": "main.d.ts" 34 | } 35 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/timegrid/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 Adam Shaw 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/timegrid/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Time Grid Plugin 3 | 4 | Display your events on a grid of time slots 5 | 6 | [View the docs »](https://fullcalendar.io/docs/timegrid-view) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /Public/vendor/full-calendar/packages/timegrid/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@fullcalendar/timegrid", 3 | "version": "4.3.0", 4 | "title": "FullCalendar Time Grid Plugin", 5 | "description": "Display your events on a grid of time slots", 6 | "keywords": [ 7 | "calendar", 8 | "event", 9 | "full-sized" 10 | ], 11 | "homepage": "https://fullcalendar.io/", 12 | "docs": "https://fullcalendar.io/docs/timegrid-view", 13 | "bugs": "https://fullcalendar.io/reporting-bugs", 14 | "repository": { 15 | "type": "git", 16 | "url": "https://github.com/fullcalendar/fullcalendar.git", 17 | "homepage": "https://github.com/fullcalendar/fullcalendar" 18 | }, 19 | "license": "MIT", 20 | "author": { 21 | "name": "Adam Shaw", 22 | "email": "arshaw@arshaw.com", 23 | "url": "http://arshaw.com/" 24 | }, 25 | "copyright": "2019 Adam Shaw", 26 | "dependencies": { 27 | "@fullcalendar/daygrid": "~4.3.0" 28 | }, 29 | "peerDependencies": { 30 | "@fullcalendar/core": "~4.3.0" 31 | }, 32 | "main": "main.js", 33 | "module": "main.esm.js", 34 | "unpkg": "main.min.js", 35 | "types": "main.d.ts" 36 | } 37 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gunnarcorrea/opentask", 3 | "license": "GLP", 4 | "authors": [ 5 | { 6 | "name": "Gunnar Correa", 7 | "email": "gunnercorrea@gmail.com" 8 | } 9 | ], 10 | "require": {}, 11 | "autoload" : { 12 | "psr-4" :{ 13 | "App\\" : "App/" 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | array($baseDir . '/App'), 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- 1 | 11 | array ( 12 | 'App\\' => 4, 13 | ), 14 | ); 15 | 16 | public static $prefixDirsPsr4 = array ( 17 | 'App\\' => 18 | array ( 19 | 0 => __DIR__ . '/../..' . '/App', 20 | ), 21 | ); 22 | 23 | public static function getInitializer(ClassLoader $loader) 24 | { 25 | return \Closure::bind(function () use ($loader) { 26 | $loader->prefixLengthsPsr4 = ComposerStaticInit24a722ea4d3e4022fba1ea29af0b236b::$prefixLengthsPsr4; 27 | $loader->prefixDirsPsr4 = ComposerStaticInit24a722ea4d3e4022fba1ea29af0b236b::$prefixDirsPsr4; 28 | 29 | }, null, ClassLoader::class); 30 | } 31 | } 32 | --------------------------------------------------------------------------------