├── .gitignore ├── README.markdown ├── activations.php ├── appcast-combined.php ├── appcast.php ├── application.php ├── css ├── print.css ├── screen.css └── yuiapp.css ├── download.php ├── fastspring.php ├── favicon.ico ├── feedback-view.php ├── feedback.php ├── inc ├── footer.inc.php ├── header.inc.php └── nav.inc.php ├── includes ├── .htaccess ├── Postmark.php ├── class.args.php ├── class.auth.php ├── class.config.sample.php ├── class.database.php ├── class.dbobject.php ├── class.dbsession.php ├── class.download.php ├── class.engine.php ├── class.engineaquaticprime.php ├── class.enginemd5.php ├── class.error.php ├── class.gd.php ├── class.googlechart.php ├── class.license.php ├── class.loop.php ├── class.objects.php ├── class.pagepref.php ├── class.pager.php ├── class.paypal.php ├── class.rss.php ├── class.s3.php ├── class.tag.php ├── functions.inc.php ├── markdown.inc.php └── master.inc.php ├── index.php ├── ipn.php ├── js ├── adapters │ ├── mootools-adapter.js │ ├── mootools-adapter.src.js │ ├── prototype-adapter.js │ └── prototype-adapter.src.js ├── highcharts.js ├── highcharts.src.js ├── modules │ ├── exporting.js │ └── exporting.src.js └── themes │ ├── dark-blue.js │ ├── dark-green.js │ ├── gray.js │ └── grid.js ├── license-inapp.php ├── license.php ├── login.php ├── logout.php ├── missing.php ├── mupromo.php ├── mysql.sql ├── of.php ├── order-new.php ├── order.php ├── orders.php ├── rapportive.php ├── return.php ├── settings.php ├── stats.php ├── tickets-app-summary.php ├── tickets-milestone-new.php ├── tickets-milestone.php ├── tickets-milestones.php ├── tickets-new.php ├── tickets-tickets.php ├── tickets-view.php ├── tickets.php ├── tweet-cron.php ├── tweets.php ├── user-edit.php ├── user-new.php ├── users.php ├── version-edit.php ├── version-new.php └── versions.php /.gitignore: -------------------------------------------------------------------------------- 1 | class.config.php 2 | 3 | .DS_Store -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/README.markdown -------------------------------------------------------------------------------- /activations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/activations.php -------------------------------------------------------------------------------- /appcast-combined.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/appcast-combined.php -------------------------------------------------------------------------------- /appcast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/appcast.php -------------------------------------------------------------------------------- /application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/application.php -------------------------------------------------------------------------------- /css/print.css: -------------------------------------------------------------------------------- 1 | /* CSS Print styles go here */ -------------------------------------------------------------------------------- /css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/css/screen.css -------------------------------------------------------------------------------- /css/yuiapp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/css/yuiapp.css -------------------------------------------------------------------------------- /download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/download.php -------------------------------------------------------------------------------- /fastspring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/fastspring.php -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/favicon.ico -------------------------------------------------------------------------------- /feedback-view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/feedback-view.php -------------------------------------------------------------------------------- /feedback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/feedback.php -------------------------------------------------------------------------------- /inc/footer.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/inc/footer.inc.php -------------------------------------------------------------------------------- /inc/header.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/inc/header.inc.php -------------------------------------------------------------------------------- /inc/nav.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/inc/nav.inc.php -------------------------------------------------------------------------------- /includes/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/.htaccess -------------------------------------------------------------------------------- /includes/Postmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/Postmark.php -------------------------------------------------------------------------------- /includes/class.args.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.args.php -------------------------------------------------------------------------------- /includes/class.auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.auth.php -------------------------------------------------------------------------------- /includes/class.config.sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.config.sample.php -------------------------------------------------------------------------------- /includes/class.database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.database.php -------------------------------------------------------------------------------- /includes/class.dbobject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.dbobject.php -------------------------------------------------------------------------------- /includes/class.dbsession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.dbsession.php -------------------------------------------------------------------------------- /includes/class.download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.download.php -------------------------------------------------------------------------------- /includes/class.engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.engine.php -------------------------------------------------------------------------------- /includes/class.engineaquaticprime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.engineaquaticprime.php -------------------------------------------------------------------------------- /includes/class.enginemd5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.enginemd5.php -------------------------------------------------------------------------------- /includes/class.error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.error.php -------------------------------------------------------------------------------- /includes/class.gd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.gd.php -------------------------------------------------------------------------------- /includes/class.googlechart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.googlechart.php -------------------------------------------------------------------------------- /includes/class.license.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.license.php -------------------------------------------------------------------------------- /includes/class.loop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.loop.php -------------------------------------------------------------------------------- /includes/class.objects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.objects.php -------------------------------------------------------------------------------- /includes/class.pagepref.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.pagepref.php -------------------------------------------------------------------------------- /includes/class.pager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.pager.php -------------------------------------------------------------------------------- /includes/class.paypal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.paypal.php -------------------------------------------------------------------------------- /includes/class.rss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.rss.php -------------------------------------------------------------------------------- /includes/class.s3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.s3.php -------------------------------------------------------------------------------- /includes/class.tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/class.tag.php -------------------------------------------------------------------------------- /includes/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/functions.inc.php -------------------------------------------------------------------------------- /includes/markdown.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/markdown.inc.php -------------------------------------------------------------------------------- /includes/master.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/includes/master.inc.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/index.php -------------------------------------------------------------------------------- /ipn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/ipn.php -------------------------------------------------------------------------------- /js/adapters/mootools-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/js/adapters/mootools-adapter.js -------------------------------------------------------------------------------- /js/adapters/mootools-adapter.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/js/adapters/mootools-adapter.src.js -------------------------------------------------------------------------------- /js/adapters/prototype-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/js/adapters/prototype-adapter.js -------------------------------------------------------------------------------- /js/adapters/prototype-adapter.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/js/adapters/prototype-adapter.src.js -------------------------------------------------------------------------------- /js/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/js/highcharts.js -------------------------------------------------------------------------------- /js/highcharts.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/js/highcharts.src.js -------------------------------------------------------------------------------- /js/modules/exporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/js/modules/exporting.js -------------------------------------------------------------------------------- /js/modules/exporting.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/js/modules/exporting.src.js -------------------------------------------------------------------------------- /js/themes/dark-blue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/js/themes/dark-blue.js -------------------------------------------------------------------------------- /js/themes/dark-green.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/js/themes/dark-green.js -------------------------------------------------------------------------------- /js/themes/gray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/js/themes/gray.js -------------------------------------------------------------------------------- /js/themes/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/js/themes/grid.js -------------------------------------------------------------------------------- /license-inapp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/license-inapp.php -------------------------------------------------------------------------------- /license.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/license.php -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/login.php -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/logout.php -------------------------------------------------------------------------------- /missing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/missing.php -------------------------------------------------------------------------------- /mupromo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/mupromo.php -------------------------------------------------------------------------------- /mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/mysql.sql -------------------------------------------------------------------------------- /of.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/of.php -------------------------------------------------------------------------------- /order-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/order-new.php -------------------------------------------------------------------------------- /order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/order.php -------------------------------------------------------------------------------- /orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/orders.php -------------------------------------------------------------------------------- /rapportive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/rapportive.php -------------------------------------------------------------------------------- /return.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/return.php -------------------------------------------------------------------------------- /settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/settings.php -------------------------------------------------------------------------------- /stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/stats.php -------------------------------------------------------------------------------- /tickets-app-summary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/tickets-app-summary.php -------------------------------------------------------------------------------- /tickets-milestone-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/tickets-milestone-new.php -------------------------------------------------------------------------------- /tickets-milestone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/tickets-milestone.php -------------------------------------------------------------------------------- /tickets-milestones.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/tickets-milestones.php -------------------------------------------------------------------------------- /tickets-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/tickets-new.php -------------------------------------------------------------------------------- /tickets-tickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/tickets-tickets.php -------------------------------------------------------------------------------- /tickets-view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/tickets-view.php -------------------------------------------------------------------------------- /tickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/tickets.php -------------------------------------------------------------------------------- /tweet-cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/tweet-cron.php -------------------------------------------------------------------------------- /tweets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/tweets.php -------------------------------------------------------------------------------- /user-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/user-edit.php -------------------------------------------------------------------------------- /user-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/user-new.php -------------------------------------------------------------------------------- /users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/users.php -------------------------------------------------------------------------------- /version-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/version-edit.php -------------------------------------------------------------------------------- /version-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/version-new.php -------------------------------------------------------------------------------- /versions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerhall/Shine/HEAD/versions.php --------------------------------------------------------------------------------