├── .gitattributes ├── .gitignore ├── README.md ├── home.png ├── init.py ├── logs └── .gitignore ├── main ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── .gitignore │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── mtree ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── .gitignore │ └── __init__.py ├── models.py ├── tasks.py ├── tests.py ├── urls.py └── views.py ├── mysite ├── __init__.py ├── comm.py ├── db_connect.py ├── settings.py ├── static │ ├── AdminLTE-2.3.0 │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── font-awesome.min.css │ │ │ │ └── ionicons.min.css │ │ │ ├── fonts │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── bower.json │ │ ├── build │ │ │ ├── bootstrap-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 │ │ │ │ └── variables.less │ │ │ └── less │ │ │ │ ├── .csslintrc │ │ │ │ ├── 404_500_errors.less │ │ │ │ ├── AdminLTE.less │ │ │ │ ├── alerts.less │ │ │ │ ├── bootstrap-social.less │ │ │ │ ├── boxes.less │ │ │ │ ├── buttons.less │ │ │ │ ├── callout.less │ │ │ │ ├── carousel.less │ │ │ │ ├── control-sidebar.less │ │ │ │ ├── core.less │ │ │ │ ├── direct-chat.less │ │ │ │ ├── dropdown.less │ │ │ │ ├── forms.less │ │ │ │ ├── fullcalendar.less │ │ │ │ ├── header.less │ │ │ │ ├── info-box.less │ │ │ │ ├── invoice.less │ │ │ │ ├── labels.less │ │ │ │ ├── lockscreen.less │ │ │ │ ├── login_and_register.less │ │ │ │ ├── mailbox.less │ │ │ │ ├── miscellaneous.less │ │ │ │ ├── mixins.less │ │ │ │ ├── modal.less │ │ │ │ ├── navs.less │ │ │ │ ├── print.less │ │ │ │ ├── products.less │ │ │ │ ├── profile.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── select2.less │ │ │ │ ├── sidebar-mini.less │ │ │ │ ├── sidebar.less │ │ │ │ ├── skins │ │ │ │ ├── _all-skins.less │ │ │ │ ├── skin-black-light.less │ │ │ │ ├── skin-black.less │ │ │ │ ├── skin-blue-light.less │ │ │ │ ├── skin-blue.less │ │ │ │ ├── skin-green-light.less │ │ │ │ ├── skin-green.less │ │ │ │ ├── skin-purple-light.less │ │ │ │ ├── skin-purple.less │ │ │ │ ├── skin-red-light.less │ │ │ │ ├── skin-red.less │ │ │ │ ├── skin-yellow-light.less │ │ │ │ └── skin-yellow.less │ │ │ │ ├── small-box.less │ │ │ │ ├── social-widgets.less │ │ │ │ ├── table.less │ │ │ │ ├── timeline.less │ │ │ │ ├── users-list.less │ │ │ │ └── variables.less │ │ ├── changelog │ │ ├── composer.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── AdminLTE.css │ │ │ │ ├── AdminLTE.min.css │ │ │ │ └── skins │ │ │ │ │ ├── _all-skins.css │ │ │ │ │ ├── _all-skins.min.css │ │ │ │ │ ├── skin-black-light.css │ │ │ │ │ ├── skin-black-light.min.css │ │ │ │ │ ├── skin-black.css │ │ │ │ │ ├── skin-black.min.css │ │ │ │ │ ├── skin-blue-light.css │ │ │ │ │ ├── skin-blue-light.min.css │ │ │ │ │ ├── skin-blue.css │ │ │ │ │ ├── skin-blue.min.css │ │ │ │ │ ├── skin-green-light.css │ │ │ │ │ ├── skin-green-light.min.css │ │ │ │ │ ├── skin-green.css │ │ │ │ │ ├── skin-green.min.css │ │ │ │ │ ├── skin-purple-light.css │ │ │ │ │ ├── skin-purple-light.min.css │ │ │ │ │ ├── skin-purple.css │ │ │ │ │ ├── skin-purple.min.css │ │ │ │ │ ├── skin-red-light.css │ │ │ │ │ ├── skin-red-light.min.css │ │ │ │ │ ├── skin-red.css │ │ │ │ │ ├── skin-red.min.css │ │ │ │ │ ├── skin-yellow-light.css │ │ │ │ │ ├── skin-yellow-light.min.css │ │ │ │ │ ├── skin-yellow.css │ │ │ │ │ └── skin-yellow.min.css │ │ │ ├── img │ │ │ │ ├── avatar.png │ │ │ │ ├── avatar04.png │ │ │ │ ├── avatar2.png │ │ │ │ ├── avatar3.png │ │ │ │ ├── avatar5.png │ │ │ │ ├── boxed-bg.jpg │ │ │ │ ├── boxed-bg.png │ │ │ │ ├── credit │ │ │ │ │ ├── american-express.png │ │ │ │ │ ├── cirrus.png │ │ │ │ │ ├── mastercard.png │ │ │ │ │ ├── mestro.png │ │ │ │ │ ├── paypal.png │ │ │ │ │ ├── paypal2.png │ │ │ │ │ └── visa.png │ │ │ │ ├── default-50x50.gif │ │ │ │ ├── icons.png │ │ │ │ ├── photo1.png │ │ │ │ ├── photo2.png │ │ │ │ ├── photo3.jpg │ │ │ │ ├── photo4.jpg │ │ │ │ ├── user1-128x128.jpg │ │ │ │ ├── user2-160x160.jpg │ │ │ │ ├── user3-128x128.jpg │ │ │ │ ├── user4-128x128.jpg │ │ │ │ ├── user5-128x128.jpg │ │ │ │ ├── user6-128x128.jpg │ │ │ │ ├── user7-128x128.jpg │ │ │ │ └── user8-128x128.jpg │ │ │ └── js │ │ │ │ ├── app.js │ │ │ │ ├── app.min.js │ │ │ │ ├── demo.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── pages │ │ │ │ ├── dashboard.js │ │ │ │ └── dashboard2.js │ │ │ │ └── raphael-min.js │ │ ├── documentation │ │ │ ├── build │ │ │ │ ├── include │ │ │ │ │ ├── adminlte-options.html │ │ │ │ │ ├── advice.html │ │ │ │ │ ├── browsers.html │ │ │ │ │ ├── components.html │ │ │ │ │ ├── dependencies.html │ │ │ │ │ ├── download.html │ │ │ │ │ ├── faq.html │ │ │ │ │ ├── implementations.html │ │ │ │ │ ├── introduction.html │ │ │ │ │ ├── layout.html │ │ │ │ │ ├── license.html │ │ │ │ │ ├── plugins.html │ │ │ │ │ └── upgrade.html │ │ │ │ └── index.html │ │ │ ├── docs.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── index.html │ │ ├── index2.html │ │ ├── package.json │ │ ├── pages │ │ │ ├── UI │ │ │ │ ├── buttons.html │ │ │ │ ├── general.html │ │ │ │ ├── icons.html │ │ │ │ ├── modals.html │ │ │ │ ├── sliders.html │ │ │ │ └── timeline.html │ │ │ ├── calendar.html │ │ │ ├── charts │ │ │ │ ├── chartjs.html │ │ │ │ ├── flot.html │ │ │ │ ├── inline.html │ │ │ │ └── morris.html │ │ │ ├── examples │ │ │ │ ├── 404.html │ │ │ │ ├── 500.html │ │ │ │ ├── blank.html │ │ │ │ ├── invoice-print.html │ │ │ │ ├── invoice.html │ │ │ │ ├── lockscreen.html │ │ │ │ ├── login.html │ │ │ │ ├── profile.html │ │ │ │ └── register.html │ │ │ ├── forms │ │ │ │ ├── advanced.html │ │ │ │ ├── editors.html │ │ │ │ └── general.html │ │ │ ├── layout │ │ │ │ ├── boxed.html │ │ │ │ ├── collapsed-sidebar.html │ │ │ │ ├── fixed.html │ │ │ │ └── top-nav.html │ │ │ ├── mailbox │ │ │ │ ├── compose.html │ │ │ │ ├── mailbox.html │ │ │ │ └── read-mail.html │ │ │ ├── tables │ │ │ │ ├── data.html │ │ │ │ └── simple.html │ │ │ └── widgets.html │ │ ├── plugins │ │ │ ├── bootstrap-slider │ │ │ │ ├── bootstrap-slider.js │ │ │ │ └── slider.css │ │ │ ├── bootstrap-wysihtml5 │ │ │ │ ├── bootstrap3-wysihtml5.all.js │ │ │ │ ├── bootstrap3-wysihtml5.all.min.js │ │ │ │ ├── bootstrap3-wysihtml5.css │ │ │ │ └── bootstrap3-wysihtml5.min.css │ │ │ ├── chartjs │ │ │ │ ├── Chart.js │ │ │ │ └── Chart.min.js │ │ │ ├── ckeditor │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── adapters │ │ │ │ │ └── jquery.js │ │ │ │ ├── build-config.js │ │ │ │ ├── ckeditor.js │ │ │ │ ├── config.js │ │ │ │ ├── contents.css │ │ │ │ ├── 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 │ │ │ │ │ ├── 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.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 │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── fakeobjects │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── spacer.gif │ │ │ │ │ ├── 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.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.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 │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── tmp.html │ │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ │ ├── wsc.css │ │ │ │ │ │ ├── wsc.js │ │ │ │ │ │ └── wsc_ie.js │ │ │ │ ├── skins │ │ │ │ │ └── moono │ │ │ │ │ │ ├── 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 │ │ │ │ └── styles.js │ │ │ ├── colorpicker │ │ │ │ ├── bootstrap-colorpicker.css │ │ │ │ ├── bootstrap-colorpicker.js │ │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ │ ├── bootstrap-colorpicker.min.js │ │ │ │ └── img │ │ │ │ │ ├── alpha-horizontal.png │ │ │ │ │ ├── alpha.png │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ ├── hue.png │ │ │ │ │ └── saturation.png │ │ │ ├── datatables │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ ├── extensions │ │ │ │ │ ├── AutoFill │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ │ │ │ └── dataTables.autoFill.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── columns.html │ │ │ │ │ │ │ ├── complete-callback.html │ │ │ │ │ │ │ ├── fill-both.html │ │ │ │ │ │ │ ├── fill-horizontal.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ └── step-callback.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── filler.png │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ │ │ │ └── dataTables.autoFill.min.js │ │ │ │ │ ├── ColReorder │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ │ │ │ └── dataTables.colReorder.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── alt_insert.html │ │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ │ ├── fixedcolumns.html │ │ │ │ │ │ │ ├── fixedheader.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ │ ├── predefined.html │ │ │ │ │ │ │ ├── realtime.html │ │ │ │ │ │ │ ├── reset.html │ │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ │ ├── server_side.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ └── state_save.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── insert.png │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ │ │ │ └── dataTables.colReorder.min.js │ │ │ │ │ ├── ColVis │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.colVis.css │ │ │ │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── button_order.html │ │ │ │ │ │ │ ├── exclude_columns.html │ │ │ │ │ │ │ ├── group_columns.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ │ ├── mouseover.html │ │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ │ ├── restore.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ ├── text.html │ │ │ │ │ │ │ ├── title_callback.html │ │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ │ └── two_tables_identical.html │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.colVis.js │ │ │ │ │ │ │ └── dataTables.colVis.min.js │ │ │ │ │ ├── FixedColumns │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ │ ├── css_size.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index_column.html │ │ │ │ │ │ │ ├── left_right_columns.html │ │ │ │ │ │ │ ├── right_column.html │ │ │ │ │ │ │ ├── rowspan.html │ │ │ │ │ │ │ ├── server-side-processing.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ ├── size_fixed.html │ │ │ │ │ │ │ ├── size_fluid.html │ │ │ │ │ │ │ └── two_columns.html │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ │ │ │ └── dataTables.fixedColumns.min.js │ │ │ │ │ ├── FixedHeader │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── header_footer.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ ├── top_left_right.html │ │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ │ └── zIndexes.html │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ │ │ │ └── dataTables.fixedHeader.min.js │ │ │ │ │ ├── KeyTable │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ │ │ │ └── dataTables.keyTable.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── events.html │ │ │ │ │ │ │ ├── html.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ │ └── simple.html │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ │ │ │ └── dataTables.keyTable.min.js │ │ │ │ │ ├── Responsive │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.responsive.css │ │ │ │ │ │ │ └── dataTables.responsive.scss │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── child-rows │ │ │ │ │ │ │ │ ├── column-control.html │ │ │ │ │ │ │ │ ├── custom-renderer.html │ │ │ │ │ │ │ │ ├── disable-child-rows.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── right-column.html │ │ │ │ │ │ │ │ └── whole-row-control.html │ │ │ │ │ │ │ ├── display-control │ │ │ │ │ │ │ │ ├── auto.html │ │ │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ │ │ ├── complexHeader.html │ │ │ │ │ │ │ │ ├── fixedHeader.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── init-classes.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── initialisation │ │ │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ │ │ ├── className.html │ │ │ │ │ │ │ │ ├── default.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── new.html │ │ │ │ │ │ │ │ └── option.html │ │ │ │ │ │ │ └── styling │ │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ │ ├── compact.html │ │ │ │ │ │ │ │ ├── foundation.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── scrolling.html │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.responsive.js │ │ │ │ │ │ │ └── dataTables.responsive.min.js │ │ │ │ │ ├── Scroller │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.scroller.css │ │ │ │ │ │ │ └── dataTables.scroller.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── api_scrolling.html │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ ├── 2500.txt │ │ │ │ │ │ │ │ └── ssp.php │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── large_js_source.html │ │ │ │ │ │ │ ├── server-side_processing.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ └── state_saving.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── loading-background.png │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ │ │ └── dataTables.scroller.min.js │ │ │ │ │ └── TableTools │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.tableTools.css │ │ │ │ │ │ └── dataTables.tableTools.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ ├── alter_buttons.html │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ ├── button_text.html │ │ │ │ │ │ ├── collection.html │ │ │ │ │ │ ├── defaults.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ ├── multi_instance.html │ │ │ │ │ │ ├── multiple_tables.html │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ ├── pdf_message.html │ │ │ │ │ │ ├── plug-in.html │ │ │ │ │ │ ├── select_column.html │ │ │ │ │ │ ├── select_multi.html │ │ │ │ │ │ ├── select_os.html │ │ │ │ │ │ ├── select_single.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ └── swf_path.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── collection.png │ │ │ │ │ │ ├── collection_hover.png │ │ │ │ │ │ ├── copy.png │ │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ │ ├── csv.png │ │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ │ ├── print.png │ │ │ │ │ │ ├── print_hover.png │ │ │ │ │ │ ├── psd │ │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ │ ├── copy document.psd │ │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ │ └── printer.psd │ │ │ │ │ │ ├── xls.png │ │ │ │ │ │ └── xls_hover.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── dataTables.tableTools.js │ │ │ │ │ │ └── dataTables.tableTools.min.js │ │ │ │ │ │ └── swf │ │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ │ ├── images │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ ├── jquery.dataTables.css │ │ │ │ ├── jquery.dataTables.js │ │ │ │ ├── jquery.dataTables.min.css │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ ├── datepicker │ │ │ │ ├── bootstrap-datepicker.js │ │ │ │ ├── datepicker3.css │ │ │ │ └── locales │ │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ │ ├── bootstrap-datepicker.az.js │ │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ │ ├── bootstrap-datepicker.fa.js │ │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ │ │ ├── bootstrap-datepicker.vi.js │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ │ ├── daterangepicker │ │ │ │ ├── daterangepicker-bs3.css │ │ │ │ ├── daterangepicker.js │ │ │ │ ├── moment.js │ │ │ │ └── moment.min.js │ │ │ ├── fastclick │ │ │ │ ├── fastclick.js │ │ │ │ └── fastclick.min.js │ │ │ ├── flot │ │ │ │ ├── excanvas.js │ │ │ │ ├── excanvas.min.js │ │ │ │ ├── jquery.colorhelpers.js │ │ │ │ ├── jquery.colorhelpers.min.js │ │ │ │ ├── jquery.flot.canvas.js │ │ │ │ ├── jquery.flot.canvas.min.js │ │ │ │ ├── jquery.flot.categories.js │ │ │ │ ├── jquery.flot.categories.min.js │ │ │ │ ├── jquery.flot.crosshair.js │ │ │ │ ├── jquery.flot.crosshair.min.js │ │ │ │ ├── jquery.flot.errorbars.js │ │ │ │ ├── jquery.flot.errorbars.min.js │ │ │ │ ├── jquery.flot.fillbetween.js │ │ │ │ ├── jquery.flot.fillbetween.min.js │ │ │ │ ├── jquery.flot.image.js │ │ │ │ ├── jquery.flot.image.min.js │ │ │ │ ├── jquery.flot.js │ │ │ │ ├── jquery.flot.min.js │ │ │ │ ├── jquery.flot.navigate.js │ │ │ │ ├── jquery.flot.navigate.min.js │ │ │ │ ├── jquery.flot.pie.js │ │ │ │ ├── jquery.flot.pie.min.js │ │ │ │ ├── jquery.flot.resize.js │ │ │ │ ├── jquery.flot.resize.min.js │ │ │ │ ├── jquery.flot.selection.js │ │ │ │ ├── jquery.flot.selection.min.js │ │ │ │ ├── jquery.flot.stack.js │ │ │ │ ├── jquery.flot.stack.min.js │ │ │ │ ├── jquery.flot.symbol.js │ │ │ │ ├── jquery.flot.symbol.min.js │ │ │ │ ├── jquery.flot.threshold.js │ │ │ │ ├── jquery.flot.threshold.min.js │ │ │ │ ├── jquery.flot.time.js │ │ │ │ └── jquery.flot.time.min.js │ │ │ ├── fullcalendar │ │ │ │ ├── fullcalendar.css │ │ │ │ ├── fullcalendar.js │ │ │ │ ├── fullcalendar.min.css │ │ │ │ ├── fullcalendar.min.js │ │ │ │ └── fullcalendar.print.css │ │ │ ├── iCheck │ │ │ │ ├── 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 │ │ │ │ ├── icheck.js │ │ │ │ ├── icheck.min.js │ │ │ │ ├── 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 │ │ │ ├── input-mask │ │ │ │ ├── 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 │ │ │ │ └── phone-codes │ │ │ │ │ ├── phone-be.json │ │ │ │ │ ├── phone-codes.json │ │ │ │ │ └── readme.txt │ │ │ ├── ionslider │ │ │ │ ├── img │ │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ │ └── sprite-skin-nice.png │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ ├── ion.rangeSlider.min.js │ │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ │ └── ion.rangeSlider.skinNice.css │ │ │ ├── jQuery │ │ │ │ ├── jQuery-2.1.4.min.js │ │ │ │ └── jquery-ui.min.js │ │ │ ├── jQueryUI │ │ │ │ ├── jquery-ui.js │ │ │ │ └── jquery-ui.min.js │ │ │ ├── jvectormap │ │ │ │ ├── jquery-jvectormap-1.2.2.css │ │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ │ ├── knob │ │ │ │ └── jquery.knob.js │ │ │ ├── morris │ │ │ │ ├── morris.css │ │ │ │ ├── morris.js │ │ │ │ └── morris.min.js │ │ │ ├── pace │ │ │ │ └── pace.js │ │ │ ├── select2 │ │ │ │ ├── i18n │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ └── zh-TW.js │ │ │ │ ├── select2.css │ │ │ │ ├── select2.full.js │ │ │ │ ├── select2.full.min.js │ │ │ │ ├── select2.js │ │ │ │ ├── select2.min.css │ │ │ │ └── select2.min.js │ │ │ ├── slimScroll │ │ │ │ ├── jquery.slimscroll.js │ │ │ │ └── jquery.slimscroll.min.js │ │ │ ├── sparkline │ │ │ │ ├── jquery.sparkline.js │ │ │ │ └── jquery.sparkline.min.js │ │ │ └── timepicker │ │ │ │ ├── bootstrap-timepicker.css │ │ │ │ ├── bootstrap-timepicker.js │ │ │ │ ├── bootstrap-timepicker.min.css │ │ │ │ └── bootstrap-timepicker.min.js │ │ └── starter.html │ ├── admin │ │ ├── css │ │ │ ├── base.css │ │ │ ├── changelists.css │ │ │ ├── dashboard.css │ │ │ ├── forms.css │ │ │ ├── ie.css │ │ │ ├── login.css │ │ │ ├── rtl.css │ │ │ └── widgets.css │ │ ├── img │ │ │ ├── changelist-bg.gif │ │ │ ├── changelist-bg_rtl.gif │ │ │ ├── chooser-bg.gif │ │ │ ├── chooser_stacked-bg.gif │ │ │ ├── default-bg-reverse.gif │ │ │ ├── default-bg.gif │ │ │ ├── deleted-overlay.gif │ │ │ ├── gis │ │ │ │ ├── move_vertex_off.png │ │ │ │ └── move_vertex_on.png │ │ │ ├── icon-no.gif │ │ │ ├── icon-unknown.gif │ │ │ ├── icon-yes.gif │ │ │ ├── icon_addlink.gif │ │ │ ├── icon_alert.gif │ │ │ ├── icon_calendar.gif │ │ │ ├── icon_changelink.gif │ │ │ ├── icon_clock.gif │ │ │ ├── icon_deletelink.gif │ │ │ ├── icon_error.gif │ │ │ ├── icon_searchbox.png │ │ │ ├── icon_success.gif │ │ │ ├── inline-delete-8bit.png │ │ │ ├── inline-delete.png │ │ │ ├── inline-restore-8bit.png │ │ │ ├── inline-restore.png │ │ │ ├── inline-splitter-bg.gif │ │ │ ├── nav-bg-grabber.gif │ │ │ ├── nav-bg-reverse.gif │ │ │ ├── nav-bg-selected.gif │ │ │ ├── nav-bg.gif │ │ │ ├── selector-icons.gif │ │ │ ├── selector-search.gif │ │ │ ├── sorting-icons.gif │ │ │ ├── tool-left.gif │ │ │ ├── tool-left_over.gif │ │ │ ├── tool-right.gif │ │ │ ├── tool-right_over.gif │ │ │ ├── tooltag-add.gif │ │ │ ├── tooltag-add_over.gif │ │ │ ├── tooltag-arrowright.gif │ │ │ └── tooltag-arrowright_over.gif │ │ └── js │ │ │ ├── LICENSE-JQUERY.txt │ │ │ ├── SelectBox.js │ │ │ ├── SelectFilter2.js │ │ │ ├── actions.js │ │ │ ├── actions.min.js │ │ │ ├── admin │ │ │ ├── DateTimeShortcuts.js │ │ │ ├── RelatedObjectLookups.js │ │ │ └── ordering.js │ │ │ ├── calendar.js │ │ │ ├── collapse.js │ │ │ ├── collapse.min.js │ │ │ ├── compress.py │ │ │ ├── core.js │ │ │ ├── getElementsBySelector.js │ │ │ ├── inlines.js │ │ │ ├── inlines.min.js │ │ │ ├── jquery.init.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── prepopulate.js │ │ │ ├── prepopulate.min.js │ │ │ ├── timeparse.js │ │ │ └── urlify.js │ ├── css │ │ ├── base.css │ │ └── style.css │ ├── favicon.ico │ ├── img │ │ ├── 1u_normal.png │ │ ├── 2u_normal.png │ │ ├── bg.jpg │ │ ├── cha.png │ │ ├── cross.png │ │ ├── cross_circle.png │ │ ├── error.png │ │ ├── exclamation.png │ │ ├── favicon.png │ │ ├── favor.gif │ │ ├── icon-ok.png │ │ ├── icon.png │ │ ├── information.png │ │ ├── jg.png │ │ ├── jg.psd │ │ ├── load.gif │ │ ├── lock.png │ │ ├── logo.png │ │ ├── love.png │ │ ├── mtree_01.png │ │ ├── mtree_02.png │ │ ├── mtree_03.png │ │ ├── mtree_04.png │ │ ├── mtree_05.png │ │ ├── ok.png │ │ ├── pencil.png │ │ ├── terminal.png │ │ ├── tick_add.png │ │ ├── tick_circle.png │ │ ├── unlock.png │ │ └── waiting.png │ ├── js │ │ ├── admin.js │ │ ├── ichart.1.2.min.js │ │ ├── jquery-1.7.1.min.js │ │ └── jquery.min.js │ ├── loading │ │ ├── jquery.bgiframe.js │ │ ├── jquery.bgiframe.min.js │ │ ├── loading-min.js │ │ ├── loading.css │ │ ├── loading.gif │ │ └── loading.js │ ├── multiple-select │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTORS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── demos │ │ │ ├── assets │ │ │ │ ├── bootstrap │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ └── bootstrap.min.js │ │ │ │ └── jquery.min.js │ │ │ └── index.html │ │ ├── docs │ │ │ ├── README-ZH-CN.md │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ ├── es5-shim.min.js │ │ │ │ ├── flatdoc │ │ │ │ │ ├── flatdoc.js │ │ │ │ │ ├── legacy.js │ │ │ │ │ └── theme-white │ │ │ │ │ │ ├── script.js │ │ │ │ │ │ └── style.css │ │ │ │ ├── html5shiv.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── respond.min.js │ │ │ ├── css │ │ │ │ └── base.css │ │ │ ├── index.html │ │ │ └── js │ │ │ │ └── index.js │ │ ├── index.html │ │ ├── jquery.multiple.select.js │ │ ├── multiple-select.css │ │ ├── multiple-select.jquery.json │ │ └── multiple-select.png │ ├── multiselect │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── css │ │ │ └── style.css │ │ ├── dist │ │ │ └── js │ │ │ │ ├── multiselect.js │ │ │ │ └── multiselect.min.js │ │ ├── examples │ │ │ ├── data-options.html │ │ │ ├── javascript-options.html │ │ │ ├── keep-rendering-sort.html │ │ │ ├── move-up-down.html │ │ │ ├── multiple-destinations.html │ │ │ ├── optgroup.html │ │ │ ├── search.html │ │ │ ├── undo-redo.html │ │ │ └── zero-configuration.html │ │ ├── gulpfile.js │ │ ├── index.html │ │ ├── lib │ │ │ ├── google-code-prettify │ │ │ │ └── prettify.css │ │ │ ├── jasmine-html.js │ │ │ ├── jasmine-jquery-1.1.2.js │ │ │ ├── jasmine.css │ │ │ ├── jasmine.js │ │ │ └── jquery.simulate.js │ │ ├── package.json │ │ ├── spec │ │ │ ├── data-options.spec.js │ │ │ ├── javascript-options.spec.js │ │ │ ├── keep-rendering-sort.spec.js │ │ │ ├── multiple-destinations.spec.js │ │ │ ├── search.spec.js │ │ │ ├── undo-redo.spec.js │ │ │ └── zero-configuration.spec.js │ │ └── tests.html │ └── zTree_v3.5.28 │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── README.md │ │ ├── api │ │ ├── API_cn.html │ │ ├── API_en.html │ │ ├── apiCss │ │ │ ├── api.js │ │ │ ├── common.css │ │ │ ├── common_ie6.css │ │ │ ├── img │ │ │ │ ├── apiMenu.gif │ │ │ │ ├── apiMenu.png │ │ │ │ ├── background.jpg │ │ │ │ ├── chinese.png │ │ │ │ ├── close.png │ │ │ │ ├── contact-bg.png │ │ │ │ ├── english.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── overlay_arrow.gif │ │ │ │ ├── overlay_arrow.png │ │ │ │ ├── overlay_bg.png │ │ │ │ ├── overlay_close_IE6.gif │ │ │ │ ├── zTreeStandard.gif │ │ │ │ └── zTreeStandard.png │ │ │ ├── jquery-1.6.2.min.js │ │ │ ├── jquery.ztree.core.js │ │ │ └── zTreeStyleForApi.css │ │ ├── cn │ │ │ ├── fn.zTree._z.html │ │ │ ├── fn.zTree.destroy.html │ │ │ ├── fn.zTree.getZTreeObj.html │ │ │ ├── fn.zTree.init.html │ │ │ ├── setting.async.autoParam.html │ │ │ ├── setting.async.contentType.html │ │ │ ├── setting.async.dataFilter.html │ │ │ ├── setting.async.dataType.html │ │ │ ├── setting.async.enable.html │ │ │ ├── setting.async.otherParam.html │ │ │ ├── setting.async.type.html │ │ │ ├── setting.async.url.html │ │ │ ├── setting.callback.beforeAsync.html │ │ │ ├── setting.callback.beforeCheck.html │ │ │ ├── setting.callback.beforeClick.html │ │ │ ├── setting.callback.beforeCollapse.html │ │ │ ├── setting.callback.beforeDblClick.html │ │ │ ├── setting.callback.beforeDrag.html │ │ │ ├── setting.callback.beforeDragOpen.html │ │ │ ├── setting.callback.beforeDrop.html │ │ │ ├── setting.callback.beforeEditName.html │ │ │ ├── setting.callback.beforeExpand.html │ │ │ ├── setting.callback.beforeMouseDown.html │ │ │ ├── setting.callback.beforeMouseUp.html │ │ │ ├── setting.callback.beforeRemove.html │ │ │ ├── setting.callback.beforeRename.html │ │ │ ├── setting.callback.beforeRightClick.html │ │ │ ├── setting.callback.onAsyncError.html │ │ │ ├── setting.callback.onAsyncSuccess.html │ │ │ ├── setting.callback.onCheck.html │ │ │ ├── setting.callback.onClick.html │ │ │ ├── setting.callback.onCollapse.html │ │ │ ├── setting.callback.onDblClick.html │ │ │ ├── setting.callback.onDrag.html │ │ │ ├── setting.callback.onDragMove.html │ │ │ ├── setting.callback.onDrop.html │ │ │ ├── setting.callback.onExpand.html │ │ │ ├── setting.callback.onMouseDown.html │ │ │ ├── setting.callback.onMouseUp.html │ │ │ ├── setting.callback.onNodeCreated.html │ │ │ ├── setting.callback.onRemove.html │ │ │ ├── setting.callback.onRename.html │ │ │ ├── setting.callback.onRightClick.html │ │ │ ├── setting.check.autoCheckTrigger.html │ │ │ ├── setting.check.chkDisabledInherit.html │ │ │ ├── setting.check.chkStyle.html │ │ │ ├── setting.check.chkboxType.html │ │ │ ├── setting.check.enable.html │ │ │ ├── setting.check.nocheckInherit.html │ │ │ ├── setting.check.radioType.html │ │ │ ├── setting.data.keep.leaf.html │ │ │ ├── setting.data.keep.parent.html │ │ │ ├── setting.data.key.checked.html │ │ │ ├── setting.data.key.children.html │ │ │ ├── setting.data.key.name.html │ │ │ ├── setting.data.key.title.html │ │ │ ├── setting.data.key.url.html │ │ │ ├── setting.data.simpleData.enable.html │ │ │ ├── setting.data.simpleData.idKey.html │ │ │ ├── setting.data.simpleData.pIdKey.html │ │ │ ├── setting.data.simpleData.rootPId.html │ │ │ ├── setting.edit.drag.autoExpandTrigger.html │ │ │ ├── setting.edit.drag.autoOpenTime.html │ │ │ ├── setting.edit.drag.borderMax.html │ │ │ ├── setting.edit.drag.borderMin.html │ │ │ ├── setting.edit.drag.inner.html │ │ │ ├── setting.edit.drag.isCopy.html │ │ │ ├── setting.edit.drag.isMove.html │ │ │ ├── setting.edit.drag.maxShowNodeNum.html │ │ │ ├── setting.edit.drag.minMoveSize.html │ │ │ ├── setting.edit.drag.next.html │ │ │ ├── setting.edit.drag.prev.html │ │ │ ├── setting.edit.editNameSelectAll.html │ │ │ ├── setting.edit.enable.html │ │ │ ├── setting.edit.removeTitle.html │ │ │ ├── setting.edit.renameTitle.html │ │ │ ├── setting.edit.showRemoveBtn.html │ │ │ ├── setting.edit.showRenameBtn.html │ │ │ ├── setting.treeId.html │ │ │ ├── setting.treeObj.html │ │ │ ├── setting.view.addDiyDom.html │ │ │ ├── setting.view.addHoverDom.html │ │ │ ├── setting.view.autoCancelSelected.html │ │ │ ├── setting.view.dblClickExpand.html │ │ │ ├── setting.view.expandSpeed.html │ │ │ ├── setting.view.fontCss.html │ │ │ ├── setting.view.nameIsHTML.html │ │ │ ├── setting.view.removeHoverDom.html │ │ │ ├── setting.view.selectedMulti.html │ │ │ ├── setting.view.showIcon.html │ │ │ ├── setting.view.showLine.html │ │ │ ├── setting.view.showTitle.html │ │ │ ├── setting.view.txtSelectedEnable.html │ │ │ ├── treeNode.check_Child_State.html │ │ │ ├── treeNode.check_Focus.html │ │ │ ├── treeNode.checked.html │ │ │ ├── treeNode.checkedOld.html │ │ │ ├── treeNode.children.html │ │ │ ├── treeNode.chkDisabled.html │ │ │ ├── treeNode.click.html │ │ │ ├── treeNode.diy.html │ │ │ ├── treeNode.editNameFlag.html │ │ │ ├── treeNode.getCheckStatus.html │ │ │ ├── treeNode.getIndex.html │ │ │ ├── treeNode.getNextNode.html │ │ │ ├── treeNode.getParentNode.html │ │ │ ├── treeNode.getPath.html │ │ │ ├── treeNode.getPreNode.html │ │ │ ├── treeNode.halfCheck.html │ │ │ ├── treeNode.icon.html │ │ │ ├── treeNode.iconClose.html │ │ │ ├── treeNode.iconOpen.html │ │ │ ├── treeNode.iconSkin.html │ │ │ ├── treeNode.isAjaxing.html │ │ │ ├── treeNode.isFirstNode.html │ │ │ ├── treeNode.isHidden.html │ │ │ ├── treeNode.isHover.html │ │ │ ├── treeNode.isLastNode.html │ │ │ ├── treeNode.isParent.html │ │ │ ├── treeNode.level.html │ │ │ ├── treeNode.name.html │ │ │ ├── treeNode.nocheck.html │ │ │ ├── treeNode.open.html │ │ │ ├── treeNode.parentTId.html │ │ │ ├── treeNode.tId.html │ │ │ ├── treeNode.target.html │ │ │ ├── treeNode.url.html │ │ │ ├── treeNode.zAsync.html │ │ │ ├── zTreeObj.addNodes.html │ │ │ ├── zTreeObj.cancelEditName.html │ │ │ ├── zTreeObj.cancelSelectedNode.html │ │ │ ├── zTreeObj.checkAllNodes.html │ │ │ ├── zTreeObj.checkNode.html │ │ │ ├── zTreeObj.copyNode.html │ │ │ ├── zTreeObj.destroy.html │ │ │ ├── zTreeObj.editName.html │ │ │ ├── zTreeObj.expandAll.html │ │ │ ├── zTreeObj.expandNode.html │ │ │ ├── zTreeObj.getChangeCheckedNodes.html │ │ │ ├── zTreeObj.getCheckedNodes.html │ │ │ ├── zTreeObj.getNodeByParam.html │ │ │ ├── zTreeObj.getNodeByTId.html │ │ │ ├── zTreeObj.getNodeIndex.html │ │ │ ├── zTreeObj.getNodes.html │ │ │ ├── zTreeObj.getNodesByFilter.html │ │ │ ├── zTreeObj.getNodesByParam.html │ │ │ ├── zTreeObj.getNodesByParamFuzzy.html │ │ │ ├── zTreeObj.getSelectedNodes.html │ │ │ ├── zTreeObj.hideNode.html │ │ │ ├── zTreeObj.hideNodes.html │ │ │ ├── zTreeObj.moveNode.html │ │ │ ├── zTreeObj.reAsyncChildNodes.html │ │ │ ├── zTreeObj.refresh.html │ │ │ ├── zTreeObj.removeChildNodes.html │ │ │ ├── zTreeObj.removeNode.html │ │ │ ├── zTreeObj.selectNode.html │ │ │ ├── zTreeObj.setChkDisabled.html │ │ │ ├── zTreeObj.setEditable.html │ │ │ ├── zTreeObj.setting.html │ │ │ ├── zTreeObj.showNode.html │ │ │ ├── zTreeObj.showNodes.html │ │ │ ├── zTreeObj.transformToArray.html │ │ │ ├── zTreeObj.transformTozTreeNodes.html │ │ │ └── zTreeObj.updateNode.html │ │ └── en │ │ │ ├── fn.zTree._z.html │ │ │ ├── fn.zTree.destroy.html │ │ │ ├── fn.zTree.getZTreeObj.html │ │ │ ├── fn.zTree.init.html │ │ │ ├── setting.async.autoParam.html │ │ │ ├── setting.async.contentType.html │ │ │ ├── setting.async.dataFilter.html │ │ │ ├── setting.async.dataType.html │ │ │ ├── setting.async.enable.html │ │ │ ├── setting.async.otherParam.html │ │ │ ├── setting.async.type.html │ │ │ ├── setting.async.url.html │ │ │ ├── setting.callback.beforeAsync.html │ │ │ ├── setting.callback.beforeCheck.html │ │ │ ├── setting.callback.beforeClick.html │ │ │ ├── setting.callback.beforeCollapse.html │ │ │ ├── setting.callback.beforeDblClick.html │ │ │ ├── setting.callback.beforeDrag.html │ │ │ ├── setting.callback.beforeDragOpen.html │ │ │ ├── setting.callback.beforeDrop.html │ │ │ ├── setting.callback.beforeEditName.html │ │ │ ├── setting.callback.beforeExpand.html │ │ │ ├── setting.callback.beforeMouseDown.html │ │ │ ├── setting.callback.beforeMouseUp.html │ │ │ ├── setting.callback.beforeRemove.html │ │ │ ├── setting.callback.beforeRename.html │ │ │ ├── setting.callback.beforeRightClick.html │ │ │ ├── setting.callback.onAsyncError.html │ │ │ ├── setting.callback.onAsyncSuccess.html │ │ │ ├── setting.callback.onCheck.html │ │ │ ├── setting.callback.onClick.html │ │ │ ├── setting.callback.onCollapse.html │ │ │ ├── setting.callback.onDblClick.html │ │ │ ├── setting.callback.onDrag.html │ │ │ ├── setting.callback.onDragMove.html │ │ │ ├── setting.callback.onDrop.html │ │ │ ├── setting.callback.onExpand.html │ │ │ ├── setting.callback.onMouseDown.html │ │ │ ├── setting.callback.onMouseUp.html │ │ │ ├── setting.callback.onNodeCreated.html │ │ │ ├── setting.callback.onRemove.html │ │ │ ├── setting.callback.onRename.html │ │ │ ├── setting.callback.onRightClick.html │ │ │ ├── setting.check.autoCheckTrigger.html │ │ │ ├── setting.check.chkDisabledInherit.html │ │ │ ├── setting.check.chkStyle.html │ │ │ ├── setting.check.chkboxType.html │ │ │ ├── setting.check.enable.html │ │ │ ├── setting.check.nocheckInherit.html │ │ │ ├── setting.check.radioType.html │ │ │ ├── setting.data.keep.leaf.html │ │ │ ├── setting.data.keep.parent.html │ │ │ ├── setting.data.key.checked.html │ │ │ ├── setting.data.key.children.html │ │ │ ├── setting.data.key.name.html │ │ │ ├── setting.data.key.title.html │ │ │ ├── setting.data.key.url.html │ │ │ ├── setting.data.simpleData.enable.html │ │ │ ├── setting.data.simpleData.idKey.html │ │ │ ├── setting.data.simpleData.pIdKey.html │ │ │ ├── setting.data.simpleData.rootPId.html │ │ │ ├── setting.edit.drag.autoExpandTrigger.html │ │ │ ├── setting.edit.drag.autoOpenTime.html │ │ │ ├── setting.edit.drag.borderMax.html │ │ │ ├── setting.edit.drag.borderMin.html │ │ │ ├── setting.edit.drag.inner.html │ │ │ ├── setting.edit.drag.isCopy.html │ │ │ ├── setting.edit.drag.isMove.html │ │ │ ├── setting.edit.drag.maxShowNodeNum.html │ │ │ ├── setting.edit.drag.minMoveSize.html │ │ │ ├── setting.edit.drag.next.html │ │ │ ├── setting.edit.drag.prev.html │ │ │ ├── setting.edit.editNameSelectAll.html │ │ │ ├── setting.edit.enable.html │ │ │ ├── setting.edit.removeTitle.html │ │ │ ├── setting.edit.renameTitle.html │ │ │ ├── setting.edit.showRemoveBtn.html │ │ │ ├── setting.edit.showRenameBtn.html │ │ │ ├── setting.treeId.html │ │ │ ├── setting.treeObj.html │ │ │ ├── setting.view.addDiyDom.html │ │ │ ├── setting.view.addHoverDom.html │ │ │ ├── setting.view.autoCancelSelected.html │ │ │ ├── setting.view.dblClickExpand.html │ │ │ ├── setting.view.expandSpeed.html │ │ │ ├── setting.view.fontCss.html │ │ │ ├── setting.view.nameIsHTML.html │ │ │ ├── setting.view.removeHoverDom.html │ │ │ ├── setting.view.selectedMulti.html │ │ │ ├── setting.view.showIcon.html │ │ │ ├── setting.view.showLine.html │ │ │ ├── setting.view.showTitle.html │ │ │ ├── setting.view.txtSelectedEnable.html │ │ │ ├── treeNode.check_Child_State.html │ │ │ ├── treeNode.check_Focus.html │ │ │ ├── treeNode.checked.html │ │ │ ├── treeNode.checkedOld.html │ │ │ ├── treeNode.children.html │ │ │ ├── treeNode.chkDisabled.html │ │ │ ├── treeNode.click.html │ │ │ ├── treeNode.diy.html │ │ │ ├── treeNode.editNameFlag.html │ │ │ ├── treeNode.getCheckStatus.html │ │ │ ├── treeNode.getIndex.html │ │ │ ├── treeNode.getNextNode.html │ │ │ ├── treeNode.getParentNode.html │ │ │ ├── treeNode.getPath.html │ │ │ ├── treeNode.getPreNode.html │ │ │ ├── treeNode.halfCheck.html │ │ │ ├── treeNode.icon.html │ │ │ ├── treeNode.iconClose.html │ │ │ ├── treeNode.iconOpen.html │ │ │ ├── treeNode.iconSkin.html │ │ │ ├── treeNode.isAjaxing.html │ │ │ ├── treeNode.isFirstNode.html │ │ │ ├── treeNode.isHidden.html │ │ │ ├── treeNode.isHover.html │ │ │ ├── treeNode.isLastNode.html │ │ │ ├── treeNode.isParent.html │ │ │ ├── treeNode.level.html │ │ │ ├── treeNode.name.html │ │ │ ├── treeNode.nocheck.html │ │ │ ├── treeNode.open.html │ │ │ ├── treeNode.parentTId.html │ │ │ ├── treeNode.tId.html │ │ │ ├── treeNode.target.html │ │ │ ├── treeNode.url.html │ │ │ ├── treeNode.zAsync.html │ │ │ ├── zTreeObj.addNodes.html │ │ │ ├── zTreeObj.cancelEditName.html │ │ │ ├── zTreeObj.cancelSelectedNode.html │ │ │ ├── zTreeObj.checkAllNodes.html │ │ │ ├── zTreeObj.checkNode.html │ │ │ ├── zTreeObj.copyNode.html │ │ │ ├── zTreeObj.destroy.html │ │ │ ├── zTreeObj.editName.html │ │ │ ├── zTreeObj.expandAll.html │ │ │ ├── zTreeObj.expandNode.html │ │ │ ├── zTreeObj.getChangeCheckedNodes.html │ │ │ ├── zTreeObj.getCheckedNodes.html │ │ │ ├── zTreeObj.getNodeByParam.html │ │ │ ├── zTreeObj.getNodeByTId.html │ │ │ ├── zTreeObj.getNodeIndex.html │ │ │ ├── zTreeObj.getNodes.html │ │ │ ├── zTreeObj.getNodesByFilter.html │ │ │ ├── zTreeObj.getNodesByParam.html │ │ │ ├── zTreeObj.getNodesByParamFuzzy.html │ │ │ ├── zTreeObj.getSelectedNodes.html │ │ │ ├── zTreeObj.hideNode.html │ │ │ ├── zTreeObj.hideNodes.html │ │ │ ├── zTreeObj.moveNode.html │ │ │ ├── zTreeObj.reAsyncChildNodes.html │ │ │ ├── zTreeObj.refresh.html │ │ │ ├── zTreeObj.removeChildNodes.html │ │ │ ├── zTreeObj.removeNode.html │ │ │ ├── zTreeObj.selectNode.html │ │ │ ├── zTreeObj.setChkDisabled.html │ │ │ ├── zTreeObj.setEditable.html │ │ │ ├── zTreeObj.setting.html │ │ │ ├── zTreeObj.showNode.html │ │ │ ├── zTreeObj.showNodes.html │ │ │ ├── zTreeObj.transformToArray.html │ │ │ ├── zTreeObj.transformTozTreeNodes.html │ │ │ └── zTreeObj.updateNode.html │ │ ├── css │ │ ├── awesomeStyle │ │ │ ├── awesome.css │ │ │ ├── awesome.less │ │ │ ├── fa.less │ │ │ └── img │ │ │ │ └── loading.gif │ │ ├── demo.css │ │ ├── metroStyle │ │ │ ├── img │ │ │ │ ├── line_conn.png │ │ │ │ ├── loading.gif │ │ │ │ ├── metro.gif │ │ │ │ └── metro.png │ │ │ └── metroStyle.css │ │ └── zTreeStyle │ │ │ ├── img │ │ │ ├── diy │ │ │ │ ├── 1_close.png │ │ │ │ ├── 1_open.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ ├── line_conn.gif │ │ │ ├── loading.gif │ │ │ ├── zTreeStandard.gif │ │ │ └── zTreeStandard.png │ │ │ └── zTreeStyle.css │ │ ├── demo │ │ ├── cn │ │ │ ├── asyncData │ │ │ │ ├── getNodes.php │ │ │ │ └── getNodesForBigData.php │ │ │ ├── bigdata │ │ │ │ ├── common.html │ │ │ │ ├── diy_async.html │ │ │ │ └── page.html │ │ │ ├── core │ │ │ │ ├── async.html │ │ │ │ ├── async_fun.html │ │ │ │ ├── click.html │ │ │ │ ├── custom_font.html │ │ │ │ ├── custom_icon.html │ │ │ │ ├── custom_iconSkin.html │ │ │ │ ├── expand.html │ │ │ │ ├── noicon.html │ │ │ │ ├── noline.html │ │ │ │ ├── otherMouse.html │ │ │ │ ├── searchNodes.html │ │ │ │ ├── simpleData.html │ │ │ │ ├── standardData.html │ │ │ │ ├── update_fun.html │ │ │ │ └── url.html │ │ │ ├── excheck │ │ │ │ ├── checkbox.html │ │ │ │ ├── checkbox_chkDisabled.html │ │ │ │ ├── checkbox_count.html │ │ │ │ ├── checkbox_fun.html │ │ │ │ ├── checkbox_halfCheck.html │ │ │ │ ├── checkbox_nocheck.html │ │ │ │ ├── radio.html │ │ │ │ ├── radio_chkDisabled.html │ │ │ │ ├── radio_fun.html │ │ │ │ ├── radio_halfCheck.html │ │ │ │ └── radio_nocheck.html │ │ │ ├── exedit │ │ │ │ ├── async_edit.html │ │ │ │ ├── drag.html │ │ │ │ ├── drag_fun.html │ │ │ │ ├── drag_super.html │ │ │ │ ├── edit.html │ │ │ │ ├── edit_fun.html │ │ │ │ ├── edit_super.html │ │ │ │ └── multiTree.html │ │ │ ├── exhide │ │ │ │ ├── checkbox.html │ │ │ │ ├── common.html │ │ │ │ └── radio.html │ │ │ ├── index.html │ │ │ └── super │ │ │ │ ├── asyncForAll.html │ │ │ │ ├── awesome.html │ │ │ │ ├── checkbox_radio.html │ │ │ │ ├── diydom.html │ │ │ │ ├── dragWithOther.html │ │ │ │ ├── left_menu.html │ │ │ │ ├── left_menuForOutLook.gif │ │ │ │ ├── left_menuForOutLook.html │ │ │ │ ├── left_menuForOutLook.png │ │ │ │ ├── metro.html │ │ │ │ ├── oneclick.html │ │ │ │ ├── oneroot.html │ │ │ │ ├── rightClickMenu.html │ │ │ │ ├── select_menu.html │ │ │ │ ├── select_menu_checkbox.html │ │ │ │ ├── select_menu_radio.html │ │ │ │ └── singlepath.html │ │ └── en │ │ │ ├── asyncData │ │ │ ├── getNodes.php │ │ │ └── getNodesForBigData.php │ │ │ ├── bigdata │ │ │ ├── common.html │ │ │ ├── diy_async.html │ │ │ └── page.html │ │ │ ├── core │ │ │ ├── async.html │ │ │ ├── async_fun.html │ │ │ ├── click.html │ │ │ ├── custom_font.html │ │ │ ├── custom_icon.html │ │ │ ├── custom_iconSkin.html │ │ │ ├── expand.html │ │ │ ├── noicon.html │ │ │ ├── noline.html │ │ │ ├── otherMouse.html │ │ │ ├── searchNodes.html │ │ │ ├── simpleData.html │ │ │ ├── standardData.html │ │ │ ├── update_fun.html │ │ │ └── url.html │ │ │ ├── excheck │ │ │ ├── checkbox.html │ │ │ ├── checkbox_chkDisabled.html │ │ │ ├── checkbox_count.html │ │ │ ├── checkbox_fun.html │ │ │ ├── checkbox_halfCheck.html │ │ │ ├── checkbox_nocheck.html │ │ │ ├── radio.html │ │ │ ├── radio_chkDisabled.html │ │ │ ├── radio_fun.html │ │ │ ├── radio_halfCheck.html │ │ │ └── radio_nocheck.html │ │ │ ├── exedit │ │ │ ├── async_edit.html │ │ │ ├── drag.html │ │ │ ├── drag_fun.html │ │ │ ├── drag_super.html │ │ │ ├── edit.html │ │ │ ├── edit_fun.html │ │ │ ├── edit_super.html │ │ │ └── multiTree.html │ │ │ ├── exhide │ │ │ ├── checkbox.html │ │ │ ├── common.html │ │ │ └── radio.html │ │ │ ├── index.html │ │ │ └── super │ │ │ ├── asyncForAll.html │ │ │ ├── awesome.html │ │ │ ├── checkbox_radio.html │ │ │ ├── diydom.html │ │ │ ├── dragWithOther.html │ │ │ ├── left_menu.html │ │ │ ├── left_menuForOutLook.gif │ │ │ ├── left_menuForOutLook.html │ │ │ ├── left_menuForOutLook.png │ │ │ ├── metro.html │ │ │ ├── oneclick.html │ │ │ ├── oneroot.html │ │ │ ├── rightClickMenu.html │ │ │ ├── select_menu.html │ │ │ ├── select_menu_checkbox.html │ │ │ ├── select_menu_radio.html │ │ │ ├── singlepath.html │ │ │ └── ztree.html │ │ ├── js │ │ ├── jquery-1.4.4.min.js │ │ ├── jquery.ztree.all.js │ │ ├── jquery.ztree.all.min.js │ │ ├── jquery.ztree.core.js │ │ ├── jquery.ztree.core.min.js │ │ ├── jquery.ztree.excheck.js │ │ ├── jquery.ztree.excheck.min.js │ │ ├── jquery.ztree.exedit.js │ │ ├── jquery.ztree.exedit.min.js │ │ ├── jquery.ztree.exhide.js │ │ ├── jquery.ztree.exhide.min.js │ │ └── ztree.3.5.26.zip │ │ ├── log v3.x.txt │ │ ├── package.json │ │ └── zTree.v3.jquery.json ├── templates │ ├── main │ │ ├── add_role.html │ │ ├── base.html │ │ ├── edit_role.html │ │ ├── index.html │ │ ├── login.html │ │ └── role_list.html │ └── mtree │ │ ├── add_host.html │ │ ├── add_idc.html │ │ ├── edit_host.html │ │ ├── edit_idc.html │ │ ├── host_list.html │ │ ├── host_manage.html │ │ ├── host_mount.html │ │ ├── host_stat.html │ │ ├── idc_list.html │ │ ├── mtree.html │ │ ├── my_role_list.html │ │ ├── role_list.html │ │ └── search_host_mtree.html ├── urls.py └── wsgi.py ├── pip_requirements.txt ├── service.sh └── update_python2.7.8.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-language=Python 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | nohup.out 3 | *.log 4 | *.swp 5 | db.sqlite3 6 | /env/ 7 | /env2.7/ 8 | -------------------------------------------------------------------------------- /home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/home.png -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | # 忽略所有文件 2 | * 3 | # 除了以下文件 4 | !.gitignore 5 | !__init__.py 6 | -------------------------------------------------------------------------------- /main/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/main/__init__.py -------------------------------------------------------------------------------- /main/admin.py: -------------------------------------------------------------------------------- 1 | #coding:utf-8 2 | 3 | from django.contrib import admin 4 | from .models import * 5 | 6 | class RoleAdmin(admin.ModelAdmin): 7 | list_display = ('id', 'name', 'zh_name', 'desc', 'flag', 'creator', 'create_time', 'update_time') 8 | 9 | admin.site.register(Role,RoleAdmin) 10 | -------------------------------------------------------------------------------- /main/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class MainConfig(AppConfig): 7 | name = 'main' 8 | -------------------------------------------------------------------------------- /main/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | # 忽略所有文件 2 | * 3 | # 除了这个文件 4 | !.gitignore 5 | !__init__.py 6 | -------------------------------------------------------------------------------- /main/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/main/migrations/__init__.py -------------------------------------------------------------------------------- /main/models.py: -------------------------------------------------------------------------------- 1 | #coding:utf-8 2 | 3 | from django.db import models 4 | from django.contrib.auth.models import User 5 | 6 | class Role(models.Model): 7 | name = models.CharField('角色名', max_length=50, unique=True) 8 | zh_name = models.CharField('角色中文名', max_length=100) 9 | desc = models.CharField('角色权限说明', max_length=500, blank=True) 10 | flag = models.IntegerField(u'标志', default=0) #1:特殊角色,不能删除和修改 11 | creator = models.CharField(u'创建人',max_length=30, blank=True) 12 | users = models.ManyToManyField(User, blank=True) 13 | create_time = models.DateTimeField('创建时间', auto_now_add=True) 14 | update_time = models.DateTimeField('更新时间', auto_now=True) 15 | 16 | -------------------------------------------------------------------------------- /main/tests.py: -------------------------------------------------------------------------------- 1 | #coding:utf-8 2 | #from django.test import TestCase 3 | 4 | # Create your tests here. 5 | import json 6 | import requests 7 | url = 'http://120.26.231.224:8000/addtask' 8 | payload = { 9 | "action": "release", 10 | "data": [ 11 | { 12 | "idc": "dev", 13 | "module_name": "bbtree-settingcenter-api", 14 | "war_version": "", 15 | }, 16 | { 17 | "idc": "dev", 18 | "module_name": "bbtree-usercenter-web", 19 | "war_version": "", 20 | } 21 | ] 22 | } 23 | r = requests.post(url, data=json.dumps(payload)) 24 | print r.text 25 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import os 3 | import sys 4 | 5 | if __name__ == "__main__": 6 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mysite.settings") 7 | 8 | from django.core.management import execute_from_command_line 9 | 10 | execute_from_command_line(sys.argv) 11 | -------------------------------------------------------------------------------- /mtree/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mtree/__init__.py -------------------------------------------------------------------------------- /mtree/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class MtreeConfig(AppConfig): 7 | name = 'mtree' 8 | -------------------------------------------------------------------------------- /mtree/migrations/.gitignore: -------------------------------------------------------------------------------- 1 | # 忽略所有文件 2 | * 3 | # 除了以下文件 4 | !.gitignore 5 | !__init__.py 6 | -------------------------------------------------------------------------------- /mtree/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mtree/migrations/__init__.py -------------------------------------------------------------------------------- /mtree/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /mysite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/__init__.py -------------------------------------------------------------------------------- /mysite/db_connect.py: -------------------------------------------------------------------------------- 1 | #coding=utf-8 2 | 3 | import sys 4 | import os 5 | from django.conf import settings 6 | 7 | sys.path.append(settings.BASE_DIR) 8 | os.environ['DJANGO_SETTINGS_MODULE'] ='mysite.settings' 9 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | .idea 3 | /nbproject/private/ 4 | /nbproject/ 5 | /node_modules/ 6 | TODO 7 | *.zip 8 | test.html 9 | *.log 10 | test.html 11 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "asi" : true, 3 | "browser" : true, 4 | "eqeqeq" : false, 5 | "eqnull" : true, 6 | "es3" : true, 7 | "expr" : true, 8 | "jquery" : true, 9 | "latedef" : "nofunc", 10 | "laxbreak" : true, 11 | "nonbsp" : true, 12 | "strict" : true, 13 | "undef" : true, 14 | "unused" : true, 15 | // External variabls and plugins 16 | "predef": [ "AdminLTEOptions", "FastClick", "moment", "Morris", "Chart" ] 17 | } 18 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/bootstrap/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/bootstrap/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/bootstrap/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "AdminLTE", 3 | "homepage": "http://almsaeedstudio.com", 4 | "authors": [ 5 | "Abdullah Almsaeed " 6 | ], 7 | "description": "Admin dashboard and control panel template", 8 | "main": [ 9 | "index2.html", 10 | "dist/css/AdminLTE.css", 11 | "dist/js/app.js", 12 | "build/less/AdminLTE.less" 13 | ], 14 | "keywords": [ 15 | "css", 16 | "js", 17 | "html", 18 | "template", 19 | "admin", 20 | "bootstrap", 21 | "theme", 22 | "backend", 23 | "responsive" 24 | ], 25 | "license": "MIT", 26 | "ignore": [ 27 | "/.*", 28 | "node_modules", 29 | "bower_components", 30 | "composer.json", 31 | "documentation" 32 | ] 33 | } 34 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/bootstrap-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 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/less/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "adjoining-classes": false, 3 | "box-sizing": false, 4 | "box-model": false, 5 | "compatible-vendor-prefixes": false, 6 | "floats": false, 7 | "font-sizes": false, 8 | "gradients": false, 9 | "important": false, 10 | "known-properties": false, 11 | "outline-none": false, 12 | "qualified-headings": false, 13 | "regex-selectors": false, 14 | "shorthand": false, 15 | "text-indent": false, 16 | "unique-headings": false, 17 | "universal-selector": false, 18 | "unqualified-attributes": false, 19 | "ids": false, 20 | "fallback-colors": false, 21 | "vendor-prefix": false, 22 | "import": false 23 | } -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/less/carousel.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Component: Carousel 3 | * ------------------- 4 | */ 5 | .carousel-control { 6 | &.left, 7 | &.right { 8 | background-image: none; 9 | } 10 | > .fa { 11 | font-size: 40px; 12 | position: absolute; 13 | top: 50%; 14 | z-index: 5; 15 | display: inline-block; 16 | margin-top: -20px; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/less/invoice.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Page: Invoice 3 | * ------------- 4 | */ 5 | 6 | .invoice { 7 | position: relative; 8 | background: #fff; 9 | border: 1px solid #f4f4f4; 10 | padding: 20px; 11 | margin: 10px 25px; 12 | } 13 | 14 | .invoice-title { 15 | margin-top: 0; 16 | } 17 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/less/labels.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Component: Label 3 | * ---------------- 4 | */ 5 | .label-default { 6 | background-color: @gray; 7 | color: #444; 8 | } 9 | .label-danger { 10 | &:extend(.bg-red); 11 | } 12 | .label-info { 13 | &:extend(.bg-aqua); 14 | } 15 | .label-warning { 16 | &:extend(.bg-yellow); 17 | } 18 | .label-primary { 19 | &:extend(.bg-light-blue); 20 | } 21 | .label-success { 22 | &:extend(.bg-green); 23 | } 24 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/less/profile.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Page: Profile 3 | * ------------- 4 | */ 5 | 6 | .profile-user-img { 7 | margin: 0 auto; 8 | width: 100px; 9 | padding: 3px; 10 | border: 3px solid @gray; 11 | } 12 | .profile-username { 13 | font-size: 21px; 14 | margin-top: 5px; 15 | } 16 | .post { 17 | border-bottom: 1px solid @gray; 18 | margin-bottom: 15px; 19 | padding-bottom: 15px; 20 | color: #666; 21 | &:last-of-type { 22 | border-bottom: 0; 23 | margin-bottom: 0; 24 | padding-bottom: 0; 25 | } 26 | .user-block { 27 | margin-bottom: 15px; 28 | } 29 | } -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/less/skins/_all-skins.less: -------------------------------------------------------------------------------- 1 | //All skins in one file 2 | @import "skin-blue.less"; 3 | @import "skin-blue-light.less"; 4 | @import "skin-black.less"; 5 | @import "skin-black-light.less"; 6 | @import "skin-green.less"; 7 | @import "skin-green-light.less"; 8 | @import "skin-red.less"; 9 | @import "skin-red-light.less"; 10 | @import "skin-yellow.less"; 11 | @import "skin-yellow-light.less"; 12 | @import "skin-purple.less"; 13 | @import "skin-purple-light.less"; 14 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/build/less/users-list.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Component: Users List 3 | * --------------------- 4 | */ 5 | .users-list { 6 | &:extend(.list-unstyled); 7 | > li { 8 | width: 25%; 9 | float: left; 10 | padding: 10px; 11 | text-align: center; 12 | img { 13 | .border-radius(50%); 14 | max-width: 100%; 15 | height: auto; 16 | } 17 | > a:hover { 18 | &, 19 | .users-list-name { 20 | color: #999; 21 | } 22 | } 23 | } 24 | } 25 | .users-list-name, 26 | .users-list-date { 27 | display: block; 28 | } 29 | .users-list-name { 30 | font-weight: 600; 31 | color: #444; 32 | overflow: hidden; 33 | white-space: nowrap; 34 | text-overflow: ellipsis; 35 | } 36 | .users-list-date { 37 | color: #999; 38 | font-size: 12px; 39 | } 40 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "almasaeed2010/adminlte", 3 | "description": "AdminLTE - admin control panel and dashboard that's based on Bootstrap 3", 4 | "homepage": "http://almsaeedstudio.com/", 5 | "keywords": [ 6 | "css", 7 | "js", 8 | "less", 9 | "responsive", 10 | "back-end", 11 | "template", 12 | "theme", 13 | "web", 14 | "admin" 15 | ], 16 | "authors": [ 17 | { 18 | "name": "Abdullah Almsaeed", 19 | "email": "support@almsaeedstudio.com" 20 | } 21 | ], 22 | "license": "MIT", 23 | "support": { 24 | "issues": "https://github.com/almasaeed2010/AdminLTE/issues" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/avatar.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/avatar04.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/avatar2.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/avatar3.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/avatar5.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/credit/american-express.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/credit/cirrus.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/credit/mastercard.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/credit/mestro.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/credit/paypal.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/credit/paypal2.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/credit/visa.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/default-50x50.gif -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/icons.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/photo1.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/photo2.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/photo3.jpg -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/photo4.jpg -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/user1-128x128.jpg -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/user2-160x160.jpg -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/user3-128x128.jpg -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/user4-128x128.jpg -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/user5-128x128.jpg -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/user6-128x128.jpg -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/user7-128x128.jpg -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/dist/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/dist/img/user8-128x128.jpg -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/documentation/build/include/browsers.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |

