├── .gitignore ├── LICENSE ├── README.md ├── application ├── .htaccess ├── config │ ├── autoload.php │ ├── ci-blog.php │ ├── config.php │ ├── constants.php │ ├── database.php.example │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── ion_auth.php │ ├── memcached.php │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ └── index.html ├── core │ ├── MY_Controller.php │ ├── MY_Loader.php │ ├── MY_Router.php │ └── index.html ├── helpers │ ├── general_helper.php │ └── 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 │ ├── 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 │ ├── turkish │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── ukrainian │ │ ├── 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 │ ├── General.php │ ├── Ion_auth.php │ └── index.html ├── logs │ └── index.html ├── migrations │ └── 001_install_ion_auth.php ├── models │ ├── Asset.php │ ├── Category.php │ ├── Group.php │ ├── Ion_auth_model.php │ ├── Menu.php │ ├── Page.php │ ├── Post.php │ ├── Setting.php │ ├── Tag.php │ ├── User.php │ └── index.html ├── modules │ ├── admin │ │ └── controllers │ │ │ ├── Assets.php │ │ │ ├── Categories.php │ │ │ ├── Dashboard.php │ │ │ ├── Groups.php │ │ │ ├── Menus.php │ │ │ ├── Pages.php │ │ │ ├── Posts.php │ │ │ ├── Settings.php │ │ │ └── Users.php │ ├── posts │ │ └── controllers │ │ │ └── Posts.php │ ├── users │ │ └── controllers │ │ │ └── Users.php │ └── welcome │ │ └── controllers │ │ └── Welcome.php ├── third_party │ ├── MX │ │ ├── Base.php │ │ ├── Ci.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Modules.php │ │ └── Router.php │ └── index.html └── views │ ├── admin │ └── default │ │ ├── 404.php │ │ ├── 500.php │ │ ├── assets │ │ ├── browse.php │ │ └── browse_assets.php │ │ ├── blank.php │ │ ├── categories │ │ ├── add.php │ │ ├── edit.php │ │ └── index.php │ │ ├── dashboard │ │ └── index.php │ │ ├── groups │ │ ├── add.php │ │ ├── edit.php │ │ └── index.php │ │ ├── layout.php │ │ ├── menus │ │ ├── add.php │ │ ├── edit.php │ │ └── index.php │ │ ├── pages │ │ ├── add.php │ │ ├── edit.php │ │ └── index.php │ │ ├── parts │ │ ├── header.php │ │ └── sidebar.php │ │ ├── posts │ │ ├── add.php │ │ ├── edit.php │ │ └── index.php │ │ ├── settings │ │ └── index.php │ │ └── users │ │ ├── add.php │ │ ├── change_password.php │ │ ├── edit.php │ │ ├── forgot_password.php │ │ ├── index.php │ │ ├── profile.php │ │ ├── reset_password.php │ │ ├── signin.php │ │ └── signup.php │ ├── email │ ├── activate.tpl.php │ ├── forgot_password.tpl.php │ └── new_password.tpl.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 │ ├── themes │ └── default │ │ ├── auth │ │ ├── change_password.php │ │ ├── create_group.php │ │ ├── create_user.php │ │ ├── deactivate_user.php │ │ ├── edit_group.php │ │ ├── edit_user.php │ │ ├── forgot_password.php │ │ ├── index.php │ │ ├── login.php │ │ └── reset_password.php │ │ ├── footer.php │ │ ├── header.php │ │ ├── layout.php │ │ ├── posts │ │ ├── header.php │ │ ├── index.php │ │ └── read.php │ │ ├── right_sidebar.php │ │ └── welcome.php │ └── welcome_message.php ├── assets ├── admin │ └── default │ │ ├── css │ │ ├── AdminLTE.css │ │ ├── bootstrap-slider │ │ │ └── slider.css │ │ ├── bootstrap-wysihtml5 │ │ │ ├── bootstrap3-wysihtml5.css │ │ │ └── bootstrap3-wysihtml5.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── colorpicker │ │ │ ├── bootstrap-colorpicker.css │ │ │ └── bootstrap-colorpicker.min.css │ │ ├── custom.css │ │ ├── datatables │ │ │ ├── dataTables.bootstrap.css │ │ │ └── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ ├── daterangepicker │ │ │ └── daterangepicker-bs3.css │ │ ├── font-awesome.css │ │ ├── font-awesome.min.css │ │ ├── fullcalendar │ │ │ ├── fullcalendar.css │ │ │ └── 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 │ │ │ ├── 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 │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ └── ui-icons_f9bd01_256x240.png │ │ ├── ionicons.css │ │ ├── ionicons.min.css │ │ ├── ionslider │ │ │ ├── ion.rangeSlider.css │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ └── ion.rangeSlider.skinNice.css │ │ ├── jQueryUI │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_100_e6e7e8_40x100.png │ │ │ │ ├── ui-bg_flat_100_f56954_40x100.png │ │ │ │ ├── ui-bg_flat_55_f39c12_40x100.png │ │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ │ ├── ui-bg_flat_75_dadada_40x100.png │ │ │ │ ├── ui-bg_flat_75_e6e6e6_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── jquery-ui-1.10.3.custom.css │ │ │ └── jquery-ui-1.10.3.custom.min.css │ │ ├── jvectormap │ │ │ └── jquery-jvectormap-1.2.2.css │ │ ├── morris │ │ │ └── morris.css │ │ └── timepicker │ │ │ ├── bootstrap-timepicker.css │ │ │ └── bootstrap-timepicker.min.css │ │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ └── ionicons.woff │ │ ├── img │ │ ├── ajax-loader.gif │ │ ├── ajax-loader1.gif │ │ ├── avatar.png │ │ ├── avatar04.png │ │ ├── avatar2.png │ │ ├── avatar3.png │ │ ├── avatar5.png │ │ ├── blur-background04.jpg │ │ ├── blur-background08.jpg │ │ ├── blur-background09.jpg │ │ ├── bootstrap-colorpicker │ │ │ ├── alpha-horizontal.png │ │ │ ├── alpha.png │ │ │ ├── hue-horizontal.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ │ ├── credit │ │ │ ├── american-express.png │ │ │ ├── cirrus.png │ │ │ ├── mastercard.png │ │ │ ├── mestro.png │ │ │ ├── paypal.png │ │ │ ├── paypal2.png │ │ │ └── visa.png │ │ ├── icons.png │ │ ├── sprite-skin-flat.png │ │ ├── sprite-skin-nice.png │ │ ├── user-bg.png │ │ ├── user.jpg │ │ └── user2.jpg │ │ ├── js │ │ ├── AdminLTE │ │ │ ├── app.js │ │ │ └── dashboard.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── custom.js │ │ ├── jquery-ui-1.10.3.js │ │ ├── jquery-ui-1.10.3.min.js │ │ └── plugins │ │ │ ├── bootstrap-slider │ │ │ └── bootstrap-slider.js │ │ │ ├── bootstrap-wysihtml5 │ │ │ ├── bootstrap3-wysihtml5.all.min.js │ │ │ └── bootstrap3-wysihtml5.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.js │ │ │ └── bootstrap-colorpicker.min.js │ │ │ ├── datatables │ │ │ ├── dataTables.bootstrap.js │ │ │ └── jquery.dataTables.js │ │ │ ├── daterangepicker │ │ │ └── daterangepicker.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.js │ │ │ └── fullcalendar.min.js │ │ │ ├── iCheck │ │ │ ├── icheck.js │ │ │ └── icheck.min.js │ │ │ ├── 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 │ │ │ └── ion.rangeSlider.min.js │ │ │ ├── jqueryKnob │ │ │ └── jquery.knob.js │ │ │ ├── jvectormap │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ │ ├── misc │ │ │ ├── html5shiv.js │ │ │ ├── jquery.ba-resize.min.js │ │ │ ├── jquery.placeholder.js │ │ │ ├── modernizr.min.js │ │ │ └── respond.min.js │ │ │ ├── morris │ │ │ ├── morris.js │ │ │ └── morris.min.js │ │ │ ├── slimScroll │ │ │ ├── jquery.slimscroll.js │ │ │ ├── jquery.slimscroll.min.js │ │ │ └── slimScroll.jquery.json │ │ │ ├── sparkline │ │ │ ├── jquery.sparkline.js │ │ │ └── jquery.sparkline.min.js │ │ │ └── timepicker │ │ │ ├── bootstrap-timepicker.js │ │ │ └── bootstrap-timepicker.min.js │ │ └── plugins │ │ ├── datepicker │ │ ├── css │ │ │ └── datepicker.css │ │ ├── js │ │ │ └── bootstrap-datepicker.js │ │ └── less │ │ │ └── datepicker.less │ │ ├── line_control_editor │ │ ├── editor.css │ │ └── editor.js │ │ └── select2 │ │ ├── css │ │ ├── select2.css │ │ └── select2.min.css │ │ └── js │ │ ├── i18n │ │ ├── ar.js │ │ ├── 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 │ │ ├── ja.js │ │ ├── ko.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt-BR.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sr-Cyrl.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-CN.js │ │ └── zh-TW.js │ │ ├── select2.full.js │ │ ├── select2.full.min.js │ │ ├── select2.js │ │ └── select2.min.js ├── screenshot │ ├── dinamic-multilevel-menu.png │ └── insert-image-to-post.png ├── themes │ └── default │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── main │ │ ├── css │ │ │ └── style1.css │ │ └── img │ │ │ ├── background │ │ │ ├── bg3.jpg │ │ │ └── hero.jpg │ │ │ ├── general │ │ │ ├── 1.jpg │ │ │ └── map.png │ │ │ └── people │ │ │ └── gie.jpg │ │ └── plugins │ │ ├── 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 │ │ ├── jquery │ │ ├── jquery-1.10.2.min.map │ │ └── jquery.js │ │ └── material-design │ │ ├── css │ │ ├── material-fullpalette.css │ │ ├── material-fullpalette.css.map │ │ ├── material-fullpalette.min.css │ │ ├── material-fullpalette.min.css.map │ │ ├── material.css │ │ ├── material.css.map │ │ ├── material.min.css │ │ ├── material.min.css.map │ │ ├── ripples.css │ │ ├── ripples.css.map │ │ ├── ripples.min.css │ │ ├── ripples.min.css.map │ │ ├── roboto.css │ │ ├── roboto.css.map │ │ ├── roboto.min.css │ │ └── roboto.min.css.map │ │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── Material-Design-Icons.eot │ │ ├── Material-Design-Icons.svg │ │ ├── Material-Design-Icons.ttf │ │ ├── Material-Design-Icons.woff │ │ ├── RobotoDraftBold.woff │ │ ├── RobotoDraftBold.woff2 │ │ ├── RobotoDraftItalic.woff │ │ ├── RobotoDraftItalic.woff2 │ │ ├── RobotoDraftMedium.woff │ │ ├── RobotoDraftMedium.woff2 │ │ ├── RobotoDraftRegular.woff │ │ └── RobotoDraftRegular.woff2 │ │ ├── js │ │ ├── material.js │ │ ├── material.min.js │ │ ├── material.min.js.map │ │ ├── ripples.js │ │ ├── ripples.min.js │ │ └── ripples.min.js.map │ │ └── test.html └── uploads │ ├── 10.jpg │ ├── 3.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ ├── 9.jpg │ ├── blur.jpg │ └── hero.jpg ├── composer.json ├── contributing.md ├── index.php ├── install ├── README.md ├── UNLICENSE.md ├── assets │ └── install.sql ├── config │ └── database.php ├── includes │ ├── core_class.php │ └── database_class.php └── index.php ├── license.txt ├── readme.rst └── 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 /.gitignore: -------------------------------------------------------------------------------- 1 | */config/development 2 | */logs/log-*.php 3 | */logs/!index.html 4 | */cache/* 5 | */cache/!index.html 6 | */cache/!.htaccess 7 | application/config/database.php 8 | assets/uploads/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Gie-Art 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ci-blog 2 | Basic CMS based on CodeIgniter 3.x 3 | # Installation 4 | 5 | 1. Copy 'ci-blog' directory to your 'www' or 'htdocs' directory 6 | 7 | 2. Open your browser and type => http://localhost/ci-blog/install 8 | 9 | 3. Fill the installation form (database server configuration) : host, username, password, database name 10 | 11 | 4. Press the "Install" button 12 | 13 | 5. Done, visit your url http://localhost/ci-blog/ (Note: Remove the install folder /install) 14 | 15 | 16 | Sampel Accounts: 17 | 18 | admin => username : admin@admin.com password:password 19 | 20 | members => username : members@website.com password:12345678 21 | 22 | 23 | # Credits: 24 | 25 | http://codeigniter.com 26 | 27 | http://getbootstrap.com 28 | 29 | http://wowbootstrap.com 30 | 31 | https://github.com/mikecrittenden/codeigniter-installer 32 | -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /application/config/ci-blog.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /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/general_helper.php: -------------------------------------------------------------------------------- 1 | '; 6 | print_r($data); 7 | echo ''; 8 | } 9 | 10 | function message_box($msg, $status = 'success'){ 11 | $response = ''; 12 | $class = 'danger'; 13 | if($status == 'success'){ 14 | $class = 'success'; 15 | } 16 | if(!empty($msg)){ 17 | $response = '
'.$msg.'
'; 18 | } 19 | return $response; 20 | } 21 | 22 | function merge_urls($all_urls = array(), $url){ 23 | $url_slugs = array_keys($all_urls); 24 | if(!in_array($url, $url_slugs)){ 25 | $external_url = array( 26 | $url => $url 27 | ); 28 | 29 | $all_urls = array_merge($all_urls,$external_url); 30 | } 31 | 32 | return $all_urls; 33 | } 34 | 35 | 36 | function limit_url_slug($slug, $limit = 20){ 37 | $end = ''; 38 | if(mb_strlen($slug) > $limit){ 39 | $end = '...'; 40 | } 41 | return substr($slug, 0, $limit).$end; 42 | } -------------------------------------------------------------------------------- /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/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/Asset.php: -------------------------------------------------------------------------------- 1 | db->order_by('name','asc')->get($this->table, $limit, $offset)->result_array(); 11 | return $assets; 12 | } 13 | 14 | function create($asset){ 15 | $this->db->insert($this->table, $asset); 16 | } 17 | 18 | function update($asset,$id){ 19 | $this->db->where('id',$id); 20 | $this->db->update($this->table,$asset); 21 | } 22 | 23 | function delete($id){ 24 | $this->db->where('id',$id); 25 | $this->db->delete($this->table); 26 | } 27 | 28 | function find_by_id($id){ 29 | $this->db->where('id',$id); 30 | return $this->db->get($this->table,1)->row_array(); 31 | } 32 | 33 | function find_list(){ 34 | $this->db->order_by('name','asc'); 35 | $query = $this->db->get($this->table); 36 | $data = array(); 37 | if ($query->num_rows() > 0) { 38 | foreach ($query->result_array() as $row) { 39 | $data[$row['id']] = $row['name']; 40 | } 41 | } 42 | return $data; 43 | } 44 | } -------------------------------------------------------------------------------- /application/models/Group.php: -------------------------------------------------------------------------------- 1 | db->order_by('name','asc')->get($this->table, $limit, $offset)->result_array(); 11 | return $categories; 12 | } 13 | 14 | function create($category){ 15 | $this->db->insert($this->table, $category); 16 | } 17 | 18 | function update($category,$id){ 19 | $this->db->where('id',$id); 20 | $this->db->update($this->table,$category); 21 | } 22 | 23 | function delete($id){ 24 | $this->db->where('id',$id); 25 | $this->db->delete($this->table); 26 | } 27 | 28 | function find_by_id($id){ 29 | $this->db->where('id',$id); 30 | return $this->db->get($this->table,1)->row_array(); 31 | } 32 | 33 | function find_list(){ 34 | $this->db->order_by('name','asc'); 35 | $query = $this->db->get($this->table); 36 | $data = array(); 37 | if ($query->num_rows() > 0) { 38 | foreach ($query->result_array() as $row) { 39 | $data[$row['id']] = $row['name']; 40 | } 41 | } 42 | return $data; 43 | } 44 | } -------------------------------------------------------------------------------- /application/models/Page.php: -------------------------------------------------------------------------------- 1 | db->select('posts.*,users.username'); 11 | $this->db->join('users', 'users.id = posts.user_id'); 12 | if ($q != null) { 13 | $this->db->like('title', $q); 14 | } 15 | if($user_id != null){ 16 | $this->db->where('user_id',$user_id); 17 | } 18 | $this->db->where('type','page'); 19 | $this->db->limit($limit, $offset); 20 | $this->db->order_by('published_at', 'desc'); 21 | $query = $this->db->get($this->table); 22 | 23 | return $query->result_array(); 24 | } 25 | 26 | function create($post){ 27 | $post['slug'] = url_title($post['title'],'-',true); 28 | $post['body'] = trim(preg_replace('/\s\s+/', ' ',$post['body'])); 29 | $this->db->insert($this->table, $post); 30 | } 31 | 32 | function update($post,$id){ 33 | $post['slug'] = url_title($post['title'],'-',true); 34 | $post['body'] = trim(preg_replace('/\s\s+/', ' ',$post['body'])); 35 | $this->db->where('id',$id); 36 | $this->db->update($this->table,$post); 37 | } 38 | 39 | function delete($id){ 40 | $this->db->where('id',$id); 41 | $this->db->delete($this->table); 42 | } 43 | 44 | function find_by_id($id){ 45 | $this->db->where('id',$id); 46 | return $this->db->get($this->table,1)->row_array(); 47 | } 48 | 49 | } -------------------------------------------------------------------------------- /application/models/User.php: -------------------------------------------------------------------------------- 1 | db->select('ug.user_id, u.*, GROUP_CONCAT(g.name) AS groups'); 12 | $this->db->join('groups g','ug.group_id=g.id'); 13 | $this->db->join('users u','ug.user_id=u.id'); 14 | $this->db->group_by('ug.user_id'); 15 | $users = $this->db->get('users_groups ug',$limit,$offset)->result_array(); 16 | return $users; 17 | } 18 | 19 | function create($user){ 20 | $this->db->insert($this->table, $user); 21 | } 22 | 23 | function update($user,$id){ 24 | $this->db->where('id',$id); 25 | $this->db->update($this->table,$user); 26 | } 27 | 28 | function delete($id){ 29 | $this->db->where('id',$id); 30 | $this->db->delete($this->table); 31 | } 32 | 33 | function find_by_id($id){ 34 | $this->db->select('ug.user_id, u.*, GROUP_CONCAT(g.id) AS group_ids,GROUP_CONCAT(g.name) AS groups'); 35 | $this->db->join('groups g','ug.group_id=g.id'); 36 | $this->db->join('users u','ug.user_id=u.id'); 37 | $this->db->group_by('ug.user_id'); 38 | $this->db->where('u.id',$id); 39 | return $this->db->get('users_groups ug')->row_array(); 40 | } 41 | 42 | function find_list(){ 43 | $this->db->order_by('name','asc'); 44 | $query = $this->db->get($this->table); 45 | $data = array(); 46 | if ($query->num_rows() > 0) { 47 | foreach ($query->result_array() as $row) { 48 | $data[$row['id']] = $row['name']; 49 | } 50 | } 51 | return $data; 52 | } 53 | } -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/admin/controllers/Dashboard.php: -------------------------------------------------------------------------------- 1 | data['welcome'] = 'Ini adalah halaman admin'; 13 | // $this->render('admin/dashboard/index'); 14 | } 15 | } -------------------------------------------------------------------------------- /application/modules/admin/controllers/Settings.php: -------------------------------------------------------------------------------- 1 | allow_group_access(array('admin')); 9 | 10 | $this->load->model('Setting'); 11 | $this->data['parent_menu'] = 'post'; 12 | } 13 | 14 | public function index(){ 15 | 16 | if(!empty($_POST['settings'])){ 17 | 18 | 19 | foreach($_POST['settings'] as $key => $setting){ 20 | $this->Setting->update_by_key($key,$setting); 21 | } 22 | 23 | $this->session->set_flashdata('message',message_box('Setting has been saved','success')); 24 | redirect('admin/settings/index'); 25 | } 26 | $this->data['settings'] = $this->Setting->findAll(); 27 | $this->load_admin('settings/index'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /application/modules/welcome/controllers/Welcome.php: -------------------------------------------------------------------------------- 1 | 19 | * @see http://codeigniter.com/user_guide/general/urls.html 20 | */ 21 | public function __construct(){ 22 | parent::__construct(); 23 | $this->load->model('Post'); 24 | } 25 | public function index() 26 | { 27 | $this->data['home_page'] = 1; 28 | $this->data['posts'] = $this->Post->find_active(3); 29 | $this->load_theme('welcome'); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/admin/default/assets/browse.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
  • 4 | 5 | 6 | 7 |
  • 8 | 9 |
  • 10 | 1):?> 11 | Prev 12 | 13 | 14 | Next 15 | 16 |
  • 17 | -------------------------------------------------------------------------------- /application/views/admin/default/assets/browse_assets.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
  • 4 | 5 | 6 | 7 |
  • 8 | 9 |
  • 10 | 1):?> 11 | Prev 12 | 13 | 14 | Next 15 | 16 |
  • 17 | -------------------------------------------------------------------------------- /application/views/admin/default/categories/add.php: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 4 |
    5 |
    6 |

    New Category

    7 |
    8 | 9 |
    10 |
    11 | 12 |
    13 | 14 | 15 |
    16 |
    17 | 18 | 'form-control')); 20 | ?> 21 |
    22 |
    23 | 24 | 28 |
    29 |
    30 |
    31 |
    -------------------------------------------------------------------------------- /application/views/admin/default/groups/add.php: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 4 |
    5 |
    6 |

    New Group

    7 |
    8 | 9 |
    10 |
    11 | 12 |
    13 | 14 | 15 |
    16 |
    17 | 18 | 19 |
    20 |
    21 | 22 | 26 |
    27 |
    28 |
    29 |
    -------------------------------------------------------------------------------- /application/views/admin/default/settings/index.php: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 4 |
    5 |
    6 |

    Setting

    7 |
    8 | 9 |
    10 |
    11 | session->flashdata('message');?> 12 | 13 | 14 | 15 |
    16 | 17 | 18 |
    19 | 20 | 21 |
    22 | 23 | 27 |
    28 |
    29 |
    30 |
    -------------------------------------------------------------------------------- /application/views/admin/default/users/change_password.php: -------------------------------------------------------------------------------- 1 |

    2 | 3 |
    4 | 5 | 6 | 7 |

    8 |
    9 | 10 |

    11 | 12 |

    13 |
    14 | 15 |

    16 | 17 |

    18 |
    19 | 20 |

    21 | 22 | 23 |

    24 | 25 | 26 | -------------------------------------------------------------------------------- /application/views/email/activate.tpl.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

    4 |

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

    4 |

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

    4 | 5 |

    6 | 7 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | An uncaught Exception was encountered 4 | 5 | Type: 6 | Message: 7 | Filename: getFile(), "\n"; ?> 8 | Line Number: getLine(); ?> 9 | 10 | 11 | 12 | Backtrace: 13 | getTrace() as $error): ?> 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | A PHP Error was encountered 4 | 5 | Severity: 6 | Message: 7 | Filename: 8 | Line Number: 9 | 10 | 11 | 12 | Backtrace: 13 | 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/html/error_404.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 404 Page Not Found 8 | 57 | 58 | 59 |
    60 |

    61 | 62 |
    63 | 64 | -------------------------------------------------------------------------------- /application/views/errors/html/error_db.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Database Error 8 | 57 | 58 | 59 |
    60 |

    61 | 62 |
    63 | 64 | -------------------------------------------------------------------------------- /application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
    6 | 7 |

    An uncaught Exception was encountered

    8 | 9 |

    Type:

    10 |

    Message:

    11 |

    Filename: getFile(); ?>

    12 |

    Line Number: getLine(); ?>

    13 | 14 | 15 | 16 |

    Backtrace:

    17 | getTrace() as $error): ?> 18 | 19 | 20 | 21 |

    22 | File:
    23 | Line:
    24 | Function: 25 |

    26 | 27 | 28 | 29 | 30 | 31 | 32 |
    -------------------------------------------------------------------------------- /application/views/errors/html/error_general.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Error 8 | 57 | 58 | 59 |
    60 |

    61 | 62 |
    63 | 64 | -------------------------------------------------------------------------------- /application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
    6 | 7 |

    A PHP Error was encountered

    8 | 9 |

    Severity:

    10 |

    Message:

    11 |

    Filename:

    12 |

    Line Number:

    13 | 14 | 15 | 16 |

    Backtrace:

    17 | 18 | 19 | 20 | 21 |

    22 | File:
    23 | Line:
    24 | Function: 25 |

    26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
    -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /application/views/themes/default/auth/change_password.php: -------------------------------------------------------------------------------- 1 |

    2 | 3 |
    4 | 5 | 6 | 7 |

    8 |
    9 | 10 |

    11 | 12 |

    13 |
    14 | 15 |

    16 | 17 |

    18 |
    19 | 20 |

    21 | 22 | 23 |

    24 | 25 | 26 | -------------------------------------------------------------------------------- /application/views/themes/default/auth/create_group.php: -------------------------------------------------------------------------------- 1 |

    2 |

    3 | 4 |
    5 | 6 | 7 | 8 |

    9 |
    10 | 11 |

    12 | 13 |

    14 |
    15 | 16 |

    17 | 18 |

    19 | 20 | -------------------------------------------------------------------------------- /application/views/themes/default/auth/create_user.php: -------------------------------------------------------------------------------- 1 |

    2 |

    3 | 4 |
    5 | 6 | 7 | 8 |

    9 |
    10 | 11 |

    12 | 13 |

    14 |
    15 | 16 |

    17 | 18 |

    19 |
    20 | 21 |

    22 | 23 |

    24 |
    25 | 26 |

    27 | 28 |

    29 |
    30 | 31 |

    32 | 33 |

    34 |
    35 | 36 |

    37 | 38 |

    39 |
    40 | 41 |

    42 | 43 | 44 |

    45 | 46 | 47 | -------------------------------------------------------------------------------- /application/views/themes/default/auth/deactivate_user.php: -------------------------------------------------------------------------------- 1 |

    2 |

    username);?>

    3 | 4 | id);?> 5 | 6 |

    7 | 8 | 9 | 10 | 11 |

    12 | 13 | 14 | $user->id)); ?> 15 | 16 |

    17 | 18 | -------------------------------------------------------------------------------- /application/views/themes/default/auth/edit_group.php: -------------------------------------------------------------------------------- 1 |

    2 |

    3 | 4 |
    5 | 6 | 7 | 8 |

    9 |
    10 | 11 |

    12 | 13 |

    14 |
    15 | 16 |

    17 | 18 |

    19 | 20 | -------------------------------------------------------------------------------- /application/views/themes/default/auth/forgot_password.php: -------------------------------------------------------------------------------- 1 |

    2 |

    3 | 4 |
    5 | 6 | 7 | 8 |

    9 |
    10 | 11 |

    12 | 13 |

    14 | 15 | -------------------------------------------------------------------------------- /application/views/themes/default/auth/index.php: -------------------------------------------------------------------------------- 1 |

    2 |

    3 | 4 |
    5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 25 | 26 | 27 | 28 | 29 |
    first_name;?>last_name;?>email;?> 21 | groups as $group):?> 22 | id, $group->name) ;?>
    23 | 24 |
    active) ? anchor("auth/deactivate/".$user->id, lang('index_active_link')) : anchor("auth/activate/". $user->id, lang('index_inactive_link'));?>id, 'Edit') ;?>
    30 | 31 |

    |

    -------------------------------------------------------------------------------- /application/views/themes/default/auth/login.php: -------------------------------------------------------------------------------- 1 |

    2 |

    3 | 4 |
    5 | 6 | 7 | 8 |

    9 | 10 | 11 |

    12 | 13 |

    14 | 15 | 16 |

    17 | 18 |

    19 | 20 | 21 |

    22 | 23 | 24 |

    25 | 26 | 27 | 28 |

    -------------------------------------------------------------------------------- /application/views/themes/default/auth/reset_password.php: -------------------------------------------------------------------------------- 1 |

    2 | 3 |
    4 | 5 | 6 | 7 |

    8 |
    9 | 10 |

    11 | 12 |

    13 |
    14 | 15 |

    16 | 17 | 18 | 19 | 20 |

    21 | 22 | -------------------------------------------------------------------------------- /application/views/themes/default/footer.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/views/themes/default/header.php: -------------------------------------------------------------------------------- 1 | 2 | 20 | -------------------------------------------------------------------------------- /application/views/themes/default/posts/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | 5 |
    6 | <?php echo $post['title'];?> 7 |
    8 | 9 |
    10 |

    11 |
    '),30)?> 12 |
    13 | 20 |
    21 | 22 | 23 | -------------------------------------------------------------------------------- /application/views/themes/default/posts/read.php: -------------------------------------------------------------------------------- 1 |
    2 | 3 |
    4 | 5 |
    6 | 7 |
    8 | 9 |
    10 | 22 |
    -------------------------------------------------------------------------------- /application/views/themes/default/welcome.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | 5 |
    6 | <?php echo $post['title'];?> 7 |
    8 | 9 |
    10 |

    11 |
    '),30)?> 12 |
    13 | 20 |
    21 | 22 | -------------------------------------------------------------------------------- /assets/admin/default/css/custom.css: -------------------------------------------------------------------------------- 1 | .select2-container--default .select2-selection--multiple{ 2 | border-radius: 0; 3 | border: 1px solid #aaa; 4 | font-size: 14px; 5 | line-height: 14px; 6 | } 7 | 8 | .select2-container--default .select2-selection--multiple ul{ 9 | margin-bottom: 0; 10 | } 11 | 12 | .datepicker{ 13 | padding: 6px 10px 10px !important; 14 | margin-top: 0; 15 | } 16 | 17 | .datepicker.form-control{ 18 | height: 34px !important; 19 | } -------------------------------------------------------------------------------- /assets/admin/default/css/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /assets/admin/default/css/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /assets/admin/default/css/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/datatables/images/sort_both.png -------------------------------------------------------------------------------- /assets/admin/default/css/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /assets/admin/default/css/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /assets/admin/default/css/fullcalendar/fullcalendar.print.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * FullCalendar v1.6.4 Print Stylesheet 3 | * Docs & License: http://arshaw.com/fullcalendar/ 4 | * (c) 2013 Adam Shaw 5 | */ 6 | 7 | /* 8 | * Include this stylesheet on your page to get a more printer-friendly calendar. 9 | * When including this stylesheet, use the media='print' attribute of the tag. 10 | * Make sure to include this stylesheet IN ADDITION to the regular fullcalendar.css. 11 | */ 12 | 13 | 14 | /* Events 15 | -----------------------------------------------------*/ 16 | .fc-event { 17 | background: #fff !important; 18 | color: #000 !important; 19 | } 20 | 21 | /* for vertical events */ 22 | 23 | .fc-event-bg { 24 | display: none !important; 25 | } 26 | 27 | .fc-event .ui-resizable-handle { 28 | display: none !important; 29 | } -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/aero.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, aero 2 | ----------------------------------- */ 3 | .icheckbox_flat-aero, 4 | .iradio_flat-aero { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(aero.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-aero { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-aero.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-aero.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-aero.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-aero { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-aero.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-aero.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-aero.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-aero, 51 | .iradio_flat-aero { 52 | background-image: url(aero@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/aero.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/blue.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, blue 2 | ----------------------------------- */ 3 | .icheckbox_flat-blue, 4 | .iradio_flat-blue { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(blue.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-blue { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-blue.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-blue.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-blue.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-blue { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-blue.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-blue.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-blue.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-blue, 51 | .iradio_flat-blue { 52 | background-image: url(blue@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/blue.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/flat.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin flat skin, black 2 | ----------------------------------- */ 3 | .icheckbox_flat, 4 | .iradio_flat { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(flat.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat, 51 | .iradio_flat { 52 | background-image: url(flat@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/flat.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/green.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/grey.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, grey 2 | ----------------------------------- */ 3 | .icheckbox_flat-grey, 4 | .iradio_flat-grey { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(grey.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-grey { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-grey.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-grey.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-grey.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-grey { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-grey.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-grey.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-grey.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-grey, 51 | .iradio_flat-grey { 52 | background-image: url(grey@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/grey.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/orange.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/orange@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/pink.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, pink 2 | ----------------------------------- */ 3 | .icheckbox_flat-pink, 4 | .iradio_flat-pink { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(pink.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-pink { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-pink.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-pink.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-pink.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-pink { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-pink.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-pink.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-pink.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-pink, 51 | .iradio_flat-pink { 52 | background-image: url(pink@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/pink.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/pink@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/purple.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/purple@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/red.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, red 2 | ----------------------------------- */ 3 | .icheckbox_flat-red, 4 | .iradio_flat-red { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(red.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-red { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-red.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-red.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-red.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-red { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-red.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-red.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-red.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-red, 51 | .iradio_flat-red { 52 | background-image: url(red@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/red.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/futurico/futurico.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/futurico/futurico@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/line/line.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/line/line@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/aero.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/aero@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/blue.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/blue@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/green.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/green@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/grey.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/grey@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/minimal.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/minimal@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/orange.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/orange@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/pink.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/pink@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/purple.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/purple@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/red.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/red@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/yellow.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/minimal/yellow@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/polaris/polaris.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/polaris/polaris@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/aero.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/aero@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/blue.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/green.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/green@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/grey.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/grey@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/orange.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/orange@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/pink.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/pink@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/purple.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/purple@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/red.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/red@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/square.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/square@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/yellow.png -------------------------------------------------------------------------------- /assets/admin/default/css/iCheck/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/iCheck/square/yellow@2x.png -------------------------------------------------------------------------------- /assets/admin/default/css/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/images/animated-overlay.gif -------------------------------------------------------------------------------- /assets/admin/default/css/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /assets/admin/default/css/images/ui-bg_flat_55_fbec88_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/images/ui-bg_flat_55_fbec88_40x100.png -------------------------------------------------------------------------------- /assets/admin/default/css/images/ui-bg_glass_75_d0e5f5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/images/ui-bg_glass_75_d0e5f5_1x400.png -------------------------------------------------------------------------------- /assets/admin/default/css/images/ui-bg_glass_85_dfeffc_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/images/ui-bg_glass_85_dfeffc_1x400.png -------------------------------------------------------------------------------- /assets/admin/default/css/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /assets/admin/default/css/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png -------------------------------------------------------------------------------- /assets/admin/default/css/images/ui-bg_inset-hard_100_f5f8f9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/images/ui-bg_inset-hard_100_f5f8f9_1x100.png -------------------------------------------------------------------------------- /assets/admin/default/css/images/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/images/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /assets/admin/default/css/images/ui-icons_217bc0_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/images/ui-icons_217bc0_256x240.png -------------------------------------------------------------------------------- /assets/admin/default/css/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /assets/admin/default/css/images/ui-icons_469bdd_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/images/ui-icons_469bdd_256x240.png -------------------------------------------------------------------------------- /assets/admin/default/css/images/ui-icons_6da8d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/images/ui-icons_6da8d5_256x240.png -------------------------------------------------------------------------------- /assets/admin/default/css/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /assets/admin/default/css/images/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/images/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /assets/admin/default/css/images/ui-icons_f9bd01_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/images/ui-icons_f9bd01_256x240.png -------------------------------------------------------------------------------- /assets/admin/default/css/jQueryUI/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/jQueryUI/images/animated-overlay.gif -------------------------------------------------------------------------------- /assets/admin/default/css/jQueryUI/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/jQueryUI/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /assets/admin/default/css/jQueryUI/images/ui-bg_flat_100_e6e7e8_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/jQueryUI/images/ui-bg_flat_100_e6e7e8_40x100.png -------------------------------------------------------------------------------- /assets/admin/default/css/jQueryUI/images/ui-bg_flat_100_f56954_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/jQueryUI/images/ui-bg_flat_100_f56954_40x100.png -------------------------------------------------------------------------------- /assets/admin/default/css/jQueryUI/images/ui-bg_flat_55_f39c12_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/jQueryUI/images/ui-bg_flat_55_f39c12_40x100.png -------------------------------------------------------------------------------- /assets/admin/default/css/jQueryUI/images/ui-bg_flat_65_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/jQueryUI/images/ui-bg_flat_65_ffffff_40x100.png -------------------------------------------------------------------------------- /assets/admin/default/css/jQueryUI/images/ui-bg_flat_75_dadada_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/jQueryUI/images/ui-bg_flat_75_dadada_40x100.png -------------------------------------------------------------------------------- /assets/admin/default/css/jQueryUI/images/ui-bg_flat_75_e6e6e6_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/jQueryUI/images/ui-bg_flat_75_e6e6e6_40x100.png -------------------------------------------------------------------------------- /assets/admin/default/css/jQueryUI/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/jQueryUI/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /assets/admin/default/css/jQueryUI/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/jQueryUI/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /assets/admin/default/css/jQueryUI/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/jQueryUI/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /assets/admin/default/css/jQueryUI/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/jQueryUI/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /assets/admin/default/css/jQueryUI/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/css/jQueryUI/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /assets/admin/default/css/jvectormap/jquery-jvectormap-1.2.2.css: -------------------------------------------------------------------------------- 1 | .jvectormap-label { 2 | position: absolute; 3 | display: none; 4 | border: solid 1px #CDCDCD; 5 | -webkit-border-radius: 3px; 6 | -moz-border-radius: 3px; 7 | border-radius: 3px; 8 | background: #292929; 9 | color: white; 10 | font-size: 10px!important; 11 | padding: 3px; 12 | z-index: 9999; 13 | } 14 | 15 | .jvectormap-zoomin, .jvectormap-zoomout { 16 | position: absolute; 17 | left: 10px; 18 | -webkit-border-radius: 3px; 19 | -moz-border-radius: 3px; 20 | border-radius: 3px; 21 | background: #292929; 22 | padding: 5px; 23 | color: white; 24 | cursor: pointer; 25 | line-height: 10px; 26 | text-align: center; 27 | font-weight: bold; 28 | } 29 | 30 | .jvectormap-zoomin { 31 | top: 10px; 32 | } 33 | 34 | .jvectormap-zoomout { 35 | top: 35px; 36 | } -------------------------------------------------------------------------------- /assets/admin/default/css/morris/morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1090;}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#444;background:rgba(255, 255, 255, 0.8);border:solid 2px rgba(230, 230, 230, 0.8);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/admin/default/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/admin/default/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/admin/default/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/admin/default/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/admin/default/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/admin/default/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/admin/default/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/admin/default/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/admin/default/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/fonts/ionicons.eot -------------------------------------------------------------------------------- /assets/admin/default/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/fonts/ionicons.ttf -------------------------------------------------------------------------------- /assets/admin/default/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/fonts/ionicons.woff -------------------------------------------------------------------------------- /assets/admin/default/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/ajax-loader.gif -------------------------------------------------------------------------------- /assets/admin/default/img/ajax-loader1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/ajax-loader1.gif -------------------------------------------------------------------------------- /assets/admin/default/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/avatar.png -------------------------------------------------------------------------------- /assets/admin/default/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/avatar04.png -------------------------------------------------------------------------------- /assets/admin/default/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/avatar2.png -------------------------------------------------------------------------------- /assets/admin/default/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/avatar3.png -------------------------------------------------------------------------------- /assets/admin/default/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/avatar5.png -------------------------------------------------------------------------------- /assets/admin/default/img/blur-background04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/blur-background04.jpg -------------------------------------------------------------------------------- /assets/admin/default/img/blur-background08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/blur-background08.jpg -------------------------------------------------------------------------------- /assets/admin/default/img/blur-background09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/blur-background09.jpg -------------------------------------------------------------------------------- /assets/admin/default/img/bootstrap-colorpicker/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/bootstrap-colorpicker/alpha-horizontal.png -------------------------------------------------------------------------------- /assets/admin/default/img/bootstrap-colorpicker/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/bootstrap-colorpicker/alpha.png -------------------------------------------------------------------------------- /assets/admin/default/img/bootstrap-colorpicker/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/bootstrap-colorpicker/hue-horizontal.png -------------------------------------------------------------------------------- /assets/admin/default/img/bootstrap-colorpicker/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/bootstrap-colorpicker/hue.png -------------------------------------------------------------------------------- /assets/admin/default/img/bootstrap-colorpicker/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/bootstrap-colorpicker/saturation.png -------------------------------------------------------------------------------- /assets/admin/default/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/credit/american-express.png -------------------------------------------------------------------------------- /assets/admin/default/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/credit/cirrus.png -------------------------------------------------------------------------------- /assets/admin/default/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/credit/mastercard.png -------------------------------------------------------------------------------- /assets/admin/default/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/credit/mestro.png -------------------------------------------------------------------------------- /assets/admin/default/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/credit/paypal.png -------------------------------------------------------------------------------- /assets/admin/default/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/credit/paypal2.png -------------------------------------------------------------------------------- /assets/admin/default/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/credit/visa.png -------------------------------------------------------------------------------- /assets/admin/default/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/icons.png -------------------------------------------------------------------------------- /assets/admin/default/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /assets/admin/default/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /assets/admin/default/img/user-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/user-bg.png -------------------------------------------------------------------------------- /assets/admin/default/img/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/user.jpg -------------------------------------------------------------------------------- /assets/admin/default/img/user2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/img/user2.jpg -------------------------------------------------------------------------------- /assets/admin/default/js/custom.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | $('.btnShowAssets').click(function(){ 3 | $('#assetsList').html(''); 4 | // =============== Modified by @gieart_dotcom =========== 5 | $.ajax({ 6 | type : 'GET', 7 | url : SERVER + 'admin/assets/browse_assets', 8 | success : function (images){ 9 | $('#assetsList').html(images); 10 | } 11 | }); 12 | // ======================================================= 13 | }) 14 | }); 15 | 16 | 17 | function setFeaturedImage(path){ 18 | var asset_path = path.replace(BASE_URI,""); 19 | $('#featured_image').val(asset_path); 20 | 21 | $('.preview_featured_image').html(''); 22 | } 23 | 24 | function removeFeaturedImage(){ 25 | $('#featured_image').val(''); 26 | $('.preview_featured_image').html(''); 27 | } 28 | 29 | browseAsset = function(page){ 30 | $('#assetsList').html(''); 31 | // =============== Modified by @gieart_dotcom =========== 32 | $.ajax({ 33 | type : 'GET', 34 | url : SERVER + 'admin/assets/browse_assets?page='+page, 35 | success : function (images){ 36 | $('#assetsList').html(images); 37 | } 38 | }); 39 | // ======================================================= 40 | } -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/README.md: -------------------------------------------------------------------------------- 1 | CKEditor 4 2 | ========== 3 | 4 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 5 | http://ckeditor.com - See LICENSE.md for license information. 6 | 7 | CKEditor is a text editor to be used inside web pages. It's not a replacement 8 | for desktop text editors like Word or OpenOffice, but a component to be used as 9 | part of web applications and websites. 10 | 11 | ## Documentation 12 | 13 | The full editor documentation is available online at the following address: 14 | http://docs.ckeditor.com 15 | 16 | ## Installation 17 | 18 | Installing CKEditor is an easy task. Just follow these simple steps: 19 | 20 | 1. **Download** the latest version from the CKEditor website: 21 | http://ckeditor.com. You should have already completed this step, but be 22 | sure you have the very latest version. 23 | 2. **Extract** (decompress) the downloaded file into the root of your website. 24 | 25 | **Note:** CKEditor is by default installed in the `ckeditor` folder. You can 26 | place the files in whichever you want though. 27 | 28 | ## Checking Your Installation 29 | 30 | The editor comes with a few sample pages that can be used to verify that 31 | installation proceeded properly. Take a look at the `samples` directory. 32 | 33 | To test your installation, just call the following page at your website: 34 | 35 | http:////samples/index.html 36 | 37 | For example: 38 | 39 | http://www.example.com/ckeditor/samples/index.html 40 | -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) { 7 | // Define changes to default configuration here. 8 | // For the complete reference: 9 | // http://docs.ckeditor.com/#!/api/CKEDITOR.config 10 | 11 | // The toolbar groups arrangement, optimized for two toolbar rows. 12 | config.toolbarGroups = [ 13 | { name: 'clipboard', groups: [ 'clipboard', 'undo' ] }, 14 | { name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] }, 15 | { name: 'links' }, 16 | { name: 'insert' }, 17 | { name: 'forms' }, 18 | { name: 'tools' }, 19 | { name: 'document', groups: [ 'mode', 'document', 'doctools' ] }, 20 | { name: 'others' }, 21 | '/', 22 | { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] }, 23 | { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] }, 24 | { name: 'styles' }, 25 | { name: 'colors' }, 26 | { name: 'about' } 27 | ]; 28 | 29 | // Remove some buttons, provided by the standard plugins, which we don't 30 | // need to have in the Standard(s) toolbar. 31 | config.removeButtons = 'Underline,Subscript,Superscript'; 32 | 33 | // Se the most common block elements. 34 | config.format_tags = 'p;h1;h2;h3;pre'; 35 | 36 | // Make dialogs simpler. 37 | config.removeDialogTabs = 'image:advanced;link:advanced'; 38 | }; 39 | -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 30 Missing: 0 5 | cy.js Found: 30 Missing: 0 6 | da.js Found: 12 Missing: 18 7 | de.js Found: 30 Missing: 0 8 | el.js Found: 25 Missing: 5 9 | eo.js Found: 30 Missing: 0 10 | fa.js Found: 30 Missing: 0 11 | fi.js Found: 30 Missing: 0 12 | fr.js Found: 30 Missing: 0 13 | gu.js Found: 12 Missing: 18 14 | he.js Found: 30 Missing: 0 15 | it.js Found: 30 Missing: 0 16 | mk.js Found: 5 Missing: 25 17 | nb.js Found: 30 Missing: 0 18 | nl.js Found: 30 Missing: 0 19 | no.js Found: 30 Missing: 0 20 | pt-br.js Found: 30 Missing: 0 21 | ro.js Found: 6 Missing: 24 22 | tr.js Found: 30 Missing: 0 23 | ug.js Found: 27 Missing: 3 24 | vi.js Found: 6 Missing: 24 25 | zh-cn.js Found: 30 Missing: 0 26 | -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.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 | CKEDITOR.plugins.setLang("a11yhelp","zh-cn",{title:"辅助功能说明",contents:"帮助内容。要关闭此对话框请按 ESC 键。",legend:[{name:"常规",items:[{name:"编辑器工具栏",legend:"按 ${toolbarFocus} 导航到工具栏,使用 TAB 键和 SHIFT+TAB 组合键移动到上一个和下一个工具栏组。使用左右箭头键移动到上一个和下一个工具栏按钮。按空格键或回车键以选中工具栏按钮。"},{name:"编辑器对话框",legend:"在对话框内,TAB 键移动到下一个字段,SHIFT + TAB 组合键移动到上一个字段,ENTER 键提交对话框,ESC 键取消对话框。对于有多选项卡的对话框,用ALT + F10来移到选项卡列表。然后用 TAB 键或者向右箭头来移动到下一个选项卡;SHIFT + TAB 组合键或者向左箭头移动到上一个选项卡。用 SPACE 键或者 ENTER 键选择选项卡。"},{name:"编辑器上下文菜单",legend:"用 ${contextMenu} 或者“应用程序键”打开上下文菜单。然后用 TAB 键或者下箭头键来移动到下一个菜单项;SHIFT + TAB 组合键或者上箭头键移动到上一个菜单项。用 SPACE 键或者 ENTER 键选择菜单项。用 SPACE 键,ENTER 键或者右箭头键打开子菜单。返回菜单用 ESC 键或者左箭头键。用 ESC 键关闭上下文菜单。"}, 6 | {name:"编辑器列表框",legend:"在列表框中,移到下一列表项用 TAB 键或者下箭头键。移到上一列表项用SHIFT + TAB 组合键或者上箭头键,用 SPACE 键或者 ENTER 键选择列表项。用 ESC 键收起列表框。"},{name:"编辑器元素路径栏",legend:"按 ${elementsPathFocus} 以导航到元素路径栏,使用 TAB 键或右箭头键选择下一个元素,使用 SHIFT+TAB 组合键或左箭头键选择上一个元素,按空格键或回车键以选定编辑器里的元素。"}]},{name:"命令",items:[{name:" 撤消命令",legend:"按 ${undo}"},{name:" 重做命令",legend:"按 ${redo}"},{name:" 加粗命令",legend:"按 ${bold}"},{name:" 倾斜命令",legend:"按 ${italic}"},{name:" 下划线命令",legend:"按 ${underline}"},{name:" 链接命令",legend:"按 ${link}"},{name:" 工具栏折叠命令",legend:"按 ${toolbarCollapse}"}, 7 | {name:"访问前一个焦点区域的命令",legend:"按 ${accessPreviousSpace} 访问^符号前最近的不可访问的焦点区域,例如:两个相邻的 HR 元素。重复此组合按键可以到达远处的焦点区域。"},{name:"访问下一个焦点区域命令",legend:"按 ${accessNextSpace} 以访问^符号后最近的不可访问的焦点区域。例如:两个相邻的 HR 元素。重复此组合按键可以到达远处的焦点区域。"},{name:"辅助功能帮助",legend:"按 ${a11yHelp}"}]}]}); -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/about/dialogs/about.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 | CKEDITOR.dialog.add("about",function(a){var a=a.lang.about,b=CKEDITOR.plugins.get("about").path+"dialogs/"+(CKEDITOR.env.hidpi?"hidpi/":"")+"logo_ckeditor.png";return{title:CKEDITOR.env.ie?a.dlgTitle:a.title,minWidth:390,minHeight:230,contents:[{id:"tab1",label:"",title:"",expand:!0,padding:0,elements:[{type:"html",html:'

    CKEditor '+CKEDITOR.version+" (revision "+CKEDITOR.revision+')
    http://ckeditor.com

    '+a.help.replace("$1",''+ 7 | a.userGuide+"")+"

    "+a.moreInfo+'
    http://ckeditor.com/about/license

    '+a.copy.replace("$1",'CKSource - Frederico Knabben')+"

    "}]}],buttons:[CKEDITOR.dialog.cancelButton]}}); -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/admin/default/js/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/admin/default/js/plugins/ckeditor/plugins/fakeobjects/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/plugins/fakeobjects/images/spacer.gif -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/scayt/LICENSE.md: -------------------------------------------------------------------------------- 1 | Software License Agreement 2 | ========================== 3 | 4 | **CKEditor SCAYT Plugin** 5 | Copyright © 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved. 6 | 7 | Licensed under the terms of any of the following licenses at your choice: 8 | 9 | * GNU General Public License Version 2 or later (the "GPL"): 10 | http://www.gnu.org/licenses/gpl.html 11 | 12 | * GNU Lesser General Public License Version 2.1 or later (the "LGPL"): 13 | http://www.gnu.org/licenses/lgpl.html 14 | 15 | * Mozilla Public License Version 1.1 or later (the "MPL"): 16 | http://www.mozilla.org/MPL/MPL-1.1.html 17 | 18 | You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice. 19 | 20 | Sources of Intellectual Property Included in this plugin 21 | -------------------------------------------------------- 22 | 23 | Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission. 24 | 25 | Trademarks 26 | ---------- 27 | 28 | CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders. 29 | -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/scayt/README.md: -------------------------------------------------------------------------------- 1 | CKEditor SCAYT Plugin 2 | ===================== 3 | 4 | This plugin brings Spell Check As You Type (SCAYT) into CKEditor. 5 | 6 | SCAYT is a "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/scayt" folder in your CKEditor installation. 12 | 2. Enable the "scayt" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'scayt'; 15 | 16 | That's all. SCAYT will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/scayt/dialogs/toolbar.css: -------------------------------------------------------------------------------- 1 | a 2 | { 3 | text-decoration:none; 4 | padding: 2px 4px 4px 6px; 5 | display : block; 6 | border-width: 1px; 7 | border-style: solid; 8 | margin : 0px; 9 | } 10 | 11 | a.cke_scayt_toogle:hover, 12 | a.cke_scayt_toogle:focus, 13 | a.cke_scayt_toogle:active 14 | { 15 | border-color: #316ac5; 16 | background-color: #dff1ff; 17 | color : #000; 18 | cursor: pointer; 19 | margin : 0px; 20 | } 21 | a.cke_scayt_toogle { 22 | color : #316ac5; 23 | border-color: #fff; 24 | } 25 | .scayt_enabled a.cke_scayt_item { 26 | color : #316ac5; 27 | border-color: #fff; 28 | margin : 0px; 29 | } 30 | .scayt_disabled a.cke_scayt_item { 31 | color : gray; 32 | border-color : #fff; 33 | } 34 | .scayt_enabled a.cke_scayt_item:hover, 35 | .scayt_enabled a.cke_scayt_item:focus, 36 | .scayt_enabled a.cke_scayt_item:active 37 | { 38 | border-color: #316ac5; 39 | background-color: #dff1ff; 40 | color : #000; 41 | cursor: pointer; 42 | } 43 | .scayt_disabled a.cke_scayt_item:hover, 44 | .scayt_disabled a.cke_scayt_item:focus, 45 | .scayt_disabled a.cke_scayt_item:active 46 | { 47 | border-color: gray; 48 | background-color: #dff1ff; 49 | color : gray; 50 | cursor: no-drop; 51 | } 52 | .cke_scayt_set_on, .cke_scayt_set_off 53 | { 54 | display: none; 55 | } 56 | .scayt_enabled .cke_scayt_set_on 57 | { 58 | display: none; 59 | } 60 | .scayt_disabled .cke_scayt_set_on 61 | { 62 | display: inline; 63 | } 64 | .scayt_disabled .cke_scayt_set_off 65 | { 66 | display: none; 67 | } 68 | .scayt_enabled .cke_scayt_set_off 69 | { 70 | display: inline; 71 | } 72 | -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 118 Missing: 0 5 | cy.js Found: 118 Missing: 0 6 | de.js Found: 118 Missing: 0 7 | el.js Found: 16 Missing: 102 8 | eo.js Found: 118 Missing: 0 9 | et.js Found: 31 Missing: 87 10 | fa.js Found: 24 Missing: 94 11 | fi.js Found: 23 Missing: 95 12 | fr.js Found: 118 Missing: 0 13 | hr.js Found: 23 Missing: 95 14 | it.js Found: 118 Missing: 0 15 | nb.js Found: 118 Missing: 0 16 | nl.js Found: 118 Missing: 0 17 | no.js Found: 118 Missing: 0 18 | tr.js Found: 118 Missing: 0 19 | ug.js Found: 39 Missing: 79 20 | zh-cn.js Found: 118 Missing: 0 21 | -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/wsc/LICENSE.md: -------------------------------------------------------------------------------- 1 | Software License Agreement 2 | ========================== 3 | 4 | **CKEditor WSC Plugin** 5 | Copyright © 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved. 6 | 7 | Licensed under the terms of any of the following licenses at your choice: 8 | 9 | * GNU General Public License Version 2 or later (the "GPL"): 10 | http://www.gnu.org/licenses/gpl.html 11 | 12 | * GNU Lesser General Public License Version 2.1 or later (the "LGPL"): 13 | http://www.gnu.org/licenses/lgpl.html 14 | 15 | * Mozilla Public License Version 1.1 or later (the "MPL"): 16 | http://www.mozilla.org/MPL/MPL-1.1.html 17 | 18 | You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice. 19 | 20 | Sources of Intellectual Property Included in this plugin 21 | -------------------------------------------------------- 22 | 23 | Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission. 24 | 25 | Trademarks 26 | ---------- 27 | 28 | CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders. 29 | -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/wsc/README.md: -------------------------------------------------------------------------------- 1 | CKEditor WebSpellChecker Plugin 2 | =============================== 3 | 4 | This plugin brings Web Spell Checker (WSC) into CKEditor. 5 | 6 | WSC is "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/wsc" folder in your CKEditor installation. 12 | 2. Enable the "wsc" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'wsc'; 15 | 16 | That's all. WSC will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/plugins/wsc/dialogs/wsc.css: -------------------------------------------------------------------------------- 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 | html, body 7 | { 8 | background-color: transparent; 9 | margin: 0px; 10 | padding: 0px; 11 | } 12 | 13 | body 14 | { 15 | padding: 10px; 16 | } 17 | 18 | body, td, input, select, textarea 19 | { 20 | font-size: 11px; 21 | font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana; 22 | } 23 | 24 | .midtext 25 | { 26 | padding:0px; 27 | margin:10px; 28 | } 29 | 30 | .midtext p 31 | { 32 | padding:0px; 33 | margin:10px; 34 | } 35 | 36 | .Button 37 | { 38 | border: #737357 1px solid; 39 | color: #3b3b1f; 40 | background-color: #c7c78f; 41 | } 42 | 43 | .PopupTabArea 44 | { 45 | color: #737357; 46 | background-color: #e3e3c7; 47 | } 48 | 49 | .PopupTitleBorder 50 | { 51 | border-bottom: #d5d59d 1px solid; 52 | } 53 | .PopupTabEmptyArea 54 | { 55 | padding-left: 10px; 56 | border-bottom: #d5d59d 1px solid; 57 | } 58 | 59 | .PopupTab, .PopupTabSelected 60 | { 61 | border-right: #d5d59d 1px solid; 62 | border-top: #d5d59d 1px solid; 63 | border-left: #d5d59d 1px solid; 64 | padding: 3px 5px 3px 5px; 65 | color: #737357; 66 | } 67 | 68 | .PopupTab 69 | { 70 | margin-top: 1px; 71 | border-bottom: #d5d59d 1px solid; 72 | cursor: pointer; 73 | } 74 | 75 | .PopupTabSelected 76 | { 77 | font-weight: bold; 78 | cursor: default; 79 | padding-top: 4px; 80 | border-bottom: #f1f1e3 1px solid; 81 | background-color: #f1f1e3; 82 | } 83 | -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/admin/default/js/plugins/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/flot/jquery.flot.symbol.min.js: -------------------------------------------------------------------------------- 1 | (function($){function processRawData(plot,series,datapoints){var handlers={square:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI)/2;ctx.rect(x-size,y-size,size+size,size+size)},diamond:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI/2);ctx.moveTo(x-size,y);ctx.lineTo(x,y-size);ctx.lineTo(x+size,y);ctx.lineTo(x,y+size);ctx.lineTo(x-size,y)},triangle:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(2*Math.PI/Math.sin(Math.PI/3));var height=size*Math.sin(Math.PI/3);ctx.moveTo(x-size/2,y+height/2);ctx.lineTo(x+size/2,y+height/2);if(!shadow){ctx.lineTo(x,y-height/2);ctx.lineTo(x-size/2,y+height/2)}},cross:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI)/2;ctx.moveTo(x-size,y-size);ctx.lineTo(x+size,y+size);ctx.moveTo(x-size,y+size);ctx.lineTo(x+size,y-size)}};var s=series.points.symbol;if(handlers[s])series.points.symbol=handlers[s]}function init(plot){plot.hooks.processDatapoints.push(processRawData)}$.plot.plugins.push({init:init,name:"symbols",version:"1.0"})})(jQuery); -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/input-mask/phone-codes/readme.txt: -------------------------------------------------------------------------------- 1 | more phone masks can be found at https://github.com/andr-04/inputmask-multi -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/misc/jquery.ba-resize.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery resize event - v1.1 - 3/14/2010 3 | * http://benalman.com/projects/jquery-resize-plugin/ 4 | * 5 | * Copyright (c) 2010 "Cowboy" Ben Alman 6 | * Dual licensed under the MIT and GPL licenses. 7 | * http://benalman.com/about/license/ 8 | */ 9 | (function($,h,c){var a=$([]),e=$.resize=$.extend($.resize,{}),i,k="setTimeout",j="resize",d=j+"-special-event",b="delay",f="throttleWindow";e[b]=250;e[f]=true;$.event.special[j]={setup:function(){if(!e[f]&&this[k]){return false}var l=$(this);a=a.add(l);$.data(this,d,{w:l.width(),h:l.height()});if(a.length===1){g()}},teardown:function(){if(!e[f]&&this[k]){return false}var l=$(this);a=a.not(l);l.removeData(d);if(!a.length){clearTimeout(i)}},add:function(l){if(!e[f]&&this[k]){return false}var n;function m(s,o,p){var q=$(this),r=$.data(this,d);r.w=o!==c?o:q.width();r.h=p!==c?p:q.height();n.apply(this,arguments)}if($.isFunction(l)){n=l;return m}else{n=l.handler;l.handler=m}}};function g(){i=h[k](function(){a.each(function(){var n=$(this),m=n.width(),l=n.height(),o=$.data(this,d);if(m!==o.w||l!==o.h){n.trigger(j,[o.w=m,o.h=l])}});g()},e[b])}})(jQuery,this); -------------------------------------------------------------------------------- /assets/admin/default/js/plugins/slimScroll/slimScroll.jquery.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "slimScroll", 3 | "version" : "1.2.0", 4 | "title" : "jQuery slimScroll scrollbar", 5 | "description" : "slimScroll is a small jQuery plugin that transforms any div into a scrollable area. slimScroll doesn't occupy any visual space as it only appears on a user initiated mouse-over.", 6 | "keywords" : ["scrollbar", "scroll", "slimscroll", "scrollable", "scrolling", "scroller", "ui"], 7 | "demo" : "http://rocha.la/jQuery-slimScroll/", 8 | "homepage" : "http://rocha.la/jQuery-slimScroll/", 9 | "download" : "http://rocha.la/jQuery-slimScroll/", 10 | 11 | "author" : { 12 | "name" : "Piotr Rochala", 13 | "url" : "http://rocha.la/" 14 | }, 15 | 16 | "dependencies" : { 17 | "jquery" : ">= 1.7" 18 | }, 19 | 20 | "licenses" : [ 21 | { 22 | "type": "MIT", 23 | "url": "http://www.opensource.org/licenses/mit-license.php" 24 | }, 25 | { 26 | "type": "GPL", 27 | "url": "http://www.opensource.org/licenses/gpl-license.php" 28 | } 29 | ] 30 | } -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/ar.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ar",[],function(){return{errorLoading:function(){return"لا يمكن تحميل النتائج"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="الرجاء حذف "+t+" عناصر";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="الرجاء إضافة "+t+" عناصر";return n},loadingMore:function(){return"جاري تحميل نتائج إضافية..."},maximumSelected:function(e){var t="تستطيع إختيار "+e.maximum+" بنود فقط";return t},noResults:function(){return"لم يتم العثور على أي نتائج"},searching:function(){return"جاري البحث…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/az.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/bg.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bg",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Моля въведете с "+t+" по-малко символ";return t>1&&(n+="a"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Моля въведете още "+t+" символ";return t>1&&(n+="a"),n},loadingMore:function(){return"Зареждат се още…"},maximumSelected:function(e){var t="Можете да направите до "+e.maximum+" ";return e.maximum>1?t+="избора":t+="избор",t},noResults:function(){return"Няма намерени съвпадения"},searching:function(){return"Търсене…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/ca.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ca",[],function(){return{errorLoading:function(){return"La càrrega ha fallat"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Si us plau, elimina "+t+" car";return t==1?n+="àcter":n+="àcters",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Si us plau, introdueix "+t+" car";return t==1?n+="àcter":n+="àcters",n},loadingMore:function(){return"Carregant més resultats…"},maximumSelected:function(e){var t="Només es pot seleccionar "+e.maximum+" element";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No s'han trobat resultats"},searching:function(){return"Cercant…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/cs.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/cs",[],function(){function e(e,t){switch(e){case 2:return t?"dva":"dvě";case 3:return"tři";case 4:return"čtyři"}return""}return{errorLoading:function(){return"Výsledky nemohly být načteny."},inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím zadejte o jeden znak méně":n<=4?"Prosím zadejte o "+e(n,!0)+" znaky méně":"Prosím zadejte o "+n+" znaků méně"},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím zadejte ještě jeden znak":n<=4?"Prosím zadejte ještě další "+e(n,!0)+" znaky":"Prosím zadejte ještě dalších "+n+" znaků"},loadingMore:function(){return"Načítají se další výsledky…"},maximumSelected:function(t){var n=t.maximum;return n==1?"Můžete zvolit jen jednu položku":n<=4?"Můžete zvolit maximálně "+e(n,!1)+" položky":"Můžete zvolit maximálně "+n+" položek"},noResults:function(){return"Nenalezeny žádné položky"},searching:function(){return"Vyhledávání…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/da.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/da",[],function(){return{errorLoading:function(){return"Resultaterne kunne ikke indlæses."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Angiv venligst "+t+" tegn mindre";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Angiv venligst "+t+" tegn mere";return n},loadingMore:function(){return"Indlæser flere resultater…"},maximumSelected:function(e){var t="Du kan kun vælge "+e.maximum+" emne";return e.maximum!=1&&(t+="r"),t},noResults:function(){return"Ingen resultater fundet"},searching:function(){return"Søger…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/de.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/de",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Bitte "+t+" Zeichen weniger eingeben"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Bitte "+t+" Zeichen mehr eingeben"},loadingMore:function(){return"Lade mehr Ergebnisse…"},maximumSelected:function(e){var t="Sie können nur "+e.maximum+" Eintr";return e.maximum===1?t+="ag":t+="äge",t+=" auswählen",t},noResults:function(){return"Keine Übereinstimmungen gefunden"},searching:function(){return"Suche…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/en.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Please delete "+t+" character";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Please enter "+t+" or more characters";return n},loadingMore:function(){return"Loading more results…"},maximumSelected:function(e){var t="You can only select "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/es.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/es",[],function(){return{errorLoading:function(){return"La carga falló"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor, elimine "+t+" car";return t==1?n+="ácter":n+="acteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Por favor, introduzca "+t+" car";return t==1?n+="ácter":n+="acteres",n},loadingMore:function(){return"Cargando más resultados…"},maximumSelected:function(e){var t="Sólo puede seleccionar "+e.maximum+" elemento";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No se encontraron resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/et.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/et",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" vähem",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" rohkem",n},loadingMore:function(){return"Laen tulemusi…"},maximumSelected:function(e){var t="Saad vaid "+e.maximum+" tulemus";return e.maximum==1?t+="e":t+="t",t+=" valida",t},noResults:function(){return"Tulemused puuduvad"},searching:function(){return"Otsin…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/eu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/eu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gutxiago",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gehiago",n},loadingMore:function(){return"Emaitza gehiago kargatzen…"},maximumSelected:function(e){return e.maximum===1?"Elementu bakarra hauta dezakezu":e.maximum+" elementu hauta ditzakezu soilik"},noResults:function(){return"Ez da bat datorrenik aurkitu"},searching:function(){return"Bilatzen…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/fa.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fa",[],function(){return{errorLoading:function(){return"امکان بارگذاری نتایج وجود ندارد."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="لطفاً "+t+" کاراکتر را حذف نمایید";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="لطفاً تعداد "+t+" کاراکتر یا بیشتر وارد نمایید";return n},loadingMore:function(){return"در حال بارگذاری نتایج بیشتر..."},maximumSelected:function(e){var t="شما تنها می‌توانید "+e.maximum+" آیتم را انتخاب نمایید";return t},noResults:function(){return"هیچ نتیجه‌ای یافت نشد"},searching:function(){return"در حال جستجو..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/fi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/fr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fr",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Supprimez "+t+" caractère";return t!==1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Saisissez "+t+" caractère";return t!==1&&(n+="s"),n},loadingMore:function(){return"Chargement de résultats supplémentaires…"},maximumSelected:function(e){var t="Vous pouvez seulement sélectionner "+e.maximum+" élément";return e.maximum!==1&&(t+="s"),t},noResults:function(){return"Aucun résultat trouvé"},searching:function(){return"Recherche en cours…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/gl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/gl",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Elimine ";return t===1?n+="un carácter":n+=t+" caracteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Engada ";return t===1?n+="un carácter":n+=t+" caracteres",n},loadingMore:function(){return"Cargando máis resultados…"},maximumSelected:function(e){var t="Só pode ";return e.maximum===1?t+="un elemento":t+=e.maximum+" elementos",t},noResults:function(){return"Non se atoparon resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/he.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/he",[],function(){return{errorLoading:function(){return"שגיאה בטעינת התוצאות"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="נא למחוק ";return t===1?n+="תו אחד":n+=t+" תווים",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="נא להכניס ";return t===1?n+="תו אחד":n+=t+" תווים",n+=" או יותר",n},loadingMore:function(){return"טוען תוצאות נוספות…"},maximumSelected:function(e){var t="באפשרותך לבחור עד ";return e.maximum===1?t+="פריט אחד":t+=e.maximum+" פריטים",t},noResults:function(){return"לא נמצאו תוצאות"},searching:function(){return"מחפש…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/hi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hi",[],function(){return{errorLoading:function(){return"परिणामों को लोड नहीं किया जा सका।"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" अक्षर को हटा दें";return t>1&&(n=t+" अक्षरों को हटा दें "),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="कृपया "+t+" या अधिक अक्षर दर्ज करें";return n},loadingMore:function(){return"अधिक परिणाम लोड हो रहे है..."},maximumSelected:function(e){var t="आप केवल "+e.maximum+" आइटम का चयन कर सकते हैं";return t},noResults:function(){return"कोई परिणाम नहीं मिला"},searching:function(){return"खोज रहा है..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/hr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hr",[],function(){function e(e){var t=" "+e+" znak";return e%10<5&&e%10>0&&(e%100<5||e%100>19)?e%10>1&&(t+="a"):t+="ova",t}return{errorLoading:function(){return"Preuzimanje nije uspjelo."},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Unesite "+e(n)},inputTooShort:function(t){var n=t.minimum-t.input.length;return"Unesite još "+e(n)},loadingMore:function(){return"Učitavanje rezultata…"},maximumSelected:function(e){return"Maksimalan broj odabranih stavki je "+e.maximum},noResults:function(){return"Nema rezultata"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/hu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/id.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/id",[],function(){return{errorLoading:function(){return"Data tidak boleh diambil."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Hapuskan "+t+" huruf"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Masukkan "+t+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(e){return"Anda hanya dapat memilih "+e.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/is.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/is",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vinsamlegast styttið texta um "+t+" staf";return t<=1?n:n+"i"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vinsamlegast skrifið "+t+" staf";return t>1&&(n+="i"),n+=" í viðbót",n},loadingMore:function(){return"Sæki fleiri niðurstöður…"},maximumSelected:function(e){return"Þú getur aðeins valið "+e.maximum+" atriði"},noResults:function(){return"Ekkert fannst"},searching:function(){return"Leita…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/it.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/it",[],function(){return{errorLoading:function(){return"I risultati non possono essere caricati."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Per favore cancella "+t+" caratter";return t!==1?n+="i":n+="e",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Per favore inserisci "+t+" o più caratteri";return n},loadingMore:function(){return"Caricando più risultati…"},maximumSelected:function(e){var t="Puoi selezionare solo "+e.maximum+" element";return e.maximum!==1?t+="i":t+="o",t},noResults:function(){return"Nessun risultato trovato"},searching:function(){return"Sto cercando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/ja.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ja",[],function(){return{errorLoading:function(){return"結果が読み込まれませんでした"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" 文字を削除してください";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="少なくとも "+t+" 文字を入力してください";return n},loadingMore:function(){return"読み込み中…"},maximumSelected:function(e){var t=e.maximum+" 件しか選択できません";return t},noResults:function(){return"対象が見つかりません"},searching:function(){return"検索しています…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/ko.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="너무 깁니다. "+t+" 글자 지워주세요.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="너무 짧습니다. "+t+" 글자 더 입력해주세요.";return n},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(e){var t="최대 "+e.maximum+"개까지만 선택 가능합니다.";return t},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/lt.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lt",[],function(){function e(e,t,n,r){return e%100>9&&e%100<21||e%10===0?e%10>1?n:r:t}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Pašalinkite "+n+" simbol";return r+=e(n,"ių","ius","į"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Įrašykite dar "+n+" simbol";return r+=e(n,"ių","ius","į"),r},loadingMore:function(){return"Kraunama daugiau rezultatų…"},maximumSelected:function(t){var n="Jūs galite pasirinkti tik "+t.maximum+" element";return n+=e(t.maximum,"ų","us","ą"),n},noResults:function(){return"Atitikmenų nerasta"},searching:function(){return"Ieškoma…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/lv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lv",[],function(){function e(e,t,n,r){return e===11?t:e%10===1?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Lūdzu ievadiet par "+n;return r+=" simbol"+e(n,"iem","u","iem"),r+" mazāk"},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Lūdzu ievadiet vēl "+n;return r+=" simbol"+e(n,"us","u","us"),r},loadingMore:function(){return"Datu ielāde…"},maximumSelected:function(t){var n="Jūs varat izvēlēties ne vairāk kā "+t.maximum;return n+=" element"+e(t.maximum,"us","u","us"),n},noResults:function(){return"Sakritību nav"},searching:function(){return"Meklēšana…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/mk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/mk",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Ве молиме внесете "+e.maximum+" помалку карактер";return e.maximum!==1&&(n+="и"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Ве молиме внесете уште "+e.maximum+" карактер";return e.maximum!==1&&(n+="и"),n},loadingMore:function(){return"Вчитување резултати…"},maximumSelected:function(e){var t="Можете да изберете само "+e.maximum+" ставк";return e.maximum===1?t+="а":t+="и",t},noResults:function(){return"Нема пронајдено совпаѓања"},searching:function(){return"Пребарување…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/ms.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ms",[],function(){return{errorLoading:function(){return"Keputusan tidak berjaya dimuatkan."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Sila hapuskan "+t+" aksara"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Sila masukkan "+t+" atau lebih aksara"},loadingMore:function(){return"Sedang memuatkan keputusan…"},maximumSelected:function(e){return"Anda hanya boleh memilih "+e.maximum+" pilihan"},noResults:function(){return"Tiada padanan yang ditemui"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/nb.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nb",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Vennligst fjern "+t+" tegn"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vennligst skriv inn ";return t>1?n+=" flere tegn":n+=" tegn til",n},loadingMore:function(){return"Laster flere resultater…"},maximumSelected:function(e){return"Du kan velge maks "+e.maximum+" elementer"},noResults:function(){return"Ingen treff"},searching:function(){return"Søker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/nl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nl",[],function(){return{errorLoading:function(){return"De resultaten konden niet worden geladen."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Gelieve "+t+" karakters te verwijderen";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Gelieve "+t+" of meer karakters in te voeren";return n},loadingMore:function(){return"Meer resultaten laden…"},maximumSelected:function(e){var t=e.maximum==1?"kan":"kunnen",n="Er "+t+" maar "+e.maximum+" item";return e.maximum!=1&&(n+="s"),n+=" worden geselecteerd",n},noResults:function(){return"Geen resultaten gevonden…"},searching:function(){return"Zoeken…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/pl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pl",[],function(){var e=["znak","znaki","znaków"],t=["element","elementy","elementów"],n=function(t,n){if(t===1)return n[0];if(t>1&&t<=4)return n[1];if(t>=5)return n[2]};return{errorLoading:function(){return"Nie można załadować wyników."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Usuń "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Podaj przynajmniej "+r+" "+n(r,e)},loadingMore:function(){return"Trwa ładowanie…"},maximumSelected:function(e){return"Możesz zaznaczyć tylko "+e.maximum+" "+n(e.maximum,t)},noResults:function(){return"Brak wyników"},searching:function(){return"Trwa wyszukiwanie…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/pt-BR.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt-BR",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Apague "+t+" caracter";return t!=1&&(n+="es"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Digite "+t+" ou mais caracteres";return n},loadingMore:function(){return"Carregando mais resultados…"},maximumSelected:function(e){var t="Você só pode selecionar "+e.maximum+" ite";return e.maximum==1?t+="m":t+="ns",t},noResults:function(){return"Nenhum resultado encontrado"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/pt.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor apague "+t+" ";return n+=t!=1?"caracteres":"carácter",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Introduza "+t+" ou mais caracteres";return n},loadingMore:function(){return"A carregar mais resultados…"},maximumSelected:function(e){var t="Apenas pode seleccionar "+e.maximum+" ";return t+=e.maximum!=1?"itens":"item",t},noResults:function(){return"Sem resultados"},searching:function(){return"A procurar…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/ro.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ro",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vă rugăm să introduceți mai puțin de "+t;return n+=" caracter",n!==1&&(n+="e"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vă rugăm să introduceți incă "+t;return n+=" caracter",n!==1&&(n+="e"),n},loadingMore:function(){return"Se încarcă…"},maximumSelected:function(e){var t="Aveți voie să selectați cel mult "+e.maximum;return t+=" element",t!==1&&(t+="e"),t},noResults:function(){return"Nu a fost găsit nimic"},searching:function(){return"Căutare…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/ru.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ru",[],function(){function e(e,t,n,r){return e%10<5&&e%10>0&&e%100<5||e%100>20?e%10>1?n:t:r}return{errorLoading:function(){return"Невозможно загрузить результаты"},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Пожалуйста, введите на "+n+" символ";return r+=e(n,"","a","ов"),r+=" меньше",r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Пожалуйста, введите еще хотя бы "+n+" символ";return r+=e(n,"","a","ов"),r},loadingMore:function(){return"Загрузка данных…"},maximumSelected:function(t){var n="Вы можете выбрать не более "+t.maximum+" элемент";return n+=e(t.maximum,"","a","ов"),n},noResults:function(){return"Совпадений не найдено"},searching:function(){return"Поиск…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/sk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sk",[],function(){var e={2:function(e){return e?"dva":"dve"},3:function(){return"tri"},4:function(){return"štyri"}};return{inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím, zadajte o jeden znak menej":n>=2&&n<=4?"Prosím, zadajte o "+e[n](!0)+" znaky menej":"Prosím, zadajte o "+n+" znakov menej"},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím, zadajte ešte jeden znak":n<=4?"Prosím, zadajte ešte ďalšie "+e[n](!0)+" znaky":"Prosím, zadajte ešte ďalších "+n+" znakov"},loadingMore:function(){return"Loading more results…"},maximumSelected:function(t){return t.maximum==1?"Môžete zvoliť len jednu položku":t.maximum>=2&&t.maximum<=4?"Môžete zvoliť najviac "+e[t.maximum](!1)+" položky":"Môžete zvoliť najviac "+t.maximum+" položiek"},noResults:function(){return"Nenašli sa žiadne položky"},searching:function(){return"Vyhľadávanie…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr-Cyrl",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Преузимање није успело."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Обришите "+n+" симбол";return r+=e(n,"","а","а"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Укуцајте бар још "+n+" симбол";return r+=e(n,"","а","а"),r},loadingMore:function(){return"Преузимање још резултата…"},maximumSelected:function(t){var n="Можете изабрати само "+t.maximum+" ставк";return n+=e(t.maximum,"у","е","и"),n},noResults:function(){return"Ништа није пронађено"},searching:function(){return"Претрага…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/sr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Preuzimanje nije uspelo."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Obrišite "+n+" simbol";return r+=e(n,"","a","a"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Ukucajte bar još "+n+" simbol";return r+=e(n,"","a","a"),r},loadingMore:function(){return"Preuzimanje još rezultata…"},maximumSelected:function(t){var n="Možete izabrati samo "+t.maximum+" stavk";return n+=e(t.maximum,"u","e","i"),n},noResults:function(){return"Ništa nije pronađeno"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/sv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sv",[],function(){return{errorLoading:function(){return"Resultat kunde inte laddas."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vänligen sudda ut "+t+" tecken";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vänligen skriv in "+t+" eller fler tecken";return n},loadingMore:function(){return"Laddar fler resultat…"},maximumSelected:function(e){var t="Du kan max välja "+e.maximum+" element";return t},noResults:function(){return"Inga träffar"},searching:function(){return"Söker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/th.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/th",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="โปรดลบออก "+t+" ตัวอักษร";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="โปรดพิมพ์เพิ่มอีก "+t+" ตัวอักษร";return n},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(e){var t="คุณสามารถเลือกได้ไม่เกิน "+e.maximum+" รายการ";return t},noResults:function(){return"ไม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/tr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tr",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/uk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/uk",[],function(){function e(e,t,n,r){return e%100>10&&e%100<15?r:e%10===1?t:e%10>1&&e%10<5?n:r}return{errorLoading:function(){return"Неможливо завантажити результати"},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Будь ласка, видаліть "+n+" "+e(t.maximum,"літеру","літери","літер")},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Будь ласка, введіть "+t+" або більше літер"},loadingMore:function(){return"Завантаження інших результатів…"},maximumSelected:function(t){return"Ви можете вибрати лише "+t.maximum+" "+e(t.maximum,"пункт","пункти","пунктів")},noResults:function(){return"Нічого не знайдено"},searching:function(){return"Пошук…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/vi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/vi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vui lòng nhập ít hơn "+t+" ký tự";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vui lòng nhập nhiều hơn "+t+' ký tự"';return n},loadingMore:function(){return"Đang lấy thêm kết quả…"},maximumSelected:function(e){var t="Chỉ có thể chọn được "+e.maximum+" lựa chọn";return t},noResults:function(){return"Không tìm thấy kết quả"},searching:function(){return"Đang tìm…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/admin/default/plugins/select2/js/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/screenshot/dinamic-multilevel-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/screenshot/dinamic-multilevel-menu.png -------------------------------------------------------------------------------- /assets/screenshot/insert-image-to-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/screenshot/insert-image-to-post.png -------------------------------------------------------------------------------- /assets/themes/default/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/themes/default/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/themes/default/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/themes/default/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/themes/default/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/themes/default/main/img/background/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/main/img/background/bg3.jpg -------------------------------------------------------------------------------- /assets/themes/default/main/img/background/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/main/img/background/hero.jpg -------------------------------------------------------------------------------- /assets/themes/default/main/img/general/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/main/img/general/1.jpg -------------------------------------------------------------------------------- /assets/themes/default/main/img/general/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/main/img/general/map.png -------------------------------------------------------------------------------- /assets/themes/default/main/img/people/gie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/main/img/people/gie.jpg -------------------------------------------------------------------------------- /assets/themes/default/plugins/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/plugins/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/themes/default/plugins/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/plugins/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/themes/default/plugins/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/plugins/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/themes/default/plugins/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/plugins/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/themes/default/plugins/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/plugins/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/themes/default/plugins/material-design/css/ripples.css: -------------------------------------------------------------------------------- 1 | .withripple { 2 | position: relative; 3 | } 4 | .ripple-wrapper { 5 | position: absolute; 6 | top: 0; 7 | left: 0; 8 | z-index: 1; 9 | width: 100%; 10 | height: 100%; 11 | overflow: hidden; 12 | border-radius: inherit; 13 | pointer-events: none; 14 | } 15 | .ripple { 16 | position: absolute; 17 | width: 20px; 18 | height: 20px; 19 | margin-left: -10px; 20 | margin-top: -10px; 21 | border-radius: 100%; 22 | background-color: rgba(0, 0, 0, 0.05); 23 | -webkit-transform: scale(1); 24 | -ms-transform: scale(1); 25 | transform: scale(1); 26 | -webkit-transform-origin: 50%; 27 | -ms-transform-origin: 50%; 28 | transform-origin: 50%; 29 | opacity: 0; 30 | pointer-events: none; 31 | } 32 | .ripple.ripple-on { 33 | transition: opacity 0.15s ease-in 0s, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s; 34 | transition: opacity 0.15s ease-in 0s, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s; 35 | opacity: 0.1; 36 | } 37 | .ripple.ripple-out { 38 | transition: opacity 0.1s linear 0s !important; 39 | opacity: 0; 40 | } 41 | /*# sourceMappingURL=ripples.css.map */ -------------------------------------------------------------------------------- /assets/themes/default/plugins/material-design/css/ripples.min.css: -------------------------------------------------------------------------------- 1 | .withripple{position:relative}.ripple-wrapper{position:absolute;top:0;left:0;z-index:1;width:100%;height:100%;overflow:hidden;border-radius:inherit;pointer-events:none}.ripple{position:absolute;width:20px;height:20px;margin-left:-10px;margin-top:-10px;border-radius:100%;background-color:rgba(0,0,0,.05);-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%;opacity:0;pointer-events:none}.ripple.ripple-on{transition:opacity .15s ease-in 0s,-webkit-transform .5s cubic-bezier(.4,0,.2,1) .1s;transition:opacity .15s ease-in 0s,transform .5s cubic-bezier(.4,0,.2,1) .1s;opacity:.1}.ripple.ripple-out{transition:opacity .1s linear 0s!important;opacity:0} 2 | /*# sourceMappingURL=ripples.min.css.map */ -------------------------------------------------------------------------------- /assets/themes/default/plugins/material-design/css/ripples.min.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["/less/ripples.less"],"names":[],"mappings":"AAAA,YACI,kBAAA,CAAA,eAGA,kBACA,CAAA,KACA,CAAA,MACA,CAAA,SACA,CAAA,UACA,CAAA,WACA,CAAA,eACA,CAAA,qBACA,CAAA,mBAEJ,CAAA,OACI,kBACA,CAAA,UACA,CAAA,WACA,CAAA,iBACA,CAAA,gBACA,CAAA,kBACA,CAAA,gCACA,CAAA,0BAAA,CACA,sBADA,CACA,kBAAA,CAAA,4BAAA,CACA,wBADA,CACA,oBAAA,CAAA,SACA,CAAA,mBAAA,CAAA,iBAGA,qFAAA,CACA,4EAAA,CAAA,UAAA,CAAA,kBAGA,2CACA,CAAA,SAAA,CAAA","file":"ripples.min.css","sourcesContent":[".withripple {\n position: relative;\n}\n.ripple-wrapper {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1;\n width: 100%;\n height: 100%;\n overflow: hidden;\n border-radius: inherit;\n pointer-events: none;\n}\n.ripple {\n position: absolute;\n width: 20px;\n height: 20px;\n margin-left: -10px;\n margin-top: -10px;\n border-radius: 100%;\n background-color: rgba(0,0,0,0.05);\n transform: scale(1);\n transform-origin: 50%;\n opacity: 0;\n pointer-events: none;\n}\n.ripple.ripple-on {\n transition: opacity 0.15s ease-in 0s, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;\n opacity: 0.1;\n}\n.ripple.ripple-out {\n transition: opacity 0.1s linear 0s !important;\n opacity: 0;\n}\n"]} -------------------------------------------------------------------------------- /assets/themes/default/plugins/material-design/css/roboto.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'RobotoDraft'; 3 | font-style: normal; 4 | font-weight: 400; 5 | src: local('RobotoDraft'), local('RobotoDraft-Regular'), local('Roboto-Regular'), url(../fonts/RobotoDraftRegular.woff2) format('woff2'), url(../fonts/RobotoDraftRegular.woff) format('woff'); 6 | } 7 | @font-face { 8 | font-family: 'RobotoDraft'; 9 | font-style: normal; 10 | font-weight: 500; 11 | src: local('RobotoDraft Medium'), local('RobotoDraft-Medium'), local('Roboto-Medium'), url(../fonts/RobotoDraftMedium.woff2) format('woff2'), url(../fonts/RobotoDraftMedium.woff) format('woff'); 12 | } 13 | @font-face { 14 | font-family: 'RobotoDraft'; 15 | font-style: normal; 16 | font-weight: 700; 17 | src: local('RobotoDraft Bold'), local('RobotoDraft-Bold'), local('Roboto-Bold'), url(../fonts/RobotoDraftBold.woff2) format('woff2'), url(../fonts/RobotoDraftBold.woff) format('woff'); 18 | } 19 | @font-face { 20 | font-family: 'RobotoDraft'; 21 | font-style: italic; 22 | font-weight: 400; 23 | src: local('RobotoDraft Italic'), local('RobotoDraft-Italic'), local('Roboto-Italic'), url(../fonts/RobotoDraftItalic.woff2) format('woff2'), url(../fonts/RobotoDraftItalic.woff) format('woff'); 24 | } 25 | /*# sourceMappingURL=roboto.css.map */ -------------------------------------------------------------------------------- /assets/themes/default/plugins/material-design/css/roboto.min.css: -------------------------------------------------------------------------------- 1 | @font-face{font-family:RobotoDraft;src:local('RobotoDraft'),local('RobotoDraft-Regular'),local('Roboto-Regular'),url(../fonts/RobotoDraftRegular.woff2) format('woff2'),url(../fonts/RobotoDraftRegular.woff) format('woff')}@font-face{font-family:RobotoDraft;font-weight:500;src:local('RobotoDraft Medium'),local('RobotoDraft-Medium'),local('Roboto-Medium'),url(../fonts/RobotoDraftMedium.woff2) format('woff2'),url(../fonts/RobotoDraftMedium.woff) format('woff')}@font-face{font-family:RobotoDraft;font-weight:700;src:local('RobotoDraft Bold'),local('RobotoDraft-Bold'),local('Roboto-Bold'),url(../fonts/RobotoDraftBold.woff2) format('woff2'),url(../fonts/RobotoDraftBold.woff) format('woff')}@font-face{font-family:RobotoDraft;font-style:italic;src:local('RobotoDraft Italic'),local('RobotoDraft-Italic'),local('Roboto-Italic'),url(../fonts/RobotoDraftItalic.woff2) format('woff2'),url(../fonts/RobotoDraftItalic.woff) format('woff')} 2 | /*# sourceMappingURL=roboto.min.css.map */ -------------------------------------------------------------------------------- /assets/themes/default/plugins/material-design/fonts/Material-Design-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/plugins/material-design/fonts/Material-Design-Icons.eot -------------------------------------------------------------------------------- /assets/themes/default/plugins/material-design/fonts/Material-Design-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/plugins/material-design/fonts/Material-Design-Icons.ttf -------------------------------------------------------------------------------- /assets/themes/default/plugins/material-design/fonts/Material-Design-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/plugins/material-design/fonts/Material-Design-Icons.woff -------------------------------------------------------------------------------- /assets/themes/default/plugins/material-design/fonts/RobotoDraftBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/plugins/material-design/fonts/RobotoDraftBold.woff -------------------------------------------------------------------------------- /assets/themes/default/plugins/material-design/fonts/RobotoDraftBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/plugins/material-design/fonts/RobotoDraftBold.woff2 -------------------------------------------------------------------------------- /assets/themes/default/plugins/material-design/fonts/RobotoDraftItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/plugins/material-design/fonts/RobotoDraftItalic.woff -------------------------------------------------------------------------------- /assets/themes/default/plugins/material-design/fonts/RobotoDraftItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/plugins/material-design/fonts/RobotoDraftItalic.woff2 -------------------------------------------------------------------------------- /assets/themes/default/plugins/material-design/fonts/RobotoDraftMedium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/plugins/material-design/fonts/RobotoDraftMedium.woff -------------------------------------------------------------------------------- /assets/themes/default/plugins/material-design/fonts/RobotoDraftMedium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/plugins/material-design/fonts/RobotoDraftMedium.woff2 -------------------------------------------------------------------------------- /assets/themes/default/plugins/material-design/fonts/RobotoDraftRegular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/plugins/material-design/fonts/RobotoDraftRegular.woff -------------------------------------------------------------------------------- /assets/themes/default/plugins/material-design/fonts/RobotoDraftRegular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/themes/default/plugins/material-design/fonts/RobotoDraftRegular.woff2 -------------------------------------------------------------------------------- /assets/uploads/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/uploads/10.jpg -------------------------------------------------------------------------------- /assets/uploads/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/uploads/3.jpg -------------------------------------------------------------------------------- /assets/uploads/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/uploads/5.jpg -------------------------------------------------------------------------------- /assets/uploads/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/uploads/6.jpg -------------------------------------------------------------------------------- /assets/uploads/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/uploads/7.jpg -------------------------------------------------------------------------------- /assets/uploads/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/uploads/8.jpg -------------------------------------------------------------------------------- /assets/uploads/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/uploads/9.jpg -------------------------------------------------------------------------------- /assets/uploads/blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/uploads/blur.jpg -------------------------------------------------------------------------------- /assets/uploads/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/assets/uploads/hero.jpg -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /install/UNLICENSE.md: -------------------------------------------------------------------------------- 1 | THIS CODE IS RELEASED UNDER [THE UNLICENSE](http://unlicense.org) 2 | ---------------------------------------------------------------------- 3 | 4 | **This is free and unencumbered software released into the public domain.** 5 | 6 | Anyone is free to copy, modify, publish, use, compile, sell, or 7 | distribute this software, either in source code form or as a compiled 8 | binary, for any purpose, commercial or non-commercial, and by any 9 | means. 10 | 11 | In jurisdictions that recognize copyright laws, the author or authors 12 | of this software dedicate any and all copyright interest in the 13 | software to the public domain. We make this dedication for the benefit 14 | of the public at large and to the detriment of our heirs and 15 | successors. We intend this dedication to be an overt act of 16 | relinquishment in perpetuity of all present and future rights to this 17 | software under copyright law. 18 | 19 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 20 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 21 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 22 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 23 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 24 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 25 | OTHER DEALINGS IN THE SOFTWARE. 26 | 27 | For more information, please refer to [unlicense.org/](http://unlicense.org). 28 | -------------------------------------------------------------------------------- /install/includes/core_class.php: -------------------------------------------------------------------------------- 1 | query("CREATE DATABASE IF NOT EXISTS ".$data['database']); 17 | 18 | // Close the connection 19 | $mysqli->close(); 20 | 21 | return true; 22 | } 23 | 24 | // Function to create the tables and fill them with the default data 25 | function create_tables($data) 26 | { 27 | // Connect to the database 28 | $mysqli = new mysqli($data['hostname'],$data['username'],$data['password'],$data['database']); 29 | 30 | // Check for errors 31 | if(mysqli_connect_errno()) 32 | return false; 33 | 34 | // Open the default SQL file 35 | $query = file_get_contents('assets/install.sql'); 36 | 37 | // Execute a multi query 38 | $mysqli->multi_query($query); 39 | 40 | // Close the connection 41 | $mysqli->close(); 42 | 43 | return true; 44 | } 45 | } -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 - 2015, British Columbia Institute of Technology 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /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/gieart87/ci-blog/068d7e9668441df051485211286421044af10704/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 | --------------------------------------------------------------------------------