├── .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 . 16 | -------------------------------------------------------------------------------- /hoosk/hoosk0/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /hoosk/hoosk0/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /hoosk/hoosk0/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

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 | '; 7 | $config['num_tag_open'] = '
  • '; 8 | $config['num_tag_close'] = '
  • '; 9 | $config['cur_tag_open'] = '
  • '; 10 | $config['cur_tag_close'] = '
  • '; 11 | $config['next_tag_open'] = '
  • '; 12 | $config['next_tag_close'] = '
  • '; 13 | $config['prev_tag_open'] = '
  • '; 14 | $config['prev_tag_close'] = '
  • '; 15 | -------------------------------------------------------------------------------- /hoosk/hoosk0/config/profiler.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /hoosk/hoosk0/helpers/admincontrol_helper.php: -------------------------------------------------------------------------------- 1 | '); 6 | $string = strip_tags($string, '

    '); 7 | $words = explode(' ', $string); 8 | if (count($words) > $length) { 9 | return implode(' ', array_slice($words, 0, $length)) . $ellipsis; 10 | } else { 11 | return $string . $ellipsis; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /hoosk/hoosk0/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /hoosk/hoosk0/libraries/MY_Form_validation.php: -------------------------------------------------------------------------------- 1 | CI->db->limit(1)->where($field, $str)->where($id_field . ' != ', $id_val)->get($table); 12 | } else { 13 | list($table, $field) = explode('.', $field); 14 | $query = $this->CI->db->limit(1)->get_where($table, array($field => $str)); 15 | } 16 | 17 | return $query->num_rows() === 0; 18 | } 19 | } 20 | // END MY Form Validation Class 21 | 22 | /* End of file MY_Form_validation.php */ 23 | /* Location: ./application/libraries/MY_Form_validation.php */ 24 | -------------------------------------------------------------------------------- /hoosk/hoosk0/libraries/Sioen.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /hoosk/hoosk0/third_party/Michelf/Markdown.inc.php: -------------------------------------------------------------------------------- 1 | 8 | # 9 | # Original Markdown 10 | # Copyright (c) 2004-2006 John Gruber 11 | # 12 | # 13 | 14 | 15 | # Just force Michelf/Markdown.php to load. This is needed to load 16 | # the temporary implementation class. See below for details. 17 | \Michelf\Markdown::MARKDOWNLIB_VERSION; 18 | 19 | # 20 | # Markdown Extra Parser Class 21 | # 22 | # Note: Currently the implementation resides in the temporary class 23 | # \Michelf\MarkdownExtra_TmpImpl (in the same file as \Michelf\Markdown). 24 | # This makes it easier to propagate the changes between the three different 25 | # packaging styles of PHP Markdown. Once this issue is resolved, the 26 | # _MarkdownExtra_TmpImpl will disappear and this one will contain the code. 27 | # 28 | 29 | class MarkdownExtra extends \Michelf\_MarkdownExtra_TmpImpl { 30 | 31 | ### Parser Implementation ### 32 | 33 | # Temporarily, the implemenation is in the _MarkdownExtra_TmpImpl class. 34 | # See note above. 35 | 36 | } 37 | 38 | -------------------------------------------------------------------------------- /hoosk/hoosk0/third_party/Michelf/MarkdownInterface.inc.php: -------------------------------------------------------------------------------- 1 | 8 | # 9 | # Original Markdown 10 | # Copyright (c) 2004-2006 John Gruber 11 | # 12 | # 13 | 14 | 15 | 16 | # 17 | # Markdown Parser Interface 18 | # 19 | 20 | interface MarkdownInterface { 21 | 22 | # 23 | # Initialize the parser and return the result of its transform method. 24 | # This will work fine for derived classes too. 25 | # 26 | public static function defaultTransform($text); 27 | 28 | # 29 | # Main function. Performs some preprocessing on the input text 30 | # and pass it through the document gamut. 31 | # 32 | public function transform($text); 33 | 34 | } 35 | -------------------------------------------------------------------------------- /hoosk/hoosk0/third_party/Michelf/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /hoosk/hoosk0/third_party/Sioen/Tests/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /hoosk/hoosk0/third_party/Sioen/ToHtmlContext.php: -------------------------------------------------------------------------------- 1 | converter = new HeadingConverter(); 11 | break; 12 | case 'columns': 13 | $this->converter = new ColumnsConverter(); 14 | break; 15 | case 'button': 16 | $this->converter = new ButtonConverter(); 17 | break; 18 | case 'accordion': 19 | $this->converter = new AccordionConverter(); 20 | break; 21 | case 'list': 22 | $this->converter = new ListConverter(); 23 | break; 24 | case 'quote': 25 | $this->converter = new BlockquoteConverter(); 26 | break; 27 | case 'video': 28 | $this->converter = new IframeConverter(); 29 | break; 30 | case 'iframe': 31 | $this->converter = new IframeExtendedConverter(); 32 | break; 33 | case 'image': 34 | $this->converter = new ImageConverter(); 35 | break; 36 | case 'image_extended': 37 | $this->converter = new ImageExtendedConverter(); 38 | break; 39 | default: 40 | $this->converter = new BaseConverter(); 41 | break; 42 | } 43 | } 44 | 45 | public function getHtml(array $data) { 46 | return $this->converter->toHtml($data); 47 | } 48 | 49 | } 50 | -------------------------------------------------------------------------------- /hoosk/hoosk0/third_party/Sioen/ToJsonContext.php: -------------------------------------------------------------------------------- 1 | converter = new ParagraphConverter(); 14 | break; 15 | case 'h2': 16 | $this->converter = new HeadingConverter(); 17 | break; 18 | case 'ul': 19 | $this->converter = new ListConverter(); 20 | break; 21 | case 'blockquote': 22 | $this->converter = new BlockquoteConverter(); 23 | break; 24 | case 'iframe': 25 | $this->converter = new IframeConverter(); 26 | break; 27 | case 'img': 28 | $this->converter = new ImageConverter(); 29 | break; 30 | default: 31 | $this->converter = new BaseConverter(); 32 | break; 33 | } 34 | } 35 | 36 | public function getData(\DOMElement $node) 37 | { 38 | return $this->converter->toJson($node); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /hoosk/hoosk0/third_party/Sioen/Types/AccordionConverter.php: -------------------------------------------------------------------------------- 1 | 'image', 10 | 'data' => array( 11 | 'file' => array( 12 | 'url' => $node->getAttribute('src') 13 | ) 14 | ) 15 | ); 16 | } 17 | 18 | public function toHtml(array $data) 19 | { 20 | 21 | $html = "
    "; 22 | $i = 0; 23 | foreach ($data['panels'] as $panel) { 24 | $html .= "
    "; 25 | $html .= "

    ".$panel['title']."

    "; 26 | $html .= "

    ".$panel['body']."

    "; 29 | $html .= "
    "; 30 | $i++; 31 | } 32 | $html .= "
    "; 33 | return $html; 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /hoosk/hoosk0/third_party/Sioen/Types/BaseConverter.php: -------------------------------------------------------------------------------- 1 | 'atx', 12 | 'bold_style' => '__', 13 | 'italic_style' => '_', 14 | ); 15 | 16 | public function toJson(\DOMElement $node) 17 | { 18 | $html = $node->ownerDocument->saveXML($node); 19 | 20 | return array( 21 | 'type' => 'text', 22 | 'data' => array( 23 | 'text' => ' ' . $this->htmlToMarkdown($html) 24 | ) 25 | ); 26 | } 27 | 28 | public function toHtml(array $data) 29 | { 30 | 31 | return Markdown::defaultTransform($data['text']); 32 | } 33 | 34 | protected function htmlToMarkdown($html) 35 | { 36 | $markdown = new \HTML_To_Markdown($html, $this->options); 37 | return $markdown->output(); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /hoosk/hoosk0/third_party/Sioen/Types/ButtonConverter.php: -------------------------------------------------------------------------------- 1 | 'image', 10 | 'data' => array( 11 | 'file' => array( 12 | 'url' => $node->getAttribute('src') 13 | ) 14 | ) 15 | ); 16 | } 17 | 18 | public function toHtml(array $data) 19 | { 20 | if ($data['is_block']==1){ 21 | $block=" btn-block"; 22 | } else { 23 | $block = ""; 24 | } 25 | return '' . $data['html'] . '' . "\n"; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /hoosk/hoosk0/third_party/Sioen/Types/CodeConverter.php: -------------------------------------------------------------------------------- 1 | ownerDocument->saveXML($node); 14 | 15 | return array( 16 | 'type' => 'text', 17 | 'data' => array( 18 | 'text' => ' ' . $this->htmlToMarkdown($html) 19 | ) 20 | ); 21 | } 22 | 23 | public function toHtml(array $data) 24 | { 25 | print_r($data); 26 | die(); 27 | return Markdown::defaultTransform($data['text']); 28 | } 29 | 30 | protected function htmlToMarkdown($html) 31 | { 32 | $markdown = new \HTML_To_Markdown($html, $this->options); 33 | return $markdown->output(); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /hoosk/hoosk0/third_party/Sioen/Types/ColumnsConverter.php: -------------------------------------------------------------------------------- 1 | 'image', 8 | 'data' => array( 9 | 'file' => array( 10 | 'url' => $node->getAttribute('src') 11 | ) 12 | ) 13 | ); 14 | } 15 | 16 | public function toHtml(array $data) { 17 | $html = "
    "; 18 | // echo "
    ";
    19 | //        print_r($data);
    20 | //        die();
    21 | 
    22 |         foreach ($data['columns'] as $column) {
    23 |             $html .= "
    "; 24 | $converter = new Converter(); 25 | $HTMLContent = $converter->toHtml(json_encode(array("data"=>$column["blocks"]))); 26 | $html .= $HTMLContent; 27 | $html .= "
    "; 28 | } 29 | $html .= "
    "; 30 | return $html; 31 | } 32 | 33 | } 34 | -------------------------------------------------------------------------------- /hoosk/hoosk0/third_party/Sioen/Types/ConverterInterface.php: -------------------------------------------------------------------------------- 1 | ownerDocument->saveXML($node); 8 | 9 | // remove the h2 tags from the text. We just need the inner text. 10 | $html = preg_replace('/<(\/|)h2>/i', '', $html); 11 | 12 | return array( 13 | 'type' => 'heading', 14 | 'data' => array( 15 | 'text' => ' ' . $this->htmlToMarkdown($html) 16 | ) 17 | ); 18 | } 19 | 20 | public function toHtml(array $data) 21 | { 22 | return "<".$data['heading'].">".stripslashes($data['text']) . ""; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /hoosk/hoosk0/third_party/Sioen/Types/IframeExtendedConverter.php: -------------------------------------------------------------------------------- 1 | ownerDocument->saveXML($node); 9 | 10 | 11 | } 12 | 13 | public function toHtml(array $data) 14 | { 15 | $height = $data['height'] * 1.3; 16 | if ($data['width'] > $height){ 17 | $size = "embed-responsive-16by9"; 18 | } else { 19 | $size = "embed-responsive-4by3"; 20 | } 21 | $html = '
    ' . "\n"; 22 | 23 | return $html; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /hoosk/hoosk0/third_party/Sioen/Types/ImageConverter.php: -------------------------------------------------------------------------------- 1 | 'image', 10 | 'data' => array( 11 | 'file' => array( 12 | 'url' => $node->getAttribute('src') 13 | ) 14 | ) 15 | ); 16 | } 17 | 18 | public function toHtml(array $data) 19 | { 20 | return '' . "\n"; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /hoosk/hoosk0/third_party/Sioen/Types/ImageExtendedConverter.php: -------------------------------------------------------------------------------- 1 | ownerDocument->saveXML($node); 14 | 15 | return array( 16 | 'type' => 'text', 17 | 'data' => array( 18 | 'text' => ' ' . $this->htmlToMarkdown($html) 19 | ) 20 | ); 21 | } 22 | 23 | public function toHtml(array $data) 24 | { 25 | if (($data['source'] == "") || ($data['source'] == "http://")){ 26 | return '' . $data['caption'] . '' . "\n"; 27 | } else { 28 | return '' . $data['caption'] . '' . "\n"; 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /hoosk/hoosk0/third_party/Sioen/Types/ListConverter.php: -------------------------------------------------------------------------------- 1 | htmlToMarkdown($node->ownerDocument->saveXML($node)); 9 | 10 | // we need a space in the beginning of each line 11 | $markdown = ' ' . str_replace("\n", "\n ", $markdown); 12 | 13 | return array( 14 | 'type' => 'list', 15 | 'data' => array( 16 | 'text' => $markdown, 17 | ) 18 | ); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /hoosk/hoosk0/third_party/Sioen/Types/ParagraphConverter.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /hoosk/hoosk0/third_party/Sioen/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

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

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /hoosk/hoosk0/views/admin/check.php: -------------------------------------------------------------------------------- 1 | 2 |
    3 |
    4 |
    5 | 13 |
    14 |
    15 |
    -------------------------------------------------------------------------------- /hoosk/hoosk0/views/admin/email_check.php: -------------------------------------------------------------------------------- 1 | 2 |
    3 |
    4 |
    5 | 28 | 37 | 38 |
    39 |
    40 |
    41 | -------------------------------------------------------------------------------- /hoosk/hoosk0/views/admin/error.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 |
    5 |
    6 |
    7 |
    8 |
    9 |
    10 |

    Password Reset

    11 |
    12 | 13 |
    14 |

    The URL you have entered is invalid, please check and try again.

    15 | 16 | 17 |
    18 |
    19 | 20 | 21 | 22 |
    23 | 24 | 25 |
    26 | 27 |
    28 | 29 |
    30 | 31 |
    32 | 33 | -------------------------------------------------------------------------------- /hoosk/hoosk0/views/admin/headerlog.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Hoosk Dash - <?php echo SITE_NAME; ?> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /hoosk/hoosk0/views/admin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /hoosk/hoosk0/views/admin/nav_add.php: -------------------------------------------------------------------------------- 1 |
    ".$p['navTitle']."
    "; 3 | }?> -------------------------------------------------------------------------------- /hoosk/hoosk0/views/admin/nav_delete.php: -------------------------------------------------------------------------------- 1 | 5 | 10 | -------------------------------------------------------------------------------- /hoosk/hoosk0/views/admin/page_delete.php: -------------------------------------------------------------------------------- 1 | 5 | 10 | -------------------------------------------------------------------------------- /hoosk/hoosk0/views/admin/post_category_delete.php: -------------------------------------------------------------------------------- 1 | 5 | 9 | -------------------------------------------------------------------------------- /hoosk/hoosk0/views/admin/post_delete.php: -------------------------------------------------------------------------------- 1 | 5 | 10 | -------------------------------------------------------------------------------- /hoosk/hoosk0/views/admin/reset.php: -------------------------------------------------------------------------------- 1 | 2 |
    3 |
    4 |
    5 | 16 |
    17 |
    18 |
    -------------------------------------------------------------------------------- /hoosk/hoosk0/views/admin/upload.php: -------------------------------------------------------------------------------- 1 | input->post('attachment'); 4 | $uploadedFile = $_FILES['attachment']['tmp_name']['file']; 5 | 6 | $path = $_SERVER["DOCUMENT_ROOT"].'/images'; 7 | $url = BASE_URL.'/images'; 8 | 9 | // create an image name 10 | $fileName = $attachment['name']; 11 | 12 | // upload the image 13 | move_uploaded_file($uploadedFile, $path.'/'.$fileName); 14 | 15 | $this->output->set_output(json_encode(array('file' => array( 16 | 'url' => $url . '/' . $fileName, 17 | 'filename' => $fileName 18 | ))), 19 | 200, 20 | array('Content-Type' => 'application/json') 21 | ); 22 | 23 | exit; -------------------------------------------------------------------------------- /hoosk/hoosk0/views/admin/user_delete.php: -------------------------------------------------------------------------------- 1 | 5 | 9 | -------------------------------------------------------------------------------- /hoosk/hoosk0/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | An uncaught Exception was encountered 6 | 7 | Type: 8 | Message: 9 | Filename: getFile(); ?> 10 | Line Number: getLine(); ?> 11 | 12 | 13 | 14 | Backtrace: 15 | getTrace() as $error): ?> 16 | 17 | 18 | File: 19 | Line: 20 | Function: 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /hoosk/hoosk0/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | A PHP Error was encountered 6 | 7 | Severity: 8 | Message: 9 | Filename: 10 | Line Number: 11 | 12 | 13 | 14 | Backtrace: 15 | 16 | 17 | 18 | File: 19 | Line: 20 | Function: 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /hoosk/hoosk0/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

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

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

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

    An uncaught Exception was encountered

    8 | 9 |

    Type:

    10 |

    Message:

    11 |

    Filename: getFile(); ?>

    12 |

    Line Number: getLine(); ?>

    13 | 14 | 15 | 16 |

    Backtrace:

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

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

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

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

    A PHP Error was encountered

    8 | 9 |

    Severity:

    10 |

    Message:

    11 |

    Filename:

    12 |

    Line Number:

    13 | 14 | 15 | 16 |

    Backtrace:

    17 | 18 | 19 | 20 | 21 |

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

    26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
    -------------------------------------------------------------------------------- /hoosk/hoosk0/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

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

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /hoosk/hoosk0/views/feed/atom.php: -------------------------------------------------------------------------------- 1 | 2 | '."\n"; ?> 3 | > 4 | <?php echo $channel['title'] ?> 5 | ]]> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | <?php echo $item['title'] ?> 23 | 24 | 25 | ]]> 26 | ]]> 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /hoosk/hoosk0/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

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

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /hoosk/system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /hoosk/system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /hoosk/system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/hoosk/system/fonts/texb.ttf -------------------------------------------------------------------------------- /hoosk/system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /images/Facebook_like_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/images/Facebook_like_thumb.png -------------------------------------------------------------------------------- /images/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/images/blue.png -------------------------------------------------------------------------------- /images/editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/images/editor.jpg -------------------------------------------------------------------------------- /images/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/images/green.png -------------------------------------------------------------------------------- /images/jumbotron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/images/jumbotron.jpg -------------------------------------------------------------------------------- /images/large_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/images/large_logo.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/images/logo.png -------------------------------------------------------------------------------- /images/prev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/images/prev.jpg -------------------------------------------------------------------------------- /images/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/images/purple.png -------------------------------------------------------------------------------- /images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/images/red.png -------------------------------------------------------------------------------- /images/responsive_hoosk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/images/responsive_hoosk.png -------------------------------------------------------------------------------- /images/standupguy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/images/standupguy.png -------------------------------------------------------------------------------- /images/themes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/images/themes.jpg -------------------------------------------------------------------------------- /images/welcome_to_hoosk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/images/welcome_to_hoosk.png -------------------------------------------------------------------------------- /install/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /install/css/styles.css: -------------------------------------------------------------------------------- 1 | .jumbotron.errorpadding {padding-bottom: 35px;padding-top: 35px;background:#eee;} 2 | .jumbotron.errorpadding img {margin-bottom:15px;width: 150px;} 3 | input, textarea { 4 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset; 5 | transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s; 6 | } 7 | input, textarea, select, .uneditable-input { 8 | border: 1px solid #cccccc; 9 | border-radius: 3px; 10 | color: #555555; 11 | display: inline-block; 12 | font-size: 13px; 13 | height: 24px; 14 | line-height: 18px; 15 | margin-bottom: 9px; 16 | padding: 4px; 17 | width: 210px; 18 | } 19 | 20 | label { 21 | color: #333333; 22 | display: block; 23 | margin-bottom: 5px; 24 | } 25 | label, input, button, select, textarea { 26 | font-size: 13px; 27 | font-weight: normal; 28 | line-height: 18px; 29 | } 30 | 31 | .control-group { 32 | margin-bottom: 9px; 33 | } 34 | 35 | .alert-info { 36 | background-color: #d9edf7; 37 | border-color: #bce8f1; 38 | color: #3a87ad; 39 | } 40 | .alert { 41 | background-color: #e7cfcd; 42 | border: 1px solid #edaba5; 43 | border-radius: 4px; 44 | color: #e74c3c; 45 | margin-bottom: 18px; 46 | padding: 8px 35px 8px 14px; 47 | text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); 48 | } -------------------------------------------------------------------------------- /install/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /install/images/large_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/install/images/large_logo.png -------------------------------------------------------------------------------- /install/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/install/images/logo.png -------------------------------------------------------------------------------- /install/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /theme/admin/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /theme/admin/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /theme/admin/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /theme/admin/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /theme/admin/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/images/ajax-loader.gif -------------------------------------------------------------------------------- /theme/admin/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /theme/admin/images/large_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/images/large_logo.png -------------------------------------------------------------------------------- /theme/admin/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/images/logo.png -------------------------------------------------------------------------------- /theme/admin/images/trans_emblem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/images/trans_emblem.png -------------------------------------------------------------------------------- /theme/admin/img/body-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/img/body-bg.png -------------------------------------------------------------------------------- /theme/admin/img/glyphicons-halflings-white.html: -------------------------------------------------------------------------------- 1 | 2 | 404 Not Found 3 | 4 |

    404 Not Found

    5 |
    nginx
    6 | 7 | 8 | -------------------------------------------------------------------------------- /theme/admin/img/glyphicons-halflings.html: -------------------------------------------------------------------------------- 1 | 2 | 404 Not Found 3 | 4 |

    404 Not Found

    5 |
    nginx
    6 | 7 | 8 | -------------------------------------------------------------------------------- /theme/admin/img/icons-sa7c41345d9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/img/icons-sa7c41345d9.png -------------------------------------------------------------------------------- /theme/admin/img/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /theme/admin/img/signin/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/img/signin/check.png -------------------------------------------------------------------------------- /theme/admin/img/signin/fb_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/img/signin/fb_btn.png -------------------------------------------------------------------------------- /theme/admin/img/signin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /theme/admin/img/signin/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/img/signin/password.png -------------------------------------------------------------------------------- /theme/admin/img/signin/twitter_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/img/signin/twitter_btn.png -------------------------------------------------------------------------------- /theme/admin/img/signin/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/img/signin/user.png -------------------------------------------------------------------------------- /theme/admin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /theme/admin/js/_base.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | 3 | 4 | $('.subnavbar').find ('li').each (function (i) { 5 | 6 | var mod = i % 3; 7 | 8 | if (mod === 2) { 9 | $(this).addClass ('subnavbar-open-right'); 10 | } 11 | 12 | }); 13 | 14 | 15 | 16 | }); -------------------------------------------------------------------------------- /theme/admin/js/filemanager/config/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/clipboard_apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/clipboard_apply.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/clipboard_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/clipboard_clear.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/copy.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/cut.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/date.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/dimension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/dimension.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/down.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/download.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/duplicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/duplicate.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/edit_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/edit_img.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/file_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/file_edit.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/ac3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/ac3.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/accdb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/accdb.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/ade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/ade.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/adp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/adp.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/ai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/ai.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/aiff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/aiff.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/avi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/avi.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/bmp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/bmp.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/css.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/css.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/csv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/csv.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/default.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/dmg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/dmg.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/doc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/doc.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/docx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/docx.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/favicon.ico -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/fla.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/fla.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/flv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/flv.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/folder.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/folder_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/folder_back.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/gif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/gif.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/gz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/gz.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/html.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/html.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/iso.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/iso.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/jpeg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/jpeg.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/jpg.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/log.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/log.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/m4a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/m4a.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/mdb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/mdb.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/mid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/mid.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/mov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/mov.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/mp3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/mp3.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/mp4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/mp4.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/mpeg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/mpeg.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/mpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/mpg.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/odb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/odb.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/odf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/odf.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/odg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/odg.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/odp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/odp.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/ods.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/ods.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/odt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/odt.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/ogg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/ogg.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/otg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/otg.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/otp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/otp.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/ots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/ots.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/ott.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/ott.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/pdf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/pdf.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/png.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/png.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/ppt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/ppt.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/pptx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/pptx.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/psd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/psd.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/rar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/rar.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/rtf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/rtf.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/sql.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/sql.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/svg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/svg.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/tar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/tar.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/tiff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/tiff.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/txt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/txt.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/wav.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/wav.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/webm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/webm.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/wma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/wma.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/xhtml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/xhtml.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/xls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/xls.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/xlsx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/xlsx.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/xml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/xml.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico/zip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico/zip.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/ac3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/ac3.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/accdb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/accdb.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/ade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/ade.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/adp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/adp.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/ai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/ai.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/aiff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/aiff.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/avi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/avi.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/bmp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/bmp.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/css.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/css.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/csv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/csv.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/default.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/dmg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/dmg.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/doc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/doc.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/docx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/docx.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/favicon.ico -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/fla.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/fla.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/flv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/flv.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/folder.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/folder_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/folder_back.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/gif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/gif.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/gz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/gz.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/html.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/html.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/iso.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/iso.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/jpeg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/jpeg.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/jpg.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/log.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/log.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/m4a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/m4a.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/mdb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/mdb.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/mid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/mid.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/mov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/mov.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/mp3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/mp3.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/mp4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/mp4.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/mpeg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/mpeg.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/mpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/mpg.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/odb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/odb.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/odf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/odf.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/odg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/odg.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/odp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/odp.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/ods.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/ods.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/odt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/odt.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/ogg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/ogg.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/otg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/otg.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/otp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/otp.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/ots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/ots.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/ott.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/ott.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/pdf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/pdf.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/png.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/png.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/ppt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/ppt.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/pptx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/pptx.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/psd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/psd.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/rar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/rar.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/rtf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/rtf.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/sql.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/sql.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/svg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/svg.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/tar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/tar.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/tiff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/tiff.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/txt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/txt.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/wav.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/wav.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/webm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/webm.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/wma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/wma.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/xhtml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/xhtml.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/xls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/xls.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/xlsx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/xlsx.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/xml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/xml.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/ico_dark/zip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/ico_dark/zip.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/info.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/key.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/label.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/loading.gif -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/logo.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/preview.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/processing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/processing.gif -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/rename.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/size.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/sort.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/storing_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/storing_animation.gif -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/trans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/trans.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/up.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/upload.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/url.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/img/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/img/zip.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/include/FtpException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | * 10 | * @copyright Nicolas Tallefourtane http://nicolab.net 11 | */ 12 | namespace FtpClient; 13 | 14 | /** 15 | * The FtpException class. 16 | * Exception thrown if an error on runtime of the FTP client occurs. 17 | * @inheritDoc 18 | * @author Nicolas Tallefourtane 19 | */ 20 | class FtpException extends \Exception {} 21 | -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/ViewerJS/ODFViewerPlugin.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (C) 2013-2014 KO GmbH 3 | * 4 | * @licstart 5 | * This file is part of WebODF. 6 | * 7 | * WebODF is free software: you can redistribute it and/or modify it 8 | * under the terms of the GNU Affero General Public License (GNU AGPL) 9 | * as published by the Free Software Foundation, either version 3 of 10 | * the License, or (at your option) any later version. 11 | * 12 | * WebODF is distributed in the hope that it will be useful, but 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | * GNU Affero General Public License for more details. 16 | * 17 | * You should have received a copy of the GNU Affero General Public License 18 | * along with WebODF. If not, see . 19 | * @licend 20 | * 21 | * @source: http://www.webodf.org/ 22 | * @source: https://github.com/kogmbh/WebODF/ 23 | */ 24 | 25 | @namespace cursor url(urn:webodf:names:cursor); 26 | 27 | .caret { 28 | opacity: 0 !important; 29 | } 30 | -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/ViewerJS/PDFViewerPlugin.css: -------------------------------------------------------------------------------- 1 | .page { 2 | margin: 7px auto 7px auto; 3 | position: relative; 4 | overflow: hidden; 5 | background-clip: content-box; 6 | background-color: white; 7 | 8 | box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.75); 9 | -webkit-box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.75); 10 | -moz-box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.75); 11 | -ms-box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.75); 12 | -o-box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.75); 13 | } 14 | 15 | .textLayer { 16 | position: absolute; 17 | left: 0; 18 | top: 0; 19 | right: 0; 20 | bottom: 0; 21 | color: #000; 22 | font-family: sans-serif; 23 | overflow: hidden; 24 | } 25 | 26 | .textLayer > div { 27 | color: transparent; 28 | position: absolute; 29 | line-height: 1; 30 | white-space: pre; 31 | cursor: text; 32 | } 33 | 34 | ::selection { background:rgba(0,0,255,0.3); } 35 | ::-moz-selection { background:rgba(0,0,255,0.3); } 36 | 37 | -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/ViewerJS/example.local.css: -------------------------------------------------------------------------------- 1 | /* This is just a sample file with CSS rules. You should write your own @font-face declarations 2 | * to add support for your desired fonts. 3 | */ 4 | 5 | @font-face { 6 | font-family: 'Novecentowide Book'; 7 | src: url("/ViewerJS/fonts/Novecentowide-Bold-webfont.eot"); 8 | src: url("/ViewerJS/fonts/Novecentowide-Bold-webfont.eot?#iefix") format("embedded-opentype"), 9 | url("/ViewerJS/fonts/Novecentowide-Bold-webfont.woff") format("woff"), 10 | url("/fonts/Novecentowide-Bold-webfont.ttf") format("truetype"), 11 | url("/fonts/Novecentowide-Bold-webfont.svg#NovecentowideBookBold") format("svg"); 12 | font-weight: normal; 13 | font-style: normal; 14 | } 15 | 16 | @font-face { 17 | font-family: 'exotica'; 18 | src: url('/ViewerJS/fonts/Exotica-webfont.eot'); 19 | src: url('/ViewerJS/fonts/Exotica-webfont.eot?#iefix') format('embedded-opentype'), 20 | url('/ViewerJS/fonts/Exotica-webfont.woff') format('woff'), 21 | url('/ViewerJS/fonts/Exotica-webfont.ttf') format('truetype'), 22 | url('/ViewerJS/fonts/Exotica-webfont.svg#exoticamedium') format('svg'); 23 | font-weight: normal; 24 | font-style: normal; 25 | 26 | } 27 | 28 | -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/ViewerJS/images/kogmbh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/ViewerJS/images/kogmbh.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/ViewerJS/images/nlnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/ViewerJS/images/nlnet.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/ViewerJS/images/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/ViewerJS/images/texture.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/ViewerJS/images/toolbarButton-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/ViewerJS/images/toolbarButton-download.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/ViewerJS/images/toolbarButton-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/ViewerJS/images/toolbarButton-fullscreen.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/ViewerJS/images/toolbarButton-menuArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/ViewerJS/images/toolbarButton-menuArrows.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/ViewerJS/images/toolbarButton-pageDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/ViewerJS/images/toolbarButton-pageDown.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/ViewerJS/images/toolbarButton-pageUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/ViewerJS/images/toolbarButton-pageUp.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/ViewerJS/images/toolbarButton-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/ViewerJS/images/toolbarButton-presentation.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/ViewerJS/images/toolbarButton-zoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/ViewerJS/images/toolbarButton-zoomIn.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/ViewerJS/images/toolbarButton-zoomOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/ViewerJS/images/toolbarButton-zoomOut.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/ViewerJS/pdfjsversion.js: -------------------------------------------------------------------------------- 1 | var /**@const{!string}*/pdfjs_version = "v1.1.114"; 2 | -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/ZeroClipboard.swf -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2009 - 2013 Happyworm Ltd 2 | http://happyworm.com 3 | http://jplayer.org 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/README.md: -------------------------------------------------------------------------------- 1 | # [jPlayer](http://jplayer.org/) : HTML5 Audio & Video for [jQuery](http://jquery.com/) 2 | 3 | Support for [Zepto](http://zeptojs.com/) 1.0+ compiled with the data module. 4 | 5 | ## What is jPlayer? 6 | 7 | ### jPlayer is a jQuery/Zepto plugin that allows you to: 8 | * **play and control media** files in your webpage. 9 | * create a **consistent interface** and experience across all browsers. 10 | * create and style a media player using **just HTML and CSS**. 11 | * add **audio** and **video** to your jQuery/Zepto projects. 12 | * support more devices using **HTML5**. 13 | * support older browsers using a Flash _fall-back/forward_. 14 | * control media on your website using a [JavaScript API](http://www.jplayer.org/latest/developer-guide/). 15 | 16 | ### jPlayer supports: 17 | * HTML5: **mp3, m4a (AAC), m4v (H.264),** ogv*, oga*, wav*, webm* 18 | * Flash: **mp3, m4a (AAC), m4v (H.264),** rtmp, flv. 19 | 20 | _(*) Optional counterpart formats to increase HTML5 cross-browser support._ 21 | 22 | ## License 23 | [jPlayer](http://jplayer.org/) is licensed under the [MIT license](http://opensource.org/licenses/MIT). 24 | 25 | ## More information: 26 | * [jPlayer.org](http://jplayer.org/) 27 | * [Quick Start Guide](http://www.jplayer.org/latest/quick-start-guide/) 28 | * [Developer Guide and API Reference](http://www.jplayer.org/latest/developer-guide/) 29 | 30 | ## Author: 31 | Mark J Panaghiston [@thepag](http://twitter.com/thepag) 32 | [happyworm.com](http://happyworm.com/) 33 | -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/actionscript/Jplayer.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/jPlayer/actionscript/Jplayer.fla -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/jplayer.jquery.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jplayer", 3 | "title": "jPlayer : HTML5 Audio & Video", 4 | "description": "jPlayer allows you to create a media player with a consistent interface and experience across all browsers.", 5 | "keywords": [ 6 | "audio", 7 | "video", 8 | "media", 9 | "player", 10 | "jplayer", 11 | "html5", 12 | "streaming" 13 | ], 14 | "version": "2.4.0", 15 | "author": { 16 | "name": "Mark J Panaghiston", 17 | "url": "http://happyworm.com/" 18 | }, 19 | "licenses": [ 20 | { 21 | "type": "MIT", 22 | "url": "https://github.com/happyworm/jPlayer/blob/master/MIT-LICENSE.txt" 23 | } 24 | ], 25 | "dependencies": { 26 | "jquery": ">=1.7" 27 | }, 28 | "homepage": "http://jplayer.org/", 29 | "demo": "http://jplayer.org/latest/demos/", 30 | "docs": "http://jplayer.org/latest/developer-guide/", 31 | "download": "http://jplayer.org/download/", 32 | "bugs": "https://github.com/happyworm/jPlayer/issues" 33 | } -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/jplayer/jquery.jplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/jPlayer/jplayer/jquery.jplayer.swf -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/jquery.jplayer/Jplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/jPlayer/jquery.jplayer/Jplayer.swf -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jplayer", 3 | "version": "2.4.0", 4 | "description": "The jQuery HTML5 Audio / Video Library", 5 | "homepage": "http://www.jplayer.org/", 6 | "keywords": [ 7 | "audio", 8 | "video" 9 | ], 10 | "dependencies": { 11 | "jquery": ">1.7.0" 12 | }, 13 | "licenses": [ 14 | { 15 | "type": "MIT", 16 | "url": "http://www.opensource.org/licenses/MIT" 17 | } 18 | ], 19 | "repositories": [ 20 | { 21 | "type": "git", 22 | "url": "https://github.com/happyworm/jPlayer.git" 23 | } 24 | ], 25 | "github": "http://github.com/happyworm/jPlayer", 26 | "main": "jquery.jplayer/jquery.jplayer.js" 27 | } 28 | -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin/blue.monday/image/jplayer.blue.monday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/jPlayer/skin/blue.monday/image/jplayer.blue.monday.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin/blue.monday/image/jplayer.blue.monday.seeking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/jPlayer/skin/blue.monday/image/jplayer.blue.monday.seeking.gif -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin/blue.monday/image/jplayer.blue.monday.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/jPlayer/skin/blue.monday/image/jplayer.blue.monday.video.play.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin/blue.monday/jplayer.blue.monday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/jPlayer/skin/blue.monday/jplayer.blue.monday.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin/blue.monday/jplayer.blue.monday.seeking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/jPlayer/skin/blue.monday/jplayer.blue.monday.seeking.gif -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin/blue.monday/jplayer.blue.monday.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/jPlayer/skin/blue.monday/jplayer.blue.monday.video.play.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin/blue.monday/mustache/jplayer.blue.monday.audio.single.html: -------------------------------------------------------------------------------- 1 | 2 | 38 | -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin/blue.monday/mustache/jplayer.blue.monday.audio.stream.html: -------------------------------------------------------------------------------- 1 | 2 | 25 | -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin/pink.flag/image/jplayer.pink.flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/jPlayer/skin/pink.flag/image/jplayer.pink.flag.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin/pink.flag/image/jplayer.pink.flag.seeking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/jPlayer/skin/pink.flag/image/jplayer.pink.flag.seeking.gif -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin/pink.flag/image/jplayer.pink.flag.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/jPlayer/skin/pink.flag/image/jplayer.pink.flag.video.play.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin/pink.flag/mustache/jplayer.pink.flag.audio.single.html: -------------------------------------------------------------------------------- 1 | 2 | 38 | -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin/pink.flag/mustache/jplayer.pink.flag.audio.stream.html: -------------------------------------------------------------------------------- 1 | 2 | 25 | -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin_ol/blue.monday/jplayer.blue.monday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/jPlayer/skin_ol/blue.monday/jplayer.blue.monday.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin_ol/blue.monday/jplayer.blue.monday.seeking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/jPlayer/skin_ol/blue.monday/jplayer.blue.monday.seeking.gif -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin_ol/blue.monday/jplayer.blue.monday.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/jPlayer/skin_ol/blue.monday/jplayer.blue.monday.video.play.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin_ol/pink.flag/jplayer.pink.flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/jPlayer/skin_ol/pink.flag/jplayer.pink.flag.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin_ol/pink.flag/jplayer.pink.flag.seeking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/jPlayer/skin_ol/pink.flag/jplayer.pink.flag.seeking.gif -------------------------------------------------------------------------------- /theme/admin/js/filemanager/js/jPlayer/skin_ol/pink.flag/jplayer.pink.flag.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/js/jPlayer/skin_ol/pink.flag/jplayer.pink.flag.video.play.png -------------------------------------------------------------------------------- /theme/admin/js/filemanager/lang/languages.php: -------------------------------------------------------------------------------- 1 | 'Azərbaycan dili', 6 | 'bg_BG' => 'български език', 7 | 'ca' => 'Català, valencià', 8 | 'cs' => 'čeština, český jazyk', 9 | 'da' => 'Dansk', 10 | 'de' => 'Deutsch', 11 | 'el_GR' => 'ελληνικά', 12 | 'en_EN' => 'English', 13 | 'es' => 'Español', 14 | 'fa' => 'فارسی', 15 | 'fr_FR' => 'Français', 16 | 'he_IL' => 'Hebrew (Israel)', 17 | 'hr' => 'Hrvatski jezik', 18 | 'hu_HU' => 'Magyar', 19 | 'id' => 'Bahasa Indonesia', 20 | 'it' => 'Italiano', 21 | 'ja' => '日本', 22 | 'lt' => 'Lietuvių kalba', 23 | 'mn_MN' => 'монгол', 24 | 'nb_NO' => 'Norsk bokmål', 25 | 'nl' => 'Nederlands, Vlaams', 26 | 'pl' => 'Język polski, polszczyzna', 27 | 'pt_BR' => 'Português(Brazil)', 28 | 'pt_PT' => 'Português', 29 | 'ru' => 'Pусский язык', 30 | 'sk' => 'Slovenčina', 31 | 'sl' => 'Slovenski jezik', 32 | 'sv_SE' => 'Svenska', 33 | 'tr_TR' => 'Türkçe', 34 | 'uk_UA' => 'Yкраїнська мова', 35 | 'vi' => 'Tiếng Việt', 36 | 'zh_CN' => '中文 (Zhōngwén), 汉语, 漢語', 37 | 38 | // source: http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes 39 | ); 40 | -------------------------------------------------------------------------------- /theme/admin/js/filemanager/uploader/success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/uploader/success.jpg -------------------------------------------------------------------------------- /theme/admin/js/filemanager/uploader/success.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | JUpload RESPONSIVE filemanager 5 | 11 | "> 13 | 14 | 15 |


    16 | success 17 |
    18 | 19 | -------------------------------------------------------------------------------- /theme/admin/js/filemanager/uploader/wjhk.jupload.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/filemanager/uploader/wjhk.jupload.jar -------------------------------------------------------------------------------- /theme/admin/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /theme/admin/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /theme/admin/js/signin.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | 3 | jQuery.support.placeholder = false; 4 | test = document.createElement('input'); 5 | if('placeholder' in test) jQuery.support.placeholder = true; 6 | 7 | if (!$.support.placeholder) { 8 | 9 | $('.field').find ('label').show (); 10 | 11 | } 12 | 13 | }); -------------------------------------------------------------------------------- /theme/admin/js/trevor/fonts/ST-Columns-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/trevor/fonts/ST-Columns-Icons.woff -------------------------------------------------------------------------------- /theme/admin/js/trevor/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/locales/cn.js: -------------------------------------------------------------------------------- 1 | SirTrevor.Locales.cn = { 2 | general: { 3 | 'delete': '删除', 4 | 'drop': '把目标__block__拖拽到这里', 5 | 'paste': '或者粘贴一个URL', 6 | 'upload': '...或者点击上传', 7 | 'close': '关闭', 8 | 'position': '位置', 9 | 'wait': '处理中,请稍候...', 10 | 'link': '请填写要插入的链接' 11 | }, 12 | errors: { 13 | 'title': "发生了以下的错误:", 14 | 'validation_fail': "__type__ 模块不是有效模块", 15 | 'block_empty': "__name__ 不能为空", 16 | 'type_missing': "你必须至少有一个 __type__ 类型的模块", 17 | 'required_type_empty': "一个必须不为空的模块 __type__ 目前为空", 18 | 'load_fail': "载入文档内容失败" 19 | }, 20 | blocks: { 21 | text: { 22 | 'title': "文字" 23 | }, 24 | list: { 25 | 'title': "列表" 26 | }, 27 | quote: { 28 | 'title': "引用", 29 | 'credit_field': "出处" 30 | }, 31 | image: { 32 | 'title': "图片", 33 | 'upload_error': "载入图片失败" 34 | }, 35 | video: { 36 | 'title': "视频" 37 | }, 38 | tweet: { 39 | 'title': "Tweet", 40 | 'fetch_error': "获取tweet失败" 41 | }, 42 | embedly: { 43 | 'title': "内嵌内容", 44 | 'fetch_error': "内嵌内容载入失败", 45 | 'key_missing': "嵌入内容的API没有合法的Key" 46 | }, 47 | heading: { 48 | 'title': '标题' 49 | } 50 | } 51 | } -------------------------------------------------------------------------------- /theme/admin/js/trevor/locales/es.js: -------------------------------------------------------------------------------- 1 | SirTrevor.Locales.es = { 2 | general: { 3 | 'delete': '¿Eliminar?', 4 | 'drop': 'Arrastrar __block__ ici', 5 | 'paste': 'O copie el enlace aquí', 6 | 'upload': '...o seleccione un fichero', 7 | 'close': 'cerrar', 8 | 'position': 'Posición', 9 | 'wait': 'Por favor, espere...', 10 | 'link': 'Introduce un link' 11 | }, 12 | errors: { 13 | 'title': "Aparecerá el siguiente error :", 14 | 'validation_fail': "Bloque __type__ inválido", 15 | 'block_empty': "__name__ no debe estar vacío", 16 | 'type_missing': "Debe tene un tipo de bloque __type__", 17 | 'required_type_empty': "Un bloque obligatorio de tipo __type__ está vacío", 18 | 'load_fail': "Hay un problema con la carga de datos" 19 | }, 20 | blocks: { 21 | text: { 22 | 'title': "Texto" 23 | }, 24 | columns: { 25 | 'title': "Columnas" 26 | }, 27 | list: { 28 | 'title': "Lista" 29 | }, 30 | quote: { 31 | 'title': "Cita", 32 | 'credit_field': "Autor" 33 | }, 34 | image: { 35 | 'title': "Imagen", 36 | 'upload_error': "Hay un problema con la subida" 37 | }, 38 | video: { 39 | 'title': "Vídeo" 40 | }, 41 | tweet: { 42 | 'title': "Tweet", 43 | 'fetch_error': "Se produjo un problema al recuperar su tweet" 44 | }, 45 | embedly: { 46 | 'title': "Embebido", 47 | 'fetch_error': "Se produjo un problema al recuperar su video", 48 | 'key_missing': "Debe tener asociada una clave API" 49 | }, 50 | heading: { 51 | 'title': 'Título' 52 | } 53 | } 54 | }; 55 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/locales/fi.js: -------------------------------------------------------------------------------- 1 | SirTrevor.Locales.fi = { 2 | general: { 3 | 'delete': 'Poista?', 4 | 'drop': 'Raahaa __block__ tähän', 5 | 'paste': 'Tai lisää osoite tähän', 6 | 'upload': '...tai valitse tiedosto', 7 | 'close': 'sulje', 8 | 'position': 'Sijainti', 9 | 'wait': 'Odota hetki...', 10 | 'link': 'Kirjoita osoite' 11 | }, 12 | errors: { 13 | 'title': "Seuraavat virheet:", 14 | 'validation_fail': "__type__-lohko on epäkelpo", 15 | 'block_empty': "__name__ ei saa olla tyhjä", 16 | 'type_missing': "__type__ on pakollinen lohko", 17 | 'required_type_empty': "Pakollinen __type__-lohko on tyhjä", 18 | 'load_fail': "Sisällön lataamisessa on ongelma" 19 | }, 20 | blocks: { 21 | text: { 22 | 'title': "Teksti" 23 | }, 24 | list: { 25 | 'title': "Lista" 26 | }, 27 | quote: { 28 | 'title': "Lainaus", 29 | 'credit_field': "Lähde" 30 | }, 31 | image: { 32 | 'title': "Kuva", 33 | 'upload_error': "Tiedoston lataamisessa oli ongelma" 34 | }, 35 | video: { 36 | 'title': "Video" 37 | }, 38 | tweet: { 39 | 'title': "Tweet", 40 | 'fetch_error': "Viestin hakemisessa oli ongelma" 41 | }, 42 | embedly: { 43 | 'title': "Embedly", 44 | 'fetch_error': "Sisällön hakemisessa oli ongelma", 45 | 'key_missing': "Embedly vaatii API-avaimen" 46 | }, 47 | heading: { 48 | 'title': 'Otsikko' 49 | } 50 | } 51 | }; 52 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/locales/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/locales/pt.js: -------------------------------------------------------------------------------- 1 | SirTrevor.Locales.pt = { 2 | general: { 3 | 'delete': 'Elimina?', 4 | 'drop': 'Arrastar __block__ aqui', 5 | 'paste': 'Ou cola o URL aquí', 6 | 'upload': '...ou selecionar um fichero', 7 | 'close': 'Fechar', 8 | 'position': 'Posicionar', 9 | 'wait': 'Por favor, espere...', 10 | 'link': 'Introduz um link' 11 | }, 12 | errors: { 13 | 'title': "Sugerio os seguientes erros :", 14 | 'validation_fail': "Bloque __type__ inválido", 15 | 'block_empty': "__name__ no debe estar vacío", 16 | 'type_missing': "Necessitas um bloque de __type__", 17 | 'required_type_empty': "Um bloque obligatorio de tipo __type__ está vazio", 18 | 'load_fail': "Sugerio um problema a cargar os dados do documento" 19 | }, 20 | blocks: { 21 | text: { 22 | 'title': "Texto" 23 | }, 24 | list: { 25 | 'title': "Lista" 26 | }, 27 | quote: { 28 | 'title': "Cita", 29 | 'credit_field': "Autor" 30 | }, 31 | image: { 32 | 'title': "Imagem", 33 | 'upload_error': "Sugerio um problema com o upload da imagem" 34 | }, 35 | video: { 36 | 'title': "Vídeo" 37 | }, 38 | tweet: { 39 | 'title': "Tweet", 40 | 'fetch_error': "Sugerio um problema na busca da sua tweet" 41 | }, 42 | embedly: { 43 | 'title': "Embebido", 44 | 'fetch_error': "Sugerio um problema na busca do video", 45 | 'key_missing': "Necessitamos a chave do API Embedly" 46 | }, 47 | heading: { 48 | 'title': 'Título' 49 | } 50 | } 51 | }; 52 | 53 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/ST-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/havok89/Hoosk/9489c8eb0b1236f7298eef0973c2185cf9a5c1c1/theme/admin/js/trevor/public/images/icons/ST-Icons.woff -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/sir-trevor-icons.tpl.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'ST-Icons'; 3 | src: url('ST-Icons.woff') format('woff'); 4 | font-weight: normal; 5 | font-style: normal; 6 | } -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Add.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Bin-open.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Bin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Columns.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Columns12.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Columns121.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Columns13.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Columns2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Columns21.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Columns3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Columns31.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Columns4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Competition.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Embed.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Header.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Image.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/List.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Move.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Poll.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Quote.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Text.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Tick.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/Video.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/icons/src/link.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/sir-trevor-columns-block.css: -------------------------------------------------------------------------------- 1 | .st-block[data-type=Columns] > .st-block__inner > .columns-row > .column { 2 | position: relative; } 3 | .st-block[data-type=Columns] > .st-block__inner > .columns-row > .column > .st-block-controls__top, .st-block[data-type=Columns] > .st-block__inner > .columns-row > .column > .st-block.st-icon--add::after { 4 | width: 95%; 5 | margin-left: auto; 6 | margin-right: auto; } 7 | .st-block[data-type=Columns] > .st-block__inner > .columns-row > .column::before { 8 | display: none; 9 | position: absolute; 10 | width: 95%; 11 | left: 2.5%; 12 | border: 1px solid #35debc; 13 | border-bottom: none; 14 | height: 3px; 15 | content: ' '; 16 | box-sizing: border-box; } 17 | .st-block[data-type=Columns] > .st-block__inner > .st-block__control-ui [data-icon]:before { 18 | font-family: 'ST-Columns-Icons'; } 19 | .st-block[data-type=Columns]:hover > .st-block__inner > .columns-row > .column::before { 20 | display: block; } 21 | .st-block[data-type=Columns] .column .st-block-controls { 22 | font-size: 90%; } 23 | .st-block[data-type=Columns] .column .st-block-controls .st-block-control { 24 | margin-right: 5px; 25 | margin-bottom: 3px; } 26 | .st-block[data-type=Columns] .column .st-block-controls .st-block-control[data-type=Columns] { 27 | display: none; } 28 | 29 | .st-block-controls .st-block-control[data-type=Columns] .st-icon { 30 | font-family: 'ST-Columns-Icons'; } 31 | 32 | @font-face { 33 | font-family: 'ST-Columns-Icons'; 34 | src: url("fonts/ST-Columns-Icons.woff") format("woff"); 35 | font-weight: normal; 36 | font-style: normal; } 37 | 38 | /*# sourceMappingURL=sir-trevor-columns-block.css.map */ 39 | -------------------------------------------------------------------------------- /theme/admin/js/trevor/sir-trevor-iframe.js: -------------------------------------------------------------------------------- 1 | SirTrevor.Blocks.Iframe = (function() { 2 | return SirTrevor.Block.extend({ 3 | regex_src : /(?:)/i, 4 | regex_width : /(?:)/i, 5 | regex_height : /(?:)/i, 6 | type : 'iframe', 7 | icon_name : 'iframe', 8 | title : function() { 9 | return "Iframe"; 10 | }, 11 | toolbarEnabled : true, 12 | droppable : false, 13 | pastable : true, 14 | paste_options : { 15 | html : '' 16 | }, 17 | onContentPasted : function(event) { 18 | this.loading(); 19 | obj = {}; 20 | val = $(event.target).val(); 21 | match_src = this.regex_src.exec(val); 22 | if (match_src !== null && !_.isUndefined(match_src[1])) { 23 | obj.src = match_src[1]; 24 | match_width = val.match(this.regex_width); 25 | if (match_width !== null && !_.isUndefined(match_width[1])) { 26 | obj.width = match_width[1]; 27 | } 28 | match_height = val.match(this.regex_height); 29 | if (match_height !== null && !_.isUndefined(match_height[1])) { 30 | obj.height = match_height[1]; 31 | } 32 | this.setAndLoadData(obj); 33 | } 34 | }, 35 | uploadable : false, 36 | formattable : false, 37 | loadData : function(data) { 38 | data.width = (typeof data.width == undefined || !data.width) ? '100%' : data.width; 39 | data.height = (typeof data.height == undefined || !data.height) ? '100%' : data.height; 40 | this.$inner.prepend( 41 | $('