├── .gitignore ├── Gruntfile.js ├── README.md ├── my_binaryjs └── binaryjsServer.js ├── my_modules ├── socketHandler.js └── streams.js ├── my_mongodb ├── Dockerfile ├── backup.sh ├── config.sh ├── mongodb-keyfile ├── my_docker_mongo.sh ├── my_supervisord.conf └── run.sh ├── my_nginx └── nginx.conf.template ├── package.json ├── public ├── css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── broadcast.css │ ├── broadcast.min.css │ ├── index.css │ ├── index.min.css │ ├── jquery-ui.css │ ├── jquery-ui.min.css │ ├── themes │ ├── watcher.css │ └── watcher.min.css ├── imgs │ └── icons │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── apple-icon-precomposed.png │ │ ├── apple-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ └── ms-icon-70x70.png ├── index │ └── css │ │ ├── index.min.css │ │ └── watcher.min.css ├── jquery-ui │ ├── jquery-ui.css │ ├── jquery-ui.js │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ ├── jquery-ui.structure.css │ ├── jquery-ui.structure.min.css │ ├── jquery-ui.theme.css │ └── jquery-ui.theme.min.css ├── js │ ├── adapter.js │ ├── adapter.min.js │ ├── adapter.temasys.js │ ├── angular.js │ ├── angular.min.js │ ├── binary.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── broadcast.js │ ├── broadcast.min.js │ ├── es5-shim │ │ ├── CHANGES │ │ ├── CONTRIBUTORS.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── es5-sham.js │ │ ├── es5-sham.map │ │ ├── es5-sham.min.js │ │ ├── es5-shim.js │ │ ├── es5-shim.map │ │ ├── es5-shim.min.js │ │ ├── package.json │ │ ├── shims.json │ │ └── tests │ │ │ ├── helpers │ │ │ └── h-matchers.js │ │ │ ├── index.html │ │ │ ├── index.min.html │ │ │ ├── lib │ │ │ ├── jasmine-html.js │ │ │ ├── jasmine.css │ │ │ ├── jasmine.js │ │ │ ├── jasmine_favicon.png │ │ │ └── json2.js │ │ │ ├── native.html │ │ │ └── spec │ │ │ ├── helpers-jasmine.js │ │ │ ├── s-array.js │ │ │ ├── s-date.js │ │ │ ├── s-error.js │ │ │ ├── s-function.js │ │ │ ├── s-global.js │ │ │ ├── s-number.js │ │ │ ├── s-object.js │ │ │ ├── s-regexp.js │ │ │ └── s-string.js │ ├── fingerprint.js │ ├── html5shiv.min.js │ ├── index.js │ ├── index.min.js │ ├── jquery-ui-1.12.0 │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── external │ │ │ └── jquery │ │ │ │ └── jquery.js │ │ ├── images │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── index.html │ │ ├── jquery-ui.css │ │ ├── jquery-ui.js │ │ ├── jquery-ui.min.css │ │ ├── jquery-ui.min.js │ │ ├── jquery-ui.structure.css │ │ ├── jquery-ui.structure.min.css │ │ ├── jquery-ui.theme.css │ │ ├── jquery-ui.theme.min.css │ │ └── package.json │ ├── jquery-ui.js │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ ├── json3 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── json3.js │ │ │ └── json3.min.js │ │ └── package.json │ ├── respond.min.js │ ├── rtcClient.js │ ├── rtcClient.min.js │ ├── rtcRecorder.js │ ├── rtcRecorder.min.js │ ├── socket.io.js │ ├── watcher.js │ └── watcher.min.js ├── my_ng_templates │ ├── my_ng_broadcast.htm │ ├── my_ng_broadcast.html │ ├── my_ng_index.htm │ ├── my_ng_index.html │ ├── my_ng_watcher.htm │ └── my_ng_watcher.html └── user │ └── css │ └── broadcast.min.css ├── routes └── routes.js ├── run.sh ├── server.js ├── server_mobile_test.js └── views ├── base.jade ├── broadcast.jade ├── index.jade └── watcher.jade /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | my_binaryjs/videos/ 3 | backup/ 4 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/README.md -------------------------------------------------------------------------------- /my_binaryjs/binaryjsServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/my_binaryjs/binaryjsServer.js -------------------------------------------------------------------------------- /my_modules/socketHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/my_modules/socketHandler.js -------------------------------------------------------------------------------- /my_modules/streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/my_modules/streams.js -------------------------------------------------------------------------------- /my_mongodb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/my_mongodb/Dockerfile -------------------------------------------------------------------------------- /my_mongodb/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/my_mongodb/backup.sh -------------------------------------------------------------------------------- /my_mongodb/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/my_mongodb/config.sh -------------------------------------------------------------------------------- /my_mongodb/mongodb-keyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/my_mongodb/mongodb-keyfile -------------------------------------------------------------------------------- /my_mongodb/my_docker_mongo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/my_mongodb/my_docker_mongo.sh -------------------------------------------------------------------------------- /my_mongodb/my_supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/my_mongodb/my_supervisord.conf -------------------------------------------------------------------------------- /my_mongodb/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/my_mongodb/run.sh -------------------------------------------------------------------------------- /my_nginx/nginx.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/my_nginx/nginx.conf.template -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/package.json -------------------------------------------------------------------------------- /public/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/css/bootstrap.css -------------------------------------------------------------------------------- /public/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/css/bootstrap.css.map -------------------------------------------------------------------------------- /public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/css/broadcast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/css/broadcast.css -------------------------------------------------------------------------------- /public/css/broadcast.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/css/broadcast.min.css -------------------------------------------------------------------------------- /public/css/index.css: -------------------------------------------------------------------------------- 1 | /**/ -------------------------------------------------------------------------------- /public/css/index.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/css/jquery-ui.css -------------------------------------------------------------------------------- /public/css/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/css/jquery-ui.min.css -------------------------------------------------------------------------------- /public/css/themes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/css/themes -------------------------------------------------------------------------------- /public/css/watcher.css: -------------------------------------------------------------------------------- 1 | /**/ -------------------------------------------------------------------------------- /public/css/watcher.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/imgs/icons/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/android-icon-144x144.png -------------------------------------------------------------------------------- /public/imgs/icons/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/android-icon-192x192.png -------------------------------------------------------------------------------- /public/imgs/icons/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/android-icon-36x36.png -------------------------------------------------------------------------------- /public/imgs/icons/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/android-icon-48x48.png -------------------------------------------------------------------------------- /public/imgs/icons/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/android-icon-72x72.png -------------------------------------------------------------------------------- /public/imgs/icons/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/android-icon-96x96.png -------------------------------------------------------------------------------- /public/imgs/icons/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/apple-icon-114x114.png -------------------------------------------------------------------------------- /public/imgs/icons/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/apple-icon-120x120.png -------------------------------------------------------------------------------- /public/imgs/icons/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/apple-icon-144x144.png -------------------------------------------------------------------------------- /public/imgs/icons/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/apple-icon-152x152.png -------------------------------------------------------------------------------- /public/imgs/icons/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/apple-icon-180x180.png -------------------------------------------------------------------------------- /public/imgs/icons/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/apple-icon-57x57.png -------------------------------------------------------------------------------- /public/imgs/icons/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/apple-icon-60x60.png -------------------------------------------------------------------------------- /public/imgs/icons/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/apple-icon-72x72.png -------------------------------------------------------------------------------- /public/imgs/icons/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/apple-icon-76x76.png -------------------------------------------------------------------------------- /public/imgs/icons/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/apple-icon-precomposed.png -------------------------------------------------------------------------------- /public/imgs/icons/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/apple-icon.png -------------------------------------------------------------------------------- /public/imgs/icons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/browserconfig.xml -------------------------------------------------------------------------------- /public/imgs/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/favicon-16x16.png -------------------------------------------------------------------------------- /public/imgs/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/favicon-32x32.png -------------------------------------------------------------------------------- /public/imgs/icons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/favicon-96x96.png -------------------------------------------------------------------------------- /public/imgs/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/favicon.ico -------------------------------------------------------------------------------- /public/imgs/icons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/manifest.json -------------------------------------------------------------------------------- /public/imgs/icons/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/ms-icon-144x144.png -------------------------------------------------------------------------------- /public/imgs/icons/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/ms-icon-150x150.png -------------------------------------------------------------------------------- /public/imgs/icons/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/ms-icon-310x310.png -------------------------------------------------------------------------------- /public/imgs/icons/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/imgs/icons/ms-icon-70x70.png -------------------------------------------------------------------------------- /public/index/css/index.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index/css/watcher.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/jquery-ui/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/jquery-ui/jquery-ui.css -------------------------------------------------------------------------------- /public/jquery-ui/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/jquery-ui/jquery-ui.js -------------------------------------------------------------------------------- /public/jquery-ui/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/jquery-ui/jquery-ui.min.css -------------------------------------------------------------------------------- /public/jquery-ui/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/jquery-ui/jquery-ui.min.js -------------------------------------------------------------------------------- /public/jquery-ui/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/jquery-ui/jquery-ui.structure.css -------------------------------------------------------------------------------- /public/jquery-ui/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/jquery-ui/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /public/jquery-ui/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/jquery-ui/jquery-ui.theme.css -------------------------------------------------------------------------------- /public/jquery-ui/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/jquery-ui/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /public/js/adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/adapter.js -------------------------------------------------------------------------------- /public/js/adapter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/adapter.min.js -------------------------------------------------------------------------------- /public/js/adapter.temasys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/adapter.temasys.js -------------------------------------------------------------------------------- /public/js/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/angular.js -------------------------------------------------------------------------------- /public/js/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/angular.min.js -------------------------------------------------------------------------------- /public/js/binary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/binary.js -------------------------------------------------------------------------------- /public/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/bootstrap.js -------------------------------------------------------------------------------- /public/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/js/broadcast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/broadcast.js -------------------------------------------------------------------------------- /public/js/broadcast.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/broadcast.min.js -------------------------------------------------------------------------------- /public/js/es5-shim/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/CHANGES -------------------------------------------------------------------------------- /public/js/es5-shim/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/CONTRIBUTORS.md -------------------------------------------------------------------------------- /public/js/es5-shim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/LICENSE -------------------------------------------------------------------------------- /public/js/es5-shim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/Makefile -------------------------------------------------------------------------------- /public/js/es5-shim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/README.md -------------------------------------------------------------------------------- /public/js/es5-shim/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/bower.json -------------------------------------------------------------------------------- /public/js/es5-shim/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/component.json -------------------------------------------------------------------------------- /public/js/es5-shim/es5-sham.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/es5-sham.js -------------------------------------------------------------------------------- /public/js/es5-shim/es5-sham.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/es5-sham.map -------------------------------------------------------------------------------- /public/js/es5-shim/es5-sham.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/es5-sham.min.js -------------------------------------------------------------------------------- /public/js/es5-shim/es5-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/es5-shim.js -------------------------------------------------------------------------------- /public/js/es5-shim/es5-shim.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/es5-shim.map -------------------------------------------------------------------------------- /public/js/es5-shim/es5-shim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/es5-shim.min.js -------------------------------------------------------------------------------- /public/js/es5-shim/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/package.json -------------------------------------------------------------------------------- /public/js/es5-shim/shims.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/shims.json -------------------------------------------------------------------------------- /public/js/es5-shim/tests/helpers/h-matchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/helpers/h-matchers.js -------------------------------------------------------------------------------- /public/js/es5-shim/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/index.html -------------------------------------------------------------------------------- /public/js/es5-shim/tests/index.min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/index.min.html -------------------------------------------------------------------------------- /public/js/es5-shim/tests/lib/jasmine-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/lib/jasmine-html.js -------------------------------------------------------------------------------- /public/js/es5-shim/tests/lib/jasmine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/lib/jasmine.css -------------------------------------------------------------------------------- /public/js/es5-shim/tests/lib/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/lib/jasmine.js -------------------------------------------------------------------------------- /public/js/es5-shim/tests/lib/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/lib/jasmine_favicon.png -------------------------------------------------------------------------------- /public/js/es5-shim/tests/lib/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/lib/json2.js -------------------------------------------------------------------------------- /public/js/es5-shim/tests/native.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/native.html -------------------------------------------------------------------------------- /public/js/es5-shim/tests/spec/helpers-jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/spec/helpers-jasmine.js -------------------------------------------------------------------------------- /public/js/es5-shim/tests/spec/s-array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/spec/s-array.js -------------------------------------------------------------------------------- /public/js/es5-shim/tests/spec/s-date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/spec/s-date.js -------------------------------------------------------------------------------- /public/js/es5-shim/tests/spec/s-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/spec/s-error.js -------------------------------------------------------------------------------- /public/js/es5-shim/tests/spec/s-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/spec/s-function.js -------------------------------------------------------------------------------- /public/js/es5-shim/tests/spec/s-global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/spec/s-global.js -------------------------------------------------------------------------------- /public/js/es5-shim/tests/spec/s-number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/spec/s-number.js -------------------------------------------------------------------------------- /public/js/es5-shim/tests/spec/s-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/spec/s-object.js -------------------------------------------------------------------------------- /public/js/es5-shim/tests/spec/s-regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/spec/s-regexp.js -------------------------------------------------------------------------------- /public/js/es5-shim/tests/spec/s-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/es5-shim/tests/spec/s-string.js -------------------------------------------------------------------------------- /public/js/fingerprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/fingerprint.js -------------------------------------------------------------------------------- /public/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/html5shiv.min.js -------------------------------------------------------------------------------- /public/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/index.js -------------------------------------------------------------------------------- /public/js/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/index.min.js -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/AUTHORS.txt -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/LICENSE.txt -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/external/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/external/jquery/jquery.js -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/index.html -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/jquery-ui.css -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/jquery-ui.js -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/jquery-ui.min.css -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/jquery-ui.min.js -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/jquery-ui.structure.css -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/jquery-ui.theme.css -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /public/js/jquery-ui-1.12.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui-1.12.0/package.json -------------------------------------------------------------------------------- /public/js/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery-ui.js -------------------------------------------------------------------------------- /public/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery.js -------------------------------------------------------------------------------- /public/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery.min.js -------------------------------------------------------------------------------- /public/js/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/jquery.min.map -------------------------------------------------------------------------------- /public/js/json3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/json3/LICENSE -------------------------------------------------------------------------------- /public/js/json3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/json3/README.md -------------------------------------------------------------------------------- /public/js/json3/lib/json3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/json3/lib/json3.js -------------------------------------------------------------------------------- /public/js/json3/lib/json3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/json3/lib/json3.min.js -------------------------------------------------------------------------------- /public/js/json3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/json3/package.json -------------------------------------------------------------------------------- /public/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/respond.min.js -------------------------------------------------------------------------------- /public/js/rtcClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/rtcClient.js -------------------------------------------------------------------------------- /public/js/rtcClient.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/rtcClient.min.js -------------------------------------------------------------------------------- /public/js/rtcRecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/rtcRecorder.js -------------------------------------------------------------------------------- /public/js/rtcRecorder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/rtcRecorder.min.js -------------------------------------------------------------------------------- /public/js/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/socket.io.js -------------------------------------------------------------------------------- /public/js/watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/watcher.js -------------------------------------------------------------------------------- /public/js/watcher.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/public/js/watcher.min.js -------------------------------------------------------------------------------- /public/my_ng_templates/my_ng_broadcast.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/my_ng_templates/my_ng_broadcast.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/my_ng_templates/my_ng_index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/my_ng_templates/my_ng_index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/my_ng_templates/my_ng_watcher.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/my_ng_templates/my_ng_watcher.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/user/css/broadcast.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /routes/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/routes/routes.js -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/run.sh -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/server.js -------------------------------------------------------------------------------- /server_mobile_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/server_mobile_test.js -------------------------------------------------------------------------------- /views/base.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/views/base.jade -------------------------------------------------------------------------------- /views/broadcast.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/views/broadcast.jade -------------------------------------------------------------------------------- /views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/views/index.jade -------------------------------------------------------------------------------- /views/watcher.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gogistics/prjWebRTCDemo/HEAD/views/watcher.jade --------------------------------------------------------------------------------