├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── README.md ├── app ├── .htaccess ├── 404.html ├── apple-touch-icon.png ├── favicon.png ├── iframe-badge │ └── index.html ├── image-badge │ ├── index.php │ └── php-ga │ │ ├── GoogleAnalytics │ │ ├── Campaign.php │ │ ├── Config.php │ │ ├── CustomVariable.php │ │ ├── Event.php │ │ ├── Exception.php │ │ ├── Internals │ │ │ ├── ParameterHolder.php │ │ │ ├── Request │ │ │ │ ├── EventRequest.php │ │ │ │ ├── HttpRequest.php │ │ │ │ ├── ItemRequest.php │ │ │ │ ├── PageviewRequest.php │ │ │ │ ├── Request.php │ │ │ │ ├── SocialInteractionRequest.php │ │ │ │ └── TransactionRequest.php │ │ │ ├── Util.php │ │ │ └── X10.php │ │ ├── Item.php │ │ ├── Page.php │ │ ├── Session.php │ │ ├── SocialInteraction.php │ │ ├── Tracker.php │ │ ├── Transaction.php │ │ └── Visitor.php │ │ └── autoload.php ├── images │ ├── goodgame-logo.png │ ├── goodgame-no-image.png │ ├── hitbox-logo.png │ ├── hitbox-no-image.png │ ├── justin-logo.png │ ├── justin-no-image.png │ ├── live.png │ ├── livestream-logo.png │ ├── livestream-no-image.png │ ├── streambadge.png │ ├── twitch-logo.png │ ├── twitch-no-image.png │ ├── ustream-logo.png │ ├── ustream-no-image.png │ └── wide-banner.png ├── index.html ├── robots.txt ├── scripts │ ├── badge.js │ ├── main.js │ └── utils.js └── styles │ ├── _colors.scss │ ├── _mixins.scss │ ├── badge.scss │ ├── fonts │ ├── OpenSans-Bold.ttf │ ├── OpenSans-Regular.ttf │ ├── arial.ttf │ ├── arialbd.ttf │ ├── badge-eye.ttf │ ├── icomoon.eot │ ├── icomoon.svg │ ├── icomoon.ttf │ └── icomoon.woff │ └── main.scss ├── bower.json ├── gruntfile.js ├── package.json └── test ├── index.html ├── lib ├── chai.js ├── expect.js └── mocha │ ├── mocha.css │ └── mocha.js ├── spec └── test.js └── test.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/.jshintrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/.htaccess -------------------------------------------------------------------------------- /app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/404.html -------------------------------------------------------------------------------- /app/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/apple-touch-icon.png -------------------------------------------------------------------------------- /app/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/favicon.png -------------------------------------------------------------------------------- /app/iframe-badge/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/iframe-badge/index.html -------------------------------------------------------------------------------- /app/image-badge/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/index.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Campaign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Campaign.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Config.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/CustomVariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/CustomVariable.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Event.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Exception.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Internals/ParameterHolder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Internals/ParameterHolder.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Internals/Request/EventRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Internals/Request/EventRequest.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Internals/Request/HttpRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Internals/Request/HttpRequest.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Internals/Request/ItemRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Internals/Request/ItemRequest.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Internals/Request/PageviewRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Internals/Request/PageviewRequest.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Internals/Request/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Internals/Request/Request.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Internals/Request/SocialInteractionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Internals/Request/SocialInteractionRequest.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Internals/Request/TransactionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Internals/Request/TransactionRequest.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Internals/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Internals/Util.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Internals/X10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Internals/X10.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Item.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Page.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Session.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/SocialInteraction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/SocialInteraction.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Tracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Tracker.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Transaction.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/GoogleAnalytics/Visitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/GoogleAnalytics/Visitor.php -------------------------------------------------------------------------------- /app/image-badge/php-ga/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/image-badge/php-ga/autoload.php -------------------------------------------------------------------------------- /app/images/goodgame-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/images/goodgame-logo.png -------------------------------------------------------------------------------- /app/images/goodgame-no-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/images/goodgame-no-image.png -------------------------------------------------------------------------------- /app/images/hitbox-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/images/hitbox-logo.png -------------------------------------------------------------------------------- /app/images/hitbox-no-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/images/hitbox-no-image.png -------------------------------------------------------------------------------- /app/images/justin-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/images/justin-logo.png -------------------------------------------------------------------------------- /app/images/justin-no-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/images/justin-no-image.png -------------------------------------------------------------------------------- /app/images/live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/images/live.png -------------------------------------------------------------------------------- /app/images/livestream-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/images/livestream-logo.png -------------------------------------------------------------------------------- /app/images/livestream-no-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/images/livestream-no-image.png -------------------------------------------------------------------------------- /app/images/streambadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/images/streambadge.png -------------------------------------------------------------------------------- /app/images/twitch-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/images/twitch-logo.png -------------------------------------------------------------------------------- /app/images/twitch-no-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/images/twitch-no-image.png -------------------------------------------------------------------------------- /app/images/ustream-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/images/ustream-logo.png -------------------------------------------------------------------------------- /app/images/ustream-no-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/images/ustream-no-image.png -------------------------------------------------------------------------------- /app/images/wide-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/images/wide-banner.png -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/index.html -------------------------------------------------------------------------------- /app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /app/scripts/badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/scripts/badge.js -------------------------------------------------------------------------------- /app/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/scripts/main.js -------------------------------------------------------------------------------- /app/scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/scripts/utils.js -------------------------------------------------------------------------------- /app/styles/_colors.scss: -------------------------------------------------------------------------------- 1 | $orange: #ff8800; -------------------------------------------------------------------------------- /app/styles/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/styles/_mixins.scss -------------------------------------------------------------------------------- /app/styles/badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/styles/badge.scss -------------------------------------------------------------------------------- /app/styles/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/styles/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /app/styles/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/styles/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /app/styles/fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/styles/fonts/arial.ttf -------------------------------------------------------------------------------- /app/styles/fonts/arialbd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/styles/fonts/arialbd.ttf -------------------------------------------------------------------------------- /app/styles/fonts/badge-eye.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/styles/fonts/badge-eye.ttf -------------------------------------------------------------------------------- /app/styles/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/styles/fonts/icomoon.eot -------------------------------------------------------------------------------- /app/styles/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/styles/fonts/icomoon.svg -------------------------------------------------------------------------------- /app/styles/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/styles/fonts/icomoon.ttf -------------------------------------------------------------------------------- /app/styles/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/styles/fonts/icomoon.woff -------------------------------------------------------------------------------- /app/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/app/styles/main.scss -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/bower.json -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/gruntfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/package.json -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/test/index.html -------------------------------------------------------------------------------- /test/lib/chai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/test/lib/chai.js -------------------------------------------------------------------------------- /test/lib/expect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/test/lib/expect.js -------------------------------------------------------------------------------- /test/lib/mocha/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/test/lib/mocha/mocha.css -------------------------------------------------------------------------------- /test/lib/mocha/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/test/lib/mocha/mocha.js -------------------------------------------------------------------------------- /test/spec/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/test/spec/test.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerberface/streambadge/HEAD/test/test.js --------------------------------------------------------------------------------