This file contains 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
;; phpDocumentor parse configuration file | |
;; | |
;; This file is designed to cut down on repetitive typing on the command-line or web interface | |
;; You can copy this file to create a number of configuration files that can be used with the | |
;; command-line switch -c, as in phpdoc -c default.ini or phpdoc -c myini.ini. The web | |
;; interface will automatically generate a list of .ini files that can be used. | |
;; | |
;; default.ini is used to generate the online manual at http://www.phpdoc.org/docs | |
;; | |
;; ALL .ini files must be in the user subdirectory of phpDocumentor with an extension of .ini |
This file contains 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 | |
/** | |
* From: http://www.innerweaver.com/articles/php-java-properties | |
* | |
* PHP Version of the class java.util.Properties. Loads and saves Java | |
* .properties files. | |
* | |
* The methods inherited from Hashtable are not implemented, as they are | |
* merely another interface to the same functionality. The save method is not |
This file contains 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
ReflectionClass — The ReflectionClass class | |
ReflectionClass::__clone — Clones object | |
ReflectionClass::__construct — Constructs a ReflectionClass | |
ReflectionClass::export — Exports a class | |
ReflectionClass::getConstant — Gets defined constants | |
ReflectionClass::getConstants — Gets constants | |
ReflectionClass::getConstructor — Gets constructor | |
ReflectionClass::getDefaultProperties — Gets default properties | |
ReflectionClass::getDocComment — Gets doc comments | |
ReflectionClass::getEndLine — Gets end line |
This file contains 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
/** | |
* Test ridiculous UML diagrams embedded in comments: | |
* | |
* +-------------+ +----------------+ | |
* | MyBaseClass |--------:>| MyCollaborator | | |
* +------.------+ +----------------+ | |
* /_\ | |
* | |
This file contains 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
// pomo.pb acb ??-09-24 AU | |
// pb script for generating postmodern verbiage | |
// Updated, format-independent version | |
// Copyright (C) 1995, 1996 Andrew C. Bulhak | |
// this script is property of acb. You are permitted to use, modify and | |
// distribute it as long as this notice is retained and any modifications | |
// in distributed copies are clearly denoted. | |
// if we're using troff, we want two columns |
This file contains 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 | |
function is_reserved_word($word) | |
{ | |
return (in_array($word, array( | |
"abstract", | |
"and", | |
"array", | |
"as", | |
"break", |
This file contains 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
{ scopeName = 'source.epiphyte'; | |
fileTypes = ( 'phyte' ); | |
foldingStartMarker = '(client|resource|collection).*$'; | |
foldingStopMarker = '^\s*end'; | |
patterns = ( | |
{ name = 'keyword.other.declaration'; | |
match = '\b(collection|end)\b'; | |
}, | |
{ name = 'meta.client.epiphyte'; | |
match = '(client)(\s+[A-Za-z0-9\_]+)*'; |
This file contains 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
String::endsWith = (s) -> this[this.length-s.length...] == s |
This file contains 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
var Geography; | |
window.Geography = this.Geography = Geography = {}; | |
Geography.Country = Mozart.Model.create({ | |
modelName: "Country" | |
}); | |
Geography.Country.attributes({ | |
name: "string", |
This file contains 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
heroku config:set BUILDPACK_URL=git://github.com/qnyp/heroku-buildpack-ruby-bower.git#workaround-for-bower-cache-bug |