├── .classpath ├── .gitattributes ├── .project ├── .settings ├── .jsdtscope ├── org.eclipse.core.resources.prefs ├── org.eclipse.jdt.core.prefs ├── org.eclipse.wst.common.component ├── org.eclipse.wst.common.project.facet.core.xml ├── org.eclipse.wst.jsdt.ui.superType.container └── org.eclipse.wst.jsdt.ui.superType.name ├── README.md ├── WebRoot ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ ├── lib │ │ ├── commons-fileupload-1.3.2.jar │ │ ├── commons-io-2.5.jar │ │ └── mysql-connector-java-5.1.7-bin.jar │ └── web.xml ├── admin │ ├── addUser.jsp │ ├── editUser.jsp │ ├── main.jsp │ ├── showReport.jsp │ └── showSingleReport.jsp ├── assets │ ├── .DS_Store │ ├── css │ │ ├── .DS_Store │ │ ├── bootstrap.css │ │ ├── custom.css │ │ ├── fonts │ │ │ ├── .DS_Store │ │ │ ├── elusive │ │ │ │ ├── .DS_Store │ │ │ │ ├── css │ │ │ │ │ ├── animation.css │ │ │ │ │ ├── elusive-codes.css │ │ │ │ │ ├── elusive-embedded.css │ │ │ │ │ ├── elusive-ie7-codes.css │ │ │ │ │ ├── elusive-ie7.css │ │ │ │ │ └── elusive.css │ │ │ │ ├── font │ │ │ │ │ ├── elusive.eot │ │ │ │ │ ├── elusive.svg │ │ │ │ │ ├── elusive.ttf │ │ │ │ │ └── elusive.woff │ │ │ │ └── index.html │ │ │ ├── fontawesome │ │ │ │ ├── .DS_Store │ │ │ │ ├── css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ └── font-awesome.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ └── index.html │ │ │ ├── glyphicons │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── linecons │ │ │ │ ├── .DS_Store │ │ │ │ ├── css │ │ │ │ │ ├── animation.css │ │ │ │ │ ├── linecons-codes.css │ │ │ │ │ ├── linecons-embedded.css │ │ │ │ │ ├── linecons-ie7-codes.css │ │ │ │ │ ├── linecons-ie7.css │ │ │ │ │ └── linecons.css │ │ │ │ ├── font │ │ │ │ │ ├── linecons.eot │ │ │ │ │ ├── linecons.svg │ │ │ │ │ ├── linecons.ttf │ │ │ │ │ └── linecons.woff │ │ │ │ └── index.html │ │ │ └── meteocons │ │ │ │ ├── css │ │ │ │ ├── animation.css │ │ │ │ ├── meteocons-codes.css │ │ │ │ ├── meteocons-embedded.css │ │ │ │ ├── meteocons-ie7-codes.css │ │ │ │ ├── meteocons-ie7.css │ │ │ │ └── meteocons.css │ │ │ │ ├── font │ │ │ │ ├── meteocons.eot │ │ │ │ ├── meteocons.svg │ │ │ │ ├── meteocons.ttf │ │ │ │ └── meteocons.woff │ │ │ │ └── index.html │ │ ├── index.html │ │ ├── xenon-components.css │ │ ├── xenon-core.css │ │ ├── xenon-forms.css │ │ ├── xenon-skins.css │ │ └── xenon.css │ ├── images │ │ ├── .DS_Store │ │ ├── album-image-full.jpg │ │ ├── album-img-1.png │ │ ├── album-img-2.png │ │ ├── album-img-3.png │ │ ├── album-img-4.png │ │ ├── album-img-5.png │ │ ├── album-img-6.png │ │ ├── album-img-7.png │ │ ├── album-img-8.png │ │ ├── attach-1.png │ │ ├── attach-2.png │ │ ├── clouds.png │ │ ├── eiffel.jpg │ │ ├── image-1.jpg │ │ ├── image-2.jpg │ │ ├── image-3.jpg │ │ ├── image-4.jpg │ │ ├── image-5.jpg │ │ ├── layouts │ │ │ ├── layout-horizontal-right-sidebar-collapsed.png │ │ │ ├── layout-horizontal-right-sidebar.png │ │ │ ├── layout-horizontal.png │ │ │ ├── layout-sidebar-collapsed-horizontal.png │ │ │ ├── layout-sidebar-collapsed.png │ │ │ ├── layout-sidebar-horizontal.png │ │ │ ├── layout-sidebar-right-collapsed.png │ │ │ ├── layout-sidebar-right.png │ │ │ └── layout-sidebar.png │ │ ├── logo-collapsed.png │ │ ├── logo-collapsed@2x.png │ │ ├── logo-white-bg.png │ │ ├── logo-white-bg@2x.png │ │ ├── logo.png │ │ ├── logo@2x.png │ │ ├── news-image-widget-2.png │ │ ├── news-image-widget-3 │ │ ├── news-image-widget-3.png │ │ ├── news-image-widget-4.png │ │ ├── news-image-widget.png │ │ ├── notes-lines.png │ │ ├── ok-white-full.png │ │ ├── ok-white.png │ │ ├── ok.png │ │ ├── sample.jpg │ │ ├── user-1.png │ │ ├── user-2.png │ │ ├── user-3.png │ │ ├── user-4.png │ │ └── user-5.png │ ├── index.html │ ├── js │ │ ├── .DS_Store │ │ ├── TweenLite.min.js │ │ ├── TweenMax.min.js │ │ ├── bootstrap.min.js │ │ ├── ckeditor │ │ │ ├── .DS_Store │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── adapters │ │ │ │ └── jquery.js │ │ │ ├── build-config.js │ │ │ ├── ckeditor.js │ │ │ ├── config.js │ │ │ ├── contents.css │ │ │ ├── index.html │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.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 │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.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 │ │ │ ├── plugins │ │ │ │ ├── a11yhelp │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ └── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.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 │ │ │ │ │ │ ├── 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 │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── image │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── image.js │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── link │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ └── link.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── icon.png │ │ │ │ ├── pastefromword │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── scayt │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── toolbar.css │ │ │ │ ├── specialchar │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.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 │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.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 │ │ │ │ ├── tabletools │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── tableCell.js │ │ │ │ └── wsc │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ ├── samples │ │ │ │ ├── ajax.html │ │ │ │ ├── api.html │ │ │ │ ├── appendto.html │ │ │ │ ├── assets │ │ │ │ │ ├── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ ├── posteddata.php │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── uilanguages │ │ │ │ │ │ └── languages.js │ │ │ │ ├── datafiltering.html │ │ │ │ ├── divreplace.html │ │ │ │ ├── index.html │ │ │ │ ├── inlineall.html │ │ │ │ ├── inlinebycode.html │ │ │ │ ├── inlinetextarea.html │ │ │ │ ├── jquery.html │ │ │ │ ├── plugins │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ │ └── dialog.html │ │ │ │ │ ├── enterkey │ │ │ │ │ │ └── enterkey.html │ │ │ │ │ ├── htmlwriter │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ │ └── outputhtml.html │ │ │ │ │ ├── magicline │ │ │ │ │ │ └── magicline.html │ │ │ │ │ ├── toolbar │ │ │ │ │ │ └── toolbar.html │ │ │ │ │ └── wysiwygarea │ │ │ │ │ │ └── fullpage.html │ │ │ │ ├── readonly.html │ │ │ │ ├── replacebyclass.html │ │ │ │ ├── replacebycode.html │ │ │ │ ├── sample.css │ │ │ │ ├── sample.js │ │ │ │ ├── sample_posteddata.php │ │ │ │ ├── tabindex.html │ │ │ │ ├── uicolor.html │ │ │ │ ├── uilanguages.html │ │ │ │ └── xhtmlstyle.html │ │ │ ├── skins │ │ │ │ ├── .DS_Store │ │ │ │ ├── bootstrapck │ │ │ │ │ ├── dev │ │ │ │ │ │ ├── icons16.svg │ │ │ │ │ │ ├── icons32.svg │ │ │ │ │ │ └── locations.json │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ ├── dialog_opera.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ │ └── refresh.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── sample │ │ │ │ │ │ ├── bootstrapck-sample.html │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── bootstrapck-sample.css │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── analytics.js │ │ │ │ │ │ │ └── jquery-1.11.0.min.js │ │ │ │ │ ├── scss │ │ │ │ │ │ ├── browser-specific │ │ │ │ │ │ │ ├── gecko │ │ │ │ │ │ │ │ └── editor_gecko.scss │ │ │ │ │ │ │ ├── ie │ │ │ │ │ │ │ │ ├── dialog_ie.scss │ │ │ │ │ │ │ │ └── editor_ie.scss │ │ │ │ │ │ │ ├── ie7 │ │ │ │ │ │ │ │ ├── dialog_ie7.scss │ │ │ │ │ │ │ │ └── editor_ie7.scss │ │ │ │ │ │ │ ├── ie8 │ │ │ │ │ │ │ │ ├── dialog_ie8.scss │ │ │ │ │ │ │ │ └── editor_ie8.scss │ │ │ │ │ │ │ ├── iequirks │ │ │ │ │ │ │ │ ├── dialog_iequirks.scss │ │ │ │ │ │ │ │ └── editor_iequirks.scss │ │ │ │ │ │ │ └── opera │ │ │ │ │ │ │ │ └── dialog_opera.scss │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── _colorpanel.scss │ │ │ │ │ │ │ ├── _elementspath.scss │ │ │ │ │ │ │ ├── _mainui.scss │ │ │ │ │ │ │ ├── _menu.scss │ │ │ │ │ │ │ ├── _panel.scss │ │ │ │ │ │ │ ├── _presets.scss │ │ │ │ │ │ │ ├── _reset.scss │ │ │ │ │ │ │ ├── _richcombo.scss │ │ │ │ │ │ │ ├── _toolbar.scss │ │ │ │ │ │ │ └── editor.scss │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── _colors.scss │ │ │ │ │ │ │ ├── _config.scss │ │ │ │ │ │ │ └── _defaults.scss │ │ │ │ │ │ └── dialog │ │ │ │ │ │ │ └── dialog.scss │ │ │ │ │ └── skin.js │ │ │ │ └── moono │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ │ └── readme.md │ │ │ └── styles.js │ │ ├── colorpicker │ │ │ ├── .DS_Store │ │ │ ├── bootstrap-colorpicker.min.js │ │ │ ├── images │ │ │ │ ├── alpha-horizontal.png │ │ │ │ ├── alpha.png │ │ │ │ ├── hue-horizontal.png │ │ │ │ ├── hue.png │ │ │ │ └── saturation.png │ │ │ └── index.html │ │ ├── cropper │ │ │ ├── cropper.css │ │ │ ├── cropper.js │ │ │ ├── cropper.min.css │ │ │ ├── cropper.min.js │ │ │ └── index.html │ │ ├── datatables │ │ │ ├── .DS_Store │ │ │ ├── css │ │ │ │ ├── jquery.dataTables.css │ │ │ │ ├── jquery.dataTables.min.css │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ ├── dataTables.bootstrap.css │ │ │ ├── dataTables.bootstrap.js │ │ │ ├── images │ │ │ │ ├── Sorting icons.psd │ │ │ │ ├── back_disabled.png │ │ │ │ ├── back_enabled.png │ │ │ │ ├── back_enabled_hover.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── forward_disabled.png │ │ │ │ ├── forward_enabled.png │ │ │ │ ├── forward_enabled_hover.png │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── jquery.dataTables.js │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ └── jquery.js │ │ │ ├── tabletools │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ ├── copy_csv_xls_pdf.swf │ │ │ │ ├── dataTables.tableTools.css │ │ │ │ └── dataTables.tableTools.min.js │ │ │ └── yadcf │ │ │ │ ├── jquery.dataTables.yadcf.css │ │ │ │ └── jquery.dataTables.yadcf.js │ │ ├── datepicker │ │ │ ├── bootstrap-datepicker.js │ │ │ └── index.html │ │ ├── daterangepicker │ │ │ ├── .DS_Store │ │ │ ├── .gitignore │ │ │ ├── daterangepicker-bs2.css │ │ │ ├── daterangepicker-bs3.css │ │ │ ├── daterangepicker.js │ │ │ └── index.html │ │ ├── devexpress-web-14.1 │ │ │ ├── .DS_Store │ │ │ ├── css │ │ │ │ ├── dx.android.holo-dark.css │ │ │ │ ├── dx.android.holo-light.css │ │ │ │ ├── dx.common.css │ │ │ │ ├── dx.dark.css │ │ │ │ ├── dx.exporter.dark.css │ │ │ │ ├── dx.exporter.light.css │ │ │ │ ├── dx.ios.default.css │ │ │ │ ├── dx.ios7.default.css │ │ │ │ ├── dx.light.css │ │ │ │ ├── dx.spa.css │ │ │ │ ├── dx.win8.black.css │ │ │ │ └── dx.win8.white.css │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── dx.chartjs.debug.js │ │ │ │ ├── dx.chartjs.js │ │ │ │ ├── dx.exporter.debug.js │ │ │ │ ├── dx.exporter.js │ │ │ │ ├── dx.webappjs.debug.js │ │ │ │ ├── dx.webappjs.js │ │ │ │ ├── globalize.js │ │ │ │ ├── globalize.min.js │ │ │ │ ├── jquery-1.11.1.js │ │ │ │ ├── jquery-1.11.1.min.js │ │ │ │ ├── jquery-2.1.1.js │ │ │ │ ├── jquery-2.1.1.min.js │ │ │ │ ├── knockout-3.1.0.debug.js │ │ │ │ ├── knockout-3.1.0.js │ │ │ │ ├── localization │ │ │ │ │ ├── dx.webappjs.de.js │ │ │ │ │ ├── dx.webappjs.fr.js │ │ │ │ │ ├── dx.webappjs.ja.js │ │ │ │ │ └── dx.webappjs.ru.js │ │ │ │ ├── modules │ │ │ │ │ ├── dx.module-core.debug.js │ │ │ │ │ ├── dx.module-core.js │ │ │ │ │ ├── dx.module-framework.debug.js │ │ │ │ │ ├── dx.module-framework.js │ │ │ │ │ ├── dx.module-viz-charts.debug.js │ │ │ │ │ ├── dx.module-viz-charts.js │ │ │ │ │ ├── dx.module-viz-core.debug.js │ │ │ │ │ ├── dx.module-viz-core.js │ │ │ │ │ ├── dx.module-viz-gauges.debug.js │ │ │ │ │ ├── dx.module-viz-gauges.js │ │ │ │ │ ├── dx.module-viz-rangeselector.debug.js │ │ │ │ │ ├── dx.module-viz-rangeselector.js │ │ │ │ │ ├── dx.module-viz-sparklines.debug.js │ │ │ │ │ ├── dx.module-viz-sparklines.js │ │ │ │ │ ├── dx.module-viz-vectormap.debug.js │ │ │ │ │ ├── dx.module-viz-vectormap.js │ │ │ │ │ ├── dx.module-widgets-base.debug.js │ │ │ │ │ ├── dx.module-widgets-base.js │ │ │ │ │ ├── dx.module-widgets-web.debug.js │ │ │ │ │ └── dx.module-widgets-web.js │ │ │ │ ├── vectormap-data │ │ │ │ │ ├── africa.js │ │ │ │ │ ├── canada.js │ │ │ │ │ ├── eurasia.js │ │ │ │ │ ├── europe.js │ │ │ │ │ ├── usa.js │ │ │ │ │ └── world.js │ │ │ │ └── vectormap-utils │ │ │ │ │ ├── dx.vectormaputils.debug.js │ │ │ │ │ ├── dx.vectormaputils.js │ │ │ │ │ └── dx.vectormaputils.node.js │ │ │ ├── layouts │ │ │ │ ├── Desktop │ │ │ │ │ ├── DesktopLayout.css │ │ │ │ │ ├── DesktopLayout.html │ │ │ │ │ └── DesktopLayout.js │ │ │ │ └── Empty │ │ │ │ │ ├── EmptyLayout.css │ │ │ │ │ ├── EmptyLayout.html │ │ │ │ │ └── EmptyLayout.js │ │ │ └── ts │ │ │ │ ├── dx.all.d.ts │ │ │ │ ├── dx.chartjs.d.ts │ │ │ │ ├── dx.webappjs.d.ts │ │ │ │ ├── globalize.d.ts │ │ │ │ └── jquery.d.ts │ │ ├── dropzone │ │ │ ├── .DS_Store │ │ │ ├── css │ │ │ │ ├── basic.css │ │ │ │ ├── dropzone.css │ │ │ │ └── stylus │ │ │ │ │ ├── basic.styl │ │ │ │ │ └── dropzone.styl │ │ │ ├── dropzone-amd-module.min.js │ │ │ ├── dropzone.min.js │ │ │ ├── images │ │ │ │ ├── spritemap.png │ │ │ │ └── spritemap@2x.png │ │ │ └── index.html │ │ ├── formwizard │ │ │ ├── index.html │ │ │ ├── jquery.bootstrap.wizard.js │ │ │ └── jquery.bootstrap.wizard.min.js │ │ ├── fullcalendar │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.css │ │ │ ├── fullcalendar.min.js │ │ │ ├── fullcalendar.print.css │ │ │ ├── index.html │ │ │ └── moment.min.js │ │ ├── handlebars.min.js │ │ ├── icheck │ │ │ ├── .DS_Store │ │ │ ├── icheck.min.js │ │ │ ├── index.html │ │ │ └── skins │ │ │ │ ├── all.css │ │ │ │ ├── flat │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── flat.css │ │ │ │ ├── flat.png │ │ │ │ ├── flat@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ │ ├── futurico │ │ │ │ ├── futurico.css │ │ │ │ ├── futurico.png │ │ │ │ └── futurico@2x.png │ │ │ │ ├── line │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── blue.css │ │ │ │ ├── green.css │ │ │ │ ├── grey.css │ │ │ │ ├── line.css │ │ │ │ ├── line.png │ │ │ │ ├── line@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── pink.css │ │ │ │ ├── purple.css │ │ │ │ ├── red.css │ │ │ │ └── yellow.css │ │ │ │ ├── minimal │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── minimal.css │ │ │ │ ├── minimal.png │ │ │ │ ├── minimal@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ │ ├── polaris │ │ │ │ ├── polaris.css │ │ │ │ ├── polaris.png │ │ │ │ └── polaris@2x.png │ │ │ │ └── square │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── square.css │ │ │ │ ├── square.png │ │ │ │ ├── square@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ ├── index.html │ │ ├── inputmask │ │ │ ├── .DS_Store │ │ │ ├── index.html │ │ │ ├── inputmask │ │ │ │ ├── jquery.inputmask.date.extensions.js │ │ │ │ ├── jquery.inputmask.extensions.js │ │ │ │ ├── jquery.inputmask.js │ │ │ │ ├── jquery.inputmask.numeric.extensions.js │ │ │ │ ├── jquery.inputmask.phone.extensions.js │ │ │ │ └── jquery.inputmask.regex.extensions.js │ │ │ └── jquery.inputmask.bundle.js │ │ ├── joinable.js │ │ ├── jquery-1.11.1.min.js │ │ ├── jquery-ui │ │ │ ├── .DS_Store │ │ │ ├── external │ │ │ │ └── jquery │ │ │ │ │ └── jquery.js │ │ │ ├── index.html │ │ │ ├── jquery-ui.css │ │ │ ├── jquery-ui.js │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery-ui.structure.css │ │ │ └── jquery-ui.structure.min.css │ │ ├── jquery-validate │ │ │ ├── .DS_Store │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── index.html │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ └── localization │ │ │ │ ├── messages_ar.js │ │ │ │ ├── messages_ar.min.js │ │ │ │ ├── messages_bg.js │ │ │ │ ├── messages_bg.min.js │ │ │ │ ├── messages_ca.js │ │ │ │ ├── messages_ca.min.js │ │ │ │ ├── messages_cs.js │ │ │ │ ├── messages_cs.min.js │ │ │ │ ├── messages_da.js │ │ │ │ ├── messages_da.min.js │ │ │ │ ├── messages_de.js │ │ │ │ ├── messages_de.min.js │ │ │ │ ├── messages_el.js │ │ │ │ ├── messages_el.min.js │ │ │ │ ├── messages_es.js │ │ │ │ ├── messages_es.min.js │ │ │ │ ├── messages_es_AR.js │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ ├── messages_et.js │ │ │ │ ├── messages_et.min.js │ │ │ │ ├── messages_eu.js │ │ │ │ ├── messages_eu.min.js │ │ │ │ ├── messages_fa.js │ │ │ │ ├── messages_fa.min.js │ │ │ │ ├── messages_fi.js │ │ │ │ ├── messages_fi.min.js │ │ │ │ ├── messages_fr.js │ │ │ │ ├── messages_fr.min.js │ │ │ │ ├── messages_gl.js │ │ │ │ ├── messages_gl.min.js │ │ │ │ ├── messages_he.js │ │ │ │ ├── messages_he.min.js │ │ │ │ ├── messages_hr.js │ │ │ │ ├── messages_hr.min.js │ │ │ │ ├── messages_hu.js │ │ │ │ ├── messages_hu.min.js │ │ │ │ ├── messages_id.js │ │ │ │ ├── messages_id.min.js │ │ │ │ ├── messages_is.js │ │ │ │ ├── messages_is.min.js │ │ │ │ ├── messages_it.js │ │ │ │ ├── messages_it.min.js │ │ │ │ ├── messages_ja.js │ │ │ │ ├── messages_ja.min.js │ │ │ │ ├── messages_ka.js │ │ │ │ ├── messages_ka.min.js │ │ │ │ ├── messages_kk.js │ │ │ │ ├── messages_kk.min.js │ │ │ │ ├── messages_ko.js │ │ │ │ ├── messages_ko.min.js │ │ │ │ ├── messages_lt.js │ │ │ │ ├── messages_lt.min.js │ │ │ │ ├── messages_lv.js │ │ │ │ ├── messages_lv.min.js │ │ │ │ ├── messages_my.js │ │ │ │ ├── messages_my.min.js │ │ │ │ ├── messages_nl.js │ │ │ │ ├── messages_nl.min.js │ │ │ │ ├── messages_no.js │ │ │ │ ├── messages_no.min.js │ │ │ │ ├── messages_pl.js │ │ │ │ ├── messages_pl.min.js │ │ │ │ ├── messages_pt_BR.js │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ ├── messages_pt_PT.js │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ ├── messages_ro.js │ │ │ │ ├── messages_ro.min.js │ │ │ │ ├── messages_ru.js │ │ │ │ ├── messages_ru.min.js │ │ │ │ ├── messages_si.js │ │ │ │ ├── messages_si.min.js │ │ │ │ ├── messages_sk.js │ │ │ │ ├── messages_sk.min.js │ │ │ │ ├── messages_sl.js │ │ │ │ ├── messages_sl.min.js │ │ │ │ ├── messages_sr.js │ │ │ │ ├── messages_sr.min.js │ │ │ │ ├── messages_sr_lat.js │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ ├── messages_sv.js │ │ │ │ ├── messages_sv.min.js │ │ │ │ ├── messages_th.js │ │ │ │ ├── messages_th.min.js │ │ │ │ ├── messages_tj.js │ │ │ │ ├── messages_tj.min.js │ │ │ │ ├── messages_tr.js │ │ │ │ ├── messages_tr.min.js │ │ │ │ ├── messages_uk.js │ │ │ │ ├── messages_uk.min.js │ │ │ │ ├── messages_vi.js │ │ │ │ ├── messages_vi.min.js │ │ │ │ ├── messages_zh.js │ │ │ │ ├── messages_zh.min.js │ │ │ │ ├── messages_zh_TW.js │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ ├── methods_de.js │ │ │ │ ├── methods_de.min.js │ │ │ │ ├── methods_es_CL.js │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ ├── methods_fi.js │ │ │ │ ├── methods_fi.min.js │ │ │ │ ├── methods_nl.js │ │ │ │ ├── methods_nl.min.js │ │ │ │ ├── methods_pt.js │ │ │ │ └── methods_pt.min.js │ │ ├── jquery.mousewheel.js │ │ ├── jvectormap │ │ │ ├── .DS_Store │ │ │ ├── index.html │ │ │ ├── jquery-jvectormap-1.1.1.css │ │ │ ├── jquery-jvectormap-1.1.1.min.js │ │ │ ├── jquery-jvectormap-1.2.2.css │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ └── regions │ │ │ │ ├── jquery-jvectormap-it-mill-en.js │ │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ ├── knob │ │ │ ├── index.html │ │ │ └── jquery.knob.min.js │ │ ├── moment.min.js │ │ ├── multiselect │ │ │ ├── .DS_Store │ │ │ ├── css │ │ │ │ ├── index.html │ │ │ │ └── multi-select.css │ │ │ ├── img │ │ │ │ ├── .DS_Store │ │ │ │ ├── index.html │ │ │ │ └── switch.png │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── index.html │ │ │ │ └── jquery.multi-select.js │ │ ├── resizeable.js │ │ ├── rwd-table │ │ │ ├── .DS_Store │ │ │ ├── css │ │ │ │ ├── rwd-table.css │ │ │ │ └── rwd-table.min.css │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── rwd-table.js │ │ │ │ └── rwd-table.min.js │ │ ├── select2 │ │ │ ├── .DS_Store │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── index.html │ │ │ ├── select2-bootstrap.css │ │ │ ├── select2-spinner.gif │ │ │ ├── select2.css │ │ │ ├── select2.jquery.json │ │ │ ├── select2.js │ │ │ ├── select2.min.js │ │ │ ├── select2.png │ │ │ ├── select2_locale_ar.js │ │ │ ├── select2_locale_az.js │ │ │ ├── select2_locale_bg.js │ │ │ ├── select2_locale_ca.js │ │ │ ├── select2_locale_cs.js │ │ │ ├── select2_locale_da.js │ │ │ ├── select2_locale_de.js │ │ │ ├── select2_locale_el.js │ │ │ ├── select2_locale_en.js.template │ │ │ ├── select2_locale_es.js │ │ │ ├── select2_locale_et.js │ │ │ ├── select2_locale_eu.js │ │ │ ├── select2_locale_fa.js │ │ │ ├── select2_locale_fi.js │ │ │ ├── select2_locale_fr.js │ │ │ ├── select2_locale_gl.js │ │ │ ├── select2_locale_he.js │ │ │ ├── select2_locale_hr.js │ │ │ ├── select2_locale_hu.js │ │ │ ├── select2_locale_id.js │ │ │ ├── select2_locale_is.js │ │ │ ├── select2_locale_it.js │ │ │ ├── select2_locale_ja.js │ │ │ ├── select2_locale_ka.js │ │ │ ├── select2_locale_ko.js │ │ │ ├── select2_locale_lt.js │ │ │ ├── select2_locale_lv.js │ │ │ ├── select2_locale_mk.js │ │ │ ├── select2_locale_ms.js │ │ │ ├── select2_locale_nl.js │ │ │ ├── select2_locale_no.js │ │ │ ├── select2_locale_pl.js │ │ │ ├── select2_locale_pt-BR.js │ │ │ ├── select2_locale_pt-PT.js │ │ │ ├── select2_locale_ro.js │ │ │ ├── select2_locale_rs.js │ │ │ ├── select2_locale_ru.js │ │ │ ├── select2_locale_sk.js │ │ │ ├── select2_locale_sv.js │ │ │ ├── select2_locale_th.js │ │ │ ├── select2_locale_tr.js │ │ │ ├── select2_locale_ug-CN.js │ │ │ ├── select2_locale_uk.js │ │ │ ├── select2_locale_vi.js │ │ │ ├── select2_locale_zh-CN.js │ │ │ ├── select2_locale_zh-TW.js │ │ │ └── select2x2.png │ │ ├── selectboxit │ │ │ ├── .DS_Store │ │ │ ├── index.html │ │ │ ├── jquery.selectBoxIt.css │ │ │ └── jquery.selectBoxIt.min.js │ │ ├── tagsinput │ │ │ ├── bootstrap-tagsinput.css │ │ │ ├── bootstrap-tagsinput.js │ │ │ ├── bootstrap-tagsinput.less │ │ │ ├── bootstrap-tagsinput.min.js │ │ │ ├── bootstrap-tagsinput.min.js.map │ │ │ └── index.html │ │ ├── timepicker │ │ │ ├── bootstrap-timepicker.min.js │ │ │ └── index.html │ │ ├── toastr │ │ │ ├── .DS_Store │ │ │ ├── index.html │ │ │ ├── toastr-icon.png │ │ │ ├── toastr.css │ │ │ ├── toastr.js │ │ │ ├── toastr.less │ │ │ ├── toastr.min.css │ │ │ ├── toastr.min.js │ │ │ ├── toastr.min.js.map │ │ │ └── toastr.scss │ │ ├── tocify │ │ │ ├── .DS_Store │ │ │ ├── index.html │ │ │ ├── jquery.tocify.css │ │ │ └── jquery.tocify.min.js │ │ ├── typeahead.bundle.js │ │ ├── uikit │ │ │ ├── .DS_Store │ │ │ ├── css │ │ │ │ ├── addons │ │ │ │ │ ├── uikit.addons.css │ │ │ │ │ ├── uikit.addons.min.css │ │ │ │ │ ├── uikit.almost-flat.addons.css │ │ │ │ │ ├── uikit.almost-flat.addons.min.css │ │ │ │ │ ├── uikit.gradient.addons.css │ │ │ │ │ └── uikit.gradient.addons.min.css │ │ │ │ ├── index.html │ │ │ │ ├── uikit.almost-flat.css │ │ │ │ ├── uikit.almost-flat.min.css │ │ │ │ ├── uikit.css │ │ │ │ ├── uikit.gradient.css │ │ │ │ ├── uikit.gradient.min.css │ │ │ │ └── uikit.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── addons │ │ │ │ │ ├── autocomplete.js │ │ │ │ │ ├── autocomplete.min.js │ │ │ │ │ ├── cover.js │ │ │ │ │ ├── cover.min.js │ │ │ │ │ ├── datepicker.js │ │ │ │ │ ├── datepicker.min.js │ │ │ │ │ ├── form-password.js │ │ │ │ │ ├── form-password.min.js │ │ │ │ │ ├── form-select.js │ │ │ │ │ ├── form-select.min.js │ │ │ │ │ ├── htmleditor.js │ │ │ │ │ ├── htmleditor.min.js │ │ │ │ │ ├── nestable.js │ │ │ │ │ ├── nestable.min.js │ │ │ │ │ ├── notify.js │ │ │ │ │ ├── notify.min.js │ │ │ │ │ ├── pagination.js │ │ │ │ │ ├── pagination.min.js │ │ │ │ │ ├── search.js │ │ │ │ │ ├── search.min.js │ │ │ │ │ ├── sortable.js │ │ │ │ │ ├── sortable.min.js │ │ │ │ │ ├── sticky.js │ │ │ │ │ ├── sticky.min.js │ │ │ │ │ ├── timepicker.js │ │ │ │ │ ├── timepicker.min.js │ │ │ │ │ ├── upload.js │ │ │ │ │ └── upload.min.js │ │ │ │ ├── index.html │ │ │ │ ├── uikit.js │ │ │ │ └── uikit.min.js │ │ │ ├── less │ │ │ │ ├── addons │ │ │ │ │ ├── autocomplete.less │ │ │ │ │ ├── cover.less │ │ │ │ │ ├── datepicker.less │ │ │ │ │ ├── dotnav.less │ │ │ │ │ ├── flex.less │ │ │ │ │ ├── form-advanced.less │ │ │ │ │ ├── form-file.less │ │ │ │ │ ├── form-password.less │ │ │ │ │ ├── form-select.less │ │ │ │ │ ├── htmleditor.less │ │ │ │ │ ├── nestable.less │ │ │ │ │ ├── notify.less │ │ │ │ │ ├── placeholder.less │ │ │ │ │ ├── search.less │ │ │ │ │ ├── slidenav.less │ │ │ │ │ ├── sortable.less │ │ │ │ │ ├── sticky.less │ │ │ │ │ └── upload.less │ │ │ │ ├── alert.less │ │ │ │ ├── animation.less │ │ │ │ ├── article.less │ │ │ │ ├── badge.less │ │ │ │ ├── base.less │ │ │ │ ├── breadcrumb.less │ │ │ │ ├── button.less │ │ │ │ ├── close.less │ │ │ │ ├── comment.less │ │ │ │ ├── description-list.less │ │ │ │ ├── dropdown.less │ │ │ │ ├── form.less │ │ │ │ ├── grid.less │ │ │ │ ├── icon.less │ │ │ │ ├── index.html │ │ │ │ ├── list.less │ │ │ │ ├── modal.less │ │ │ │ ├── nav.less │ │ │ │ ├── navbar.less │ │ │ │ ├── offcanvas.less │ │ │ │ ├── overlay.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panel.less │ │ │ │ ├── print.less │ │ │ │ ├── progress.less │ │ │ │ ├── subnav.less │ │ │ │ ├── switcher.less │ │ │ │ ├── tab.less │ │ │ │ ├── table.less │ │ │ │ ├── text.less │ │ │ │ ├── thumbnail.less │ │ │ │ ├── tooltip.less │ │ │ │ ├── uikit-addons.less │ │ │ │ ├── uikit.css │ │ │ │ ├── uikit.less │ │ │ │ ├── utility.less │ │ │ │ └── variables.less │ │ │ ├── uikit.css │ │ │ └── vendor │ │ │ │ ├── codemirror │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ └── show-hint.css │ │ │ │ ├── customizer.js │ │ │ │ ├── highlight │ │ │ │ ├── highlight.css │ │ │ │ ├── highlight.js │ │ │ │ └── test.html │ │ │ │ ├── holder.js │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.less.js │ │ │ │ ├── jquery.mustache.js │ │ │ │ ├── jquery.rtl.js │ │ │ │ ├── less.js │ │ │ │ ├── marked.js │ │ │ │ └── spectrum │ │ │ │ ├── spectrum.css │ │ │ │ ├── spectrum.js │ │ │ │ └── test.html │ │ ├── wysihtml5 │ │ │ ├── .DS_Store │ │ │ ├── index.html │ │ │ ├── lib │ │ │ │ ├── .DS_Store │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── index.html │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── wysiwyg-color.css │ │ │ │ ├── img │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ ├── bootstrap-button.js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery-1.7.2.min.js │ │ │ │ │ ├── prettify.js │ │ │ │ │ ├── wysihtml5-0.3.0.js │ │ │ │ │ └── wysihtml5-0.3.0.min.js │ │ │ └── src │ │ │ │ ├── bootstrap-wysihtml5.css │ │ │ │ ├── bootstrap-wysihtml5.js │ │ │ │ ├── index.html │ │ │ │ └── locales │ │ │ │ ├── bootstrap-wysihtml5.ar-AR.js │ │ │ │ ├── bootstrap-wysihtml5.bg-BG.js │ │ │ │ ├── bootstrap-wysihtml5.ca-CT.js │ │ │ │ ├── bootstrap-wysihtml5.cs-CZ.js │ │ │ │ ├── bootstrap-wysihtml5.da-DK.js │ │ │ │ ├── bootstrap-wysihtml5.de-DE.js │ │ │ │ ├── bootstrap-wysihtml5.el-GR.js │ │ │ │ ├── bootstrap-wysihtml5.es-AR.js │ │ │ │ ├── bootstrap-wysihtml5.es-ES.js │ │ │ │ ├── bootstrap-wysihtml5.fr-FR.js │ │ │ │ ├── bootstrap-wysihtml5.hr-HR.js │ │ │ │ ├── bootstrap-wysihtml5.it-IT.js │ │ │ │ ├── bootstrap-wysihtml5.ja-JP.js │ │ │ │ ├── bootstrap-wysihtml5.ko-KR.js │ │ │ │ ├── bootstrap-wysihtml5.lt-LT.js │ │ │ │ ├── bootstrap-wysihtml5.mo-MD.js │ │ │ │ ├── bootstrap-wysihtml5.nb-NB.js │ │ │ │ ├── bootstrap-wysihtml5.nl-NL.js │ │ │ │ ├── bootstrap-wysihtml5.pl-PL.js │ │ │ │ ├── bootstrap-wysihtml5.pt-BR.js │ │ │ │ ├── bootstrap-wysihtml5.ru-RU.js │ │ │ │ ├── bootstrap-wysihtml5.sk-SK.js │ │ │ │ ├── bootstrap-wysihtml5.sv-SE.js │ │ │ │ ├── bootstrap-wysihtml5.tr-TR.js │ │ │ │ ├── bootstrap-wysihtml5.ua-UA.js │ │ │ │ ├── bootstrap-wysihtml5.zh-CN.js │ │ │ │ ├── bootstrap-wysihtml5.zh-TW.js │ │ │ │ └── index.html │ │ ├── xenon-api.js │ │ ├── xenon-custom.js │ │ ├── xenon-notes.js │ │ ├── xenon-toggles.js │ │ └── xenon-widgets.js │ └── less │ │ ├── .DS_Store │ │ ├── bootstrap.less │ │ ├── bs-less │ │ ├── .DS_Store │ │ ├── alerts.less │ │ ├── badges.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── grid.less │ │ ├── index.html │ │ ├── input-groups.less │ │ ├── jumbotron.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── mixins │ │ │ ├── alerts.less │ │ │ ├── background-variant.less │ │ │ ├── border-radius.less │ │ │ ├── buttons.less │ │ │ ├── center-block.less │ │ │ ├── clearfix.less │ │ │ ├── forms.less │ │ │ ├── gradients.less │ │ │ ├── grid-framework.less │ │ │ ├── grid.less │ │ │ ├── hide-text.less │ │ │ ├── image.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── nav-divider.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── opacity.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── resize.less │ │ │ ├── responsive-visibility.less │ │ │ ├── size.less │ │ │ ├── tab-focus.less │ │ │ ├── table-row.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ └── vendor-prefixes.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── normalize.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── popovers.less │ │ ├── print.less │ │ ├── progress-bars.less │ │ ├── responsive-embed.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── theme.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ │ ├── global-classes.less │ │ ├── index.html │ │ ├── other-less │ │ ├── .DS_Store │ │ ├── cbp-timeline.less │ │ ├── index.html │ │ ├── lesshat.less │ │ ├── perfect-scrollbar.less │ │ └── rwd-table.less │ │ ├── xenon-components.less │ │ ├── xenon-core.less │ │ ├── xenon-forms.less │ │ ├── xenon-less │ │ ├── .DS_Store │ │ ├── badges.less │ │ ├── blockquotes.less │ │ ├── bootstrap-overwrite.less │ │ ├── breadcrumbs.less │ │ ├── buttons.less │ │ ├── calendar.less │ │ ├── chat.less │ │ ├── checkbox-radio-replacement.less │ │ ├── dropdowns.less │ │ ├── footer.less │ │ ├── forms-colorpicker.less │ │ ├── forms-datepicker.less │ │ ├── forms-daterangepicker.less │ │ ├── forms-dropzone.less │ │ ├── forms-icheck.less │ │ ├── forms-iswitch.less │ │ ├── forms-multiselect.less │ │ ├── forms-select2.less │ │ ├── forms-selectboxit.less │ │ ├── forms-sliders.less │ │ ├── forms-tagsinput.less │ │ ├── forms-timepicker.less │ │ ├── forms-typeahead.less │ │ ├── forms-wizard.less │ │ ├── forms-wysihtml5.less │ │ ├── forms.less │ │ ├── gallery.less │ │ ├── header-mobile.less │ │ ├── horizontal-menu.less │ │ ├── index.html │ │ ├── invoice.less │ │ ├── labels.less │ │ ├── loading-bar.less │ │ ├── login-page.less │ │ ├── mailbox.less │ │ ├── main.less │ │ ├── maps.less │ │ ├── miscellaneous.less │ │ ├── mixins.less │ │ ├── modals.less │ │ ├── navbars.less │ │ ├── nestable.less │ │ ├── notes.less │ │ ├── page-error.less │ │ ├── page-skins.less │ │ ├── panels.less │ │ ├── popovers-tooltips.less │ │ ├── portlets.less │ │ ├── print.less │ │ ├── profile.less │ │ ├── search.less │ │ ├── settings-pane.less │ │ ├── sidebar.less │ │ ├── tables.less │ │ ├── tabs-accordions.less │ │ ├── toastr.less │ │ ├── tocify.less │ │ ├── user-info-navbar.less │ │ ├── variables.less │ │ ├── vertical-timeline.less │ │ └── widgets.less │ │ ├── xenon-skins.less │ │ └── xenon.less ├── css │ ├── bootstrap-social.css │ ├── bootstrap-theme.min.css │ ├── bootstrap.min.css │ ├── font-awesome.min.css │ └── templatemo_style.css ├── error.jsp ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── index.jsp ├── js │ ├── bootstrap.min.js │ └── jquery-1.11.1.min.js ├── resourcemanagementsystem.sql ├── student │ ├── addReport.jsp │ ├── addResource.jsp │ ├── checkTask.jsp │ ├── editResource.jsp │ ├── main.jsp │ ├── message.jsp │ ├── showReport.jsp │ ├── showResource.jsp │ ├── showSingleResource.jsp │ └── showTask.jsp ├── teacher │ ├── addTask.jsp │ ├── checkComplete.jsp │ ├── editTask.jsp │ └── main.jsp └── 纯HTML版本前端 │ ├── adminaddUser.txt │ ├── admineditUser.txt │ ├── adminmain.txt │ ├── index.txt │ ├── message.txt │ ├── studentaddResource.txt │ ├── studentcheckTask.txt │ ├── studenteditResource.txt │ ├── studentmain.txt │ ├── studentshowResource.txt │ ├── studentshowSingleResource.txt │ ├── studentshowTask.txt │ ├── teacheraddTask.txt │ ├── teachercheckComplete.txt │ ├── teachereditTask.txt │ └── teachermain.txt ├── _config.yml ├── build └── classes │ └── .gitignore └── src ├── db └── DBBean.java ├── entity ├── Report.java ├── ReportMgr.java ├── Resource.java ├── ResourceMgr.java ├── Task.java ├── TaskMgr.java ├── User.java └── UserMgr.java └── servlet ├── DownloadServlet.java ├── LoginOutServlet.java ├── LoginServlet.java ├── PriFilter.java ├── ReportServlet.java ├── RequestFilter.java ├── ResourceServlet.java ├── TaskServlet.java ├── UploadServlet.java └── UserServlet.java /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-language=Java 2 | *.js linguist-language=Java 3 | *.css linguist-language=Java 4 | -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//WebRoot/admin/addUser.jsp=UTF-8 3 | encoding//WebRoot/student/showSingleResource.jsp=UTF-8 4 | encoding//src/entity/Resource.java=UTF-8 5 | encoding//src/entity/ResourceMgr.java=UTF-8 6 | encoding//src/entity/Task.java=UTF-8 7 | encoding//src/entity/TaskMgr.java=UTF-8 8 | encoding//src/entity/User.java=UTF-8 9 | encoding//src/entity/UserMgr.java=UTF-8 10 | encoding//src/servlet/LoginServlet.java=UTF-8 11 | encoding//src/servlet/ResourceServlet.java=UTF-8 12 | encoding//src/servlet/TaskServlet.java=UTF-8 13 | encoding//src/servlet/UserServlet.java=UTF-8 14 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 4 | org.eclipse.jdt.core.compiler.compliance=1.6 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.6 8 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /WebRoot/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-fileupload-1.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/WEB-INF/lib/commons-fileupload-1.3.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-io-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/WEB-INF/lib/commons-io-2.5.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mysql-connector-java-5.1.7-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/WEB-INF/lib/mysql-connector-java-5.1.7-bin.jar -------------------------------------------------------------------------------- /WebRoot/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/css/custom.css: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * Apply your custom CSS here 4 | * 5 | */ 6 | 7 | body { 8 | } 9 | 10 | a { 11 | } -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/elusive/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/elusive/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/elusive/font/elusive.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/elusive/font/elusive.eot -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/elusive/font/elusive.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/elusive/font/elusive.ttf -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/elusive/font/elusive.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/elusive/font/elusive.woff -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/elusive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/elusive/index.html -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/fontawesome/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/fontawesome/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/fontawesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/fontawesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/fontawesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/fontawesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/fontawesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/fontawesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/fontawesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/fontawesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/fontawesome/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/fontawesome/index.html -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/glyphicons/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/glyphicons/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/glyphicons/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/glyphicons/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/glyphicons/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/glyphicons/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/glyphicons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/glyphicons/index.html -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/index.html -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/linecons/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/linecons/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/linecons/font/linecons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/linecons/font/linecons.eot -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/linecons/font/linecons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/linecons/font/linecons.ttf -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/linecons/font/linecons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/linecons/font/linecons.woff -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/linecons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/linecons/index.html -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/meteocons/font/meteocons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/meteocons/font/meteocons.eot -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/meteocons/font/meteocons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/meteocons/font/meteocons.ttf -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/meteocons/font/meteocons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/meteocons/font/meteocons.woff -------------------------------------------------------------------------------- /WebRoot/assets/css/fonts/meteocons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/fonts/meteocons/index.html -------------------------------------------------------------------------------- /WebRoot/assets/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/css/index.html -------------------------------------------------------------------------------- /WebRoot/assets/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/images/album-image-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/album-image-full.jpg -------------------------------------------------------------------------------- /WebRoot/assets/images/album-img-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/album-img-1.png -------------------------------------------------------------------------------- /WebRoot/assets/images/album-img-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/album-img-2.png -------------------------------------------------------------------------------- /WebRoot/assets/images/album-img-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/album-img-3.png -------------------------------------------------------------------------------- /WebRoot/assets/images/album-img-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/album-img-4.png -------------------------------------------------------------------------------- /WebRoot/assets/images/album-img-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/album-img-5.png -------------------------------------------------------------------------------- /WebRoot/assets/images/album-img-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/album-img-6.png -------------------------------------------------------------------------------- /WebRoot/assets/images/album-img-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/album-img-7.png -------------------------------------------------------------------------------- /WebRoot/assets/images/album-img-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/album-img-8.png -------------------------------------------------------------------------------- /WebRoot/assets/images/attach-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/attach-1.png -------------------------------------------------------------------------------- /WebRoot/assets/images/attach-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/attach-2.png -------------------------------------------------------------------------------- /WebRoot/assets/images/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/clouds.png -------------------------------------------------------------------------------- /WebRoot/assets/images/eiffel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/eiffel.jpg -------------------------------------------------------------------------------- /WebRoot/assets/images/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/image-1.jpg -------------------------------------------------------------------------------- /WebRoot/assets/images/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/image-2.jpg -------------------------------------------------------------------------------- /WebRoot/assets/images/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/image-3.jpg -------------------------------------------------------------------------------- /WebRoot/assets/images/image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/image-4.jpg -------------------------------------------------------------------------------- /WebRoot/assets/images/image-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/image-5.jpg -------------------------------------------------------------------------------- /WebRoot/assets/images/layouts/layout-horizontal-right-sidebar-collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/layouts/layout-horizontal-right-sidebar-collapsed.png -------------------------------------------------------------------------------- /WebRoot/assets/images/layouts/layout-horizontal-right-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/layouts/layout-horizontal-right-sidebar.png -------------------------------------------------------------------------------- /WebRoot/assets/images/layouts/layout-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/layouts/layout-horizontal.png -------------------------------------------------------------------------------- /WebRoot/assets/images/layouts/layout-sidebar-collapsed-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/layouts/layout-sidebar-collapsed-horizontal.png -------------------------------------------------------------------------------- /WebRoot/assets/images/layouts/layout-sidebar-collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/layouts/layout-sidebar-collapsed.png -------------------------------------------------------------------------------- /WebRoot/assets/images/layouts/layout-sidebar-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/layouts/layout-sidebar-horizontal.png -------------------------------------------------------------------------------- /WebRoot/assets/images/layouts/layout-sidebar-right-collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/layouts/layout-sidebar-right-collapsed.png -------------------------------------------------------------------------------- /WebRoot/assets/images/layouts/layout-sidebar-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/layouts/layout-sidebar-right.png -------------------------------------------------------------------------------- /WebRoot/assets/images/layouts/layout-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/layouts/layout-sidebar.png -------------------------------------------------------------------------------- /WebRoot/assets/images/logo-collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/logo-collapsed.png -------------------------------------------------------------------------------- /WebRoot/assets/images/logo-collapsed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/logo-collapsed@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/images/logo-white-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/logo-white-bg.png -------------------------------------------------------------------------------- /WebRoot/assets/images/logo-white-bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/logo-white-bg@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/logo.png -------------------------------------------------------------------------------- /WebRoot/assets/images/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/logo@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/images/news-image-widget-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/news-image-widget-2.png -------------------------------------------------------------------------------- /WebRoot/assets/images/news-image-widget-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/news-image-widget-3 -------------------------------------------------------------------------------- /WebRoot/assets/images/news-image-widget-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/news-image-widget-3.png -------------------------------------------------------------------------------- /WebRoot/assets/images/news-image-widget-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/news-image-widget-4.png -------------------------------------------------------------------------------- /WebRoot/assets/images/news-image-widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/news-image-widget.png -------------------------------------------------------------------------------- /WebRoot/assets/images/notes-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/notes-lines.png -------------------------------------------------------------------------------- /WebRoot/assets/images/ok-white-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/ok-white-full.png -------------------------------------------------------------------------------- /WebRoot/assets/images/ok-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/ok-white.png -------------------------------------------------------------------------------- /WebRoot/assets/images/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/ok.png -------------------------------------------------------------------------------- /WebRoot/assets/images/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/sample.jpg -------------------------------------------------------------------------------- /WebRoot/assets/images/user-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/user-1.png -------------------------------------------------------------------------------- /WebRoot/assets/images/user-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/user-2.png -------------------------------------------------------------------------------- /WebRoot/assets/images/user-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/user-3.png -------------------------------------------------------------------------------- /WebRoot/assets/images/user-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/user-4.png -------------------------------------------------------------------------------- /WebRoot/assets/images/user-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/images/user-5.png -------------------------------------------------------------------------------- /WebRoot/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/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 | -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/plugins/scayt/README.md: -------------------------------------------------------------------------------- 1 | CKEditor SCAYT Plugin 2 | ===================== 3 | 4 | This plugin brings Spell Check As You Type (SCAYT) into up to CKEditor 4+. 5 | 6 | SCAYT is a "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/scayt" folder in your CKEditor installation. 12 | 2. Enable the "scayt" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'scayt'; 15 | 16 | That's all. SCAYT will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/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 | -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/plugins/wsc/README.md: -------------------------------------------------------------------------------- 1 | CKEditor WebSpellChecker Plugin 2 | =============================== 3 | 4 | This plugin brings Web Spell Checker (WSC) into CKEditor. 5 | 6 | WSC is "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/wsc" folder in your CKEditor installation. 12 | 2. Enable the "wsc" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'wsc'; 15 | 16 | That's all. WSC will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/samples/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/samples/assets/inlineall/logo.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/samples/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/samples/assets/sample.jpg -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/samples/sample_posteddata.php: -------------------------------------------------------------------------------- 1 |
 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-2014, CKSource - Frederico Knabben. All rights reserved.
