├── .buildpacks ├── .gitignore ├── .yardopts ├── Capfile ├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── fonts │ │ ├── flaticon.eot │ │ ├── flaticon.svg │ │ ├── flaticon.ttf │ │ ├── flaticon.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-regular.woff2 │ │ ├── vjs.eot │ │ ├── vjs.svg │ │ ├── vjs.ttf │ │ └── vjs.woff │ ├── images │ │ ├── .keep │ │ └── header.jpg │ ├── javascripts │ │ ├── application.js │ │ ├── bootstrap.js │ │ ├── jquery.min.js │ │ ├── quotes.coffee │ │ ├── transcriptions.coffee │ │ ├── video.dev.js │ │ ├── video.js │ │ ├── video_turbo_links.coffee │ │ ├── videojs.hotkeys.js │ │ ├── vjs.youtube.js │ │ └── welcome.coffee │ └── stylesheets │ │ ├── application.css │ │ ├── bootsrap_paper.css │ │ ├── quotes.scss │ │ ├── slider.css │ │ ├── transcriptions.scss │ │ ├── video-js.css │ │ ├── videos.css │ │ └── welcome.css ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── quotes_controller.rb │ ├── sessions_controller.rb │ ├── transcriptions_controller.rb │ ├── videos_controller.rb │ └── welcome_controller.rb ├── helpers │ ├── application_helper.rb │ ├── quotes_helper.rb │ ├── transcriptions_helper.rb │ ├── videos_helper.rb │ └── welcome_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── concerns │ │ └── .keep │ ├── line.rb │ ├── quote.rb │ ├── transcription.rb │ ├── user.rb │ ├── video.rb │ └── word.rb └── views │ ├── layouts │ └── application.html.erb │ ├── quotes │ └── _quote_export.html.erb │ ├── shared │ └── _errors.html.erb │ ├── videos │ ├── index.html.erb │ ├── new.html.erb │ ├── show.html.erb │ └── show_js │ │ ├── export.js.erb │ │ ├── hypertranscript.js.erb │ │ ├── preview.js.erb │ │ ├── search.js.erb │ │ └── select.js.erb │ └── welcome │ └── index.html.erb ├── bin ├── bundle ├── rails ├── rake ├── setup └── spring ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── deploy.rb ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── omniauth.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── routes.rb ├── secrets.yml ├── unicorn.rb └── yt.rb ├── db ├── migrate │ ├── 20150720140900_create_users.rb │ ├── 20150720163134_create_videos.rb │ ├── 20150722103126_add_attachment_media_to_videos.rb │ ├── 20150723163706_add_is_processed_to_video.rb │ ├── 20150724112837_create_transcriptions.rb │ ├── 20150724112955_create_lines.rb │ ├── 20150724113020_create_words.rb │ ├── 20150729151715_create_quotes.rb │ ├── 20150731105012_change.rb │ ├── 20150731165604_add_author_to_quotes.rb │ ├── 20150803093908_add_attachment_snippet_to_quotes.rb │ └── 20150803185535_add_link_to_quotes.rb ├── schema.rb └── seeds.rb ├── deploy.sh ├── doc ├── ApplicationController.html ├── ApplicationHelper.html ├── HypertranscriptConverter.html ├── Line.html ├── Quote.html ├── QuotesController.html ├── QuotesHelper.html ├── SessionsController.html ├── SpokenDataAPI.html ├── Transcription.html ├── TranscriptionsController.html ├── TranscriptionsHelper.html ├── User.html ├── Video.html ├── VideosController.html ├── VideosHelper.html ├── WelcomeController.html ├── WelcomeHelper.html ├── Word.html ├── _index.html ├── class_list.html ├── css │ ├── common.css │ ├── full_list.css │ └── style.css ├── file.README.html ├── file_list.html ├── frames.html ├── index.html ├── js │ ├── app.js │ ├── full_list.js │ └── jquery.js ├── method_list.html └── top-level-namespace.html ├── docs ├── demo │ ├── interactive_quotes.html │ ├── static │ │ ├── clips │ │ │ ├── 1456053059753HTML_export.mp4 │ │ │ ├── 1456055516418HTML_export.mp4 │ │ │ ├── 1456058127579HTML_export.mp4 │ │ │ ├── 1456058336115HTML_export.mp4 │ │ │ ├── 1456060068749HTML_export.mp4 │ │ │ └── 1456060162726HTML_export.mp4 │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ ├── style-print.css │ │ │ └── style.css │ │ └── img │ │ │ └── logo.png │ └── static_quotes.html ├── fancybox │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── README.md │ ├── demo │ │ ├── 1_b.jpg │ │ ├── 1_s.jpg │ │ ├── 2_b.jpg │ │ ├── 2_s.jpg │ │ ├── 3_b.jpg │ │ ├── 3_s.jpg │ │ ├── 4_b.jpg │ │ ├── 4_s.jpg │ │ ├── 5_b.jpg │ │ ├── 5_s.jpg │ │ ├── ajax.txt │ │ ├── iframe.html │ │ └── index.html │ ├── lib │ │ ├── jquery-1.10.1.min.js │ │ ├── jquery-1.9.0.min.js │ │ └── jquery.mousewheel-3.0.6.pack.js │ ├── source │ │ ├── blank.gif │ │ ├── fancybox_loading.gif │ │ ├── fancybox_loading@2x.gif │ │ ├── fancybox_overlay.png │ │ ├── fancybox_sprite.png │ │ ├── fancybox_sprite@2x.png │ │ ├── helpers │ │ │ ├── fancybox_buttons.png │ │ │ ├── jquery.fancybox-buttons.css │ │ │ ├── jquery.fancybox-buttons.js │ │ │ ├── jquery.fancybox-media.js │ │ │ ├── jquery.fancybox-thumbs.css │ │ │ └── jquery.fancybox-thumbs.js │ │ ├── jquery.fancybox.css │ │ ├── jquery.fancybox.js │ │ └── jquery.fancybox.pack.js │ └── sprite.psd ├── images │ ├── arrow-down.png │ ├── close.png │ ├── loading.gif │ ├── next.png │ ├── octocat-small.png │ └── prev.png ├── img_userManual │ ├── Screen Shot 2015-08-26 at 21.50.56.png │ ├── edit_quote.png │ ├── export_code.png │ ├── export_dropdown_w3.png │ ├── export_quote_w3.png │ ├── home.png │ ├── hypertranscript.png │ ├── login.png │ ├── preview.png │ ├── preview_dropdown.png │ ├── search.png │ ├── select.png │ ├── upload.png │ └── videos.png ├── index.html ├── javascripts │ ├── quickQuote.js │ └── scale.fix.js ├── media │ ├── snippet_54.mp4 │ └── snippet_54.mp4.mov ├── params.json ├── stylesheets │ ├── github-light.css │ ├── styles.css │ └── video-quote.css └── userManual.html ├── first_time_deploy.sh ├── lib ├── assets │ └── .keep ├── hypertranscriptConverter.rb ├── spokenDataAPI.rb └── tasks │ └── .keep ├── log └── .keep ├── new_deploy.sh ├── public ├── 404.html ├── 422.html ├── 500.html ├── assets │ ├── .sprockets-manifest-e672e8cc9159b615a63226c70765a5b8.json │ ├── application-1faa8df9672df84774a9177ef1f413faa8cdff21e1e209510a335e16b3e2f4ae.js │ ├── application-82eb49bf27eb8e7de8454cdc2f6c0116260c93c5b1fa4511c14415a6d3f5732e.css │ ├── flaticon.eot │ ├── flaticon.svg │ ├── flaticon.ttf │ ├── flaticon.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ ├── header.jpg │ ├── jquery-ui │ │ ├── ui-bg_flat_0_aaaaaa_40x100-9a8492a580bf85d3e98ae8861fbd45567e5a1f83eeafcf9574da0399d5f602ab.png │ │ ├── ui-bg_flat_75_ffffff_40x100-39ab7ccd9f4e82579da78a9241265df288d8eb65dbbd7cf48aed2d0129887df5.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400-691597e8a40a891ea94d3589976ecfc33e6145c49422443b00ac2b5a0022964c.png │ │ ├── ui-bg_glass_65_ffffff_1x400-f0e6cd91b837d5c5644d026e5ffeccd907953317cd5c0f689901733afda260b2.png │ │ ├── ui-bg_glass_75_dadada_1x400-c108f5cbf2dd9ec07a26530695ddd95e1664597ce6c056ae44c162cc2e28cec4.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400-ddf5dd4e0ef2b185e8bb0af7b6e90ebe74a84384cb4700658e76e754c8bfe550.png │ │ ├── ui-bg_glass_95_fef1ec_1x400-f6f1c1bedf1a0f37cfef81d12f5f012869d1ee7c984775a569827a1784d34f5c.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100-54270656df079c4da5182629a080fc633b6f84b87985eb016d25a560e2c38d4a.png │ │ ├── ui-icons_222222_256x240-57adb0d65f4e91dacfee975d9574422bee7486c8a182d60133728c672f2cdbbc.png │ │ ├── ui-icons_2e83ff_256x240-20f8c6667afc48aa433ee9eb6d8a0584bdbd6b4a4a9091ff1e6b3adb31e63bd9.png │ │ ├── ui-icons_454545_256x240-07460e843c3e59aaadbb34231e699e856a2980753c7a47b66447da5d9f93fb7f.png │ │ ├── ui-icons_888888_256x240-ea2e29625de3463465e93b002b065f5833e05b97f7a052b1c141e754d62e1a8b.png │ │ └── ui-icons_cd0a0a_256x240-1e32c6dbf5d3fd342f27a78aa881550d6412aa207f48468724a6a15402b6041b.png │ ├── video-js.swf │ ├── vjs.eot │ ├── vjs.svg │ ├── vjs.ttf │ └── vjswoff ├── favicon.ico └── robots.txt ├── script ├── collectd │ ├── collectd-runner.rb │ └── role │ │ ├── examples │ │ ├── example_db_query.rb │ │ └── example_simple.rb │ │ └── web_tools │ │ ├── global_worker_stats.rb │ │ └── resque_jobs_processed.rb └── rubber ├── test.rb ├── test ├── controllers │ ├── .keep │ ├── quotes_controller_test.rb │ ├── transcriptions_controller_test.rb │ ├── videos_controller_test.rb │ └── welcome_controller_test.rb ├── fixtures │ ├── .keep │ ├── lines.yml │ ├── quotes.yml │ ├── transcriptions.yml │ ├── users.yml │ ├── videos.yml │ └── words.yml ├── helpers │ └── .keep ├── integration │ ├── .keep │ └── user_flow_test.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── line_test.rb │ ├── quote_test.rb │ ├── transcription_test.rb │ ├── user_test.rb │ ├── video_test.rb │ └── word_test.rb ├── selenium │ ├── selenium_test_video_upload.rb │ └── test_video.mp4 ├── srt_test_file │ └── Kyle_captions.srt └── test_helper.rb ├── vendor └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep └── video_test_results.md /.buildpacks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/.buildpacks -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/.gitignore -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/.yardopts -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/Capfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec rails server webrick -p $PORT -e $RACK_ENV 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/fonts/flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/fonts/flaticon.eot -------------------------------------------------------------------------------- /app/assets/fonts/flaticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/fonts/flaticon.svg -------------------------------------------------------------------------------- /app/assets/fonts/flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/fonts/flaticon.ttf -------------------------------------------------------------------------------- /app/assets/fonts/flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/fonts/flaticon.woff -------------------------------------------------------------------------------- /app/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /app/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /app/assets/fonts/vjs.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/fonts/vjs.eot -------------------------------------------------------------------------------- /app/assets/fonts/vjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/fonts/vjs.svg -------------------------------------------------------------------------------- /app/assets/fonts/vjs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/fonts/vjs.ttf -------------------------------------------------------------------------------- /app/assets/fonts/vjs.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/fonts/vjs.woff -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/images/header.jpg -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/javascripts/bootstrap.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/javascripts/jquery.min.js -------------------------------------------------------------------------------- /app/assets/javascripts/quotes.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/javascripts/quotes.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/transcriptions.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/javascripts/transcriptions.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/video.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/javascripts/video.dev.js -------------------------------------------------------------------------------- /app/assets/javascripts/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/javascripts/video.js -------------------------------------------------------------------------------- /app/assets/javascripts/video_turbo_links.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/javascripts/video_turbo_links.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/videojs.hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/javascripts/videojs.hotkeys.js -------------------------------------------------------------------------------- /app/assets/javascripts/vjs.youtube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/javascripts/vjs.youtube.js -------------------------------------------------------------------------------- /app/assets/javascripts/welcome.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/javascripts/welcome.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/bootsrap_paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/stylesheets/bootsrap_paper.css -------------------------------------------------------------------------------- /app/assets/stylesheets/quotes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/stylesheets/quotes.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/stylesheets/slider.css -------------------------------------------------------------------------------- /app/assets/stylesheets/transcriptions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/stylesheets/transcriptions.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/video-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/stylesheets/video-js.css -------------------------------------------------------------------------------- /app/assets/stylesheets/videos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/stylesheets/videos.css -------------------------------------------------------------------------------- /app/assets/stylesheets/welcome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/assets/stylesheets/welcome.css -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/quotes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/controllers/quotes_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/transcriptions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/controllers/transcriptions_controller.rb -------------------------------------------------------------------------------- /app/controllers/videos_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/controllers/videos_controller.rb -------------------------------------------------------------------------------- /app/controllers/welcome_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/controllers/welcome_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/quotes_helper.rb: -------------------------------------------------------------------------------- 1 | module QuotesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/transcriptions_helper.rb: -------------------------------------------------------------------------------- 1 | module TranscriptionsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/videos_helper.rb: -------------------------------------------------------------------------------- 1 | module VideosHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/welcome_helper.rb: -------------------------------------------------------------------------------- 1 | module WelcomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/models/line.rb -------------------------------------------------------------------------------- /app/models/quote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/models/quote.rb -------------------------------------------------------------------------------- /app/models/transcription.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/models/transcription.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/video.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/models/video.rb -------------------------------------------------------------------------------- /app/models/word.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/models/word.rb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/quotes/_quote_export.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/views/quotes/_quote_export.html.erb -------------------------------------------------------------------------------- /app/views/shared/_errors.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/views/shared/_errors.html.erb -------------------------------------------------------------------------------- /app/views/videos/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/views/videos/index.html.erb -------------------------------------------------------------------------------- /app/views/videos/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/views/videos/new.html.erb -------------------------------------------------------------------------------- /app/views/videos/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/views/videos/show.html.erb -------------------------------------------------------------------------------- /app/views/videos/show_js/export.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/views/videos/show_js/export.js.erb -------------------------------------------------------------------------------- /app/views/videos/show_js/hypertranscript.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/views/videos/show_js/hypertranscript.js.erb -------------------------------------------------------------------------------- /app/views/videos/show_js/preview.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/views/videos/show_js/preview.js.erb -------------------------------------------------------------------------------- /app/views/videos/show_js/search.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/views/videos/show_js/search.js.erb -------------------------------------------------------------------------------- /app/views/videos/show_js/select.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/views/videos/show_js/select.js.erb -------------------------------------------------------------------------------- /app/views/welcome/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/app/views/welcome/index.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/bin/spring -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/initializers/omniauth.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/unicorn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/unicorn.rb -------------------------------------------------------------------------------- /config/yt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/config/yt.rb -------------------------------------------------------------------------------- /db/migrate/20150720140900_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/db/migrate/20150720140900_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20150720163134_create_videos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/db/migrate/20150720163134_create_videos.rb -------------------------------------------------------------------------------- /db/migrate/20150722103126_add_attachment_media_to_videos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/db/migrate/20150722103126_add_attachment_media_to_videos.rb -------------------------------------------------------------------------------- /db/migrate/20150723163706_add_is_processed_to_video.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/db/migrate/20150723163706_add_is_processed_to_video.rb -------------------------------------------------------------------------------- /db/migrate/20150724112837_create_transcriptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/db/migrate/20150724112837_create_transcriptions.rb -------------------------------------------------------------------------------- /db/migrate/20150724112955_create_lines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/db/migrate/20150724112955_create_lines.rb -------------------------------------------------------------------------------- /db/migrate/20150724113020_create_words.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/db/migrate/20150724113020_create_words.rb -------------------------------------------------------------------------------- /db/migrate/20150729151715_create_quotes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/db/migrate/20150729151715_create_quotes.rb -------------------------------------------------------------------------------- /db/migrate/20150731105012_change.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/db/migrate/20150731105012_change.rb -------------------------------------------------------------------------------- /db/migrate/20150731165604_add_author_to_quotes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/db/migrate/20150731165604_add_author_to_quotes.rb -------------------------------------------------------------------------------- /db/migrate/20150803093908_add_attachment_snippet_to_quotes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/db/migrate/20150803093908_add_attachment_snippet_to_quotes.rb -------------------------------------------------------------------------------- /db/migrate/20150803185535_add_link_to_quotes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/db/migrate/20150803185535_add_link_to_quotes.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/deploy.sh -------------------------------------------------------------------------------- /doc/ApplicationController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/ApplicationController.html -------------------------------------------------------------------------------- /doc/ApplicationHelper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/ApplicationHelper.html -------------------------------------------------------------------------------- /doc/HypertranscriptConverter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/HypertranscriptConverter.html -------------------------------------------------------------------------------- /doc/Line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/Line.html -------------------------------------------------------------------------------- /doc/Quote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/Quote.html -------------------------------------------------------------------------------- /doc/QuotesController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/QuotesController.html -------------------------------------------------------------------------------- /doc/QuotesHelper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/QuotesHelper.html -------------------------------------------------------------------------------- /doc/SessionsController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/SessionsController.html -------------------------------------------------------------------------------- /doc/SpokenDataAPI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/SpokenDataAPI.html -------------------------------------------------------------------------------- /doc/Transcription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/Transcription.html -------------------------------------------------------------------------------- /doc/TranscriptionsController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/TranscriptionsController.html -------------------------------------------------------------------------------- /doc/TranscriptionsHelper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/TranscriptionsHelper.html -------------------------------------------------------------------------------- /doc/User.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/User.html -------------------------------------------------------------------------------- /doc/Video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/Video.html -------------------------------------------------------------------------------- /doc/VideosController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/VideosController.html -------------------------------------------------------------------------------- /doc/VideosHelper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/VideosHelper.html -------------------------------------------------------------------------------- /doc/WelcomeController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/WelcomeController.html -------------------------------------------------------------------------------- /doc/WelcomeHelper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/WelcomeHelper.html -------------------------------------------------------------------------------- /doc/Word.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/Word.html -------------------------------------------------------------------------------- /doc/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/_index.html -------------------------------------------------------------------------------- /doc/class_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/class_list.html -------------------------------------------------------------------------------- /doc/css/common.css: -------------------------------------------------------------------------------- 1 | /* Override this file with custom rules */ -------------------------------------------------------------------------------- /doc/css/full_list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/css/full_list.css -------------------------------------------------------------------------------- /doc/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/css/style.css -------------------------------------------------------------------------------- /doc/file.README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/file.README.html -------------------------------------------------------------------------------- /doc/file_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/file_list.html -------------------------------------------------------------------------------- /doc/frames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/frames.html -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/js/app.js -------------------------------------------------------------------------------- /doc/js/full_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/js/full_list.js -------------------------------------------------------------------------------- /doc/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/js/jquery.js -------------------------------------------------------------------------------- /doc/method_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/method_list.html -------------------------------------------------------------------------------- /doc/top-level-namespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/doc/top-level-namespace.html -------------------------------------------------------------------------------- /docs/demo/interactive_quotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/demo/interactive_quotes.html -------------------------------------------------------------------------------- /docs/demo/static/clips/1456053059753HTML_export.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/demo/static/clips/1456053059753HTML_export.mp4 -------------------------------------------------------------------------------- /docs/demo/static/clips/1456055516418HTML_export.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/demo/static/clips/1456055516418HTML_export.mp4 -------------------------------------------------------------------------------- /docs/demo/static/clips/1456058127579HTML_export.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/demo/static/clips/1456058127579HTML_export.mp4 -------------------------------------------------------------------------------- /docs/demo/static/clips/1456058336115HTML_export.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/demo/static/clips/1456058336115HTML_export.mp4 -------------------------------------------------------------------------------- /docs/demo/static/clips/1456060068749HTML_export.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/demo/static/clips/1456060068749HTML_export.mp4 -------------------------------------------------------------------------------- /docs/demo/static/clips/1456060162726HTML_export.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/demo/static/clips/1456060162726HTML_export.mp4 -------------------------------------------------------------------------------- /docs/demo/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/demo/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/demo/static/css/style-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/demo/static/css/style-print.css -------------------------------------------------------------------------------- /docs/demo/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/demo/static/css/style.css -------------------------------------------------------------------------------- /docs/demo/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/demo/static/img/logo.png -------------------------------------------------------------------------------- /docs/demo/static_quotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/demo/static_quotes.html -------------------------------------------------------------------------------- /docs/fancybox/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/.gitattributes -------------------------------------------------------------------------------- /docs/fancybox/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/CHANGELOG.md -------------------------------------------------------------------------------- /docs/fancybox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/README.md -------------------------------------------------------------------------------- /docs/fancybox/demo/1_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/demo/1_b.jpg -------------------------------------------------------------------------------- /docs/fancybox/demo/1_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/demo/1_s.jpg -------------------------------------------------------------------------------- /docs/fancybox/demo/2_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/demo/2_b.jpg -------------------------------------------------------------------------------- /docs/fancybox/demo/2_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/demo/2_s.jpg -------------------------------------------------------------------------------- /docs/fancybox/demo/3_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/demo/3_b.jpg -------------------------------------------------------------------------------- /docs/fancybox/demo/3_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/demo/3_s.jpg -------------------------------------------------------------------------------- /docs/fancybox/demo/4_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/demo/4_b.jpg -------------------------------------------------------------------------------- /docs/fancybox/demo/4_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/demo/4_s.jpg -------------------------------------------------------------------------------- /docs/fancybox/demo/5_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/demo/5_b.jpg -------------------------------------------------------------------------------- /docs/fancybox/demo/5_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/demo/5_s.jpg -------------------------------------------------------------------------------- /docs/fancybox/demo/ajax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/demo/ajax.txt -------------------------------------------------------------------------------- /docs/fancybox/demo/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/demo/iframe.html -------------------------------------------------------------------------------- /docs/fancybox/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/demo/index.html -------------------------------------------------------------------------------- /docs/fancybox/lib/jquery-1.10.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/lib/jquery-1.10.1.min.js -------------------------------------------------------------------------------- /docs/fancybox/lib/jquery-1.9.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/lib/jquery-1.9.0.min.js -------------------------------------------------------------------------------- /docs/fancybox/lib/jquery.mousewheel-3.0.6.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/lib/jquery.mousewheel-3.0.6.pack.js -------------------------------------------------------------------------------- /docs/fancybox/source/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/source/blank.gif -------------------------------------------------------------------------------- /docs/fancybox/source/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/source/fancybox_loading.gif -------------------------------------------------------------------------------- /docs/fancybox/source/fancybox_loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/source/fancybox_loading@2x.gif -------------------------------------------------------------------------------- /docs/fancybox/source/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/source/fancybox_overlay.png -------------------------------------------------------------------------------- /docs/fancybox/source/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/source/fancybox_sprite.png -------------------------------------------------------------------------------- /docs/fancybox/source/fancybox_sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/source/fancybox_sprite@2x.png -------------------------------------------------------------------------------- /docs/fancybox/source/helpers/fancybox_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/source/helpers/fancybox_buttons.png -------------------------------------------------------------------------------- /docs/fancybox/source/helpers/jquery.fancybox-buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/source/helpers/jquery.fancybox-buttons.css -------------------------------------------------------------------------------- /docs/fancybox/source/helpers/jquery.fancybox-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/source/helpers/jquery.fancybox-buttons.js -------------------------------------------------------------------------------- /docs/fancybox/source/helpers/jquery.fancybox-media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/source/helpers/jquery.fancybox-media.js -------------------------------------------------------------------------------- /docs/fancybox/source/helpers/jquery.fancybox-thumbs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/source/helpers/jquery.fancybox-thumbs.css -------------------------------------------------------------------------------- /docs/fancybox/source/helpers/jquery.fancybox-thumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/source/helpers/jquery.fancybox-thumbs.js -------------------------------------------------------------------------------- /docs/fancybox/source/jquery.fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/source/jquery.fancybox.css -------------------------------------------------------------------------------- /docs/fancybox/source/jquery.fancybox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/source/jquery.fancybox.js -------------------------------------------------------------------------------- /docs/fancybox/source/jquery.fancybox.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/source/jquery.fancybox.pack.js -------------------------------------------------------------------------------- /docs/fancybox/sprite.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/fancybox/sprite.psd -------------------------------------------------------------------------------- /docs/images/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/images/arrow-down.png -------------------------------------------------------------------------------- /docs/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/images/close.png -------------------------------------------------------------------------------- /docs/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/images/loading.gif -------------------------------------------------------------------------------- /docs/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/images/next.png -------------------------------------------------------------------------------- /docs/images/octocat-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/images/octocat-small.png -------------------------------------------------------------------------------- /docs/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/images/prev.png -------------------------------------------------------------------------------- /docs/img_userManual/Screen Shot 2015-08-26 at 21.50.56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/img_userManual/Screen Shot 2015-08-26 at 21.50.56.png -------------------------------------------------------------------------------- /docs/img_userManual/edit_quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/img_userManual/edit_quote.png -------------------------------------------------------------------------------- /docs/img_userManual/export_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/img_userManual/export_code.png -------------------------------------------------------------------------------- /docs/img_userManual/export_dropdown_w3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/img_userManual/export_dropdown_w3.png -------------------------------------------------------------------------------- /docs/img_userManual/export_quote_w3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/img_userManual/export_quote_w3.png -------------------------------------------------------------------------------- /docs/img_userManual/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/img_userManual/home.png -------------------------------------------------------------------------------- /docs/img_userManual/hypertranscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/img_userManual/hypertranscript.png -------------------------------------------------------------------------------- /docs/img_userManual/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/img_userManual/login.png -------------------------------------------------------------------------------- /docs/img_userManual/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/img_userManual/preview.png -------------------------------------------------------------------------------- /docs/img_userManual/preview_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/img_userManual/preview_dropdown.png -------------------------------------------------------------------------------- /docs/img_userManual/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/img_userManual/search.png -------------------------------------------------------------------------------- /docs/img_userManual/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/img_userManual/select.png -------------------------------------------------------------------------------- /docs/img_userManual/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/img_userManual/upload.png -------------------------------------------------------------------------------- /docs/img_userManual/videos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/img_userManual/videos.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/javascripts/quickQuote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/javascripts/quickQuote.js -------------------------------------------------------------------------------- /docs/javascripts/scale.fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/javascripts/scale.fix.js -------------------------------------------------------------------------------- /docs/media/snippet_54.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/media/snippet_54.mp4 -------------------------------------------------------------------------------- /docs/media/snippet_54.mp4.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/media/snippet_54.mp4.mov -------------------------------------------------------------------------------- /docs/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/params.json -------------------------------------------------------------------------------- /docs/stylesheets/github-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/stylesheets/github-light.css -------------------------------------------------------------------------------- /docs/stylesheets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/stylesheets/styles.css -------------------------------------------------------------------------------- /docs/stylesheets/video-quote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/stylesheets/video-quote.css -------------------------------------------------------------------------------- /docs/userManual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/docs/userManual.html -------------------------------------------------------------------------------- /first_time_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/first_time_deploy.sh -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/hypertranscriptConverter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/lib/hypertranscriptConverter.rb -------------------------------------------------------------------------------- /lib/spokenDataAPI.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/lib/spokenDataAPI.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /new_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/new_deploy.sh -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/500.html -------------------------------------------------------------------------------- /public/assets/.sprockets-manifest-e672e8cc9159b615a63226c70765a5b8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/.sprockets-manifest-e672e8cc9159b615a63226c70765a5b8.json -------------------------------------------------------------------------------- /public/assets/application-1faa8df9672df84774a9177ef1f413faa8cdff21e1e209510a335e16b3e2f4ae.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/application-1faa8df9672df84774a9177ef1f413faa8cdff21e1e209510a335e16b3e2f4ae.js -------------------------------------------------------------------------------- /public/assets/application-82eb49bf27eb8e7de8454cdc2f6c0116260c93c5b1fa4511c14415a6d3f5732e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/application-82eb49bf27eb8e7de8454cdc2f6c0116260c93c5b1fa4511c14415a6d3f5732e.css -------------------------------------------------------------------------------- /public/assets/flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/flaticon.eot -------------------------------------------------------------------------------- /public/assets/flaticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/flaticon.svg -------------------------------------------------------------------------------- /public/assets/flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/flaticon.ttf -------------------------------------------------------------------------------- /public/assets/flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/flaticon.woff -------------------------------------------------------------------------------- /public/assets/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/assets/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/assets/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/assets/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/assets/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/assets/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/header.jpg -------------------------------------------------------------------------------- /public/assets/jquery-ui/ui-bg_flat_0_aaaaaa_40x100-9a8492a580bf85d3e98ae8861fbd45567e5a1f83eeafcf9574da0399d5f602ab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/jquery-ui/ui-bg_flat_0_aaaaaa_40x100-9a8492a580bf85d3e98ae8861fbd45567e5a1f83eeafcf9574da0399d5f602ab.png -------------------------------------------------------------------------------- /public/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100-39ab7ccd9f4e82579da78a9241265df288d8eb65dbbd7cf48aed2d0129887df5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100-39ab7ccd9f4e82579da78a9241265df288d8eb65dbbd7cf48aed2d0129887df5.png -------------------------------------------------------------------------------- /public/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400-691597e8a40a891ea94d3589976ecfc33e6145c49422443b00ac2b5a0022964c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400-691597e8a40a891ea94d3589976ecfc33e6145c49422443b00ac2b5a0022964c.png -------------------------------------------------------------------------------- /public/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400-f0e6cd91b837d5c5644d026e5ffeccd907953317cd5c0f689901733afda260b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400-f0e6cd91b837d5c5644d026e5ffeccd907953317cd5c0f689901733afda260b2.png -------------------------------------------------------------------------------- /public/assets/jquery-ui/ui-bg_glass_75_dadada_1x400-c108f5cbf2dd9ec07a26530695ddd95e1664597ce6c056ae44c162cc2e28cec4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/jquery-ui/ui-bg_glass_75_dadada_1x400-c108f5cbf2dd9ec07a26530695ddd95e1664597ce6c056ae44c162cc2e28cec4.png -------------------------------------------------------------------------------- /public/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400-ddf5dd4e0ef2b185e8bb0af7b6e90ebe74a84384cb4700658e76e754c8bfe550.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400-ddf5dd4e0ef2b185e8bb0af7b6e90ebe74a84384cb4700658e76e754c8bfe550.png -------------------------------------------------------------------------------- /public/assets/jquery-ui/ui-bg_glass_95_fef1ec_1x400-f6f1c1bedf1a0f37cfef81d12f5f012869d1ee7c984775a569827a1784d34f5c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/jquery-ui/ui-bg_glass_95_fef1ec_1x400-f6f1c1bedf1a0f37cfef81d12f5f012869d1ee7c984775a569827a1784d34f5c.png -------------------------------------------------------------------------------- /public/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100-54270656df079c4da5182629a080fc633b6f84b87985eb016d25a560e2c38d4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100-54270656df079c4da5182629a080fc633b6f84b87985eb016d25a560e2c38d4a.png -------------------------------------------------------------------------------- /public/assets/jquery-ui/ui-icons_222222_256x240-57adb0d65f4e91dacfee975d9574422bee7486c8a182d60133728c672f2cdbbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/jquery-ui/ui-icons_222222_256x240-57adb0d65f4e91dacfee975d9574422bee7486c8a182d60133728c672f2cdbbc.png -------------------------------------------------------------------------------- /public/assets/jquery-ui/ui-icons_2e83ff_256x240-20f8c6667afc48aa433ee9eb6d8a0584bdbd6b4a4a9091ff1e6b3adb31e63bd9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/jquery-ui/ui-icons_2e83ff_256x240-20f8c6667afc48aa433ee9eb6d8a0584bdbd6b4a4a9091ff1e6b3adb31e63bd9.png -------------------------------------------------------------------------------- /public/assets/jquery-ui/ui-icons_454545_256x240-07460e843c3e59aaadbb34231e699e856a2980753c7a47b66447da5d9f93fb7f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/jquery-ui/ui-icons_454545_256x240-07460e843c3e59aaadbb34231e699e856a2980753c7a47b66447da5d9f93fb7f.png -------------------------------------------------------------------------------- /public/assets/jquery-ui/ui-icons_888888_256x240-ea2e29625de3463465e93b002b065f5833e05b97f7a052b1c141e754d62e1a8b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/jquery-ui/ui-icons_888888_256x240-ea2e29625de3463465e93b002b065f5833e05b97f7a052b1c141e754d62e1a8b.png -------------------------------------------------------------------------------- /public/assets/jquery-ui/ui-icons_cd0a0a_256x240-1e32c6dbf5d3fd342f27a78aa881550d6412aa207f48468724a6a15402b6041b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/jquery-ui/ui-icons_cd0a0a_256x240-1e32c6dbf5d3fd342f27a78aa881550d6412aa207f48468724a6a15402b6041b.png -------------------------------------------------------------------------------- /public/assets/video-js.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/video-js.swf -------------------------------------------------------------------------------- /public/assets/vjs.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/vjs.eot -------------------------------------------------------------------------------- /public/assets/vjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/vjs.svg -------------------------------------------------------------------------------- /public/assets/vjs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/vjs.ttf -------------------------------------------------------------------------------- /public/assets/vjswoff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/assets/vjswoff -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/public/robots.txt -------------------------------------------------------------------------------- /script/collectd/collectd-runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/script/collectd/collectd-runner.rb -------------------------------------------------------------------------------- /script/collectd/role/examples/example_db_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/script/collectd/role/examples/example_db_query.rb -------------------------------------------------------------------------------- /script/collectd/role/examples/example_simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/script/collectd/role/examples/example_simple.rb -------------------------------------------------------------------------------- /script/collectd/role/web_tools/global_worker_stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/script/collectd/role/web_tools/global_worker_stats.rb -------------------------------------------------------------------------------- /script/collectd/role/web_tools/resque_jobs_processed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/script/collectd/role/web_tools/resque_jobs_processed.rb -------------------------------------------------------------------------------- /script/rubber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/script/rubber -------------------------------------------------------------------------------- /test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/quotes_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/controllers/quotes_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/transcriptions_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/controllers/transcriptions_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/videos_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/controllers/videos_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/welcome_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/controllers/welcome_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/lines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/fixtures/lines.yml -------------------------------------------------------------------------------- /test/fixtures/quotes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/fixtures/quotes.yml -------------------------------------------------------------------------------- /test/fixtures/transcriptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/fixtures/transcriptions.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/fixtures/videos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/fixtures/videos.yml -------------------------------------------------------------------------------- /test/fixtures/words.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/fixtures/words.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/user_flow_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/integration/user_flow_test.rb -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/line_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/models/line_test.rb -------------------------------------------------------------------------------- /test/models/quote_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/models/quote_test.rb -------------------------------------------------------------------------------- /test/models/transcription_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/models/transcription_test.rb -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/models/user_test.rb -------------------------------------------------------------------------------- /test/models/video_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/models/video_test.rb -------------------------------------------------------------------------------- /test/models/word_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/models/word_test.rb -------------------------------------------------------------------------------- /test/selenium/selenium_test_video_upload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/selenium/selenium_test_video_upload.rb -------------------------------------------------------------------------------- /test/selenium/test_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/selenium/test_video.mp4 -------------------------------------------------------------------------------- /test/srt_test_file/Kyle_captions.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/srt_test_file/Kyle_captions.srt -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /video_test_results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishutchinson/quickQuote-times/HEAD/video_test_results.md --------------------------------------------------------------------------------