├── .gitignore ├── Dockerfile ├── README.md ├── app ├── app.js ├── bin │ └── www ├── config.json ├── doc │ └── pxe_process.md ├── lib │ ├── cloudConfigPage.js │ ├── routes.js │ ├── users.js │ ├── util │ │ └── tool.js │ └── utilPage.js ├── package.json ├── public │ ├── 50x.html │ ├── css │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── lib │ │ ├── admin-lte │ │ │ ├── .bower.json │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── progress-bars.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 │ │ │ │ │ ├── table.less │ │ │ │ │ ├── timeline.less │ │ │ │ │ ├── users-list.less │ │ │ │ │ └── variables.less │ │ │ ├── changelog │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ └── pages │ │ │ │ │ ├── dashboard.js │ │ │ │ │ └── dashboard2.js │ │ │ ├── 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 │ │ │ │ │ └── register.html │ │ │ │ ├── forms │ │ │ │ │ ├── advanced.html │ │ │ │ │ ├── editors.html │ │ │ │ │ └── general.html │ │ │ │ ├── layout │ │ │ │ │ ├── boxed.html │ │ │ │ │ ├── collapsed-sidebar.html │ │ │ │ │ ├── fixed.html │ │ │ │ │ ├── rtl.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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ └── bootstrap │ │ │ ├── .bower.json │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── 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 │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ ├── grunt │ │ │ ├── .jshintrc │ │ │ ├── bs-commonjs-generator.js │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ ├── bs-lessdoc-parser.js │ │ │ ├── bs-raw-files-generator.js │ │ │ ├── configBridge.json │ │ │ └── sauce_browsers.yml │ │ │ ├── js │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── affix.js │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── transition.js │ │ │ ├── less │ │ │ ├── .csscomb.json │ │ │ ├── .csslintrc │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ │ ├── package.js │ │ │ └── package.json │ └── small-cloud-config.bak ├── tftp │ ├── boot-screens │ │ ├── .syslinux.cfg.swp │ │ ├── adtxt.cfg │ │ ├── dtmenu.cfg │ │ ├── exithelp.cfg │ │ ├── f1.txt │ │ ├── f10.txt │ │ ├── f2.txt │ │ ├── f3.txt │ │ ├── f4.txt │ │ ├── f5.txt │ │ ├── f6.txt │ │ ├── f7.txt │ │ ├── f8.txt │ │ ├── f9.txt │ │ ├── kde │ │ │ ├── adtxt.cfg │ │ │ ├── adtxtdt.cfg │ │ │ ├── menu.cfg │ │ │ ├── prmenu.cfg │ │ │ ├── prompt.cfg │ │ │ ├── txt.cfg │ │ │ └── txtdt.cfg │ │ ├── lxde │ │ │ ├── adtxt.cfg │ │ │ ├── adtxtdt.cfg │ │ │ ├── menu.cfg │ │ │ ├── prmenu.cfg │ │ │ ├── prompt.cfg │ │ │ ├── txt.cfg │ │ │ └── txtdt.cfg │ │ ├── menu.cfg │ │ ├── prompt.cfg │ │ ├── rqtxt.cfg │ │ ├── spk.cfg │ │ ├── splash.png │ │ ├── stdmenu.cfg │ │ ├── syslinux.cfg │ │ ├── txt.cfg │ │ ├── vesamenu.c32 │ │ └── xfce │ │ │ ├── adtxt.cfg │ │ │ ├── adtxtdt.cfg │ │ │ ├── menu.cfg │ │ │ ├── prmenu.cfg │ │ │ ├── prompt.cfg │ │ │ ├── txt.cfg │ │ │ └── txtdt.cfg │ ├── pxelinux.0 │ └── pxelinux.cfg │ │ └── default ├── utils │ └── IPMI │ │ └── dhcpMacList.js └── views │ ├── about.ejs │ ├── configure.ejs │ ├── error.ejs │ ├── header.ejs │ ├── index.ejs │ ├── layout.ejs │ ├── left.ejs │ ├── logs.ejs │ ├── script │ └── pxe.ejs │ ├── utils │ └── networking.ejs │ ├── yml │ ├── develop-etcd.ejs │ ├── develop-worker.ejs │ ├── production-central.ejs │ ├── production-worker.ejs │ ├── pxe.ejs │ ├── pxe.ejs.bak │ ├── simple.ejs │ └── small-cluster.ejs │ └── yml_fleet │ ├── develop-etcd.ejs │ ├── develop-worker.ejs │ ├── production-central.ejs │ ├── production-worker.ejs │ ├── pxe.ejs │ ├── simple.ejs │ └── small-cluster.ejs ├── config.js ├── entrypoint.sh └── scripts └── init.sh /.gitignore: -------------------------------------------------------------------------------- 1 | app/tftp/coreos-installer 2 | app/node_modules 3 | app/public/amd64-usr 4 | app/public/kube 5 | test 6 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM google/nodejs 2 | 3 | MAINTAINER Tad Wang 4 | 5 | EXPOSE 8080 6 | WORKDIR /app 7 | ADD ./app /app 8 | ADD ./config.js /app/config.js 9 | #RUN npm install 10 | ADD ./entrypoint.sh /entrypoint.sh 11 | CMD ["/entrypoint.sh"] 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Yoo Installer 2 | 3 | `NOTICE`: This project is still under heavy development. After Stable, we will make full documents:) 4 | 5 | 6 | * If has any problem, please contact wptady[AT]gmail.com. 7 | 8 | 9 | ## How to Install 10 | 11 | 12 | 13 | ### DHCP Service (Based on Docker Image, optional) 14 | 15 | 16 | * Install Yoo isc dhcpd Service: 17 | 18 | 19 | ### TFTP Service 20 | 21 | * Under Development: Will Add it into yoo-installer project. 22 | 23 | 24 | ### HTTP Service 25 | 26 | * RUN yoo installer -------------------------------------------------------------------------------- /app/bin/www: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var debug = require('debug')('my-application'); 3 | var app = require('../app'); 4 | 5 | app.set('port', process.env.PORT || 80); 6 | 7 | var server = app.listen(app.get('port'), function() { 8 | debug('Express server listening on port ' + server.address().port); 9 | }); 10 | -------------------------------------------------------------------------------- /app/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "sshAuthorizedKeys": [ 3 | "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCzSMv2Zv9lZtsd+YQCAdqr2zcCJCNP31tnxKvFquVokoVPljR5DzX8qpKkoJhHMP74lTxUlXT6JQdV3dRWa44AVrKqcQqtRx4L/9a7Yy+ntbz0AuSgtQQ9IemmplCUIf3Nq8Qe+5vrRJJYl4k+4kaxOgCxrSoPcp+yJh+tBaRAwWeykW4LJeCo/POl6rzai+/MAp8kl6RDjUXGtg67uQaJS0UvS8nVBuoAdxXfTMsSven3DCDEGHlqxhK74Lb2jYgsdmLv0416Wnooqran1wQDdDEcs9uhAGWeQM90cdYf191aAo3hLJrguLYHiCtiaLegIjvQgfnWDOGIGeE+vxG3 wptad@tom.com" 4 | ], 5 | "httpHost": "192.168.8.10", 6 | "discoveryURL": "https://discovery.etcd.io/e055d84e0207475ad941e087da1c88ce", 7 | "developEtcdHost": "192.168.8.60", 8 | "developEtcdGateway": "192.168.8.1", 9 | "productionEtcdGateway": "192.168.8.1", 10 | "productionEtcdServices2379": "http://192.168.1.50:2379,http://192.168.1.51:2379,http://192.168.1.52:2379", 11 | "productionEtcdServices2380": "http://192.168.1.50:2380,http://192.168.1.51:2380,http://192.168.1.52:2380", 12 | "productionK8sMasterIP": "192.168.1.11", 13 | "productionDns": "114.114.114.114" 14 | } -------------------------------------------------------------------------------- /app/doc/pxe_process.md: -------------------------------------------------------------------------------- 1 | #PXE 2 | 3 | 4 | ## process 5 | 6 | * PXE 7 | * DHCP 8 | * TFTP 9 | * MENU 10 | * * append cloud-config-url=http://192.168.0.1/pxe-small-cluster.yml 11 | * * * pxe-small-cluster.yml -> service -> http://192.168.0.1/pxe-small-cluster.setup 12 | 13 | 14 | 15 | 16 | ==PXE CORE OS== 17 | * cloud-config (*.yml) 18 | * setup service (*.service) 19 | * setup script (*.sh) 20 | * final coreos cloud config (*.yml) 21 | 22 | 23 | ==FINAL CORE OS== 24 | * final coreos cloud-config 25 | * setup service 26 | * setup script 27 | -------------------------------------------------------------------------------- /app/lib/users.js: -------------------------------------------------------------------------------- 1 | var express = require('express'); 2 | var router = express.Router(); 3 | 4 | /* GET users listing. */ 5 | router.get('/', function(req, res) { 6 | res.send('respond with a resource'); 7 | }); 8 | 9 | module.exports = router; 10 | -------------------------------------------------------------------------------- /app/lib/util/tool.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by tad on 3/11/15. 3 | */ 4 | 5 | 'use strict'; 6 | 7 | exports.getRemoteAddress = function (req) { 8 | var str = req.connection.remoteAddress || req.headers['x-real-ip'] || req.headers['x-forwarded-for']; 9 | var arr = str.split(":"); 10 | return arr[arr.length-1]; 11 | } -------------------------------------------------------------------------------- /app/lib/utilPage.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 'use strict'; 4 | 5 | var tool = require('./util/tool'); 6 | var config = require('../config'); 7 | 8 | /***************** 9 | * pxe files 10 | */ 11 | 12 | exports.getNetworking = function (req, res, next) { 13 | var requestIP = tool.getRemoteAddress(req); 14 | var data = { 15 | requestIP: requestIP, 16 | layout: false 17 | }; 18 | console.log(data); 19 | res.set('Content-Type', 'text/plain'); 20 | res.render('utils/networking', data); 21 | } 22 | -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "application-name", 3 | "version": "0.0.1", 4 | "private": true, 5 | "main": "bin/www", 6 | "scripts": { 7 | "start": "node ./bin/www" 8 | }, 9 | "dependencies": { 10 | "body-parser": "~1.0.0", 11 | "cookie-parser": "~1.0.1", 12 | "debug": "~0.7.4", 13 | "ejs": "~0.8.5", 14 | "express": "~4.0.0", 15 | "express-partials": "^0.3.0", 16 | "morgan": "~1.0.0", 17 | "static-favicon": "~1.0.0", 18 | "tftp": "^0.1.1" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/public/50x.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | The page is temporarily unavailable 4 | 7 | 8 | 9 | 10 | 11 | 15 | 16 |
12 | The page you are looking for is temporarily unavailable.
13 | Please try again later. 14 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /app/public/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /app/public/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /app/public/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /app/public/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /app/public/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /app/public/lib/admin-lte/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "AdminLTE", 3 | "version": "2.1.2", 4 | "homepage": "http://almsaeedstudio.com", 5 | "authors": [ 6 | "Abdullah Almsaeed " 7 | ], 8 | "description": "Admin dashboard and control panel template", 9 | "main": [ 10 | "index2.html", 11 | "dist/css/AdminLTE.css", 12 | "dist/js/app.js", 13 | "build/less/AdminLTE.less" 14 | ], 15 | "keywords": [ 16 | "css", 17 | "js", 18 | "html", 19 | "template", 20 | "admin", 21 | "bootstrap", 22 | "theme", 23 | "backend", 24 | "responsive" 25 | ], 26 | "license": "MIT", 27 | "ignore": [ 28 | "/.*", 29 | "node_modules", 30 | "bower_components", 31 | "composer.json", 32 | "documentation" 33 | ], 34 | "_release": "2.1.2", 35 | "_resolution": { 36 | "type": "version", 37 | "tag": "v2.1.2", 38 | "commit": "406de4e708e84ed0abbc08b09870828254a6b2ef" 39 | }, 40 | "_source": "git://github.com/almasaeed2010/AdminLTE.git", 41 | "_target": "~2.1.2", 42 | "_originalSource": "admin-lte", 43 | "_direct": true 44 | } -------------------------------------------------------------------------------- /app/public/lib/admin-lte/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014-2015 almasaeed2010 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/public/lib/admin-lte/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/public/lib/admin-lte/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/public/lib/admin-lte/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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') -------------------------------------------------------------------------------- /app/public/lib/admin-lte/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "AdminLTE", 3 | "version": "2.1.2", 4 | "homepage": "http://almsaeedstudio.com", 5 | "authors": [ 6 | "Abdullah Almsaeed " 7 | ], 8 | "description": "Admin dashboard and control panel template", 9 | "main": [ 10 | "index2.html", 11 | "dist/css/AdminLTE.css", 12 | "dist/js/app.js", 13 | "build/less/AdminLTE.less" 14 | ], 15 | "keywords": [ 16 | "css", 17 | "js", 18 | "html", 19 | "template", 20 | "admin", 21 | "bootstrap", 22 | "theme", 23 | "backend", 24 | "responsive" 25 | ], 26 | "license": "MIT", 27 | "ignore": [ 28 | "/.*", 29 | "node_modules", 30 | "bower_components", 31 | "composer.json", 32 | "documentation" 33 | ] 34 | } 35 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/build/bootstrap-less/mixins/table-row.less: -------------------------------------------------------------------------------- 1 | // Tables 2 | 3 | .table-row-variant(@state; @background) { 4 | // Exact selectors below required to override `.table-striped` and prevent 5 | // inheritance to nested tables. 6 | .table > thead > tr, 7 | .table > tbody > tr, 8 | .table > tfoot > tr { 9 | > td.@{state}, 10 | > th.@{state}, 11 | &.@{state} > td, 12 | &.@{state} > th { 13 | background-color: @background; 14 | } 15 | } 16 | 17 | // Hover states for `.table-hover` 18 | // Note: this is not available for cells or rows within `thead` or `tfoot`. 19 | .table-hover > tbody > tr { 20 | > td.@{state}:hover, 21 | > th.@{state}:hover, 22 | &.@{state}:hover > td, 23 | &:hover > .@{state}, 24 | &.@{state}:hover > th { 25 | background-color: darken(@background, 5%); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/build/less/404_500_errors.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Page: 400 and 500 error pages 3 | * ------------------------------ 4 | */ 5 | .error-page { 6 | width: 600px; 7 | margin: 20px auto 0 auto; 8 | @media (max-width: @screen-sm-max) { 9 | width: 100%; 10 | } 11 | //For the error number e.g: 404 12 | > .headline { 13 | float: left; 14 | font-size: 100px; 15 | font-weight: 300; 16 | @media (max-width: @screen-sm-max) { 17 | float: none; 18 | text-align: center; 19 | } 20 | } 21 | //For the message 22 | > .error-content { 23 | margin-left: 190px; 24 | @media (max-width: @screen-sm-max) { 25 | margin-left: 0; 26 | } 27 | > h3 { 28 | font-weight: 300; 29 | font-size: 25px; 30 | @media(max-width: @screen-sm-max) { 31 | text-align: center; 32 | } 33 | } 34 | display: block; 35 | } 36 | } -------------------------------------------------------------------------------- /app/public/lib/admin-lte/build/less/alerts.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Component: alert 3 | * ---------------- 4 | */ 5 | 6 | .alert { 7 | .border-radius(3px); 8 | h4 { 9 | font-weight: 600; 10 | } 11 | .icon { 12 | margin-right: 10px; 13 | } 14 | .close { 15 | color: #000; 16 | .opacity(.2); 17 | &:hover { 18 | .opacity(.5); 19 | } 20 | } 21 | a { 22 | color: #fff; 23 | text-decoration: underline; 24 | } 25 | } 26 | 27 | //Alert Variants 28 | .alert-success { 29 | &:extend(.bg-green); 30 | border-color: darken(@green, 5%); 31 | } 32 | .alert-danger, 33 | .alert-error { 34 | &:extend(.bg-red); 35 | border-color: darken(@red, 5%); 36 | } 37 | .alert-warning { 38 | &:extend(.bg-yellow); 39 | border-color: darken(@yellow, 5%); 40 | } 41 | .alert-info { 42 | &:extend(.bg-aqua); 43 | border-color: darken(@aqua, 5%); 44 | } 45 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/build/less/callout.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Component: Callout 3 | * ------------------ 4 | */ 5 | 6 | // Base styles (regardless of theme) 7 | .callout { 8 | .border-radius(3px); 9 | margin: 0 0 20px 0; 10 | padding: 15px 30px 15px 15px; 11 | border-left: 5px solid #eee; 12 | a { 13 | color: #fff; 14 | text-decoration: underline; 15 | &:hover { 16 | color: #eee; 17 | } 18 | } 19 | h4 { 20 | margin-top: 0; 21 | font-weight: 600; 22 | } 23 | p:last-child { 24 | margin-bottom: 0; 25 | } 26 | code, 27 | .highlight { 28 | background-color: #fff; 29 | } 30 | 31 | // Themes for different contexts 32 | &.callout-danger { 33 | &:extend(.bg-red); 34 | border-color: darken(@red, 10%); 35 | } 36 | &.callout-warning { 37 | &:extend(.bg-yellow); 38 | border-color: darken(@yellow, 10%); 39 | } 40 | &.callout-info { 41 | &:extend(.bg-aqua); 42 | border-color: darken(@aqua, 10%); 43 | } 44 | &.callout-success { 45 | &:extend(.bg-green); 46 | border-color: darken(@green, 10%); 47 | } 48 | } -------------------------------------------------------------------------------- /app/public/lib/admin-lte/build/less/carousel.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Component: Carousel 3 | * ------------------- 4 | */ 5 | .carousel-control { 6 | background-image: none!important; 7 | > .fa { 8 | font-size: 40px; 9 | position: absolute; 10 | top: 50%; 11 | z-index: 5; 12 | display: inline-block; 13 | margin-top: -20px; 14 | } 15 | } -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | } -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | } -------------------------------------------------------------------------------- /app/public/lib/admin-lte/build/less/login_and_register.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Page: Login & Register 3 | * ---------------------- 4 | */ 5 | 6 | .login-logo, 7 | .register-logo { 8 | font-size: 35px; 9 | text-align: center; 10 | margin-bottom: 25px; 11 | font-weight: 300; 12 | a { 13 | color: #444; 14 | } 15 | } 16 | 17 | .login-page, 18 | .register-page { 19 | background: @gray; 20 | } 21 | 22 | .login-box, 23 | .register-box { 24 | width: 360px; 25 | margin: 7% auto; 26 | @media (max-width: @screen-sm) { 27 | width: 90%; 28 | margin-top: 20px; 29 | } 30 | } 31 | 32 | .login-box-body, 33 | .register-box-body { 34 | background: #fff; 35 | padding: 20px; 36 | color: #444; 37 | border-top: 0; 38 | color: #666; 39 | .form-control-feedback { 40 | color: #777; 41 | } 42 | } 43 | .login-box-msg, 44 | .register-box-msg { 45 | margin: 0; 46 | text-align: center; 47 | padding: 0 20px 20px 20px; 48 | } 49 | .social-auth-links { 50 | margin: 10px 0; 51 | } -------------------------------------------------------------------------------- /app/public/lib/admin-lte/build/less/print.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Misc: print 3 | * ----------- 4 | */ 5 | @media print { 6 | //Add to elements that you do not want to show when printing 7 | .no-print { 8 | display: none!important; 9 | } 10 | //Elements that we want to hide when printing 11 | .main-sidebar, 12 | .left-side, 13 | .main-header, 14 | .content-header { 15 | &:extend(.no-print); 16 | } 17 | //This is the only element that should appear, so let's remove the margins 18 | .content-wrapper, 19 | .right-side, 20 | .main-footer { 21 | margin-left: 0!important; 22 | min-height: 0!important; 23 | .translate(0,0)!important; 24 | } 25 | .fixed .content-wrapper, 26 | .fixed .right-side { 27 | padding-top: 0!important; 28 | } 29 | //Invoice printing 30 | .invoice { 31 | width: 100%; 32 | border: 0; 33 | margin: 0; 34 | padding: 0; 35 | } 36 | .invoice-col { 37 | float: left; 38 | width: 33.3333333%; 39 | } 40 | //Make sure table content displays properly 41 | .table-responsive { 42 | overflow: auto; 43 | > .table tr th, 44 | > .table tr td { 45 | white-space: normal!important; 46 | } 47 | } 48 | } -------------------------------------------------------------------------------- /app/public/lib/admin-lte/build/less/products.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Component: Products List 3 | * ------------------------ 4 | */ 5 | .products-list { 6 | list-style: none; 7 | margin: 0; 8 | padding: 0; 9 | > .item { 10 | .border-radius(@box-border-radius); 11 | .box-shadow(@box-boxshadow); 12 | .clearfix(); 13 | padding: 10px 0; 14 | background: #fff; 15 | } 16 | .product-img { 17 | float: left; 18 | img { 19 | width: 50px; 20 | height: 50px; 21 | } 22 | } 23 | .product-info { 24 | margin-left: 60px; 25 | } 26 | .product-title { 27 | font-weight: 600; 28 | } 29 | .product-description { 30 | display: block; 31 | color: #999; 32 | overflow: hidden; 33 | white-space: nowrap; 34 | text-overflow: ellipsis; 35 | } 36 | } 37 | .product-list-in-box > .item { 38 | .box-shadow(none); 39 | .border-radius(0); 40 | border-bottom: 1px solid @box-border-color; 41 | &:last-of-type { 42 | border-bottom-width: 0; 43 | } 44 | } -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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"; -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | } -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/avatar.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/avatar04.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/avatar2.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/avatar3.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/avatar5.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/credit/american-express.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/credit/cirrus.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/credit/mastercard.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/credit/mestro.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/credit/paypal.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/credit/paypal2.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/credit/visa.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/default-50x50.gif -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/icons.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/photo1.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/photo2.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/user1-128x128.jpg -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/user2-160x160.jpg -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/user3-128x128.jpg -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/user4-128x128.jpg -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/user5-128x128.jpg -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/user6-128x128.jpg -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/user7-128x128.jpg -------------------------------------------------------------------------------- /app/public/lib/admin-lte/dist/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/dist/img/user8-128x128.jpg -------------------------------------------------------------------------------- /app/public/lib/admin-lte/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "admin-lte", 3 | "version": "2.1.0", 4 | "repository": { 5 | "type": "git", 6 | "url": "git://github.com/almasaeed2010/AdminLTE.git" 7 | }, 8 | "devDependencies": { 9 | "R2": "^1.4.3", 10 | "grunt": "~0.4.5", 11 | "grunt-contrib-cssmin": "^0.12.2", 12 | "grunt-contrib-less": "^0.12.0", 13 | "grunt-contrib-uglify": "^0.7.0", 14 | "grunt-contrib-watch": "~0.6.1", 15 | "grunt-cssjanus": "^0.2.4", 16 | "grunt-includes": "^0.4.5" 17 | } 18 | } -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 30 Missing: 0 5 | cy.js Found: 30 Missing: 0 6 | da.js Found: 12 Missing: 18 7 | de.js Found: 30 Missing: 0 8 | el.js Found: 25 Missing: 5 9 | eo.js Found: 30 Missing: 0 10 | fa.js Found: 30 Missing: 0 11 | fi.js Found: 30 Missing: 0 12 | fr.js Found: 30 Missing: 0 13 | gu.js Found: 12 Missing: 18 14 | he.js Found: 30 Missing: 0 15 | it.js Found: 30 Missing: 0 16 | mk.js Found: 5 Missing: 25 17 | nb.js Found: 30 Missing: 0 18 | nl.js Found: 30 Missing: 0 19 | no.js Found: 30 Missing: 0 20 | pt-br.js Found: 30 Missing: 0 21 | ro.js Found: 6 Missing: 24 22 | tr.js Found: 30 Missing: 0 23 | ug.js Found: 27 Missing: 3 24 | vi.js Found: 6 Missing: 24 25 | zh-cn.js Found: 30 Missing: 0 26 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/plugins/fakeobjects/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/plugins/fakeobjects/images/spacer.gif -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/plugins/scayt/README.md: -------------------------------------------------------------------------------- 1 | CKEditor SCAYT Plugin 2 | ===================== 3 | 4 | This plugin brings Spell Check As You Type (SCAYT) into CKEditor. 5 | 6 | SCAYT is a "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/scayt" folder in your CKEditor installation. 12 | 2. Enable the "scayt" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'scayt'; 15 | 16 | That's all. SCAYT will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 118 Missing: 0 5 | cy.js Found: 118 Missing: 0 6 | de.js Found: 118 Missing: 0 7 | el.js Found: 16 Missing: 102 8 | eo.js Found: 118 Missing: 0 9 | et.js Found: 31 Missing: 87 10 | fa.js Found: 24 Missing: 94 11 | fi.js Found: 23 Missing: 95 12 | fr.js Found: 118 Missing: 0 13 | hr.js Found: 23 Missing: 95 14 | it.js Found: 118 Missing: 0 15 | nb.js Found: 118 Missing: 0 16 | nl.js Found: 118 Missing: 0 17 | no.js Found: 118 Missing: 0 18 | tr.js Found: 118 Missing: 0 19 | ug.js Found: 39 Missing: 79 20 | zh-cn.js Found: 118 Missing: 0 21 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/plugins/wsc/README.md: -------------------------------------------------------------------------------- 1 | CKEditor WebSpellChecker Plugin 2 | =============================== 3 | 4 | This plugin brings Web Spell Checker (WSC) into CKEditor. 5 | 6 | WSC is "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/wsc" folder in your CKEditor installation. 12 | 2. Enable the "wsc" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'wsc'; 15 | 16 | That's all. WSC will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/colorpicker/img/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/colorpicker/img/alpha-horizontal.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/colorpicker/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/colorpicker/img/alpha.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/colorpicker/img/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/colorpicker/img/hue-horizontal.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/colorpicker/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/colorpicker/img/hue.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/colorpicker/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/colorpicker/img/saturation.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/AutoFill/images/filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/AutoFill/images/filler.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/ColReorder/License.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010-2015 SpryMedia Limited 2 | http://datatables.net 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is 9 | furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in 12 | all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | } -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/ColReorder/images/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/ColReorder/images/insert.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/ColVis/License.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010-2015 SpryMedia Limited 2 | http://datatables.net 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is 9 | furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in 12 | all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | } -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/FixedColumns/License.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010-2015 SpryMedia Limited 2 | http://datatables.net 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is 9 | furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in 12 | all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.min.css: -------------------------------------------------------------------------------- 1 | div.FixedHeader_Cloned th,div.FixedHeader_Cloned td{background-color:white !important} 2 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/Responsive/Readme.md -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/Scroller/css/dataTables.scroller.css: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Namespace: DTS (DataTables Scroller) 4 | */ 5 | 6 | div.DTS tbody th, 7 | div.DTS tbody td { 8 | white-space: nowrap; 9 | } 10 | 11 | div.DTS tbody tr.even { 12 | background-color: white; 13 | } 14 | 15 | div.DTS div.DTS_Loading { 16 | position: absolute; 17 | top: 50%; 18 | left: 50%; 19 | width: 200px; 20 | height: 20px; 21 | margin-top: -20px; 22 | margin-left: -100px; 23 | z-index: 1; 24 | 25 | border: 1px solid #999; 26 | padding: 20px 0; 27 | text-align: center; 28 | background-color: white; 29 | background-color: rgba(255, 255, 255, 0.5); 30 | } 31 | 32 | div.DTS div.dataTables_scrollHead, 33 | div.DTS div.dataTables_scrollFoot { 34 | background-color: white; 35 | } 36 | 37 | div.DTS div.dataTables_scrollBody { 38 | z-index: 2; 39 | } 40 | 41 | div.DTS div.dataTables_scroll { 42 | background: url('../images/loading-background.png') repeat 0 0; 43 | } 44 | 45 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/Scroller/images/loading-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/Scroller/images/loading-background.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/collection.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/collection_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/collection_hover.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/copy.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/copy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/copy_hover.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/csv.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/csv_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/csv_hover.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/pdf.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/pdf_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/pdf_hover.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/print.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/print_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/print_hover.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/psd/collection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/psd/collection.psd -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/psd/copy document.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/psd/copy document.psd -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/psd/file_types.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/psd/file_types.psd -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/psd/printer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/psd/printer.psd -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/xls.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/xls_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/images/xls_hover.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/images/sort_both.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.ar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Arabic translation for bootstrap-datepicker 3 | * Mohammed Alshehri 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ar'] = { 7 | days: ["الأحد", "الاثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت", "الأحد"], 8 | daysShort: ["أحد", "اثنين", "ثلاثاء", "أربعاء", "خميس", "جمعة", "سبت", "أحد"], 9 | daysMin: ["ح", "ن", "ث", "ع", "خ", "ج", "س", "ح"], 10 | months: ["يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر"], 11 | monthsShort: ["يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر"], 12 | today: "هذا اليوم", 13 | rtl: true 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.et.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Estonian translation for bootstrap-datepicker 3 | * Ando Roots 4 | * Fixes by Illimar Tambek < 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['et'] = { 8 | days: ["Pühapäev", "Esmaspäev", "Teisipäev", "Kolmapäev", "Neljapäev", "Reede", "Laupäev", "Pühapäev"], 9 | daysShort: ["Pühap", "Esmasp", "Teisip", "Kolmap", "Neljap", "Reede", "Laup", "Pühap"], 10 | daysMin: ["P", "E", "T", "K", "N", "R", "L", "P"], 11 | months: ["Jaanuar", "Veebruar", "Märts", "Aprill", "Mai", "Juuni", "Juuli", "August", "September", "Oktoober", "November", "Detsember"], 12 | monthsShort: ["Jaan", "Veebr", "Märts", "Apr", "Mai", "Juuni", "Juuli", "Aug", "Sept", "Okt", "Nov", "Dets"], 13 | today: "Täna", 14 | clear: "Tühjenda", 15 | weekStart: 1, 16 | format: "dd.mm.yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.fi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Finnish translation for bootstrap-datepicker 3 | * Jaakko Salonen 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['fi'] = { 7 | days: ["sunnuntai", "maanantai", "tiistai", "keskiviikko", "torstai", "perjantai", "lauantai", "sunnuntai"], 8 | daysShort: ["sun", "maa", "tii", "kes", "tor", "per", "lau", "sun"], 9 | daysMin: ["su", "ma", "ti", "ke", "to", "pe", "la", "su"], 10 | months: ["tammikuu", "helmikuu", "maaliskuu", "huhtikuu", "toukokuu", "kesäkuu", "heinäkuu", "elokuu", "syyskuu", "lokakuu", "marraskuu", "joulukuu"], 11 | monthsShort: ["tam", "hel", "maa", "huh", "tou", "kes", "hei", "elo", "syy", "lok", "mar", "jou"], 12 | today: "tänään", 13 | weekStart: 1, 14 | format: "d.m.yyyy" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.it.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Italian translation for bootstrap-datepicker 3 | * Enrico Rubboli 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['it'] = { 7 | days: ["Domenica", "Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì", "Sabato", "Domenica"], 8 | daysShort: ["Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab", "Dom"], 9 | daysMin: ["Do", "Lu", "Ma", "Me", "Gi", "Ve", "Sa", "Do"], 10 | months: ["Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre"], 11 | monthsShort: ["Gen", "Feb", "Mar", "Apr", "Mag", "Giu", "Lug", "Ago", "Set", "Ott", "Nov", "Dic"], 12 | today: "Oggi", 13 | clear: "Cancella", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.ka.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Georgian translation for bootstrap-datepicker 3 | * Levan Melikishvili 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ka'] = { 7 | days: ["კვირა", "ორშაბათი", "სამშაბათი", "ოთხშაბათი", "ხუთშაბათი", "პარასკევი", "შაბათი", "კვირა"], 8 | daysShort: ["კვი", "ორშ", "სამ", "ოთხ", "ხუთ", "პარ", "შაბ", "კვი"], 9 | daysMin: ["კვ", "ორ", "სა", "ოთ", "ხუ", "პა", "შა", "კვ"], 10 | months: ["იანვარი", "თებერვალი", "მარტი", "აპრილი", "მაისი", "ივნისი", "ივლისი", "აგვისტო", "სექტემბერი", "ოქტომები", "ნოემბერი", "დეკემბერი"], 11 | monthsShort: ["იან", "თებ", "მარ", "აპრ", "მაი", "ივნ", "ივლ", "აგვ", "სექ", "ოქტ", "ნოე", "დეკ"], 12 | today: "დღეს", 13 | clear: "გასუფთავება", 14 | weekStart: 1, 15 | format: "dd.mm.yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.lt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Lithuanian translation for bootstrap-datepicker 3 | * Šarūnas Gliebus 4 | */ 5 | 6 | ;(function($){ 7 | $.fn.datepicker.dates['lt'] = { 8 | days: ["Sekmadienis", "Pirmadienis", "Antradienis", "Trečiadienis", "Ketvirtadienis", "Penktadienis", "Šeštadienis", "Sekmadienis"], 9 | daysShort: ["S", "Pr", "A", "T", "K", "Pn", "Š", "S"], 10 | daysMin: ["Sk", "Pr", "An", "Tr", "Ke", "Pn", "Št", "Sk"], 11 | months: ["Sausis", "Vasaris", "Kovas", "Balandis", "Gegužė", "Birželis", "Liepa", "Rugpjūtis", "Rugsėjis", "Spalis", "Lapkritis", "Gruodis"], 12 | monthsShort: ["Sau", "Vas", "Kov", "Bal", "Geg", "Bir", "Lie", "Rugp", "Rugs", "Spa", "Lap", "Gru"], 13 | today: "Šiandien", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.lv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Latvian translation for bootstrap-datepicker 3 | * Artis Avotins 4 | */ 5 | 6 | ;(function($){ 7 | $.fn.datepicker.dates['lv'] = { 8 | days: ["Svētdiena", "Pirmdiena", "Otrdiena", "Trešdiena", "Ceturtdiena", "Piektdiena", "Sestdiena", "Svētdiena"], 9 | daysShort: ["Sv", "P", "O", "T", "C", "Pk", "S", "Sv"], 10 | daysMin: ["Sv", "Pr", "Ot", "Tr", "Ce", "Pk", "Se", "Sv"], 11 | months: ["Janvāris", "Februāris", "Marts", "Aprīlis", "Maijs", "Jūnijs", "Jūlijs", "Augusts", "Septembris", "Oktobris", "Novembris", "Decembris"], 12 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jūn", "Jūl", "Aug", "Sep", "Okt", "Nov", "Dec"], 13 | today: "Šodien", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.nl-BE.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Belgium-Dutch translation for bootstrap-datepicker 3 | * Julien Poulin 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nl-BE'] = { 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 | clear: "Leegmaken", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.pl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Polish translation for bootstrap-datepicker 3 | * Robert 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['pl'] = { 7 | days: ["Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota", "Niedziela"], 8 | daysShort: ["Nie", "Pn", "Wt", "Śr", "Czw", "Pt", "So", "Nie"], 9 | daysMin: ["N", "Pn", "Wt", "Śr", "Cz", "Pt", "So", "N"], 10 | months: ["Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień"], 11 | monthsShort: ["Sty", "Lu", "Mar", "Kw", "Maj", "Cze", "Lip", "Sie", "Wrz", "Pa", "Lis", "Gru"], 12 | today: "Dzisiaj", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.pt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Portuguese translation for bootstrap-datepicker 3 | * Original code: Cauan Cabral 4 | * Tiago Melo 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['pt'] = { 8 | days: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado", "Domingo"], 9 | daysShort: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb", "Dom"], 10 | daysMin: ["Do", "Se", "Te", "Qu", "Qu", "Se", "Sa", "Do"], 11 | months: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"], 12 | monthsShort: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"], 13 | today: "Hoje", 14 | clear: "Limpar" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.sw.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Swahili translation for bootstrap-datepicker 3 | * Edwin Mugendi 4 | * Source: http://scriptsource.org/cms/scripts/page.php?item_id=entry_detail&uid=xnfaqyzcku 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['sw'] = { 8 | days: ["Jumapili", "Jumatatu", "Jumanne", "Jumatano", "Alhamisi", "Ijumaa", "Jumamosi", "Jumapili"], 9 | daysShort: ["J2", "J3", "J4", "J5", "Alh", "Ij", "J1", "J2"], 10 | daysMin: ["2", "3", "4", "5", "A", "I", "1", "2"], 11 | months: ["Januari", "Februari", "Machi", "Aprili", "Mei", "Juni", "Julai", "Agosti", "Septemba", "Oktoba", "Novemba", "Desemba"], 12 | monthsShort: ["Jan", "Feb", "Mac", "Apr", "Mei", "Jun", "Jul", "Ago", "Sep", "Okt", "Nov", "Des"], 13 | today: "Leo" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/flot/jquery.flot.symbol.min.js: -------------------------------------------------------------------------------- 1 | (function($){function processRawData(plot,series,datapoints){var handlers={square:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI)/2;ctx.rect(x-size,y-size,size+size,size+size)},diamond:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI/2);ctx.moveTo(x-size,y);ctx.lineTo(x,y-size);ctx.lineTo(x+size,y);ctx.lineTo(x,y+size);ctx.lineTo(x-size,y)},triangle:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(2*Math.PI/Math.sin(Math.PI/3));var height=size*Math.sin(Math.PI/3);ctx.moveTo(x-size/2,y+height/2);ctx.lineTo(x+size/2,y+height/2);if(!shadow){ctx.lineTo(x,y-height/2);ctx.lineTo(x-size/2,y+height/2)}},cross:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI)/2;ctx.moveTo(x-size,y-size);ctx.lineTo(x+size,y+size);ctx.moveTo(x-size,y+size);ctx.lineTo(x+size,y-size)}};var s=series.points.symbol;if(handlers[s])series.points.symbol=handlers[s]}function init(plot){plot.hooks.processDatapoints.push(processRawData)}$.plot.plugins.push({init:init,name:"symbols",version:"1.0"})})(jQuery); -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/aero.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/blue.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/flat.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/green.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/grey.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/orange.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/orange@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/pink.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/pink@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/purple.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/purple@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/red.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/futurico/futurico.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/futurico/futurico@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/line/line.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/line/line@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/aero.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/aero@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/blue.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/blue@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/green.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/green@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/grey.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/grey@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/minimal.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/minimal@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/orange.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/orange@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/pink.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/pink@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/purple.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/purple@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/red.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/red@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/yellow.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/minimal/yellow@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/polaris/polaris.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/polaris/polaris@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/aero.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/aero@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/blue.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/green.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/green@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/grey.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/grey@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/orange.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/orange@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/pink.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/pink@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/purple.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/purple@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/red.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/red@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/square.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/square@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/yellow.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/iCheck/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/iCheck/square/yellow@2x.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/input-mask/phone-codes/readme.txt: -------------------------------------------------------------------------------- 1 | more phone masks can be found at https://github.com/andr-04/inputmask-multi -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ionslider/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ionslider/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/ionslider/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/admin-lte/plugins/ionslider/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /app/public/lib/admin-lte/plugins/jvectormap/jquery-jvectormap-1.2.2.css: -------------------------------------------------------------------------------- 1 | .jvectormap-label { 2 | position: absolute; 3 | display: none; 4 | border: solid 1px #CDCDCD; 5 | -webkit-border-radius: 3px; 6 | -moz-border-radius: 3px; 7 | border-radius: 3px; 8 | background: #292929; 9 | color: white; 10 | font-size: 10px!important; 11 | padding: 3px; 12 | z-index: 9999; 13 | } 14 | 15 | .jvectormap-zoomin, .jvectormap-zoomout { 16 | position: absolute; 17 | top: 100%; 18 | margin-top: -25px; 19 | -webkit-border-radius: 2px; 20 | -moz-border-radius: 2px; 21 | border-radius: 2px; 22 | background: #d2d6de;//rgba(0,0,0,0.4); 23 | padding: 5px; 24 | color: #444; 25 | cursor: pointer; 26 | line-height: 10px; 27 | text-align: center; 28 | font-weight: bold; 29 | box-shadow: 0 1px 2px rgba(0,0,0,0.2); 30 | } 31 | 32 | .jvectormap-zoomin { 33 | left: 100%; 34 | margin-left: -50px; 35 | } 36 | 37 | .jvectormap-zoomout { 38 | left: 100%; 39 | margin-left: -30px; 40 | } -------------------------------------------------------------------------------- /app/public/lib/admin-lte/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 | -------------------------------------------------------------------------------- /app/public/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2011-2015 Twitter, Inc 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /app/public/lib/bootstrap/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap", 3 | "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.", 4 | "version": "3.3.4", 5 | "keywords": [ 6 | "css", 7 | "js", 8 | "less", 9 | "mobile-first", 10 | "responsive", 11 | "front-end", 12 | "framework", 13 | "web" 14 | ], 15 | "homepage": "http://getbootstrap.com", 16 | "main": [ 17 | "less/bootstrap.less", 18 | "dist/css/bootstrap.css", 19 | "dist/js/bootstrap.js", 20 | "dist/fonts/glyphicons-halflings-regular.eot", 21 | "dist/fonts/glyphicons-halflings-regular.svg", 22 | "dist/fonts/glyphicons-halflings-regular.ttf", 23 | "dist/fonts/glyphicons-halflings-regular.woff", 24 | "dist/fonts/glyphicons-halflings-regular.woff2" 25 | ], 26 | "ignore": [ 27 | "/.*", 28 | "_config.yml", 29 | "CNAME", 30 | "composer.json", 31 | "CONTRIBUTING.md", 32 | "docs", 33 | "js/tests", 34 | "test-infra" 35 | ], 36 | "dependencies": { 37 | "jquery": ">= 1.9.1" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /app/public/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/public/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/public/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/public/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /app/public/lib/bootstrap/dist/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') -------------------------------------------------------------------------------- /app/public/lib/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/public/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/public/lib/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/public/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/public/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /app/public/lib/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends" : "../js/.jshintrc", 3 | "asi" : false, 4 | "browser" : false, 5 | "es3" : false, 6 | "node" : true 7 | } 8 | -------------------------------------------------------------------------------- /app/public/lib/bootstrap/grunt/bs-commonjs-generator.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var fs = require('fs'); 3 | var path = require('path'); 4 | 5 | var COMMONJS_BANNER = '// This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.\n'; 6 | 7 | module.exports = function generateCommonJSModule(grunt, srcFiles, destFilepath) { 8 | var destDir = path.dirname(destFilepath); 9 | 10 | function srcPathToDestRequire(srcFilepath) { 11 | var requirePath = path.relative(destDir, srcFilepath).replace(/\\/g, '/'); 12 | return 'require(\'' + requirePath + '\')'; 13 | } 14 | 15 | var moduleOutputJs = COMMONJS_BANNER + srcFiles.map(srcPathToDestRequire).join('\n'); 16 | try { 17 | fs.writeFileSync(destFilepath, moduleOutputJs); 18 | } 19 | catch (err) { 20 | grunt.fail.warn(err); 21 | } 22 | grunt.log.writeln('File ' + destFilepath.cyan + ' created.'); 23 | }; 24 | -------------------------------------------------------------------------------- /app/public/lib/bootstrap/js/.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" : true, 10 | "laxbreak" : true, 11 | "nonbsp" : true, 12 | "strict" : true, 13 | "undef" : true, 14 | "unused" : true 15 | } 16 | -------------------------------------------------------------------------------- /app/public/lib/bootstrap/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 | } 20 | -------------------------------------------------------------------------------- /app/public/lib/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal; 8 | margin-bottom: @line-height-computed; 9 | list-style: none; 10 | background-color: @breadcrumb-bg; 11 | border-radius: @border-radius-base; 12 | 13 | > li { 14 | display: inline-block; 15 | 16 | + li:before { 17 | content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space 18 | padding: 0 5px; 19 | color: @breadcrumb-color; 20 | } 21 | } 22 | 23 | > .active { 24 | color: @breadcrumb-active-color; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/public/lib/bootstrap/less/close.less: -------------------------------------------------------------------------------- 1 | // 2 | // Close icons 3 | // -------------------------------------------------- 4 | 5 | 6 | .close { 7 | float: right; 8 | font-size: (@font-size-base * 1.5); 9 | font-weight: @close-font-weight; 10 | line-height: 1; 11 | color: @close-color; 12 | text-shadow: @close-text-shadow; 13 | .opacity(.2); 14 | 15 | &:hover, 16 | &:focus { 17 | color: @close-color; 18 | text-decoration: none; 19 | cursor: pointer; 20 | .opacity(.5); 21 | } 22 | 23 | // Additional properties for button version 24 | // iOS requires the button element instead of an anchor tag. 25 | // If you want the anchor version, it requires `href="#"`. 26 | // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile 27 | button& { 28 | padding: 0; 29 | cursor: pointer; 30 | background: transparent; 31 | border: 0; 32 | -webkit-appearance: none; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /app/public/lib/bootstrap/less/component-animations.less: -------------------------------------------------------------------------------- 1 | // 2 | // Component animations 3 | // -------------------------------------------------- 4 | 5 | // Heads up! 6 | // 7 | // We don't use the `.opacity()` mixin here since it causes a bug with text 8 | // fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552. 9 | 10 | .fade { 11 | opacity: 0; 12 | .transition(opacity .15s linear); 13 | &.in { 14 | opacity: 1; 15 | } 16 | } 17 | 18 | .collapse { 19 | display: none; 20 | 21 | &.in { display: block; } 22 | tr&.in { display: table-row; } 23 | tbody&.in { display: table-row-group; } 24 | } 25 | 26 | .collapsing { 27 | position: relative; 28 | height: 0; 29 | overflow: hidden; 30 | .transition-property(~"height, visibility"); 31 | .transition-duration(.35s); 32 | .transition-timing-function(ease); 33 | } 34 | -------------------------------------------------------------------------------- /app/public/lib/bootstrap/less/media.less: -------------------------------------------------------------------------------- 1 | .media { 2 | // Proper spacing between instances of .media 3 | margin-top: 15px; 4 | 5 | &:first-child { 6 | margin-top: 0; 7 | } 8 | } 9 | 10 | .media, 11 | .media-body { 12 | zoom: 1; 13 | overflow: hidden; 14 | } 15 | 16 | .media-body { 17 | width: 10000px; 18 | } 19 | 20 | .media-object { 21 | display: block; 22 | } 23 | 24 | .media-right, 25 | .media > .pull-right { 26 | padding-left: 10px; 27 | } 28 | 29 | .media-left, 30 | .media > .pull-left { 31 | padding-right: 10px; 32 | } 33 | 34 | .media-left, 35 | .media-right, 36 | .media-body { 37 | display: table-cell; 38 | vertical-align: top; 39 | } 40 | 41 | .media-middle { 42 | vertical-align: middle; 43 | } 44 | 45 | .media-bottom { 46 | vertical-align: bottom; 47 | } 48 | 49 | // Reset margins on headings for tighter default spacing 50 | .media-heading { 51 | margin-top: 0; 52 | margin-bottom: 5px; 53 | } 54 | 55 | // Media list variation 56 | // 57 | // Undo default ul/ol styles 58 | .media-list { 59 | padding-left: 0; 60 | list-style: none; 61 | } 62 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/bootstrap/less/mixins/table-row.less: -------------------------------------------------------------------------------- 1 | // Tables 2 | 3 | .table-row-variant(@state; @background) { 4 | // Exact selectors below required to override `.table-striped` and prevent 5 | // inheritance to nested tables. 6 | .table > thead > tr, 7 | .table > tbody > tr, 8 | .table > tfoot > tr { 9 | > td.@{state}, 10 | > th.@{state}, 11 | &.@{state} > td, 12 | &.@{state} > th { 13 | background-color: @background; 14 | } 15 | } 16 | 17 | // Hover states for `.table-hover` 18 | // Note: this is not available for cells or rows within `thead` or `tfoot`. 19 | .table-hover > tbody > tr { 20 | > td.@{state}:hover, 21 | > th.@{state}:hover, 22 | &.@{state}:hover > td, 23 | &:hover > .@{state}, 24 | &.@{state}:hover > th { 25 | background-color: darken(@background, 5%); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/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 | -------------------------------------------------------------------------------- /app/public/lib/bootstrap/less/pager.less: -------------------------------------------------------------------------------- 1 | // 2 | // Pager pagination 3 | // -------------------------------------------------- 4 | 5 | 6 | .pager { 7 | padding-left: 0; 8 | margin: @line-height-computed 0; 9 | list-style: none; 10 | text-align: center; 11 | &:extend(.clearfix all); 12 | li { 13 | display: inline; 14 | > a, 15 | > span { 16 | display: inline-block; 17 | padding: 5px 14px; 18 | background-color: @pager-bg; 19 | border: 1px solid @pager-border; 20 | border-radius: @pager-border-radius; 21 | } 22 | 23 | > a:hover, 24 | > a:focus { 25 | text-decoration: none; 26 | background-color: @pager-hover-bg; 27 | } 28 | } 29 | 30 | .next { 31 | > a, 32 | > span { 33 | float: right; 34 | } 35 | } 36 | 37 | .previous { 38 | > a, 39 | > span { 40 | float: left; 41 | } 42 | } 43 | 44 | .disabled { 45 | > a, 46 | > a:hover, 47 | > a:focus, 48 | > span { 49 | color: @pager-disabled-color; 50 | background-color: @pager-bg; 51 | cursor: @cursor-disabled; 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /app/public/lib/bootstrap/less/responsive-embed.less: -------------------------------------------------------------------------------- 1 | // Embeds responsive 2 | // 3 | // Credit: Nicolas Gallagher and SUIT CSS. 4 | 5 | .embed-responsive { 6 | position: relative; 7 | display: block; 8 | height: 0; 9 | padding: 0; 10 | overflow: hidden; 11 | 12 | .embed-responsive-item, 13 | iframe, 14 | embed, 15 | object, 16 | video { 17 | position: absolute; 18 | top: 0; 19 | left: 0; 20 | bottom: 0; 21 | height: 100%; 22 | width: 100%; 23 | border: 0; 24 | } 25 | } 26 | 27 | // Modifier class for 16:9 aspect ratio 28 | .embed-responsive-16by9 { 29 | padding-bottom: 56.25%; 30 | } 31 | 32 | // Modifier class for 4:3 aspect ratio 33 | .embed-responsive-4by3 { 34 | padding-bottom: 75%; 35 | } 36 | -------------------------------------------------------------------------------- /app/public/lib/bootstrap/less/thumbnails.less: -------------------------------------------------------------------------------- 1 | // 2 | // Thumbnails 3 | // -------------------------------------------------- 4 | 5 | 6 | // Mixin and adjust the regular image class 7 | .thumbnail { 8 | display: block; 9 | padding: @thumbnail-padding; 10 | margin-bottom: @line-height-computed; 11 | line-height: @line-height-base; 12 | background-color: @thumbnail-bg; 13 | border: 1px solid @thumbnail-border; 14 | border-radius: @thumbnail-border-radius; 15 | .transition(border .2s ease-in-out); 16 | 17 | > img, 18 | a > img { 19 | &:extend(.img-responsive); 20 | margin-left: auto; 21 | margin-right: auto; 22 | } 23 | 24 | // Add a hover state for linked versions only 25 | a&:hover, 26 | a&:focus, 27 | a&.active { 28 | border-color: @link-color; 29 | } 30 | 31 | // Image captions 32 | .caption { 33 | padding: @thumbnail-caption-padding; 34 | color: @thumbnail-caption-color; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /app/public/lib/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- 1 | // 2 | // Utility classes 3 | // -------------------------------------------------- 4 | 5 | 6 | // Floats 7 | // ------------------------- 8 | 9 | .clearfix { 10 | .clearfix(); 11 | } 12 | .center-block { 13 | .center-block(); 14 | } 15 | .pull-right { 16 | float: right !important; 17 | } 18 | .pull-left { 19 | float: left !important; 20 | } 21 | 22 | 23 | // Toggling content 24 | // ------------------------- 25 | 26 | // Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1 27 | .hide { 28 | display: none !important; 29 | } 30 | .show { 31 | display: block !important; 32 | } 33 | .invisible { 34 | visibility: hidden; 35 | } 36 | .text-hide { 37 | .text-hide(); 38 | } 39 | 40 | 41 | // Hide from screenreaders and browsers 42 | // 43 | // Credit: HTML5 Boilerplate 44 | 45 | .hidden { 46 | display: none !important; 47 | } 48 | 49 | 50 | // For Affix plugin 51 | // ------------------------- 52 | 53 | .affix { 54 | position: fixed; 55 | } 56 | -------------------------------------------------------------------------------- /app/public/lib/bootstrap/less/wells.less: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: @well-bg; 12 | border: 1px solid @well-border; 13 | border-radius: @border-radius-base; 14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-lg { 23 | padding: 24px; 24 | border-radius: @border-radius-large; 25 | } 26 | .well-sm { 27 | padding: 9px; 28 | border-radius: @border-radius-small; 29 | } 30 | -------------------------------------------------------------------------------- /app/public/lib/bootstrap/package.js: -------------------------------------------------------------------------------- 1 | // package metadata file for Meteor.js 2 | 3 | Package.describe({ 4 | name: 'twbs:bootstrap', // http://atmospherejs.com/twbs/bootstrap 5 | summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.', 6 | version: '3.3.4', 7 | git: 'https://github.com/twbs/bootstrap.git' 8 | }); 9 | 10 | Package.onUse(function (api) { 11 | api.versionsFrom('METEOR@1.0'); 12 | api.use('jquery', 'client'); 13 | api.addFiles([ 14 | 'dist/fonts/glyphicons-halflings-regular.eot', 15 | 'dist/fonts/glyphicons-halflings-regular.svg', 16 | 'dist/fonts/glyphicons-halflings-regular.ttf', 17 | 'dist/fonts/glyphicons-halflings-regular.woff', 18 | 'dist/fonts/glyphicons-halflings-regular.woff2', 19 | 'dist/css/bootstrap.css', 20 | 'dist/js/bootstrap.js', 21 | ], 'client'); 22 | }); 23 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/.syslinux.cfg.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/tftp/boot-screens/.syslinux.cfg.swp -------------------------------------------------------------------------------- /app/tftp/boot-screens/adtxt.cfg: -------------------------------------------------------------------------------- 1 | label expert 2 | menu label ^Expert install 3 | kernel coreos-installer/linux 4 | append priority=low vga=788 initrd=coreos-installer/initrd.gz -- 5 | include coreos-installer/boot-screens/rqtxt.cfg 6 | label auto 7 | menu label ^Automated install 8 | kernel coreos-installer/linux 9 | append auto=true priority=critical vga=788 initrd=coreos-installer/initrd.gz -- quiet 10 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/exithelp.cfg: -------------------------------------------------------------------------------- 1 | label menu 2 | kernel coreos-installer/boot-screens/vesamenu.c32 3 | config coreos-installer/boot-screens/syslinux.cfg 4 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/f1.txt: -------------------------------------------------------------------------------- 1 |  0fWelcome to Debian GNU/Linux!07 09F107 2 | 3 | This is a Debian 7 (wheezy) installation netboot image. 4 | It was built on 20130613+deb7u2+b4. 5 | 6 | 0fHELP INDEX07 7 | 8 | 0fKEY TOPIC07 9 | 10 | <09F107> This page, the help index. 11 | <09F207> Prerequisites for installing Debian. 12 | <09F307> Boot methods for special ways of using this netboot image 13 | <09F407> Additional boot methods; rescue mode. 14 | <09F507> Special boot parameters, overview. 15 | <09F607> Special boot parameters for special machines. 16 | <09F707> Special boot parameters for selected disk controllers. 17 | <09F807> Special boot parameters for the install system. 18 | <09F907> How to get help. 19 | <09F1007> Copyrights and warranties. 20 |  21 | For F1-F9 type control and F then the digit 1-9 22 | For F10 type control and F then the digit 0 23 |  24 | 25 | Press F2 through F10 for details, or ENTER to -------------------------------------------------------------------------------- /app/tftp/boot-screens/f10.txt: -------------------------------------------------------------------------------- 1 |  0fCOPYRIGHTS AND WARRANTIES07 09F1007 2 | 3 | Debian GNU/Linux is Copyright (C) 1993-2009 Software in the Public Interest, 4 | and others. 5 | 6 | The Debian GNU/Linux system is freely redistributable. After installation, 7 | the exact distribution terms for each package are described in the 8 | corresponding file /usr/share/doc/0bpackagename07/copyright. 9 | 10 | Debian GNU/Linux comes with 0fABSOLUTELY NO WARRANTY07, to the extent 11 | permitted by applicable law. 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | Press F1control and F then 1 for the help index, or ENTER to -------------------------------------------------------------------------------- /app/tftp/boot-screens/f2.txt: -------------------------------------------------------------------------------- 1 |  0fPREREQUISITES FOR INSTALLING DEBIAN07 09F207 2 | 3 | You must have at least 44 megabytes of RAM to use this Debian installer. 4 | 5 | You should have space on your hard disk to create a new disk partition 6 | of at least 500 megabytes to install the base system. You'll need more 7 | disk space to install additional packages, depending on what you wish 8 | to do with your new Debian system. 9 | 10 | See the Installation Guide or the FAQ for more information; both 11 | documents are available at the Debian web site, 0fhttp://www.debian.org/07 12 | 13 | Thank you for choosing Debian! 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | Press F1control and F then 1 for the help index, or ENTER to -------------------------------------------------------------------------------- /app/tftp/boot-screens/f3.txt: -------------------------------------------------------------------------------- 1 |  0fBOOT METHODS07 09F307 2 | 3 | 0fAvailable boot methods:07 4 | 5 | 0finstall07 6 | Start the installation -- this is the default netboot image install. 7 | 0fexpert07 8 | Start the installation in expert mode, for maximum control. 9 | 10 | 11 | 12 | 13 | 14 | To use one of these boot methods, type it at the prompt, optionally 15 | followed by any boot parameters. For example: 16 | boot: install acpi=off 17 | 18 | If unsure, you should use the default boot method, with no special 19 | parameters, by simply pressing enter at the boot prompt. 20 | 21 | Except in expert mode, non-critical kernel boot messages are suppressed. 22 | 23 | Press F1control and F then 1 for the help index, or ENTER to -------------------------------------------------------------------------------- /app/tftp/boot-screens/f4.txt: -------------------------------------------------------------------------------- 1 |  0fRESCUE MODE07 09F407 2 | 3 | 0fUse one of these boot methods to rescue an existing install:07 4 | 5 | 0frescue07 6 | Boot into rescue mode. 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | To use one of these boot methods, type it at the prompt, optionally 15 | followed by any boot parameters. For example: 16 | boot: rescue acpi=off 17 | 18 | 19 | 20 | 21 | 22 | 23 | Press F1control and F then 1 for the help index, or ENTER to -------------------------------------------------------------------------------- /app/tftp/boot-screens/f5.txt: -------------------------------------------------------------------------------- 1 |  0fSPECIAL BOOT PARAMETERS - OVERVIEW07 09F507 2 | 3 | On a few systems, you may need to specify a parameter at the 0fboot:07 4 | prompt in order to boot the system. For example, Linux may not be able 5 | to autodetect your hardware, and you may need to explicitly specify 6 | its location or type for it to be recognized. 7 | 8 | For more information about what boot parameters you can use, press: 9 | 10 | <09F607> -- boot parameters for special machines 11 | <09F707> -- boot parameters for various disk controllers 12 | <09F807> -- boot parameters understood by the install system 13 | 14 | Note that to specify a parameter for a particular kernel module, use the form 15 | module.param=value, for example: libata.atapi_enabled=1 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | Press F1control and F then 1 for the help index, or ENTER to -------------------------------------------------------------------------------- /app/tftp/boot-screens/f7.txt: -------------------------------------------------------------------------------- 1 |  0fSPECIAL BOOT PARAMETERS - VARIOUS DISK DRIVES07 09F707 2 | 3 | You can use the following boot parameters at the 0fboot:07 prompt, 4 | in combination with the boot method (see <09F307>). 5 | 0f 6 | HARDWARE PARAMETER TO SPECIFY07 7 | Adaptec 151x, 152x 0faha152x.aha152x=0biobase07[0f,0birq07[0f,0bscsi-id07[0f,0breconnect07]]] 8 | Adaptec 1542 0faha1542.aha1542=0biobase07[0f,0bbuson0f,0bbusoff07[0f,0bdmaspeed07]] 9 | Adaptec 274x, 284x 0faic7xxx.aic7xxx=no_reset07 (enabled if non-zero) 10 | BusLogic SCSI Hosts 0fBusLogic.BusLogic=0biobase07 11 | Certain DELL machines 0faic7xxx.aic7xxx=no_probe07 12 | 13 | This list is incomplete, see the kernel's kernel-parameters.txt file 14 | for more. 15 | 16 | 17 | 18 | 19 | 20 | For example: 21 | boot: install aic7xxx.aic7xxx=no_probe 22 | 23 | Press F1control and F then 1 for the help index, or ENTER to -------------------------------------------------------------------------------- /app/tftp/boot-screens/f8.txt: -------------------------------------------------------------------------------- 1 |  0fSPECIAL BOOT PARAMETERS - INSTALLATION SYSTEM07 09F807 2 | 3 | You can use the following boot parameters at the 0fboot:07 prompt, 4 | in combination with the boot method (see <09F307>). These parameters 5 | control how the installer works. 6 | 0f 7 | RESULT PARAMETER07 8 | Disable framebuffer 0fvga=normal fb=false07 9 | Don't start PCMCIA 0fhw-detect/start_pcmcia=false07 10 | Force static network config 0fnetcfg/disable_dhcp=true07 11 | Set keyboard map 0fbootkbd=es07 12 | Select the kde or xfce desktops 0fdesktop=kde07 13 | 14 | Accessibility options (last 2 options not available for all images): 15 | Use high contrast theme 0ftheme=dark07 16 | Use Braille tty 0fbrltty=driver,device,texttable07 17 | Use Speakup 0fspeakup.synth=driver07 18 | 19 | 20 | For example: 21 | boot: install vga=normal fb=false 22 | 23 | Press F1control and F then 1 for the help index, or ENTER to -------------------------------------------------------------------------------- /app/tftp/boot-screens/f9.txt: -------------------------------------------------------------------------------- 1 |  0fGETTING HELP07 09F907 2 | 3 | If you can't install Debian, don't despair! The Debian team is ready to 4 | help you! We are especially interested in hearing about installation 5 | problems, because in general they don't happen to only 0fone07 person. 6 | We've either already heard about your particular problem and can dispense a 7 | quick fix, or we would like to hear about it and work through it with you, 8 | and the next user who comes up with the same problem will profit from your 9 | experience! 10 | 11 | See the Installation Guide or the FAQ for more information; both 12 | documents are available at the Debian web site, 0fhttp://www.debian.org/07 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | Press F1control and F then 1 for the help index, or ENTER to -------------------------------------------------------------------------------- /app/tftp/boot-screens/kde/adtxt.cfg: -------------------------------------------------------------------------------- 1 | label expert 2 | menu label ^Expert install 3 | kernel coreos-installer/linux 4 | append desktop=kde priority=low vga=788 initrd=coreos-installer/initrd.gz -- 5 | include coreos-installer/boot-screens/rqtxt.cfg 6 | label auto 7 | menu label ^Automated install 8 | kernel coreos-installer/linux 9 | append desktop=kde auto=true priority=critical vga=788 initrd=coreos-installer/initrd.gz -- quiet 10 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/kde/adtxtdt.cfg: -------------------------------------------------------------------------------- 1 | label expert-kde 2 | menu label ^Expert install 3 | kernel coreos-installer/linux 4 | append desktop=kde priority=low vga=788 initrd=coreos-installer/initrd.gz -- 5 | label auto-kde 6 | menu label ^Automated install 7 | kernel coreos-installer/linux 8 | append desktop=kde auto=true priority=critical vga=788 initrd=coreos-installer/initrd.gz -- quiet 9 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/kde/menu.cfg: -------------------------------------------------------------------------------- 1 | include coreos-installer/boot-screens/kde/txtdt.cfg 2 | include coreos-installer/boot-screens/kde/amdtxtdt.cfg 3 | include coreos-installer/boot-screens/kde/gtkdt.cfg 4 | include coreos-installer/boot-screens/kde/amdgtkdt.cfg 5 | menu begin advanced-kde 6 | menu label Advanced options 7 | menu title KDE advanced options 8 | include coreos-installer/boot-screens/stdmenu.cfg 9 | label dtmenu-kde 10 | menu label ^Back.. 11 | menu exit 12 | include coreos-installer/boot-screens/kde/adtxtdt.cfg 13 | include coreos-installer/boot-screens/kde/amdatdt.cfg 14 | include coreos-installer/boot-screens/kde/adgtkdt.cfg 15 | include coreos-installer/boot-screens/kde/amdagdt.cfg 16 | menu end 17 | label help-kde 18 | menu label ^Help 19 | text help 20 | Display help screens; type 'menu' at boot prompt to return to this menu 21 | endtext 22 | config coreos-installer/boot-screens/kde/prompt.cfg 23 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/kde/prmenu.cfg: -------------------------------------------------------------------------------- 1 | include coreos-installer/boot-screens/kde/txt.cfg 2 | include coreos-installer/boot-screens/kde/amdtxt.cfg 3 | include coreos-installer/boot-screens/kde/gtk.cfg 4 | include coreos-installer/boot-screens/kde/amdgtk.cfg 5 | include coreos-installer/boot-screens/kde/adtxt.cfg 6 | include coreos-installer/boot-screens/kde/amdadtxt.cfg 7 | include coreos-installer/boot-screens/kde/adgtk.cfg 8 | include coreos-installer/boot-screens/kde/amdadgtk.cfg 9 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/kde/prompt.cfg: -------------------------------------------------------------------------------- 1 | prompt 1 2 | display coreos-installer/boot-screens/f1.txt 3 | timeout 0 4 | include coreos-installer/boot-screens/kde/prmenu.cfg 5 | default install 6 | include coreos-installer/boot-screens/exithelp.cfg 7 | 8 | f1 coreos-installer/boot-screens/f1.txt 9 | f2 coreos-installer/boot-screens/f2.txt 10 | f3 coreos-installer/boot-screens/f3.txt 11 | f4 coreos-installer/boot-screens/f4.txt 12 | f5 coreos-installer/boot-screens/f5.txt 13 | f6 coreos-installer/boot-screens/f6.txt 14 | f7 coreos-installer/boot-screens/f7.txt 15 | f8 coreos-installer/boot-screens/f8.txt 16 | f9 coreos-installer/boot-screens/f9.txt 17 | f0 coreos-installer/boot-screens/f10.txt 18 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/kde/txt.cfg: -------------------------------------------------------------------------------- 1 | default install 2 | label install 3 | menu label ^Install 4 | menu default 5 | kernel coreos-installer/linux 6 | append desktop=kde vga=788 initrd=coreos-installer/initrd.gz -- quiet 7 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/kde/txtdt.cfg: -------------------------------------------------------------------------------- 1 | #default install 2 | label install-kde 3 | menu label ^Install 4 | menu default 5 | kernel coreos-installer/linux 6 | append desktop=kde vga=788 initrd=coreos-installer/initrd.gz -- quiet 7 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/lxde/adtxt.cfg: -------------------------------------------------------------------------------- 1 | label expert 2 | menu label ^Expert install 3 | kernel coreos-installer/linux 4 | append desktop=lxde priority=low vga=788 initrd=coreos-installer/initrd.gz -- 5 | include coreos-installer/boot-screens/rqtxt.cfg 6 | label auto 7 | menu label ^Automated install 8 | kernel coreos-installer/linux 9 | append desktop=lxde auto=true priority=critical vga=788 initrd=coreos-installer/initrd.gz -- quiet 10 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/lxde/adtxtdt.cfg: -------------------------------------------------------------------------------- 1 | label expert-lxde 2 | menu label ^Expert install 3 | kernel coreos-installer/linux 4 | append desktop=lxde priority=low vga=788 initrd=coreos-installer/initrd.gz -- 5 | label auto-lxde 6 | menu label ^Automated install 7 | kernel coreos-installer/linux 8 | append desktop=lxde auto=true priority=critical vga=788 initrd=coreos-installer/initrd.gz -- quiet 9 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/lxde/menu.cfg: -------------------------------------------------------------------------------- 1 | include coreos-installer/boot-screens/lxde/txtdt.cfg 2 | include coreos-installer/boot-screens/lxde/amdtxtdt.cfg 3 | include coreos-installer/boot-screens/lxde/gtkdt.cfg 4 | include coreos-installer/boot-screens/lxde/amdgtkdt.cfg 5 | menu begin advanced-lxde 6 | menu label Advanced options 7 | menu title LXDE advanced options 8 | include coreos-installer/boot-screens/stdmenu.cfg 9 | label dtmenu-lxde 10 | menu label ^Back.. 11 | menu exit 12 | include coreos-installer/boot-screens/lxde/adtxtdt.cfg 13 | include coreos-installer/boot-screens/lxde/amdatdt.cfg 14 | include coreos-installer/boot-screens/lxde/adgtkdt.cfg 15 | include coreos-installer/boot-screens/lxde/amdagdt.cfg 16 | menu end 17 | label help-lxde 18 | menu label ^Help 19 | text help 20 | Display help screens; type 'menu' at boot prompt to return to this menu 21 | endtext 22 | config coreos-installer/boot-screens/lxde/prompt.cfg 23 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/lxde/prmenu.cfg: -------------------------------------------------------------------------------- 1 | include coreos-installer/boot-screens/lxde/txt.cfg 2 | include coreos-installer/boot-screens/lxde/amdtxt.cfg 3 | include coreos-installer/boot-screens/lxde/gtk.cfg 4 | include coreos-installer/boot-screens/lxde/amdgtk.cfg 5 | include coreos-installer/boot-screens/lxde/adtxt.cfg 6 | include coreos-installer/boot-screens/lxde/amdadtxt.cfg 7 | include coreos-installer/boot-screens/lxde/adgtk.cfg 8 | include coreos-installer/boot-screens/lxde/amdadgtk.cfg 9 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/lxde/prompt.cfg: -------------------------------------------------------------------------------- 1 | prompt 1 2 | display coreos-installer/boot-screens/f1.txt 3 | timeout 0 4 | include coreos-installer/boot-screens/lxde/prmenu.cfg 5 | default install 6 | include coreos-installer/boot-screens/exithelp.cfg 7 | 8 | f1 coreos-installer/boot-screens/f1.txt 9 | f2 coreos-installer/boot-screens/f2.txt 10 | f3 coreos-installer/boot-screens/f3.txt 11 | f4 coreos-installer/boot-screens/f4.txt 12 | f5 coreos-installer/boot-screens/f5.txt 13 | f6 coreos-installer/boot-screens/f6.txt 14 | f7 coreos-installer/boot-screens/f7.txt 15 | f8 coreos-installer/boot-screens/f8.txt 16 | f9 coreos-installer/boot-screens/f9.txt 17 | f0 coreos-installer/boot-screens/f10.txt 18 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/lxde/txt.cfg: -------------------------------------------------------------------------------- 1 | default install 2 | label install 3 | menu label ^Install 4 | menu default 5 | kernel coreos-installer/linux 6 | append desktop=lxde vga=788 initrd=coreos-installer/initrd.gz -- quiet 7 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/lxde/txtdt.cfg: -------------------------------------------------------------------------------- 1 | #default install 2 | label install-lxde 3 | menu label ^Install 4 | menu default 5 | kernel coreos-installer/linux 6 | append desktop=lxde vga=788 initrd=coreos-installer/initrd.gz -- quiet 7 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/prompt.cfg: -------------------------------------------------------------------------------- 1 | prompt 1 2 | display coreos-installer/boot-screens/f1.txt 3 | timeout 0 4 | include coreos-installer/boot-screens/menu.cfg 5 | include coreos-installer/boot-screens/exithelp.cfg 6 | 7 | f1 coreos-installer/boot-screens/f1.txt 8 | f2 coreos-installer/boot-screens/f2.txt 9 | f3 coreos-installer/boot-screens/f3.txt 10 | f4 coreos-installer/boot-screens/f4.txt 11 | f5 coreos-installer/boot-screens/f5.txt 12 | f6 coreos-installer/boot-screens/f6.txt 13 | f7 coreos-installer/boot-screens/f7.txt 14 | f8 coreos-installer/boot-screens/f8.txt 15 | f9 coreos-installer/boot-screens/f9.txt 16 | f0 coreos-installer/boot-screens/f10.txt 17 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/rqtxt.cfg: -------------------------------------------------------------------------------- 1 | label rescue 2 | menu label ^Rescue mode 3 | kernel coreos-installer/linux 4 | append vga=788 initrd=coreos-installer/initrd.gz rescue/enable=true -- quiet 5 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/spk.cfg: -------------------------------------------------------------------------------- 1 | label installspk 2 | menu label Install with ^speech synthesis 3 | kernel coreos-installer/linux 4 | append vga=788 initrd=coreos-installer/initrd.gz speakup.synth=soft -- quiet 5 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/tftp/boot-screens/splash.png -------------------------------------------------------------------------------- /app/tftp/boot-screens/stdmenu.cfg: -------------------------------------------------------------------------------- 1 | menu background coreos-installer/boot-screens/splash.png 2 | menu color title * #FFFFFFFF * 3 | menu color border * #00000000 #00000000 none 4 | menu color sel * #ffffffff #76a1d0ff * 5 | menu color hotsel 1;7;37;40 #ffffffff #76a1d0ff * 6 | menu color tabmsg * #ffffffff #00000000 * 7 | menu color help 37;40 #ffdddd00 #00000000 none 8 | # XXX When adjusting vshift, take care that rows is set to a small 9 | # enough value so any possible menu will fit on the screen, 10 | # rather than falling off the bottom. 11 | menu vshift 12 12 | menu rows 10 13 | menu helpmsgrow 15 14 | # The command line must be at least one line from the bottom. 15 | menu cmdlinerow 16 16 | menu timeoutrow 16 17 | menu tabmsgrow 18 18 | menu tabmsg Press ENTER to boot or TAB to edit a menu entry 19 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/txt.cfg: -------------------------------------------------------------------------------- 1 | default install 2 | label install 3 | menu label ^Install 4 | menu default 5 | kernel coreos-installer/linux 6 | append vga=788 initrd=coreos-installer/initrd.gz -- quiet 7 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/vesamenu.c32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/tftp/boot-screens/vesamenu.c32 -------------------------------------------------------------------------------- /app/tftp/boot-screens/xfce/adtxt.cfg: -------------------------------------------------------------------------------- 1 | label expert 2 | menu label ^Expert install 3 | kernel coreos-installer/linux 4 | append desktop=xfce priority=low vga=788 initrd=coreos-installer/initrd.gz -- 5 | include coreos-installer/boot-screens/rqtxt.cfg 6 | label auto 7 | menu label ^Automated install 8 | kernel coreos-installer/linux 9 | append desktop=xfce auto=true priority=critical vga=788 initrd=coreos-installer/initrd.gz -- quiet 10 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/xfce/adtxtdt.cfg: -------------------------------------------------------------------------------- 1 | label expert-xfce 2 | menu label ^Expert install 3 | kernel coreos-installer/linux 4 | append desktop=xfce priority=low vga=788 initrd=coreos-installer/initrd.gz -- 5 | label auto-xfce 6 | menu label ^Automated install 7 | kernel coreos-installer/linux 8 | append desktop=xfce auto=true priority=critical vga=788 initrd=coreos-installer/initrd.gz -- quiet 9 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/xfce/menu.cfg: -------------------------------------------------------------------------------- 1 | include coreos-installer/boot-screens/xfce/txtdt.cfg 2 | include coreos-installer/boot-screens/xfce/amdtxtdt.cfg 3 | include coreos-installer/boot-screens/xfce/gtkdt.cfg 4 | include coreos-installer/boot-screens/xfce/amdgtkdt.cfg 5 | menu begin advanced-xfce 6 | menu label Advanced options 7 | menu title Xfce advanced options 8 | include coreos-installer/boot-screens/stdmenu.cfg 9 | label dtmenu-xfce 10 | menu label ^Back.. 11 | menu exit 12 | include coreos-installer/boot-screens/xfce/adtxtdt.cfg 13 | include coreos-installer/boot-screens/xfce/amdatdt.cfg 14 | include coreos-installer/boot-screens/xfce/adgtkdt.cfg 15 | include coreos-installer/boot-screens/xfce/amdagdt.cfg 16 | menu end 17 | label help-xfce 18 | menu label ^Help 19 | text help 20 | Display help screens; type 'menu' at boot prompt to return to this menu 21 | endtext 22 | config coreos-installer/boot-screens/xfce/prompt.cfg 23 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/xfce/prmenu.cfg: -------------------------------------------------------------------------------- 1 | include coreos-installer/boot-screens/xfce/txt.cfg 2 | include coreos-installer/boot-screens/xfce/amdtxt.cfg 3 | include coreos-installer/boot-screens/xfce/gtk.cfg 4 | include coreos-installer/boot-screens/xfce/amdgtk.cfg 5 | include coreos-installer/boot-screens/xfce/adtxt.cfg 6 | include coreos-installer/boot-screens/xfce/amdadtxt.cfg 7 | include coreos-installer/boot-screens/xfce/adgtk.cfg 8 | include coreos-installer/boot-screens/xfce/amdadgtk.cfg 9 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/xfce/prompt.cfg: -------------------------------------------------------------------------------- 1 | prompt 1 2 | display coreos-installer/boot-screens/f1.txt 3 | timeout 0 4 | include coreos-installer/boot-screens/xfce/prmenu.cfg 5 | default install 6 | include coreos-installer/boot-screens/exithelp.cfg 7 | 8 | f1 coreos-installer/boot-screens/f1.txt 9 | f2 coreos-installer/boot-screens/f2.txt 10 | f3 coreos-installer/boot-screens/f3.txt 11 | f4 coreos-installer/boot-screens/f4.txt 12 | f5 coreos-installer/boot-screens/f5.txt 13 | f6 coreos-installer/boot-screens/f6.txt 14 | f7 coreos-installer/boot-screens/f7.txt 15 | f8 coreos-installer/boot-screens/f8.txt 16 | f9 coreos-installer/boot-screens/f9.txt 17 | f0 coreos-installer/boot-screens/f10.txt 18 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/xfce/txt.cfg: -------------------------------------------------------------------------------- 1 | default install 2 | label install 3 | menu label ^Install 4 | menu default 5 | kernel coreos-installer/linux 6 | append desktop=xfce vga=788 initrd=coreos-installer/initrd.gz -- quiet 7 | -------------------------------------------------------------------------------- /app/tftp/boot-screens/xfce/txtdt.cfg: -------------------------------------------------------------------------------- 1 | #default install 2 | label install-xfce 3 | menu label ^Install 4 | menu default 5 | kernel coreos-installer/linux 6 | append desktop=xfce vga=788 initrd=coreos-installer/initrd.gz -- quiet 7 | -------------------------------------------------------------------------------- /app/tftp/pxelinux.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goyoo/yoo-installer/0f8df9d7102cda13d7637ae3a9c9162b1b5e95ee/app/tftp/pxelinux.0 -------------------------------------------------------------------------------- /app/views/about.ejs: -------------------------------------------------------------------------------- 1 | 2 |
3 |

