1
0
Fork 0
mirror of https://github.com/Oreolek/oreolek.ru.git synced 2024-06-01 07:48:14 +03:00

Kohana Debug Toolbar

This commit is contained in:
Alexander Yakovlev 2013-05-08 12:49:02 +07:00
parent e9667abe6b
commit 65b78e5205
4 changed files with 17 additions and 12 deletions

3
.gitmodules vendored
View file

@ -19,3 +19,6 @@
[submodule "modules/kostache"] [submodule "modules/kostache"]
path = modules/kostache path = modules/kostache
url = git@github.com:zombor/KOstache.git url = git@github.com:zombor/KOstache.git
[submodule "modules/debug-toolbar"]
path = modules/debug-toolbar
url = git://github.com/biakaveron/debug-toolbar.git

View file

@ -106,15 +106,16 @@ Cookie::$salt = 'Dz75cE_TgeDXvo2';
* Enable modules. Modules are referenced by a relative or absolute path. * Enable modules. Modules are referenced by a relative or absolute path.
*/ */
Kohana::modules(array( Kohana::modules(array(
'auth' => MODPATH.'auth', // Basic authentication 'auth' => MODPATH.'auth', // Basic authentication
// 'cache' => MODPATH.'cache', // Caching with multiple backends 'database' => MODPATH.'database', // Database access
// 'codebench' => MODPATH.'codebench', // Benchmarking tool 'orm' => MODPATH.'orm', // Object Relationship Mapping
'database' => MODPATH.'database', // Database access 'markdown' => MODPATH.'markdown', // Markdown module
// 'image' => MODPATH.'image', // Image manipulation 'less' => MODPATH.'less', // LEaner CSS
'orm' => MODPATH.'orm', // Object Relationship Mapping 'debug-toolbar' => MODPATH.'debug-toolbar', // Debug toolbar
// 'unittest' => MODPATH.'unittest', // Unit testing // 'cache' => MODPATH.'cache', // Caching with multiple backends
'markdown' => MODPATH.'markdown', // Markdown module // 'codebench' => MODPATH.'codebench', // Benchmarking tool
'less' => MODPATH.'less', // LEaner CSS // 'image' => MODPATH.'image', // Image manipulation
// 'unittest' => MODPATH.'unittest', // Unit testing
)); ));
/** /**

View file

@ -107,6 +107,6 @@ require APPPATH.'bootstrap'.EXT;
* If no source is specified, the URI will be automatically detected. * If no source is specified, the URI will be automatically detected.
*/ */
echo Request::factory() echo Request::factory()
->execute() ->execute()
->send_headers() ->send_headers()
->body(); ->body();

1
modules/debug-toolbar Submodule

@ -0,0 +1 @@
Subproject commit dc96821f2c7a6e2894d652733dbded5f2782f70e