This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This config script facilitates INI-file configuration of | |
* Sismo (http://sismo.sensiolabs.org/) projects | |
* | |
* Installation: | |
* | |
* 1. Place this file in ~/.sismo/ (or SISMO_CONFIG_PATH) | |
* 2. Create projects.ini file in ~/.sismo (or SISMO_CONFIG_PATH), specifying |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Simple HTML debug panel with toggle control --> | |
[ <a id="debugControl" onclick="document.getElementById('debugPanel').style.display = (document.getElementById('debugPanel').style.display == 'none' ? 'block' : 'none'); document.getElementById('debugControl').innerHTML = (document.getElementById('debugControl').innerHTML == '+' ? '-' : '+');">+</a> ] | |
<pre id="debugPanel" style="font-family: 'Courier New', Monospace; display: none"> | |
<!-- Debug output goes here --> | |
</pre> |
NewerOlder