4 | About 5 | 6 |

7 | 10 |
11 | 12 | 13 | 14 |
15 |
16 | 17 |
18 |
19 |
20 |

21 |
22 |
23 | Souce Code: Yoo Cloud 24 |
25 |
26 |
27 |
28 |
-------------------------------------------------------------------------------- /app/views/error.ejs: -------------------------------------------------------------------------------- 1 |

<%= message %>

2 |

<%= error.status %>

3 |
<%= error.stack %>
4 | -------------------------------------------------------------------------------- /app/views/header.ejs: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 10 | 11 | 12 | 24 |
25 | -------------------------------------------------------------------------------- /app/views/index.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <%= title %> 5 | 6 | 7 | 8 |

<%= title %>

9 |

Welcome to <%= title %>

10 | 11 | 12 | -------------------------------------------------------------------------------- /app/views/logs.ejs: -------------------------------------------------------------------------------- 1 | 2 |
3 |

4 | Logs 5 | 6 |

7 | 10 |
11 | 12 | 13 | 14 |
15 |
16 |
17 |
18 |
19 |

20 |
21 |
22 | 23 | 24 |
25 |
26 |
27 |
28 |
29 | 30 | -------------------------------------------------------------------------------- /app/views/utils/networking.ejs: -------------------------------------------------------------------------------- 1 | # this script is auto generated by yoo cloud service. 2 | 3 | source /etc/network/interfaces.d/* 4 | 5 | auto lo 6 | iface lo inet loopback 7 | 8 | auto eth1 9 | allow-hotplug eth1 10 | iface eth1 inet static 11 | address <%= requestIP%> 12 | netmask 255.255.0.0 13 | gateway 10.12.0.1 -------------------------------------------------------------------------------- /app/views/yml/develop-etcd.ejs: -------------------------------------------------------------------------------- 1 | #cloud-config 2 | hostname: <%= hostname%> 3 | ssh_authorized_keys: 4 | <% sshAuthorizedKeys.forEach(function(key){%> - <%= key%> 5 | <%})%> 6 | 7 | coreos: 8 | etcd: 9 | addr: <%= developEtcdHost %>:4001 10 | units: 11 | - name: etcd.service 12 | command: start 13 | - name: 00-en0.network 14 | runtime: true 15 | content: | 16 | [Match] 17 | Name=en* 18 | 19 | [Network] 20 | DNS=114.114.114.114 21 | Address=<%= developEtcdHost %>/24 22 | Gateway=<%= developEtcdGateway %> 23 | 24 | 25 | -------------------------------------------------------------------------------- /app/views/yml/develop-worker.ejs: -------------------------------------------------------------------------------- 1 | #cloud-config 2 | hostname: <%= hostname%> 3 | ssh_authorized_keys: 4 | <% sshAuthorizedKeys.forEach(function(key){%> - <%= key%> 5 | <%})%> 6 | 7 | coreos: 8 | fleet: 9 | etcd_servers: "http://<%= developEtcdHost %>:4001" 10 | units: 11 | - name: fleet.service 12 | command: start 13 | write_files: 14 | - path: /etc/profile.d/etcdctl.sh 15 | permissions: 0644 16 | owner: core 17 | content: | 18 | # configure etcdctl to work with our etcd servers set above 19 | export ETCDCTL_PEERS="http://<%= developEtcdHost %>:4001" 20 | - path: /etc/profile.d/fleetctl.sh 21 | permissions: 0644 22 | owner: core 23 | content: | 24 | # configure fleetctl to work with our etcd servers set above 25 | export FLEETCTL_ENDPOINT=unix:///var/run/fleet.sock 26 | export FLEETCTL_EXPERIMENTAL_API=true 27 | 28 | 29 | -------------------------------------------------------------------------------- /app/views/yml/pxe.ejs: -------------------------------------------------------------------------------- 1 | #cloud-config 2 | ## PXE cloud config file 3 | ## http://127.0.0.1/config/production-central/pxe.yml 4 | ## http://127.0.0.1/config/*/pxe.yml 5 | hostname: <%= hostname%> 6 | ssh_authorized_keys: 7 | <% sshAuthorizedKeys.forEach(function(key){%> - <%= key%> 8 | <%})%> 9 | coreos: 10 | units: 11 | - name: setup.service 12 | command: start 13 | content: | 14 | [Unit] 15 | Description=setup service 16 | [Service] 17 | TimeoutStartSec=0 18 | ExecStart=/bin/sh -c "echo 'started'>> /tmp/test.log;sleep 5; curl -sL http://<%= httpHost%>/config/<%= type%>/pxe.sh | sudo bash -" -------------------------------------------------------------------------------- /app/views/yml/pxe.ejs.bak: -------------------------------------------------------------------------------- 1 | #cloud-config 2 | ## PXE cloud config file 3 | ## http://127.0.0.1/config/production-central/pxe.yml 4 | ## http://127.0.0.1/config/*/pxe.yml 5 | hostname: <%= hostname%> 6 | ssh_authorized_keys: 7 | <% sshAuthorizedKeys.forEach(function(key){%> - <%= key%> 8 | <%})%> 9 | coreos: 10 | units: 11 | - name: etcd.service 12 | command: start 13 | - name: fleet.service 14 | command: start 15 | - name: setup.service 16 | command: start 17 | content: | 18 | [Unit] 19 | Description=setup service 20 | After=setup.service 21 | Requires=setup.service 22 | [Service] 23 | TimeoutStartSec=0 24 | ExecStart=/bin/sh -c "echo 'started'>> /tmp/test.log; curl -sL http://<%= httpHost%>/config/<%= type%>/pxe.sh | sudo bash -" 25 | [Unit] 26 | Description=etcd 27 | Conflicts=etcd2.service 28 | 29 | [Service] 30 | User=etcd 31 | PermissionsStartOnly=true 32 | Environment=ETCD_DATA_DIR=/var/lib/etcd 33 | Environment=ETCD_NAME=%m 34 | ExecStart=/usr/bin/etcd 35 | Restart=always 36 | RestartSec=10s 37 | LimitNOFILE=40000 -------------------------------------------------------------------------------- /app/views/yml/simple.ejs: -------------------------------------------------------------------------------- 1 | #cloud-config 2 | hostname: <%= hostname%> 3 | ssh_authorized_keys: 4 | <% sshAuthorizedKeys.forEach(function(key){%> - <%= key%> 5 | <%})%> 6 | hostname: coreos 7 | coreos: 8 | units: 9 | - name: etcd.service 10 | command: start 11 | - name: fleet.service 12 | command: start -------------------------------------------------------------------------------- /app/views/yml/small-cluster.ejs: -------------------------------------------------------------------------------- 1 | #cloud-config 2 | hostname: <%= hostname%> 3 | ssh_authorized_keys: 4 | <% sshAuthorizedKeys.forEach(function(key){%> - <%= key%> 5 | <%})%> 6 | 7 | coreos: 8 | etcd: 9 | discovery: <%= discoveryURL %> 10 | addr: <%= requestIP %>:4001 11 | peer-addr: <%= requestIP %>:7001 12 | fleet: 13 | public-ip: <%= requestIP %> 14 | metadata: region=beijing 15 | units: 16 | - name: etcd.service 17 | command: start 18 | - name: fleet.service 19 | command: start 20 | -------------------------------------------------------------------------------- /app/views/yml_fleet/develop-etcd.ejs: -------------------------------------------------------------------------------- 1 | #cloud-config 2 | hostname: <%= hostname%> 3 | ssh_authorized_keys: 4 | <% sshAuthorizedKeys.forEach(function(key){%> - <%= key%> 5 | <%})%> 6 | 7 | coreos: 8 | etcd: 9 | addr: <%= developEtcdHost %>:4001 10 | units: 11 | - name: etcd.service 12 | command: start 13 | - name: 00-en0.network 14 | runtime: true 15 | content: | 16 | [Match] 17 | Name=en* 18 | 19 | [Network] 20 | DNS=114.114.114.114 21 | Address=<%= developEtcdHost %>/24 22 | Gateway=<%= developEtcdGateway %> 23 | 24 | 25 | -------------------------------------------------------------------------------- /app/views/yml_fleet/develop-worker.ejs: -------------------------------------------------------------------------------- 1 | #cloud-config 2 | hostname: <%= hostname%> 3 | ssh_authorized_keys: 4 | <% sshAuthorizedKeys.forEach(function(key){%> - <%= key%> 5 | <%})%> 6 | 7 | coreos: 8 | fleet: 9 | etcd_servers: "http://<%= developEtcdHost %>:4001" 10 | units: 11 | - name: fleet.service 12 | command: start 13 | write_files: 14 | - path: /etc/profile.d/etcdctl.sh 15 | permissions: 0644 16 | owner: core 17 | content: | 18 | # configure etcdctl to work with our etcd servers set above 19 | export ETCDCTL_PEERS="http://<%= developEtcdHost %>:4001" 20 | - path: /etc/profile.d/fleetctl.sh 21 | permissions: 0644 22 | owner: core 23 | content: | 24 | # configure fleetctl to work with our etcd servers set above 25 | export FLEETCTL_ENDPOINT=unix:///var/run/fleet.sock 26 | export FLEETCTL_EXPERIMENTAL_API=true 27 | 28 | 29 | -------------------------------------------------------------------------------- /app/views/yml_fleet/pxe.ejs: -------------------------------------------------------------------------------- 1 | #cloud-config 2 | ## PXE cloud config file 3 | hostname: <%= hostname%> 4 | ssh_authorized_keys: 5 | <% sshAuthorizedKeys.forEach(function(key){%> - <%= key%> 6 | <%})%> 7 | coreos: 8 | units: 9 | - name: etcd.service 10 | command: start 11 | - name: fleet.service 12 | command: start 13 | - name: setup.service 14 | command: start 15 | content: | 16 | [Unit] 17 | Description=setup service 18 | After=setup.service 19 | Requires=setup.service 20 | [Service] 21 | TimeoutStartSec=0 22 | ExecStart=/bin/sh -c "echo 'started'>> /tmp/test.log; curl -sL http://<%= httpHost%>/config/<%= type%>/pxe.sh | sudo bash -" 23 | [Unit] 24 | Description=etcd 25 | Conflicts=etcd2.service 26 | 27 | [Service] 28 | User=etcd 29 | PermissionsStartOnly=true 30 | Environment=ETCD_DATA_DIR=/var/lib/etcd 31 | Environment=ETCD_NAME=%m 32 | ExecStart=/usr/bin/etcd 33 | Restart=always 34 | RestartSec=10s 35 | LimitNOFILE=40000 -------------------------------------------------------------------------------- /app/views/yml_fleet/simple.ejs: -------------------------------------------------------------------------------- 1 | #cloud-config 2 | hostname: <%= hostname%> 3 | ssh_authorized_keys: 4 | <% sshAuthorizedKeys.forEach(function(key){%> - <%= key%> 5 | <%})%> 6 | hostname: coreos 7 | coreos: 8 | units: 9 | - name: etcd.service 10 | command: start 11 | - name: fleet.service 12 | command: start -------------------------------------------------------------------------------- /app/views/yml_fleet/small-cluster.ejs: -------------------------------------------------------------------------------- 1 | #cloud-config 2 | hostname: <%= hostname%> 3 | ssh_authorized_keys: 4 | <% sshAuthorizedKeys.forEach(function(key){%> - <%= key%> 5 | <%})%> 6 | 7 | coreos: 8 | etcd: 9 | discovery: <%= discoveryURL %> 10 | addr: <%= requestIP %>:4001 11 | peer-addr: <%= requestIP %>:7001 12 | fleet: 13 | public-ip: <%= requestIP %> 14 | metadata: region=beijing 15 | units: 16 | - name: etcd.service 17 | command: start 18 | - name: fleet.service 19 | command: start 20 | -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by tad on 3/12/15. 3 | */ 4 | 5 | 'use strict'; 6 | 7 | module.exports = { 8 | sshAuthorizedKeys: ["ssh-rsa AtiaLegIjvQgfnWDOGIGeE+vxG3 wptad@tom.com"], 9 | httpHost: "192.168.0.1", 10 | discoveryURL: "https://discovery.etcd.io/e055d84e0207475ad941e087da1c88ce", 11 | developEtcdHost: "192.168.0.200", 12 | developEtcdGateway: "192.168.0.1", 13 | productionEtcdGateway: "10.11.1.254", 14 | productionEtcdServices2379: "http://192.168.0.63:4001,http://192.168.0.62:4001,http://192.168.0.65:4001", 15 | productionEtcdServices2380: "http://192.168.0.63:4001,http://192.168.0.62:4001,http://192.168.0.65:4001", 16 | productionK8sMasterIP: "10.12.1.55", 17 | productionDns: "10.11.1.1" 18 | } -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | exec node /app/ "$@" 5 | -------------------------------------------------------------------------------- /scripts/init.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ## TODO: 3 | ## check environment: docker running? 4 | ## download coreos, k8s files 5 | ## docker pull 6 | --------------------------------------------------------------------------------