13 |   For licensing, see LICENSE.md or http://ckeditor.com/license
14 | -------------------------------------------------------------------------------------------
15 | 
16 | 
*/ include "assets/posteddata.php"; ?> 17 | -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/bootstrapck/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/bootstrapck/icons.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/bootstrapck/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/bootstrapck/icons_hidpi.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/bootstrapck/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/bootstrapck/images/arrow.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/bootstrapck/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/bootstrapck/images/close.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/bootstrapck/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/bootstrapck/images/hidpi/close.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/bootstrapck/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/bootstrapck/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/bootstrapck/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/bootstrapck/images/hidpi/lock.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/bootstrapck/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/bootstrapck/images/hidpi/refresh.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/bootstrapck/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/bootstrapck/images/lock-open.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/bootstrapck/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/bootstrapck/images/lock.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/bootstrapck/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/bootstrapck/images/refresh.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/bootstrapck/scss/browser-specific/gecko/editor_gecko.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | editor_gecko.css 8 | ================== 9 | 10 | This file contains styles to used by all Gecko based browsers (Firefox) only. 11 | */ 12 | 13 | /* Base it on editor.css, overriding it with styles defined in this file. */ 14 | @import "../../components/editor"; 15 | 16 | .cke_bottom 17 | { 18 | padding-bottom: 3px; 19 | } 20 | 21 | .cke_combo_text 22 | { 23 | margin-bottom: -1px; 24 | margin-top: 1px; 25 | } 26 | -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/bootstrapck/scss/browser-specific/ie8/dialog_ie8.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | dialog_ie8.css 8 | =============== 9 | 10 | This file contains styles to used by Internet Explorer 8 only. 11 | */ 12 | 13 | /* Base it on dialog_ie.css, overriding it with styles defined in this file. */ 14 | @import "../../dialog/dialog"; 15 | 16 | /* Without the following, IE8 cannot compensate footer button thick borders 17 | on :focus/:active. */ 18 | a.cke_dialog_ui_button_ok:focus span, 19 | a.cke_dialog_ui_button_ok:active span, 20 | a.cke_dialog_ui_button_cancel:focus span, 21 | a.cke_dialog_ui_button_cancel:active span 22 | { 23 | display: block; 24 | } 25 | -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/bootstrapck/scss/browser-specific/ie8/editor_ie8.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | editor_ie8.css 8 | =============== 9 | 10 | This file contains styles to used by Internet Explorer 8 only. 11 | */ 12 | 13 | /* Base it on editor_ie.css, overriding it with styles defined in this file. */ 14 | @import "../../components/editor"; 15 | 16 | .cke_toolbox_collapser .cke_arrow 17 | { 18 | border-width:4px; 19 | } 20 | .cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow 21 | { 22 | border-width:3px; 23 | } 24 | .cke_toolbox_collapser .cke_arrow 25 | { 26 | margin-top: 0; 27 | } 28 | -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/bootstrapck/scss/browser-specific/iequirks/dialog_iequirks.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | dialog_ie7.css 8 | =============== 9 | 10 | This file contains styles to used by Internet Explorer in 11 | Quirks mode only. 12 | */ 13 | 14 | /* Base it on dialog_ie.css, overriding it with styles defined in this file. */ 15 | @import "../../dialog/dialog"; 16 | 17 | /* [IE7-8] Filter on footer causes background artifacts when opening dialog. */ 18 | .cke_dialog_footer 19 | { 20 | filter: ""; 21 | } 22 | -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/bootstrapck/scss/browser-specific/opera/dialog_opera.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | dialog_opera.css 8 | =============== 9 | 10 | This file contains styles to used by all versions of Opera only. 11 | */ 12 | 13 | /* Base it on dialog.css, overriding it with styles defined in this file. */ 14 | @import "../../dialog/dialog"; 15 | 16 | /* Opera has problem with box-shadow and td with border-collapse: collapse */ 17 | /* inset shadow is mis-aligned */ 18 | .cke_dialog_footer 19 | { 20 | display: block; 21 | height: 38px; 22 | } 23 | 24 | .cke_ltr .cke_dialog_footer > * 25 | { 26 | float:right; 27 | } 28 | .cke_rtl .cke_dialog_footer > * 29 | { 30 | float:left; 31 | } 32 | -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/bootstrapck/scss/components/_presets.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* "Source" button label */ 7 | .cke_button__source_label, 8 | .cke_button__sourcedialog_label { 9 | display: inline; 10 | } 11 | 12 | /* "Font Size" combo width */ 13 | .cke_combo__fontsize .cke_combo_text { 14 | width: 30px; 15 | } 16 | 17 | /* "Font Size" panel size */ 18 | .cke_combopanel__fontsize { 19 | width: 120px; 20 | } 21 | 22 | /* Editable regions */ 23 | .cke_source { 24 | font-family: 'Courier New' , Monospace; 25 | font-size: small; 26 | background-color: #fff; 27 | white-space: pre; 28 | } 29 | 30 | .cke_wysiwyg_frame, .cke_wysiwyg_div { 31 | background-color: #fff; 32 | } 33 | -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/bootstrapck/scss/config/_config.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Config 3 | 4 | This file is exclusively intended for setting up imports 5 | Never add styles directly to this file 6 | ========================================================================== */ 7 | 8 | @import "colors"; 9 | @import "defaults"; 10 | -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /WebRoot/assets/js/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /WebRoot/assets/js/colorpicker/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/colorpicker/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/colorpicker/images/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/colorpicker/images/alpha-horizontal.png -------------------------------------------------------------------------------- /WebRoot/assets/js/colorpicker/images/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/colorpicker/images/alpha.png -------------------------------------------------------------------------------- /WebRoot/assets/js/colorpicker/images/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/colorpicker/images/hue-horizontal.png -------------------------------------------------------------------------------- /WebRoot/assets/js/colorpicker/images/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/colorpicker/images/hue.png -------------------------------------------------------------------------------- /WebRoot/assets/js/colorpicker/images/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/colorpicker/images/saturation.png -------------------------------------------------------------------------------- /WebRoot/assets/js/colorpicker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/colorpicker/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/cropper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/cropper/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/datatables/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/datatables/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/datatables/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/datatables/images/Sorting icons.psd -------------------------------------------------------------------------------- /WebRoot/assets/js/datatables/images/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/datatables/images/back_disabled.png -------------------------------------------------------------------------------- /WebRoot/assets/js/datatables/images/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/datatables/images/back_enabled.png -------------------------------------------------------------------------------- /WebRoot/assets/js/datatables/images/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/datatables/images/back_enabled_hover.png -------------------------------------------------------------------------------- /WebRoot/assets/js/datatables/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/datatables/images/favicon.ico -------------------------------------------------------------------------------- /WebRoot/assets/js/datatables/images/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/datatables/images/forward_disabled.png -------------------------------------------------------------------------------- /WebRoot/assets/js/datatables/images/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/datatables/images/forward_enabled.png -------------------------------------------------------------------------------- /WebRoot/assets/js/datatables/images/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/datatables/images/forward_enabled_hover.png -------------------------------------------------------------------------------- /WebRoot/assets/js/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /WebRoot/assets/js/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /WebRoot/assets/js/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/datatables/images/sort_both.png -------------------------------------------------------------------------------- /WebRoot/assets/js/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /WebRoot/assets/js/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /WebRoot/assets/js/datatables/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/datatables/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/datatables/tabletools/copy_csv_xls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/datatables/tabletools/copy_csv_xls.swf -------------------------------------------------------------------------------- /WebRoot/assets/js/datatables/tabletools/copy_csv_xls_pdf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/datatables/tabletools/copy_csv_xls_pdf.swf -------------------------------------------------------------------------------- /WebRoot/assets/js/datepicker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/datepicker/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/daterangepicker/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/daterangepicker/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/daterangepicker/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | *.sublime-workspace 3 | *.sublime-project -------------------------------------------------------------------------------- /WebRoot/assets/js/daterangepicker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/daterangepicker/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/devexpress-web-14.1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/devexpress-web-14.1/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/devexpress-web-14.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/devexpress-web-14.1/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/devexpress-web-14.1/js/globalize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/devexpress-web-14.1/js/globalize.min.js -------------------------------------------------------------------------------- /WebRoot/assets/js/devexpress-web-14.1/layouts/Desktop/DesktopLayout.js: -------------------------------------------------------------------------------- 1 | (function($, DX, undefined) { 2 | var layoutSets = DX.framework.html.layoutSets; 3 | layoutSets["desktop"] = layoutSets["desktop"] || []; 4 | layoutSets["desktop"].push({ 5 | platform: "generic", 6 | controller: new DX.framework.html.DefaultLayoutController({ 7 | name: "desktop", 8 | disableViewLoadingState: true 9 | }) 10 | }) 11 | })(jQuery, DevExpress); -------------------------------------------------------------------------------- /WebRoot/assets/js/devexpress-web-14.1/layouts/Empty/EmptyLayout.css: -------------------------------------------------------------------------------- 1 | .empty-layout { 2 | width: 100%; 3 | height: 100%; 4 | position: relative; 5 | } 6 | 7 | .dx-theme-ios7 .empty-layout .layout-content{ 8 | background-color: #EFEFF4; 9 | } 10 | 11 | /* Prevent margin collapse */ 12 | .empty-layout::before { 13 | content: "\00a0"; 14 | display: block; 15 | overflow: hidden; 16 | height: 0; 17 | } 18 | 19 | .empty-layout > div.content, 20 | .empty-layout > div.content > div { 21 | width: 100%; 22 | height: 100%; 23 | } -------------------------------------------------------------------------------- /WebRoot/assets/js/devexpress-web-14.1/layouts/Empty/EmptyLayout.html: -------------------------------------------------------------------------------- 1 | 
2 |
3 |
4 |
5 |
6 |
7 |
8 | 9 |
10 |
11 |
12 |
13 |
14 |
15 |
-------------------------------------------------------------------------------- /WebRoot/assets/js/devexpress-web-14.1/layouts/Empty/EmptyLayout.js: -------------------------------------------------------------------------------- 1 | (function($, DX, undefined) { 2 | DX.framework.html.EmptyLayoutController = DX.framework.html.DefaultLayoutController.inherit({ctor: function(options) { 3 | options = options || {}; 4 | options.name = options.name || "empty"; 5 | this.callBase(options) 6 | }}); 7 | var layoutSets = DX.framework.html.layoutSets; 8 | layoutSets["empty"] = layoutSets["empty"] || []; 9 | layoutSets["empty"].push({controller: new DX.framework.html.EmptyLayoutController}) 10 | })(jQuery, DevExpress); -------------------------------------------------------------------------------- /WebRoot/assets/js/dropzone/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/dropzone/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/dropzone/images/spritemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/dropzone/images/spritemap.png -------------------------------------------------------------------------------- /WebRoot/assets/js/dropzone/images/spritemap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/dropzone/images/spritemap@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/dropzone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/dropzone/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/formwizard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/formwizard/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/fullcalendar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/fullcalendar/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/aero.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/aero@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/blue.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/blue@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/flat.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/flat@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/green.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/green@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/grey.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/grey@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/orange.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/orange@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/pink.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/pink@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/purple.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/purple@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/red.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/red@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/yellow.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/flat/yellow@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/futurico/futurico.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/futurico/futurico@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/line/line.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/line/line@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/aero.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/aero@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/blue.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/blue@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/green.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/green@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/grey.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/grey@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/minimal.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/minimal@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/orange.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/orange@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/pink.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/pink@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/purple.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/purple@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/red.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/red@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/yellow.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/minimal/yellow@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/polaris/polaris.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/polaris/polaris@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/aero.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/aero@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/blue.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/blue@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/green.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/green@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/grey.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/grey@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/orange.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/orange@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/pink.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/pink@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/purple.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/purple@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/red.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/red@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/square.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/square@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/yellow.png -------------------------------------------------------------------------------- /WebRoot/assets/js/icheck/skins/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/icheck/skins/square/yellow@2x.png -------------------------------------------------------------------------------- /WebRoot/assets/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/inputmask/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/inputmask/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/inputmask/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/inputmask/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/inputmask/inputmask/jquery.inputmask.phone.extensions.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jquery.inputmask.phone.extensions.js 3 | * http://github.com/RobinHerbots/jquery.inputmask 4 | * Copyright (c) 2010 - 2014 Robin Herbots 5 | * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php) 6 | * Version: 3.1.25 7 | */ 8 | !function(a){"function"==typeof define&&define.amd?define(["jquery","./jquery.inputmask"],a):a(jQuery)}(function(a){return a.extend(a.inputmask.defaults.aliases,{phone:{url:"phone-codes/phone-codes.js",maskInit:"+pp(pp)pppppppp",mask:function(b){b.definitions={p:{validator:function(){return!1},cardinality:1},"#":{validator:"[0-9]",cardinality:1}};var c=[];return a.ajax({url:b.url,async:!1,dataType:"json",success:function(a){c=a}}),c.splice(0,0,b.maskInit),c.sort(function(a,b){return a.length-b.length}),c},nojumps:!0,nojumpsThreshold:1},phonebe:{alias:"phone",url:"phone-codes/phone-be.js",maskInit:"+32(pp)pppppppp",nojumpsThreshold:4}}),a.fn.inputmask}); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-ui/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/jquery-ui/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/jquery-validate/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/jquery-validate/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/messages_da.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Dette felt er påkrævet.",maxlength:a.validator.format("Indtast højst {0} tegn."),minlength:a.validator.format("Indtast mindst {0} tegn."),rangelength:a.validator.format("Indtast mindst {0} og højst {1} tegn."),email:"Indtast en gyldig email-adresse.",url:"Indtast en gyldig URL.",date:"Indtast en gyldig dato.",number:"Indtast et tal.",digits:"Indtast kun cifre.",equalTo:"Indtast den samme værdi igen.",range:a.validator.format("Angiv en værdi mellem {0} og {1}."),max:a.validator.format("Angiv en værdi der højst er {0}."),min:a.validator.format("Angiv en værdi der mindst er {0}."),creditcard:"Indtast et gyldigt kreditkortnummer."})}); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/messages_he.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"השדה הזה הינו שדה חובה",remote:"נא לתקן שדה זה",email:'נא למלא כתובת דוא"ל חוקית',url:"נא למלא כתובת אינטרנט חוקית",date:"נא למלא תאריך חוקי",dateISO:"נא למלא תאריך חוקי (ISO)",number:"נא למלא מספר",digits:"נא למלא רק מספרים",creditcard:"נא למלא מספר כרטיס אשראי חוקי",equalTo:"נא למלא את אותו ערך שוב",extension:"נא למלא ערך עם סיומת חוקית",maxlength:a.validator.format(".נא לא למלא יותר מ- {0} תווים"),minlength:a.validator.format("נא למלא לפחות {0} תווים"),rangelength:a.validator.format("נא למלא ערך בין {0} ל- {1} תווים"),range:a.validator.format("נא למלא ערך בין {0} ל- {1}"),max:a.validator.format("נא למלא ערך קטן או שווה ל- {0}"),min:a.validator.format("נא למלא ערך גדול או שווה ל- {0}")})}); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/messages_is.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Þessi reitur er nauðsynlegur.",remote:"Lagaðu þennan reit.",maxlength:a.validator.format("Sláðu inn mest {0} stafi."),minlength:a.validator.format("Sláðu inn minnst {0} stafi."),rangelength:a.validator.format("Sláðu inn minnst {0} og mest {1} stafi."),email:"Sláðu inn gilt netfang.",url:"Sláðu inn gilda vefslóð.",date:"Sláðu inn gilda dagsetningu.",number:"Sláðu inn tölu.",digits:"Sláðu inn tölustafi eingöngu.",equalTo:"Sláðu sama gildi inn aftur.",range:a.validator.format("Sláðu inn gildi milli {0} og {1}."),max:a.validator.format("Sláðu inn gildi sem er minna en eða jafnt og {0}."),min:a.validator.format("Sláðu inn gildi sem er stærra en eða jafnt og {0}."),creditcard:"Sláðu inn gilt greiðslukortanúmer."})}); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/messages_ja.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"このフィールドは必須です。",remote:"このフィールドを修正してください。",email:"有効なEメールアドレスを入力してください。",url:"有効なURLを入力してください。",date:"有効な日付を入力してください。",dateISO:"有効な日付(ISO)を入力してください。",number:"有効な数字を入力してください。",digits:"数字のみを入力してください。",creditcard:"有効なクレジットカード番号を入力してください。",equalTo:"同じ値をもう一度入力してください。",extension:"有効な拡張子を含む値を入力してください。",maxlength:a.validator.format("{0} 文字以内で入力してください。"),minlength:a.validator.format("{0} 文字以上で入力してください。"),rangelength:a.validator.format("{0} 文字から {1} 文字までの値を入力してください。"),range:a.validator.format("{0} から {1} までの値を入力してください。"),max:a.validator.format("{0} 以下の値を入力してください。"),min:a.validator.format("{0} 以上の値を入力してください。")})}); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/messages_ko.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"필수 항목입니다.",remote:"항목을 수정하세요.",email:"유효하지 않은 E-Mail주소입니다.",url:"유효하지 않은 URL입니다.",date:"올바른 날짜를 입력하세요.",dateISO:"올바른 날짜(ISO)를 입력하세요.",number:"유효한 숫자가 아닙니다.",digits:"숫자만 입력 가능합니다.",creditcard:"신용카드 번호가 바르지 않습니다.",equalTo:"같은 값을 다시 입력하세요.",extension:"올바른 확장자가 아닙니다.",maxlength:a.validator.format("{0}자를 넘을 수 없습니다. "),minlength:a.validator.format("{0}자 이상 입력하세요."),rangelength:a.validator.format("문자 길이가 {0} 에서 {1} 사이의 값을 입력하세요."),range:a.validator.format("{0} 에서 {1} 사이의 값을 입력하세요."),max:a.validator.format("{0} 이하의 값을 입력하세요."),min:a.validator.format("{0} 이상의 값을 입력하세요.")})}); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/messages_no.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Dette feltet er obligatorisk.",maxlength:a.validator.format("Maksimalt {0} tegn."),minlength:a.validator.format("Minimum {0} tegn."),rangelength:a.validator.format("Angi minimum {0} og maksimum {1} tegn."),email:"Oppgi en gyldig epostadresse.",url:"Angi en gyldig URL.",date:"Angi en gyldig dato.",dateISO:"Angi en gyldig dato (&ARING;&ARING;&ARING;&ARING;-MM-DD).",dateSE:"Angi en gyldig dato.",number:"Angi et gyldig nummer.",numberSE:"Angi et gyldig nummer.",digits:"Skriv kun tall.",equalTo:"Skriv samme verdi igjen.",range:a.validator.format("Angi en verdi mellom {0} og {1}."),max:a.validator.format("Angi en verdi som er mindre eller lik {0}."),min:a.validator.format("Angi en verdi som er større eller lik {0}."),creditcard:"Angi et gyldig kredittkortnummer."})}); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/messages_sk.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Povinné zadať.",maxlength:a.validator.format("Maximálne {0} znakov."),minlength:a.validator.format("Minimálne {0} znakov."),rangelength:a.validator.format("Minimálne {0} a Maximálne {1} znakov."),email:"E-mailová adresa musí byť platná.",url:"URL musí byť platný.",date:"Musí byť dátum.",number:"Musí byť číslo.",digits:"Môže obsahovať iba číslice.",equalTo:"Dva hodnoty sa musia rovnať.",range:a.validator.format("Musí byť medzi {0} a {1}."),max:a.validator.format("Nemôže byť viac ako{0}."),min:a.validator.format("Nemôže byť menej ako{0}."),creditcard:"Číslo platobnej karty musí byť platné."})}); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/messages_vi.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Hãy nhập.",remote:"Hãy sửa cho đúng.",email:"Hãy nhập email.",url:"Hãy nhập URL.",date:"Hãy nhập ngày.",dateISO:"Hãy nhập ngày (ISO).",number:"Hãy nhập số.",digits:"Hãy nhập chữ số.",creditcard:"Hãy nhập số thẻ tín dụng.",equalTo:"Hãy nhập thêm lần nữa.",extension:"Phần mở rộng không đúng.",maxlength:a.validator.format("Hãy nhập từ {0} kí tự trở xuống."),minlength:a.validator.format("Hãy nhập từ {0} kí tự trở lên."),rangelength:a.validator.format("Hãy nhập từ {0} đến {1} kí tự."),range:a.validator.format("Hãy nhập từ {0} đến {1}."),max:a.validator.format("Hãy nhập từ {0} trở xuống."),min:a.validator.format("Hãy nhập từ {1} trở lên.")})}); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/messages_zh.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: ZH (Chinese, 中文 (Zhōngwén), 汉语, 漢語) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "必须填写", 15 | remote: "请修正此栏位", 16 | email: "请输入有效的电子邮件", 17 | url: "请输入有效的网址", 18 | date: "请输入有效的日期", 19 | dateISO: "请输入有效的日期 (YYYY-MM-DD)", 20 | number: "请输入正确的数字", 21 | digits: "只可输入数字", 22 | creditcard: "请输入有效的信用卡号码", 23 | equalTo: "你的输入不相同", 24 | extension: "请输入有效的后缀", 25 | maxlength: $.validator.format("最多 {0} 个字"), 26 | minlength: $.validator.format("最少 {0} 个字"), 27 | rangelength: $.validator.format("请输入长度为 {0} 至 {1} 之間的字串"), 28 | range: $.validator.format("请输入 {0} 至 {1} 之间的数值"), 29 | max: $.validator.format("请输入不大于 {0} 的数值"), 30 | min: $.validator.format("请输入不小于 {0} 的数值") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/messages_zh.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"必须填写",remote:"请修正此栏位",email:"请输入有效的电子邮件",url:"请输入有效的网址",date:"请输入有效的日期",dateISO:"请输入有效的日期 (YYYY-MM-DD)",number:"请输入正确的数字",digits:"只可输入数字",creditcard:"请输入有效的信用卡号码",equalTo:"你的输入不相同",extension:"请输入有效的后缀",maxlength:a.validator.format("最多 {0} 个字"),minlength:a.validator.format("最少 {0} 个字"),rangelength:a.validator.format("请输入长度为 {0} 至 {1} 之間的字串"),range:a.validator.format("请输入 {0} 至 {1} 之间的数值"),max:a.validator.format("请输入不大于 {0} 的数值"),min:a.validator.format("请输入不小于 {0} 的数值")})}); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/messages_zh_TW.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: ZH (Chinese; 中文 (Zhōngwén), 汉语, 漢語) 12 | * Region: TW (Taiwan) 13 | */ 14 | $.extend($.validator.messages, { 15 | required: "必須填寫", 16 | remote: "請修正此欄位", 17 | email: "請輸入有效的電子郵件", 18 | url: "請輸入有效的網址", 19 | date: "請輸入有效的日期", 20 | dateISO: "請輸入有效的日期 (YYYY-MM-DD)", 21 | number: "請輸入正確的數值", 22 | digits: "只可輸入數字", 23 | creditcard: "請輸入有效的信用卡號碼", 24 | equalTo: "請重複輸入一次", 25 | extension: "請輸入有效的後綴", 26 | maxlength: $.validator.format("最多 {0} 個字"), 27 | minlength: $.validator.format("最少 {0} 個字"), 28 | rangelength: $.validator.format("請輸入長度為 {0} 至 {1} 之間的字串"), 29 | range: $.validator.format("請輸入 {0} 至 {1} 之間的數值"), 30 | max: $.validator.format("請輸入不大於 {0} 的數值"), 31 | min: $.validator.format("請輸入不小於 {0} 的數值") 32 | }); 33 | 34 | })); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/messages_zh_TW.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"必須填寫",remote:"請修正此欄位",email:"請輸入有效的電子郵件",url:"請輸入有效的網址",date:"請輸入有效的日期",dateISO:"請輸入有效的日期 (YYYY-MM-DD)",number:"請輸入正確的數值",digits:"只可輸入數字",creditcard:"請輸入有效的信用卡號碼",equalTo:"請重複輸入一次",extension:"請輸入有效的後綴",maxlength:a.validator.format("最多 {0} 個字"),minlength:a.validator.format("最少 {0} 個字"),rangelength:a.validator.format("請輸入長度為 {0} 至 {1} 之間的字串"),range:a.validator.format("請輸入 {0} 至 {1} 之間的數值"),max:a.validator.format("請輸入不大於 {0} 的數值"),min:a.validator.format("請輸入不小於 {0} 的數值")})}); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/methods_de.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Localized default methods for the jQuery validation plugin. 11 | * Locale: DE 12 | */ 13 | $.extend($.validator.methods, { 14 | date: function(value, element) { 15 | return this.optional(element) || /^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(value); 16 | }, 17 | number: function(value, element) { 18 | return this.optional(element) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(value); 19 | } 20 | }); 21 | 22 | })); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/methods_de.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(a)}})}); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/methods_es_CL.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Localized default methods for the jQuery validation plugin. 11 | * Locale: ES_CL 12 | */ 13 | $.extend($.validator.methods, { 14 | date: function(value, element) { 15 | return this.optional(element) || /^\d\d?\-\d\d?\-\d\d\d?\d?$/.test(value); 16 | }, 17 | number: function(value, element) { 18 | return this.optional(element) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(value); 19 | } 20 | }); 21 | 22 | })); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/methods_es_CL.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?\-\d\d?\-\d\d\d?\d?$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(a)}})}); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/methods_fi.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Localized default methods for the jQuery validation plugin. 11 | * Locale: FI 12 | */ 13 | $.extend($.validator.methods, { 14 | date: function(value, element) { 15 | return this.optional(element) || /^\d{1,2}\.\d{1,2}\.\d{4}$/.test(value); 16 | }, 17 | number: function(value, element) { 18 | return this.optional(element) || /^-?(?:\d+)(?:,\d+)?$/.test(value); 19 | } 20 | }); 21 | 22 | })); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/methods_fi.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d{1,2}\.\d{1,2}\.\d{4}$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+)(?:,\d+)?$/.test(a)}})}); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/methods_nl.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Localized default methods for the jQuery validation plugin. 11 | * Locale: NL 12 | */ 13 | $.extend($.validator.methods, { 14 | date: function(value, element) { 15 | return this.optional(element) || /^\d\d?[\.\/\-]\d\d?[\.\/\-]\d\d\d?\d?$/.test(value); 16 | } 17 | }); 18 | 19 | })); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/methods_nl.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?[\.\/\-]\d\d?[\.\/\-]\d\d\d?\d?$/.test(a)}})}); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/methods_pt.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Localized default methods for the jQuery validation plugin. 11 | * Locale: PT_BR 12 | */ 13 | $.extend($.validator.methods, { 14 | date: function(value, element) { 15 | return this.optional(element) || /^\d\d?\/\d\d?\/\d\d\d?\d?$/.test(value); 16 | } 17 | }); 18 | 19 | })); -------------------------------------------------------------------------------- /WebRoot/assets/js/jquery-validate/localization/methods_pt.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.13.0 - 7/1/2014 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?\/\d\d?\/\d\d\d?\d?$/.test(a)}})}); -------------------------------------------------------------------------------- /WebRoot/assets/js/jvectormap/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/jvectormap/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/jvectormap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/jvectormap/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/jvectormap/jquery-jvectormap-1.1.1.css: -------------------------------------------------------------------------------- 1 | .jvectormap-label { 2 | position: absolute; 3 | display: none; 4 | border: solid 1px #CDCDCD; 5 | -webkit-border-radius: 3px; 6 | -moz-border-radius: 3px; 7 | border-radius: 3px; 8 | background: #292929; 9 | color: white; 10 | font-family: sans-serif, Verdana; 11 | font-size: smaller; 12 | padding: 3px; 13 | } 14 | 15 | .jvectormap-zoomin, .jvectormap-zoomout { 16 | position: absolute; 17 | left: 10px; 18 | -webkit-border-radius: 3px; 19 | -moz-border-radius: 3px; 20 | border-radius: 3px; 21 | background: #292929; 22 | padding: 3px; 23 | color: white; 24 | width: 10px; 25 | height: 10px; 26 | cursor: pointer; 27 | line-height: 10px; 28 | text-align: center; 29 | } 30 | 31 | .jvectormap-zoomin { 32 | top: 10px; 33 | } 34 | 35 | .jvectormap-zoomout { 36 | top: 30px; 37 | } -------------------------------------------------------------------------------- /WebRoot/assets/js/jvectormap/jquery-jvectormap-1.2.2.css: -------------------------------------------------------------------------------- 1 | .jvectormap-label { 2 | position: absolute; 3 | display: none; 4 | border: solid 1px #CDCDCD; 5 | -webkit-border-radius: 3px; 6 | -moz-border-radius: 3px; 7 | border-radius: 3px; 8 | background: #292929; 9 | color: white; 10 | font-family: sans-serif, Verdana; 11 | font-size: smaller; 12 | padding: 3px; 13 | } 14 | 15 | .jvectormap-zoomin, .jvectormap-zoomout { 16 | position: absolute; 17 | left: 10px; 18 | -webkit-border-radius: 3px; 19 | -moz-border-radius: 3px; 20 | border-radius: 3px; 21 | background: #292929; 22 | padding: 3px; 23 | color: white; 24 | width: 10px; 25 | height: 10px; 26 | cursor: pointer; 27 | line-height: 10px; 28 | text-align: center; 29 | } 30 | 31 | .jvectormap-zoomin { 32 | top: 10px; 33 | } 34 | 35 | .jvectormap-zoomout { 36 | top: 30px; 37 | } -------------------------------------------------------------------------------- /WebRoot/assets/js/knob/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/knob/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/multiselect/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/multiselect/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/multiselect/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/multiselect/css/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/multiselect/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/multiselect/img/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/multiselect/img/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/multiselect/img/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/multiselect/img/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/multiselect/img/switch.png -------------------------------------------------------------------------------- /WebRoot/assets/js/multiselect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/multiselect/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/multiselect/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/multiselect/js/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/rwd-table/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/rwd-table/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/rwd-table/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/rwd-table/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/select2/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | 3 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2014 Igor Vaynberg 2 | 3 | Version: @@ver@@ Timestamp: @@timestamp@@ 4 | 5 | This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU 6 | General Public License version 2 (the "GPL License"). You may choose either license to govern your 7 | use of this software only upon the condition that you accept all of the terms of either the Apache 8 | License or the GPL License. 9 | 10 | You may obtain a copy of the Apache License and the GPL License at: 11 | 12 | http://www.apache.org/licenses/LICENSE-2.0 13 | http://www.gnu.org/licenses/gpl-2.0.html 14 | 15 | Unless required by applicable law or agreed to in writing, software distributed under the Apache License 16 | or the GPL Licesnse is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 17 | either express or implied. See the Apache License and the GPL License for the specific language governing 18 | permissions and limitations under the Apache License and the GPL License. 19 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/select2/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/select2/select2-spinner.gif -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/select2/select2.png -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_az.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Azerbaijani translation. 3 | * 4 | * Author: Farhad Safarov 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['az'] = { 10 | formatMatches: function (matches) { return matches + " nəticə mövcuddur, hərəkət etdirmək üçün yuxarı və aşağı düymələrindən istifadə edin."; }, 11 | formatNoMatches: function () { return "Nəticə tapılmadı"; }, 12 | formatInputTooShort: function (input, min) { var n = min - input.length; return n + " simvol daxil edin"; }, 13 | formatInputTooLong: function (input, max) { var n = input.length - max; return n + " simvol silin"; }, 14 | formatSelectionTooBig: function (limit) { return "Sadəcə " + limit + " element seçə bilərsiniz"; }, 15 | formatLoadMore: function (pageNumber) { return "Daha çox nəticə yüklənir…"; }, 16 | formatSearching: function () { return "Axtarılır…"; } 17 | }; 18 | 19 | $.extend($.fn.select2.defaults, $.fn.select2.locales['az']); 20 | })(jQuery); 21 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_bg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Bulgarian translation. 3 | * 4 | * @author Lubomir Vikev 5 | * @author Uriy Efremochkin 6 | */ 7 | (function ($) { 8 | "use strict"; 9 | 10 | $.fn.select2.locales['bg'] = { 11 | formatNoMatches: function () { return "Няма намерени съвпадения"; }, 12 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Моля въведете още " + n + " символ" + (n > 1 ? "а" : ""); }, 13 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Моля въведете с " + n + " по-малко символ" + (n > 1 ? "а" : ""); }, 14 | formatSelectionTooBig: function (limit) { return "Можете да направите до " + limit + (limit > 1 ? " избора" : " избор"); }, 15 | formatLoadMore: function (pageNumber) { return "Зареждат се още…"; }, 16 | formatSearching: function () { return "Търсене…"; } 17 | }; 18 | 19 | $.extend($.fn.select2.defaults, $.fn.select2.locales['bg']); 20 | })(jQuery); 21 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_ca.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Catalan translation. 3 | * 4 | * Author: David Planella 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['ca'] = { 10 | formatNoMatches: function () { return "No s'ha trobat cap coincidència"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Introduïu " + n + " caràcter" + (n == 1 ? "" : "s") + " més"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Introduïu " + n + " caràcter" + (n == 1? "" : "s") + "menys"; }, 13 | formatSelectionTooBig: function (limit) { return "Només podeu seleccionar " + limit + " element" + (limit == 1 ? "" : "s"); }, 14 | formatLoadMore: function (pageNumber) { return "S'estan carregant més resultats…"; }, 15 | formatSearching: function () { return "S'està cercant…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ca']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_da.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Danish translation. 3 | * 4 | * Author: Anders Jenbo 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['da'] = { 10 | formatNoMatches: function () { return "Ingen resultater fundet"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Angiv venligst " + n + " tegn mere"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Angiv venligst " + n + " tegn mindre"; }, 13 | formatSelectionTooBig: function (limit) { return "Du kan kun vælge " + limit + " emne" + (limit === 1 ? "" : "r"); }, 14 | formatLoadMore: function (pageNumber) { return "Indlæser flere resultater…"; }, 15 | formatSearching: function () { return "Søger…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['da']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_de.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 German translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['de'] = { 8 | formatNoMatches: function () { return "Keine Übereinstimmungen gefunden"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Bitte " + n + " Zeichen mehr eingeben"; }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Bitte " + n + " Zeichen weniger eingeben"; }, 11 | formatSelectionTooBig: function (limit) { return "Sie können nur " + limit + " Eintr" + (limit === 1 ? "ag" : "äge") + " auswählen"; }, 12 | formatLoadMore: function (pageNumber) { return "Lade mehr Ergebnisse…"; }, 13 | formatSearching: function () { return "Suche…"; }, 14 | formatMatches: function (matches) { return matches + " Ergebnis " + (matches > 1 ? "se" : "") + " verfügbar, zum Navigieren die Hoch-/Runter-Pfeiltasten verwenden."; } 15 | }; 16 | 17 | $.extend($.fn.select2.defaults, $.fn.select2.locales['de']); 18 | })(jQuery); -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_el.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Greek translation. 3 | * 4 | * @author Uriy Efremochkin 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['el'] = { 10 | formatNoMatches: function () { return "Δεν βρέθηκαν αποτελέσματα"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Παρακαλούμε εισάγετε " + n + " περισσότερο" + (n > 1 ? "υς" : "") + " χαρακτήρ" + (n > 1 ? "ες" : "α"); }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Παρακαλούμε διαγράψτε " + n + " χαρακτήρ" + (n > 1 ? "ες" : "α"); }, 13 | formatSelectionTooBig: function (limit) { return "Μπορείτε να επιλέξετε μόνο " + limit + " αντικείμεν" + (limit > 1 ? "α" : "ο"); }, 14 | formatLoadMore: function (pageNumber) { return "Φόρτωση περισσότερων…"; }, 15 | formatSearching: function () { return "Αναζήτηση…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['el']); 19 | })(jQuery); -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_es.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Spanish translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['es'] = { 8 | formatNoMatches: function () { return "No se encontraron resultados"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Por favor, introduzca " + n + " car" + (n == 1? "ácter" : "acteres"); }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Por favor, elimine " + n + " car" + (n == 1? "ácter" : "acteres"); }, 11 | formatSelectionTooBig: function (limit) { return "Sólo puede seleccionar " + limit + " elemento" + (limit == 1 ? "" : "s"); }, 12 | formatLoadMore: function (pageNumber) { return "Cargando más resultados…"; }, 13 | formatSearching: function () { return "Buscando…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['es']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_et.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Estonian translation. 3 | * 4 | * Author: Kuldar Kalvik 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['et'] = { 10 | formatNoMatches: function () { return "Tulemused puuduvad"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Sisesta " + n + " täht" + (n == 1 ? "" : "e") + " rohkem"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Sisesta " + n + " täht" + (n == 1? "" : "e") + " vähem"; }, 13 | formatSelectionTooBig: function (limit) { return "Saad vaid " + limit + " tulemus" + (limit == 1 ? "e" : "t") + " valida"; }, 14 | formatLoadMore: function (pageNumber) { return "Laen tulemusi.."; }, 15 | formatSearching: function () { return "Otsin.."; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['et']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_fi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Finnish translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | $.fn.select2.locales['fi'] = { 7 | formatNoMatches: function () { 8 | return "Ei tuloksia"; 9 | }, 10 | formatInputTooShort: function (input, min) { 11 | var n = min - input.length; 12 | return "Ole hyvä ja anna " + n + " merkkiä lisää"; 13 | }, 14 | formatInputTooLong: function (input, max) { 15 | var n = input.length - max; 16 | return "Ole hyvä ja anna " + n + " merkkiä vähemmän"; 17 | }, 18 | formatSelectionTooBig: function (limit) { 19 | return "Voit valita ainoastaan " + limit + " kpl"; 20 | }, 21 | formatLoadMore: function (pageNumber) { 22 | return "Ladataan lisää tuloksia…"; 23 | }, 24 | formatSearching: function () { 25 | return "Etsitään…"; 26 | } 27 | }; 28 | 29 | $.extend($.fn.select2.defaults, $.fn.select2.locales['fi']); 30 | })(jQuery); 31 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Hebrew translation. 3 | * 4 | * Author: Yakir Sitbon 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['he'] = { 10 | formatNoMatches: function () { return "לא נמצאו התאמות"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "נא להזין עוד " + n + " תווים נוספים"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "נא להזין פחות " + n + " תווים"; }, 13 | formatSelectionTooBig: function (limit) { return "ניתן לבחור " + limit + " פריטים"; }, 14 | formatLoadMore: function (pageNumber) { return "טוען תוצאות נוספות…"; }, 15 | formatSearching: function () { return "מחפש…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['he']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_hu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Hungarian translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['hu'] = { 8 | formatNoMatches: function () { return "Nincs találat."; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Túl rövid. Még " + n + " karakter hiányzik."; }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Túl hosszú. " + n + " karakterrel több, mint kellene."; }, 11 | formatSelectionTooBig: function (limit) { return "Csak " + limit + " elemet lehet kiválasztani."; }, 12 | formatLoadMore: function (pageNumber) { return "Töltés…"; }, 13 | formatSearching: function () { return "Keresés…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['hu']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_id.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Indonesian translation. 3 | * 4 | * Author: Ibrahim Yusuf 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['id'] = { 10 | formatNoMatches: function () { return "Tidak ada data yang sesuai"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Masukkan " + n + " huruf lagi" + (n == 1 ? "" : "s"); }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Hapus " + n + " huruf" + (n == 1 ? "" : "s"); }, 13 | formatSelectionTooBig: function (limit) { return "Anda hanya dapat memilih " + limit + " pilihan" + (limit == 1 ? "" : "s"); }, 14 | formatLoadMore: function (pageNumber) { return "Mengambil data…"; }, 15 | formatSearching: function () { return "Mencari…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['id']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_is.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Icelandic translation. 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['is'] = { 8 | formatNoMatches: function () { return "Ekkert fannst"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Vinsamlegast skrifið " + n + " staf" + (n > 1 ? "i" : "") + " í viðbót"; }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Vinsamlegast styttið texta um " + n + " staf" + (n > 1 ? "i" : ""); }, 11 | formatSelectionTooBig: function (limit) { return "Þú getur aðeins valið " + limit + " atriði"; }, 12 | formatLoadMore: function (pageNumber) { return "Sæki fleiri niðurstöður…"; }, 13 | formatSearching: function () { return "Leita…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['is']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_it.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Italian translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['it'] = { 8 | formatNoMatches: function () { return "Nessuna corrispondenza trovata"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Inserisci ancora " + n + " caratter" + (n == 1? "e" : "i"); }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Inserisci " + n + " caratter" + (n == 1? "e" : "i") + " in meno"; }, 11 | formatSelectionTooBig: function (limit) { return "Puoi selezionare solo " + limit + " element" + (limit == 1 ? "o" : "i"); }, 12 | formatLoadMore: function (pageNumber) { return "Caricamento in corso…"; }, 13 | formatSearching: function () { return "Ricerca…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['it']); 17 | })(jQuery); -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Japanese translation. 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['ja'] = { 8 | formatNoMatches: function () { return "該当なし"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "後" + n + "文字入れてください"; }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "検索文字列が" + n + "文字長すぎます"; }, 11 | formatSelectionTooBig: function (limit) { return "最多で" + limit + "項目までしか選択できません"; }, 12 | formatLoadMore: function (pageNumber) { return "読込中・・・"; }, 13 | formatSearching: function () { return "検索中・・・"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ja']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_ka.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Georgian (Kartuli) translation. 3 | * 4 | * Author: Dimitri Kurashvili dimakura@gmail.com 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['ka'] = { 10 | formatNoMatches: function () { return "ვერ მოიძებნა"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "გთხოვთ შეიყვანოთ კიდევ " + n + " სიმბოლო"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "გთხოვთ წაშალოთ " + n + " სიმბოლო"; }, 13 | formatSelectionTooBig: function (limit) { return "თქვენ შეგიძლიათ მხოლოდ " + limit + " ჩანაწერის მონიშვნა"; }, 14 | formatLoadMore: function (pageNumber) { return "შედეგის ჩატვირთვა…"; }, 15 | formatSearching: function () { return "ძებნა…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ka']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_ko.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Korean translation. 3 | * 4 | * @author Swen Mun 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['ko'] = { 10 | formatNoMatches: function () { return "결과 없음"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "너무 짧습니다. "+n+"글자 더 입력해주세요."; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "너무 깁니다. "+n+"글자 지워주세요."; }, 13 | formatSelectionTooBig: function (limit) { return "최대 "+limit+"개까지만 선택하실 수 있습니다."; }, 14 | formatLoadMore: function (pageNumber) { return "불러오는 중…"; }, 15 | formatSearching: function () { return "검색 중…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ko']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_lv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Latvian translation. 3 | * 4 | * @author Uriy Efremochkin 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['lv'] = { 10 | formatNoMatches: function () { return "Sakritību nav"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Lūdzu ievadiet vēl " + n + " simbol" + (n == 11 ? "us" : n%10 == 1 ? "u" : "us"); }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Lūdzu ievadiet par " + n + " simbol" + (n == 11 ? "iem" : n%10 == 1 ? "u" : "iem") + " mazāk"; }, 13 | formatSelectionTooBig: function (limit) { return "Jūs varat izvēlēties ne vairāk kā " + limit + " element" + (limit == 11 ? "us" : limit%10 == 1 ? "u" : "us"); }, 14 | formatLoadMore: function (pageNumber) { return "Datu ielāde…"; }, 15 | formatSearching: function () { return "Meklēšana…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['lv']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_mk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Macedonian translation. 3 | * 4 | * Author: Marko Aleksic 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['mk'] = { 10 | formatNoMatches: function () { return "Нема пронајдено совпаѓања"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Ве молиме внесете уште " + n + " карактер" + (n == 1 ? "" : "и"); }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Ве молиме внесете " + n + " помалку карактер" + (n == 1? "" : "и"); }, 13 | formatSelectionTooBig: function (limit) { return "Можете да изберете само " + limit + " ставк" + (limit == 1 ? "а" : "и"); }, 14 | formatLoadMore: function (pageNumber) { return "Вчитување резултати…"; }, 15 | formatSearching: function () { return "Пребарување…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['mk']); 19 | })(jQuery); -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_ms.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Malay translation. 3 | * 4 | * Author: Kepoweran 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['ms'] = { 10 | formatNoMatches: function () { return "Tiada padanan yang ditemui"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Sila masukkan " + n + " aksara lagi"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Sila hapuskan " + n + " aksara"; }, 13 | formatSelectionTooBig: function (limit) { return "Anda hanya boleh memilih " + limit + " pilihan"; }, 14 | formatLoadMore: function (pageNumber) { return "Sedang memuatkan keputusan…"; }, 15 | formatSearching: function () { return "Mencari…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ms']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_nl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Dutch translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['nl'] = { 8 | formatNoMatches: function () { return "Geen resultaten gevonden"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Vul nog " + n + " karakter" + (n == 1? "" : "s") + " in"; }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Haal " + n + " karakter" + (n == 1? "" : "s") + " weg"; }, 11 | formatSelectionTooBig: function (limit) { return "Maximaal " + limit + " item" + (limit == 1 ? "" : "s") + " toegestaan"; }, 12 | formatLoadMore: function (pageNumber) { return "Meer resultaten laden…"; }, 13 | formatSearching: function () { return "Zoeken…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['nl']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_no.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Norwegian translation. 3 | * 4 | * Author: Torgeir Veimo 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['no'] = { 10 | formatNoMatches: function () { return "Ingen treff"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Vennligst skriv inn " + n + (n>1 ? " flere tegn" : " tegn til"); }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Vennligst fjern " + n + " tegn"; }, 13 | formatSelectionTooBig: function (limit) { return "Du kan velge maks " + limit + " elementer"; }, 14 | formatLoadMore: function (pageNumber) { return "Laster flere resultater…"; }, 15 | formatSearching: function () { return "Søker…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['no']); 19 | })(jQuery); 20 | 21 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_pt-BR.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Brazilian Portuguese translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['pt-BR'] = { 8 | formatNoMatches: function () { return "Nenhum resultado encontrado"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Digite mais " + n + " caracter" + (n == 1? "" : "es"); }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Apague " + n + " caracter" + (n == 1? "" : "es"); }, 11 | formatSelectionTooBig: function (limit) { return "Só é possível selecionar " + limit + " elemento" + (limit == 1 ? "" : "s"); }, 12 | formatLoadMore: function (pageNumber) { return "Carregando mais resultados…"; }, 13 | formatSearching: function () { return "Buscando…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['pt-BR']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_pt-PT.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Portuguese (Portugal) translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['pt-PT'] = { 8 | formatNoMatches: function () { return "Nenhum resultado encontrado"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Introduza " + n + " car" + (n == 1 ? "ácter" : "acteres"); }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Apague " + n + " car" + (n == 1 ? "ácter" : "acteres"); }, 11 | formatSelectionTooBig: function (limit) { return "Só é possível selecionar " + limit + " elemento" + (limit == 1 ? "" : "s"); }, 12 | formatLoadMore: function (pageNumber) { return "A carregar mais resultados…"; }, 13 | formatSearching: function () { return "A pesquisar…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['pt-PT']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_ro.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Romanian translation. 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | 7 | $.fn.select2.locales['ro'] = { 8 | formatNoMatches: function () { return "Nu a fost găsit nimic"; }, 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Vă rugăm să introduceți incă " + n + " caracter" + (n == 1 ? "" : "e"); }, 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Vă rugăm să introduceți mai puțin de " + n + " caracter" + (n == 1? "" : "e"); }, 11 | formatSelectionTooBig: function (limit) { return "Aveți voie să selectați cel mult " + limit + " element" + (limit == 1 ? "" : "e"); }, 12 | formatLoadMore: function (pageNumber) { return "Se încarcă…"; }, 13 | formatSearching: function () { return "Căutare…"; } 14 | }; 15 | 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ro']); 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_sv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Swedish translation. 3 | * 4 | * Author: Jens Rantil 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['sv'] = { 10 | formatNoMatches: function () { return "Inga träffar"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Var god skriv in " + n + (n>1 ? " till tecken" : " tecken till"); }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Var god sudda ut " + n + " tecken"; }, 13 | formatSelectionTooBig: function (limit) { return "Du kan max välja " + limit + " element"; }, 14 | formatLoadMore: function (pageNumber) { return "Laddar fler resultat…"; }, 15 | formatSearching: function () { return "Söker…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['sv']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_th.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Thai translation. 3 | * 4 | * Author: Atsawin Chaowanakritsanakul 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['th'] = { 10 | formatNoMatches: function () { return "ไม่พบข้อมูล"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "โปรดพิมพ์เพิ่มอีก " + n + " ตัวอักษร"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "โปรดลบออก " + n + " ตัวอักษร"; }, 13 | formatSelectionTooBig: function (limit) { return "คุณสามารถเลือกได้ไม่เกิน " + limit + " รายการ"; }, 14 | formatLoadMore: function (pageNumber) { return "กำลังค้นข้อมูลเพิ่ม…"; }, 15 | formatSearching: function () { return "กำลังค้นข้อมูล…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['th']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_tr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Turkish translation. 3 | * 4 | * Author: Salim KAYABAŞI 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['tr'] = { 10 | formatNoMatches: function () { return "Sonuç bulunamadı"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "En az " + n + " karakter daha girmelisiniz"; }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return n + " karakter azaltmalısınız"; }, 13 | formatSelectionTooBig: function (limit) { return "Sadece " + limit + " seçim yapabilirsiniz"; }, 14 | formatLoadMore: function (pageNumber) { return "Daha fazla…"; }, 15 | formatSearching: function () { return "Aranıyor…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['tr']); 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_ug-CN.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Uyghur translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | $.fn.select2.locales['ug-CN'] = { 7 | formatNoMatches: function () { return "ماس كېلىدىغان ئۇچۇر تېپىلمىدى"; }, 8 | formatInputTooShort: function (input, min) { var n = min - input.length; return "يەنە " + n + " ھەرپ كىرگۈزۈڭ";}, 9 | formatInputTooLong: function (input, max) { var n = input.length - max; return "" + n + "ھەرپ ئۆچۈرۈڭ";}, 10 | formatSelectionTooBig: function (limit) { return "ئەڭ كۆپ بولغاندا" + limit + " تال ئۇچۇر تاللىيالايسىز"; }, 11 | formatLoadMore: function (pageNumber) { return "ئۇچۇرلار ئوقۇلىۋاتىدۇ…"; }, 12 | formatSearching: function () { return "ئىزدەۋاتىدۇ…"; } 13 | }; 14 | 15 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ug-CN']); 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_vi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Vietnamese translation. 3 | * 4 | * Author: Long Nguyen 5 | */ 6 | (function ($) { 7 | "use strict"; 8 | 9 | $.fn.select2.locales['vi'] = { 10 | formatNoMatches: function () { return "Không tìm thấy kết quả"; }, 11 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Vui lòng nhập nhiều hơn " + n + " ký tự" + (n == 1 ? "" : "s"); }, 12 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Vui lòng nhập ít hơn " + n + " ký tự" + (n == 1? "" : "s"); }, 13 | formatSelectionTooBig: function (limit) { return "Chỉ có thể chọn được " + limit + " tùy chọn" + (limit == 1 ? "" : "s"); }, 14 | formatLoadMore: function (pageNumber) { return "Đang lấy thêm kết quả…"; }, 15 | formatSearching: function () { return "Đang tìm…"; } 16 | }; 17 | 18 | $.extend($.fn.select2.defaults, $.fn.select2.locales['vi']); 19 | })(jQuery); 20 | 21 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_zh-CN.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Chinese translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | $.fn.select2.locales['zh-CN'] = { 7 | formatNoMatches: function () { return "没有找到匹配项"; }, 8 | formatInputTooShort: function (input, min) { var n = min - input.length; return "请再输入" + n + "个字符";}, 9 | formatInputTooLong: function (input, max) { var n = input.length - max; return "请删掉" + n + "个字符";}, 10 | formatSelectionTooBig: function (limit) { return "你只能选择最多" + limit + "项"; }, 11 | formatLoadMore: function (pageNumber) { return "加载结果中…"; }, 12 | formatSearching: function () { return "搜索中…"; } 13 | }; 14 | 15 | $.extend($.fn.select2.defaults, $.fn.select2.locales['zh-CN']); 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2_locale_zh-TW.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Select2 Traditional Chinese translation 3 | */ 4 | (function ($) { 5 | "use strict"; 6 | $.fn.select2.locales['zh-TW'] = { 7 | formatNoMatches: function () { return "沒有找到相符的項目"; }, 8 | formatInputTooShort: function (input, min) { var n = min - input.length; return "請再輸入" + n + "個字元";}, 9 | formatInputTooLong: function (input, max) { var n = input.length - max; return "請刪掉" + n + "個字元";}, 10 | formatSelectionTooBig: function (limit) { return "你只能選擇最多" + limit + "項"; }, 11 | formatLoadMore: function (pageNumber) { return "載入中…"; }, 12 | formatSearching: function () { return "搜尋中…"; } 13 | }; 14 | 15 | $.extend($.fn.select2.defaults, $.fn.select2.locales['zh-TW']); 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /WebRoot/assets/js/select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/select2/select2x2.png -------------------------------------------------------------------------------- /WebRoot/assets/js/selectboxit/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/selectboxit/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/selectboxit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/selectboxit/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/tagsinput/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/tagsinput/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/timepicker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/timepicker/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/toastr/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/toastr/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/toastr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/toastr/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/toastr/toastr-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/toastr/toastr-icon.png -------------------------------------------------------------------------------- /WebRoot/assets/js/tocify/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/tocify/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/tocify/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/tocify/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/uikit/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/uikit/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/uikit/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/uikit/css/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/uikit/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/uikit/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /WebRoot/assets/js/uikit/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/uikit/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /WebRoot/assets/js/uikit/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/uikit/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /WebRoot/assets/js/uikit/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/uikit/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /WebRoot/assets/js/uikit/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/uikit/fonts/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/uikit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/uikit/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/uikit/js/addons/form-password.min.js: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.10.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | 3 | !function(a){var b;jQuery&&jQuery.UIkit&&(b=a(jQuery,jQuery.UIkit)),"function"==typeof define&&define.amd&&define("uikit-form-password",["uikit"],function(){return b||a(jQuery,jQuery.UIkit)})}(function(a,b){return b.component("formPassword",{defaults:{lblShow:"Show",lblHide:"Hide"},init:function(){var a=this;this.on("click",function(b){if(b.preventDefault(),a.input.length){var c=a.input.attr("type");a.input.attr("type","text"==c?"password":"text"),a.element.text(a.options["text"==c?"lblShow":"lblHide"])}}),this.input=this.element.next("input").length?this.element.next("input"):this.element.prev("input"),this.element.text(this.options[this.input.is("[type='password']")?"lblShow":"lblHide"]),this.element.data("formPassword",this)}}),b.$doc.on("click.formpassword.uikit","[data-uk-form-password]",function(c){var d=a(this);if(!d.data("formPassword")){c.preventDefault();{b.formPassword(d,b.Utils.options(d.attr("data-uk-form-password")))}d.trigger("click")}}),b.formPassword}); -------------------------------------------------------------------------------- /WebRoot/assets/js/uikit/js/addons/form-select.min.js: -------------------------------------------------------------------------------- 1 | /*! UIkit 2.10.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ 2 | 3 | !function(a){var b;jQuery&&jQuery.UIkit&&(b=a(jQuery,jQuery.UIkit)),"function"==typeof define&&define.amd&&define("uikit-form-select",["uikit"],function(){return b||a(jQuery,jQuery.UIkit)})}(function(a,b){return b.component("formSelect",{defaults:{target:">span:first"},init:function(){var a=this;this.target=this.find(this.options.target),this.select=this.find("select"),this.select.on("change",function(){var b=a.select[0],c=function(){try{a.target.text(b.options[b.selectedIndex].text)}catch(d){}return c};return c()}()),this.element.data("formSelect",this)}}),b.ready(function(c){a("[data-uk-form-select]",c).each(function(){var c=a(this);if(!c.data("formSelect")){b.formSelect(c,b.Utils.options(c.attr("data-uk-form-select")))}})}),b.formSelect}); -------------------------------------------------------------------------------- /WebRoot/assets/js/uikit/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/uikit/js/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/uikit/less/addons/upload.less: -------------------------------------------------------------------------------- 1 | // Name: Upload 2 | // Description: Provides a dragover state for uploads 3 | // 4 | // Component: `uk-upload` 5 | // 6 | // States: `uk-dragover` 7 | // 8 | // ======================================================================== 9 | 10 | 11 | // Variables 12 | // ======================================================================== 13 | 14 | @uk-upload-dragover-box-shadow: rgba(100,100,100,0.3); 15 | @uk-upload-dragover-box-shadow-blur: 20px; 16 | 17 | 18 | /* ======================================================================== 19 | Component: Upload 20 | ========================================================================== */ 21 | 22 | /* 23 | * Create a box-shadow when dragging a file over the upload area 24 | */ 25 | 26 | .uk-dragover { box-shadow: 0 0 @uk-upload-dragover-box-shadow-blur @uk-upload-dragover-box-shadow; } 27 | 28 | 29 | // Hooks 30 | // ======================================================================== 31 | 32 | .hook-upload-misc; 33 | 34 | .hook-upload-misc() {} -------------------------------------------------------------------------------- /WebRoot/assets/js/uikit/less/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/uikit/less/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/uikit/less/switcher.less: -------------------------------------------------------------------------------- 1 | // Name: Switcher 2 | // Description: Defines styles for the switcher 3 | // 4 | // Component: `uk-switcher` 5 | // 6 | // States: `uk-active` 7 | // 8 | // ======================================================================== 9 | 10 | 11 | /* ======================================================================== 12 | Component: Switcher 13 | ========================================================================== */ 14 | 15 | .uk-switcher { 16 | margin: 0; 17 | padding: 0; 18 | list-style: none; 19 | } 20 | 21 | /* 22 | * Items 23 | */ 24 | 25 | .uk-switcher > *:not(.uk-active) { display: none; } 26 | 27 | 28 | // Hooks 29 | // ======================================================================== 30 | 31 | .hook-switcher-misc; 32 | 33 | .hook-switcher-misc() {} -------------------------------------------------------------------------------- /WebRoot/assets/js/uikit/less/uikit-addons.less: -------------------------------------------------------------------------------- 1 | // LESS related 2 | @import "variables.less"; 3 | 4 | // Navs 5 | @import "addons/dotnav.less"; 6 | @import "addons/slidenav.less"; 7 | 8 | // Common 9 | @import "addons/form-advanced.less"; 10 | @import "addons/form-file.less"; 11 | @import "addons/form-password.less"; 12 | @import "addons/form-select.less"; 13 | @import "addons/placeholder.less"; 14 | 15 | // JavaScript 16 | @import "addons/autocomplete.less"; 17 | @import "addons/datepicker.less"; 18 | @import "addons/htmleditor.less"; 19 | @import "addons/nestable.less"; 20 | @import "addons/notify.less"; 21 | @import "addons/search.less"; 22 | @import "addons/sortable.less"; 23 | @import "addons/sticky.less"; 24 | @import "addons/upload.less"; 25 | @import "addons/flex.less"; 26 | @import "addons/cover.less"; -------------------------------------------------------------------------------- /WebRoot/assets/js/uikit/less/variables.less: -------------------------------------------------------------------------------- 1 | // 2 | // Component: Variables 3 | // Description: Defines all color and style related values as variables 4 | // to allow easy customization for the most common cases. 5 | // 6 | // ======================================================================== 7 | 8 | 9 | // Global variables 10 | // ======================================================================== 11 | 12 | // 13 | // Breakpoints 14 | // 15 | 16 | @breakpoint-mini-max: (@breakpoint-small - 1); 17 | 18 | @breakpoint-small: 480px; 19 | @breakpoint-small-max: (@breakpoint-medium - 1); 20 | 21 | @breakpoint-medium: 768px; 22 | @breakpoint-medium-max: (@breakpoint-large - 1); 23 | 24 | @breakpoint-large: 960px; 25 | @breakpoint-large-max: (@breakpoint-xlarge - 1); 26 | 27 | @breakpoint-xlarge: 1220px; -------------------------------------------------------------------------------- /WebRoot/assets/js/uikit/vendor/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 | .CodeMirror-hint-active { 36 | background: #08f; 37 | color: white; 38 | } 39 | -------------------------------------------------------------------------------- /WebRoot/assets/js/uikit/vendor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/uikit/vendor/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/wysihtml5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/wysihtml5/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/wysihtml5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/wysihtml5/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/wysihtml5/lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/wysihtml5/lib/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/js/wysihtml5/lib/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/wysihtml5/lib/css/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/wysihtml5/lib/css/prettify.css: -------------------------------------------------------------------------------- 1 | .com { color: #93a1a1; } 2 | .lit { color: #195f91; } 3 | .pun, .opn, .clo { color: #93a1a1; } 4 | .fun { color: #dc322f; } 5 | .str, .atv { color: #D14; } 6 | .kwd, .linenums .tag { color: #1e347b; } 7 | .typ, .atn, .dec, .var { color: teal; } 8 | .pln { color: #48484c; } 9 | 10 | .prettyprint { 11 | padding: 8px; 12 | background-color: #f7f7f9; 13 | border: 1px solid #e1e1e8; 14 | } 15 | .prettyprint.linenums { 16 | -webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 17 | -moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 18 | box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 19 | } 20 | 21 | /* Specify class=linenums on a pre to get line numbering */ 22 | ol.linenums { 23 | margin: 0 0 0 33px; /* IE indents via margin-left */ 24 | } 25 | ol.linenums li { 26 | padding-left: 12px; 27 | color: #bebec5; 28 | line-height: 18px; 29 | text-shadow: 0 1px 0 #fff; 30 | } -------------------------------------------------------------------------------- /WebRoot/assets/js/wysihtml5/lib/css/wysiwyg-color.css: -------------------------------------------------------------------------------- 1 | .wysiwyg-color-black { 2 | color: black; 3 | } 4 | 5 | .wysiwyg-color-silver { 6 | color: silver; 7 | } 8 | 9 | .wysiwyg-color-gray { 10 | color: gray; 11 | } 12 | 13 | .wysiwyg-color-white { 14 | color: white; 15 | } 16 | 17 | .wysiwyg-color-maroon { 18 | color: maroon; 19 | } 20 | 21 | .wysiwyg-color-red { 22 | color: red; 23 | } 24 | 25 | .wysiwyg-color-purple { 26 | color: purple; 27 | } 28 | 29 | .wysiwyg-color-fuchsia { 30 | color: fuchsia; 31 | } 32 | 33 | .wysiwyg-color-green { 34 | color: green; 35 | } 36 | 37 | .wysiwyg-color-lime { 38 | color: lime; 39 | } 40 | 41 | .wysiwyg-color-olive { 42 | color: olive; 43 | } 44 | 45 | .wysiwyg-color-yellow { 46 | color: yellow; 47 | } 48 | 49 | .wysiwyg-color-navy { 50 | color: navy; 51 | } 52 | 53 | .wysiwyg-color-blue { 54 | color: blue; 55 | } 56 | 57 | .wysiwyg-color-teal { 58 | color: teal; 59 | } 60 | 61 | .wysiwyg-color-aqua { 62 | color: aqua; 63 | } 64 | 65 | .wysiwyg-color-orange { 66 | color: orange; 67 | } -------------------------------------------------------------------------------- /WebRoot/assets/js/wysihtml5/lib/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/wysihtml5/lib/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /WebRoot/assets/js/wysihtml5/lib/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/wysihtml5/lib/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /WebRoot/assets/js/wysihtml5/lib/img/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/wysihtml5/lib/img/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/wysihtml5/lib/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/wysihtml5/lib/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/wysihtml5/lib/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/wysihtml5/lib/js/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/wysihtml5/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/wysihtml5/src/index.html -------------------------------------------------------------------------------- /WebRoot/assets/js/wysihtml5/src/locales/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/js/wysihtml5/src/locales/index.html -------------------------------------------------------------------------------- /WebRoot/assets/less/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/less/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/less/bs-less/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/breadcrumbs.less: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal; 8 | margin-bottom: @line-height-computed; 9 | list-style: none; 10 | background-color: @breadcrumb-bg; 11 | border-radius: @border-radius-base; 12 | 13 | > li { 14 | display: inline-block; 15 | 16 | + li:before { 17 | content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space 18 | padding: 0 5px; 19 | color: @breadcrumb-color; 20 | } 21 | } 22 | 23 | > .active { 24 | color: @breadcrumb-active-color; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/close.less: -------------------------------------------------------------------------------- 1 | // 2 | // Close icons 3 | // -------------------------------------------------- 4 | 5 | 6 | .close { 7 | float: right; 8 | font-size: (@font-size-base * 1.5); 9 | font-weight: @close-font-weight; 10 | line-height: 1; 11 | color: @close-color; 12 | text-shadow: @close-text-shadow; 13 | .opacity(.2); 14 | 15 | &:hover, 16 | &:focus { 17 | color: @close-color; 18 | text-decoration: none; 19 | cursor: pointer; 20 | .opacity(.5); 21 | } 22 | 23 | // Additional properties for button version 24 | // iOS requires the button element instead of an anchor tag. 25 | // If you want the anchor version, it requires `href="#"`. 26 | button& { 27 | padding: 0; 28 | cursor: pointer; 29 | background: transparent; 30 | border: 0; 31 | -webkit-appearance: none; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/component-animations.less: -------------------------------------------------------------------------------- 1 | // 2 | // Component animations 3 | // -------------------------------------------------- 4 | 5 | // Heads up! 6 | // 7 | // We don't use the `.opacity()` mixin here since it causes a bug with text 8 | // fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552. 9 | 10 | .fade { 11 | opacity: 0; 12 | .transition(opacity .15s linear); 13 | &.in { 14 | opacity: 1; 15 | } 16 | } 17 | 18 | .collapse { 19 | display: none; 20 | 21 | &.in { display: block; } 22 | tr&.in { display: table-row; } 23 | tbody&.in { display: table-row-group; } 24 | } 25 | 26 | .collapsing { 27 | position: relative; 28 | height: 0; 29 | overflow: hidden; 30 | .transition(height .35s ease); 31 | } 32 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/less/bs-less/index.html -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/alerts.less: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .alert-variant(@background; @border; @text-color) { 4 | background-color: @background; 5 | border-color: @border; 6 | color: @text-color; 7 | 8 | hr { 9 | border-top-color: darken(@border, 5%); 10 | } 11 | .alert-link { 12 | color: darken(@text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/background-variant.less: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | .bg-variant(@color) { 4 | background-color: @color; 5 | a&:hover { 6 | background-color: darken(@color, 10%); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/border-radius.less: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | .border-top-radius(@radius) { 4 | border-top-right-radius: @radius; 5 | border-top-left-radius: @radius; 6 | } 7 | .border-right-radius(@radius) { 8 | border-bottom-right-radius: @radius; 9 | border-top-right-radius: @radius; 10 | } 11 | .border-bottom-radius(@radius) { 12 | border-bottom-right-radius: @radius; 13 | border-bottom-left-radius: @radius; 14 | } 15 | .border-left-radius(@radius) { 16 | border-bottom-left-radius: @radius; 17 | border-top-left-radius: @radius; 18 | } 19 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/clearfix.less: -------------------------------------------------------------------------------- 1 | // Clearfix 2 | // 3 | // For modern browsers 4 | // 1. The space content is one way to avoid an Opera bug when the 5 | // contenteditable attribute is included anywhere else in the document. 6 | // Otherwise it causes space to appear at the top and bottom of elements 7 | // that are clearfixed. 8 | // 2. The use of `table` rather than `block` is only necessary if using 9 | // `:before` to contain the top-margins of child elements. 10 | // 11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/ 12 | 13 | .clearfix() { 14 | &:before, 15 | &:after { 16 | content: " "; // 1 17 | display: table; // 2 18 | } 19 | &:after { 20 | clear: both; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/hide-text.less: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | // 3 | // Heads up! v3 launched with with only `.hide-text()`, but per our pattern for 4 | // mixins being reused as classes with the same name, this doesn't hold up. As 5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. 6 | // 7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 8 | 9 | // Deprecated as of v3.0.1 (will be removed in v4) 10 | .hide-text() { 11 | font: ~"0/0" a; 12 | color: transparent; 13 | text-shadow: none; 14 | background-color: transparent; 15 | border: 0; 16 | } 17 | 18 | // New mixin to use as of v3.0.1 19 | .text-hide() { 20 | .hide-text(); 21 | } 22 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/list-group.less: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | .list-group-item-variant(@state; @background; @color) { 4 | .list-group-item-@{state} { 5 | color: @color; 6 | background-color: @background; 7 | 8 | a& { 9 | color: @color; 10 | 11 | .list-group-item-heading { 12 | color: inherit; 13 | } 14 | 15 | &:hover, 16 | &:focus { 17 | color: @color; 18 | background-color: darken(@background, 5%); 19 | } 20 | &.active, 21 | &.active:hover, 22 | &.active:focus { 23 | color: #fff; 24 | background-color: @color; 25 | border-color: @color; 26 | } 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | .navbar-vertical-align(@element-height) { 7 | margin-top: ((@navbar-height - @element-height) / 2); 8 | margin-bottom: ((@navbar-height - @element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | opacity: @opacity; 5 | // IE8 filter 6 | @opacity-ie: (@opacity * 100); 7 | filter: ~"alpha(opacity=@{opacity-ie})"; 8 | } 9 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/pagination.less: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) { 4 | > li { 5 | > a, 6 | > span { 7 | padding: @padding-vertical @padding-horizontal; 8 | font-size: @font-size; 9 | } 10 | &:first-child { 11 | > a, 12 | > span { 13 | .border-left-radius(@border-radius); 14 | } 15 | } 16 | &:last-child { 17 | > a, 18 | > span { 19 | .border-right-radius(@border-radius); 20 | } 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/panels.less: -------------------------------------------------------------------------------- 1 | // Panels 2 | 3 | .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) { 4 | border-color: @border; 5 | 6 | & > .panel-heading { 7 | color: @heading-text-color; 8 | background-color: @heading-bg-color; 9 | border-color: @heading-border; 10 | 11 | + .panel-collapse > .panel-body { 12 | border-top-color: @border; 13 | } 14 | .badge { 15 | color: @heading-bg-color; 16 | background-color: @heading-text-color; 17 | } 18 | } 19 | & > .panel-footer { 20 | + .panel-collapse > .panel-body { 21 | border-bottom-color: @border; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/progress-bar.less: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | .progress-bar-variant(@color) { 4 | background-color: @color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | #gradient > .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- 1 | // Responsive utilities 2 | 3 | // 4 | // More easily include all the states for responsive-utilities.less. 5 | .responsive-visibility() { 6 | display: block !important; 7 | table& { display: table; } 8 | tr& { display: table-row !important; } 9 | th&, 10 | td& { display: table-cell !important; } 11 | } 12 | 13 | .responsive-invisibility() { 14 | display: none !important; 15 | } 16 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // Default 5 | outline: thin dotted; 6 | // WebKit 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/table-row.less: -------------------------------------------------------------------------------- 1 | // Tables 2 | 3 | .table-row-variant(@state; @background) { 4 | // Exact selectors below required to override `.table-striped` and prevent 5 | // inheritance to nested tables. 6 | .table > thead > tr, 7 | .table > tbody > tr, 8 | .table > tfoot > tr { 9 | > td.@{state}, 10 | > th.@{state}, 11 | &.@{state} > td, 12 | &.@{state} > th { 13 | background-color: @background; 14 | } 15 | } 16 | 17 | // Hover states for `.table-hover` 18 | // Note: this is not available for cells or rows within `thead` or `tfoot`. 19 | .table-hover > tbody > tr { 20 | > td.@{state}:hover, 21 | > th.@{state}:hover, 22 | &.@{state}:hover > td, 23 | &:hover > .@{state}, 24 | &.@{state}:hover > th { 25 | background-color: darken(@background, 5%); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover { 6 | color: darken(@color, 10%); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/responsive-embed.less: -------------------------------------------------------------------------------- 1 | // Embeds responsive 2 | // 3 | // Credit: Nicolas Gallagher and SUIT CSS. 4 | 5 | .embed-responsive { 6 | position: relative; 7 | display: block; 8 | height: 0; 9 | padding: 0; 10 | overflow: hidden; 11 | 12 | .embed-responsive-item, 13 | iframe, 14 | embed, 15 | object { 16 | position: absolute; 17 | top: 0; 18 | left: 0; 19 | bottom: 0; 20 | height: 100%; 21 | width: 100%; 22 | border: 0; 23 | } 24 | 25 | // Modifier class for 16:9 aspect ratio 26 | &.embed-responsive-16by9 { 27 | padding-bottom: 56.25%; 28 | } 29 | 30 | // Modifier class for 4:3 aspect ratio 31 | &.embed-responsive-4by3 { 32 | padding-bottom: 75%; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/thumbnails.less: -------------------------------------------------------------------------------- 1 | // 2 | // Thumbnails 3 | // -------------------------------------------------- 4 | 5 | 6 | // Mixin and adjust the regular image class 7 | .thumbnail { 8 | display: block; 9 | padding: @thumbnail-padding; 10 | margin-bottom: @line-height-computed; 11 | line-height: @line-height-base; 12 | background-color: @thumbnail-bg; 13 | border: 1px solid @thumbnail-border; 14 | border-radius: @thumbnail-border-radius; 15 | .transition(all .2s ease-in-out); 16 | 17 | > img, 18 | a > img { 19 | &:extend(.img-responsive); 20 | margin-left: auto; 21 | margin-right: auto; 22 | } 23 | 24 | // Add a hover state for linked versions only 25 | a&:hover, 26 | a&:focus, 27 | a&.active { 28 | border-color: @link-color; 29 | } 30 | 31 | // Image captions 32 | .caption { 33 | padding: @thumbnail-caption-padding; 34 | color: @thumbnail-caption-color; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/utilities.less: -------------------------------------------------------------------------------- 1 | // 2 | // Utility classes 3 | // -------------------------------------------------- 4 | 5 | 6 | // Floats 7 | // ------------------------- 8 | 9 | .clearfix { 10 | .clearfix(); 11 | } 12 | .center-block { 13 | .center-block(); 14 | } 15 | .pull-right { 16 | float: right !important; 17 | } 18 | .pull-left { 19 | float: left !important; 20 | } 21 | 22 | 23 | // Toggling content 24 | // ------------------------- 25 | 26 | // Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1 27 | .hide { 28 | display: none !important; 29 | } 30 | .show { 31 | display: block !important; 32 | } 33 | .invisible { 34 | visibility: hidden; 35 | } 36 | .text-hide { 37 | .text-hide(); 38 | } 39 | 40 | 41 | // Hide from screenreaders and browsers 42 | // 43 | // Credit: HTML5 Boilerplate 44 | 45 | .hidden { 46 | display: none !important; 47 | visibility: hidden !important; 48 | } 49 | 50 | 51 | // For Affix plugin 52 | // ------------------------- 53 | 54 | .affix { 55 | position: fixed; 56 | .translate3d(0, 0, 0); 57 | } 58 | -------------------------------------------------------------------------------- /WebRoot/assets/less/bs-less/wells.less: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: @well-bg; 12 | border: 1px solid @well-border; 13 | border-radius: @border-radius-base; 14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-lg { 23 | padding: 24px; 24 | border-radius: @border-radius-large; 25 | } 26 | .well-sm { 27 | padding: 9px; 28 | border-radius: @border-radius-small; 29 | } 30 | -------------------------------------------------------------------------------- /WebRoot/assets/less/global-classes.less: -------------------------------------------------------------------------------- 1 | // Global Classes that will be extended 2 | 3 | .transall { 4 | .transition(~"all 220ms ease-in-out"); 5 | } 6 | 7 | .clearfix { 8 | .clearfix(); 9 | } -------------------------------------------------------------------------------- /WebRoot/assets/less/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/less/index.html -------------------------------------------------------------------------------- /WebRoot/assets/less/other-less/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/less/other-less/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/less/other-less/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/less/other-less/index.html -------------------------------------------------------------------------------- /WebRoot/assets/less/xenon-components.less: -------------------------------------------------------------------------------- 1 | // Import Bootstrap Variables & Mixins 2 | @import "bs-less/variables.less"; 3 | @import "bs-less/mixins.less"; 4 | 5 | // Variables 6 | @import "xenon-less/variables.less"; 7 | @import "xenon-less/mixins.less"; 8 | 9 | // Global Classes 10 | @import "global-classes.less"; 11 | 12 | // LessHat 13 | @import "other-less/lesshat.less"; 14 | 15 | 16 | // Xenon Extra Components 17 | @import "xenon-less/mailbox.less"; 18 | @import "xenon-less/invoice.less"; 19 | @import "xenon-less/search.less"; 20 | @import "xenon-less/gallery.less"; 21 | @import "xenon-less/page-error.less"; 22 | @import "xenon-less/calendar.less"; 23 | @import "xenon-less/profile.less"; 24 | @import "xenon-less/vertical-timeline.less"; 25 | @import "xenon-less/portlets.less"; 26 | @import "xenon-less/notes.less"; 27 | @import "xenon-less/tocify.less"; 28 | @import "xenon-less/maps.less"; 29 | @import "xenon-less/loading-bar.less"; 30 | @import "xenon-less/toastr.less"; 31 | @import "xenon-less/nestable.less"; 32 | @import "xenon-less/login-page.less"; 33 | @import "xenon-less/widgets.less"; -------------------------------------------------------------------------------- /WebRoot/assets/less/xenon-forms.less: -------------------------------------------------------------------------------- 1 | // Import Bootstrap Variables & Mixins 2 | @import "bs-less/variables.less"; 3 | @import "bs-less/mixins.less"; 4 | 5 | // Variables 6 | @import "xenon-less/variables.less"; 7 | @import "xenon-less/mixins.less"; 8 | 9 | // Global Classes 10 | @import "global-classes.less"; 11 | 12 | // LessHat 13 | @import "other-less/lesshat.less"; 14 | 15 | // Forms 16 | @import "xenon-less/forms-datepicker.less"; 17 | @import "xenon-less/forms-daterangepicker.less"; 18 | @import "xenon-less/forms-timepicker.less"; 19 | @import "xenon-less/forms-colorpicker.less"; 20 | @import "xenon-less/forms-select2.less"; 21 | @import "xenon-less/forms-selectboxit.less"; 22 | @import "xenon-less/forms-tagsinput.less"; 23 | @import "xenon-less/forms-typeahead.less"; 24 | @import "xenon-less/forms-multiselect.less"; 25 | @import "xenon-less/forms-icheck.less"; 26 | @import "xenon-less/forms-wizard.less"; 27 | @import "xenon-less/forms-sliders.less"; 28 | @import "xenon-less/forms-wysihtml5.less"; 29 | @import "xenon-less/forms-dropzone.less"; 30 | @import "xenon-less/forms-iswitch.less"; -------------------------------------------------------------------------------- /WebRoot/assets/less/xenon-less/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/less/xenon-less/.DS_Store -------------------------------------------------------------------------------- /WebRoot/assets/less/xenon-less/breadcrumbs.less: -------------------------------------------------------------------------------- 1 | .breadcrumb { 2 | background: none; 3 | 4 | li { 5 | 6 | i { 7 | margin-right: 4px; 8 | } 9 | 10 | a { 11 | color: @main-text-color; 12 | } 13 | 14 | &.active > * { 15 | color: darken(@main-text-color, 20%); 16 | } 17 | } 18 | 19 | &.bc-2 { 20 | background-color: #eeeeee; 21 | } 22 | 23 | &.bc-3 { 24 | border: 1px solid @default-border-color; 25 | } 26 | 27 | &.auto-hidden { 28 | &:extend(.clearfix all); 29 | 30 | li { 31 | display: block; 32 | float: left; 33 | 34 | &:before { 35 | display: block; 36 | float: left; 37 | } 38 | 39 | a { 40 | display: block; 41 | float: left; 42 | white-space: nowrap; 43 | overflow: hidden; 44 | &:extend(.transall); 45 | 46 | &.collapsed { 47 | width: 45px !important; 48 | .text-overflow(); 49 | //.text-overflow(); 50 | } 51 | } 52 | } 53 | } 54 | } -------------------------------------------------------------------------------- /WebRoot/assets/less/xenon-less/forms-dropzone.less: -------------------------------------------------------------------------------- 1 | html .dropzone { 2 | border: 1px solid lighten(@input-border, 2%); 3 | .border-radius(@border-radius-base); 4 | } 5 | 6 | .droppable-area { 7 | @h: 150px; 8 | 9 | display: inline-block; 10 | background: darken(#fafafa, 5%); 11 | border: 2px dashed darken(@input-border, 10%); 12 | width: @h; 13 | min-height: @h !important; 14 | height: @h; 15 | line-height: @h; 16 | text-align: center; 17 | font-size: 15px; 18 | color: darken(@main-text-color, 20%); 19 | margin-bottom: @default-padding; 20 | .border-radius(50%); 21 | 22 | &.dz-clickable { 23 | cursor: pointer; 24 | } 25 | 26 | &.dz-drag-hover { 27 | background: @secondary-color; 28 | color: #fff; 29 | border-style: solid; 30 | border-color: darken(@secondary-color, 10%); 31 | border-width: 5px; 32 | line-height: @h - 7; 33 | &:extend(.transall); 34 | } 35 | } -------------------------------------------------------------------------------- /WebRoot/assets/less/xenon-less/forms-multiselect.less: -------------------------------------------------------------------------------- 1 | .ms-container { 2 | .background-size(21px) !important; 3 | 4 | // Options to select 5 | .ms-selectable { 6 | 7 | } 8 | 9 | // Selected options 10 | .ms-selection { 11 | 12 | } 13 | 14 | 15 | // List 16 | > div > .ms-list { 17 | border-color: @input-border !important; 18 | .box-shadow(none) !important; 19 | .border-radius(@border-radius-base); 20 | .user-select(none); 21 | overflow: hidden; /* If you dont use perfect scrollbar then remove this line */ 22 | 23 | &:active { 24 | border-color: darken(@input-border, 10%) !important; 25 | } 26 | 27 | &.ps-container { 28 | } 29 | 30 | li { 31 | display: block; 32 | width: 100%; 33 | 34 | span { 35 | font-size: @font-size-base; 36 | } 37 | 38 | &.ms-hover { 39 | background-color: @secondary-color; 40 | } 41 | 42 | &.ms-elem-selectable { 43 | } 44 | } 45 | } 46 | } -------------------------------------------------------------------------------- /WebRoot/assets/less/xenon-less/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/assets/less/xenon-less/index.html -------------------------------------------------------------------------------- /WebRoot/assets/less/xenon-less/loading-bar.less: -------------------------------------------------------------------------------- 1 | // Loading Bar 2 | .xenon-loading-bar { 3 | @h: 5px; 4 | 5 | position: fixed; 6 | left: 0; 7 | top: 0; 8 | right: 0; 9 | background: fade(@brand-primary, 30%); 10 | height: @h; 11 | z-index: 10000; 12 | top: 0px; 13 | .opacity(1); 14 | .transall; 15 | 16 | span { 17 | display: block; 18 | position: absolute; 19 | left: 0; 20 | top: 0; 21 | bottom: 0; 22 | width: 0%; 23 | background: @secondary-color; 24 | } 25 | 26 | &.progress-is-hidden { 27 | top: -@h; 28 | .opacity(.5); 29 | visibility: hidden; 30 | } 31 | } -------------------------------------------------------------------------------- /WebRoot/assets/less/xenon-less/modals.less: -------------------------------------------------------------------------------- 1 | .modal { 2 | 3 | .modal-dialog { 4 | 5 | .modal-content { 6 | .box-shadow(none); 7 | border-color: #f5f5f5; 8 | padding: @default-padding; 9 | 10 | .modal-header { 11 | margin: 0; 12 | padding: 0; 13 | border-bottom-width: 2px; 14 | padding-bottom: @default-padding/2; 15 | 16 | .close { 17 | outline: none; 18 | } 19 | } 20 | 21 | .modal-body { 22 | padding: @base-margin 0; 23 | } 24 | 25 | .modal-footer { 26 | padding: 0; 27 | padding-top: @default-padding/2; 28 | 29 | .btn { 30 | margin-bottom: 0; 31 | } 32 | } 33 | } 34 | } 35 | 36 | // Animations 37 | &.scale { 38 | 39 | .modal-dialog { 40 | .opacity(0); 41 | .scale(.8); 42 | .transition(~"all 1000ms ease-in-out"); 43 | .transform-origin(center bottom); 44 | } 45 | 46 | &.in .modal-dialog { 47 | .opacity(1); 48 | .scale(1); 49 | } 50 | } 51 | } -------------------------------------------------------------------------------- /WebRoot/assets/less/xenon-less/navbars.less: -------------------------------------------------------------------------------- 1 | nav.navbar { 2 | border: 0; 3 | 4 | form > .btn { 5 | margin-bottom: 0; 6 | } 7 | 8 | .navbar-header { 9 | 10 | .navbar-brand { 11 | padding-left: @default-padding; 12 | padding-right: @default-padding; 13 | } 14 | } 15 | 16 | .navbar-nav { 17 | 18 | li { 19 | 20 | a { 21 | padding-left: @base-margin; 22 | padding-right: @base-margin; 23 | } 24 | } 25 | } 26 | 27 | &.navbar-inverse { 28 | 29 | .navbar-toggle { 30 | 31 | i { 32 | color: #fff; 33 | } 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /WebRoot/assets/less/xenon-less/nestable.less: -------------------------------------------------------------------------------- 1 | html body .uk-nestable { 2 | 3 | .uk-nestable-item { 4 | 5 | } 6 | } 7 | 8 | @padd-v: 5px; 9 | @padd-h: 8px; 10 | 11 | .uk-nestable-item { 12 | 13 | .uk-nestable-handle { 14 | padding: @padd-v @padd-h; 15 | background: lighten(@input-border, 4%); 16 | 17 | &:hover, &:active { 18 | background: darken(@input-border, 1%); 19 | } 20 | } 21 | 22 | [data-nestable-action="toggle"] { 23 | padding: 0 @padd-v; 24 | padding-right: 0; 25 | display: none; 26 | } 27 | 28 | .list-label { 29 | display: inline-block; 30 | line-height: 1; 31 | padding: @padd-v @padd-h; 32 | } 33 | } 34 | 35 | .uk-parent > .uk-nestable-item [data-nestable-action='toggle'] { 36 | display: inline-block !important; 37 | } -------------------------------------------------------------------------------- /WebRoot/assets/less/xenon-less/portlets.less: -------------------------------------------------------------------------------- 1 | .draggable-portlets { 2 | 3 | .sorted { 4 | min-height: 100px; 5 | 6 | .ui-sortable-placeholder { 7 | background: fade(#ffffcc, 70%); 8 | border: 1px dashed @default-border-color; 9 | visibility: visible !important; 10 | } 11 | 12 | 13 | > .panel { 14 | .transition(~"opacity 200ms ease-in-out, transform 200ms ease-in-out"); 15 | 16 | .panel-heading { 17 | cursor: pointer; 18 | } 19 | } 20 | } 21 | 22 | &.dragging { 23 | 24 | .sorted { 25 | 26 | > .panel { 27 | .transform(~"scale(.97)"); 28 | .opacity(.5); 29 | 30 | &.ui-sortable-helper { 31 | .transform(~"scale(1.03)"); 32 | .opacity(1); 33 | } 34 | } 35 | } 36 | } 37 | } -------------------------------------------------------------------------------- /WebRoot/assets/less/xenon-less/print.less: -------------------------------------------------------------------------------- 1 | @media print { 2 | 3 | .sidebar-menu { 4 | display: none; 5 | } 6 | 7 | .main-content { 8 | padding: 0 !important; 9 | 10 | .user-info-navbar, 11 | .page-title, 12 | footer.main-footer { 13 | display: none; 14 | } 15 | 16 | > .panel { 17 | margin-bottom: 0; 18 | 19 | + .panel { 20 | margin-top: @default-padding; 21 | } 22 | } 23 | } 24 | } -------------------------------------------------------------------------------- /WebRoot/assets/less/xenon-skins.less: -------------------------------------------------------------------------------- 1 | // Import Bootstrap Variables & Mixins 2 | @import "bs-less/variables.less"; 3 | @import "bs-less/mixins.less"; 4 | 5 | // Variables 6 | @import "xenon-less/variables.less"; 7 | @import "xenon-less/mixins.less"; 8 | 9 | // LessHat 10 | @import "other-less/lesshat.less"; 11 | 12 | 13 | // Xenon Skins 14 | @import "xenon-less/page-skins.less"; -------------------------------------------------------------------------------- /WebRoot/assets/less/xenon.less: -------------------------------------------------------------------------------- 1 | // Import Bootstrap Variables & Mixins 2 | @import "bs-less/variables.less"; 3 | @import "bs-less/mixins.less"; 4 | 5 | // LessHat 6 | @import "other-less/lesshat.less"; 7 | 8 | // Xenon Basic UI 9 | @import "xenon-core.less"; 10 | 11 | // Forms 12 | @import "xenon-forms.less"; 13 | 14 | // Xenon Extra Components 15 | @import "xenon-components.less"; 16 | 17 | // Xenon Skins 18 | @import "xenon-skins.less"; -------------------------------------------------------------------------------- /WebRoot/error.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 12 | My JSP 'error.jsp' starting page 13 | 14 | 15 | 16 | 17 | 18 | 19 | 22 | 23 | 24 | 25 | 26 | 你没有访问权限.请重新登录.重新登录
27 | 28 | 29 | -------------------------------------------------------------------------------- /WebRoot/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /WebRoot/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /WebRoot/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /WebRoot/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /WebRoot/纯HTML版本前端/adminaddUser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/纯HTML版本前端/adminaddUser.txt -------------------------------------------------------------------------------- /WebRoot/纯HTML版本前端/admineditUser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/纯HTML版本前端/admineditUser.txt -------------------------------------------------------------------------------- /WebRoot/纯HTML版本前端/adminmain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/纯HTML版本前端/adminmain.txt -------------------------------------------------------------------------------- /WebRoot/纯HTML版本前端/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/纯HTML版本前端/index.txt -------------------------------------------------------------------------------- /WebRoot/纯HTML版本前端/message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/纯HTML版本前端/message.txt -------------------------------------------------------------------------------- /WebRoot/纯HTML版本前端/studentaddResource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/纯HTML版本前端/studentaddResource.txt -------------------------------------------------------------------------------- /WebRoot/纯HTML版本前端/studentcheckTask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/纯HTML版本前端/studentcheckTask.txt -------------------------------------------------------------------------------- /WebRoot/纯HTML版本前端/studenteditResource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/纯HTML版本前端/studenteditResource.txt -------------------------------------------------------------------------------- /WebRoot/纯HTML版本前端/studentmain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/纯HTML版本前端/studentmain.txt -------------------------------------------------------------------------------- /WebRoot/纯HTML版本前端/studentshowResource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/纯HTML版本前端/studentshowResource.txt -------------------------------------------------------------------------------- /WebRoot/纯HTML版本前端/studentshowSingleResource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/纯HTML版本前端/studentshowSingleResource.txt -------------------------------------------------------------------------------- /WebRoot/纯HTML版本前端/studentshowTask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/纯HTML版本前端/studentshowTask.txt -------------------------------------------------------------------------------- /WebRoot/纯HTML版本前端/teacheraddTask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/纯HTML版本前端/teacheraddTask.txt -------------------------------------------------------------------------------- /WebRoot/纯HTML版本前端/teachercheckComplete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/纯HTML版本前端/teachercheckComplete.txt -------------------------------------------------------------------------------- /WebRoot/纯HTML版本前端/teachereditTask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/纯HTML版本前端/teachereditTask.txt -------------------------------------------------------------------------------- /WebRoot/纯HTML版本前端/teachermain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/WebRoot/纯HTML版本前端/teachermain.txt -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /build/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /db/ 2 | /entity/ 3 | /servlet/ 4 | -------------------------------------------------------------------------------- /src/entity/Report.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/src/entity/Report.java -------------------------------------------------------------------------------- /src/entity/ReportMgr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/src/entity/ReportMgr.java -------------------------------------------------------------------------------- /src/servlet/DownloadServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/src/servlet/DownloadServlet.java -------------------------------------------------------------------------------- /src/servlet/LoginOutServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/src/servlet/LoginOutServlet.java -------------------------------------------------------------------------------- /src/servlet/ReportServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/src/servlet/ReportServlet.java -------------------------------------------------------------------------------- /src/servlet/UploadServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLaraRR/Resource-Management-System/9925ade1e639f5ec372b2611679a4d0598c12586/src/servlet/UploadServlet.java --------------------------------------------------------------------------------