├── .gitignore ├── application ├── LICENSE ├── README.md ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── breadcrumbs.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── email.php │ ├── foreign_chars.php │ ├── grocery_crud.php │ ├── hooks.php │ ├── index.html │ ├── ion_auth.php │ ├── memcached.php │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── contributing.md ├── controllers │ ├── auth.php │ └── index.html ├── core │ ├── MY_Loader.php │ ├── MY_Router.php │ └── index.html ├── helpers │ └── index.html ├── hooks │ └── index.html ├── index.html ├── language │ ├── arabic │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── bulgarian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── catalan │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── croatian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── czech │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── danish │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── dutch │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── english │ │ ├── auth_lang.php │ │ ├── index.html │ │ └── ion_auth_lang.php │ ├── estonian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── finnish │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── french │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── german │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── greek │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── hungarian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── index.html │ ├── indonesian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── italian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── japanese │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── korean │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── lithuanian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── norwegian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── persian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── pirate │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── polish │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── portuguese │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── romanian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── russian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── slovak │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── slovenian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── spanish │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── swedish │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── thai │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── turkish │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── ukrainian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── vietnamese │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── zh_cn │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ └── zh_tw │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php ├── libraries │ ├── Bcrypt.php │ ├── Breadcrumbs.php │ ├── Grocery_CRUD.php │ ├── Ion_auth.php │ ├── image_moo.php │ └── index.html ├── logs │ └── index.html ├── migrations │ └── 001_install_ion_auth.php ├── models │ ├── Grocery_crud_model.php │ ├── index.html │ └── ion_auth_model.php ├── modules │ └── main │ │ ├── controllers │ │ ├── Examples.php │ │ ├── Welcome.php │ │ └── index.html │ │ └── views │ │ ├── admin_menu.php │ │ ├── example.php │ │ ├── index.html │ │ ├── main_menu.php │ │ ├── top_nav.php │ │ └── welcome_message.php ├── sql │ ├── ion_auth.mssql.sql │ ├── ion_auth.postgre.sql │ └── ion_auth.sql ├── third_party │ ├── MX │ │ ├── Base.php │ │ ├── Ci.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Modules.php │ │ └── Router.php │ └── index.html ├── userguide │ ├── images │ │ ├── arrow.gif │ │ ├── nav_bg_darker.jpg │ │ ├── nav_separator_darker.jpg │ │ └── nav_toggle_darker.jpg │ ├── index.html │ ├── js │ │ ├── functions.js │ │ └── jquery.min.js │ └── userguide.css └── views │ ├── auth │ ├── change_password.php │ ├── create_group.php │ ├── create_user.php │ ├── deactivate_user.php │ ├── edit_group.php │ ├── edit_user.php │ ├── email │ │ ├── activate.tpl.php │ │ ├── forgot_password.tpl.php │ │ └── new_password.tpl.php │ ├── forgot_password.php │ ├── index.php │ ├── login.php │ ├── main.php │ └── reset_password.php │ ├── errors │ ├── cli │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── html │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ └── index.html │ └── index.html ├── assets ├── adminlte │ ├── .gitignore │ ├── .jshintrc │ ├── Font_Awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.css.map │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── 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 │ │ │ ├── .csslintrc │ │ │ ├── 404_500_errors.less │ │ │ ├── AdminLTE.less │ │ │ ├── alerts.less │ │ │ ├── bootstrap-social.less │ │ │ ├── boxes.less │ │ │ ├── buttons.less │ │ │ ├── callout.less │ │ │ ├── carousel.less │ │ │ ├── control-sidebar.less │ │ │ ├── core.less │ │ │ ├── direct-chat.less │ │ │ ├── dropdown.less │ │ │ ├── forms.less │ │ │ ├── fullcalendar.less │ │ │ ├── header.less │ │ │ ├── info-box.less │ │ │ ├── invoice.less │ │ │ ├── labels.less │ │ │ ├── lockscreen.less │ │ │ ├── login_and_register.less │ │ │ ├── mailbox.less │ │ │ ├── miscellaneous.less │ │ │ ├── mixins.less │ │ │ ├── modal.less │ │ │ ├── navs.less │ │ │ ├── print.less │ │ │ ├── products.less │ │ │ ├── profile.less │ │ │ ├── progress-bars.less │ │ │ ├── select2.less │ │ │ ├── sidebar-mini.less │ │ │ ├── sidebar.less │ │ │ ├── skins │ │ │ ├── _all-skins.less │ │ │ ├── skin-black-light.less │ │ │ ├── skin-black.less │ │ │ ├── skin-blue-light.less │ │ │ ├── skin-blue.less │ │ │ ├── skin-green-light.less │ │ │ ├── skin-green.less │ │ │ ├── skin-purple-light.less │ │ │ ├── skin-purple.less │ │ │ ├── skin-red-light.less │ │ │ ├── skin-red.less │ │ │ ├── skin-yellow-light.less │ │ │ └── skin-yellow.less │ │ │ ├── small-box.less │ │ │ ├── social-widgets.less │ │ │ ├── table.less │ │ │ ├── timeline.less │ │ │ ├── users-list.less │ │ │ └── variables.less │ ├── changelog │ ├── composer.json │ ├── dist │ │ ├── css │ │ │ ├── AdminLTE.css │ │ │ ├── AdminLTE.min.css │ │ │ └── skins │ │ │ │ ├── _all-skins.css │ │ │ │ ├── _all-skins.min.css │ │ │ │ ├── skin-black-light.css │ │ │ │ ├── skin-black-light.min.css │ │ │ │ ├── skin-black.css │ │ │ │ ├── skin-black.min.css │ │ │ │ ├── skin-blue-light.css │ │ │ │ ├── skin-blue-light.min.css │ │ │ │ ├── skin-blue.css │ │ │ │ ├── skin-blue.min.css │ │ │ │ ├── skin-green-light.css │ │ │ │ ├── skin-green-light.min.css │ │ │ │ ├── skin-green.css │ │ │ │ ├── skin-green.min.css │ │ │ │ ├── skin-purple-light.css │ │ │ │ ├── skin-purple-light.min.css │ │ │ │ ├── skin-purple.css │ │ │ │ ├── skin-purple.min.css │ │ │ │ ├── skin-red-light.css │ │ │ │ ├── skin-red-light.min.css │ │ │ │ ├── skin-red.css │ │ │ │ ├── skin-red.min.css │ │ │ │ ├── skin-yellow-light.css │ │ │ │ ├── skin-yellow-light.min.css │ │ │ │ ├── skin-yellow.css │ │ │ │ └── skin-yellow.min.css │ │ ├── img │ │ │ ├── avatar.png │ │ │ ├── avatar04.png │ │ │ ├── avatar2.png │ │ │ ├── avatar3.png │ │ │ ├── avatar5.png │ │ │ ├── boxed-bg.jpg │ │ │ ├── boxed-bg.png │ │ │ ├── credit │ │ │ │ ├── american-express.png │ │ │ │ ├── cirrus.png │ │ │ │ ├── mastercard.png │ │ │ │ ├── mestro.png │ │ │ │ ├── paypal.png │ │ │ │ ├── paypal2.png │ │ │ │ └── visa.png │ │ │ ├── default-50x50.gif │ │ │ ├── icons.png │ │ │ ├── photo1.png │ │ │ ├── photo2.png │ │ │ ├── photo3.jpg │ │ │ ├── photo4.jpg │ │ │ ├── user1-128x128.jpg │ │ │ ├── user2-160x160.jpg │ │ │ ├── user3-128x128.jpg │ │ │ ├── user4-128x128.jpg │ │ │ ├── user5-128x128.jpg │ │ │ ├── user6-128x128.jpg │ │ │ ├── user7-128x128.jpg │ │ │ └── user8-128x128.jpg │ │ └── js │ │ │ ├── app.js │ │ │ ├── app.min.js │ │ │ ├── demo.js │ │ │ └── pages │ │ │ ├── dashboard.js │ │ │ └── dashboard2.js │ ├── documentation │ │ ├── build │ │ │ ├── include │ │ │ │ ├── adminlte-options.html │ │ │ │ ├── advice.html │ │ │ │ ├── browsers.html │ │ │ │ ├── components.html │ │ │ │ ├── dependencies.html │ │ │ │ ├── download.html │ │ │ │ ├── faq.html │ │ │ │ ├── implementations.html │ │ │ │ ├── introduction.html │ │ │ │ ├── layout.html │ │ │ │ ├── license.html │ │ │ │ ├── plugins.html │ │ │ │ └── upgrade.html │ │ │ └── index.html │ │ ├── docs.js │ │ ├── index.html │ │ └── style.css │ ├── font-awesome.min.css │ ├── index.html │ ├── index2.html │ ├── ionicons.min.css │ ├── ionicons │ │ ├── css │ │ │ ├── ionicons.css │ │ │ └── ionicons.min.css │ │ └── fonts │ │ │ ├── ionicons.eot │ │ │ ├── ionicons.svg │ │ │ ├── ionicons.ttf │ │ │ └── ionicons.woff │ ├── moment.min.js │ ├── package.json │ ├── pages │ │ ├── UI │ │ │ ├── buttons.html │ │ │ ├── general.html │ │ │ ├── icons.html │ │ │ ├── modals.html │ │ │ ├── sliders.html │ │ │ └── timeline.html │ │ ├── calendar.html │ │ ├── charts │ │ │ ├── chartjs.html │ │ │ ├── flot.html │ │ │ ├── inline.html │ │ │ └── morris.html │ │ ├── examples │ │ │ ├── 404.html │ │ │ ├── 500.html │ │ │ ├── blank.html │ │ │ ├── invoice-print.html │ │ │ ├── invoice.html │ │ │ ├── lockscreen.html │ │ │ ├── login.html │ │ │ ├── profile.html │ │ │ └── register.html │ │ ├── forms │ │ │ ├── advanced.html │ │ │ ├── editors.html │ │ │ └── general.html │ │ ├── layout │ │ │ ├── boxed.html │ │ │ ├── collapsed-sidebar.html │ │ │ ├── fixed.html │ │ │ └── top-nav.html │ │ ├── mailbox │ │ │ ├── compose.html │ │ │ ├── mailbox.html │ │ │ └── read-mail.html │ │ ├── tables │ │ │ ├── data.html │ │ │ └── simple.html │ │ └── widgets.html │ ├── plugins │ │ ├── bootstrap-slider │ │ │ ├── bootstrap-slider.js │ │ │ └── slider.css │ │ ├── bootstrap-wysihtml5 │ │ │ ├── bootstrap3-wysihtml5.all.js │ │ │ ├── bootstrap3-wysihtml5.all.min.js │ │ │ ├── bootstrap3-wysihtml5.css │ │ │ └── bootstrap3-wysihtml5.min.css │ │ ├── chartjs │ │ │ ├── Chart.js │ │ │ └── Chart.min.js │ │ ├── ckeditor │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── adapters │ │ │ │ └── jquery.js │ │ │ ├── build-config.js │ │ │ ├── ckeditor.js │ │ │ ├── config.js │ │ │ ├── contents.css │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── a11yhelp │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ └── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── clipboard │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── paste.js │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ ├── fakeobjects │ │ │ │ │ └── images │ │ │ │ │ │ └── spacer.gif │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── image │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── image.js │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── link │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ └── link.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ └── icon.png │ │ │ │ ├── pastefromword │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── scayt │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── toolbar.css │ │ │ │ ├── specialchar │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ └── specialchar.js │ │ │ │ ├── table │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── table.js │ │ │ │ ├── tabletools │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── tableCell.js │ │ │ │ └── wsc │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmp.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ ├── skins │ │ │ │ └── moono │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ ├── dialog_opera.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ │ └── readme.md │ │ │ └── styles.js │ │ ├── colorpicker │ │ │ ├── bootstrap-colorpicker.css │ │ │ ├── bootstrap-colorpicker.js │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ ├── bootstrap-colorpicker.min.js │ │ │ └── img │ │ │ │ ├── alpha-horizontal.png │ │ │ │ ├── alpha.png │ │ │ │ ├── hue-horizontal.png │ │ │ │ ├── hue.png │ │ │ │ └── saturation.png │ │ ├── datatables │ │ │ ├── dataTables.bootstrap.css │ │ │ ├── dataTables.bootstrap.js │ │ │ ├── dataTables.bootstrap.min.js │ │ │ ├── extensions │ │ │ │ ├── AutoFill │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ │ │ └── dataTables.autoFill.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── columns.html │ │ │ │ │ │ ├── complete-callback.html │ │ │ │ │ │ ├── fill-both.html │ │ │ │ │ │ ├── fill-horizontal.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ └── step-callback.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── filler.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ │ │ └── dataTables.autoFill.min.js │ │ │ │ ├── ColReorder │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ │ │ └── dataTables.colReorder.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── alt_insert.html │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ ├── fixedcolumns.html │ │ │ │ │ │ ├── fixedheader.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ ├── predefined.html │ │ │ │ │ │ ├── realtime.html │ │ │ │ │ │ ├── reset.html │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ ├── server_side.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ └── state_save.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── insert.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ │ │ └── dataTables.colReorder.min.js │ │ │ │ ├── ColVis │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.colVis.css │ │ │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── button_order.html │ │ │ │ │ │ ├── exclude_columns.html │ │ │ │ │ │ ├── group_columns.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ ├── mouseover.html │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ ├── restore.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ ├── text.html │ │ │ │ │ │ ├── title_callback.html │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ └── two_tables_identical.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.colVis.js │ │ │ │ │ │ └── dataTables.colVis.min.js │ │ │ │ ├── FixedColumns │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ ├── css_size.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index_column.html │ │ │ │ │ │ ├── left_right_columns.html │ │ │ │ │ │ ├── right_column.html │ │ │ │ │ │ ├── rowspan.html │ │ │ │ │ │ ├── server-side-processing.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ ├── size_fixed.html │ │ │ │ │ │ ├── size_fluid.html │ │ │ │ │ │ └── two_columns.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ │ │ └── dataTables.fixedColumns.min.js │ │ │ │ ├── FixedHeader │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── header_footer.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ ├── top_left_right.html │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ └── zIndexes.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ │ │ └── dataTables.fixedHeader.min.js │ │ │ │ ├── KeyTable │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ │ │ └── dataTables.keyTable.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── events.html │ │ │ │ │ │ ├── html.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ └── simple.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ │ │ └── dataTables.keyTable.min.js │ │ │ │ ├── Responsive │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.responsive.css │ │ │ │ │ │ └── dataTables.responsive.scss │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── child-rows │ │ │ │ │ │ │ ├── column-control.html │ │ │ │ │ │ │ ├── custom-renderer.html │ │ │ │ │ │ │ ├── disable-child-rows.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── right-column.html │ │ │ │ │ │ │ └── whole-row-control.html │ │ │ │ │ │ ├── display-control │ │ │ │ │ │ │ ├── auto.html │ │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ │ ├── complexHeader.html │ │ │ │ │ │ │ ├── fixedHeader.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── init-classes.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── initialisation │ │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ │ ├── className.html │ │ │ │ │ │ │ ├── default.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── new.html │ │ │ │ │ │ │ └── option.html │ │ │ │ │ │ └── styling │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ ├── compact.html │ │ │ │ │ │ │ ├── foundation.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── scrolling.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.responsive.js │ │ │ │ │ │ └── dataTables.responsive.min.js │ │ │ │ ├── Scroller │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.scroller.css │ │ │ │ │ │ └── dataTables.scroller.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── api_scrolling.html │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── 2500.txt │ │ │ │ │ │ │ └── ssp.php │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── large_js_source.html │ │ │ │ │ │ ├── server-side_processing.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ └── state_saving.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── loading-background.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ │ └── dataTables.scroller.min.js │ │ │ │ └── TableTools │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.tableTools.css │ │ │ │ │ └── dataTables.tableTools.min.css │ │ │ │ │ ├── examples │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── alter_buttons.html │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── button_text.html │ │ │ │ │ ├── collection.html │ │ │ │ │ ├── defaults.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ ├── multi_instance.html │ │ │ │ │ ├── multiple_tables.html │ │ │ │ │ ├── new_init.html │ │ │ │ │ ├── pdf_message.html │ │ │ │ │ ├── plug-in.html │ │ │ │ │ ├── select_column.html │ │ │ │ │ ├── select_multi.html │ │ │ │ │ ├── select_os.html │ │ │ │ │ ├── select_single.html │ │ │ │ │ ├── simple.html │ │ │ │ │ └── swf_path.html │ │ │ │ │ ├── images │ │ │ │ │ ├── collection.png │ │ │ │ │ ├── collection_hover.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ ├── csv.png │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ ├── print.png │ │ │ │ │ ├── print_hover.png │ │ │ │ │ ├── psd │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ ├── copy document.psd │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ └── printer.psd │ │ │ │ │ ├── xls.png │ │ │ │ │ └── xls_hover.png │ │ │ │ │ ├── js │ │ │ │ │ ├── dataTables.tableTools.js │ │ │ │ │ └── dataTables.tableTools.min.js │ │ │ │ │ └── swf │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ ├── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ ├── jquery.dataTables.css │ │ │ ├── jquery.dataTables.js │ │ │ ├── jquery.dataTables.min.css │ │ │ ├── jquery.dataTables.min.js │ │ │ └── jquery.dataTables_themeroller.css │ │ ├── datepicker │ │ │ ├── bootstrap-datepicker.js │ │ │ ├── datepicker3.css │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ ├── bootstrap-datepicker.az.js │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ ├── bootstrap-datepicker.fa.js │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ │ ├── bootstrap-datepicker.vi.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ ├── daterangepicker │ │ │ ├── daterangepicker-bs3.css │ │ │ ├── daterangepicker.js │ │ │ ├── moment.js │ │ │ └── moment.min.js │ │ ├── fastclick │ │ │ ├── fastclick.js │ │ │ └── fastclick.min.js │ │ ├── flot │ │ │ ├── excanvas.js │ │ │ ├── excanvas.min.js │ │ │ ├── jquery.colorhelpers.js │ │ │ ├── jquery.colorhelpers.min.js │ │ │ ├── jquery.flot.canvas.js │ │ │ ├── jquery.flot.canvas.min.js │ │ │ ├── jquery.flot.categories.js │ │ │ ├── jquery.flot.categories.min.js │ │ │ ├── jquery.flot.crosshair.js │ │ │ ├── jquery.flot.crosshair.min.js │ │ │ ├── jquery.flot.errorbars.js │ │ │ ├── jquery.flot.errorbars.min.js │ │ │ ├── jquery.flot.fillbetween.js │ │ │ ├── jquery.flot.fillbetween.min.js │ │ │ ├── jquery.flot.image.js │ │ │ ├── jquery.flot.image.min.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.min.js │ │ │ ├── jquery.flot.navigate.js │ │ │ ├── jquery.flot.navigate.min.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.pie.min.js │ │ │ ├── jquery.flot.resize.js │ │ │ ├── jquery.flot.resize.min.js │ │ │ ├── jquery.flot.selection.js │ │ │ ├── jquery.flot.selection.min.js │ │ │ ├── jquery.flot.stack.js │ │ │ ├── jquery.flot.stack.min.js │ │ │ ├── jquery.flot.symbol.js │ │ │ ├── jquery.flot.symbol.min.js │ │ │ ├── jquery.flot.threshold.js │ │ │ ├── jquery.flot.threshold.min.js │ │ │ ├── jquery.flot.time.js │ │ │ └── jquery.flot.time.min.js │ │ ├── fullcalendar │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.css │ │ │ ├── fullcalendar.min.js │ │ │ └── fullcalendar.print.css │ │ ├── iCheck │ │ │ ├── all.css │ │ │ ├── flat │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── flat.css │ │ │ │ ├── flat.png │ │ │ │ ├── flat@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ │ ├── futurico.css │ │ │ │ ├── futurico.png │ │ │ │ └── futurico@2x.png │ │ │ ├── icheck.js │ │ │ ├── icheck.min.js │ │ │ ├── line │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── blue.css │ │ │ │ ├── green.css │ │ │ │ ├── grey.css │ │ │ │ ├── line.css │ │ │ │ ├── line.png │ │ │ │ ├── line@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── pink.css │ │ │ │ ├── purple.css │ │ │ │ ├── red.css │ │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── minimal.css │ │ │ │ ├── minimal.png │ │ │ │ ├── minimal@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ │ ├── polaris.css │ │ │ │ ├── polaris.png │ │ │ │ └── polaris@2x.png │ │ │ └── square │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── square.css │ │ │ │ ├── square.png │ │ │ │ ├── square@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ ├── input-mask │ │ │ ├── jquery.inputmask.date.extensions.js │ │ │ ├── jquery.inputmask.extensions.js │ │ │ ├── jquery.inputmask.js │ │ │ ├── jquery.inputmask.numeric.extensions.js │ │ │ ├── jquery.inputmask.phone.extensions.js │ │ │ ├── jquery.inputmask.regex.extensions.js │ │ │ └── phone-codes │ │ │ │ ├── phone-be.json │ │ │ │ ├── phone-codes.json │ │ │ │ └── readme.txt │ │ ├── ionslider │ │ │ ├── img │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ └── sprite-skin-nice.png │ │ │ ├── ion.rangeSlider.css │ │ │ ├── ion.rangeSlider.min.js │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ └── ion.rangeSlider.skinNice.css │ │ ├── jQuery │ │ │ └── jQuery-2.1.4.min.js │ │ ├── jQueryUI │ │ │ ├── jquery-ui.js │ │ │ └── jquery-ui.min.js │ │ ├── jvectormap │ │ │ ├── jquery-jvectormap-1.2.2.css │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ ├── knob │ │ │ └── jquery.knob.js │ │ ├── morris │ │ │ ├── morris.css │ │ │ ├── morris.js │ │ │ └── morris.min.js │ │ ├── pace │ │ │ └── pace.js │ │ ├── select2 │ │ │ ├── i18n │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ ├── select2.css │ │ │ ├── select2.full.js │ │ │ ├── select2.full.min.js │ │ │ ├── select2.js │ │ │ ├── select2.min.css │ │ │ └── select2.min.js │ │ ├── slimScroll │ │ │ ├── jquery.slimscroll.js │ │ │ └── jquery.slimscroll.min.js │ │ ├── sparkline │ │ │ ├── jquery.sparkline.js │ │ │ └── jquery.sparkline.min.js │ │ └── timepicker │ │ │ ├── bootstrap-timepicker.css │ │ │ ├── bootstrap-timepicker.js │ │ │ ├── bootstrap-timepicker.min.css │ │ │ └── bootstrap-timepicker.min.js │ ├── raphael-min.js │ └── starter.html ├── grocery_crud │ ├── config │ │ ├── index.html │ │ ├── language_alias.php │ │ └── translit_chars.php │ ├── css │ │ ├── index.html │ │ ├── jquery_plugins │ │ │ ├── chosen │ │ │ │ ├── chosen-sprite.png │ │ │ │ ├── chosen.css │ │ │ │ └── index.html │ │ │ ├── fancybox │ │ │ │ ├── blank.gif │ │ │ │ ├── fancy_close.png │ │ │ │ ├── fancy_loading.png │ │ │ │ ├── fancy_nav_left.png │ │ │ │ ├── fancy_nav_right.png │ │ │ │ ├── fancy_shadow_e.png │ │ │ │ ├── fancy_shadow_n.png │ │ │ │ ├── fancy_shadow_ne.png │ │ │ │ ├── fancy_shadow_nw.png │ │ │ │ ├── fancy_shadow_s.png │ │ │ │ ├── fancy_shadow_se.png │ │ │ │ ├── fancy_shadow_sw.png │ │ │ │ ├── fancy_shadow_w.png │ │ │ │ ├── fancy_title_left.png │ │ │ │ ├── fancy_title_main.png │ │ │ │ ├── fancy_title_over.png │ │ │ │ ├── fancy_title_right.png │ │ │ │ ├── fancybox-x.png │ │ │ │ ├── fancybox-y.png │ │ │ │ ├── fancybox.png │ │ │ │ └── jquery.fancybox.css │ │ │ ├── file_upload │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── file-uploader.css │ │ │ │ ├── fileuploader.css │ │ │ │ ├── jquery.fileupload-ui.css │ │ │ │ ├── loading.gif │ │ │ │ └── progressbar.gif │ │ │ ├── index.html │ │ │ ├── jquery-ui-timepicker-addon.css │ │ │ ├── jquery.ui.datetime.css │ │ │ ├── ui.multiselect.css │ │ │ └── uniform │ │ │ │ ├── images │ │ │ │ ├── bg-input-focus.png │ │ │ │ ├── bg-input.png │ │ │ │ └── sprite.png │ │ │ │ └── uniform.default.css │ │ └── ui │ │ │ ├── index.html │ │ │ └── simple │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_333333_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── index.html │ │ │ └── jquery-ui-1.10.1.custom.min.css │ ├── index.html │ ├── js │ │ ├── common │ │ │ ├── lazyload-min.js │ │ │ └── list.js │ │ ├── index.html │ │ ├── jquery-1.11.1.js │ │ ├── jquery-1.11.1.min.js │ │ ├── jquery-1.11.1.min.map │ │ └── jquery_plugins │ │ │ ├── ajax-chosen.js │ │ │ ├── config │ │ │ ├── index.html │ │ │ ├── jquery-ui-timepicker-addon.config.js │ │ │ ├── jquery.chosen.config.js │ │ │ ├── jquery.ckeditor.config.js │ │ │ ├── jquery.datepicker.config.js │ │ │ ├── jquery.datetime.config.js │ │ │ ├── jquery.fancybox.config.js │ │ │ ├── jquery.fileupload.config.js │ │ │ ├── jquery.markitup.config.js │ │ │ ├── jquery.multiselect.js │ │ │ ├── jquery.noty.config.js │ │ │ ├── jquery.numeric.config.js │ │ │ ├── jquery.tine_mce.config.js │ │ │ └── jquery.uniform.config.js │ │ │ ├── index.html │ │ │ ├── jquery-migrate-1.1.0.min.js │ │ │ ├── jquery-ui-timepicker-addon.js │ │ │ ├── jquery-ui-timepicker-addon.min.js │ │ │ ├── jquery.chosen.min.js │ │ │ ├── jquery.easing-1.3.pack.js │ │ │ ├── jquery.fancybox-1.3.4.js │ │ │ ├── jquery.fancybox.js │ │ │ ├── jquery.fancybox.pack.js │ │ │ ├── jquery.fileupload.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.form.min.js │ │ │ ├── jquery.iframe-transport.js │ │ │ ├── jquery.noty.js │ │ │ ├── jquery.numeric.min.js │ │ │ ├── jquery.ui.datetime.js │ │ │ ├── jquery.uniform.js │ │ │ ├── jquery.uniform.min.js │ │ │ ├── load-image.min.js │ │ │ ├── tmpl.min.js │ │ │ ├── ui.multiselect.min.js │ │ │ └── ui │ │ │ ├── i18n │ │ │ ├── datepicker │ │ │ │ ├── index.html │ │ │ │ ├── jquery.ui.datepicker-af.js │ │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ │ ├── jquery.ui.datepicker-bg.js │ │ │ │ ├── jquery.ui.datepicker-bn.js │ │ │ │ ├── jquery.ui.datepicker-cs.js │ │ │ │ ├── jquery.ui.datepicker-da.js │ │ │ │ ├── jquery.ui.datepicker-de.js │ │ │ │ ├── jquery.ui.datepicker-el.js │ │ │ │ ├── jquery.ui.datepicker-es.js │ │ │ │ ├── jquery.ui.datepicker-fa.js │ │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ │ ├── jquery.ui.datepicker-hu.js │ │ │ │ ├── jquery.ui.datepicker-id.js │ │ │ │ ├── jquery.ui.datepicker-it.js │ │ │ │ ├── jquery.ui.datepicker-ja.js │ │ │ │ ├── jquery.ui.datepicker-ko.js │ │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ │ ├── jquery.ui.datepicker-no.js │ │ │ │ ├── jquery.ui.datepicker-pl.js │ │ │ │ ├── jquery.ui.datepicker-pt-br.js │ │ │ │ ├── jquery.ui.datepicker-pt.js │ │ │ │ ├── jquery.ui.datepicker-ro.js │ │ │ │ ├── jquery.ui.datepicker-ru.js │ │ │ │ ├── jquery.ui.datepicker-sk.js │ │ │ │ ├── jquery.ui.datepicker-th.js │ │ │ │ ├── jquery.ui.datepicker-tr.js │ │ │ │ ├── jquery.ui.datepicker-uk.js │ │ │ │ ├── jquery.ui.datepicker-vi.js │ │ │ │ └── jquery.ui.datepicker-zh-cn.js │ │ │ ├── index.html │ │ │ ├── multiselect │ │ │ │ ├── index.html │ │ │ │ ├── ui-multiselect-ar.js │ │ │ │ ├── ui-multiselect-de.js │ │ │ │ ├── ui-multiselect-el.js │ │ │ │ ├── ui-multiselect-en.js │ │ │ │ ├── ui-multiselect-es.js │ │ │ │ ├── ui-multiselect-fr.js │ │ │ │ ├── ui-multiselect-it.js │ │ │ │ ├── ui-multiselect-ja.js │ │ │ │ ├── ui-multiselect-pt-br.js │ │ │ │ ├── ui-multiselect-ru.js │ │ │ │ └── ui-multiselect-uk.js │ │ │ └── timepicker │ │ │ │ ├── index.html │ │ │ │ ├── jquery-ui-timepicker-af.js │ │ │ │ ├── jquery-ui-timepicker-ar.js │ │ │ │ ├── jquery-ui-timepicker-bg.js │ │ │ │ ├── jquery-ui-timepicker-cs.js │ │ │ │ ├── jquery-ui-timepicker-de.js │ │ │ │ ├── jquery-ui-timepicker-el.js │ │ │ │ ├── jquery-ui-timepicker-es.js │ │ │ │ ├── jquery-ui-timepicker-fr.js │ │ │ │ ├── jquery-ui-timepicker-hu.js │ │ │ │ ├── jquery-ui-timepicker-id.js │ │ │ │ ├── jquery-ui-timepicker-it.js │ │ │ │ ├── jquery-ui-timepicker-ja.js │ │ │ │ ├── jquery-ui-timepicker-ko.js │ │ │ │ ├── jquery-ui-timepicker-nl.js │ │ │ │ ├── jquery-ui-timepicker-no.js │ │ │ │ ├── jquery-ui-timepicker-pl.js │ │ │ │ ├── jquery-ui-timepicker-pt-br.js │ │ │ │ ├── jquery-ui-timepicker-pt.js │ │ │ │ ├── jquery-ui-timepicker-ro.js │ │ │ │ ├── jquery-ui-timepicker-ru.js │ │ │ │ ├── jquery-ui-timepicker-sk.js │ │ │ │ ├── jquery-ui-timepicker-tr.js │ │ │ │ ├── jquery-ui-timepicker-uk.js │ │ │ │ ├── jquery-ui-timepicker-vi.js │ │ │ │ └── jquery-ui-timepicker-zh-cn.js │ │ │ ├── index.html │ │ │ └── jquery-ui-1.10.3.custom.min.js │ ├── languages │ │ ├── .htaccess │ │ ├── add-new-lang-string.sh │ │ ├── afrikaans.php │ │ ├── arabic.php │ │ ├── bengali.php │ │ ├── bulgarian.php │ │ ├── catalan.php │ │ ├── chinese.php │ │ ├── czech.php │ │ ├── danish.php │ │ ├── dutch.php │ │ ├── english.php │ │ ├── french.php │ │ ├── german.php │ │ ├── greek.php │ │ ├── hindi.php │ │ ├── hungarian.php │ │ ├── index.html │ │ ├── indonesian.php │ │ ├── italian.php │ │ ├── japanese.php │ │ ├── korean.php │ │ ├── lithuanian.php │ │ ├── mongolian.php │ │ ├── norwegian.php │ │ ├── persian.php │ │ ├── polish.php │ │ ├── pt-br.portuguese.php │ │ ├── pt-pt.portuguese.php │ │ ├── romanian.php │ │ ├── russian.php │ │ ├── slovak.php │ │ ├── spanish.php │ │ ├── thai.php │ │ ├── turkish.php │ │ ├── ukrainian.php │ │ └── vietnamese.php │ ├── license-gpl3.txt │ ├── license-grocery-crud.txt │ ├── license-mit.txt │ ├── texteditor │ │ └── ckeditor │ │ │ ├── .htaccess │ │ │ ├── LICENSE.html │ │ │ ├── adapters │ │ │ └── jquery.js │ │ │ ├── ckeditor.js │ │ │ ├── ckeditor.php │ │ │ ├── ckeditor_php4.php │ │ │ ├── ckeditor_php5.php │ │ │ ├── config.js │ │ │ ├── contents.css │ │ │ ├── images │ │ │ └── spacer.gif │ │ │ ├── lang │ │ │ ├── _languages.js │ │ │ ├── _translationstatus.txt │ │ │ ├── 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 │ │ │ ├── sk.js │ │ │ ├── sl.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 │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── adobeair │ │ │ │ └── plugin.js │ │ │ ├── ajax │ │ │ │ └── plugin.js │ │ │ ├── autogrow │ │ │ │ └── plugin.js │ │ │ ├── bbcode │ │ │ │ └── plugin.js │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── colordialog │ │ │ │ └── dialogs │ │ │ │ │ └── colordialog.js │ │ │ ├── devtools │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ │ └── plugin.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── div │ │ │ │ └── dialogs │ │ │ │ │ └── div.js │ │ │ ├── docprops │ │ │ │ ├── dialogs │ │ │ │ │ └── docprops.js │ │ │ │ └── plugin.js │ │ │ ├── find │ │ │ │ └── dialogs │ │ │ │ │ └── find.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── iframedialog │ │ │ │ └── plugin.js │ │ │ ├── image │ │ │ │ └── dialogs │ │ │ │ │ └── image.js │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ └── anchor.gif │ │ │ ├── liststyle │ │ │ │ └── dialogs │ │ │ │ │ └── liststyle.js │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── pastetext │ │ │ │ └── dialogs │ │ │ │ │ └── pastetext.js │ │ │ ├── placeholder │ │ │ │ ├── dialogs │ │ │ │ │ └── placeholder.js │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ │ ├── placeholder.gif │ │ │ │ └── plugin.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scayt │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ └── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ └── wink_smile.gif │ │ │ ├── specialchar │ │ │ │ ├── dialogs │ │ │ │ │ └── specialchar.js │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ └── zh-cn.js │ │ │ ├── styles │ │ │ │ └── styles │ │ │ │ │ └── default.js │ │ │ ├── stylesheetparser │ │ │ │ └── plugin.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tableresize │ │ │ │ └── plugin.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ └── templates.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── uicolor │ │ │ │ ├── dialogs │ │ │ │ │ └── uicolor.js │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ │ ├── plugin.js │ │ │ │ ├── uicolor.gif │ │ │ │ └── yui │ │ │ │ │ ├── assets │ │ │ │ │ ├── hue_bg.png │ │ │ │ │ ├── hue_thumb.png │ │ │ │ │ ├── picker_mask.png │ │ │ │ │ ├── picker_thumb.png │ │ │ │ │ └── yui.css │ │ │ │ │ └── yui.js │ │ │ ├── wsc │ │ │ │ └── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ └── wsc.js │ │ │ └── xml │ │ │ │ └── plugin.js │ │ │ ├── skins │ │ │ └── kama │ │ │ │ ├── dialog.css │ │ │ │ ├── editor.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_rtl.png │ │ │ │ ├── images │ │ │ │ ├── dialog_sides.gif │ │ │ │ ├── dialog_sides.png │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ ├── mini.gif │ │ │ │ ├── noimage.png │ │ │ │ ├── sprites.png │ │ │ │ ├── sprites_ie6.png │ │ │ │ └── toolbar_start.gif │ │ │ │ ├── skin.js │ │ │ │ └── templates.css │ │ │ └── themes │ │ │ └── default │ │ │ └── theme.js │ └── themes │ │ ├── datatables │ │ ├── config.php │ │ ├── css │ │ │ ├── datatables.css │ │ │ ├── demo_table_jui.css │ │ │ ├── images │ │ │ │ ├── error.png │ │ │ │ ├── index.html │ │ │ │ ├── small-loading.gif │ │ │ │ └── success.png │ │ │ ├── index.html │ │ │ └── jquery.dataTables.css │ │ ├── extras │ │ │ └── TableTools │ │ │ │ └── media │ │ │ │ ├── as3 │ │ │ │ ├── ZeroClipboard.as │ │ │ │ ├── ZeroClipboardPdf.as │ │ │ │ └── lib │ │ │ │ │ └── AlivePDF.swc │ │ │ │ ├── css │ │ │ │ ├── TableTools.css │ │ │ │ └── TableTools_JUI.css │ │ │ │ ├── images │ │ │ │ ├── background.png │ │ │ │ ├── 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 │ │ │ │ ├── TableTools.js │ │ │ │ ├── TableTools.min.js │ │ │ │ ├── TableTools.min.js.gz │ │ │ │ └── ZeroClipboard.js │ │ │ │ └── swf │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ └── copy_csv_xls_pdf.swf │ │ ├── index.html │ │ ├── js │ │ │ ├── datatables-add.js │ │ │ ├── datatables-edit.js │ │ │ ├── datatables-extras.js │ │ │ ├── datatables.js │ │ │ ├── index.html │ │ │ ├── jquery.dataTables.js │ │ │ └── jquery.dataTables.min.js │ │ └── views │ │ │ ├── .htaccess │ │ │ ├── add.php │ │ │ ├── edit.php │ │ │ ├── list.php │ │ │ ├── list_template.php │ │ │ └── read.php │ │ ├── flexigrid │ │ ├── config.php │ │ ├── css │ │ │ ├── flexigrid.css │ │ │ ├── images │ │ │ │ ├── add.png │ │ │ │ ├── bg.gif │ │ │ │ ├── btn-sprite.gif │ │ │ │ ├── close.png │ │ │ │ ├── ddn.png │ │ │ │ ├── dn.png │ │ │ │ ├── edit.png │ │ │ │ ├── error.png │ │ │ │ ├── export.png │ │ │ │ ├── fhbg.gif │ │ │ │ ├── first.gif │ │ │ │ ├── hl.png │ │ │ │ ├── index.html │ │ │ │ ├── last.gif │ │ │ │ ├── line.gif │ │ │ │ ├── load.gif │ │ │ │ ├── load.png │ │ │ │ ├── magnifier.png │ │ │ │ ├── next.gif │ │ │ │ ├── prev.gif │ │ │ │ ├── print.png │ │ │ │ ├── success.png │ │ │ │ ├── up.png │ │ │ │ ├── uup.png │ │ │ │ └── wbg.gif │ │ │ └── index.html │ │ ├── index.html │ │ ├── js │ │ │ ├── cookies.js │ │ │ ├── flexigrid-add.js │ │ │ ├── flexigrid-edit.js │ │ │ ├── flexigrid.js │ │ │ ├── index.html │ │ │ ├── jquery.form.js │ │ │ ├── jquery.printElement.js │ │ │ └── jquery.printElement.min.js │ │ └── views │ │ │ ├── .htaccess │ │ │ ├── add.php │ │ │ ├── edit.php │ │ │ ├── list.php │ │ │ ├── list_template.php │ │ │ └── read.php │ │ └── index.html ├── index.html └── uploads │ ├── files │ ├── 09cd0-999-surat_tugas-1-.docx │ ├── index.html │ ├── pdftest.pdf │ └── test-2.pdf │ └── index.html ├── composer.json ├── contributing.md ├── index.php ├── ingredients.txt ├── readme.rst ├── simpleton.sql ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Log.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ ├── compat │ │ ├── hash.php │ │ ├── index.html │ │ ├── mbstring.php │ │ ├── password.php │ │ └── standard.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_query_builder.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── ibase │ │ │ ├── ibase_driver.php │ │ │ ├── ibase_forge.php │ │ │ ├── ibase_result.php │ │ │ ├── ibase_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ ├── pdo_utility.php │ │ │ └── subdrivers │ │ │ │ ├── index.html │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ └── pdo_sqlsrv_forge.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ ├── sqlite3 │ │ │ ├── index.html │ │ │ ├── sqlite3_driver.php │ │ │ ├── sqlite3_forge.php │ │ │ ├── sqlite3_result.php │ │ │ └── sqlite3_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ ├── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ ├── Cache_memcached.php │ │ ├── Cache_redis.php │ │ ├── Cache_wincache.php │ │ └── index.html │ └── index.html │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Encryption.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Javascript │ ├── Jquery.php │ └── index.html │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session │ ├── Session.php │ ├── SessionHandlerInterface.php │ ├── Session_driver.php │ ├── drivers │ │ ├── Session_database_driver.php │ │ ├── Session_files_driver.php │ │ ├── Session_memcached_driver.php │ │ ├── Session_redis_driver.php │ │ └── index.html │ └── index.html │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ └── index.html └── user_guide ├── .buildinfo ├── DCO.html ├── _downloads └── ELDocs.tmbundle.zip ├── _images ├── appflowchart.gif └── smile.gif ├── _static ├── ajax-loader.gif ├── basic.css ├── ci-icon.ico ├── comment-bright.png ├── comment-close.png ├── comment.png ├── css │ ├── badge_only.css │ ├── citheme.css │ └── theme.css ├── doctools.js ├── down-pressed.png ├── down.png ├── file.png ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── jquery.js ├── js │ ├── oldtheme.js │ └── theme.js ├── minus.png ├── plus.png ├── pygments.css ├── searchtools.js ├── underscore.js ├── up-pressed.png ├── up.png └── websupport.js ├── changelog.html ├── contributing └── index.html ├── database ├── caching.html ├── call_function.html ├── configuration.html ├── connecting.html ├── db_driver_reference.html ├── examples.html ├── forge.html ├── helpers.html ├── index.html ├── metadata.html ├── queries.html ├── query_builder.html ├── results.html ├── transactions.html └── utilities.html ├── documentation └── index.html ├── general ├── alternative_php.html ├── ancillary_classes.html ├── autoloader.html ├── caching.html ├── cli.html ├── common_functions.html ├── compatibility_functions.html ├── controllers.html ├── core_classes.html ├── creating_drivers.html ├── creating_libraries.html ├── credits.html ├── drivers.html ├── environments.html ├── errors.html ├── helpers.html ├── hooks.html ├── index.html ├── libraries.html ├── managing_apps.html ├── models.html ├── profiling.html ├── requirements.html ├── reserved_names.html ├── routing.html ├── security.html ├── styleguide.html ├── urls.html ├── views.html └── welcome.html ├── genindex.html ├── helpers ├── array_helper.html ├── captcha_helper.html ├── cookie_helper.html ├── date_helper.html ├── directory_helper.html ├── download_helper.html ├── email_helper.html ├── file_helper.html ├── form_helper.html ├── html_helper.html ├── index.html ├── inflector_helper.html ├── language_helper.html ├── number_helper.html ├── path_helper.html ├── security_helper.html ├── smiley_helper.html ├── string_helper.html ├── text_helper.html ├── typography_helper.html ├── url_helper.html └── xml_helper.html ├── index.html ├── installation ├── downloads.html ├── index.html ├── troubleshooting.html ├── upgrade_120.html ├── upgrade_130.html ├── upgrade_131.html ├── upgrade_132.html ├── upgrade_133.html ├── upgrade_140.html ├── upgrade_141.html ├── upgrade_150.html ├── upgrade_152.html ├── upgrade_153.html ├── upgrade_154.html ├── upgrade_160.html ├── upgrade_161.html ├── upgrade_162.html ├── upgrade_163.html ├── upgrade_170.html ├── upgrade_171.html ├── upgrade_172.html ├── upgrade_200.html ├── upgrade_201.html ├── upgrade_202.html ├── upgrade_203.html ├── upgrade_210.html ├── upgrade_211.html ├── upgrade_212.html ├── upgrade_213.html ├── upgrade_214.html ├── upgrade_220.html ├── upgrade_221.html ├── upgrade_222.html ├── upgrade_223.html ├── upgrade_300.html ├── upgrade_301.html ├── upgrade_302.html ├── upgrade_303.html ├── upgrade_b11.html └── upgrading.html ├── libraries ├── benchmark.html ├── caching.html ├── calendar.html ├── cart.html ├── config.html ├── email.html ├── encrypt.html ├── encryption.html ├── file_uploading.html ├── form_validation.html ├── ftp.html ├── image_lib.html ├── index.html ├── input.html ├── javascript.html ├── language.html ├── loader.html ├── migration.html ├── output.html ├── pagination.html ├── parser.html ├── security.html ├── sessions.html ├── table.html ├── trackback.html ├── typography.html ├── unit_testing.html ├── uri.html ├── user_agent.html ├── xmlrpc.html └── zip.html ├── license.html ├── objects.inv ├── overview ├── appflow.html ├── at_a_glance.html ├── features.html ├── getting_started.html ├── goals.html ├── index.html └── mvc.html ├── search.html ├── searchindex.js └── tutorial ├── conclusion.html ├── create_news_items.html ├── index.html ├── news_section.html └── static_pages.html /.gitignore: -------------------------------------------------------------------------------- 1 | # my private modules 2 | application/modules/chart -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/email.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/core/MY_Loader.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/image_moo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/application/libraries/image_moo.php -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/main/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/main/views/admin_menu.php: -------------------------------------------------------------------------------- 1 |
  • Admin Menu
  • 2 |
  • class = "active" >'> User
  • 3 |
  • class = "active" >'> Ganti Password
  • -------------------------------------------------------------------------------- /application/modules/main/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/userguide/images/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/application/userguide/images/arrow.gif -------------------------------------------------------------------------------- /application/userguide/images/nav_bg_darker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/application/userguide/images/nav_bg_darker.jpg -------------------------------------------------------------------------------- /application/userguide/images/nav_separator_darker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/application/userguide/images/nav_separator_darker.jpg -------------------------------------------------------------------------------- /application/userguide/images/nav_toggle_darker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/application/userguide/images/nav_toggle_darker.jpg -------------------------------------------------------------------------------- /application/views/auth/email/activate.tpl.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

    4 |

    5 | 6 | -------------------------------------------------------------------------------- /application/views/auth/email/forgot_password.tpl.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

    4 |

    5 | 6 | -------------------------------------------------------------------------------- /application/views/auth/email/new_password.tpl.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

    4 | 5 |

    6 | 7 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/adminlte/.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | .idea 3 | /nbproject/private/ 4 | /nbproject/ 5 | /node_modules/ 6 | TODO 7 | *.zip 8 | test.html 9 | *.log 10 | test.html 11 | -------------------------------------------------------------------------------- /assets/adminlte/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "asi" : true, 3 | "browser" : true, 4 | "eqeqeq" : false, 5 | "eqnull" : true, 6 | "es3" : true, 7 | "expr" : true, 8 | "jquery" : true, 9 | "latedef" : "nofunc", 10 | "laxbreak" : true, 11 | "nonbsp" : true, 12 | "strict" : true, 13 | "undef" : true, 14 | "unused" : true, 15 | // External variabls and plugins 16 | "predef": [ "AdminLTEOptions", "FastClick", "moment", "Morris", "Chart" ] 17 | } 18 | -------------------------------------------------------------------------------- /assets/adminlte/Font_Awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/Font_Awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/adminlte/Font_Awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/Font_Awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/adminlte/Font_Awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/Font_Awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/adminlte/Font_Awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/Font_Awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/adminlte/Font_Awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/Font_Awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/adminlte/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/adminlte/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/adminlte/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/adminlte/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/adminlte/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') -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/build/less/carousel.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Component: Carousel 3 | * ------------------- 4 | */ 5 | .carousel-control { 6 | &.left, 7 | &.right { 8 | background-image: none; 9 | } 10 | > .fa { 11 | font-size: 40px; 12 | position: absolute; 13 | top: 50%; 14 | z-index: 5; 15 | display: inline-block; 16 | margin-top: -20px; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /assets/adminlte/build/less/invoice.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Page: Invoice 3 | * ------------- 4 | */ 5 | 6 | .invoice { 7 | position: relative; 8 | background: #fff; 9 | border: 1px solid #f4f4f4; 10 | padding: 20px; 11 | margin: 10px 25px; 12 | } 13 | 14 | .invoice-title { 15 | margin-top: 0; 16 | } 17 | -------------------------------------------------------------------------------- /assets/adminlte/build/less/labels.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Component: Label 3 | * ---------------- 4 | */ 5 | .label-default { 6 | background-color: @gray; 7 | color: #444; 8 | } 9 | .label-danger { 10 | &:extend(.bg-red); 11 | } 12 | .label-info { 13 | &:extend(.bg-aqua); 14 | } 15 | .label-warning { 16 | &:extend(.bg-yellow); 17 | } 18 | .label-primary { 19 | &:extend(.bg-light-blue); 20 | } 21 | .label-success { 22 | &:extend(.bg-green); 23 | } 24 | -------------------------------------------------------------------------------- /assets/adminlte/build/less/skins/_all-skins.less: -------------------------------------------------------------------------------- 1 | //All skins in one file 2 | @import "skin-blue.less"; 3 | @import "skin-blue-light.less"; 4 | @import "skin-black.less"; 5 | @import "skin-black-light.less"; 6 | @import "skin-green.less"; 7 | @import "skin-green-light.less"; 8 | @import "skin-red.less"; 9 | @import "skin-red-light.less"; 10 | @import "skin-yellow.less"; 11 | @import "skin-yellow-light.less"; 12 | @import "skin-purple.less"; 13 | @import "skin-purple-light.less"; 14 | -------------------------------------------------------------------------------- /assets/adminlte/dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/avatar.png -------------------------------------------------------------------------------- /assets/adminlte/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/avatar04.png -------------------------------------------------------------------------------- /assets/adminlte/dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/avatar2.png -------------------------------------------------------------------------------- /assets/adminlte/dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/avatar3.png -------------------------------------------------------------------------------- /assets/adminlte/dist/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/avatar5.png -------------------------------------------------------------------------------- /assets/adminlte/dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /assets/adminlte/dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /assets/adminlte/dist/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/credit/american-express.png -------------------------------------------------------------------------------- /assets/adminlte/dist/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/credit/cirrus.png -------------------------------------------------------------------------------- /assets/adminlte/dist/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/credit/mastercard.png -------------------------------------------------------------------------------- /assets/adminlte/dist/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/credit/mestro.png -------------------------------------------------------------------------------- /assets/adminlte/dist/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/credit/paypal.png -------------------------------------------------------------------------------- /assets/adminlte/dist/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/credit/paypal2.png -------------------------------------------------------------------------------- /assets/adminlte/dist/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/credit/visa.png -------------------------------------------------------------------------------- /assets/adminlte/dist/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/default-50x50.gif -------------------------------------------------------------------------------- /assets/adminlte/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/icons.png -------------------------------------------------------------------------------- /assets/adminlte/dist/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/photo1.png -------------------------------------------------------------------------------- /assets/adminlte/dist/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/photo2.png -------------------------------------------------------------------------------- /assets/adminlte/dist/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/photo3.jpg -------------------------------------------------------------------------------- /assets/adminlte/dist/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/photo4.jpg -------------------------------------------------------------------------------- /assets/adminlte/dist/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/user1-128x128.jpg -------------------------------------------------------------------------------- /assets/adminlte/dist/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/user2-160x160.jpg -------------------------------------------------------------------------------- /assets/adminlte/dist/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/user3-128x128.jpg -------------------------------------------------------------------------------- /assets/adminlte/dist/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/user4-128x128.jpg -------------------------------------------------------------------------------- /assets/adminlte/dist/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/user5-128x128.jpg -------------------------------------------------------------------------------- /assets/adminlte/dist/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/user6-128x128.jpg -------------------------------------------------------------------------------- /assets/adminlte/dist/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/user7-128x128.jpg -------------------------------------------------------------------------------- /assets/adminlte/dist/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/dist/img/user8-128x128.jpg -------------------------------------------------------------------------------- /assets/adminlte/documentation/build/include/browsers.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 |

    AdminLTE supports the following browsers:

    4 | 11 |

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

    12 |
    13 | -------------------------------------------------------------------------------- /assets/adminlte/documentation/build/include/license.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 |

    AdminLTE

    4 |

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

    10 |
    11 | -------------------------------------------------------------------------------- /assets/adminlte/ionicons/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/ionicons/fonts/ionicons.eot -------------------------------------------------------------------------------- /assets/adminlte/ionicons/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/ionicons/fonts/ionicons.ttf -------------------------------------------------------------------------------- /assets/adminlte/ionicons/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/ionicons/fonts/ionicons.woff -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/plugins/fakeobjects/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/plugins/fakeobjects/images/spacer.gif -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/colorpicker/img/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/colorpicker/img/alpha-horizontal.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/colorpicker/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/colorpicker/img/alpha.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/colorpicker/img/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/colorpicker/img/hue-horizontal.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/colorpicker/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/colorpicker/img/hue.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/colorpicker/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/colorpicker/img/saturation.png -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/AutoFill/images/filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/AutoFill/images/filler.png -------------------------------------------------------------------------------- /assets/adminlte/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 | } -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/ColReorder/images/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/ColReorder/images/insert.png -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.min.css: -------------------------------------------------------------------------------- 1 | div.FixedHeader_Cloned th,div.FixedHeader_Cloned td{background-color:white !important} 2 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/Responsive/Readme.md -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/Scroller/images/loading-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/Scroller/images/loading-background.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/TableTools/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/TableTools/images/collection.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/TableTools/images/collection_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/TableTools/images/collection_hover.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/TableTools/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/TableTools/images/copy.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/TableTools/images/copy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/TableTools/images/copy_hover.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/TableTools/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/TableTools/images/csv.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/TableTools/images/csv_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/TableTools/images/csv_hover.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/TableTools/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/TableTools/images/pdf.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/TableTools/images/pdf_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/TableTools/images/pdf_hover.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/TableTools/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/TableTools/images/print.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/TableTools/images/print_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/TableTools/images/print_hover.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/TableTools/images/psd/collection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/TableTools/images/psd/collection.psd -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/TableTools/images/psd/copy document.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/TableTools/images/psd/copy document.psd -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/TableTools/images/psd/file_types.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/TableTools/images/psd/file_types.psd -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/TableTools/images/psd/printer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/TableTools/images/psd/printer.psd -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/TableTools/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/TableTools/images/xls.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/TableTools/images/xls_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/TableTools/images/xls_hover.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/images/sort_both.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/aero.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/blue.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/flat.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/green.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/grey.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/orange.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/orange@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/pink.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/pink@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/purple.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/purple@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/red.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/futurico/futurico.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/futurico/futurico@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/line/line.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/line/line@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/aero.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/aero@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/blue.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/blue@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/green.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/green@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/grey.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/grey@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/minimal.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/minimal@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/orange.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/orange@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/pink.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/pink@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/purple.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/purple@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/red.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/red@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/yellow.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/minimal/yellow@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/polaris/polaris.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/polaris/polaris@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/aero.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/aero@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/blue.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/green.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/green@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/grey.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/grey@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/orange.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/orange@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/pink.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/pink@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/purple.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/purple@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/red.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/red@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/square.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/square@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/yellow.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/iCheck/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/iCheck/square/yellow@2x.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/input-mask/phone-codes/readme.txt: -------------------------------------------------------------------------------- 1 | more phone masks can be found at https://github.com/andr-04/inputmask-multi -------------------------------------------------------------------------------- /assets/adminlte/plugins/ionslider/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ionslider/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /assets/adminlte/plugins/ionslider/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/adminlte/plugins/ionslider/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /assets/adminlte/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 | -------------------------------------------------------------------------------- /assets/grocery_crud/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/chosen/chosen-sprite.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/chosen/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/blank.gif -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_close.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_loading.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_nav_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_nav_left.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_nav_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_nav_right.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_e.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_n.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_ne.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_nw.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_s.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_se.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_sw.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_w.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_title_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_title_left.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_title_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_title_main.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_title_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_title_over.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_title_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_title_right.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancybox-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancybox-x.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancybox-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancybox-y.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/fancybox/fancybox.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/file_upload/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/file_upload/loading.gif -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/file_upload/progressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/file_upload/progressbar.gif -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/jquery-ui-timepicker-addon.css: -------------------------------------------------------------------------------- 1 | .ui-timepicker-div .ui-widget-header { margin-bottom: 8px; } 2 | .ui-timepicker-div dl { text-align: left; } 3 | .ui-timepicker-div dl dt { height: 25px; margin-bottom: -25px; } 4 | .ui-timepicker-div dl dd { margin: 0 10px 10px 65px; } 5 | .ui-timepicker-div td { font-size: 90%; } 6 | .ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; } 7 | 8 | .ui-timepicker-rtl{ direction: rtl; } 9 | .ui-timepicker-rtl dl { text-align: right; } 10 | .ui-timepicker-rtl dl dd { margin: 0 65px 10px 10px; } -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/uniform/images/bg-input-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/uniform/images/bg-input-focus.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/uniform/images/bg-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/uniform/images/bg-input.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/uniform/images/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/jquery_plugins/uniform/images/sprite.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/ui/simple/images/animated-overlay.gif -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/ui/simple/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/ui/simple/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/ui/simple/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/ui/simple/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/ui/simple/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/ui/simple/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/ui/simple/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/ui/simple/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/ui/simple/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/ui/simple/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-icons_333333_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/ui/simple/images/ui-icons_333333_256x240.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/ui/simple/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/css/ui/simple/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery-ui-timepicker-addon.config.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $('.datetime-input').datetimepicker({ 3 | timeFormat: 'HH:mm:ss', 4 | dateFormat: js_date_format, 5 | showButtonPanel: true, 6 | changeMonth: true, 7 | changeYear: true 8 | }); 9 | 10 | $('.datetime-input-clear').button(); 11 | 12 | $('.datetime-input-clear').click(function(){ 13 | $(this).parent().find('.datetime-input').val(""); 14 | return false; 15 | }); 16 | 17 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery.chosen.config.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $(".chosen-select,.chosen-multiple-select").chosen({allow_single_deselect:true}); 3 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery.ckeditor.config.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $( 'textarea.texteditor' ).ckeditor({toolbar:'Full'}); 3 | $( 'textarea.mini-texteditor' ).ckeditor({toolbar:'Basic',width:700}); 4 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery.datepicker.config.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $('.datepicker-input').datepicker({ 3 | dateFormat: js_date_format, 4 | showButtonPanel: true, 5 | changeMonth: true, 6 | changeYear: true 7 | }); 8 | 9 | $('.datepicker-input-clear').button(); 10 | 11 | $('.datepicker-input-clear').click(function(){ 12 | $(this).parent().find('.datepicker-input').val(""); 13 | return false; 14 | }); 15 | 16 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery.datetime.config.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $('.datetime-input').datetime({ 3 | userLang : 'en', 4 | americanMode: true, 5 | }); 6 | 7 | $('.datetime-input-clear').button(); 8 | 9 | $('.datetime-input-clear').click(function(){ 10 | $(this).parent().find('.datetime-input').val(""); 11 | return false; 12 | }); 13 | 14 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery.fancybox.config.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $('.image-thumbnail').fancybox({ 3 | 'transitionIn' : 'elastic', 4 | 'transitionOut' : 'elastic', 5 | 'speedIn' : 600, 6 | 'speedOut' : 200, 7 | 'overlayShow' : false 8 | }); 9 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery.multiselect.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $(".multiselect").multiselect(); 3 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery.uniform.config.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $(".radio-uniform").uniform(); 3 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/datepicker/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-ar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale ar, ar-eg 5 | */ 6 | /* Ashraf Kaabi -- mail@kaabi.info */ 7 | 8 | $.extend($.ui.multiselect.locale, { 9 | addAll:'اضافة الكل', 10 | removeAll:'حذف الكل', 11 | itemsCount:'الاختيارات المحددة' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-de.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale de, de-DE, de-AT, de-CH 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Alle hinzufügen', 9 | removeAll:'Alle entfernen', 10 | itemsCount:'Einträge ausgewählt' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-el.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale el, GR 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Επιλογή όλων', 9 | removeAll:'Αφαίρεση όλων', 10 | itemsCount:'επιλεγμένα στοιχεία' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-en.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale en, en-US 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Add all', 9 | removeAll:'Remove all', 10 | itemsCount:'items selected' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-es.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale es, es-ES 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Agregar todos', 9 | removeAll:'Remover todos', 10 | itemsCount:'Objetos seleccionados' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-fr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale fr, fr-FR, fr-CA 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Ajouter tout', 9 | removeAll:'Supprimer tout', 10 | itemsCount:'items sélectionnés' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-it.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale it, it-IT 5 | */ 6 | 7 | $.extend($.ui.multiselect, { 8 | locale: { 9 | addAll:'Aggiungi tutti', 10 | removeAll:'Rimuovi tutti', 11 | itemsCount:'elementi selezionati' 12 | } 13 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale ja, ja-JP 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'すべて選択', 9 | removeAll:'すべて削除', 10 | itemsCount:'個選択' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-pt-br.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale pt, pt-BR 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Adicionar todos', 9 | removeAll:'Remover todos', 10 | itemsCount:'Itens selecionados' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-ru.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale ru, ru-RU 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Добавить все', 9 | removeAll:'Удалить все', 10 | itemsCount:'элементов выбрано' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-uk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale uk, uk-UK 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Додати все', 9 | removeAll:'Видалити все', 10 | itemsCount:'елементів обрано' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/timepicker/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/languages/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /assets/grocery_crud/languages/add-new-lang-string.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | for i in *.php 3 | do 4 | echo "\n" >> $i 5 | echo "\t/* Added in version 1.5.2 */" >> $i 6 | echo "\t\$lang['list_more'] = 'More';\n" >> $i 7 | done 8 | -------------------------------------------------------------------------------- /assets/grocery_crud/languages/afrikaans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/languages/afrikaans.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/license-grocery-crud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/license-grocery-crud.txt -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/config.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) 7 | { 8 | // Define changes to default configuration here. For example: 9 | // config.language = 'fr'; 10 | // config.uiColor = '#AADC6E'; 11 | }; 12 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/images/spacer.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','bg',{devTools:{title:'Информация за елемента',dialogName:'Име на диалоговия прозорец',tabName:'Име на таб',elementId:'ID на елемента',elementType:'Тип на елемента'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','cs',{devTools:{title:'Informace o prvku',dialogName:'Název dialogového okna',tabName:'Název karty',elementId:'ID prvku',elementType:'Typ prvku'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','cy',{devTools:{title:'Gwybodaeth am yr Elfen',dialogName:'Enw ffenestr y deialog',tabName:"Enw'r tab",elementId:'ID yr Elfen',elementType:'Math yr elfen'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','da',{devTools:{title:'Information på elementet',dialogName:'Dialogboks',tabName:'Tab beskrivelse',elementId:'ID på element',elementType:'Type af element'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','de',{devTools:{title:'Elementinformation',dialogName:'Dialogfenstername',tabName:'Reitername',elementId:'Element ID',elementType:'Elementtyp'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','el',{devTools:{title:'Πληροφορίες Στοιχείου',dialogName:'Όνομα παραθύρου διαλόγου',tabName:'Όνομα καρτέλας',elementId:'ID Στοιχείου',elementType:'Τύπος στοιχείου'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','en',{devTools:{title:'Element Information',dialogName:'Dialog window name',tabName:'Tab name',elementId:'Element ID',elementType:'Element type'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','eo',{devTools:{title:'Informo pri la elemento',dialogName:'Nomo de la dialogfenestro',tabName:'Langetnomo',elementId:'ID de la elemento',elementType:'Tipo de la elemento'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','et',{devTools:{title:'Elemendi andmed',dialogName:'Dialoogiakna nimi',tabName:'Saki nimi',elementId:'Elemendi ID',elementType:'Elemendi liik'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','fi',{devTools:{title:'Elementin tiedot',dialogName:'Dialogi-ikkunan nimi',tabName:'Välilehden nimi',elementId:'Elementin ID',elementType:'Elementin tyyppi'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','fr',{devTools:{title:"Information sur l'élément",dialogName:'Nom de la fenêtre de dialogue',tabName:"Nom de l'onglet",elementId:"ID de l'élément",elementType:"Type de l'élément"}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/gu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','gu',{devTools:{title:'પ્રાથમિક માહિતી',dialogName:'વિન્ડોનું નામ',tabName:'ટેબનું નામ',elementId:'પ્રાથમિક આઈડી',elementType:'પ્રાથમિક પ્રકાર'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','he',{devTools:{title:'מידע על האלמנט',dialogName:'שם הדיאלוג',tabName:'שם הטאב',elementId:'ID של האלמנט',elementType:'סוג האלמנט'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','hr',{devTools:{title:'Informacije elementa',dialogName:'Naziv prozora za dijalog',tabName:'Naziva jahača',elementId:'ID elementa',elementType:'Vrsta elementa'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','it',{devTools:{title:'Informazioni elemento',dialogName:'Nome finestra di dialogo',tabName:'Nome Tab',elementId:'ID Elemento',elementType:'Tipo elemento'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','nb',{devTools:{title:'Elementinformasjon',dialogName:'Navn på dialogvindu',tabName:'Navn på fane',elementId:'Element-ID',elementType:'Elementtype'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','nl',{devTools:{title:'Elementinformatie',dialogName:'Naam dialoogvenster',tabName:'Tabnaam',elementId:'Element ID',elementType:'Elementtype'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','no',{devTools:{title:'Elementinformasjon',dialogName:'Navn på dialogvindu',tabName:'Navn på fane',elementId:'Element-ID',elementType:'Elementtype'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','pl',{devTools:{title:'Informacja o elemencie',dialogName:'Nazwa okna dialogowego',tabName:'Nazwa zakładki',elementId:'ID elementu',elementType:'Typ elementu'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','pt-br',{devTools:{title:'Informação do Elemento',dialogName:'Nome da janela de diálogo',tabName:'Nome da aba',elementId:'ID do elemento',elementType:'Tipo do elemento'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','sk',{devTools:{title:'Informácie o prvku',dialogName:'Názov okna dialógu',tabName:'Názov záložky',elementId:'ID prvku',elementType:'Typ prvku'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','tr',{devTools:{title:'Eleman Bilgisi',dialogName:'İletişim pencere ismi',tabName:'Sekme adı',elementId:'Eleman ID',elementType:'Eleman türü'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','ug',{devTools:{title:'ئېلېمېنت ئۇچۇرى',dialogName:'سۆزلەشكۈ كۆزنەك ئاتى',tabName:'Tab ئاتى',elementId:'ئېلېمېنت كىملىكى',elementType:'ئېلېمېنت تىپى'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','uk',{devTools:{title:'Відомості про Елемент',dialogName:'Заголовок діалогового вікна',tabName:'Назва вкладки',elementId:'Ідентифікатор Елемента',elementType:'Тип Елемента'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','vi',{devTools:{title:'Thông tin thành ph',dialogName:'Tên hộp tho',tabName:'Tên th',elementId:'Mã thành ph',elementType:'Loại thành ph'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','zh-cn',{devTools:{title:'元素信息',dialogName:'对话框窗口名称',tabName:'Tab 名称',elementId:'元素 ID',elementType:'元素类型'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/docprops/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add('docprops',{init:function(a){var b=new CKEDITOR.dialogCommand('docProps');b.modes={wysiwyg:a.config.fullPage};a.addCommand('docProps',b);CKEDITOR.dialog.add('docProps',this.path+'dialogs/docprops.js');a.ui.addButton('DocProps',{label:a.lang.docprops.label,command:'docProps'});}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/link/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/link/images/anchor.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','bg',{placeholder:{title:'Настройки на контейнера',toolbar:'Нов контейнер',text:'Текст за контейнера',edit:'Промяна на контейнер',textMissing:'Контейнера трябва да съдържа текст.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','cs',{placeholder:{title:'Vlastnosti vyhrazeného prostoru',toolbar:'Vytvořit vyhrazený prostor',text:'Vyhrazený text',edit:'Upravit vyhrazený prostor',textMissing:'Vyhrazený prostor musí obsahovat text.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','cy',{placeholder:{title:"Priodweddau'r Daliwr Geiriau",toolbar:'Creu Daliwr Geiriau',text:'Testun y Daliwr Geiriau',edit:"Golygu'r Dailwr Geiriau",textMissing:"Mae'n rhaid i'r daliwr geiriau gynnwys testun."}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','da',{placeholder:{title:'Egenskaber for pladsholder',toolbar:'Opret pladsholder',text:'Tekst til pladsholder',edit:'Redigér pladsholder',textMissing:'Pladsholder skal indeholde tekst'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','de',{placeholder:{title:'Platzhalter Einstellungen',toolbar:'Platzhalter erstellen',text:'Platzhalter Text',edit:'Platzhalter bearbeiten',textMissing:'Der Platzhalter muss einen Text beinhalten.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','el',{placeholder:{title:'Ιδιότητες Υποκατάστατου Κειμένου',toolbar:'Δημιουργία Υποκατάσταστου Κειμένου',text:'Υποκαθιστόμενο Κείμενο',edit:'Επεξεργασία Υποκατάσταστου Κειμένου',textMissing:'Πρέπει να υπάρχει υποκαθιστόμενο κείμενο.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','en',{placeholder:{title:'Placeholder Properties',toolbar:'Create Placeholder',text:'Placeholder Text',edit:'Edit Placeholder',textMissing:'The placeholder must contain text.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','eo',{placeholder:{title:'Atributoj de la rezervita spaco',toolbar:'Krei la rezervitan spacon',text:'Texto de la rezervita spaco',edit:'Modifi la rezervitan spacon',textMissing:'La rezervita spaco devas enteni tekston.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','et',{placeholder:{title:'Kohahoidja omadused',toolbar:'Kohahoidja loomine',text:'Kohahoidja tekst',edit:'Kohahoidja muutmine',textMissing:'Kohahoidja peab sisaldama teksti.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','fi',{placeholder:{title:'Paikkamerkin ominaisuudet',toolbar:'Luo paikkamerkki',text:'Paikkamerkin teksti',edit:'Muokkaa paikkamerkkiä',textMissing:'Paikkamerkin täytyy sisältää tekstiä'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','fr',{placeholder:{title:"Propriétés de l'Espace réservé",toolbar:"Créer l'Espace réservé",text:"Texte de l'Espace réservé",edit:"Modifier l'Espace réservé",textMissing:"L'Espace réservé doit contenir du texte."}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','he',{placeholder:{title:'מאפייני שומר מקום',toolbar:'צור שומר מקום',text:'תוכן שומר המקום',edit:'ערוך שומר מקום',textMissing:'שומר המקום חייב להכיל טקסט.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','hr',{placeholder:{title:'Svojstva rezerviranog mjesta',toolbar:'Napravi rezervirano mjesto',text:'Tekst rezerviranog mjesta',edit:'Uredi rezervirano mjesto',textMissing:'Rezervirano mjesto mora sadržavati tekst.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','it',{placeholder:{title:'Proprietà segnaposto',toolbar:'Crea segnaposto',text:'Testo segnaposto',edit:'Modifica segnaposto',textMissing:'Il segnaposto deve contenere del testo.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','nb',{placeholder:{title:'Egenskaper for plassholder',toolbar:'Opprett plassholder',text:'Tekst for plassholder',edit:'Rediger plassholder',textMissing:'Plassholderen må inneholde tekst.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','nl',{placeholder:{title:'Eigenschappen placeholder',toolbar:'Placeholder aanmaken',text:'Placeholder tekst',edit:'Placeholder wijzigen',textMissing:'De placeholder moet tekst bevatten.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','no',{placeholder:{title:'Egenskaper for plassholder',toolbar:'Opprett plassholder',text:'Tekst for plassholder',edit:'Rediger plassholder',textMissing:'Plassholderen må inneholde tekst.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','pl',{placeholder:{title:'Właściwości wypełniacza',toolbar:'Utwórz wypełniacz',text:'Tekst wypełnienia',edit:'Edytuj wypełnienie',textMissing:'Wypełnienie musi posiadać jakiś tekst.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','pt-br',{placeholder:{title:'Propriedades do Espaço Reservado',toolbar:'Criar Espaço Reservado',text:'Texto do Espaço Reservado',edit:'Editar Espaço Reservado',textMissing:'O espaço reservado deve conter texto.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','sk',{placeholder:{title:'Vlastnosti placeholdera',toolbar:'Vytvoriť placeholder',text:'Text placeholdera',edit:'Upraviť placeholder',textMissing:'Placeholder musí obsahovať text.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','tr',{placeholder:{title:'Yer tutucu özellikleri',toolbar:'Yer tutucu oluşturun',text:'Yer tutucu metini',edit:'Yer tutucuyu düzenle',textMissing:'Yer tutucu metin içermelidir.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','ug',{placeholder:{title:'ئورۇن بەلگە خاسلىقى',toolbar:'ئورۇن بەلگە قۇر',text:'ئورۇن بەلگە تېكىستى',edit:'ئورۇن بەلگە تەھرىر',textMissing:'ئورۇن بەلگىسىدە چوقۇم تېكىست بولۇشى لازىم'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','uk',{placeholder:{title:'Налаштування Заповнювача',toolbar:'Створити Заповнювач',text:'Текст Заповнювача',edit:'Редагувати Заповнювач',textMissing:'Заповнювач повинен містити текст.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','vi',{placeholder:{title:'Thuộc tính đặt chỗ',toolbar:'Tạo đặt chỗ',text:'Văn bản đặt chỗ',edit:'Chỉnh sửa ',textMissing:'The placeholder must contain text.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','zh-cn',{placeholder:{title:'占位符属性',toolbar:'创建占位符',text:'占位符文字',edit:'编辑占位符',textMissing:'占位符必须包含文字。'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/placeholder.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','bg',{uicolor:{title:'ПИ избор на цвят',preview:'Преглед',config:'Вмъкнете този низ във Вашия config.js fajl',predefined:'Предефинирани цветови палитри'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','cs',{uicolor:{title:'Výběr barvy rozhraní',preview:'Živý náhled',config:'Vložte tento řetězec do Vašeho souboru config.js',predefined:'Přednastavené sady barev'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','cy',{uicolor:{title:"Dewisydd Lliwiau'r UI",preview:'Rhagolwg Byw',config:"Gludwch y llinyn hwn i'ch ffeil config.js",predefined:"Setiau lliw wedi'u cyn-ddiffinio"}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','da',{uicolor:{title:'Brugerflade på farvevælger',preview:'Vis liveeksempel',config:'Indsæt denne streng i din config.js fil',predefined:'Prædefinerede farveskemaer'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','de',{uicolor:{title:'UI Pipette',preview:'Live-Vorschau',config:"Fügen Sie diese Zeichenfolge in die 'config.js' Datei.",predefined:'Vordefinierte Farbsätze'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','el',{uicolor:{title:'Διεπαφή Επιλογέα Χρωμάτων',preview:'Ζωντανή Προεπισκόπηση',config:'Επικολλήστε αυτό το κείμενο στο αρχείο config.js',predefined:'Προκαθορισμένα σύνολα χρωμάτων'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','en',{uicolor:{title:'UI Color Picker',preview:'Live preview',config:'Paste this string into your config.js file',predefined:'Predefined color sets'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','eo',{uicolor:{title:'UI Kolorselektilo',preview:'Vidigi la aspekton',config:'Gluu tiun signoĉenon en vian dosieron config.js',predefined:'Antaŭdifinita koloraro'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','et',{uicolor:{title:'Värvivalija kasutajaliides',preview:'Automaatne eelvaade',config:'Aseta see sõne oma config.js faili.',predefined:'Eelmääratud värvikomplektid'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','fi',{uicolor:{title:'Käyttöliittymän värivalitsin',preview:'Esikatsele',config:'Liitä tämä merkkijono config.js tiedostoosi',predefined:'Esimääritellyt värijoukot'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','fr',{uicolor:{title:'UI Sélecteur de couleur',preview:'Aperçu',config:'Collez cette chaîne de caractères dans votre fichier config.js',predefined:'Palettes de couleurs prédéfinies'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','he',{uicolor:{title:'בחירת צבע ממשק משתמש',preview:'תצוגה מקדימה',config:'הדבק את הטקסט הבא לתוך הקובץ config.js',predefined:'קבוצות צבעים מוגדרות מראש'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','hr',{uicolor:{title:'UI odabir boja',preview:'Pregled uživo',config:'Zalijepite ovaj tekst u Vašu config.js datoteku.',predefined:'Već postavljeni setovi boja'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','it',{uicolor:{title:'Selettore Colore UI',preview:'Anteprima Live',config:'Incolla questa stringa nel tuo file config.js',predefined:'Set di colori predefiniti'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/mk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','mk',{uicolor:{title:'Палета со бои',preview:'Преглед',config:'Залепи го овој текст во config.js датотеката',predefined:'Предефинирани множества на бои'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','nb',{uicolor:{title:'Fargevelger for brukergrensesnitt',preview:'Forhåndsvisning i sanntid',config:'Lim inn følgende tekst i din config.js-fil',predefined:'Forhåndsdefinerte fargesett'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','nl',{uicolor:{title:'UI Kleurenkiezer',preview:'Live voorbeeld',config:'Plak deze tekst in jouw config.js bestand',predefined:'Voorgedefinieerde kleurensets'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','no',{uicolor:{title:'Fargevelger for brukergrensesnitt',preview:'Forhåndsvisning i sanntid',config:'Lim inn følgende tekst i din config.js-fil',predefined:'Forhåndsdefinerte fargesett'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','pl',{uicolor:{title:'Wybór koloru interfejsu',preview:'Podgląd na żywo',config:'Wklej poniższy łańcuch znaków do pliku config.js:',predefined:'Predefiniowane zestawy kolorów'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','pt-br',{uicolor:{title:'Paleta de Cores',preview:'Visualização ao vivo',config:'Cole o texto no seu arquivo config.js',predefined:'Conjuntos de cores predefinidos'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','sk',{uicolor:{title:'UI výber farby',preview:'Živý náhľad',config:'Vložte tento reťazec do vášho config.js súboru',predefined:'Preddefinované sady farieb'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','tr',{uicolor:{title:'UI Renk Seçicisi',preview:'Canlı önizleme',config:'Bu dizeyi config.js dosyasının içine yapıştırın',predefined:'Önceden tanımlanmış renk kümeleri'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','ug',{uicolor:{title:'ئىشلەتكۈچى ئارايۈزى رەڭ تاللىغۇچ',preview:'شۇئان ئالدىن كۆزىتىش',config:'بۇ ھەرپ تىزىقىنى config.js ھۆججەتكە چاپلايدۇ',predefined:'ئالدىن بەلگىلەنگەن رەڭلەر'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','uk',{uicolor:{title:'Color Picker Інтерфейс',preview:'Перегляд наживо',config:'Вставте цей рядок у файл config.js',predefined:'Стандартний набір кольорів'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','vi',{uicolor:{title:'Giao diện người dùng Color Picker',preview:'Xem trước trực tiếp',config:'Dán chuỗi này vào tập tin config.js của bạn',predefined:'Tập màu định nghĩa sẵn'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','zh-cn',{uicolor:{title:'用户界面颜色选择器',preview:'即时预览',config:'粘贴此字符串到您的 config.js 文件',predefined:'预定义颜色集'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/uicolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/uicolor.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/skins/kama/icons.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/skins/kama/icons_rtl.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/dialog_sides.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/dialog_sides.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/mini.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/noimage.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/sprites.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/sprites_ie6.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/toolbar_start.gif -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/config.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/css/images/small-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/css/images/small-loading.gif -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/css/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/css/images/success.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/as3/lib/AlivePDF.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/as3/lib/AlivePDF.swc -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/background.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/collection.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/collection_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/collection_hover.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/copy.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/copy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/copy_hover.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/csv.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/csv_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/csv_hover.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/pdf.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/pdf_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/pdf_hover.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/print.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/print_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/print_hover.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/psd/collection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/psd/collection.psd -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/psd/copy document.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/psd/copy document.psd -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/psd/file_types.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/psd/file_types.psd -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/psd/printer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/psd/printer.psd -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/xls.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/images/xls_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/images/xls_hover.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/js/TableTools.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/js/TableTools.min.js.gz -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/swf/copy_csv_xls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/swf/copy_csv_xls.swf -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/extras/TableTools/media/swf/copy_csv_xls_pdf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/datatables/extras/TableTools/media/swf/copy_csv_xls_pdf.swf -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/views/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/config.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/flexigrid/css/images/last.gif -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/flexigrid/css/images/line.gif -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/flexigrid/css/images/load.gif -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/flexigrid/css/images/load.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/flexigrid/css/images/magnifier.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/flexigrid/css/images/next.gif -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/flexigrid/css/images/prev.gif -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/flexigrid/css/images/print.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/flexigrid/css/images/success.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/flexigrid/css/images/up.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/uup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/flexigrid/css/images/uup.png -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/images/wbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/grocery_crud/themes/flexigrid/css/images/wbg.gif -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/themes/flexigrid/views/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /assets/grocery_crud/themes/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/uploads/files/09cd0-999-surat_tugas-1-.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/uploads/files/09cd0-999-surat_tugas-1-.docx -------------------------------------------------------------------------------- /assets/uploads/files/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/uploads/files/pdftest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/uploads/files/pdftest.pdf -------------------------------------------------------------------------------- /assets/uploads/files/test-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/assets/uploads/files/test-2.pdf -------------------------------------------------------------------------------- /assets/uploads/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "The CodeIgniter framework", 3 | "name": "codeigniter/framework", 4 | "type": "project", 5 | "homepage": "http://codeigniter.com", 6 | "license": "MIT", 7 | "support": { 8 | "forum": "http://forum.codeigniter.com/", 9 | "wiki": "https://github.com/bcit-ci/CodeIgniter/wiki", 10 | "irc": "irc://irc.freenode.net/codeigniter", 11 | "source": "https://github.com/bcit-ci/CodeIgniter" 12 | }, 13 | "require": { 14 | "php": ">=5.2.4" 15 | }, 16 | "require-dev": { 17 | "mikey179/vfsStream": "1.1.*" 18 | } 19 | } -------------------------------------------------------------------------------- /ingredients.txt: -------------------------------------------------------------------------------- 1 | By : heruprambadi.com 2 | 3 | - Codeigniter 3.0.3 4 | - Admin LTE 2.3.0 5 | - IonAuth 2 6 | - GroceryCrud 1.5.2 -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /user_guide/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: 103a80b9dd782a05507c3eddad9efb74 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /user_guide/_downloads/ELDocs.tmbundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_downloads/ELDocs.tmbundle.zip -------------------------------------------------------------------------------- /user_guide/_images/appflowchart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_images/appflowchart.gif -------------------------------------------------------------------------------- /user_guide/_images/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_images/smile.gif -------------------------------------------------------------------------------- /user_guide/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_static/ajax-loader.gif -------------------------------------------------------------------------------- /user_guide/_static/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_static/ci-icon.ico -------------------------------------------------------------------------------- /user_guide/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_static/comment-bright.png -------------------------------------------------------------------------------- /user_guide/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_static/comment-close.png -------------------------------------------------------------------------------- /user_guide/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_static/comment.png -------------------------------------------------------------------------------- /user_guide/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_static/down-pressed.png -------------------------------------------------------------------------------- /user_guide/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_static/down.png -------------------------------------------------------------------------------- /user_guide/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_static/file.png -------------------------------------------------------------------------------- /user_guide/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /user_guide/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_static/minus.png -------------------------------------------------------------------------------- /user_guide/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_static/plus.png -------------------------------------------------------------------------------- /user_guide/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_static/up-pressed.png -------------------------------------------------------------------------------- /user_guide/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/_static/up.png -------------------------------------------------------------------------------- /user_guide/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruprambadi/simpleton/cff42dc16653802ea0928e6752407fab4f373398/user_guide/objects.inv --------------------------------------------------------------------------------