Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Nov 16, 2012
0 parents commit 662db86
Show file tree
Hide file tree
Showing 22 changed files with 2,061 additions and 0 deletions.
Empty file added .gitignore
Empty file.
448 changes: 448 additions & 0 deletions src/Tracy/Debug.php

Large diffs are not rendered by default.

36 changes: 36 additions & 0 deletions src/Tracy/templates/Debug.closepanel.phtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?php

/**
* Nette Framework
*
* Copyright (c) 2004, 2008 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "Nette license" that is bundled
* with this package in the file license.txt.
*
* For more information please see http://nettephp.com/
*
* @copyright Copyright (c) 2004, 2008 David Grudl
* @license http://nettephp.com/license Nette license
* @link http://nettephp.com/
* @category Nette
* @package Nette
*/


/**
* Debugger template - close panel
*
* @author David Grudl
* @copyright Copyright (c) 2004, 2008 David Grudl
* @package Nette
* @version $Revision: 13 $ $Date: 2008-02-19 18:47:11 +0100 (út, 19 II 2008) $
*/

// passed parameters: none



?>
</div>
</div>
38 changes: 38 additions & 0 deletions src/Tracy/templates/Debug.openpanel.phtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?php

/**
* Nette Framework
*
* Copyright (c) 2004, 2008 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "Nette license" that is bundled
* with this package in the file license.txt.
*
* For more information please see http://nettephp.com/
*
* @copyright Copyright (c) 2004, 2008 David Grudl
* @license http://nettephp.com/license Nette license
* @link http://nettephp.com/
* @category Nette
* @package Nette
*/


/**
* Debugger template - open panel
*
* @author David Grudl
* @copyright Copyright (c) 2004, 2008 David Grudl
* @package Nette
* @version $Revision: 13 $ $Date: 2008-02-19 18:47:11 +0100 (út, 19 II 2008) $
*/

// passed parameters: $name, $collaped, $id



?>
<div class="panel">
<h2><a href="#" onclick="return !toggle(this, 'pnl<?php echo $id ?>')"><?php echo htmlSpecialChars($name) ?> <span><?php echo $collaped ? '&#x25b6;' : '&#x25bc;' ?></span></a></h2>

<div id="pnl<?php echo $id ?>" class="<?php echo $collaped ? 'collapsed ' : '' ?>inner">
Loading

0 comments on commit 662db86

Please sign in to comment.