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 | |
| class xhparser { | |
| /** | |
| * Content | |
| * | |
| * @var string | |
| */ | |
| private $_aFiles = array(); |
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 | |
| /** | |
| * Read the latest modification date of a number of tracs | |
| */ | |
| class tracTest { | |
| /** | |
| * The http-client to use (w/ auth) | |
| * | |
| * @var Zend_Http_Client |
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 | |
| /** | |
| * Super-simple script to convert a existing project to use namespaces | |
| * | |
| * @author Hans-Peter Buniat <[email protected]> | |
| * @copyright 2012 Hans-Peter Buniat <[email protected]> | |
| * @license http://opensource.org/licenses/BSD-3-Clause | |
| */ | |
| class namespaceRefactor { |
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 | |
| /** | |
| * SVN-Version extractor of a specific file | |
| * | |
| * Get all versions of a specific file from svn | |
| */ | |
| // argument-handling | |
| $aArgs = getopt('f:p:r:'); | |
| $iRevision = (true === empty($aArgs['r'])) ? 'HEAD' : $aArgs['r']; |
OlderNewer