├── .gitignore ├── application ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── constants.php │ ├── first-time │ │ ├── autoload.php │ │ ├── cms_config.php │ │ ├── config.php │ │ ├── constants.php │ │ ├── database.php │ │ ├── doctypes.php │ │ ├── extended_routes.php │ │ ├── foreign_chars.php │ │ ├── grocery_crud.php │ │ ├── hooks.php │ │ ├── hybridauthlib.php │ │ ├── index.html │ │ ├── memcached.php │ │ ├── migration.php │ │ ├── mimes.php │ │ ├── profiler.php │ │ ├── rest.php │ │ ├── routes.php │ │ ├── smileys.php │ │ ├── subsite │ │ │ └── config.php │ │ ├── third_party_config │ │ │ ├── ckeditor_config.js │ │ │ └── kcfinder_config.php │ │ └── user_agents.php │ ├── index.html │ └── tmp │ │ └── index.html ├── controllers │ ├── Factory_reset.php │ ├── Not_found.php │ ├── Welcome.php │ └── index.html ├── core │ ├── CMS_AutoUpdate_Model.php │ ├── CMS_CRUD_Controller.php │ ├── CMS_Controller.php │ ├── CMS_Front_Controller.php │ ├── CMS_Model.php │ ├── CMS_Module.php │ ├── CMS_REST_Controller.php │ ├── CMS_Secure_Controller.php │ ├── CMS_Test_Controller.php │ ├── MY_Config.php │ ├── MY_Loader.php │ ├── MY_Output.php │ ├── MY_Router.php │ ├── MY_URI.php │ ├── config_location.php │ ├── database │ │ └── MY_DB.php │ └── index.html ├── helpers │ ├── cms_helper.php │ ├── future_helper.php │ └── index.html ├── hooks │ └── index.html ├── index.html ├── language │ ├── english │ │ └── index.html │ └── index.html ├── libraries │ ├── Cms_asset.php │ ├── Curl.php │ ├── Extended_grocery_crud.php │ ├── Format.php │ ├── Grocery_CRUD.php │ ├── Hybridauthlib.php │ ├── Image_moo.php │ ├── Jsmin.php │ ├── MY_Form_validation.php │ ├── Unzip.php │ └── index.html ├── logs │ ├── hybridauth.log │ └── index.html ├── models │ ├── Grocery_crud_automatic_model.php │ ├── Grocery_crud_generic_model.php │ ├── Grocery_crud_model.php │ ├── Grocery_crud_model_cubrid.php │ ├── Grocery_crud_model_ibase.php │ ├── Grocery_crud_model_mssql.php │ ├── Grocery_crud_model_mysql.php │ ├── Grocery_crud_model_mysqli.php │ ├── Grocery_crud_model_oci8.php │ ├── Grocery_crud_model_odbc.php │ ├── Grocery_crud_model_pdo.php │ ├── Grocery_crud_model_postgre.php │ ├── Grocery_crud_model_sqlite.php │ ├── Grocery_crud_model_sqlite3.php │ ├── Grocery_crud_model_sqlsrv.php │ ├── No_cms_autoupdate_model.php │ ├── No_cms_model.php │ └── index.html ├── third_party │ ├── MX │ │ ├── Base.php │ │ ├── Ci.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Modules.php │ │ └── Router.php │ ├── hybridauth │ │ ├── Hybrid │ │ │ ├── Auth.php │ │ │ ├── Endpoint.php │ │ │ ├── Error.php │ │ │ ├── Exception.php │ │ │ ├── Logger.php │ │ │ ├── Provider_Adapter.php │ │ │ ├── Provider_Model.php │ │ │ ├── Provider_Model_OAuth1.php │ │ │ ├── Provider_Model_OAuth2.php │ │ │ ├── Provider_Model_OpenID.php │ │ │ ├── Providers │ │ │ │ ├── AOL.php │ │ │ │ ├── Facebook.php │ │ │ │ ├── Foursquare.php │ │ │ │ ├── Google.php │ │ │ │ ├── LinkedIn.php │ │ │ │ ├── Live.php │ │ │ │ ├── OpenID.php │ │ │ │ ├── Twitter.php │ │ │ │ └── Yahoo.php │ │ │ ├── Storage.php │ │ │ ├── StorageInterface.php │ │ │ ├── User.php │ │ │ ├── User_Activity.php │ │ │ ├── User_Contact.php │ │ │ ├── User_Profile.php │ │ │ ├── index.html │ │ │ ├── resources │ │ │ │ ├── index.html │ │ │ │ ├── openid_policy.html │ │ │ │ ├── openid_realm.html │ │ │ │ └── openid_xrds.xml │ │ │ └── thirdparty │ │ │ │ ├── Facebook │ │ │ │ ├── base_facebook.php │ │ │ │ ├── facebook.php │ │ │ │ └── fb_ca_chain_bundle.crt │ │ │ │ ├── LinkedIn │ │ │ │ └── LinkedIn.php │ │ │ │ ├── OAuth │ │ │ │ ├── OAuth.php │ │ │ │ ├── OAuth1Client.php │ │ │ │ └── OAuth2Client.php │ │ │ │ ├── OpenID │ │ │ │ └── LightOpenID.php │ │ │ │ └── index.html │ │ ├── config.php │ │ └── index.php │ └── index.html └── views │ ├── CMS_Profile.php │ ├── CMS_View.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 │ ├── example.php │ ├── grocery_CRUD.php │ ├── index.html │ ├── module_activation_error.php │ ├── module_deactivation_error.php │ ├── module_upgrade_error.php │ ├── not_found_index.php │ └── welcome_message.php ├── assets ├── 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 │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js ├── caches │ └── index.html ├── grocery_crud │ ├── config │ │ ├── index.html │ │ ├── language_alias.php │ │ └── translit_chars.php │ ├── css │ │ ├── index.html │ │ ├── jquery_plugins │ │ │ ├── chosen │ │ │ │ ├── chosen-sprite.png │ │ │ │ ├── chosen-sprite@2x.png │ │ │ │ ├── chosen.css │ │ │ │ ├── chosen.min.css │ │ │ │ └── index.html │ │ │ ├── fancybox │ │ │ │ ├── blank.gif │ │ │ │ ├── fancy_close.png │ │ │ │ ├── fancy_loading.png │ │ │ │ ├── fancy_nav_left.png │ │ │ │ ├── fancy_nav_right.png │ │ │ │ ├── fancy_shadow_e.png │ │ │ │ ├── fancy_shadow_n.png │ │ │ │ ├── fancy_shadow_ne.png │ │ │ │ ├── fancy_shadow_nw.png │ │ │ │ ├── fancy_shadow_s.png │ │ │ │ ├── fancy_shadow_se.png │ │ │ │ ├── fancy_shadow_sw.png │ │ │ │ ├── fancy_shadow_w.png │ │ │ │ ├── fancy_title_left.png │ │ │ │ ├── fancy_title_main.png │ │ │ │ ├── fancy_title_over.png │ │ │ │ ├── fancy_title_right.png │ │ │ │ ├── fancybox-x.png │ │ │ │ ├── fancybox-y.png │ │ │ │ ├── fancybox.png │ │ │ │ └── jquery.fancybox.css │ │ │ ├── file_upload │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── file-uploader.css │ │ │ │ ├── fileuploader.css │ │ │ │ ├── jquery.fileupload-ui.css │ │ │ │ ├── loading.gif │ │ │ │ └── progressbar.gif │ │ │ ├── index.html │ │ │ ├── jquery-ui-timepicker-addon.css │ │ │ ├── jquery.ui.datetime.css │ │ │ └── ui.multiselect.css │ │ └── ui │ │ │ ├── index.html │ │ │ └── simple │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_333333_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── index.html │ │ │ └── jquery-ui-1.10.1.custom.min.css │ ├── index.html │ ├── js │ │ ├── common │ │ │ ├── lazyload-min.js │ │ │ └── list.js │ │ ├── index.html │ │ ├── jquery-3.0.0.min.js │ │ ├── jquery-3.0.0.min.map │ │ └── jquery_plugins │ │ │ ├── ajax-chosen.js │ │ │ ├── config │ │ │ ├── index.html │ │ │ ├── jquery-ui-timepicker-addon.config.js │ │ │ ├── jquery.chosen.config.js │ │ │ ├── jquery.ckeditor.config.js │ │ │ ├── jquery.datepicker.config.js │ │ │ ├── jquery.datetime.config.js │ │ │ ├── jquery.fancybox.config.js │ │ │ ├── jquery.fileupload.config.js │ │ │ ├── jquery.markitup.config.js │ │ │ ├── jquery.multiselect.js │ │ │ ├── jquery.noty.config.js │ │ │ ├── jquery.numeric.config.js │ │ │ ├── jquery.tine_mce.config.js │ │ │ └── jquery.uniform.config.js │ │ │ ├── index.html │ │ │ ├── jquery-ui-timepicker-addon.js │ │ │ ├── jquery-ui-timepicker-addon.min.js │ │ │ ├── jquery.chosen.js │ │ │ ├── jquery.chosen.min.js │ │ │ ├── jquery.easing-1.3.pack.js │ │ │ ├── jquery.fancybox-1.3.4.js │ │ │ ├── jquery.fancybox.js │ │ │ ├── jquery.fancybox.pack.js │ │ │ ├── jquery.fileupload.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.form.min.js │ │ │ ├── jquery.iframe-transport.js │ │ │ ├── jquery.noty.js │ │ │ ├── jquery.numeric.min.js │ │ │ ├── jquery.ui.datetime.js │ │ │ ├── load-image.min.js │ │ │ ├── tmpl.min.js │ │ │ ├── ui.multiselect.min.js │ │ │ └── ui │ │ │ ├── i18n │ │ │ ├── datepicker │ │ │ │ ├── index.html │ │ │ │ ├── jquery.ui.datepicker-af.js │ │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ │ ├── jquery.ui.datepicker-bg.js │ │ │ │ ├── jquery.ui.datepicker-bn.js │ │ │ │ ├── jquery.ui.datepicker-cs.js │ │ │ │ ├── jquery.ui.datepicker-da.js │ │ │ │ ├── jquery.ui.datepicker-de.js │ │ │ │ ├── jquery.ui.datepicker-el.js │ │ │ │ ├── jquery.ui.datepicker-es.js │ │ │ │ ├── jquery.ui.datepicker-fa.js │ │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ │ ├── jquery.ui.datepicker-hu.js │ │ │ │ ├── jquery.ui.datepicker-id.js │ │ │ │ ├── jquery.ui.datepicker-it.js │ │ │ │ ├── jquery.ui.datepicker-ja.js │ │ │ │ ├── jquery.ui.datepicker-ko.js │ │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ │ ├── jquery.ui.datepicker-no.js │ │ │ │ ├── jquery.ui.datepicker-pl.js │ │ │ │ ├── jquery.ui.datepicker-pt-br.js │ │ │ │ ├── jquery.ui.datepicker-pt.js │ │ │ │ ├── jquery.ui.datepicker-ro.js │ │ │ │ ├── jquery.ui.datepicker-ru.js │ │ │ │ ├── jquery.ui.datepicker-sk.js │ │ │ │ ├── jquery.ui.datepicker-th.js │ │ │ │ ├── jquery.ui.datepicker-tr.js │ │ │ │ ├── jquery.ui.datepicker-uk.js │ │ │ │ ├── jquery.ui.datepicker-vi.js │ │ │ │ └── jquery.ui.datepicker-zh-cn.js │ │ │ ├── index.html │ │ │ ├── multiselect │ │ │ │ ├── index.html │ │ │ │ ├── ui-multiselect-ar.js │ │ │ │ ├── ui-multiselect-de.js │ │ │ │ ├── ui-multiselect-el.js │ │ │ │ ├── ui-multiselect-en.js │ │ │ │ ├── ui-multiselect-es.js │ │ │ │ ├── ui-multiselect-fr.js │ │ │ │ ├── ui-multiselect-it.js │ │ │ │ ├── ui-multiselect-ja.js │ │ │ │ ├── ui-multiselect-pt-br.js │ │ │ │ ├── ui-multiselect-ru.js │ │ │ │ └── ui-multiselect-uk.js │ │ │ └── timepicker │ │ │ │ ├── index.html │ │ │ │ ├── jquery-ui-timepicker-af.js │ │ │ │ ├── jquery-ui-timepicker-ar.js │ │ │ │ ├── jquery-ui-timepicker-bg.js │ │ │ │ ├── jquery-ui-timepicker-cs.js │ │ │ │ ├── jquery-ui-timepicker-de.js │ │ │ │ ├── jquery-ui-timepicker-el.js │ │ │ │ ├── jquery-ui-timepicker-es.js │ │ │ │ ├── jquery-ui-timepicker-fr.js │ │ │ │ ├── jquery-ui-timepicker-hu.js │ │ │ │ ├── jquery-ui-timepicker-id.js │ │ │ │ ├── jquery-ui-timepicker-it.js │ │ │ │ ├── jquery-ui-timepicker-ja.js │ │ │ │ ├── jquery-ui-timepicker-ko.js │ │ │ │ ├── jquery-ui-timepicker-nl.js │ │ │ │ ├── jquery-ui-timepicker-no.js │ │ │ │ ├── jquery-ui-timepicker-pl.js │ │ │ │ ├── jquery-ui-timepicker-pt-br.js │ │ │ │ ├── jquery-ui-timepicker-pt.js │ │ │ │ ├── jquery-ui-timepicker-ro.js │ │ │ │ ├── jquery-ui-timepicker-ru.js │ │ │ │ ├── jquery-ui-timepicker-sk.js │ │ │ │ ├── jquery-ui-timepicker-tr.js │ │ │ │ ├── jquery-ui-timepicker-uk.js │ │ │ │ ├── jquery-ui-timepicker-vi.js │ │ │ │ └── jquery-ui-timepicker-zh-cn.js │ │ │ ├── index.html │ │ │ └── jquery-ui-1.10.3.custom.min.js │ ├── languages │ │ ├── .htaccess │ │ ├── add-new-lang-string.sh │ │ ├── afrikaans.php │ │ ├── arabic.php │ │ ├── bengali.php │ │ ├── bulgarian.php │ │ ├── catalan.php │ │ ├── chinese.php │ │ ├── croatian.php │ │ ├── czech.php │ │ ├── danish.php │ │ ├── dutch.php │ │ ├── english.php │ │ ├── french.php │ │ ├── german.php │ │ ├── greek.php │ │ ├── hindi.php │ │ ├── hungarian.php │ │ ├── index.html │ │ ├── indonesian.php │ │ ├── italian.php │ │ ├── japanese.php │ │ ├── korean.php │ │ ├── lithuanian.php │ │ ├── mongolian.php │ │ ├── norwegian.php │ │ ├── persian.php │ │ ├── polish.php │ │ ├── pt-br.portuguese.php │ │ ├── pt-pt.portuguese.php │ │ ├── romanian.php │ │ ├── russian.php │ │ ├── slovak.php │ │ ├── spanish.php │ │ ├── thai.php │ │ ├── turkish.php │ │ ├── ukrainian.php │ │ └── vietnamese.php │ ├── license-gpl3.txt │ ├── license-grocery-crud.txt │ ├── license-mit.txt │ ├── texteditor │ │ └── ckeditor │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── adapters │ │ │ └── jquery.js │ │ │ ├── build-config.js │ │ │ ├── ckeditor.js │ │ │ ├── config-ori.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 │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── bootstrapVisibility │ │ │ │ ├── CHANGELOG.txt │ │ │ │ ├── LICENSE │ │ │ │ └── README.md │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── codemirror │ │ │ │ ├── css │ │ │ │ │ └── codemirror.min.css │ │ │ │ ├── js │ │ │ │ │ ├── beautify.min.js │ │ │ │ │ ├── codemirror.addons.min.js │ │ │ │ │ ├── codemirror.addons.search.min.js │ │ │ │ │ ├── codemirror.min.js │ │ │ │ │ ├── codemirror.mode.bbcode.min.js │ │ │ │ │ ├── codemirror.mode.bbcodemixed.min.js │ │ │ │ │ ├── codemirror.mode.htmlmixed.min.js │ │ │ │ │ ├── codemirror.mode.javascript.min.js │ │ │ │ │ └── codemirror.mode.php.min.js │ │ │ │ └── theme │ │ │ │ │ ├── 3024-day.css │ │ │ │ │ ├── 3024-night.css │ │ │ │ │ ├── ambiance-mobile.css │ │ │ │ │ ├── ambiance.css │ │ │ │ │ ├── base16-dark.css │ │ │ │ │ ├── base16-light.css │ │ │ │ │ ├── blackboard.css │ │ │ │ │ ├── cobalt.css │ │ │ │ │ ├── colorforth.css │ │ │ │ │ ├── eclipse.css │ │ │ │ │ ├── elegant.css │ │ │ │ │ ├── erlang-dark.css │ │ │ │ │ ├── lesser-dark.css │ │ │ │ │ ├── liquibyte.css │ │ │ │ │ ├── mbo.css │ │ │ │ │ ├── mdn-like.css │ │ │ │ │ ├── midnight.css │ │ │ │ │ ├── monokai.css │ │ │ │ │ ├── neat.css │ │ │ │ │ ├── neo.css │ │ │ │ │ ├── night.css │ │ │ │ │ ├── paraiso-dark.css │ │ │ │ │ ├── paraiso-light.css │ │ │ │ │ ├── pastel-on-dark.css │ │ │ │ │ ├── rubyblue.css │ │ │ │ │ ├── solarized.css │ │ │ │ │ ├── the-matrix.css │ │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ │ ├── ttcn.css │ │ │ │ │ ├── twilight.css │ │ │ │ │ ├── vibrant-ink.css │ │ │ │ │ ├── xq-dark.css │ │ │ │ │ ├── xq-light.css │ │ │ │ │ └── zenburn.css │ │ │ ├── colordialog │ │ │ │ └── dialogs │ │ │ │ │ └── colordialog.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── div │ │ │ │ └── dialogs │ │ │ │ │ └── div.js │ │ │ ├── eqneditor │ │ │ │ ├── _notes │ │ │ │ │ └── dwsync.xml │ │ │ │ └── dialogs │ │ │ │ │ ├── _notes │ │ │ │ │ └── dwsync.xml │ │ │ │ │ ├── eqneditor.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _notes │ │ │ │ │ └── dwsync.xml │ │ │ │ │ └── en.js │ │ │ ├── find │ │ │ │ └── dialogs │ │ │ │ │ └── find.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── liststyle │ │ │ │ └── dialogs │ │ │ │ │ └── liststyle.js │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scayt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ └── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── envelope.png │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── kiss.png │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ └── wink_smile.png │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ ├── templates.css │ │ │ │ │ └── templates.js │ │ │ │ └── templates │ │ │ │ │ └── default.js │ │ │ ├── videodetector │ │ │ │ ├── dialogs │ │ │ │ │ └── videoDialog.js │ │ │ │ └── icons │ │ │ │ │ ├── videodetector-ori.svg │ │ │ │ │ └── videodetector.svg │ │ │ ├── widget │ │ │ │ └── images │ │ │ │ │ └── handle.png │ │ │ ├── widgetbootstrap │ │ │ │ ├── contents.css │ │ │ │ ├── dialogs │ │ │ │ │ ├── widgetbootstrapAlert.js │ │ │ │ │ └── widgetfoundationAccordion.js │ │ │ │ └── icons │ │ │ │ │ ├── widgetbootstrapAccordion.png │ │ │ │ │ ├── widgetbootstrapAlert.png │ │ │ │ │ ├── widgetbootstrapLeftCol.png │ │ │ │ │ ├── widgetbootstrapRightCol.png │ │ │ │ │ ├── widgetbootstrapThreeCol.png │ │ │ │ │ └── widgetbootstrapTwoCol.png │ │ │ ├── wpmore │ │ │ │ ├── demo.html │ │ │ │ ├── images │ │ │ │ │ ├── more.gif │ │ │ │ │ ├── more_bug.gif │ │ │ │ │ └── page.gif │ │ │ │ └── plugin.js │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ │ ├── skins │ │ │ └── bootstrapck │ │ │ │ ├── .temp │ │ │ │ └── css │ │ │ │ │ ├── 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 │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── dialog_opera.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ │ ├── readme.md │ │ │ │ ├── sample │ │ │ │ ├── bootstrapck-sample.html │ │ │ │ ├── css │ │ │ │ │ └── bootstrapck-sample.css │ │ │ │ └── js │ │ │ │ │ ├── analytics.js │ │ │ │ │ └── jquery-1.11.0.min.js │ │ │ │ └── scss │ │ │ │ ├── browser-specific │ │ │ │ ├── gecko │ │ │ │ │ └── editor_gecko.scss │ │ │ │ ├── ie │ │ │ │ │ ├── dialog_ie.scss │ │ │ │ │ └── editor_ie.scss │ │ │ │ ├── ie7 │ │ │ │ │ ├── dialog_ie7.scss │ │ │ │ │ └── editor_ie7.scss │ │ │ │ ├── ie8 │ │ │ │ │ ├── dialog_ie8.scss │ │ │ │ │ └── editor_ie8.scss │ │ │ │ ├── iequirks │ │ │ │ │ ├── dialog_iequirks.scss │ │ │ │ │ └── editor_iequirks.scss │ │ │ │ └── opera │ │ │ │ │ └── dialog_opera.scss │ │ │ │ ├── components │ │ │ │ ├── _colorpanel.scss │ │ │ │ ├── _elementspath.scss │ │ │ │ ├── _mainui.scss │ │ │ │ ├── _menu.scss │ │ │ │ ├── _panel.scss │ │ │ │ ├── _presets.scss │ │ │ │ ├── _reset.scss │ │ │ │ ├── _richcombo.scss │ │ │ │ ├── _toolbar.scss │ │ │ │ └── editor.scss │ │ │ │ ├── config │ │ │ │ ├── _colors.scss │ │ │ │ ├── _config.scss │ │ │ │ └── _defaults.scss │ │ │ │ └── dialog │ │ │ │ └── dialog.scss │ │ │ └── styles.js │ └── themes │ │ ├── index.html │ │ └── no-flexigrid │ │ ├── config.php │ │ ├── css │ │ ├── flexigrid.css │ │ ├── images │ │ │ ├── add.png │ │ │ ├── bg.gif │ │ │ ├── btn-sprite.gif │ │ │ ├── close.png │ │ │ ├── ddn.png │ │ │ ├── dn.png │ │ │ ├── edit.png │ │ │ ├── error.png │ │ │ ├── export.png │ │ │ ├── fhbg.gif │ │ │ ├── first.gif │ │ │ ├── hl.png │ │ │ ├── index.html │ │ │ ├── last.gif │ │ │ ├── line.gif │ │ │ ├── load.gif │ │ │ ├── load.png │ │ │ ├── magnifier.png │ │ │ ├── next.gif │ │ │ ├── prev.gif │ │ │ ├── print.png │ │ │ ├── success.png │ │ │ ├── up.png │ │ │ ├── uup.png │ │ │ └── wbg.gif │ │ └── index.html │ │ ├── index.html │ │ ├── js │ │ ├── cookies.js │ │ ├── flexigrid-add.js │ │ ├── flexigrid-edit.js │ │ ├── flexigrid-fix-chosen.js │ │ ├── flexigrid-form.js │ │ ├── flexigrid.js │ │ ├── index.html │ │ ├── jquery.form.js │ │ ├── jquery.printElement.js │ │ └── jquery.printElement.min.js │ │ └── views │ │ ├── add.php │ │ ├── edit.php │ │ ├── list.php │ │ ├── list_template.php │ │ └── read.php ├── index.html ├── kcfinder │ ├── browse.php │ ├── config-ori.php │ ├── core │ │ ├── autoload.php │ │ ├── browser.php │ │ ├── types │ │ │ ├── type_img.php │ │ │ └── type_mime.php │ │ └── uploader.php │ ├── css.php │ ├── doc │ │ ├── Changelog │ │ ├── LICENSE.GPL │ │ ├── LICENSE.LGPL │ │ └── README │ ├── integration │ │ └── drupal.php │ ├── js │ │ ├── browser │ │ │ ├── 0bject.js │ │ │ ├── clipboard.js │ │ │ ├── dropUpload.js │ │ │ ├── files.js │ │ │ ├── folders.js │ │ │ ├── init.js │ │ │ ├── joiner.php │ │ │ ├── misc.js │ │ │ ├── settings.js │ │ │ └── toolbar.js │ │ ├── helper.js │ │ ├── jquery.drag.js │ │ ├── jquery.js │ │ └── jquery.rightClick.js │ ├── js_localize.php │ ├── lang │ │ ├── bg.php │ │ ├── ca.php │ │ ├── cs.php │ │ ├── da.php │ │ ├── de.php │ │ ├── el.php │ │ ├── en.php │ │ ├── es.php │ │ ├── fa.php │ │ ├── fr.php │ │ ├── hu.php │ │ ├── it.php │ │ ├── ja.php │ │ ├── lt.php │ │ ├── nl.php │ │ ├── no.php │ │ ├── pl.php │ │ ├── pt-br.php │ │ ├── pt.php │ │ ├── ru.php │ │ ├── sk.php │ │ ├── tr.php │ │ ├── vi.php │ │ └── zh-cn.php │ ├── lib │ │ ├── class_gd.php │ │ ├── class_input.php │ │ ├── class_zipFolder.php │ │ ├── helper_dir.php │ │ ├── helper_file.php │ │ ├── helper_httpCache.php │ │ ├── helper_path.php │ │ └── helper_text.php │ ├── themes │ │ ├── dark │ │ │ ├── about.txt │ │ │ ├── img │ │ │ │ ├── bg_transparent.png │ │ │ │ ├── cross.png │ │ │ │ ├── files │ │ │ │ │ ├── big │ │ │ │ │ │ ├── ..png │ │ │ │ │ │ ├── .image.png │ │ │ │ │ │ ├── avi.png │ │ │ │ │ │ ├── bat.png │ │ │ │ │ │ ├── bmp.png │ │ │ │ │ │ ├── bz2.png │ │ │ │ │ │ ├── ccd.png │ │ │ │ │ │ ├── cgi.png │ │ │ │ │ │ ├── com.png │ │ │ │ │ │ ├── csh.png │ │ │ │ │ │ ├── cue.png │ │ │ │ │ │ ├── deb.png │ │ │ │ │ │ ├── dll.png │ │ │ │ │ │ ├── doc.png │ │ │ │ │ │ ├── docx.png │ │ │ │ │ │ ├── exe.png │ │ │ │ │ │ ├── fla.png │ │ │ │ │ │ ├── flv.png │ │ │ │ │ │ ├── fon.png │ │ │ │ │ │ ├── gif.png │ │ │ │ │ │ ├── gz.png │ │ │ │ │ │ ├── htm.png │ │ │ │ │ │ ├── html.png │ │ │ │ │ │ ├── ini.png │ │ │ │ │ │ ├── iso.png │ │ │ │ │ │ ├── jar.png │ │ │ │ │ │ ├── java.png │ │ │ │ │ │ ├── jpeg.png │ │ │ │ │ │ ├── jpg.png │ │ │ │ │ │ ├── js.png │ │ │ │ │ │ ├── mds.png │ │ │ │ │ │ ├── mdx.png │ │ │ │ │ │ ├── mid.png │ │ │ │ │ │ ├── midi.png │ │ │ │ │ │ ├── mkv.png │ │ │ │ │ │ ├── mov.png │ │ │ │ │ │ ├── mp3.png │ │ │ │ │ │ ├── mpeg.png │ │ │ │ │ │ ├── mpg.png │ │ │ │ │ │ ├── nfo.png │ │ │ │ │ │ ├── nrg.png │ │ │ │ │ │ ├── ogg.png │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ ├── php.png │ │ │ │ │ │ ├── phps.png │ │ │ │ │ │ ├── pl.png │ │ │ │ │ │ ├── pm.png │ │ │ │ │ │ ├── png.png │ │ │ │ │ │ ├── ppt.png │ │ │ │ │ │ ├── pptx.png │ │ │ │ │ │ ├── qt.png │ │ │ │ │ │ ├── rpm.png │ │ │ │ │ │ ├── rtf.png │ │ │ │ │ │ ├── sh.png │ │ │ │ │ │ ├── srt.png │ │ │ │ │ │ ├── sub.png │ │ │ │ │ │ ├── swf.png │ │ │ │ │ │ ├── tgz.png │ │ │ │ │ │ ├── tif.png │ │ │ │ │ │ ├── tiff.png │ │ │ │ │ │ ├── torrent.png │ │ │ │ │ │ ├── ttf.png │ │ │ │ │ │ ├── txt.png │ │ │ │ │ │ ├── wav.png │ │ │ │ │ │ ├── wma.png │ │ │ │ │ │ ├── xls.png │ │ │ │ │ │ ├── xlsx.png │ │ │ │ │ │ └── zip.png │ │ │ │ │ └── small │ │ │ │ │ │ ├── ..png │ │ │ │ │ │ ├── .image.png │ │ │ │ │ │ ├── avi.png │ │ │ │ │ │ ├── bat.png │ │ │ │ │ │ ├── bmp.png │ │ │ │ │ │ ├── bz2.png │ │ │ │ │ │ ├── ccd.png │ │ │ │ │ │ ├── cgi.png │ │ │ │ │ │ ├── com.png │ │ │ │ │ │ ├── csh.png │ │ │ │ │ │ ├── cue.png │ │ │ │ │ │ ├── deb.png │ │ │ │ │ │ ├── dll.png │ │ │ │ │ │ ├── doc.png │ │ │ │ │ │ ├── docx.png │ │ │ │ │ │ ├── exe.png │ │ │ │ │ │ ├── fla.png │ │ │ │ │ │ ├── flv.png │ │ │ │ │ │ ├── fon.png │ │ │ │ │ │ ├── gif.png │ │ │ │ │ │ ├── gz.png │ │ │ │ │ │ ├── htm.png │ │ │ │ │ │ ├── html.png │ │ │ │ │ │ ├── ini.png │ │ │ │ │ │ ├── iso.png │ │ │ │ │ │ ├── jar.png │ │ │ │ │ │ ├── java.png │ │ │ │ │ │ ├── jpeg.png │ │ │ │ │ │ ├── jpg.png │ │ │ │ │ │ ├── js.png │ │ │ │ │ │ ├── mds.png │ │ │ │ │ │ ├── mdx.png │ │ │ │ │ │ ├── mid.png │ │ │ │ │ │ ├── midi.png │ │ │ │ │ │ ├── mkv.png │ │ │ │ │ │ ├── mov.png │ │ │ │ │ │ ├── mp3.png │ │ │ │ │ │ ├── mpeg.png │ │ │ │ │ │ ├── mpg.png │ │ │ │ │ │ ├── nfo.png │ │ │ │ │ │ ├── nrg.png │ │ │ │ │ │ ├── ogg.png │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ ├── php.png │ │ │ │ │ │ ├── phps.png │ │ │ │ │ │ ├── pl.png │ │ │ │ │ │ ├── pm.png │ │ │ │ │ │ ├── png.png │ │ │ │ │ │ ├── ppt.png │ │ │ │ │ │ ├── pptx.png │ │ │ │ │ │ ├── qt.png │ │ │ │ │ │ ├── rpm.png │ │ │ │ │ │ ├── rtf.png │ │ │ │ │ │ ├── sh.png │ │ │ │ │ │ ├── srt.png │ │ │ │ │ │ ├── sub.png │ │ │ │ │ │ ├── swf.png │ │ │ │ │ │ ├── tgz.png │ │ │ │ │ │ ├── tif.png │ │ │ │ │ │ ├── tiff.png │ │ │ │ │ │ ├── torrent.png │ │ │ │ │ │ ├── ttf.png │ │ │ │ │ │ ├── txt.png │ │ │ │ │ │ ├── wav.png │ │ │ │ │ │ ├── wma.png │ │ │ │ │ │ ├── xls.png │ │ │ │ │ │ ├── xlsx.png │ │ │ │ │ │ └── zip.png │ │ │ │ ├── icons │ │ │ │ │ ├── about.png │ │ │ │ │ ├── clipboard-add.png │ │ │ │ │ ├── clipboard-clear.png │ │ │ │ │ ├── clipboard.png │ │ │ │ │ ├── close-clicked.png │ │ │ │ │ ├── close-hover.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── delete.png │ │ │ │ │ ├── download.png │ │ │ │ │ ├── folder-new.png │ │ │ │ │ ├── maximize.png │ │ │ │ │ ├── move.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ ├── rename.png │ │ │ │ │ ├── select.png │ │ │ │ │ ├── settings.png │ │ │ │ │ ├── upload.png │ │ │ │ │ └── view.png │ │ │ │ ├── kcf_logo.png │ │ │ │ ├── loading.gif │ │ │ │ ├── question.png │ │ │ │ └── tree │ │ │ │ │ ├── denied.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folder_current.png │ │ │ │ │ ├── minus.png │ │ │ │ │ └── plus.png │ │ │ ├── init.js │ │ │ └── style.css │ │ └── oxygen │ │ │ ├── about.txt │ │ │ ├── img │ │ │ ├── alert.png │ │ │ ├── bg_transparent.png │ │ │ ├── confirm.png │ │ │ ├── files │ │ │ │ ├── big │ │ │ │ │ ├── ..png │ │ │ │ │ ├── .image.png │ │ │ │ │ ├── avi.png │ │ │ │ │ ├── bat.png │ │ │ │ │ ├── bmp.png │ │ │ │ │ ├── bz2.png │ │ │ │ │ ├── ccd.png │ │ │ │ │ ├── cgi.png │ │ │ │ │ ├── com.png │ │ │ │ │ ├── csh.png │ │ │ │ │ ├── cue.png │ │ │ │ │ ├── deb.png │ │ │ │ │ ├── dll.png │ │ │ │ │ ├── doc.png │ │ │ │ │ ├── docx.png │ │ │ │ │ ├── exe.png │ │ │ │ │ ├── fla.png │ │ │ │ │ ├── flv.png │ │ │ │ │ ├── fon.png │ │ │ │ │ ├── gif.png │ │ │ │ │ ├── gz.png │ │ │ │ │ ├── htm.png │ │ │ │ │ ├── html.png │ │ │ │ │ ├── ini.png │ │ │ │ │ ├── iso.png │ │ │ │ │ ├── jar.png │ │ │ │ │ ├── java.png │ │ │ │ │ ├── jpeg.png │ │ │ │ │ ├── jpg.png │ │ │ │ │ ├── js.png │ │ │ │ │ ├── mds.png │ │ │ │ │ ├── mdx.png │ │ │ │ │ ├── mid.png │ │ │ │ │ ├── midi.png │ │ │ │ │ ├── mkv.png │ │ │ │ │ ├── mov.png │ │ │ │ │ ├── mp3.png │ │ │ │ │ ├── mpeg.png │ │ │ │ │ ├── mpg.png │ │ │ │ │ ├── nfo.png │ │ │ │ │ ├── nrg.png │ │ │ │ │ ├── ogg.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── php.png │ │ │ │ │ ├── phps.png │ │ │ │ │ ├── pl.png │ │ │ │ │ ├── pm.png │ │ │ │ │ ├── png.png │ │ │ │ │ ├── ppt.png │ │ │ │ │ ├── pptx.png │ │ │ │ │ ├── psd.png │ │ │ │ │ ├── qt.png │ │ │ │ │ ├── rar.png │ │ │ │ │ ├── rpm.png │ │ │ │ │ ├── rtf.png │ │ │ │ │ ├── sh.png │ │ │ │ │ ├── srt.png │ │ │ │ │ ├── sub.png │ │ │ │ │ ├── swf.png │ │ │ │ │ ├── tgz.png │ │ │ │ │ ├── tif.png │ │ │ │ │ ├── tiff.png │ │ │ │ │ ├── torrent.png │ │ │ │ │ ├── ttf.png │ │ │ │ │ ├── txt.png │ │ │ │ │ ├── wav.png │ │ │ │ │ ├── wma.png │ │ │ │ │ ├── xls.png │ │ │ │ │ ├── xlsx.png │ │ │ │ │ └── zip.png │ │ │ │ └── small │ │ │ │ │ ├── ..png │ │ │ │ │ ├── .image.png │ │ │ │ │ ├── avi.png │ │ │ │ │ ├── bat.png │ │ │ │ │ ├── bmp.png │ │ │ │ │ ├── bz2.png │ │ │ │ │ ├── ccd.png │ │ │ │ │ ├── cgi.png │ │ │ │ │ ├── com.png │ │ │ │ │ ├── csh.png │ │ │ │ │ ├── cue.png │ │ │ │ │ ├── deb.png │ │ │ │ │ ├── dll.png │ │ │ │ │ ├── doc.png │ │ │ │ │ ├── docx.png │ │ │ │ │ ├── exe.png │ │ │ │ │ ├── fla.png │ │ │ │ │ ├── flv.png │ │ │ │ │ ├── fon.png │ │ │ │ │ ├── gif.png │ │ │ │ │ ├── gz.png │ │ │ │ │ ├── htm.png │ │ │ │ │ ├── html.png │ │ │ │ │ ├── ini.png │ │ │ │ │ ├── iso.png │ │ │ │ │ ├── jar.png │ │ │ │ │ ├── java.png │ │ │ │ │ ├── jpeg.png │ │ │ │ │ ├── jpg.png │ │ │ │ │ ├── js.png │ │ │ │ │ ├── mds.png │ │ │ │ │ ├── mdx.png │ │ │ │ │ ├── mid.png │ │ │ │ │ ├── midi.png │ │ │ │ │ ├── mkv.png │ │ │ │ │ ├── mov.png │ │ │ │ │ ├── mp3.png │ │ │ │ │ ├── mpeg.png │ │ │ │ │ ├── mpg.png │ │ │ │ │ ├── nfo.png │ │ │ │ │ ├── nrg.png │ │ │ │ │ ├── ogg.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── php.png │ │ │ │ │ ├── phps.png │ │ │ │ │ ├── pl.png │ │ │ │ │ ├── pm.png │ │ │ │ │ ├── png.png │ │ │ │ │ ├── ppt.png │ │ │ │ │ ├── pptx.png │ │ │ │ │ ├── psd.png │ │ │ │ │ ├── qt.png │ │ │ │ │ ├── rar.png │ │ │ │ │ ├── rpm.png │ │ │ │ │ ├── rtf.png │ │ │ │ │ ├── sh.png │ │ │ │ │ ├── srt.png │ │ │ │ │ ├── sub.png │ │ │ │ │ ├── swf.png │ │ │ │ │ ├── tgz.png │ │ │ │ │ ├── tif.png │ │ │ │ │ ├── tiff.png │ │ │ │ │ ├── torrent.png │ │ │ │ │ ├── ttf.png │ │ │ │ │ ├── txt.png │ │ │ │ │ ├── wav.png │ │ │ │ │ ├── wma.png │ │ │ │ │ ├── xls.png │ │ │ │ │ ├── xlsx.png │ │ │ │ │ └── zip.png │ │ │ ├── icons │ │ │ │ ├── about.png │ │ │ │ ├── clipboard-add.png │ │ │ │ ├── clipboard-clear.png │ │ │ │ ├── clipboard.png │ │ │ │ ├── close-clicked.png │ │ │ │ ├── close-hover.png │ │ │ │ ├── close.png │ │ │ │ ├── copy.png │ │ │ │ ├── delete.png │ │ │ │ ├── download.png │ │ │ │ ├── folder-new.png │ │ │ │ ├── maximize.png │ │ │ │ ├── move.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rename.png │ │ │ │ ├── select.png │ │ │ │ ├── settings.png │ │ │ │ ├── upload.png │ │ │ │ └── view.png │ │ │ ├── kcf_logo.png │ │ │ ├── loading.gif │ │ │ └── tree │ │ │ │ ├── denied.png │ │ │ │ ├── folder.png │ │ │ │ ├── folder_current.png │ │ │ │ ├── minus.png │ │ │ │ └── plus.png │ │ │ ├── init.js │ │ │ └── style.css │ ├── tpl │ │ ├── tpl_browser.php │ │ ├── tpl_css.php │ │ └── tpl_javascript.php │ ├── upload.php │ └── upload │ │ ├── .htaccess │ │ └── index.html ├── nocms │ ├── images │ │ ├── No-CMS-favicon.png │ │ ├── No-CMS-logo.png │ │ ├── ajax-loader.gif │ │ ├── custom_background │ │ │ ├── .htaccess │ │ │ └── index.html │ │ ├── custom_favicon │ │ │ ├── .htaccess │ │ │ └── index.html │ │ ├── custom_logo │ │ │ ├── .htaccess │ │ │ └── index.html │ │ ├── custom_meta_image │ │ │ ├── .htaccess │ │ │ └── index.html │ │ ├── default-profile-picture.png │ │ ├── default-profile-picture.png_dir │ │ │ ├── .htaccess │ │ │ ├── 50_default-profile-picture.png │ │ │ └── index.html │ │ ├── donation.png │ │ ├── icons │ │ │ ├── .htaccess │ │ │ ├── index.html │ │ │ └── package.png │ │ ├── layouts │ │ │ ├── default-one-column.png │ │ │ ├── default-three-column.png │ │ │ ├── default-two-column.png │ │ │ ├── default.png │ │ │ ├── minimal.png │ │ │ ├── slide-one-column.png │ │ │ ├── slide-three-column.png │ │ │ ├── slide-two-column.png │ │ │ └── slide.png │ │ └── profile_picture │ │ │ ├── .htaccess │ │ │ └── index.html │ ├── js │ │ ├── cms_front_view.js │ │ ├── cms_front_view_config.js │ │ ├── fileuploader │ │ │ ├── fileuploader.css │ │ │ ├── fileuploader.js │ │ │ └── loading.gif │ │ ├── gofrendi.chosen.ajaxify.js │ │ ├── html5.js │ │ ├── jquery-ace │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── ace │ │ │ │ ├── ace.js │ │ │ │ ├── ext-static_highlight.js │ │ │ │ ├── ext-textarea.js │ │ │ │ ├── keybinding-emacs.js │ │ │ │ ├── keybinding-vim.js │ │ │ │ ├── mode-abap.js │ │ │ │ ├── mode-asciidoc.js │ │ │ │ ├── mode-c9search.js │ │ │ │ ├── mode-c_cpp.js │ │ │ │ ├── mode-clojure.js │ │ │ │ ├── mode-coffee.js │ │ │ │ ├── mode-coldfusion.js │ │ │ │ ├── mode-csharp.js │ │ │ │ ├── mode-css.js │ │ │ │ ├── mode-dart.js │ │ │ │ ├── mode-diff.js │ │ │ │ ├── mode-dot.js │ │ │ │ ├── mode-glsl.js │ │ │ │ ├── mode-golang.js │ │ │ │ ├── mode-groovy.js │ │ │ │ ├── mode-haml.js │ │ │ │ ├── mode-haxe.js │ │ │ │ ├── mode-html.js │ │ │ │ ├── mode-jade.js │ │ │ │ ├── mode-java.js │ │ │ │ ├── mode-javascript.js │ │ │ │ ├── mode-json.js │ │ │ │ ├── mode-jsp.js │ │ │ │ ├── mode-jsx.js │ │ │ │ ├── mode-latex.js │ │ │ │ ├── mode-less.js │ │ │ │ ├── mode-liquid.js │ │ │ │ ├── mode-lisp.js │ │ │ │ ├── mode-lua.js │ │ │ │ ├── mode-luapage.js │ │ │ │ ├── mode-lucene.js │ │ │ │ ├── mode-makefile.js │ │ │ │ ├── mode-markdown.js │ │ │ │ ├── mode-objectivec.js │ │ │ │ ├── mode-ocaml.js │ │ │ │ ├── mode-perl.js │ │ │ │ ├── mode-pgsql.js │ │ │ │ ├── mode-php.js │ │ │ │ ├── mode-powershell.js │ │ │ │ ├── mode-python.js │ │ │ │ ├── mode-r.js │ │ │ │ ├── mode-rdoc.js │ │ │ │ ├── mode-rhtml.js │ │ │ │ ├── mode-ruby.js │ │ │ │ ├── mode-scad.js │ │ │ │ ├── mode-scala.js │ │ │ │ ├── mode-scss.js │ │ │ │ ├── mode-sh.js │ │ │ │ ├── mode-sql.js │ │ │ │ ├── mode-stylus.js │ │ │ │ ├── mode-svg.js │ │ │ │ ├── mode-tcl.js │ │ │ │ ├── mode-tex.js │ │ │ │ ├── mode-text.js │ │ │ │ ├── mode-textile.js │ │ │ │ ├── mode-typescript.js │ │ │ │ ├── mode-xml.js │ │ │ │ ├── mode-xquery.js │ │ │ │ ├── mode-yaml.js │ │ │ │ ├── theme-ambiance.js │ │ │ │ ├── theme-chaos.js │ │ │ │ ├── theme-chrome.js │ │ │ │ ├── theme-clouds.js │ │ │ │ ├── theme-clouds_midnight.js │ │ │ │ ├── theme-cobalt.js │ │ │ │ ├── theme-crimson_editor.js │ │ │ │ ├── theme-dawn.js │ │ │ │ ├── theme-dreamweaver.js │ │ │ │ ├── theme-eclipse.js │ │ │ │ ├── theme-github.js │ │ │ │ ├── theme-idle_fingers.js │ │ │ │ ├── theme-kr.js │ │ │ │ ├── theme-merbivore.js │ │ │ │ ├── theme-merbivore_soft.js │ │ │ │ ├── theme-mono_industrial.js │ │ │ │ ├── theme-monokai.js │ │ │ │ ├── theme-pastel_on_dark.js │ │ │ │ ├── theme-solarized_dark.js │ │ │ │ ├── theme-solarized_light.js │ │ │ │ ├── theme-textmate.js │ │ │ │ ├── theme-tomorrow.js │ │ │ │ ├── theme-tomorrow_night.js │ │ │ │ ├── theme-tomorrow_night_blue.js │ │ │ │ ├── theme-tomorrow_night_bright.js │ │ │ │ ├── theme-tomorrow_night_eighties.js │ │ │ │ ├── theme-twilight.js │ │ │ │ ├── theme-vibrant_ink.js │ │ │ │ ├── theme-xcode.js │ │ │ │ ├── worker-coffee.js │ │ │ │ ├── worker-css.js │ │ │ │ ├── worker-javascript.js │ │ │ │ ├── worker-json.js │ │ │ │ └── worker-xquery.js │ │ │ ├── jquery-ace.coffee │ │ │ ├── jquery-ace.js │ │ │ └── jquery-ace.min.js │ │ ├── jquery.autosize.js │ │ ├── jquery_snippet │ │ │ ├── ZeroClipboard.swf │ │ │ ├── jquery.snippet.css │ │ │ └── jquery.snippet.js │ │ └── respond.min.js │ └── languages │ │ ├── czech.php │ │ ├── english.php │ │ ├── german.php │ │ ├── greek.php │ │ ├── hungarian.php │ │ ├── indonesian.php │ │ ├── italian.php │ │ ├── japanese.php │ │ ├── pt-br.portuguese.php │ │ ├── spanish.php │ │ └── turkish.php └── uploads │ ├── .htaccess │ ├── files │ └── index.html │ └── index.html ├── composer.json ├── developer-note.md ├── doc ├── changelog.md ├── contributors.md ├── faq │ ├── general.md │ └── technical.md ├── tutorial.md └── tutorial │ ├── designer_tags.md │ ├── designer_themes.md │ ├── images │ ├── user_configuration_configuration_management.png │ ├── user_installation_cms_setting.png │ ├── user_installation_database_information.png │ ├── user_installation_install_no_cms.png │ ├── user_module_module_management.png │ ├── user_navigation_navigation_example.png │ ├── user_navigation_navigation_management.png │ ├── user_navigation_navigation_management_detail.png │ ├── user_navigation_quicklink_management.png │ ├── user_privilege_privilege_management.png │ ├── user_setting_configuration.png │ ├── user_setting_image.png │ ├── user_setting_section.png │ ├── user_setting_third_party_authentication.png │ ├── user_theme_change_theme.png │ ├── user_user_and_group_group_management.png │ ├── user_user_and_group_user_management.png │ └── user_widget_widget_management.png │ ├── programmer_hook.md │ ├── programmer_module_generator.md │ ├── programmer_modules.md │ ├── programmer_translation.md │ ├── user_concepts.md │ ├── user_configuration.md │ ├── user_installation.md │ ├── user_layout.md │ ├── user_modules.md │ ├── user_navigation.md │ ├── user_privilege.md │ ├── user_setting.md │ ├── user_themes.md │ ├── user_update_and_migration.md │ ├── user_user_and_group.md │ └── user_widget.md ├── index.php ├── modules ├── artificial_intelligence │ ├── assets │ │ └── languages │ │ │ ├── english.php │ │ │ ├── german.php │ │ │ ├── hungarian.php │ │ │ ├── indonesian.php │ │ │ └── pt-br.portuguese.php │ ├── controllers │ │ ├── Artificial_intelligence.php │ │ ├── Info.php │ │ └── Nnga.php │ ├── description.txt │ ├── icon.png │ ├── models │ │ ├── Ai_core.php │ │ ├── Ai_genetics_algorithm.php │ │ ├── Ai_neural_network.php │ │ └── Ai_nnga.php │ └── views │ │ ├── artificial_intelligence_index.php │ │ ├── nnga_index.php │ │ ├── nnga_monitor.php │ │ └── nnga_set.php ├── blocker │ ├── assets │ │ ├── db │ │ │ └── .htaccess │ │ └── languages │ │ │ └── .htaccess │ ├── config │ │ ├── .htaccess │ │ └── module_config.php │ ├── controllers │ │ ├── .htaccess │ │ ├── Blocker.php │ │ ├── Info.php │ │ └── Manage_label.php │ ├── description.txt │ ├── helpers │ │ └── .htaccess │ ├── icon.png │ ├── libraries │ │ └── .htaccess │ ├── models │ │ ├── .htaccess │ │ └── Blocker_model.php │ └── views │ │ ├── .htaccess │ │ ├── Manage_label_view.php │ │ ├── blocker_index.php │ │ ├── field_label_ip.php │ │ ├── field_label_leech.php │ │ ├── field_label_useragent.php │ │ └── install_setting.php ├── blog │ ├── assets │ │ ├── db │ │ │ └── .htaccess │ │ ├── images │ │ │ ├── .htaccess │ │ │ ├── index.html │ │ │ ├── text.jpeg │ │ │ └── user.png │ │ ├── languages │ │ │ ├── english.php │ │ │ ├── german.php │ │ │ ├── index.html │ │ │ └── italian.php │ │ ├── navigation_icon │ │ │ ├── .htaccess │ │ │ ├── index.html │ │ │ ├── index.png │ │ │ ├── manage_article.png │ │ │ ├── manage_category.png │ │ │ └── setting.png │ │ ├── scripts │ │ │ ├── .htaccess │ │ │ └── index.html │ │ ├── styles │ │ │ ├── .htaccess │ │ │ └── index.html │ │ └── uploads │ │ │ ├── .htaccess │ │ │ ├── 01.jpg │ │ │ ├── 02.jpg │ │ │ ├── 03.jpg │ │ │ ├── 04.jpg │ │ │ ├── 05.jpg │ │ │ ├── 06.jpg │ │ │ ├── 07.jpg │ │ │ ├── 08.jpg │ │ │ ├── index.html │ │ │ ├── main_01.jpg │ │ │ ├── main_02.jpg │ │ │ ├── main_03.jpg │ │ │ ├── main_04.jpg │ │ │ ├── main_05.jpg │ │ │ ├── main_06.jpg │ │ │ ├── main_07.jpg │ │ │ ├── main_08.jpg │ │ │ ├── thumb_main_01.jpg │ │ │ ├── thumb_main_02.jpg │ │ │ ├── thumb_main_03.jpg │ │ │ ├── thumb_main_04.jpg │ │ │ ├── thumb_main_05.jpg │ │ │ ├── thumb_main_06.jpg │ │ │ ├── thumb_main_07.jpg │ │ │ └── thumb_main_08.jpg │ ├── config │ │ └── module_config.php │ ├── controllers │ │ ├── Blog.php │ │ ├── Blog_widget.php │ │ ├── Info.php │ │ ├── Manage_article.php │ │ ├── Manage_category.php │ │ ├── Notif.php │ │ └── Setting.php │ ├── description.txt │ ├── icon.png │ ├── models │ │ ├── Article_model.php │ │ └── Wp_exim.php │ └── views │ │ ├── Browse_article_template_config_view.php │ │ ├── Manage_article_view.php │ │ ├── Manage_category_view.php │ │ ├── browse_article_partial_view.php │ │ ├── browse_article_view.php │ │ ├── field_article_comments.php │ │ ├── field_article_photos.php │ │ ├── import.php │ │ ├── install_setting.php │ │ ├── setting_index.php │ │ ├── widget_archive.php │ │ ├── widget_category.php │ │ ├── widget_featured.php │ │ ├── widget_newest.php │ │ ├── widget_newest_hp.php │ │ └── widget_popular.php ├── cck │ ├── assets │ │ ├── db │ │ │ └── .htaccess │ │ ├── images │ │ │ ├── .htaccess │ │ │ └── index.html │ │ ├── languages │ │ │ └── .htaccess │ │ ├── navigation_icon │ │ │ ├── .htaccess │ │ │ ├── index.html │ │ │ ├── index.png │ │ │ ├── manage_entity.png │ │ │ └── manage_template.png │ │ ├── scripts │ │ │ ├── .htaccess │ │ │ └── index.html │ │ ├── styles │ │ │ ├── .htaccess │ │ │ └── index.html │ │ └── uploads │ │ │ ├── .htaccess │ │ │ └── index.html │ ├── config │ │ ├── .htaccess │ │ └── module_config.php │ ├── controllers │ │ ├── .htaccess │ │ ├── Ajax.php │ │ ├── Browse.php │ │ ├── Cck.php │ │ ├── Info.php │ │ ├── Manage.php │ │ ├── Manage_entity.php │ │ ├── Manage_field.php │ │ ├── Manage_option.php │ │ └── Manage_template.php │ ├── description.txt │ ├── helpers │ │ ├── .htaccess │ │ └── function_helper.php │ ├── icon.png │ ├── libraries │ │ └── .htaccess │ ├── models │ │ ├── .htaccess │ │ ├── Cck_model.php │ │ ├── Grocerycrud_entity_model.php │ │ ├── Grocerycrud_field_model.php │ │ ├── Grocerycrud_option_model.php │ │ └── Grocerycrud_template_model.php │ ├── nordrassil_seed.json │ └── views │ │ ├── .htaccess │ │ ├── Browse_partial_view.php │ │ ├── Browse_view.php │ │ ├── Cck_index.php │ │ ├── Manage_entity_view.php │ │ ├── Manage_field_view.php │ │ ├── Manage_option_view.php │ │ ├── Manage_template_view.php │ │ ├── Manage_view.php │ │ ├── field_entity_field.php │ │ ├── field_field_option.php │ │ └── field_template_field.php ├── contact_us │ ├── assets │ │ └── languages │ │ │ ├── english.php │ │ │ ├── german.php │ │ │ └── italian.php │ ├── config │ │ └── module_config.php │ ├── controllers │ │ ├── Contact_us.php │ │ ├── Info.php │ │ ├── Manage_message.php │ │ └── Notif.php │ ├── description.txt │ ├── icon.png │ └── views │ │ ├── Manage_message_view.php │ │ ├── contact_us_index.php │ │ └── install_setting.php ├── gis │ ├── README.md │ ├── assets │ │ ├── db │ │ │ └── .htaccess │ │ ├── images │ │ │ ├── .htaccess │ │ │ ├── black_plane.png │ │ │ └── index.html │ │ ├── js │ │ │ ├── leaflet-google │ │ │ │ └── Google.js │ │ │ ├── leaflet-label │ │ │ │ └── Label.js │ │ │ └── leaflet │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Jakefile.js │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build │ │ │ │ ├── build.html │ │ │ │ ├── build.js │ │ │ │ ├── deps.js │ │ │ │ ├── hint.js │ │ │ │ └── hintrc.js │ │ │ │ ├── debug │ │ │ │ ├── css │ │ │ │ │ ├── mobile.css │ │ │ │ │ └── screen.css │ │ │ │ ├── leaflet-include.js │ │ │ │ ├── map │ │ │ │ │ ├── canvas.html │ │ │ │ │ ├── controls.html │ │ │ │ │ ├── geolocation.html │ │ │ │ │ ├── map-mobile.html │ │ │ │ │ ├── map.html │ │ │ │ │ ├── max-bounds.html │ │ │ │ │ ├── scroll.html │ │ │ │ │ ├── wms-marble.html │ │ │ │ │ └── wms.html │ │ │ │ └── vector │ │ │ │ │ ├── bounds-extend.html │ │ │ │ │ ├── editable.html │ │ │ │ │ ├── feature-group-bounds.html │ │ │ │ │ ├── geojson-sample.js │ │ │ │ │ ├── geojson.html │ │ │ │ │ ├── rectangle.html │ │ │ │ │ ├── route.js │ │ │ │ │ ├── vector-bounds.html │ │ │ │ │ ├── vector-canvas.html │ │ │ │ │ ├── vector-mobile.html │ │ │ │ │ ├── vector-simple.html │ │ │ │ │ └── vector.html │ │ │ │ ├── dist │ │ │ │ ├── images │ │ │ │ │ ├── layers.png │ │ │ │ │ ├── marker-icon.png │ │ │ │ │ ├── marker-shadow.png │ │ │ │ │ ├── popup-close.png │ │ │ │ │ ├── zoom-in.png │ │ │ │ │ └── zoom-out.png │ │ │ │ ├── leaflet-src.js │ │ │ │ ├── leaflet.css │ │ │ │ ├── leaflet.ie.css │ │ │ │ └── leaflet.js │ │ │ │ ├── spec │ │ │ │ ├── jasmine │ │ │ │ │ ├── jasmine-html.js │ │ │ │ │ ├── jasmine.css │ │ │ │ │ └── jasmine.js │ │ │ │ ├── runner.html │ │ │ │ └── suites │ │ │ │ │ ├── LeafletSpec.js │ │ │ │ │ ├── SpecHelper.js │ │ │ │ │ ├── core │ │ │ │ │ ├── ClassSpec.js │ │ │ │ │ ├── EventsSpec.js │ │ │ │ │ └── UtilSpec.js │ │ │ │ │ ├── dom │ │ │ │ │ ├── DomEventSpec.js │ │ │ │ │ └── DomUtilSpec.js │ │ │ │ │ ├── geo │ │ │ │ │ ├── LatLngBoundsSpec.js │ │ │ │ │ ├── LatLngSpec.js │ │ │ │ │ └── ProjectionSpec.js │ │ │ │ │ ├── geometry │ │ │ │ │ ├── BoundsSpec.js │ │ │ │ │ ├── PointSpec.js │ │ │ │ │ └── TransformationSpec.js │ │ │ │ │ ├── layer │ │ │ │ │ ├── TileLayerSpec.js │ │ │ │ │ └── vector │ │ │ │ │ │ └── PolylineGeometrySpec.js │ │ │ │ │ └── map │ │ │ │ │ └── MapSpec.js │ │ │ │ └── src │ │ │ │ ├── Leaflet.js │ │ │ │ ├── control │ │ │ │ ├── Control.Attribution.js │ │ │ │ ├── Control.Layers.js │ │ │ │ ├── Control.Scale.js │ │ │ │ ├── Control.Zoom.js │ │ │ │ └── Control.js │ │ │ │ ├── core │ │ │ │ ├── Browser.js │ │ │ │ ├── Class.js │ │ │ │ ├── Events.js │ │ │ │ ├── Handler.js │ │ │ │ └── Util.js │ │ │ │ ├── dom │ │ │ │ ├── DomEvent.DoubleTap.js │ │ │ │ ├── DomEvent.js │ │ │ │ ├── DomUtil.js │ │ │ │ ├── Draggable.js │ │ │ │ └── transition │ │ │ │ │ ├── Transition.Native.js │ │ │ │ │ ├── Transition.Timer.js │ │ │ │ │ └── Transition.js │ │ │ │ ├── geo │ │ │ │ ├── LatLng.js │ │ │ │ ├── LatLngBounds.js │ │ │ │ ├── crs │ │ │ │ │ ├── CRS.EPSG3395.js │ │ │ │ │ ├── CRS.EPSG3857.js │ │ │ │ │ ├── CRS.EPSG4326.js │ │ │ │ │ ├── CRS.Simple.js │ │ │ │ │ └── CRS.js │ │ │ │ └── projection │ │ │ │ │ ├── Projection.LonLat.js │ │ │ │ │ ├── Projection.Mercator.js │ │ │ │ │ ├── Projection.SphericalMercator.js │ │ │ │ │ └── Projection.js │ │ │ │ ├── geometry │ │ │ │ ├── Bounds.js │ │ │ │ ├── LineUtil.js │ │ │ │ ├── Point.js │ │ │ │ ├── PolyUtil.js │ │ │ │ └── Transformation.js │ │ │ │ ├── layer │ │ │ │ ├── FeatureGroup.js │ │ │ │ ├── GeoJSON.js │ │ │ │ ├── ImageOverlay.js │ │ │ │ ├── LayerGroup.js │ │ │ │ ├── Popup.js │ │ │ │ ├── marker │ │ │ │ │ ├── DivIcon.js │ │ │ │ │ ├── Icon.js │ │ │ │ │ ├── Marker.Drag.js │ │ │ │ │ ├── Marker.Popup.js │ │ │ │ │ └── Marker.js │ │ │ │ ├── tile │ │ │ │ │ ├── TileLayer.Canvas.js │ │ │ │ │ ├── TileLayer.WMS.js │ │ │ │ │ └── TileLayer.js │ │ │ │ └── vector │ │ │ │ │ ├── Circle.js │ │ │ │ │ ├── CircleMarker.js │ │ │ │ │ ├── MultiPoly.js │ │ │ │ │ ├── Path.Popup.js │ │ │ │ │ ├── Path.SVG.js │ │ │ │ │ ├── Path.VML.js │ │ │ │ │ ├── Path.js │ │ │ │ │ ├── Polygon.js │ │ │ │ │ ├── Polyline.Edit.js │ │ │ │ │ ├── Polyline.js │ │ │ │ │ ├── Rectangle.js │ │ │ │ │ └── canvas │ │ │ │ │ ├── Circle.Canvas.js │ │ │ │ │ ├── Path.Canvas.js │ │ │ │ │ ├── Polygon.Canvas.js │ │ │ │ │ └── Polyline.Canvas.js │ │ │ │ └── map │ │ │ │ ├── Map.js │ │ │ │ ├── anim │ │ │ │ ├── Map.PanAnimation.js │ │ │ │ └── Map.ZoomAnimation.js │ │ │ │ ├── ext │ │ │ │ ├── Map.Control.js │ │ │ │ ├── Map.Geolocation.js │ │ │ │ └── Map.Popup.js │ │ │ │ └── handler │ │ │ │ ├── Map.BoxZoom.js │ │ │ │ ├── Map.DoubleClickZoom.js │ │ │ │ ├── Map.Drag.js │ │ │ │ ├── Map.ScrollWheelZoom.js │ │ │ │ └── Map.TouchZoom.js │ │ ├── languages │ │ │ └── .htaccess │ │ ├── navigation_icon │ │ │ ├── .htaccess │ │ │ └── index.html │ │ ├── scripts │ │ │ ├── .htaccess │ │ │ └── index.html │ │ ├── styles │ │ │ ├── .htaccess │ │ │ └── index.html │ │ └── uploads │ │ │ ├── .htaccess │ │ │ └── index.html │ ├── classes │ │ └── geoPHP │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc │ │ │ └── api.html │ │ │ ├── geoPHP.inc │ │ │ ├── lib │ │ │ ├── adapters │ │ │ │ ├── EWKB.class.php │ │ │ │ ├── EWKT.class.php │ │ │ │ ├── GPX.class.php │ │ │ │ ├── GeoAdapter.class.php │ │ │ │ ├── GeoJSON.class.php │ │ │ │ ├── GeoRSS.class.php │ │ │ │ ├── GoogleGeocode.class.php │ │ │ │ ├── KML.class.php │ │ │ │ ├── WKB.class.php │ │ │ │ └── WKT.class.php │ │ │ └── geometry │ │ │ │ ├── Collection.class.php │ │ │ │ ├── Geometry.class.php │ │ │ │ ├── GeometryCollection.class.php │ │ │ │ ├── LineString.class.php │ │ │ │ ├── MultiLineString.class.php │ │ │ │ ├── MultiPoint.class.php │ │ │ │ ├── MultiPolygon.class.php │ │ │ │ ├── Point.class.php │ │ │ │ └── Polygon.class.php │ │ │ └── tests │ │ │ ├── input │ │ │ ├── an_empty_polygon.wkt │ │ │ ├── barret_spur.gpx │ │ │ ├── big_n_ugly.kml │ │ │ ├── box.georss │ │ │ ├── cdata.kml │ │ │ ├── circle.georss │ │ │ ├── fells_loop.gpx │ │ │ ├── geometrycollection.georss │ │ │ ├── geometrycollection.wkt │ │ │ ├── line.georss │ │ │ ├── linestring.wkt │ │ │ ├── multilinestring.wkt │ │ │ ├── multipolygon.wkb │ │ │ ├── multipolygon.wkt │ │ │ ├── multipolygon2.wkt │ │ │ ├── multipolygon_big.wkt │ │ │ ├── path.kml │ │ │ ├── paths_big.json │ │ │ ├── pentagon.kml │ │ │ ├── point.georss │ │ │ ├── point.kml │ │ │ ├── point.wkt │ │ │ ├── polygon.georss │ │ │ ├── polygon.wkt │ │ │ ├── polygon2.wkt │ │ │ ├── polygon3.wkt │ │ │ ├── polygon4.wkt │ │ │ ├── route.gpx │ │ │ ├── simple_point.json │ │ │ └── track.gpx │ │ │ ├── postgis.php │ │ │ └── test.php │ ├── config │ │ ├── .htaccess │ │ └── module_config.php │ ├── controllers │ │ ├── .htaccess │ │ ├── Alaska_airport.php │ │ ├── Gis.php │ │ ├── Info.php │ │ ├── Manage_alaska_airport.php │ │ ├── Manage_layer.php │ │ └── Manage_map.php │ ├── description.txt │ ├── helpers │ │ ├── .htaccess │ │ └── function_helper.php │ ├── icon.png │ ├── libraries │ │ └── .htaccess │ ├── models │ │ ├── .htaccess │ │ ├── Geoformat.php │ │ ├── Grocerycrud_alaska_airport_model.php │ │ ├── Grocerycrud_layer_model.php │ │ ├── Grocerycrud_map_model.php │ │ └── Map_model.php │ ├── nordrassil_seed.json │ └── views │ │ ├── .htaccess │ │ ├── Gis_index.php │ │ ├── Manage_alaska_airport_view.php │ │ ├── Manage_layer_view.php │ │ ├── Manage_map_view.php │ │ ├── field_map_cloudmade_basemap.php │ │ ├── field_map_layer.php │ │ ├── gis_index_list.php │ │ └── gis_index_map.php ├── index.html ├── installer │ ├── assets │ │ ├── Haruna Ono.jpg │ │ ├── Mami Sasazaki.jpg │ │ ├── Rina Suzuki.jpg │ │ ├── Tomomi Ogawa.jpg │ │ └── ajax-loader.gif │ ├── controllers │ │ └── Installer.php │ ├── layouts │ │ ├── default-one-column.html │ │ ├── default-three-column.html │ │ ├── default-two-column.html │ │ ├── default.html │ │ ├── minimal.html │ │ ├── slide-one-column.html │ │ ├── slide-three-column.html │ │ ├── slide-two-column.html │ │ └── slide.html │ ├── models │ │ └── Install_model.php │ └── views │ │ ├── htaccess_hide_index.php │ │ ├── htaccess_not_hide_index.php │ │ ├── installer_index.php │ │ └── installer_install.php ├── main │ ├── assets │ │ ├── images │ │ │ ├── brush-pencil.png │ │ │ ├── flame.png │ │ │ ├── frames.png │ │ │ ├── gear.png │ │ │ ├── profle.png │ │ │ ├── rocket.png │ │ │ └── settings │ │ │ │ ├── navigation_right_partial.png │ │ │ │ ├── section_banner.png │ │ │ │ ├── section_bottom.png │ │ │ │ ├── section_custom_script.png │ │ │ │ ├── section_custom_style.png │ │ │ │ ├── section_left.png │ │ │ │ ├── section_right.png │ │ │ │ └── section_top_fix.png │ │ ├── languages │ │ │ ├── english.php │ │ │ ├── hungarian.php │ │ │ ├── indonesian.php │ │ │ ├── italian.php │ │ │ └── pt-br.portuguese.php │ │ ├── navigation_icon │ │ │ ├── main_change_theme.png │ │ │ ├── main_config_management.png │ │ │ ├── main_group_management.png │ │ │ ├── main_language_management.png │ │ │ ├── main_layout_management.png │ │ │ ├── main_module_management.png │ │ │ ├── main_navigation_management.png │ │ │ ├── main_privilege_management.png │ │ │ ├── main_quicklink_management.png │ │ │ ├── main_route_management.png │ │ │ ├── main_setting.png │ │ │ ├── main_user_management.png │ │ │ └── main_widget_management.png │ │ ├── scripts │ │ │ ├── navigation.js │ │ │ ├── privilege.js │ │ │ └── widget.js │ │ ├── styles │ │ │ ├── navigation.css │ │ │ └── widget.css │ │ ├── third_party │ │ │ ├── AOL.png │ │ │ ├── Facebook.png │ │ │ ├── Foursquare.png │ │ │ ├── Google.png │ │ │ ├── LinkedIn.png │ │ │ ├── Live.png │ │ │ ├── MySpace.png │ │ │ ├── OpenID.png │ │ │ ├── Twitter.png │ │ │ └── Yahoo.png │ │ └── uploads │ │ │ ├── .htaccess │ │ │ └── index.html │ ├── controllers │ │ ├── Ajax.php │ │ ├── Hauth.php │ │ ├── Main.php │ │ ├── Manage_config.php │ │ ├── Manage_group.php │ │ ├── Manage_language.php │ │ ├── Manage_layout.php │ │ ├── Manage_navigation.php │ │ ├── Manage_privilege.php │ │ ├── Manage_quicklink.php │ │ ├── Manage_route.php │ │ ├── Manage_user.php │ │ ├── Manage_widget.php │ │ ├── Not_found.php │ │ ├── Setting.php │ │ └── Test.php │ ├── core │ │ └── CMS_Predefined_Callback_CRUD_Controller.php │ ├── models │ │ ├── Grocerycrud_config_model.php │ │ ├── Grocerycrud_group_model.php │ │ ├── Grocerycrud_language_model.php │ │ ├── Grocerycrud_layout_model.php │ │ ├── Grocerycrud_navigation_model.php │ │ ├── Grocerycrud_privilege_model.php │ │ ├── Grocerycrud_quicklink_model.php │ │ ├── Grocerycrud_route_model.php │ │ ├── Grocerycrud_user_model.php │ │ └── Grocerycrud_widget_model.php │ └── views │ │ ├── Manage_config_view.php │ │ ├── Manage_group_view.php │ │ ├── Manage_language_view.php │ │ ├── Manage_layout_view.php │ │ ├── Manage_navigation_view.php │ │ ├── Manage_privilege_view.php │ │ ├── Manage_quicklink_view.php │ │ ├── Manage_route_view.php │ │ ├── Manage_user_view.php │ │ ├── Manage_widget_view.php │ │ ├── factory_reset_index.php │ │ ├── field_language_detail_language.php │ │ ├── field_navigation_group_navigation.php │ │ ├── field_navigation_quicklink.php │ │ ├── field_privilege_group_privilege.php │ │ ├── field_user_group_user.php │ │ ├── field_user_module.php │ │ ├── field_widget_group_widget.php │ │ ├── hauth │ │ ├── email.php │ │ ├── home.php │ │ └── open_id.php │ │ ├── main_change_profile.php │ │ ├── main_change_theme.php │ │ ├── main_forgot_change_password.php │ │ ├── main_forgot_email_not_set.php │ │ ├── main_forgot_fill_identity.php │ │ ├── main_index.php │ │ ├── main_language.php │ │ ├── main_login.php │ │ ├── main_management.php │ │ ├── main_module_management.php │ │ ├── main_register.php │ │ ├── main_widget_logout.php │ │ ├── main_widget_online_user.php │ │ ├── not_found_index.php │ │ └── setting_index.php ├── multisite │ ├── assets │ │ ├── db │ │ │ └── .htaccess │ │ ├── images │ │ │ ├── default-logo.png │ │ │ └── index.html │ │ ├── languages │ │ │ └── .htaccess │ │ ├── navigation_icon │ │ │ └── index.html │ │ ├── scripts │ │ │ └── index.html │ │ ├── styles │ │ │ └── index.html │ │ └── uploads │ │ │ ├── Blog.png │ │ │ ├── Static About Team.png │ │ │ ├── Static Portofolio 1.png │ │ │ ├── Static Portofolio 2.png │ │ │ ├── Static Small Business.png │ │ │ └── index.html │ ├── config │ │ ├── .htaccess │ │ └── module_config.php │ ├── controllers │ │ ├── .htaccess │ │ ├── Add_subsite.php │ │ ├── Info.php │ │ ├── Manage_subsite.php │ │ ├── Manage_template.php │ │ └── Multisite.php │ ├── description.txt │ ├── helpers │ │ └── .htaccess │ ├── icon.png │ ├── libraries │ │ └── .htaccess │ ├── models │ │ ├── .htaccess │ │ └── Subsite_model.php │ └── views │ │ ├── .htaccess │ │ ├── Manage_template_view.php │ │ ├── add_subsite_index.php │ │ ├── add_subsite_install.php │ │ ├── browse_subsite_partial_view.php │ │ ├── install_setting.php │ │ ├── multisite_edit.php │ │ ├── multisite_index.php │ │ └── register.php ├── nordrassil │ ├── assets │ │ ├── db │ │ │ └── .htaccess │ │ ├── images │ │ │ ├── .htaccess │ │ │ └── index.html │ │ ├── languages │ │ │ └── .htaccess │ │ ├── navigation_icon │ │ │ ├── .htaccess │ │ │ ├── index.html │ │ │ ├── index.png │ │ │ ├── manage_project.png │ │ │ └── manage_template.png │ │ ├── scripts │ │ │ ├── .htaccess │ │ │ ├── adjust.js │ │ │ └── index.html │ │ ├── styles │ │ │ ├── .htaccess │ │ │ └── index.html │ │ └── uploads │ │ │ ├── .htaccess │ │ │ └── index.html │ ├── config │ │ ├── .htaccess │ │ └── module_config.php │ ├── controllers │ │ ├── .htaccess │ │ ├── Ajax.php │ │ ├── Info.php │ │ ├── Manage_column.php │ │ ├── Manage_project.php │ │ ├── Manage_table.php │ │ ├── Manage_template.php │ │ ├── Nordrassil.php │ │ └── default_generator │ │ │ └── Default_generator.php │ ├── core │ │ ├── .htaccess │ │ └── Nds_Special_Crud_Controller.php │ ├── description.txt │ ├── helpers │ │ ├── .htaccess │ │ └── function_helper.php │ ├── icon.png │ ├── libraries │ │ ├── .htaccess │ │ └── Nordrassillib.php │ ├── models │ │ ├── .htaccess │ │ ├── Grocerycrud_column_model.php │ │ ├── Grocerycrud_project_model.php │ │ ├── Grocerycrud_table_model.php │ │ ├── Grocerycrud_template_model.php │ │ ├── Nds_model.php │ │ └── Synchronize_model.php │ ├── nordrassil_seed.json │ └── views │ │ ├── .htaccess │ │ ├── Manage_column_view.php │ │ ├── Manage_project_view.php │ │ ├── Manage_table_view.php │ │ ├── Manage_template_view.php │ │ ├── Nordrassil_index.php │ │ ├── default_generator │ │ ├── back_controller.php │ │ ├── back_model.php │ │ ├── back_view.php │ │ ├── callback_field_view.php │ │ ├── controller_partial │ │ │ ├── detail_after_insert_or_update.php │ │ │ ├── detail_before_delete.php │ │ │ ├── detail_callback_call.php │ │ │ ├── detail_callback_declaration.php │ │ │ ├── display_as.php │ │ │ ├── enum_set_field.php │ │ │ ├── hide_field.php │ │ │ ├── set_relation.php │ │ │ └── set_relation_n_n.php │ │ ├── description.txt │ │ ├── front_controller.php │ │ ├── front_model.php │ │ ├── front_view.php │ │ ├── front_view_config.php │ │ ├── front_view_partial.php │ │ ├── helper_function.php │ │ ├── htaccess.php │ │ ├── htaccess_anti_php.php │ │ ├── info_controller.php │ │ ├── install_partial │ │ │ ├── add_back_navigation.php │ │ │ ├── add_front_navigation.php │ │ │ ├── backend_navigation.php │ │ │ ├── frontend_configuration.php │ │ │ ├── frontend_navigation.php │ │ │ ├── frontend_privilege.php │ │ │ └── group_backend_privilege.php │ │ ├── install_setting_view.php │ │ ├── main_controller.php │ │ ├── main_view.php │ │ ├── model.php │ │ └── module_config.php │ │ ├── field_column_column_option.php │ │ ├── field_project_project_option.php │ │ ├── field_project_table.php │ │ ├── field_table_column.php │ │ ├── field_table_table_option.php │ │ ├── field_template_project.php │ │ └── field_template_template_option.php ├── portfolio │ ├── assets │ │ ├── db │ │ │ └── .htaccess │ │ ├── images │ │ │ ├── .htaccess │ │ │ └── index.html │ │ ├── languages │ │ │ ├── .htaccess │ │ │ └── english.php │ │ ├── navigation_icon │ │ │ ├── .htaccess │ │ │ ├── index.html │ │ │ ├── manage_category.png │ │ │ └── manage_portfolio.png │ │ ├── scripts │ │ │ ├── .htaccess │ │ │ └── index.html │ │ ├── styles │ │ │ ├── .htaccess │ │ │ └── index.html │ │ └── uploads │ │ │ ├── .htaccess │ │ │ └── index.html │ ├── config │ │ ├── .htaccess │ │ └── module_config.php │ ├── controllers │ │ ├── .htaccess │ │ ├── Browse_portfolio.php │ │ ├── Info.php │ │ ├── Manage_category.php │ │ ├── Manage_portfolio.php │ │ └── Portfolio.php │ ├── description.txt │ ├── helpers │ │ ├── .htaccess │ │ └── function_helper.php │ ├── icon.png │ ├── libraries │ │ └── .htaccess │ ├── models │ │ ├── .htaccess │ │ ├── Grocerycrud_category_model.php │ │ ├── Grocerycrud_portfolio_model.php │ │ └── Portfolio_model.php │ └── views │ │ ├── .htaccess │ │ ├── Browse_portfolio_partial_view.php │ │ ├── Browse_portfolio_template_config_view.php │ │ ├── Browse_portfolio_view.php │ │ ├── Manage_category_view.php │ │ ├── Manage_portfolio_view.php │ │ └── Portfolio_index.php ├── static_accessories │ ├── assets │ │ ├── db │ │ │ ├── install.sql │ │ │ └── uninstall.sql │ │ ├── images │ │ │ └── slides │ │ │ │ ├── .htaccess │ │ │ │ ├── 01.jpg │ │ │ │ ├── 02.jpg │ │ │ │ ├── 03.jpg │ │ │ │ ├── 04.jpg │ │ │ │ ├── 05.jpg │ │ │ │ ├── 06.jpg │ │ │ │ ├── 07.jpg │ │ │ │ ├── 08.jpg │ │ │ │ ├── 09.jpg │ │ │ │ ├── 10.jpg │ │ │ │ ├── 11.jpg │ │ │ │ ├── 12.jpg │ │ │ │ ├── 13.jpg │ │ │ │ ├── 14.jpg │ │ │ │ ├── 15.jpg │ │ │ │ └── index.html │ │ └── navigation_icon │ │ │ ├── index.html │ │ │ └── index.png │ ├── config │ │ └── module_config.php │ ├── controllers │ │ ├── Info.php │ │ ├── Manage_slide.php │ │ ├── Manage_tab_content.php │ │ ├── Manage_visitor_counter.php │ │ ├── Static_accessories.php │ │ └── Static_accessories_widget.php │ ├── description.txt │ ├── icon.png │ ├── models │ │ ├── Grocerycrud_slide_model.php │ │ ├── Grocerycrud_tab_content_model.php │ │ ├── Grocerycrud_visitor_counter_model.php │ │ ├── Slide_model.php │ │ ├── Tab_model.php │ │ └── Visitor_counter_model.php │ └── views │ │ ├── Manage_slide_view.php │ │ ├── Manage_tab_content_view.php │ │ ├── Manage_visitor_counter_view.php │ │ ├── static_accessories_index.php │ │ ├── widget_slide.php │ │ ├── widget_tab.php │ │ └── widget_visitor_counter.php └── teldrassil │ ├── assets │ ├── bootstrap-colorselector │ │ ├── LICENCE │ │ ├── README.md │ │ └── lib │ │ │ └── bootstrap-colorselector-0.2.0 │ │ │ ├── css │ │ │ └── bootstrap-colorselector.css │ │ │ └── js │ │ │ └── bootstrap-colorselector.js │ ├── db │ │ └── .htaccess │ ├── images │ │ └── 200x200.png │ ├── languages │ │ └── .htaccess │ ├── navigation_icon │ │ └── index.png │ ├── theme_template.css │ ├── theme_template │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── style.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── ico │ │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ │ └── apple-touch-icon-72-precomposed.png │ │ │ ├── images │ │ │ │ ├── collapse.png │ │ │ │ └── expand.png │ │ │ └── js │ │ │ │ └── script.js │ │ ├── preview.png │ │ └── views │ │ │ ├── css.php │ │ │ └── js.php │ └── uploads │ │ └── index.html │ ├── config │ ├── .htaccess │ └── module_config.php │ ├── controllers │ ├── .htaccess │ ├── Info.php │ └── Teldrassil.php │ ├── description.txt │ ├── helpers │ ├── .htaccess │ ├── function_helper.php │ └── image_helper.php │ ├── icon.png │ ├── libraries │ └── .htaccess │ ├── models │ └── .htaccess │ └── views │ ├── .htaccess │ ├── install_setting.php │ ├── teldrassil_index.php │ └── teldrassil_preview.php ├── nginx.conf ├── post-installation.sh ├── readme.md ├── reset_installation.sh ├── 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 ├── themes ├── amelia │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── caffeine │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── cerulean │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── cosmo │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── cyborg │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── darkly │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── flatly │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── index.html ├── journal │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── lumen │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── material │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ ├── material.min.css │ │ │ ├── material.min.css.map │ │ │ ├── ripples.min.css │ │ │ ├── ripples.min.css.map │ │ │ ├── roboto.min.css │ │ │ ├── roboto.min.css.map │ │ │ └── style.css │ │ ├── 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 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ ├── material.js │ │ │ ├── material.min.js │ │ │ ├── material.min.js.map │ │ │ ├── ripples.js │ │ │ ├── ripples.min.js │ │ │ ├── ripples.min.js.map │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── neutral │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── paper │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── readable │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── rossian │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── sandstone │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── simplex │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── slate │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── spacelab │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── superhero │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php ├── united │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ └── apple-touch-icon-72-precomposed.png │ │ ├── images │ │ │ ├── collapse.png │ │ │ └── expand.png │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ │ ├── css.php │ │ └── js.php └── yeti │ ├── assets │ ├── css │ │ ├── bootstrap.min.css │ │ └── style.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── ico │ │ ├── apple-touch-icon-114-precomposed.png │ │ ├── apple-touch-icon-144-precomposed.png │ │ ├── apple-touch-icon-57-precomposed.png │ │ └── apple-touch-icon-72-precomposed.png │ ├── images │ │ ├── collapse.png │ │ └── expand.png │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ └── script.js │ ├── description.txt │ ├── preview.png │ └── views │ ├── css.php │ └── js.php ├── user_guide ├── .buildinfo ├── DCO.html ├── _downloads │ └── ELDocs.tmbundle.zip ├── _images │ ├── appflowchart.gif │ └── smile.gif ├── _static │ ├── ajax-loader.gif │ ├── basic.css │ ├── ci-icon.ico │ ├── comment-bright.png │ ├── comment-close.png │ ├── comment.png │ ├── css │ │ ├── badge_only.css │ │ ├── citheme.css │ │ └── theme.css │ ├── doctools.js │ ├── down-pressed.png │ ├── down.png │ ├── file.png │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── jquery.js │ ├── js │ │ ├── oldtheme.js │ │ └── theme.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── underscore.js │ ├── up-pressed.png │ ├── up.png │ └── websupport.js ├── changelog.html ├── contributing │ └── index.html ├── database │ ├── caching.html │ ├── call_function.html │ ├── configuration.html │ ├── connecting.html │ ├── db_driver_reference.html │ ├── examples.html │ ├── forge.html │ ├── helpers.html │ ├── index.html │ ├── metadata.html │ ├── queries.html │ ├── query_builder.html │ ├── results.html │ ├── transactions.html │ └── utilities.html ├── documentation │ └── index.html ├── general │ ├── alternative_php.html │ ├── ancillary_classes.html │ ├── autoloader.html │ ├── caching.html │ ├── cli.html │ ├── common_functions.html │ ├── compatibility_functions.html │ ├── controllers.html │ ├── core_classes.html │ ├── creating_drivers.html │ ├── creating_libraries.html │ ├── credits.html │ ├── drivers.html │ ├── environments.html │ ├── errors.html │ ├── helpers.html │ ├── hooks.html │ ├── index.html │ ├── libraries.html │ ├── managing_apps.html │ ├── models.html │ ├── profiling.html │ ├── requirements.html │ ├── reserved_names.html │ ├── routing.html │ ├── security.html │ ├── styleguide.html │ ├── urls.html │ ├── views.html │ └── welcome.html ├── genindex.html ├── helpers │ ├── array_helper.html │ ├── captcha_helper.html │ ├── cookie_helper.html │ ├── date_helper.html │ ├── directory_helper.html │ ├── download_helper.html │ ├── email_helper.html │ ├── file_helper.html │ ├── form_helper.html │ ├── html_helper.html │ ├── index.html │ ├── inflector_helper.html │ ├── language_helper.html │ ├── number_helper.html │ ├── path_helper.html │ ├── security_helper.html │ ├── smiley_helper.html │ ├── string_helper.html │ ├── text_helper.html │ ├── typography_helper.html │ ├── url_helper.html │ └── xml_helper.html ├── index.html ├── installation │ ├── downloads.html │ ├── index.html │ ├── troubleshooting.html │ ├── upgrade_120.html │ ├── upgrade_130.html │ ├── upgrade_131.html │ ├── upgrade_132.html │ ├── upgrade_133.html │ ├── upgrade_140.html │ ├── upgrade_141.html │ ├── upgrade_150.html │ ├── upgrade_152.html │ ├── upgrade_153.html │ ├── upgrade_154.html │ ├── upgrade_160.html │ ├── upgrade_161.html │ ├── upgrade_162.html │ ├── upgrade_163.html │ ├── upgrade_170.html │ ├── upgrade_171.html │ ├── upgrade_172.html │ ├── upgrade_200.html │ ├── upgrade_201.html │ ├── upgrade_202.html │ ├── upgrade_203.html │ ├── upgrade_210.html │ ├── upgrade_211.html │ ├── upgrade_212.html │ ├── upgrade_213.html │ ├── upgrade_214.html │ ├── upgrade_220.html │ ├── upgrade_221.html │ ├── upgrade_222.html │ ├── upgrade_223.html │ ├── upgrade_300.html │ ├── upgrade_301.html │ ├── upgrade_302.html │ ├── upgrade_303.html │ ├── upgrade_304.html │ ├── upgrade_305.html │ ├── upgrade_306.html │ ├── upgrade_b11.html │ └── upgrading.html ├── libraries │ ├── benchmark.html │ ├── caching.html │ ├── calendar.html │ ├── cart.html │ ├── config.html │ ├── email.html │ ├── encrypt.html │ ├── encryption.html │ ├── file_uploading.html │ ├── form_validation.html │ ├── ftp.html │ ├── image_lib.html │ ├── index.html │ ├── input.html │ ├── javascript.html │ ├── language.html │ ├── loader.html │ ├── migration.html │ ├── output.html │ ├── pagination.html │ ├── parser.html │ ├── security.html │ ├── sessions.html │ ├── table.html │ ├── trackback.html │ ├── typography.html │ ├── unit_testing.html │ ├── uri.html │ ├── user_agent.html │ ├── xmlrpc.html │ └── zip.html ├── license.html ├── objects.inv ├── overview │ ├── appflow.html │ ├── at_a_glance.html │ ├── features.html │ ├── getting_started.html │ ├── goals.html │ ├── index.html │ └── mvc.html ├── search.html ├── searchindex.js └── tutorial │ ├── conclusion.html │ ├── create_news_items.html │ ├── index.html │ ├── news_section.html │ └── static_pages.html └── vendor ├── autoload.php └── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php └── autoload_real.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goFrendiAsgard/No-CMS/HEAD/.gitignore -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goFrendiAsgard/No-CMS/HEAD/application/cache/.htaccess -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goFrendiAsgard/No-CMS/HEAD/application/cache/index.html -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- 1 |