AdminLTE supports the following browsers:

4 | 11 |

Note: IE9 does not support transitions or animations. The template will function properly but it won't use animations/transitions on IE9.

12 |
13 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/documentation/build/include/dependencies.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |

AdminLTE depends on two main frameworks. 4 | The downloadable package contains both of these libraries, so you don't have to manually download them.

5 | 10 |
-------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/documentation/build/include/license.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |

AdminLTE

4 |

5 | AdminLTE is an open source project that is licensed under the MIT license. 6 | This allows you to do pretty much anything you want as long as you include 7 | the copyright in "all copies or substantial portions of the Software." 8 | Attribution is not required (though very much appreciated). 9 |

10 |
11 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "admin-lte", 3 | "version": "2.3.0", 4 | "repository": { 5 | "type": "git", 6 | "url": "git://github.com/almasaeed2010/AdminLTE.git" 7 | }, 8 | "license": "MIT", 9 | "devDependencies": { 10 | "R2": "^1.4.3", 11 | "grunt": "~0.4.5", 12 | "grunt-contrib-clean": "^0.6.0", 13 | "grunt-contrib-csslint": "^0.5.0", 14 | "grunt-contrib-cssmin": "^0.12.2", 15 | "grunt-contrib-jshint": "^0.11.2", 16 | "grunt-contrib-less": "^0.12.0", 17 | "grunt-contrib-uglify": "^0.7.0", 18 | "grunt-contrib-watch": "~0.6.1", 19 | "grunt-cssjanus": "^0.2.4", 20 | "grunt-image": "^1.0.5", 21 | "grunt-includes": "^0.4.5" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/fakeobjects/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/fakeobjects/images/spacer.gif -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/colorpicker/img/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/colorpicker/img/alpha-horizontal.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/colorpicker/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/colorpicker/img/alpha.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/colorpicker/img/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/colorpicker/img/hue-horizontal.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/colorpicker/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/colorpicker/img/hue.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/colorpicker/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/colorpicker/img/saturation.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.css: -------------------------------------------------------------------------------- 1 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 2 | * AutoFill styles 3 | */ 4 | 5 | div.AutoFill_filler { 6 | display: none; 7 | position: absolute; 8 | height: 14px; 9 | width: 14px; 10 | background: url(../images/filler.png) no-repeat center center; 11 | z-index: 1002; 12 | } 13 | 14 | div.AutoFill_border { 15 | display: none; 16 | position: absolute; 17 | background-color: #0063dc; 18 | z-index: 1001; 19 | 20 | box-shadow: 0px 0px 5px #76b4ff; 21 | -moz-box-shadow: 0px 0px 5px #76b4ff; 22 | -webkit-box-shadow: 0px 0px 5px #76b4ff; 23 | } 24 | 25 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.min.css: -------------------------------------------------------------------------------- 1 | div.AutoFill_filler{display:none;position:absolute;height:14px;width:14px;background:url(../images/filler.png) no-repeat center center;z-index:1002}div.AutoFill_border{display:none;position:absolute;background-color:#0063dc;z-index:1001;box-shadow:0px 0px 5px #76b4ff;-moz-box-shadow:0px 0px 5px #76b4ff;-webkit-box-shadow:0px 0px 5px #76b4ff} 2 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/AutoFill/images/filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/AutoFill/images/filler.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Namespace DTCR - "DataTables ColReorder" plug-in 3 | */ 4 | 5 | table.DTCR_clonedTable { 6 | background-color: rgba(255, 255, 255, 0.7); 7 | z-index: 202; 8 | } 9 | 10 | div.DTCR_pointer { 11 | width: 1px; 12 | background-color: #0259C4; 13 | z-index: 201; 14 | } -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable{background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0259C4;z-index:201} 2 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/ColReorder/images/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/ColReorder/images/insert.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/ColVis/css/dataTables.colvis.jqueryui.css: -------------------------------------------------------------------------------- 1 | 2 | button.ColVis_Button, 3 | ul.ColVis_collection li { 4 | padding: 0.5em; 5 | } 6 | 7 | ul.ColVis_collection { 8 | margin: 0; 9 | padding: 0; 10 | overflow: hidden; 11 | z-index: 2002; 12 | } 13 | 14 | ul.ColVis_collection li { 15 | clear: both; 16 | display: block; 17 | text-align: left; 18 | margin: -1px 0 0 0; 19 | } 20 | 21 | ul.ColVis_collection li span { 22 | display: inline-block; 23 | padding-left: 0.5em; 24 | cursor: pointer; 25 | } 26 | 27 | div.ColVis_collectionBackground { 28 | position: fixed; 29 | top: 0; 30 | left: 0; 31 | height: 100%; 32 | width: 100%; 33 | background-color: black; 34 | z-index: 1100; 35 | } 36 | 37 | 38 | div.ColVis_catcher { 39 | position: absolute; 40 | z-index: 1101; 41 | } -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | /* Block out what is behind the fixed column's header and footer */ 4 | table.DTFC_Cloned thead, 5 | table.DTFC_Cloned tfoot { 6 | background-color: white; 7 | } 8 | 9 | /* Block out the gap above the scrollbar on the right, when there is a fixed 10 | * right column 11 | */ 12 | div.DTFC_Blocker { 13 | background-color: white; 14 | } 15 | 16 | div.DTFC_LeftWrapper table.dataTable, 17 | div.DTFC_RightWrapper table.dataTable { 18 | margin-bottom: 0; 19 | z-index: 2; 20 | } 21 | 22 | div.DTFC_LeftWrapper table.dataTable.no-footer, 23 | div.DTFC_RightWrapper table.dataTable.no-footer { 24 | border-bottom: none; 25 | } 26 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.min.css: -------------------------------------------------------------------------------- 1 | table.DTFC_Cloned thead,table.DTFC_Cloned tfoot{background-color:white}div.DTFC_Blocker{background-color:white}div.DTFC_LeftWrapper table.dataTable,div.DTFC_RightWrapper table.dataTable{margin-bottom:0;z-index:2}div.DTFC_LeftWrapper table.dataTable.no-footer,div.DTFC_RightWrapper table.dataTable.no-footer{border-bottom:none} 2 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | div.FixedHeader_Cloned th, 4 | div.FixedHeader_Cloned td { 5 | background-color: white !important; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.min.css: -------------------------------------------------------------------------------- 1 | div.FixedHeader_Cloned th,div.FixedHeader_Cloned td{background-color:white !important} 2 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | table.KeyTable th.focus, 4 | table.KeyTable td.focus { 5 | outline: 3px solid #3366FF; 6 | outline-offset: -3px; 7 | } 8 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.min.css: -------------------------------------------------------------------------------- 1 | table.KeyTable th.focus,table.KeyTable td.focus{outline:3px solid #3366FF;outline-offset:-3px} 2 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/Responsive/Readme.md -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/Scroller/css/dataTables.scroller.min.css: -------------------------------------------------------------------------------- 1 | div.DTS tbody th,div.DTS tbody td{white-space:nowrap}div.DTS tbody tr.even{background-color:white}div.DTS div.DTS_Loading{position:absolute;top:50%;left:50%;width:200px;height:20px;margin-top:-20px;margin-left:-100px;z-index:1;border:1px solid #999;padding:20px 0;text-align:center;background-color:white;background-color:rgba(255,255,255,0.5)}div.DTS div.dataTables_scrollHead,div.DTS div.dataTables_scrollFoot{background-color:white}div.DTS div.dataTables_scrollBody{z-index:2}div.DTS div.dataTables_scroll{background:url("../images/loading-background.png") repeat 0 0} 2 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/Scroller/images/loading-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/Scroller/images/loading-background.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/collection.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/collection_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/collection_hover.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/copy.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/copy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/copy_hover.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/csv.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/csv_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/csv_hover.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/pdf.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/pdf_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/pdf_hover.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/print.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/print_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/print_hover.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/psd/collection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/psd/collection.psd -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/psd/copy document.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/psd/copy document.psd -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/psd/file_types.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/psd/file_types.psd -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/psd/printer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/psd/printer.psd -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/xls.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/xls_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/images/xls_hover.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/images/sort_both.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.az.js: -------------------------------------------------------------------------------- 1 | // Azerbaijani 2 | ;(function($){ 3 | $.fn.datepicker.dates['az'] = { 4 | days: ["Bazar", "Bazar ertəsi", "Çərşənbə axşamı", "Çərşənbə", "Cümə axşamı", "Cümə", "Şənbə", "Bazar"], 5 | daysShort: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş.", "B."], 6 | daysMin: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş.", "B."], 7 | months: ["Yanvar", "Fevral", "Mart", "Aprel", "May", "İyun", "İyul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr"], 8 | monthsShort: ["Yan", "Fev", "Mar", "Apr", "May", "İyun", "İyul", "Avq", "Sen", "Okt", "Noy", "Dek"], 9 | today: "Bu gün", 10 | weekStart: 1 11 | }; 12 | }(jQuery)); 13 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.bg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bulgarian translation for bootstrap-datepicker 3 | * Apostol Apostolov 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['bg'] = { 7 | days: ["Неделя", "Понеделник", "Вторник", "Сряда", "Четвъртък", "Петък", "Събота", "Неделя"], 8 | daysShort: ["Нед", "Пон", "Вто", "Сря", "Чет", "Пет", "Съб", "Нед"], 9 | daysMin: ["Н", "П", "В", "С", "Ч", "П", "С", "Н"], 10 | months: ["Януари", "Февруари", "Март", "Април", "Май", "Юни", "Юли", "Август", "Септември", "Октомври", "Ноември", "Декември"], 11 | monthsShort: ["Ян", "Фев", "Мар", "Апр", "Май", "Юни", "Юли", "Авг", "Сеп", "Окт", "Ное", "Дек"], 12 | today: "днес" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.ca.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Catalan translation for bootstrap-datepicker 3 | * J. Garcia 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ca'] = { 7 | days: ["Diumenge", "Dilluns", "Dimarts", "Dimecres", "Dijous", "Divendres", "Dissabte", "Diumenge"], 8 | daysShort: ["Diu", "Dil", "Dmt", "Dmc", "Dij", "Div", "Dis", "Diu"], 9 | daysMin: ["dg", "dl", "dt", "dc", "dj", "dv", "ds", "dg"], 10 | months: ["Gener", "Febrer", "Març", "Abril", "Maig", "Juny", "Juliol", "Agost", "Setembre", "Octubre", "Novembre", "Desembre"], 11 | monthsShort: ["Gen", "Feb", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Oct", "Nov", "Des"], 12 | today: "Avui" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.cs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Czech translation for bootstrap-datepicker 3 | * Matěj Koubík 4 | * Fixes by Michal Remiš 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['cs'] = { 8 | days: ["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota", "Neděle"], 9 | daysShort: ["Ned", "Pon", "Úte", "Stř", "Čtv", "Pát", "Sob", "Ned"], 10 | daysMin: ["Ne", "Po", "Út", "St", "Čt", "Pá", "So", "Ne"], 11 | months: ["Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec"], 12 | monthsShort: ["Led", "Úno", "Bře", "Dub", "Kvě", "Čer", "Čnc", "Srp", "Zář", "Říj", "Lis", "Pro"], 13 | today: "Dnes" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.cy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Welsh translation for bootstrap-datepicker 3 | * S. Morris 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['cy'] = { 7 | days: ["Sul", "Llun", "Mawrth", "Mercher", "Iau", "Gwener", "Sadwrn", "Sul"], 8 | daysShort: ["Sul", "Llu", "Maw", "Mer", "Iau", "Gwe", "Sad", "Sul"], 9 | daysMin: ["Su", "Ll", "Ma", "Me", "Ia", "Gwe", "Sa", "Su"], 10 | months: ["Ionawr", "Chewfror", "Mawrth", "Ebrill", "Mai", "Mehefin", "Gorfennaf", "Awst", "Medi", "Hydref", "Tachwedd", "Rhagfyr"], 11 | monthsShort: ["Ion", "Chw", "Maw", "Ebr", "Mai", "Meh", "Gor", "Aws", "Med", "Hyd", "Tach", "Rha"], 12 | today: "Heddiw" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.da.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Danish translation for bootstrap-datepicker 3 | * Christian Pedersen 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['da'] = { 7 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"], 8 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"], 9 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"], 10 | months: ["Januar", "Februar", "Marts", "April", "Maj", "Juni", "Juli", "August", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "I Dag", 13 | clear: "Nulstil" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.de.js: -------------------------------------------------------------------------------- 1 | /** 2 | * German translation for bootstrap-datepicker 3 | * Sam Zurcher 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['de'] = { 7 | days: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag", "Sonntag"], 8 | daysShort: ["Son", "Mon", "Die", "Mit", "Don", "Fre", "Sam", "Son"], 9 | daysMin: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa", "So"], 10 | months: ["Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"], 11 | monthsShort: ["Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"], 12 | today: "Heute", 13 | clear: "Löschen", 14 | weekStart: 1, 15 | format: "dd.mm.yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.el.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Greek translation for bootstrap-datepicker 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['el'] = { 6 | days: ["Κυριακή", "Δευτέρα", "Τρίτη", "Τετάρτη", "Πέμπτη", "Παρασκευή", "Σάββατο", "Κυριακή"], 7 | daysShort: ["Κυρ", "Δευ", "Τρι", "Τετ", "Πεμ", "Παρ", "Σαβ", "Κυρ"], 8 | daysMin: ["Κυ", "Δε", "Τρ", "Τε", "Πε", "Πα", "Σα", "Κυ"], 9 | months: ["Ιανουάριος", "Φεβρουάριος", "Μάρτιος", "Απρίλιος", "Μάιος", "Ιούνιος", "Ιούλιος", "Αύγουστος", "Σεπτέμβριος", "Οκτώβριος", "Νοέμβριος", "Δεκέμβριος"], 10 | monthsShort: ["Ιαν", "Φεβ", "Μαρ", "Απρ", "Μάι", "Ιουν", "Ιουλ", "Αυγ", "Σεπ", "Οκτ", "Νοε", "Δεκ"], 11 | today: "Σήμερα" 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.es.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Spanish translation for bootstrap-datepicker 3 | * Bruno Bonamin 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['es'] = { 7 | days: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado", "Domingo"], 8 | daysShort: ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb", "Dom"], 9 | daysMin: ["Do", "Lu", "Ma", "Mi", "Ju", "Vi", "Sa", "Do"], 10 | months: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"], 11 | monthsShort: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"], 12 | today: "Hoy" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.fa.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Persian translation for bootstrap-datepicker 3 | * Mostafa Rokooie 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['fa'] = { 7 | days: ["یک‌شنبه", "دوشنبه", "سه‌شنبه", "چهارشنبه", "پنج‌شنبه", "جمعه", "شنبه", "یک‌شنبه"], 8 | daysShort: ["یک", "دو", "سه", "چهار", "پنج", "جمعه", "شنبه", "یک"], 9 | daysMin: ["ی", "د", "س", "چ", "پ", "ج", "ش", "ی"], 10 | months: ["ژانویه", "فوریه", "مارس", "آوریل", "مه", "ژوئن", "ژوئیه", "اوت", "سپتامبر", "اکتبر", "نوامبر", "دسامبر"], 11 | monthsShort: ["ژان", "فور", "مار", "آور", "مه", "ژون", "ژوی", "اوت", "سپت", "اکت", "نوا", "دسا"], 12 | today: "امروز", 13 | clear: "پاک کن", 14 | weekStart: 1, 15 | format: "yyyy/mm/dd" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.fr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * French translation for bootstrap-datepicker 3 | * Nico Mollet 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['fr'] = { 7 | days: ["Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi", "Dimanche"], 8 | daysShort: ["Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam", "Dim"], 9 | daysMin: ["D", "L", "Ma", "Me", "J", "V", "S", "D"], 10 | months: ["Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Décembre"], 11 | monthsShort: ["Jan", "Fév", "Mar", "Avr", "Mai", "Jui", "Jul", "Aou", "Sep", "Oct", "Nov", "Déc"], 12 | today: "Aujourd'hui", 13 | clear: "Effacer", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.gl.js: -------------------------------------------------------------------------------- 1 | ;(function($){ 2 | $.fn.datepicker.dates['gl'] = { 3 | days: ["Domingo", "Luns", "Martes", "Mércores", "Xoves", "Venres", "Sábado", "Domingo"], 4 | daysShort: ["Dom", "Lun", "Mar", "Mér", "Xov", "Ven", "Sáb", "Dom"], 5 | daysMin: ["Do", "Lu", "Ma", "Me", "Xo", "Ve", "Sa", "Do"], 6 | months: ["Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xuño", "Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro"], 7 | monthsShort: ["Xan", "Feb", "Mar", "Abr", "Mai", "Xun", "Xul", "Ago", "Sep", "Out", "Nov", "Dec"], 8 | today: "Hoxe", 9 | clear: "Limpar" 10 | }; 11 | }(jQuery)); 12 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hebrew translation for bootstrap-datepicker 3 | * Sagie Maoz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['he'] = { 7 | days: ["ראשון", "שני", "שלישי", "רביעי", "חמישי", "שישי", "שבת", "ראשון"], 8 | daysShort: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 9 | daysMin: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 10 | months: ["ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"], 11 | monthsShort: ["ינו", "פבר", "מרץ", "אפר", "מאי", "יונ", "יול", "אוג", "ספט", "אוק", "נוב", "דצמ"], 12 | today: "היום", 13 | rtl: true 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.hr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Croatian localisation 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['hr'] = { 6 | days: ["Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota", "Nedjelja"], 7 | daysShort: ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub", "Ned"], 8 | daysMin: ["Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su", "Ne"], 9 | months: ["Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"], 10 | monthsShort: ["Sij", "Velj", "Ožu", "Tra", "Svi", "Lip", "Srp", "Kol", "Ruj", "Lis", "Stu", "Pro"], 11 | today: "Danas" 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.hu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hungarian translation for bootstrap-datepicker 3 | * Sotus László 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['hu'] = { 7 | days: ["Vasárnap", "Hétfő", "Kedd", "Szerda", "Csütörtök", "Péntek", "Szombat", "Vasárnap"], 8 | daysShort: ["Vas", "Hét", "Ked", "Sze", "Csü", "Pén", "Szo", "Vas"], 9 | daysMin: ["Va", "Hé", "Ke", "Sz", "Cs", "Pé", "Sz", "Va"], 10 | months: ["Január", "Február", "Március", "Április", "Május", "Június", "Július", "Augusztus", "Szeptember", "Október", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Már", "Ápr", "Máj", "Jún", "Júl", "Aug", "Sze", "Okt", "Nov", "Dec"], 12 | today: "Ma", 13 | weekStart: 1, 14 | format: "yyyy.mm.dd" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.id.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bahasa translation for bootstrap-datepicker 3 | * Azwar Akbar 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['id'] = { 7 | days: ["Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu", "Minggu"], 8 | daysShort: ["Mgu", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab", "Mgu"], 9 | daysMin: ["Mg", "Sn", "Sl", "Ra", "Ka", "Ju", "Sa", "Mg"], 10 | months: ["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ags", "Sep", "Okt", "Nov", "Des"], 12 | today: "Hari Ini", 13 | clear: "Kosongkan" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.is.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Icelandic translation for bootstrap-datepicker 3 | * Hinrik Örn Sigurðsson 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['is'] = { 7 | days: ["Sunnudagur", "Mánudagur", "Þriðjudagur", "Miðvikudagur", "Fimmtudagur", "Föstudagur", "Laugardagur", "Sunnudagur"], 8 | daysShort: ["Sun", "Mán", "Þri", "Mið", "Fim", "Fös", "Lau", "Sun"], 9 | daysMin: ["Su", "Má", "Þr", "Mi", "Fi", "Fö", "La", "Su"], 10 | months: ["Janúar", "Febrúar", "Mars", "Apríl", "Maí", "Júní", "Júlí", "Ágúst", "September", "Október", "Nóvember", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maí", "Jún", "Júl", "Ágú", "Sep", "Okt", "Nóv", "Des"], 12 | today: "Í Dag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Japanese translation for bootstrap-datepicker 3 | * Norio Suzuki 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ja'] = { 7 | days: ["日曜", "月曜", "火曜", "水曜", "木曜", "金曜", "土曜", "日曜"], 8 | daysShort: ["日", "月", "火", "水", "木", "金", "土", "日"], 9 | daysMin: ["日", "月", "火", "水", "木", "金", "土", "日"], 10 | months: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 11 | monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 12 | today: "今日", 13 | format: "yyyy/mm/dd" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.kk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Kazakh translation for bootstrap-datepicker 3 | * Yerzhan Tolekov 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['kk'] = { 7 | days: ["Жексенбі", "Дүйсенбі", "Сейсенбі", "Сәрсенбі", "Бейсенбі", "Жұма", "Сенбі", "Жексенбі"], 8 | daysShort: ["Жек", "Дүй", "Сей", "Сәр", "Бей", "Жұм", "Сен", "Жек"], 9 | daysMin: ["Жк", "Дс", "Сс", "Ср", "Бс", "Жм", "Сн", "Жк"], 10 | months: ["Қаңтар", "Ақпан", "Наурыз", "Сәуір", "Мамыр", "Маусым", "Шілде", "Тамыз", "Қыркүйек", "Қазан", "Қараша", "Желтоқсан"], 11 | monthsShort: ["Қаң", "Ақп", "Нау", "Сәу", "Мамыр", "Мау", "Шлд", "Тмз", "Қыр", "Қзн", "Қар", "Жел"], 12 | today: "Бүгін", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.kr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Korean translation for bootstrap-datepicker 3 | * Gu Youn 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['kr'] = { 7 | days: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일", "일요일"], 8 | daysShort: ["일", "월", "화", "수", "목", "금", "토", "일"], 9 | daysMin: ["일", "월", "화", "수", "목", "금", "토", "일"], 10 | months: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 11 | monthsShort: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"] 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.mk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Macedonian translation for bootstrap-datepicker 3 | * Marko Aleksic 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['mk'] = { 7 | days: ["Недела", "Понеделник", "Вторник", "Среда", "Четврток", "Петок", "Сабота", "Недела"], 8 | daysShort: ["Нед", "Пон", "Вто", "Сре", "Чет", "Пет", "Саб", "Нед"], 9 | daysMin: ["Не", "По", "Вт", "Ср", "Че", "Пе", "Са", "Не"], 10 | months: ["Јануари", "Февруари", "Март", "Април", "Мај", "Јуни", "Јули", "Август", "Септември", "Октомври", "Ноември", "Декември"], 11 | monthsShort: ["Јан", "Фев", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Ное", "Дек"], 12 | today: "Денес", 13 | format: "dd.mm.yyyy" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.ms.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Malay translation for bootstrap-datepicker 3 | * Ateman Faiz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ms'] = { 7 | days: ["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu", "Ahad"], 8 | daysShort: ["Aha", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab", "Aha"], 9 | daysMin: ["Ah", "Is", "Se", "Ra", "Kh", "Ju", "Sa", "Ah"], 10 | months: ["Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis"], 12 | today: "Hari Ini" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.nb.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian (bokmål) translation for bootstrap-datepicker 3 | * Fredrik Sundmyhr 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nb'] = { 7 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"], 8 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"], 9 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"], 10 | months: ["Januar", "Februar", "Mars", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Des"], 12 | today: "I Dag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.nl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Dutch translation for bootstrap-datepicker 3 | * Reinier Goltstein 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nl'] = { 7 | days: ["Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag", "Zondag"], 8 | daysShort: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 9 | daysMin: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 10 | months: ["Januari", "Februari", "Maart", "April", "Mei", "Juni", "Juli", "Augustus", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mrt", "Apr", "Mei", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Vandaag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.no.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian translation for bootstrap-datepicker 3 | **/ 4 | ;(function($){ 5 | $.fn.datepicker.dates['no'] = { 6 | days: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'], 7 | daysShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'], 8 | daysMin: ['Sø','Ma','Ti','On','To','Fr','Lø'], 9 | months: ['Januar','Februar','Mars','April','Mai','Juni','Juli','August','September','Oktober','November','Desember'], 10 | monthsShort: ['Jan','Feb','Mar','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Des'], 11 | today: 'I dag', 12 | clear: 'Nullstill', 13 | weekStart: 1, 14 | format: 'dd.mm.yyyy' 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.pt-BR.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Brazilian translation for bootstrap-datepicker 3 | * Cauan Cabral 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['pt-BR'] = { 7 | days: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado", "Domingo"], 8 | daysShort: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb", "Dom"], 9 | daysMin: ["Do", "Se", "Te", "Qu", "Qu", "Se", "Sa", "Do"], 10 | months: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"], 11 | monthsShort: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"], 12 | today: "Hoje", 13 | clear: "Limpar" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.ro.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Romanian translation for bootstrap-datepicker 3 | * Cristian Vasile 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ro'] = { 7 | days: ["Duminică", "Luni", "Marţi", "Miercuri", "Joi", "Vineri", "Sâmbătă", "Duminică"], 8 | daysShort: ["Dum", "Lun", "Mar", "Mie", "Joi", "Vin", "Sâm", "Dum"], 9 | daysMin: ["Du", "Lu", "Ma", "Mi", "Jo", "Vi", "Sâ", "Du"], 10 | months: ["Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie", "Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie"], 11 | monthsShort: ["Ian", "Feb", "Mar", "Apr", "Mai", "Iun", "Iul", "Aug", "Sep", "Oct", "Nov", "Dec"], 12 | today: "Astăzi", 13 | clear: "Șterge", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.rs-latin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian latin translation for bootstrap-datepicker 3 | * Bojan Milosavlević 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['rs-latin'] = { 7 | days: ["Nedelja","Ponedeljak", "Utorak", "Sreda", "Četvrtak", "Petak", "Subota", "Nedelja"], 8 | daysShort: ["Ned", "Pon", "Uto", "Sre", "Čet", "Pet", "Sub", "Ned"], 9 | daysMin: ["N", "Po", "U", "Sr", "Č", "Pe", "Su", "N"], 10 | months: ["Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danas" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.rs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian cyrillic translation for bootstrap-datepicker 3 | * Bojan Milosavlević 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['rs'] = { 7 | days: ["Недеља","Понедељак", "Уторак", "Среда", "Четвртак", "Петак", "Субота", "Недеља"], 8 | daysShort: ["Нед", "Пон", "Уто", "Сре", "Чет", "Пет", "Суб", "Нед"], 9 | daysMin: ["Н", "По", "У", "Ср", "Ч", "Пе", "Су", "Н"], 10 | months: ["Јануар", "Фебруар", "Март", "Април", "Мај", "Јун", "Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар"], 11 | monthsShort: ["Јан", "Феб", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Нов", "Дец"], 12 | today: "Данас" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.ru.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Russian translation for bootstrap-datepicker 3 | * Victor Taranenko 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ru'] = { 7 | days: ["Воскресенье", "Понедельник", "Вторник", "Среда", "Четверг", "Пятница", "Суббота", "Воскресенье"], 8 | daysShort: ["Вск", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб", "Вск"], 9 | daysMin: ["Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб", "Вс"], 10 | months: ["Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь"], 11 | monthsShort: ["Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек"], 12 | today: "Сегодня", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.sk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Slovak translation for bootstrap-datepicker 3 | * Marek Lichtner 4 | * Fixes by Michal Remiš 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates["sk"] = { 8 | days: ["Nedeľa", "Pondelok", "Utorok", "Streda", "Štvrtok", "Piatok", "Sobota", "Nedeľa"], 9 | daysShort: ["Ned", "Pon", "Uto", "Str", "Štv", "Pia", "Sob", "Ned"], 10 | daysMin: ["Ne", "Po", "Ut", "St", "Št", "Pia", "So", "Ne"], 11 | months: ["Január", "Február", "Marec", "Apríl", "Máj", "Jún", "Júl", "August", "September", "Október", "November", "December"], 12 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Máj", "Jún", "Júl", "Aug", "Sep", "Okt", "Nov", "Dec"], 13 | today: "Dnes" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.sl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Slovene translation for bootstrap-datepicker 3 | * Gregor Rudolf 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sl'] = { 7 | days: ["Nedelja", "Ponedeljek", "Torek", "Sreda", "Četrtek", "Petek", "Sobota", "Nedelja"], 8 | daysShort: ["Ned", "Pon", "Tor", "Sre", "Čet", "Pet", "Sob", "Ned"], 9 | daysMin: ["Ne", "Po", "To", "Sr", "Če", "Pe", "So", "Ne"], 10 | months: ["Januar", "Februar", "Marec", "April", "Maj", "Junij", "Julij", "Avgust", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danes" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.sq.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Albanian translation for bootstrap-datepicker 3 | * Tomor Pupovci 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sq'] = { 7 | days: ["E Diel", "E Hënë", "E martē", "E mërkurë", "E Enjte", "E Premte", "E Shtunë", "E Diel"], 8 | daysShort: ["Die", "Hën", "Mar", "Mër", "Enj", "Pre", "Shtu", "Die"], 9 | daysMin: ["Di", "Hë", "Ma", "Më", "En", "Pr", "Sht", "Di"], 10 | months: ["Janar", "Shkurt", "Mars", "Prill", "Maj", "Qershor", "Korrik", "Gusht", "Shtator", "Tetor", "Nëntor", "Dhjetor"], 11 | monthsShort: ["Jan", "Shk", "Mar", "Pri", "Maj", "Qer", "Korr", "Gu", "Sht", "Tet", "Nën", "Dhjet"], 12 | today: "Sot" 13 | }; 14 | }(jQuery)); 15 | 16 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.sv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Swedish translation for bootstrap-datepicker 3 | * Patrik Ragnarsson 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sv'] = { 7 | days: ["Söndag", "Måndag", "Tisdag", "Onsdag", "Torsdag", "Fredag", "Lördag", "Söndag"], 8 | daysShort: ["Sön", "Mån", "Tis", "Ons", "Tor", "Fre", "Lör", "Sön"], 9 | daysMin: ["Sö", "Må", "Ti", "On", "To", "Fr", "Lö", "Sö"], 10 | months: ["Januari", "Februari", "Mars", "April", "Maj", "Juni", "Juli", "Augusti", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Idag", 13 | format: "yyyy-mm-dd", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.th.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Thai translation for bootstrap-datepicker 3 | * Suchau Jiraprapot 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['th'] = { 7 | days: ["อาทิตย์", "จันทร์", "อังคาร", "พุธ", "พฤหัส", "ศุกร์", "เสาร์", "อาทิตย์"], 8 | daysShort: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], 9 | daysMin: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], 10 | months: ["มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม"], 11 | monthsShort: ["ม.ค.", "ก.พ.", "มี.ค.", "เม.ย.", "พ.ค.", "มิ.ย.", "ก.ค.", "ส.ค.", "ก.ย.", "ต.ค.", "พ.ย.", "ธ.ค."], 12 | today: "วันนี้" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.tr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Turkish translation for bootstrap-datepicker 3 | * Serkan Algur 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['tr'] = { 7 | days: ["Pazar", "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi", "Pazar"], 8 | daysShort: ["Pz", "Pzt", "Sal", "Çrş", "Prş", "Cu", "Cts", "Pz"], 9 | daysMin: ["Pz", "Pzt", "Sa", "Çr", "Pr", "Cu", "Ct", "Pz"], 10 | months: ["Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık"], 11 | monthsShort: ["Oca", "Şub", "Mar", "Nis", "May", "Haz", "Tem", "Ağu", "Eyl", "Eki", "Kas", "Ara"], 12 | today: "Bugün", 13 | format: "dd.mm.yyyy" 14 | }; 15 | }(jQuery)); 16 | 17 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.ua.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Ukrainian translation for bootstrap-datepicker 3 | * Igor Polynets 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ua'] = { 7 | days: ["Неділя", "Понеділок", "Вівторок", "Середа", "Четвер", "П'ятница", "Субота", "Неділя"], 8 | daysShort: ["Нед", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб", "Нед"], 9 | daysMin: ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб", "Нд"], 10 | months: ["Cічень", "Лютий", "Березень", "Квітень", "Травень", "Червень", "Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень"], 11 | monthsShort: ["Січ", "Лют", "Бер", "Кві", "Тра", "Чер", "Лип", "Сер", "Вер", "Жов", "Лис", "Гру"], 12 | today: "Сьогодні", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.vi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Vietnamese translation for bootstrap-datepicker 3 | * An Vo 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['vi'] = { 7 | days: ["Chủ nhật", "Thứ hai", "Thứ ba", "Thứ tư", "Thứ năm", "Thứ sáu", "Thứ bảy", "Chủ nhật"], 8 | daysShort: ["CN", "Thứ 2", "Thứ 3", "Thứ 4", "Thứ 5", "Thứ 6", "Thứ 7", "CN"], 9 | daysMin: ["CN", "T2", "T3", "T4", "T5", "T6", "T7", "CN"], 10 | months: ["Tháng 1", "Tháng 2", "Tháng 3", "Tháng 4", "Tháng 5", "Tháng 6", "Tháng 7", "Tháng 8", "Tháng 9", "Tháng 10", "Tháng 11", "Tháng 12"], 11 | monthsShort: ["Th1", "Th2", "Th3", "Th4", "Th5", "Th6", "Th7", "Th8", "Th9", "Th10", "Th11", "Th12"], 12 | today: "Hôm nay", 13 | clear: "Xóa", 14 | format: "dd/mm/yyyy" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.zh-CN.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Simplified Chinese translation for bootstrap-datepicker 3 | * Yuan Cheung 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['zh-CN'] = { 7 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"], 8 | daysShort: ["周日", "周一", "周二", "周三", "周四", "周五", "周六", "周日"], 9 | daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"], 10 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 11 | monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 12 | today: "今日", 13 | format: "yyyy年mm月dd日", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/datepicker/locales/bootstrap-datepicker.zh-TW.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Traditional Chinese translation for bootstrap-datepicker 3 | * Rung-Sheng Jang 4 | * FrankWu Fix more appropriate use of Traditional Chinese habit 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['zh-TW'] = { 8 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"], 9 | daysShort: ["週日", "週一", "週二", "週三", "週四", "週五", "週六", "週日"], 10 | daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"], 11 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 12 | monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 13 | today: "今天", 14 | format: "yyyy年mm月dd日", 15 | weekStart: 1 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/aero.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/blue.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/flat.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/green.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/grey.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/orange.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/orange@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/pink.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/pink@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/purple.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/purple@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/red.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/futurico/futurico.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/futurico/futurico@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/line/line.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/line/line@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/aero.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/aero@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/blue.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/blue@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/green.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/green@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/grey.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/grey@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/minimal.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/minimal@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/orange.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/orange@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/pink.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/pink@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/purple.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/purple@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/red.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/red@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/yellow.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/minimal/yellow@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/polaris/polaris.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/polaris/polaris@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/aero.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/aero@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/blue.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/green.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/green@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/grey.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/grey@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/orange.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/orange@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/pink.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/pink@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/purple.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/purple@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/red.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/red@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/square.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/square@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/yellow.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/iCheck/square/yellow@2x.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/input-mask/phone-codes/readme.txt: -------------------------------------------------------------------------------- 1 | more phone masks can be found at https://github.com/andr-04/inputmask-multi -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ionslider/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ionslider/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/ionslider/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/AdminLTE-2.3.0/plugins/ionslider/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/morris/morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1090;}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#f9f9f9;background:rgba(0, 0, 0, 0.8);border:solid 2px rgba(0, 0, 0, 0.9);font-weight: 600;font-size:14px;text-align:center;}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0;} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0;} 3 | -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/az.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/bg.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bg",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Моля въведете с "+t+" по-малко символ";return t>1&&(n+="a"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Моля въведете още "+t+" символ";return t>1&&(n+="a"),n},loadingMore:function(){return"Зареждат се още…"},maximumSelected:function(e){var t="Можете да направите до "+e.maximum+" ";return e.maximum>1?t+="избора":t+="избор",t},noResults:function(){return"Няма намерени съвпадения"},searching:function(){return"Търсене…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/da.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/da",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Angiv venligst "+t+" tegn mindre";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Angiv venligst "+t+" tegn mere";return n},loadingMore:function(){return"Indlæser flere resultater…"},maximumSelected:function(e){var t="Du kan kun vælge "+e.maximum+" emne";return e.maximum!=1&&(t+="r"),t},noResults:function(){return"Ingen resultater fundet"},searching:function(){return"Søger…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/de.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/de",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Bitte "+t+" Zeichen weniger eingeben"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Bitte "+t+" Zeichen mehr eingeben"},loadingMore:function(){return"Lade mehr Ergebnisse…"},maximumSelected:function(e){var t="Sie können nur "+e.maximum+" Eintr";return e.maximum===1?t+="ag":t+="äge",t+=" auswählen",t},noResults:function(){return"Keine Übereinstimmungen gefunden"},searching:function(){return"Suche…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/et.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/et",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" vähem",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" rohkem",n},loadingMore:function(){return"Laen tulemusi…"},maximumSelected:function(e){var t="Saad vaid "+e.maximum+" tulemus";return e.maximum==1?t+="e":t+="t",t+=" valida",t},noResults:function(){return"Tulemused puuduvad"},searching:function(){return"Otsin…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/fi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/fr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fr",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Supprimez "+t+" caractère";return t!==1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Saisissez "+t+" caractère";return t!==1&&(n+="s"),n},loadingMore:function(){return"Chargement de résultats supplémentaires…"},maximumSelected:function(e){var t="Vous pouvez seulement sélectionner "+e.maximum+" élément";return e.maximum!==1&&(t+="s"),t},noResults:function(){return"Aucun résultat trouvé"},searching:function(){return"Recherche en cours…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/gl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/gl",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Engada ";return t===1?n+="un carácter":n+=t+" caracteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Elimine ";return t===1?n+="un carácter":n+=t+" caracteres",n},loadingMore:function(){return"Cargando máis resultados…"},maximumSelected:function(e){var t="Só pode ";return e.maximum===1?t+="un elemento":t+=e.maximum+" elementos",t},noResults:function(){return"Non se atoparon resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/he.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/he",[],function(){return{errorLoading:function(){return"התוצאות לא נטענו בהלכה"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="נא למחוק "+t+" תווים";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="נא להכניס "+t+" תווים או יותר";return n},loadingMore:function(){return"טען תוצאות נוספות…"},maximumSelected:function(e){var t="באפשרותך לבחור רק "+e.maximum+" פריטים";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"לא נמצאו תוצאות"},searching:function(){return"מחפש…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/hr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hr",[],function(){function e(e){var t=" "+e+" znak";return e%10<5&&e%10>0&&(e%100<5||e%100>19)?e%10>1&&(t+="a"):t+="ova",t}return{inputTooLong:function(t){var n=t.input.length-t.maximum;return"Unesite "+e(n)},inputTooShort:function(t){var n=t.minimum-t.input.length;return"Unesite još "+e(n)},loadingMore:function(){return"Učitavanje rezultata…"},maximumSelected:function(e){return"Maksimalan broj odabranih stavki je "+e.maximum},noResults:function(){return"Nema rezultata"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/hu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/id.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/id",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Hapuskan "+t+" huruf"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Masukkan "+t+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(e){return"Anda hanya dapat memilih "+e.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/is.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/is",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vinsamlegast styttið texta um "+t+" staf";return t<=1?n:n+"i"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vinsamlegast skrifið "+t+" staf";return t>1&&(n+="i"),n+=" í viðbót",n},loadingMore:function(){return"Sæki fleiri niðurstöður…"},maximumSelected:function(e){return"Þú getur aðeins valið "+e.maximum+" atriði"},noResults:function(){return"Ekkert fannst"},searching:function(){return"Leita…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/ko.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="너무 깁니다. "+t+" 글자 지워주세요.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="너무 짧습니다. "+t+" 글자 더 입력해주세요.";return n},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(e){var t="최대 "+e.maximum+"개까지만 선택 가능합니다.";return t},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/nb.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nb",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Vennligst fjern "+t+" tegn"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vennligst skriv inn ";return t>1?n+=" flere tegn":n+=" tegn til",n},loadingMore:function(){return"Laster flere resultater…"},maximumSelected:function(e){return"Du kan velge maks "+e.maximum+" elementer"},noResults:function(){return"Ingen treff"},searching:function(){return"Søker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/sv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sv",[],function(){return{errorLoading:function(){return"Resultat kunde inte laddas."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vänligen sudda ut "+t+" tecken";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vänligen skriv in "+t+" eller fler tecken";return n},loadingMore:function(){return"Laddar fler resultat…"},maximumSelected:function(e){var t="Du kan max välja "+e.maximum+" element";return t},noResults:function(){return"Inga träffar"},searching:function(){return"Söker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/th.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/th",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="โปรดลบออก "+t+" ตัวอักษร";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="โปรดพิมพ์เพิ่มอีก "+t+" ตัวอักษร";return n},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(e){var t="คุณสามารถเลือกได้ไม่เกิน "+e.maximum+" รายการ";return t},noResults:function(){return"ม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/tr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tr",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/vi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/vi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vui lòng nhập ít hơn "+t+" ký tự";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vui lòng nhập nhiều hơn "+t+' ký tự"';return n},loadingMore:function(){return"Đang lấy thêm kết quả…"},maximumSelected:function(e){var t="Chỉ có thể chọn được "+e.maximum+" lựa chọn";return t},noResults:function(){return"Không tìm thấy kết quả"},searching:function(){return"Đang tìm…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/AdminLTE-2.3.0/plugins/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /mysite/static/admin/css/dashboard.css: -------------------------------------------------------------------------------- 1 | /* DASHBOARD */ 2 | 3 | .dashboard .module table th { 4 | width: 100%; 5 | } 6 | 7 | .dashboard .module table td { 8 | white-space: nowrap; 9 | } 10 | 11 | .dashboard .module table td a { 12 | display: block; 13 | padding-right: .6em; 14 | } 15 | 16 | /* RECENT ACTIONS MODULE */ 17 | 18 | .module ul.actionlist { 19 | margin-left: 0; 20 | } 21 | 22 | ul.actionlist li { 23 | list-style-type: none; 24 | } 25 | 26 | ul.actionlist li.changelink { 27 | overflow: hidden; 28 | text-overflow: ellipsis; 29 | -o-text-overflow: ellipsis; 30 | } -------------------------------------------------------------------------------- /mysite/static/admin/img/changelist-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/changelist-bg.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/changelist-bg_rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/changelist-bg_rtl.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/chooser-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/chooser-bg.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/chooser_stacked-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/chooser_stacked-bg.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/default-bg-reverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/default-bg-reverse.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/default-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/default-bg.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/deleted-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/deleted-overlay.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/gis/move_vertex_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/gis/move_vertex_off.png -------------------------------------------------------------------------------- /mysite/static/admin/img/gis/move_vertex_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/gis/move_vertex_on.png -------------------------------------------------------------------------------- /mysite/static/admin/img/icon-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/icon-no.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/icon-unknown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/icon-unknown.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/icon-yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/icon-yes.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/icon_addlink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/icon_addlink.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/icon_alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/icon_alert.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/icon_calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/icon_calendar.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/icon_changelink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/icon_changelink.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/icon_clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/icon_clock.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/icon_deletelink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/icon_deletelink.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/icon_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/icon_error.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/icon_searchbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/icon_searchbox.png -------------------------------------------------------------------------------- /mysite/static/admin/img/icon_success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/icon_success.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/inline-delete-8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/inline-delete-8bit.png -------------------------------------------------------------------------------- /mysite/static/admin/img/inline-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/inline-delete.png -------------------------------------------------------------------------------- /mysite/static/admin/img/inline-restore-8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/inline-restore-8bit.png -------------------------------------------------------------------------------- /mysite/static/admin/img/inline-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/inline-restore.png -------------------------------------------------------------------------------- /mysite/static/admin/img/inline-splitter-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/inline-splitter-bg.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/nav-bg-grabber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/nav-bg-grabber.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/nav-bg-reverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/nav-bg-reverse.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/nav-bg-selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/nav-bg-selected.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/nav-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/nav-bg.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/selector-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/selector-icons.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/selector-search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/selector-search.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/sorting-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/sorting-icons.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/tool-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/tool-left.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/tool-left_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/tool-left_over.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/tool-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/tool-right.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/tool-right_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/tool-right_over.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/tooltag-add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/tooltag-add.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/tooltag-add_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/tooltag-add_over.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/tooltag-arrowright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/tooltag-arrowright.gif -------------------------------------------------------------------------------- /mysite/static/admin/img/tooltag-arrowright_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/admin/img/tooltag-arrowright_over.gif -------------------------------------------------------------------------------- /mysite/static/admin/js/collapse.min.js: -------------------------------------------------------------------------------- 1 | (function(a){a(document).ready(function(){a("fieldset.collapse").each(function(c,b){0==a(b).find("div.errors").length&&a(b).addClass("collapsed").find("h2").first().append(' ('+gettext("Show")+")")});a("fieldset.collapse a.collapse-toggle").toggle(function(){a(this).text(gettext("Hide")).closest("fieldset").removeClass("collapsed").trigger("show.fieldset",[a(this).attr("id")]);return!1},function(){a(this).text(gettext("Show")).closest("fieldset").addClass("collapsed").trigger("hide.fieldset", 2 | [a(this).attr("id")]);return!1})})})(django.jQuery); 3 | -------------------------------------------------------------------------------- /mysite/static/admin/js/jquery.init.js: -------------------------------------------------------------------------------- 1 | /* Puts the included jQuery into our own namespace using noConflict and passing 2 | * it 'true'. This ensures that the included jQuery doesn't pollute the global 3 | * namespace (i.e. this preserves pre-existing values for both window.$ and 4 | * window.jQuery). 5 | */ 6 | var django = { 7 | "jQuery": jQuery.noConflict(true) 8 | }; 9 | -------------------------------------------------------------------------------- /mysite/static/admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- 1 | (function(a){a.fn.prepopulate=function(d,e){return this.each(function(){var b=a(this);b.data("_changed",!1);b.change(function(){b.data("_changed",!0)});var c=function(){if(!0!=b.data("_changed")){var c=[];a.each(d,function(b,d){0" 7 | ], 8 | "main" : [ 9 | "multiple-select.css", 10 | "multiple-select.png", 11 | "jquery.multiple.select.js" 12 | ], 13 | "description": "A jQuery plugin to select multiple elements with checkboxes", 14 | "license": "MIT", 15 | "dependencies": { 16 | "jquery": "1.7.x" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /mysite/static/multiple-select/demos/assets/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/multiple-select/demos/assets/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /mysite/static/multiple-select/demos/assets/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/multiple-select/demos/assets/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /mysite/static/multiple-select/demos/assets/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/multiple-select/demos/assets/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /mysite/static/multiple-select/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /mysite/static/multiple-select/multiple-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/multiple-select/multiple-select.png -------------------------------------------------------------------------------- /mysite/static/multiselect/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .htaccess 3 | -------------------------------------------------------------------------------- /mysite/static/multiselect/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "multiselect", 3 | "version": "2.3.0", 4 | "homepage": "https://github.com/crlcu/multiselect", 5 | "authors": [ 6 | "Adrian Crisan " 7 | ], 8 | "description": "jQuery multiselect plugin with two sides", 9 | "main": "js/multiselect.min.js", 10 | "keywords": [ 11 | "multiselect" 12 | ], 13 | "license": "MIT", 14 | "dependencies": { 15 | "jquery": ">= 1.7" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /mysite/static/multiselect/css/style.css: -------------------------------------------------------------------------------- 1 | .github.ribbon { 2 | position: fixed; 3 | display: block; 4 | top: 40px; 5 | right: 0; 6 | border: 0; 7 | z-index: 1001; 8 | } 9 | 10 | .prettyprint { 11 | padding: 10px!important; 12 | } 13 | 14 | #wrap { 15 | padding-top: 70px; 16 | } 17 | 18 | #home h1 { 19 | margin-bottom: 30px; 20 | } 21 | #demo, 22 | #examples, 23 | #support, 24 | #download { 25 | padding-top: 40px; 26 | } 27 | -------------------------------------------------------------------------------- /mysite/static/multiselect/gulpfile.js: -------------------------------------------------------------------------------- 1 | var gulp = require('gulp'); 2 | 3 | // include plug-ins 4 | var rename = require('gulp-rename'); 5 | var stripDebug = require('gulp-strip-debug'); 6 | var uglify = require('gulp-uglify'); 7 | 8 | // JS concat, strip debugging and minify 9 | gulp.task('scripts', function() { 10 | gulp.src(['dist/js/multiselect.js']) 11 | .pipe(rename('multiselect.min.js')) 12 | .pipe(stripDebug()) 13 | .pipe(uglify('multiselect.min.js', { 14 | outSourceMap: true 15 | })) 16 | .pipe(gulp.dest('dist/js/')); 17 | }); 18 | 19 | gulp.task('default', ['scripts']); 20 | -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/apiCss/img/apiMenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/api/apiCss/img/apiMenu.gif -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/apiCss/img/apiMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/api/apiCss/img/apiMenu.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/apiCss/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/api/apiCss/img/background.jpg -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/apiCss/img/chinese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/api/apiCss/img/chinese.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/apiCss/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/api/apiCss/img/close.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/apiCss/img/contact-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/api/apiCss/img/contact-bg.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/apiCss/img/english.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/api/apiCss/img/english.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/apiCss/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/api/apiCss/img/header-bg.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/apiCss/img/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/api/apiCss/img/lightbulb.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/apiCss/img/overlay_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/api/apiCss/img/overlay_arrow.gif -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/apiCss/img/overlay_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/api/apiCss/img/overlay_arrow.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/apiCss/img/overlay_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/api/apiCss/img/overlay_bg.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/apiCss/img/overlay_close_IE6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/api/apiCss/img/overlay_close_IE6.gif -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/apiCss/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/api/apiCss/img/zTreeStandard.gif -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/apiCss/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/api/apiCss/img/zTreeStandard.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/fn.zTree._z.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

JSON$.fn.zTree._z

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree v3.x 内部的全部方法都可以通过 $.fn.zTree._z 进行调用,开放出来是为了更便于大家开发制作自己的 zTree 插件。

9 |

如无特殊需求请勿使用此对象,以及修改此对象内部的各个函数。

10 |
11 |
12 |
13 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/setting.check.enable.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Booleansetting.check.enable

4 |

概述[ 依赖 jquery.ztree.excheck 扩展 js ]

5 |
6 |

7 |
8 |

设置 zTree 的节点上是否显示 checkbox / radio

9 |

默认值: false

10 |
11 |
12 |

Boolean 格式说明

13 |
14 |

true / false 分别表示 显示 / 不显示 复选框或单选框

15 |
16 |

setting 举例

17 |

1. 需要显示 checkbox

18 |
var setting = {
19 | 	check: {
20 | 		enable: true
21 | 	}
22 | };
23 | ......
24 |
25 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/setting.data.key.checked.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.checked

4 |

概述[ 依赖 jquery.ztree.excheck 扩展 js ]

5 |
6 |

7 |
8 |

zTree 节点数据中保存 check 状态的属性名称。

9 |

默认值:"checked"

10 |

请勿与 zTree 节点数据的其他参数冲突,例如:checkedOld

11 |
12 |
13 |

setting 举例

14 |

1. 设置 zTree 显示节点时,将 treeNode 的 isChecked 属性当做节点名称

15 |
var setting = {
16 | 	data: {
17 | 		key: {
18 | 			checked: "isChecked"
19 | 		}
20 | 	}
21 | };
22 | ......
23 |
24 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/setting.data.key.children.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.children

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 节点数据中保存子节点数据的属性名称。

9 |

默认值:"children"

10 |
11 |
12 |

setting 举例

13 |

1. 设置 zTree 显示节点时,将 treeNode 的 nodes 属性当做节点名称

14 |
var setting = {
15 | 	data: {
16 | 		key: {
17 | 			children: "nodes"
18 | 		}
19 | 	}
20 | };
21 | ......
22 |
23 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/setting.data.key.name.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.name

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 节点数据保存节点名称的属性名称。

9 |

默认值:"name"

10 |
11 |
12 |

setting 举例

13 |

1. 设置 zTree 显示节点时,将 treeNode 的 ename 属性当做节点名称

14 |
var setting = {
15 | 	data: {
16 | 		key: {
17 | 			name: "ename"
18 | 		}
19 | 	}
20 | };
21 | ......
22 |
23 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/setting.data.key.title.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.title

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 节点数据保存节点提示信息的属性名称。[setting.view.showTitle = true 时生效]

9 |

如果设置为 "" ,则自动与 setting.data.key.name 保持一致,避免用户反复设置

10 |

默认值:""

11 |
12 |
13 |

setting 举例

14 |

1. 设置 zTree 显示节点时,将 treeNode 的 fullName 属性当做节点名称

15 |
var setting = {
16 | 	data: {
17 | 		key: {
18 | 			title: "fullName"
19 | 		}
20 | 	}
21 | };
22 | ......
23 |
24 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/setting.data.key.url.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.url

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 节点数据保存节点链接的目标 URL 的属性名称。

9 |

特殊用途:当后台数据只能生成 url 属性,又不想实现点击节点跳转的功能时,可以直接修改此属性为其他不存在的属性名称

10 |

默认值:"url"

11 |
12 |
13 |

setting 举例

14 |

1. 设置 zTree 显示节点时,将 treeNode 的 xUrl 属性当做节点链接的目标 URL

15 |
var setting = {
16 | 	data: {
17 | 		key: {
18 | 			url: "xUrl"
19 | 		}
20 | 	}
21 | };
22 | ......
23 |
24 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/setting.edit.drag.autoOpenTime.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Numbersetting.edit.drag.autoOpenTime

4 |

概述[ 依赖 jquery.ztree.exedit 扩展 js ]

5 |
6 |

7 |
8 |

拖拽时父节点自动展开的延时间隔。 (单位:ms)[setting.edit.enable = true 时生效]

9 |

默认值:500

10 |

请根据自己的需求适当调整此值

11 |
12 |
13 |

setting 举例

14 |

1. 设置拖拽到父节点上立刻自动展开

15 |
var setting = {
16 | 	edit: {
17 | 		enable: true,
18 | 		drag: {
19 | 			autoOpenTime: 0
20 | 		}
21 | 	}
22 | };
23 | ......
24 |
25 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/setting.edit.drag.borderMax.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Numbersetting.edit.drag.borderMax

4 |

概述[ 依赖 jquery.ztree.exedit 扩展 js ]

5 |
6 |

7 |
8 |

拖拽节点成为根节点时的 Tree 内边界范围 (单位:px)。[setting.edit.enable = true 时生效]

9 |

默认值:10

10 |

请根据自己的需求适当调整此值

11 |
12 |
13 |

setting 举例

14 |

1. 更改拖拽操作节点成为根节点时的 Tree 内边界范围为20px

15 |
var setting = {
16 | 	edit: {
17 | 		enable: true,
18 | 		drag: {
19 | 			borderMax: 20
20 | 		}
21 | 	}
22 | };
23 | ......
24 |
25 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/setting.edit.drag.borderMin.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Numbersetting.edit.drag.borderMin

4 |

概述[ 依赖 jquery.ztree.exedit 扩展 js ]

5 |
6 |

7 |
8 |

拖拽节点成为根节点时的 Tree 外边界范围 (单位:px)。[setting.edit.enable = true 时生效]

9 |

默认值:-5

10 |

请根据自己的需求适当调整此值

11 |
12 |
13 |

setting 举例

14 |

1. 更改拖拽操作节点成为根节点时的 Tree 外边界范围为10px

15 |
var setting = {
16 | 	edit: {
17 | 		enable: true,
18 | 		drag: {
19 | 			borderMin: -10
20 | 		}
21 | 	}
22 | };
23 | ......
24 |
25 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/setting.edit.drag.maxShowNodeNum.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Numbersetting.edit.drag.maxShowNodeNum

4 |

概述[ 依赖 jquery.ztree.exedit 扩展 js ]

5 |
6 |

7 |
8 |

拖拽多个兄弟节点时,浮动图层中显示的最大节点数。 多余的节点用...代替。[setting.edit.enable = true 时生效]

9 |

默认值:5

10 |

请根据自己的需求适当调整此值

11 |
12 |
13 |

setting 举例

14 |

1. 设置拖拽时最多可显示10个节点

15 |
var setting = {
16 | 	edit: {
17 | 		enable: true,
18 | 		drag: {
19 | 			maxShowNodeNum: 10
20 | 		}
21 | 	}
22 | };
23 | ......
24 |
25 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/setting.edit.drag.minMoveSize.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Numbersetting.edit.drag.minMoveSize

4 |

概述[ 依赖 jquery.ztree.exedit 扩展 js ]

5 |
6 |

7 |
8 |

判定是否拖拽操作的最小位移值 (单位:px)。[setting.edit.enable = true 时生效]

9 |

根据自己的需求可适当调整此值,如果太小容易导致点击鼠标时误操作进行拖拽

10 |

默认值:5

11 |
12 |
13 |

setting 举例

14 |

1. 更改拖拽操作启动位移值为10px

15 |
var setting = {
16 | 	edit: {
17 | 		enable: true,
18 | 		drag: {
19 | 			minMoveSize: 10
20 | 		}
21 | 	}
22 | };
23 | ......
24 |
25 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/setting.treeId.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.treeId

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 的唯一标识,初始化后,等于 用户定义的 zTree 容器的 id 属性值。

9 |

请勿进行初始化 或 修改,属于内部参数。

10 |
11 |
12 | 13 |
14 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/setting.treeObj.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Objectsetting.treeObj

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 容器的 jQuery 对象,主要功能:便于操作。

9 |

请勿进行初始化 或 修改,属于内部参数。

10 |
11 |
12 | 13 |
14 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/setting.view.showLine.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Booleansetting.view.showLine

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

设置 zTree 是否显示节点之间的连线。

9 |

默认值:true

10 |
11 |
12 |

Boolean 格式说明

13 |
14 |

true / false 分别表示 显示 / 不显示 连线

15 |
16 |

setting 举例

17 |

1. 设置 zTree 不显示节点之间的连线

18 |
var setting = {
19 | 	view: {
20 | 		showLine: false
21 | 	}
22 | };
23 | ......
24 |
25 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/setting.view.txtSelectedEnable.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Booleansetting.view.txtSelectedEnable

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

设置 zTree 是否允许可以选择 zTree DOM 内的文本。

9 |

默认值:false

10 |
11 |
12 |

Boolean 格式说明

13 |
14 |

true / false 分别表示 允许 / 不允许 选择 zTree Dom 内的文本

15 |
16 |

setting & function 举例

17 |

1. 设置 zTree 允许选择文本

18 |
var setting = {
19 | 	view: {
20 | 		txtSelectedEnable: true
21 | 	}
22 | };
23 | ......
24 |
25 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/treeNode.check_Focus.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

BooleantreeNode.check_Focus

4 |

概述[ 依赖 jquery.ztree.excheck 扩展 js ]

5 |
6 |

7 |
8 |

用于设置节点的 checkBox / radio 的 focus 状态。[setting.check.enable = true 时有效]

9 |

zTree 内部使用,请勿进行初始化 或 随意修改

10 |

默认值:false

11 |
12 |
13 |

Boolean 格式说明

14 |
15 |

true 表示当前鼠标移动到输入框内

16 |

false 表示当前鼠标移动到输入框外

17 |
18 |
19 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/treeNode.diy.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

?treeNode.* DIY *

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

用于保存节点的其他自定义数据信息,不要与 zTree 使用的属性相同即可,用户可随意设定。

9 |
10 |
11 |

treeNode 举例

12 |

1. 设置节点的备用英文名称

13 |
var node = { "id":1, "name":"test1", "ename":"test eName"};
14 |
15 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/treeNode.editNameFlag.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

BooleantreeNode.editNameFlag

4 |

概述[ 依赖 jquery.ztree.exedit 扩展 js ]

5 |
6 |

7 |
8 |

用于记录节点是否处于编辑名称状态。[setting.edit.enable = true 时有效]

9 |

zTree 内部使用,请勿进行初始化 或 随意修改

10 |

默认值:false

11 |
12 |
13 |

Boolean 格式说明

14 |
15 |

true 表示节点处于编辑名称状态

16 |

false 表示节点未处于编辑名称状态

17 |
18 |
19 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/treeNode.isHover.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

BooleantreeNode.isHover

4 |

概述[ 依赖 jquery.ztree.exedit 扩展 js ]

5 |
6 |

7 |
8 |

记录节点 的 hover 状态,主要用于 setting.view.addHoverDom / removeHoverDom 。

9 |

zTree 内部使用,请勿进行初始化 或 随意修改

10 |

默认值:false

11 |
12 |
13 |

Boolean 格式说明

14 |
15 |

true 表示节点处于 hover 状态

16 |

false 表示节点未处于 hover 状态

17 |
18 |
19 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/treeNode.name.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

StringtreeNode.name

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

节点名称。

9 |

1、如果不使用 name 属性保存节点名称,请修改 setting.data.key.name

10 |

默认值:无

11 |
12 |
13 |

String 格式说明

14 |
15 |

节点显示的名称字符串,标准 String 即可,所有特殊字符都会被自动转义

16 |
17 |

treeNode 举例

18 |

1. 设置节点的名称为 test1、test2、test3

19 |
var nodes = [
20 | 	{ "id":1, "name":"test1"},
21 | 	{ "id":2, "name":"test2"},
22 | 	{ "id":3, "name":"test3"}
23 | ]
24 |
25 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/zTreeObj.getSelectedNodes.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Function()zTreeObj.getSelectedNodes

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

获取 zTree 当前被选中的节点数据集合

9 |

请通过 zTree 对象执行此方法。

10 |
11 |
12 |

Function 参数说明

13 |
14 |

返回值Array(JSON)

15 |

当前被选中的节点数据集合

16 |
17 |

function 举例

18 |

1. 获取当前被选中的节点数据集合

19 |
var treeObj = $.fn.zTree.getZTreeObj("tree");
20 | var nodes = treeObj.getSelectedNodes();
21 | 
22 |
23 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/cn/zTreeObj.setting.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

JSONzTreeObj.setting

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 对象使用的 setting 配置数据,详细请参考 “setting 配置详解”中的各个属性详细说明

9 |

v3.x 取消了原先操作 setting 的方法,让用户可以较自由的修改参数,但请注意,对于 zTree 初始化有影响的参数后期修改是不会起作用的,请对各个属性有较深入的了解以后再考虑进行修改。

10 |
11 |
12 |
13 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/en/fn.zTree._z.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

JSON$.fn.zTree._z

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

All of the internal methods in zTree v3.x are available through '$. fn.zTree._z', 9 | use this if you want to develop your own zTree plug-ins.

10 |

Unless you are writing a plugin, 11 | you should not use this object.

12 |
13 |
14 |
15 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/en/setting.data.key.children.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.children

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

The node data's attribute to save the child nodes.

9 |

Default: "children"

10 |
11 |
12 |

Examples of setting

13 |

1. Set the 'nodes' attribute to save the child nodes.

14 |
var setting = {
15 | 	data: {
16 | 		key: {
17 | 			children: "nodes"
18 | 		}
19 | 	}
20 | };
21 | ......
22 |
23 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/en/setting.data.key.name.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.name

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

The node data's attribute to save the node name.

9 |

Default: "name"

10 |
11 |
12 |

Examples of setting

13 |

1. Set the 'ename' attribute to save the node name.

14 |
var setting = {
15 | 	data: {
16 | 		key: {
17 | 			name: "ename"
18 | 		}
19 | 	}
20 | };
21 | ......
22 |
23 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/en/setting.treeId.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.treeId

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

zTree unique identifier. After the initialization, it equals to the id attribute value of the user-defined zTree container.

9 |

Do not initialize or modify it, it is an internal argument.

10 |
11 |
12 | 13 |
14 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/en/setting.treeObj.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Objectsetting.treeObj

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

zTree DOM's jQuery object, the main function: easy to internal operations.

9 |

Do not initialize or modify it, it is an internal argument.

10 |
11 |
12 | 13 |
14 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/en/setting.view.showLine.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Booleansetting.view.showLine

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

Set to show or hide line.

9 |

Default: true

10 |
11 |
12 |

Boolean Format

13 |
14 |

true means: show line.

15 |

false means: hide line.

16 |
17 |

Examples of setting

18 |

1. Hide line

19 |
var setting = {
20 | 	view: {
21 | 		showLine: false
22 | 	}
23 | };
24 | ......
25 |
26 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/en/treeNode.diy.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

?treeNode.* DIY *

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

Used to save other custom data of node, do not use the same attribute name with ztree used, the user can freely set.

9 |
10 |
11 |

Examples of treeNode

12 |

1. Use 'ename' attribute to save more info

13 |
var node = { "id":1, "name":"test1", "ename":"test eName"};
14 |
15 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/en/treeNode.editNameFlag.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

BooleantreeNode.editNameFlag

4 |

Overview[ depends on jquery.ztree.exedit js ]

5 |
6 |

7 |
8 |

Used to save the node editing name status. It is valid when [setting.edit.enable = true]

9 |

Do not initialize or modify it, it is an internal argument.

10 |

Default: false

11 |
12 |
13 |

Boolean Format

14 |
15 |

true means: node is being edited.

16 |

false means: node is not being edited.

17 |
18 |
19 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/en/treeNode.isHover.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

BooleantreeNode.isHover

4 |

Overview[ depends on jquery.ztree.exedit js ]

5 |
6 |

7 |
8 |

Used to record the hover status of node's DOM. For 'setting.view.addHoverDom / removeHoverDom'.

9 |

Do not initialize or modify it, it is an internal argument.

10 |

Default: false

11 |
12 |
13 |

Boolean Format

14 |
15 |

true means: the node's DOM is in hover.

16 |

false means: the node's DOM is not in hover.

17 |
18 |
19 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/api/en/zTreeObj.setting.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

JSONzTreeObj.setting

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

The configuration data of zTree, refer to "setting details"

9 |

zTree v3.x to cancel the original operation setting method, so users can modify.

10 |

Note: Modify the parameters which affect zTree initialization will not work, please first understand the different attributes.

11 |
12 |
13 |
14 |
-------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/awesomeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/awesomeStyle/img/loading.gif -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/metroStyle/img/line_conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/metroStyle/img/line_conn.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/metroStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/metroStyle/img/loading.gif -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/metroStyle/img/metro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/metroStyle/img/metro.gif -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/metroStyle/img/metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/metroStyle/img/metro.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/1_close.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/1_open.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/2.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/3.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/4.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/5.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/6.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/7.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/8.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/zTreeStyle/img/diy/9.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/zTreeStyle/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/zTreeStyle/img/line_conn.gif -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/zTreeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/zTreeStyle/img/loading.gif -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/zTreeStyle/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/zTreeStyle/img/zTreeStandard.gif -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/css/zTreeStyle/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/css/zTreeStyle/img/zTreeStandard.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/demo/cn/asyncData/getNodesForBigData.php: -------------------------------------------------------------------------------- 1 | 2 | [] 27 | -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/demo/cn/super/left_menuForOutLook.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/demo/cn/super/left_menuForOutLook.gif -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/demo/cn/super/left_menuForOutLook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/demo/cn/super/left_menuForOutLook.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/demo/en/asyncData/getNodesForBigData.php: -------------------------------------------------------------------------------- 1 | 2 | [] 27 | -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/demo/en/super/left_menuForOutLook.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/demo/en/super/left_menuForOutLook.gif -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/demo/en/super/left_menuForOutLook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/demo/en/super/left_menuForOutLook.png -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/js/ztree.3.5.26.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliviaWanderlust/mtree/731f115dcbbc36e0c1da094adf6b7ff3907c0218/mysite/static/zTree_v3.5.28/js/ztree.3.5.26.zip -------------------------------------------------------------------------------- /mysite/static/zTree_v3.5.28/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "zTree_v3", 3 | "description": "zTree is a multi-functional 'tree plug-ins.' based on jQuery. The main advantages of zTree includes excellent performance, flexible configuration, and the combination of multiple functions.", 4 | "version": "3.5.27", 5 | "homepage": "http://www.treejs.cn/v3/main.php", 6 | "author": "zTree (https://github.com/zTree)", 7 | "repository": "zTree/zTree", 8 | "license": "MIT", 9 | "main": "index.js", 10 | "engines": { 11 | "node": ">=0.10.0" 12 | }, 13 | "keywords": [ 14 | "tree", 15 | "jquery", 16 | "plug-in", 17 | "plugin", 18 | "ztree", 19 | "html", 20 | "node" 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /mysite/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for mysite project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/1.9/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mysite.settings") 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /pip_requirements.txt: -------------------------------------------------------------------------------- 1 | amqp==1.4.9 2 | anyjson==0.3.3 3 | billiard==3.3.0.22 4 | celery==3.1.20 5 | Django==1.9.2 6 | django-auth-ldap==1.2.8 7 | django-celery==3.1.17 8 | django-crontab==0.7.1 9 | django-pagination==1.0.7 10 | itsdangerous==0.24 11 | kombu==3.0.33 12 | MySQL-python==1.2.5 13 | python-ldap==2.4.28 14 | pytz==2015.7 15 | redis==2.10.5 16 | requests==2.9.1 17 | xpinyin==0.5.5 18 | -------------------------------------------------------------------------------- /update_python2.7.8.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | yum install gcc python-devel readline-devel sqlite-devel libffi-devel openssl-devel -y 3 | wget --no-check-certificate http://www.python.org/ftp/python/2.7.8/Python-2.7.8.tgz 4 | tar zxf Python-2.7.8.tgz 5 | cd Python-2.7.8 6 | ./configure &&make &&make install 7 | cd .. 8 | wget https://bootstrap.pypa.io/ez_setup.py -O - | python2.7 9 | easy_install-2.7 pip 10 | pip --default-timeout=100 install pyopenssl ndg-httpsclient pyasn1 11 | --------------------------------------------------------------------------------