├── .gitignore ├── .nvmrc ├── Cakefile ├── LICENSE ├── README.md ├── events ├── app.js ├── make-events-json.rb └── package.json ├── lib ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── vendor │ ├── bigbluebutton-api.js │ ├── bootstrap-flatly.min.css │ ├── bootstrap.min.css │ ├── bootstrap.min.js │ ├── jsSHA.js │ ├── mustache.js │ └── underscore-min.js ├── package.json ├── proxy ├── .gitignore ├── README.md ├── img │ ├── api-mate-server.png │ └── proxy-output.png ├── index.js ├── package-lock.json └── package.json └── src ├── css ├── api_mate.scss ├── application.scss └── redis_events.scss ├── js ├── api_mate.coffee ├── application.coffee ├── redis_events.coffee └── templates.coffee ├── pug_options.json └── views ├── _menu.pug ├── _menu_events.pug ├── _tab_config_xml.pug ├── api_mate.pug ├── application.pug └── redis_events.pug /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | **/#*# 3 | *.log 4 | node_modules/ 5 | .sass-cache/ 6 | lib/ 7 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v12.4.0 2 | -------------------------------------------------------------------------------- /Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/Cakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/README.md -------------------------------------------------------------------------------- /events/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/events/app.js -------------------------------------------------------------------------------- /events/make-events-json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/events/make-events-json.rb -------------------------------------------------------------------------------- /events/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/events/package.json -------------------------------------------------------------------------------- /lib/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/lib/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /lib/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/lib/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /lib/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/lib/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /lib/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/lib/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /lib/vendor/bigbluebutton-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/lib/vendor/bigbluebutton-api.js -------------------------------------------------------------------------------- /lib/vendor/bootstrap-flatly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/lib/vendor/bootstrap-flatly.min.css -------------------------------------------------------------------------------- /lib/vendor/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/lib/vendor/bootstrap.min.css -------------------------------------------------------------------------------- /lib/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/lib/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /lib/vendor/jsSHA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/lib/vendor/jsSHA.js -------------------------------------------------------------------------------- /lib/vendor/mustache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/lib/vendor/mustache.js -------------------------------------------------------------------------------- /lib/vendor/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/lib/vendor/underscore-min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/package.json -------------------------------------------------------------------------------- /proxy/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .nvmrc 3 | .target.json 4 | -------------------------------------------------------------------------------- /proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/proxy/README.md -------------------------------------------------------------------------------- /proxy/img/api-mate-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/proxy/img/api-mate-server.png -------------------------------------------------------------------------------- /proxy/img/proxy-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/proxy/img/proxy-output.png -------------------------------------------------------------------------------- /proxy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/proxy/index.js -------------------------------------------------------------------------------- /proxy/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/proxy/package-lock.json -------------------------------------------------------------------------------- /proxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/proxy/package.json -------------------------------------------------------------------------------- /src/css/api_mate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/src/css/api_mate.scss -------------------------------------------------------------------------------- /src/css/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/src/css/application.scss -------------------------------------------------------------------------------- /src/css/redis_events.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/src/css/redis_events.scss -------------------------------------------------------------------------------- /src/js/api_mate.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/src/js/api_mate.coffee -------------------------------------------------------------------------------- /src/js/application.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/src/js/application.coffee -------------------------------------------------------------------------------- /src/js/redis_events.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/src/js/redis_events.coffee -------------------------------------------------------------------------------- /src/js/templates.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/src/js/templates.coffee -------------------------------------------------------------------------------- /src/pug_options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/src/pug_options.json -------------------------------------------------------------------------------- /src/views/_menu.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/src/views/_menu.pug -------------------------------------------------------------------------------- /src/views/_menu_events.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/src/views/_menu_events.pug -------------------------------------------------------------------------------- /src/views/_tab_config_xml.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/src/views/_tab_config_xml.pug -------------------------------------------------------------------------------- /src/views/api_mate.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/src/views/api_mate.pug -------------------------------------------------------------------------------- /src/views/application.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/src/views/application.pug -------------------------------------------------------------------------------- /src/views/redis_events.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mconf/api-mate/HEAD/src/views/redis_events.pug --------------------------------------------------------------------------------