├── data ├── .htaccess ├── assets │ ├── .htaccess │ ├── img │ │ └── bg.gif │ ├── templates │ │ ├── partials │ │ │ └── twitter.php │ │ ├── layout.php │ │ ├── core │ │ │ ├── aside.php │ │ │ ├── navigation.php │ │ │ ├── footer.php │ │ │ └── header.php │ │ ├── layout_list.php │ │ ├── layout_blog_list.php │ │ └── layout_blog.php │ ├── js │ │ └── script.js │ └── css │ │ └── style.css ├── contact.md ├── blog │ ├── 20110429.md │ ├── 20110430.md │ └── 20110428.md ├── about.md └── index.md ├── lack ├── .htaccess ├── ci │ ├── .htaccess │ ├── index.html │ ├── core │ │ ├── index.html │ │ ├── Model.php │ │ ├── Controller.php │ │ ├── Benchmark.php │ │ ├── Lang.php │ │ ├── Utf8.php │ │ ├── Exceptions.php │ │ └── Hooks.php │ ├── database │ │ ├── index.html │ │ ├── drivers │ │ │ ├── index.html │ │ │ ├── mssql │ │ │ │ ├── index.html │ │ │ │ ├── mssql_utility.php │ │ │ │ └── mssql_result.php │ │ │ ├── mysql │ │ │ │ ├── index.html │ │ │ │ ├── mysql_result.php │ │ │ │ └── mysql_utility.php │ │ │ ├── mysqli │ │ │ │ ├── index.html │ │ │ │ ├── mysqli_utility.php │ │ │ │ └── mysqli_result.php │ │ │ ├── oci8 │ │ │ │ ├── index.html │ │ │ │ └── oci8_utility.php │ │ │ ├── odbc │ │ │ │ ├── index.html │ │ │ │ ├── odbc_utility.php │ │ │ │ └── odbc_result.php │ │ │ ├── postgre │ │ │ │ ├── index.html │ │ │ │ ├── postgre_utility.php │ │ │ │ └── postgre_result.php │ │ │ └── sqlite │ │ │ │ ├── index.html │ │ │ │ ├── sqlite_utility.php │ │ │ │ └── sqlite_result.php │ │ ├── DB.php │ │ └── DB_cache.php │ ├── fonts │ │ └── index.html │ ├── helpers │ │ ├── index.html │ │ ├── language_helper.php │ │ ├── email_helper.php │ │ ├── path_helper.php │ │ ├── xml_helper.php │ │ ├── number_helper.php │ │ ├── directory_helper.php │ │ ├── typography_helper.php │ │ ├── cookie_helper.php │ │ ├── array_helper.php │ │ ├── download_helper.php │ │ ├── security_helper.php │ │ └── inflector_helper.php │ ├── language │ │ ├── index.html │ │ └── english │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── unit_test_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── calendar_lang.php │ │ │ ├── upload_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── db_lang.php │ │ │ └── date_lang.php │ └── libraries │ │ ├── index.html │ │ ├── Log.php │ │ ├── Cache │ │ ├── drivers │ │ │ ├── Cache_dummy.php │ │ │ ├── Cache_apc.php │ │ │ └── Cache_file.php │ │ └── Cache.php │ │ └── Parser.php ├── index.html ├── config │ ├── index.html │ ├── hooks.php │ ├── lack.php │ ├── profiler.php │ ├── doctypes.php │ ├── constants.php │ ├── routes.php │ ├── foreign_chars.php │ ├── database.php │ ├── smileys.php │ ├── autoload.php │ └── mimes.php ├── core │ └── index.html ├── errors │ ├── index.html │ ├── error_php.php │ ├── error_general.php │ ├── error_db.php │ └── error_404.php ├── helpers │ └── index.html ├── hooks │ └── index.html ├── models │ └── index.html ├── views │ └── index.html ├── controllers │ ├── index.html │ └── site.php ├── libraries │ ├── index.html │ └── Twitter.php ├── third_party │ └── index.html └── language │ └── english │ └── index.html ├── .gitignore ├── .htaccess └── README.md /data/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /lack/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /lack/ci/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /data/assets/.htaccess: -------------------------------------------------------------------------------- 1 | Allow from all -------------------------------------------------------------------------------- /data/assets/img/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstrahija/Lack/HEAD/data/assets/img/bg.gif -------------------------------------------------------------------------------- /data/assets/templates/partials/twitter.php: -------------------------------------------------------------------------------- 1 |
Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /data/assets/js/script.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | $("p.profile .toggle").bind("click", function(e) { 3 | $("#codeigniter_profiler").toggle(); 4 | e.preventDefault(); 5 | }); 6 | }); -------------------------------------------------------------------------------- /lack/ci/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/ci/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/ci/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/ci/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/ci/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/ci/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.bak 3 | Thumbs.db 4 | desktop.ini 5 | .DS_Store 6 | .buildpath 7 | .project 8 | .settings 9 | assts/cache/* 10 | lack/logs/* 11 | lack/cache/* 12 | nbproject/ 13 | .idea -------------------------------------------------------------------------------- /lack/ci/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/ci/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/ci/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/ci/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/ci/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/ci/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/ci/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/ci/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /lack/ci/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 |{summary}
10 |Severity:
6 |Message:
7 |Filename:
8 |Line Number:
9 | 10 | -------------------------------------------------------------------------------- /data/assets/templates/layout_blog_list.php: -------------------------------------------------------------------------------- 1 | {header} 2 | 3 |{summary}
13 |{my_custom_meta}
14 |© 2011 Lack°, Creo
4 |{memory_usage} • {elapsed_time}ms • #
5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |