├── .gitattributes
├── .gitignore
├── .htaccess
├── LICENSE.txt
├── README.md
├── hoosk
├── hoosk0
│ ├── .htaccess
│ ├── cache
│ │ ├── .htaccess
│ │ ├── index.html
│ │ └── rss_Parse_91450f65d5d24f183d50d2d24ca21b10
│ ├── config
│ │ ├── autoload.php
│ │ ├── config.php
│ │ ├── constants.php
│ │ ├── database.php
│ │ ├── doctypes.php
│ │ ├── foreign_chars.php
│ │ ├── hooks.php
│ │ ├── index.html
│ │ ├── memcached.php
│ │ ├── migration.php
│ │ ├── mimes.php
│ │ ├── pagination.php
│ │ ├── profiler.php
│ │ ├── routes.php
│ │ ├── smileys.php
│ │ ├── template.php
│ │ └── user_agents.php
│ ├── controllers
│ │ ├── Hoosk_default.php
│ │ ├── admin
│ │ │ ├── Admin.php
│ │ │ ├── Categories.php
│ │ │ ├── Navigation.php
│ │ │ ├── Pages.php
│ │ │ ├── Posts.php
│ │ │ ├── Users.php
│ │ │ └── index.html
│ │ └── index.html
│ ├── core
│ │ ├── MY_Loader.php
│ │ └── index.html
│ ├── helpers
│ │ ├── admincontrol_helper.php
│ │ ├── hoosk_admin_helper.php
│ │ ├── hoosk_page_helper.php
│ │ └── index.html
│ ├── hooks
│ │ └── index.html
│ ├── index.html
│ ├── language
│ │ ├── english
│ │ │ ├── admin_lang.php
│ │ │ └── index.html
│ │ ├── index.html
│ │ └── indonesia
│ │ │ ├── admin_lang.php
│ │ │ └── index.html
│ ├── libraries
│ │ ├── Feed.php
│ │ ├── MY_Form_validation.php
│ │ ├── MY_Session.php
│ │ ├── Rssparser.php
│ │ ├── Sioen.php
│ │ └── index.html
│ ├── logs
│ │ └── index.html
│ ├── models
│ │ ├── Hoosk_model.php
│ │ ├── Hoosk_page_model.php
│ │ └── index.html
│ ├── third_party
│ │ ├── Michelf
│ │ │ ├── Markdown.inc.php
│ │ │ ├── Markdown.php
│ │ │ ├── MarkdownExtra.inc.php
│ │ │ ├── MarkdownExtra.php
│ │ │ ├── MarkdownInterface.inc.php
│ │ │ ├── MarkdownInterface.php
│ │ │ └── index.html
│ │ ├── Sioen
│ │ │ ├── Converter.php
│ │ │ ├── Tests
│ │ │ │ ├── ConverterTest.php
│ │ │ │ └── index.html
│ │ │ ├── ToHtmlContext.php
│ │ │ ├── ToJsonContext.php
│ │ │ ├── Types
│ │ │ │ ├── AccordionConverter.php
│ │ │ │ ├── BaseConverter.php
│ │ │ │ ├── BlockquoteConverter.php
│ │ │ │ ├── ButtonConverter.php
│ │ │ │ ├── CodeConverter.php
│ │ │ │ ├── ColumnsConverter.php
│ │ │ │ ├── ConverterInterface.php
│ │ │ │ ├── HeadingConverter.php
│ │ │ │ ├── IframeConverter.php
│ │ │ │ ├── IframeExtendedConverter.php
│ │ │ │ ├── ImageConverter.php
│ │ │ │ ├── ImageExtendedConverter.php
│ │ │ │ ├── ListConverter.php
│ │ │ │ ├── ParagraphConverter.php
│ │ │ │ └── index.html
│ │ │ └── index.html
│ │ └── index.html
│ └── views
│ │ ├── admin
│ │ ├── check.php
│ │ ├── email_check.php
│ │ ├── error.php
│ │ ├── footer.php
│ │ ├── header.php
│ │ ├── headerlog.php
│ │ ├── home.php
│ │ ├── index.html
│ │ ├── jumbotron_edit.php
│ │ ├── login.php
│ │ ├── nav_add.php
│ │ ├── nav_delete.php
│ │ ├── nav_edit.php
│ │ ├── nav_new.php
│ │ ├── navigation.php
│ │ ├── page_delete.php
│ │ ├── page_edit.php
│ │ ├── page_new.php
│ │ ├── pages.php
│ │ ├── post_categories.php
│ │ ├── post_category_delete.php
│ │ ├── post_category_edit.php
│ │ ├── post_category_new.php
│ │ ├── post_delete.php
│ │ ├── post_edit.php
│ │ ├── post_new.php
│ │ ├── posts.php
│ │ ├── reset.php
│ │ ├── resetform.php
│ │ ├── settings.php
│ │ ├── social.php
│ │ ├── upload.php
│ │ ├── user_delete.php
│ │ ├── user_edit.php
│ │ ├── user_new.php
│ │ └── users.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
│ │ ├── feed
│ │ ├── atom.php
│ │ └── rss.php
│ │ └── index.html
├── index.html
└── 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
│ ├── 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
│ └── javascript
│ ├── Jquery.php
│ └── index.html
├── images
├── Facebook_like_thumb.png
├── blue.png
├── editor.jpg
├── green.png
├── jumbotron.jpg
├── large_logo.png
├── logo.png
├── prev.jpg
├── purple.png
├── red.png
├── responsive_hoosk.png
├── standupguy.png
├── themes.jpg
└── welcome_to_hoosk.png
├── index.php
├── install
├── css
│ ├── bootstrap.min.css
│ ├── index.html
│ └── styles.css
├── hoosk.sql
├── images
│ ├── index.html
│ ├── large_logo.png
│ └── logo.png
├── index.php
└── js
│ ├── bootstrap.min.js
│ └── index.html
├── theme
├── admin
│ ├── css
│ │ ├── bootstrap.min.css
│ │ ├── jquery.fancybox-1.3.4.css
│ │ └── sb-admin.css
│ ├── font-awesome
│ │ ├── css
│ │ │ ├── font-awesome.css
│ │ │ └── font-awesome.min.css
│ │ └── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ └── fontawesome-webfont.woff
│ ├── images
│ │ ├── ajax-loader.gif
│ │ ├── index.html
│ │ ├── large_logo.png
│ │ ├── logo.png
│ │ └── trans_emblem.png
│ ├── img
│ │ ├── body-bg.png
│ │ ├── glyphicons-halflings-white.html
│ │ ├── glyphicons-halflings.html
│ │ ├── icons-sa7c41345d9.png
│ │ ├── index.html
│ │ └── signin
│ │ │ ├── check.png
│ │ │ ├── fb_btn.png
│ │ │ ├── index.html
│ │ │ ├── password.png
│ │ │ ├── twitter_btn.png
│ │ │ └── user.png
│ ├── index.html
│ └── js
│ │ ├── _base.js
│ │ ├── base.js
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ ├── date.js
│ │ ├── datepicker
│ │ ├── jquery.datetimepicker.css
│ │ └── jquery.datetimepicker.js
│ │ ├── excanvas.min.js
│ │ ├── filemanager
│ │ ├── ajax_calls.php
│ │ ├── config
│ │ │ └── .htaccess
│ │ ├── css
│ │ │ └── style.css
│ │ ├── dialog.php
│ │ ├── error_log
│ │ ├── execute.php
│ │ ├── force_download.php
│ │ ├── img
│ │ │ ├── clipboard_apply.png
│ │ │ ├── clipboard_clear.png
│ │ │ ├── copy.png
│ │ │ ├── cut.png
│ │ │ ├── date.png
│ │ │ ├── dimension.png
│ │ │ ├── down.png
│ │ │ ├── download.png
│ │ │ ├── duplicate.png
│ │ │ ├── edit_img.png
│ │ │ ├── file_edit.png
│ │ │ ├── glyphicons-halflings-white.png
│ │ │ ├── glyphicons-halflings.png
│ │ │ ├── ico
│ │ │ │ ├── ac3.jpg
│ │ │ │ ├── accdb.jpg
│ │ │ │ ├── ade.jpg
│ │ │ │ ├── adp.jpg
│ │ │ │ ├── ai.jpg
│ │ │ │ ├── aiff.jpg
│ │ │ │ ├── avi.jpg
│ │ │ │ ├── bmp.jpg
│ │ │ │ ├── css.jpg
│ │ │ │ ├── csv.jpg
│ │ │ │ ├── default.jpg
│ │ │ │ ├── dmg.jpg
│ │ │ │ ├── doc.jpg
│ │ │ │ ├── docx.jpg
│ │ │ │ ├── favicon.ico
│ │ │ │ ├── fla.jpg
│ │ │ │ ├── flv.jpg
│ │ │ │ ├── folder.png
│ │ │ │ ├── folder_back.png
│ │ │ │ ├── gif.jpg
│ │ │ │ ├── gz.jpg
│ │ │ │ ├── html.jpg
│ │ │ │ ├── iso.jpg
│ │ │ │ ├── jpeg.jpg
│ │ │ │ ├── jpg.jpg
│ │ │ │ ├── log.jpg
│ │ │ │ ├── m4a.jpg
│ │ │ │ ├── mdb.jpg
│ │ │ │ ├── mid.jpg
│ │ │ │ ├── mov.jpg
│ │ │ │ ├── mp3.jpg
│ │ │ │ ├── mp4.jpg
│ │ │ │ ├── mpeg.jpg
│ │ │ │ ├── mpg.jpg
│ │ │ │ ├── odb.jpg
│ │ │ │ ├── odf.jpg
│ │ │ │ ├── odg.jpg
│ │ │ │ ├── odp.jpg
│ │ │ │ ├── ods.jpg
│ │ │ │ ├── odt.jpg
│ │ │ │ ├── ogg.jpg
│ │ │ │ ├── otg.jpg
│ │ │ │ ├── otp.jpg
│ │ │ │ ├── ots.jpg
│ │ │ │ ├── ott.jpg
│ │ │ │ ├── pdf.jpg
│ │ │ │ ├── png.jpg
│ │ │ │ ├── ppt.jpg
│ │ │ │ ├── pptx.jpg
│ │ │ │ ├── psd.jpg
│ │ │ │ ├── rar.jpg
│ │ │ │ ├── rtf.jpg
│ │ │ │ ├── sql.jpg
│ │ │ │ ├── svg.jpg
│ │ │ │ ├── tar.jpg
│ │ │ │ ├── tiff.jpg
│ │ │ │ ├── txt.jpg
│ │ │ │ ├── wav.jpg
│ │ │ │ ├── webm.jpg
│ │ │ │ ├── wma.jpg
│ │ │ │ ├── xhtml.jpg
│ │ │ │ ├── xls.jpg
│ │ │ │ ├── xlsx.jpg
│ │ │ │ ├── xml.jpg
│ │ │ │ └── zip.jpg
│ │ │ ├── ico_dark
│ │ │ │ ├── ac3.jpg
│ │ │ │ ├── accdb.jpg
│ │ │ │ ├── ade.jpg
│ │ │ │ ├── adp.jpg
│ │ │ │ ├── ai.jpg
│ │ │ │ ├── aiff.jpg
│ │ │ │ ├── avi.jpg
│ │ │ │ ├── bmp.jpg
│ │ │ │ ├── css.jpg
│ │ │ │ ├── csv.jpg
│ │ │ │ ├── default.jpg
│ │ │ │ ├── dmg.jpg
│ │ │ │ ├── doc.jpg
│ │ │ │ ├── docx.jpg
│ │ │ │ ├── favicon.ico
│ │ │ │ ├── fla.jpg
│ │ │ │ ├── flv.jpg
│ │ │ │ ├── folder.png
│ │ │ │ ├── folder_back.png
│ │ │ │ ├── gif.jpg
│ │ │ │ ├── gz.jpg
│ │ │ │ ├── html.jpg
│ │ │ │ ├── iso.jpg
│ │ │ │ ├── jpeg.jpg
│ │ │ │ ├── jpg.jpg
│ │ │ │ ├── log.jpg
│ │ │ │ ├── m4a.jpg
│ │ │ │ ├── mdb.jpg
│ │ │ │ ├── mid.jpg
│ │ │ │ ├── mov.jpg
│ │ │ │ ├── mp3.jpg
│ │ │ │ ├── mp4.jpg
│ │ │ │ ├── mpeg.jpg
│ │ │ │ ├── mpg.jpg
│ │ │ │ ├── odb.jpg
│ │ │ │ ├── odf.jpg
│ │ │ │ ├── odg.jpg
│ │ │ │ ├── odp.jpg
│ │ │ │ ├── ods.jpg
│ │ │ │ ├── odt.jpg
│ │ │ │ ├── ogg.jpg
│ │ │ │ ├── otg.jpg
│ │ │ │ ├── otp.jpg
│ │ │ │ ├── ots.jpg
│ │ │ │ ├── ott.jpg
│ │ │ │ ├── pdf.jpg
│ │ │ │ ├── png.jpg
│ │ │ │ ├── ppt.jpg
│ │ │ │ ├── pptx.jpg
│ │ │ │ ├── psd.jpg
│ │ │ │ ├── rar.jpg
│ │ │ │ ├── rtf.jpg
│ │ │ │ ├── sql.jpg
│ │ │ │ ├── svg.jpg
│ │ │ │ ├── tar.jpg
│ │ │ │ ├── tiff.jpg
│ │ │ │ ├── txt.jpg
│ │ │ │ ├── wav.jpg
│ │ │ │ ├── webm.jpg
│ │ │ │ ├── wma.jpg
│ │ │ │ ├── xhtml.jpg
│ │ │ │ ├── xls.jpg
│ │ │ │ ├── xlsx.jpg
│ │ │ │ ├── xml.jpg
│ │ │ │ └── zip.jpg
│ │ │ ├── info.png
│ │ │ ├── key.png
│ │ │ ├── label.png
│ │ │ ├── loading.gif
│ │ │ ├── logo.png
│ │ │ ├── preview.png
│ │ │ ├── processing.gif
│ │ │ ├── rename.png
│ │ │ ├── size.png
│ │ │ ├── sort.png
│ │ │ ├── storing_animation.gif
│ │ │ ├── trans.jpg
│ │ │ ├── up.png
│ │ │ ├── upload.png
│ │ │ ├── url.png
│ │ │ └── zip.png
│ │ ├── include
│ │ │ ├── FtpClient.php
│ │ │ ├── FtpException.php
│ │ │ ├── FtpWrapper.php
│ │ │ ├── Response.php
│ │ │ ├── ftp_class.php
│ │ │ ├── mime_type_lib.php
│ │ │ ├── php_image_magician.php
│ │ │ └── utils.php
│ │ ├── js
│ │ │ ├── ViewerJS
│ │ │ │ ├── AGPL-3.0.txt
│ │ │ │ ├── ODFViewerPlugin.css
│ │ │ │ ├── ODFViewerPlugin.js
│ │ │ │ ├── PDFViewerPlugin.css
│ │ │ │ ├── PDFViewerPlugin.js
│ │ │ │ ├── PluginLoader.js
│ │ │ │ ├── compatibility.js
│ │ │ │ ├── example.local.css
│ │ │ │ ├── images
│ │ │ │ │ ├── kogmbh.png
│ │ │ │ │ ├── nlnet.png
│ │ │ │ │ ├── texture.png
│ │ │ │ │ ├── toolbarButton-download.png
│ │ │ │ │ ├── toolbarButton-fullscreen.png
│ │ │ │ │ ├── toolbarButton-menuArrows.png
│ │ │ │ │ ├── toolbarButton-pageDown.png
│ │ │ │ │ ├── toolbarButton-pageUp.png
│ │ │ │ │ ├── toolbarButton-presentation.png
│ │ │ │ │ ├── toolbarButton-zoomIn.png
│ │ │ │ │ └── toolbarButton-zoomOut.png
│ │ │ │ ├── index.html
│ │ │ │ ├── local.css
│ │ │ │ ├── pdf.js
│ │ │ │ ├── pdf.worker.js
│ │ │ │ ├── pdfjsversion.js
│ │ │ │ ├── text_layer_builder.js
│ │ │ │ ├── ui_utils.js
│ │ │ │ ├── viewer.css
│ │ │ │ ├── viewer.js
│ │ │ │ └── webodf.js
│ │ │ ├── ZeroClipboard.swf
│ │ │ ├── include.js
│ │ │ ├── jPlayer
│ │ │ │ ├── MIT-LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── actionscript
│ │ │ │ │ ├── Jplayer.as
│ │ │ │ │ ├── Jplayer.fla
│ │ │ │ │ └── happyworm
│ │ │ │ │ │ └── jPlayer
│ │ │ │ │ │ ├── ConnectManager.as
│ │ │ │ │ │ ├── JplayerEvent.as
│ │ │ │ │ │ ├── JplayerMp3.as
│ │ │ │ │ │ ├── JplayerMp4.as
│ │ │ │ │ │ ├── JplayerRtmp.as
│ │ │ │ │ │ ├── JplayerStatus.as
│ │ │ │ │ │ └── TraceOut.as
│ │ │ │ ├── add-on
│ │ │ │ │ ├── jplayer.playlist.js
│ │ │ │ │ ├── jplayer.playlist.min.js
│ │ │ │ │ ├── jquery.jplayer.inspector.js
│ │ │ │ │ └── jquery.jplayer.inspector.min.js
│ │ │ │ ├── jplayer.jquery.json
│ │ │ │ ├── jplayer
│ │ │ │ │ ├── jquery.jplayer.js
│ │ │ │ │ ├── jquery.jplayer.min.js
│ │ │ │ │ └── jquery.jplayer.swf
│ │ │ │ ├── jquery.jplayer
│ │ │ │ │ ├── Jplayer.swf
│ │ │ │ │ └── jquery.jplayer.js
│ │ │ │ ├── package.json
│ │ │ │ ├── popcorn
│ │ │ │ │ ├── popcorn.jplayer.js
│ │ │ │ │ └── popcorn.jplayer.min.js
│ │ │ │ ├── skin
│ │ │ │ │ ├── blue.monday
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ ├── jplayer.blue.monday.css
│ │ │ │ │ │ │ └── jplayer.blue.monday.min.css
│ │ │ │ │ │ ├── image
│ │ │ │ │ │ │ ├── jplayer.blue.monday.jpg
│ │ │ │ │ │ │ ├── jplayer.blue.monday.seeking.gif
│ │ │ │ │ │ │ └── jplayer.blue.monday.video.play.png
│ │ │ │ │ │ ├── jplayer.blue.monday.css
│ │ │ │ │ │ ├── jplayer.blue.monday.jpg
│ │ │ │ │ │ ├── jplayer.blue.monday.seeking.gif
│ │ │ │ │ │ ├── jplayer.blue.monday.video.play.png
│ │ │ │ │ │ ├── mustache
│ │ │ │ │ │ │ ├── jplayer.blue.monday.audio.playlist.html
│ │ │ │ │ │ │ ├── jplayer.blue.monday.audio.single.html
│ │ │ │ │ │ │ ├── jplayer.blue.monday.audio.stream.html
│ │ │ │ │ │ │ ├── jplayer.blue.monday.video.playlist.html
│ │ │ │ │ │ │ └── jplayer.blue.monday.video.single.html
│ │ │ │ │ │ └── skin.handlebars
│ │ │ │ │ └── pink.flag
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ ├── jplayer.pink.flag.css
│ │ │ │ │ │ └── jplayer.pink.flag.min.css
│ │ │ │ │ │ ├── image
│ │ │ │ │ │ ├── jplayer.pink.flag.jpg
│ │ │ │ │ │ ├── jplayer.pink.flag.seeking.gif
│ │ │ │ │ │ └── jplayer.pink.flag.video.play.png
│ │ │ │ │ │ └── mustache
│ │ │ │ │ │ ├── jplayer.pink.flag.audio.playlist.html
│ │ │ │ │ │ ├── jplayer.pink.flag.audio.single.html
│ │ │ │ │ │ ├── jplayer.pink.flag.audio.stream.html
│ │ │ │ │ │ ├── jplayer.pink.flag.video.playlist.html
│ │ │ │ │ │ └── jplayer.pink.flag.video.single.html
│ │ │ │ └── skin_ol
│ │ │ │ │ ├── blue.monday
│ │ │ │ │ ├── jplayer.blue.monday.css
│ │ │ │ │ ├── jplayer.blue.monday.jpg
│ │ │ │ │ ├── jplayer.blue.monday.seeking.gif
│ │ │ │ │ ├── jplayer.blue.monday.video.play.png
│ │ │ │ │ └── skin.handlebars
│ │ │ │ │ └── pink.flag
│ │ │ │ │ ├── jplayer.pink.flag.css
│ │ │ │ │ ├── jplayer.pink.flag.jpg
│ │ │ │ │ ├── jplayer.pink.flag.seeking.gif
│ │ │ │ │ └── jplayer.pink.flag.video.play.png
│ │ │ ├── modernizr.custom.js
│ │ │ └── plugins.js
│ │ ├── lang
│ │ │ ├── az_AZ.php
│ │ │ ├── bg_BG.php
│ │ │ ├── ca.php
│ │ │ ├── cs.php
│ │ │ ├── da.php
│ │ │ ├── de.php
│ │ │ ├── el_GR.php
│ │ │ ├── en_EN.php
│ │ │ ├── es.php
│ │ │ ├── fa.php
│ │ │ ├── fr_FR.php
│ │ │ ├── he_IL.php
│ │ │ ├── hr.php
│ │ │ ├── hu_HU.php
│ │ │ ├── id.php
│ │ │ ├── it.php
│ │ │ ├── ja.php
│ │ │ ├── languages.php
│ │ │ ├── lt.php
│ │ │ ├── mn_MN.php
│ │ │ ├── nb_NO.php
│ │ │ ├── nl.php
│ │ │ ├── pl.php
│ │ │ ├── pt_BR.php
│ │ │ ├── pt_PT.php
│ │ │ ├── ru.php
│ │ │ ├── sk.php
│ │ │ ├── sl.php
│ │ │ ├── sv_SE.php
│ │ │ ├── tr_TR.php
│ │ │ ├── uk_UA.php
│ │ │ ├── vi.php
│ │ │ └── zh_CN.php
│ │ ├── plugin.min.js
│ │ ├── upload.php
│ │ └── uploader
│ │ │ ├── index.php
│ │ │ ├── jupload.php
│ │ │ ├── success.jpg
│ │ │ ├── success.php
│ │ │ └── wjhk.jupload.jar
│ │ ├── index.html
│ │ ├── jquery-1.10.2.min.js
│ │ ├── jquery-ui-1.9.2.js
│ │ ├── jquery.fancybox-1.3.4.pack.js
│ │ ├── jquery.js
│ │ ├── jquery.nestable.js
│ │ ├── json_sans_eval.js
│ │ ├── moment.js
│ │ ├── npm.js
│ │ ├── signin.js
│ │ └── trevor
│ │ ├── eventable.js
│ │ ├── fonts
│ │ └── ST-Columns-Icons.woff
│ │ ├── index.html
│ │ ├── locales
│ │ ├── cn.js
│ │ ├── de.js
│ │ ├── es.js
│ │ ├── fi.js
│ │ ├── fr.js
│ │ ├── index.html
│ │ └── pt.js
│ │ ├── public
│ │ ├── images
│ │ │ ├── icons
│ │ │ │ ├── ST-Icons.woff
│ │ │ │ ├── index.html
│ │ │ │ ├── sir-trevor-icons.tpl.css
│ │ │ │ └── src
│ │ │ │ │ ├── Add.svg
│ │ │ │ │ ├── Bin-open.svg
│ │ │ │ │ ├── Bin.svg
│ │ │ │ │ ├── Close.svg
│ │ │ │ │ ├── Columns.svg
│ │ │ │ │ ├── Columns12.svg
│ │ │ │ │ ├── Columns121.svg
│ │ │ │ │ ├── Columns13.svg
│ │ │ │ │ ├── Columns2.svg
│ │ │ │ │ ├── Columns21.svg
│ │ │ │ │ ├── Columns3.svg
│ │ │ │ │ ├── Columns31.svg
│ │ │ │ │ ├── Columns4.svg
│ │ │ │ │ ├── Competition.svg
│ │ │ │ │ ├── Embed.svg
│ │ │ │ │ ├── Header.svg
│ │ │ │ │ ├── Image.svg
│ │ │ │ │ ├── List.svg
│ │ │ │ │ ├── Move.svg
│ │ │ │ │ ├── Poll.svg
│ │ │ │ │ ├── Quote.svg
│ │ │ │ │ ├── SirTrev.json
│ │ │ │ │ ├── Text.svg
│ │ │ │ │ ├── Tick.svg
│ │ │ │ │ ├── Tweet.svg
│ │ │ │ │ ├── Video.svg
│ │ │ │ │ ├── iFrame.svg
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── link.svg
│ │ │ │ │ └── selection.json
│ │ │ └── index.html
│ │ └── index.html
│ │ ├── sir-trevor-bootstrap.css
│ │ ├── sir-trevor-bootstrap.js
│ │ ├── sir-trevor-bootstrap.min.js
│ │ ├── sir-trevor-columns-block.all.css
│ │ ├── sir-trevor-columns-block.css
│ │ ├── sir-trevor-columns-block.js
│ │ ├── sir-trevor-icons.css
│ │ ├── sir-trevor-iframe.js
│ │ ├── sir-trevor-imageExtended.js
│ │ ├── sir-trevor.css
│ │ ├── sir-trevor.js
│ │ ├── sir-trevor.min.js
│ │ ├── sortable.min.js
│ │ └── underscore.js
├── dark
│ ├── css
│ │ ├── bootstrap.min.css
│ │ ├── index.html
│ │ ├── socicon.css
│ │ └── styles.css
│ ├── feed
│ │ ├── atom.php
│ │ └── rss.php
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ ├── socicon-webfont.eot
│ │ ├── socicon-webfont.svg
│ │ ├── socicon-webfont.ttf
│ │ ├── socicon-webfont.woff
│ │ └── socicon-webfont.woff2
│ ├── images
│ │ ├── index.html
│ │ ├── large_logo.png
│ │ └── logo.png
│ ├── index.html
│ ├── js
│ │ ├── bootstrap.min.js
│ │ └── index.html
│ └── templates
│ │ ├── article.php
│ │ ├── category.php
│ │ ├── error.php
│ │ ├── footer.php
│ │ ├── header.php
│ │ ├── home.php
│ │ ├── index.html
│ │ ├── maintenance.php
│ │ ├── news.php
│ │ └── page.php
└── index.html
├── thumbs
├── Facebook_like_thumb.png
├── blue.png
├── editor.jpg
├── green.png
├── jumbotron.jpg
├── large_logo.png
├── last-dream-on-earth.jpg
├── logo.png
├── prev.jpg
├── purple.png
├── red.png
├── responsive_hoosk.png
├── standupguy.png
├── themes.jpg
└── welcome_to_hoosk.png
└── uploads
├── editor.jpg
├── features.png
├── get_in_touch.png
├── green.png
├── hooskbanner1.jpg
├── hooskbanner2.jpg
├── large_logo.png
├── prev.jpg
├── purple.png
├── responsive_hoosk.png
├── themes.jpg
└── welcome_to_hoosk.jpg
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
4 | # Custom for Visual Studio
5 | *.cs diff=csharp
6 |
7 | # Standard to msysgit
8 | *.doc diff=astextplain
9 | *.DOC diff=astextplain
10 | *.docx diff=astextplain
11 | *.DOCX diff=astextplain
12 | *.dot diff=astextplain
13 | *.DOT diff=astextplain
14 | *.pdf diff=astextplain
15 | *.PDF diff=astextplain
16 | *.rtf diff=astextplain
17 | *.RTF diff=astextplain
18 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | #php-cs-fixer
2 | .php_cs.cache
3 |
4 | # Windows image file caches
5 | Thumbs.db
6 | ehthumbs.db
7 | config.php
8 | .ftpconfig
9 | # Folder config file
10 | Desktop.ini
11 |
12 | # Recycle Bin used on file shares
13 | $RECYCLE.BIN/
14 |
15 | # Windows Installer files
16 | *.cab
17 | *.msi
18 | *.msm
19 | *.msp
20 |
21 | # Windows shortcuts
22 | *.lnk
23 |
24 | # =========================
25 | # Operating System Files
26 | # =========================
27 |
28 | # OSX
29 | # =========================
30 |
31 | .DS_Store
32 | .AppleDouble
33 | .LSOverride
34 |
35 | # Thumbnails
36 | ._*
37 |
38 | # Files that might appear on external disk
39 | .Spotlight-V100
40 | .Trashes
41 |
42 | # Directories potentially created on remote AFP share
43 | .AppleDB
44 | .AppleDesktop
45 | Network Trash Folder
46 | Temporary Items
47 | .apdisk
48 | *.xml
49 |
--------------------------------------------------------------------------------
/.htaccess:
--------------------------------------------------------------------------------
1 | RewriteEngine on
2 | RewriteCond %{REQUEST_FILENAME} !-f
3 | RewriteCond %{REQUEST_FILENAME} !-d
4 | RewriteRule .* index.php?/$0 [PT,L]
--------------------------------------------------------------------------------
/LICENSE.txt:
--------------------------------------------------------------------------------
1 | Hoosk is a lightweight, user-focused CMS
2 | Copyright (C) 2017 Callum Henry
3 |
4 | This program is free software: you can redistribute it and/or modify
5 | it under the terms of the GNU General Public License as published by
6 | the Free Software Foundation, either version 3 of the License, or
7 | (at your option) any later version.
8 |
9 | This program is distributed in the hope that it will be useful,
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 | GNU General Public License for more details.
13 |
14 | You should have received a copy of the GNU General Public License
15 | along with this program. If not, see
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /hoosk/hoosk0/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /hoosk/hoosk0/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /hoosk/hoosk0/config/pagination.php: -------------------------------------------------------------------------------- 1 |Directory access is forbidden.
8 | 9 | 10 |