├── .gitignore ├── .go.screenrc ├── .rspec ├── GPL-3-0 ├── GPL-3-EXCEPTION ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── admin └── nginx │ └── tea.lo ├── app ├── assets │ ├── fonts │ │ ├── IcoMoon.eot │ │ ├── IcoMoon.svg │ │ ├── IcoMoon.ttf │ │ ├── IcoMoon.woff │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── museo300.otf │ │ ├── museo500.otf │ │ └── museo700.otf │ ├── images │ │ ├── ajax-loader.gif │ │ ├── default │ │ │ ├── custom │ │ │ │ └── logo.png │ │ │ ├── nav │ │ │ │ ├── bt-catalog.png │ │ │ │ ├── bt-home.png │ │ │ │ ├── bt-library-reader.png │ │ │ │ ├── bt-library-reader_hover.png │ │ │ │ └── bt-library.png │ │ │ ├── paper.jpg │ │ │ ├── paper.png │ │ │ └── stripe_left.png │ │ ├── icon.png │ │ ├── rails.png │ │ └── shelf.png │ ├── javascripts │ │ ├── admin.js │ │ ├── admin │ │ │ ├── boot.js.coffee │ │ │ └── lib.js │ │ ├── app_namespace.js.coffee │ │ ├── application.js │ │ ├── backbone_stuff.js.coffee │ │ ├── boot.js.coffee │ │ ├── lib.js │ │ ├── misc │ │ │ ├── anchor_binder.js.coffee │ │ │ ├── anchor_go_back.js.coffee │ │ │ ├── appcache_loader.js.coffee │ │ │ ├── gcf.js.coffee │ │ │ ├── keycodes.js.coffee │ │ │ ├── network_status.js.coffee │ │ │ └── text_locator.js.coffee │ │ ├── models │ │ │ ├── annotation.js.coffee │ │ │ ├── bookmark.js.coffee │ │ │ ├── chapter.coffee │ │ │ ├── component.coffee │ │ │ ├── ebook.js.coffee │ │ │ ├── message.js.coffee │ │ │ ├── offline_store.js.coffee │ │ │ ├── reading_position.js.coffee │ │ │ └── user.js.coffee │ │ ├── monocle │ │ │ ├── controls │ │ │ │ ├── arrow_panel.js.coffee │ │ │ │ ├── location.coffee │ │ │ │ └── scrubber.coffee │ │ │ ├── flippers │ │ │ │ └── double_pages.js.coffee │ │ │ └── panels │ │ │ │ └── arrows.js.coffee │ │ ├── reader.js │ │ ├── reader │ │ │ ├── boot.js.coffee │ │ │ └── lib.js │ │ ├── reader_sandbox.js │ │ ├── reader_sandbox │ │ │ ├── boot.js.coffee │ │ │ └── lib.js │ │ └── views │ │ │ ├── annotate_panel.js.coffee │ │ │ ├── ebook.js.coffee │ │ │ ├── ebook_detail.js.coffee │ │ │ ├── ebook_preview.js.coffee │ │ │ ├── ebook_reader.js.coffee │ │ │ ├── ebook_reader_menu.js.coffee │ │ │ ├── ebook_reader_sandbox.js.coffee │ │ │ ├── ebook_toc.js.coffee │ │ │ ├── ebooks.js.coffee │ │ │ ├── help_generic.js.coffee │ │ │ ├── help_library.js.coffee │ │ │ ├── network_status.js.coffee │ │ │ ├── offline_store_status.coffee │ │ │ └── settings_panel.coffee │ └── stylesheets │ │ ├── _common.sass │ │ ├── _ebooks.sass │ │ ├── _generic.sass │ │ ├── _header.sass │ │ ├── _home.sass │ │ ├── _init.sass │ │ ├── _ipad.sass │ │ ├── _main.sass │ │ ├── _mixins.sass │ │ ├── _modal.sass │ │ ├── _reader_ipad.sass │ │ ├── _sprites.sass │ │ ├── _variables.sass │ │ ├── application.css.sass │ │ ├── reader.css.sass │ │ ├── reader_custom.css.sass │ │ └── reader_sandbox.css.sass ├── controllers │ ├── admin │ │ ├── booksellers_controller.rb │ │ └── home_controller.rb │ ├── admin_controller.rb │ ├── annotations_controller.rb │ ├── application_controller.rb │ ├── bookmarks_controller.rb │ ├── ebook │ │ ├── epub │ │ │ ├── chapters_controller.rb │ │ │ └── components_controller.rb │ │ └── epubs_controller.rb │ ├── manifests_controller.rb │ ├── reading_position_controller.rb │ └── tea_sessions_controller.rb ├── helpers │ ├── application_helper.rb │ └── manifests_helper.rb ├── mailers │ └── .gitkeep ├── models │ ├── .gitkeep │ ├── admin.rb │ ├── annotation.rb │ ├── book_location.rb │ ├── bookmark.rb │ ├── bookseller.rb │ ├── ebook │ │ ├── base.rb │ │ ├── epub.rb │ │ └── epub │ │ │ ├── chapter.rb │ │ │ └── component.rb │ ├── epub_cfi.rb │ ├── reading_position.rb │ ├── synchronizers │ │ ├── base.rb │ │ └── reading_position.rb │ ├── tea_api │ │ ├── request.rb │ │ └── session.rb │ └── user.rb ├── templates │ ├── ebook │ │ ├── _annotate_panel.mustache │ │ ├── _detail.mustache │ │ ├── _ebook_info.mustache │ │ ├── _index.mustache │ │ ├── _item_list.mustache │ │ ├── _menu.mustache │ │ ├── _preview.mustache │ │ ├── _reader.mustache.erb │ │ ├── _reader_sandbox.mustache │ │ ├── _settings_panel.mustache │ │ └── _toc.mustache │ ├── help │ │ ├── generic.mustache │ │ └── library.mustache │ ├── network_status.mustache │ ├── offline_store_status.mustache │ └── offline_store_status_empty.mustache ├── uploaders │ ├── cover_uploader.rb │ └── ebook_uploader.rb ├── views │ ├── admin │ │ ├── booksellers │ │ │ ├── _form.html.haml │ │ │ ├── edit.html.haml │ │ │ ├── index.html.haml │ │ │ ├── new.html.haml │ │ │ └── show.html.haml │ │ └── home │ │ │ └── index.html.haml │ ├── bookmarks │ │ ├── _form.html.haml │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ └── show.html.haml │ ├── ebook │ │ └── epubs │ │ │ ├── _form.html.haml │ │ │ ├── edit.html.haml │ │ │ ├── index.html.haml │ │ │ ├── new.html.haml │ │ │ ├── reader.html.haml │ │ │ ├── reader_sandbox.html.haml │ │ │ └── show.html.haml │ ├── kaminari │ │ ├── _first_page.html.haml │ │ ├── _gap.html.haml │ │ ├── _last_page.html.haml │ │ ├── _next_page.html.haml │ │ ├── _page.html.haml │ │ ├── _paginator.html.haml │ │ └── _prev_page.html.haml │ ├── layouts │ │ ├── _header.haml │ │ ├── admin.html.haml │ │ └── application.html.haml │ ├── manifests │ │ ├── loader.html.haml │ │ └── reader.text.haml │ └── tea_sessions │ │ ├── _links.html.haml │ │ └── new.html.haml └── workers │ ├── download_ebook_worker.rb │ ├── epub_to_html_worker.rb │ ├── extract_epub_worker.rb │ └── import_books_worker.rb ├── config.ru ├── config ├── application.rb ├── boot.rb ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── fake_api.yml ├── gaston │ ├── api.yml │ ├── security.yml │ └── synchronizers.yml ├── initializers │ ├── _gaston.rb │ ├── backtrace_silencers.rb │ ├── check_session_secret.rb │ ├── devise.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── redis.rb │ ├── session_store.rb │ ├── simple_form.rb │ └── wrap_parameters.rb ├── locales │ ├── activemodel.fr.yml │ ├── devise.en.yml │ ├── devise.fr.yml │ ├── en.yml │ ├── fr.yml │ ├── simple_form.en.yml │ ├── simple_form.fr.yml │ └── views.fr.yml ├── mock_api │ ├── 2 │ │ ├── authentication.json │ │ └── publications.json │ ├── 24 │ │ ├── authentication.json │ │ └── publications.json │ ├── authentication.json │ ├── config.yml │ ├── epubs │ │ ├── 123.epub │ │ ├── 124.epub │ │ ├── 125.epub │ │ └── example.epub │ ├── forbidden.json │ └── publications.json ├── mongoid │ ├── dev.yml │ ├── development.yml │ ├── jenkins.yml │ └── staging.yml ├── redis.yml ├── resque-pool.yml ├── routes.rb └── thin │ ├── dev.yml │ └── staging.yml ├── db └── seeds.rb ├── examples └── ebooks │ └── .gitkeep ├── lib ├── assets │ └── .gitkeep ├── devise │ └── custom_failure.rb ├── tasks │ ├── .gitkeep │ ├── ebook.rake │ ├── generate_session_secret.rake │ └── resque.rake ├── tea_api.rb ├── tea_api_config.rb └── templates │ └── haml │ └── scaffold │ └── _form.html.haml ├── log └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── fallback │ └── cover │ │ ├── detail_default.png │ │ └── library_default.png ├── favicon.ico ├── font-icon │ ├── fonts │ │ ├── IcoMoon.eot │ │ ├── IcoMoon.svg │ │ ├── IcoMoon.ttf │ │ └── IcoMoon.woff │ ├── moon-icon-codes.html │ └── style.css ├── network_status └── robots.txt ├── script ├── go ├── rails └── vagrant │ ├── Vagrantfile_precise.dist │ ├── Vagrantfile_squeeze.dist │ ├── addExample.sh │ ├── install.sh │ ├── install_vagrant_precise.sh │ ├── install_vagrant_squeeze.sh │ └── start.sh ├── spec ├── controllers │ ├── admin │ │ └── booksellers_controller_spec.rb │ ├── annotations_controller_spec.rb │ ├── bookmarks_controller_spec.rb │ ├── ebook │ │ └── epubs_controller_spec.rb │ ├── manifests_controller_spec.rb │ ├── tea_api_controller_spec.rb │ └── tea_sessions_controller_spec.rb ├── fabricators │ ├── admin_fabricator.rb │ ├── book_location_fabricator.rb │ ├── bookseller_fabricator.rb │ ├── ebook_epub_chapter_fabricator.rb │ ├── ebook_epub_component_fabricator.rb │ ├── ebook_fabricator.rb │ └── user_fabricator.rb ├── fixtures │ ├── Dictionnaire des idées reçues.epub │ ├── api │ │ ├── authentication.json │ │ ├── authentication_error.json │ │ ├── example.epub │ │ └── publications.json │ └── cfi │ │ ├── itemrefs_with_ids │ │ ├── epub30-titlepage.xhtml │ │ └── package_document.opf │ │ └── itemrefs_without_ids │ │ ├── epub30-titlepage.xhtml │ │ └── package_document.opf ├── helpers │ └── application_helper_spec.rb ├── javascripts │ ├── factories.js │ ├── helpers │ │ ├── backbone-factory.js │ │ ├── jasmine-jquery.js │ │ ├── jasmine-sinon.js │ │ ├── sinon-1.3.4.js │ │ └── sinon_server_sugar.js │ ├── spec.js │ ├── spec │ │ ├── misc │ │ │ └── anchor_go_back_spec.coffee │ │ └── models │ │ │ ├── ebook_spec.coffee │ │ │ └── ebooks_spec.coffee │ └── support │ │ └── jasmine.yml ├── mocks │ ├── tea_api_session.rb │ └── user.rb ├── models │ ├── admin_spec.rb │ ├── annotation_spec.rb │ ├── book_location_spec.rb │ ├── bookmark_spec.rb │ ├── bookseller_spec.rb │ ├── ebook │ │ ├── base_spec.rb │ │ ├── epub │ │ │ ├── chapter_spec.rb │ │ │ └── component_spec.rb │ │ └── epub_spec.rb │ ├── epub_cfi_spec.rb │ ├── reading_position_spec.rb │ ├── synchronizers │ │ ├── base_spec.rb │ │ └── reading_position_spec.rb │ ├── tea_api │ │ └── session_spec.rb │ └── user_spec.rb ├── routing │ ├── admin │ │ └── booksellers_routing_spec.rb │ ├── annotations_routing_spec.rb │ ├── bookmarks_routing_spec.rb │ ├── ebook │ │ ├── epub │ │ │ ├── chapters_routing_spec.rb │ │ │ └── components_routing_spec.rb │ │ └── epubs_routing_spec.rb │ ├── manifests_routing_spec.rb │ └── reading_position_routing_spec.rb ├── spec_helper.rb ├── spec_helper_lite.rb ├── support │ └── controller_macros.rb └── workers │ ├── epub_to_html_worker_spec.rb │ └── extract_epub_worker_spec.rb ├── tea_api.ru ├── tmp └── pids │ └── .gitkeep └── vendor ├── assets ├── javascripts │ ├── .gitkeep │ ├── backbone-forms.js │ ├── backbone-relational.js │ ├── backbone.js │ ├── backbone_rails_sync.js │ ├── bootstrap-modal.js │ ├── dragdealer.js │ ├── hammer.js │ ├── jquery.cookie.js │ ├── jquery.hammer.js │ ├── moment.fr.js │ ├── moment.js │ ├── monocore.js │ ├── monoctrl.js │ ├── queue.js │ ├── sticky-2.9.js │ └── underscore.js └── stylesheets │ ├── .gitkeep │ ├── backbone-forms.css │ ├── dragdealer.css │ ├── monocore.css │ └── monoctrl.css └── plugins └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/.gitignore -------------------------------------------------------------------------------- /.go.screenrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/.go.screenrc -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour 2 | -------------------------------------------------------------------------------- /GPL-3-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/GPL-3-0 -------------------------------------------------------------------------------- /GPL-3-EXCEPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/GPL-3-EXCEPTION -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/Rakefile -------------------------------------------------------------------------------- /admin/nginx/tea.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/admin/nginx/tea.lo -------------------------------------------------------------------------------- /app/assets/fonts/IcoMoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/fonts/IcoMoon.eot -------------------------------------------------------------------------------- /app/assets/fonts/IcoMoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/fonts/IcoMoon.svg -------------------------------------------------------------------------------- /app/assets/fonts/IcoMoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/fonts/IcoMoon.ttf -------------------------------------------------------------------------------- /app/assets/fonts/IcoMoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/fonts/IcoMoon.woff -------------------------------------------------------------------------------- /app/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /app/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /app/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /app/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /app/assets/fonts/museo300.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/fonts/museo300.otf -------------------------------------------------------------------------------- /app/assets/fonts/museo500.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/fonts/museo500.otf -------------------------------------------------------------------------------- /app/assets/fonts/museo700.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/fonts/museo700.otf -------------------------------------------------------------------------------- /app/assets/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/images/ajax-loader.gif -------------------------------------------------------------------------------- /app/assets/images/default/custom/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/images/default/custom/logo.png -------------------------------------------------------------------------------- /app/assets/images/default/nav/bt-catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/images/default/nav/bt-catalog.png -------------------------------------------------------------------------------- /app/assets/images/default/nav/bt-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/images/default/nav/bt-home.png -------------------------------------------------------------------------------- /app/assets/images/default/nav/bt-library-reader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/images/default/nav/bt-library-reader.png -------------------------------------------------------------------------------- /app/assets/images/default/nav/bt-library-reader_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/images/default/nav/bt-library-reader_hover.png -------------------------------------------------------------------------------- /app/assets/images/default/nav/bt-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/images/default/nav/bt-library.png -------------------------------------------------------------------------------- /app/assets/images/default/paper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/images/default/paper.jpg -------------------------------------------------------------------------------- /app/assets/images/default/paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/images/default/paper.png -------------------------------------------------------------------------------- /app/assets/images/default/stripe_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/images/default/stripe_left.png -------------------------------------------------------------------------------- /app/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/images/icon.png -------------------------------------------------------------------------------- /app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/images/rails.png -------------------------------------------------------------------------------- /app/assets/images/shelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/images/shelf.png -------------------------------------------------------------------------------- /app/assets/javascripts/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/admin.js -------------------------------------------------------------------------------- /app/assets/javascripts/admin/boot.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/admin/boot.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/admin/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/admin/lib.js -------------------------------------------------------------------------------- /app/assets/javascripts/app_namespace.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/app_namespace.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/backbone_stuff.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/backbone_stuff.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/boot.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/boot.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/lib.js -------------------------------------------------------------------------------- /app/assets/javascripts/misc/anchor_binder.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/misc/anchor_binder.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/misc/anchor_go_back.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/misc/anchor_go_back.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/misc/appcache_loader.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/misc/appcache_loader.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/misc/gcf.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/misc/gcf.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/misc/keycodes.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/misc/keycodes.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/misc/network_status.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/misc/network_status.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/misc/text_locator.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/misc/text_locator.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/annotation.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/models/annotation.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/bookmark.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/models/bookmark.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/chapter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/models/chapter.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/component.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/models/component.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/ebook.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/models/ebook.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/message.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/models/message.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/offline_store.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/models/offline_store.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/reading_position.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/models/reading_position.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/user.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/models/user.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/monocle/controls/arrow_panel.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/monocle/controls/arrow_panel.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/monocle/controls/location.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/monocle/controls/location.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/monocle/controls/scrubber.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/monocle/controls/scrubber.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/monocle/flippers/double_pages.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/monocle/flippers/double_pages.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/monocle/panels/arrows.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/monocle/panels/arrows.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/reader.js -------------------------------------------------------------------------------- /app/assets/javascripts/reader/boot.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/reader/boot.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/reader/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/reader/lib.js -------------------------------------------------------------------------------- /app/assets/javascripts/reader_sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/reader_sandbox.js -------------------------------------------------------------------------------- /app/assets/javascripts/reader_sandbox/boot.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/reader_sandbox/boot.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/reader_sandbox/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/reader_sandbox/lib.js -------------------------------------------------------------------------------- /app/assets/javascripts/views/annotate_panel.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/views/annotate_panel.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/ebook.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/views/ebook.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/ebook_detail.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/views/ebook_detail.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/ebook_preview.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/views/ebook_preview.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/ebook_reader.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/views/ebook_reader.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/ebook_reader_menu.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/views/ebook_reader_menu.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/ebook_reader_sandbox.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/views/ebook_reader_sandbox.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/ebook_toc.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/views/ebook_toc.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/ebooks.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/views/ebooks.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/help_generic.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/views/help_generic.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/help_library.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/views/help_library.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/network_status.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/views/network_status.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/offline_store_status.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/views/offline_store_status.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/settings_panel.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/javascripts/views/settings_panel.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/_common.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/stylesheets/_common.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_ebooks.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/stylesheets/_ebooks.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_generic.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/stylesheets/_generic.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_header.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/stylesheets/_header.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_home.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/stylesheets/_home.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_init.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/stylesheets/_init.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_ipad.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/stylesheets/_ipad.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_main.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/stylesheets/_main.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_mixins.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/stylesheets/_mixins.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_modal.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/stylesheets/_modal.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_reader_ipad.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/stylesheets/_reader_ipad.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_sprites.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/stylesheets/_sprites.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/_variables.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/stylesheets/_variables.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/stylesheets/application.css.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/reader.css.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/stylesheets/reader.css.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/reader_custom.css.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/stylesheets/reader_custom.css.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/reader_sandbox.css.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/assets/stylesheets/reader_sandbox.css.sass -------------------------------------------------------------------------------- /app/controllers/admin/booksellers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/controllers/admin/booksellers_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/controllers/admin/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/controllers/admin_controller.rb -------------------------------------------------------------------------------- /app/controllers/annotations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/controllers/annotations_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/bookmarks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/controllers/bookmarks_controller.rb -------------------------------------------------------------------------------- /app/controllers/ebook/epub/chapters_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/controllers/ebook/epub/chapters_controller.rb -------------------------------------------------------------------------------- /app/controllers/ebook/epub/components_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/controllers/ebook/epub/components_controller.rb -------------------------------------------------------------------------------- /app/controllers/ebook/epubs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/controllers/ebook/epubs_controller.rb -------------------------------------------------------------------------------- /app/controllers/manifests_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/controllers/manifests_controller.rb -------------------------------------------------------------------------------- /app/controllers/reading_position_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/controllers/reading_position_controller.rb -------------------------------------------------------------------------------- /app/controllers/tea_sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/controllers/tea_sessions_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/manifests_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/helpers/manifests_helper.rb -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/models/admin.rb -------------------------------------------------------------------------------- /app/models/annotation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/models/annotation.rb -------------------------------------------------------------------------------- /app/models/book_location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/models/book_location.rb -------------------------------------------------------------------------------- /app/models/bookmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/models/bookmark.rb -------------------------------------------------------------------------------- /app/models/bookseller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/models/bookseller.rb -------------------------------------------------------------------------------- /app/models/ebook/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/models/ebook/base.rb -------------------------------------------------------------------------------- /app/models/ebook/epub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/models/ebook/epub.rb -------------------------------------------------------------------------------- /app/models/ebook/epub/chapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/models/ebook/epub/chapter.rb -------------------------------------------------------------------------------- /app/models/ebook/epub/component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/models/ebook/epub/component.rb -------------------------------------------------------------------------------- /app/models/epub_cfi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/models/epub_cfi.rb -------------------------------------------------------------------------------- /app/models/reading_position.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/models/reading_position.rb -------------------------------------------------------------------------------- /app/models/synchronizers/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/models/synchronizers/base.rb -------------------------------------------------------------------------------- /app/models/synchronizers/reading_position.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/models/synchronizers/reading_position.rb -------------------------------------------------------------------------------- /app/models/tea_api/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/models/tea_api/request.rb -------------------------------------------------------------------------------- /app/models/tea_api/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/models/tea_api/session.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/templates/ebook/_annotate_panel.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/templates/ebook/_annotate_panel.mustache -------------------------------------------------------------------------------- /app/templates/ebook/_detail.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/templates/ebook/_detail.mustache -------------------------------------------------------------------------------- /app/templates/ebook/_ebook_info.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/templates/ebook/_ebook_info.mustache -------------------------------------------------------------------------------- /app/templates/ebook/_index.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/templates/ebook/_index.mustache -------------------------------------------------------------------------------- /app/templates/ebook/_item_list.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/templates/ebook/_item_list.mustache -------------------------------------------------------------------------------- /app/templates/ebook/_menu.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/templates/ebook/_menu.mustache -------------------------------------------------------------------------------- /app/templates/ebook/_preview.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/templates/ebook/_preview.mustache -------------------------------------------------------------------------------- /app/templates/ebook/_reader.mustache.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/templates/ebook/_reader.mustache.erb -------------------------------------------------------------------------------- /app/templates/ebook/_reader_sandbox.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/templates/ebook/_reader_sandbox.mustache -------------------------------------------------------------------------------- /app/templates/ebook/_settings_panel.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/templates/ebook/_settings_panel.mustache -------------------------------------------------------------------------------- /app/templates/ebook/_toc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/templates/ebook/_toc.mustache -------------------------------------------------------------------------------- /app/templates/help/generic.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/templates/help/generic.mustache -------------------------------------------------------------------------------- /app/templates/help/library.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/templates/help/library.mustache -------------------------------------------------------------------------------- /app/templates/network_status.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/templates/network_status.mustache -------------------------------------------------------------------------------- /app/templates/offline_store_status.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/templates/offline_store_status.mustache -------------------------------------------------------------------------------- /app/templates/offline_store_status_empty.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/templates/offline_store_status_empty.mustache -------------------------------------------------------------------------------- /app/uploaders/cover_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/uploaders/cover_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/ebook_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/uploaders/ebook_uploader.rb -------------------------------------------------------------------------------- /app/views/admin/booksellers/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/admin/booksellers/_form.html.haml -------------------------------------------------------------------------------- /app/views/admin/booksellers/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/admin/booksellers/edit.html.haml -------------------------------------------------------------------------------- /app/views/admin/booksellers/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/admin/booksellers/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/booksellers/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/admin/booksellers/new.html.haml -------------------------------------------------------------------------------- /app/views/admin/booksellers/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/admin/booksellers/show.html.haml -------------------------------------------------------------------------------- /app/views/admin/home/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/admin/home/index.html.haml -------------------------------------------------------------------------------- /app/views/bookmarks/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/bookmarks/_form.html.haml -------------------------------------------------------------------------------- /app/views/bookmarks/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/bookmarks/edit.html.haml -------------------------------------------------------------------------------- /app/views/bookmarks/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/bookmarks/index.html.haml -------------------------------------------------------------------------------- /app/views/bookmarks/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/bookmarks/new.html.haml -------------------------------------------------------------------------------- /app/views/bookmarks/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/bookmarks/show.html.haml -------------------------------------------------------------------------------- /app/views/ebook/epubs/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/ebook/epubs/_form.html.haml -------------------------------------------------------------------------------- /app/views/ebook/epubs/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/ebook/epubs/edit.html.haml -------------------------------------------------------------------------------- /app/views/ebook/epubs/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/ebook/epubs/index.html.haml -------------------------------------------------------------------------------- /app/views/ebook/epubs/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/ebook/epubs/new.html.haml -------------------------------------------------------------------------------- /app/views/ebook/epubs/reader.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/ebook/epubs/reader.html.haml -------------------------------------------------------------------------------- /app/views/ebook/epubs/reader_sandbox.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/ebook/epubs/reader_sandbox.html.haml -------------------------------------------------------------------------------- /app/views/ebook/epubs/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/ebook/epubs/show.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_first_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/kaminari/_first_page.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_gap.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/kaminari/_gap.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_last_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/kaminari/_last_page.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_next_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/kaminari/_next_page.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/kaminari/_page.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_paginator.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/kaminari/_paginator.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_prev_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/kaminari/_prev_page.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_header.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/layouts/_header.haml -------------------------------------------------------------------------------- /app/views/layouts/admin.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/layouts/admin.html.haml -------------------------------------------------------------------------------- /app/views/layouts/application.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/layouts/application.html.haml -------------------------------------------------------------------------------- /app/views/manifests/loader.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/manifests/loader.html.haml -------------------------------------------------------------------------------- /app/views/manifests/reader.text.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/manifests/reader.text.haml -------------------------------------------------------------------------------- /app/views/tea_sessions/_links.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/tea_sessions/_links.html.haml -------------------------------------------------------------------------------- /app/views/tea_sessions/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/views/tea_sessions/new.html.haml -------------------------------------------------------------------------------- /app/workers/download_ebook_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/workers/download_ebook_worker.rb -------------------------------------------------------------------------------- /app/workers/epub_to_html_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/workers/epub_to_html_worker.rb -------------------------------------------------------------------------------- /app/workers/extract_epub_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/workers/extract_epub_worker.rb -------------------------------------------------------------------------------- /app/workers/import_books_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/app/workers/import_books_worker.rb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/fake_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/fake_api.yml -------------------------------------------------------------------------------- /config/gaston/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/gaston/api.yml -------------------------------------------------------------------------------- /config/gaston/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/gaston/security.yml -------------------------------------------------------------------------------- /config/gaston/synchronizers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/gaston/synchronizers.yml -------------------------------------------------------------------------------- /config/initializers/_gaston.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/initializers/_gaston.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/check_session_secret.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/initializers/check_session_secret.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/initializers/redis.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/activemodel.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/locales/activemodel.fr.yml -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/devise.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/locales/devise.fr.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/locales/fr.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/locales/simple_form.fr.yml -------------------------------------------------------------------------------- /config/locales/views.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/locales/views.fr.yml -------------------------------------------------------------------------------- /config/mock_api/2/authentication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/mock_api/2/authentication.json -------------------------------------------------------------------------------- /config/mock_api/2/publications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/mock_api/2/publications.json -------------------------------------------------------------------------------- /config/mock_api/24/authentication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/mock_api/24/authentication.json -------------------------------------------------------------------------------- /config/mock_api/24/publications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/mock_api/24/publications.json -------------------------------------------------------------------------------- /config/mock_api/authentication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/mock_api/authentication.json -------------------------------------------------------------------------------- /config/mock_api/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/mock_api/config.yml -------------------------------------------------------------------------------- /config/mock_api/epubs/123.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/mock_api/epubs/123.epub -------------------------------------------------------------------------------- /config/mock_api/epubs/124.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/mock_api/epubs/124.epub -------------------------------------------------------------------------------- /config/mock_api/epubs/125.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/mock_api/epubs/125.epub -------------------------------------------------------------------------------- /config/mock_api/epubs/example.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/mock_api/epubs/example.epub -------------------------------------------------------------------------------- /config/mock_api/forbidden.json: -------------------------------------------------------------------------------- 1 | { 2 | "errors": ["forbidden"] 3 | } 4 | -------------------------------------------------------------------------------- /config/mock_api/publications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/mock_api/publications.json -------------------------------------------------------------------------------- /config/mongoid/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/mongoid/dev.yml -------------------------------------------------------------------------------- /config/mongoid/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/mongoid/development.yml -------------------------------------------------------------------------------- /config/mongoid/jenkins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/mongoid/jenkins.yml -------------------------------------------------------------------------------- /config/mongoid/staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/mongoid/staging.yml -------------------------------------------------------------------------------- /config/redis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/redis.yml -------------------------------------------------------------------------------- /config/resque-pool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/resque-pool.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/thin/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/thin/dev.yml -------------------------------------------------------------------------------- /config/thin/staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/config/thin/staging.yml -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /examples/ebooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/devise/custom_failure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/lib/devise/custom_failure.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/ebook.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/lib/tasks/ebook.rake -------------------------------------------------------------------------------- /lib/tasks/generate_session_secret.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/lib/tasks/generate_session_secret.rake -------------------------------------------------------------------------------- /lib/tasks/resque.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/lib/tasks/resque.rake -------------------------------------------------------------------------------- /lib/tea_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/lib/tea_api.rb -------------------------------------------------------------------------------- /lib/tea_api_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/lib/tea_api_config.rb -------------------------------------------------------------------------------- /lib/templates/haml/scaffold/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/lib/templates/haml/scaffold/_form.html.haml -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/public/500.html -------------------------------------------------------------------------------- /public/fallback/cover/detail_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/public/fallback/cover/detail_default.png -------------------------------------------------------------------------------- /public/fallback/cover/library_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/public/fallback/cover/library_default.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/font-icon/fonts/IcoMoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/public/font-icon/fonts/IcoMoon.eot -------------------------------------------------------------------------------- /public/font-icon/fonts/IcoMoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/public/font-icon/fonts/IcoMoon.svg -------------------------------------------------------------------------------- /public/font-icon/fonts/IcoMoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/public/font-icon/fonts/IcoMoon.ttf -------------------------------------------------------------------------------- /public/font-icon/fonts/IcoMoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/public/font-icon/fonts/IcoMoon.woff -------------------------------------------------------------------------------- /public/font-icon/moon-icon-codes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/public/font-icon/moon-icon-codes.html -------------------------------------------------------------------------------- /public/font-icon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/public/font-icon/style.css -------------------------------------------------------------------------------- /public/network_status: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/public/robots.txt -------------------------------------------------------------------------------- /script/go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/script/go -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/script/rails -------------------------------------------------------------------------------- /script/vagrant/Vagrantfile_precise.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/script/vagrant/Vagrantfile_precise.dist -------------------------------------------------------------------------------- /script/vagrant/Vagrantfile_squeeze.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/script/vagrant/Vagrantfile_squeeze.dist -------------------------------------------------------------------------------- /script/vagrant/addExample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/script/vagrant/addExample.sh -------------------------------------------------------------------------------- /script/vagrant/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/script/vagrant/install.sh -------------------------------------------------------------------------------- /script/vagrant/install_vagrant_precise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/script/vagrant/install_vagrant_precise.sh -------------------------------------------------------------------------------- /script/vagrant/install_vagrant_squeeze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/script/vagrant/install_vagrant_squeeze.sh -------------------------------------------------------------------------------- /script/vagrant/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/script/vagrant/start.sh -------------------------------------------------------------------------------- /spec/controllers/admin/booksellers_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/controllers/admin/booksellers_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/annotations_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/controllers/annotations_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/bookmarks_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/controllers/bookmarks_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/ebook/epubs_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/controllers/ebook/epubs_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/manifests_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/controllers/manifests_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/tea_api_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/controllers/tea_api_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/tea_sessions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/controllers/tea_sessions_controller_spec.rb -------------------------------------------------------------------------------- /spec/fabricators/admin_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/fabricators/admin_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/book_location_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/fabricators/book_location_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/bookseller_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/fabricators/bookseller_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/ebook_epub_chapter_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/fabricators/ebook_epub_chapter_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/ebook_epub_component_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/fabricators/ebook_epub_component_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/ebook_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/fabricators/ebook_fabricator.rb -------------------------------------------------------------------------------- /spec/fabricators/user_fabricator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/fabricators/user_fabricator.rb -------------------------------------------------------------------------------- /spec/fixtures/Dictionnaire des idées reçues.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/fixtures/Dictionnaire des idées reçues.epub -------------------------------------------------------------------------------- /spec/fixtures/api/authentication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/fixtures/api/authentication.json -------------------------------------------------------------------------------- /spec/fixtures/api/authentication_error.json: -------------------------------------------------------------------------------- 1 | { 2 | "errors":["AUTH_ERROR : Utilisateur non valide."] 3 | } 4 | -------------------------------------------------------------------------------- /spec/fixtures/api/example.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/fixtures/api/example.epub -------------------------------------------------------------------------------- /spec/fixtures/api/publications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/fixtures/api/publications.json -------------------------------------------------------------------------------- /spec/fixtures/cfi/itemrefs_with_ids/epub30-titlepage.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/fixtures/cfi/itemrefs_with_ids/epub30-titlepage.xhtml -------------------------------------------------------------------------------- /spec/fixtures/cfi/itemrefs_with_ids/package_document.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/fixtures/cfi/itemrefs_with_ids/package_document.opf -------------------------------------------------------------------------------- /spec/fixtures/cfi/itemrefs_without_ids/epub30-titlepage.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/fixtures/cfi/itemrefs_without_ids/epub30-titlepage.xhtml -------------------------------------------------------------------------------- /spec/fixtures/cfi/itemrefs_without_ids/package_document.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/fixtures/cfi/itemrefs_without_ids/package_document.opf -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/javascripts/factories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/javascripts/factories.js -------------------------------------------------------------------------------- /spec/javascripts/helpers/backbone-factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/javascripts/helpers/backbone-factory.js -------------------------------------------------------------------------------- /spec/javascripts/helpers/jasmine-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/javascripts/helpers/jasmine-jquery.js -------------------------------------------------------------------------------- /spec/javascripts/helpers/jasmine-sinon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/javascripts/helpers/jasmine-sinon.js -------------------------------------------------------------------------------- /spec/javascripts/helpers/sinon-1.3.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/javascripts/helpers/sinon-1.3.4.js -------------------------------------------------------------------------------- /spec/javascripts/helpers/sinon_server_sugar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/javascripts/helpers/sinon_server_sugar.js -------------------------------------------------------------------------------- /spec/javascripts/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/javascripts/spec.js -------------------------------------------------------------------------------- /spec/javascripts/spec/misc/anchor_go_back_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/javascripts/spec/misc/anchor_go_back_spec.coffee -------------------------------------------------------------------------------- /spec/javascripts/spec/models/ebook_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/javascripts/spec/models/ebook_spec.coffee -------------------------------------------------------------------------------- /spec/javascripts/spec/models/ebooks_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/javascripts/spec/models/ebooks_spec.coffee -------------------------------------------------------------------------------- /spec/javascripts/support/jasmine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/javascripts/support/jasmine.yml -------------------------------------------------------------------------------- /spec/mocks/tea_api_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/mocks/tea_api_session.rb -------------------------------------------------------------------------------- /spec/mocks/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/mocks/user.rb -------------------------------------------------------------------------------- /spec/models/admin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/models/admin_spec.rb -------------------------------------------------------------------------------- /spec/models/annotation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/models/annotation_spec.rb -------------------------------------------------------------------------------- /spec/models/book_location_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/models/book_location_spec.rb -------------------------------------------------------------------------------- /spec/models/bookmark_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/models/bookmark_spec.rb -------------------------------------------------------------------------------- /spec/models/bookseller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/models/bookseller_spec.rb -------------------------------------------------------------------------------- /spec/models/ebook/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/models/ebook/base_spec.rb -------------------------------------------------------------------------------- /spec/models/ebook/epub/chapter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/models/ebook/epub/chapter_spec.rb -------------------------------------------------------------------------------- /spec/models/ebook/epub/component_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/models/ebook/epub/component_spec.rb -------------------------------------------------------------------------------- /spec/models/ebook/epub_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/models/ebook/epub_spec.rb -------------------------------------------------------------------------------- /spec/models/epub_cfi_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/models/epub_cfi_spec.rb -------------------------------------------------------------------------------- /spec/models/reading_position_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/models/reading_position_spec.rb -------------------------------------------------------------------------------- /spec/models/synchronizers/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/models/synchronizers/base_spec.rb -------------------------------------------------------------------------------- /spec/models/synchronizers/reading_position_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/models/synchronizers/reading_position_spec.rb -------------------------------------------------------------------------------- /spec/models/tea_api/session_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/models/tea_api/session_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/routing/admin/booksellers_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/routing/admin/booksellers_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/annotations_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/routing/annotations_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/bookmarks_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/routing/bookmarks_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/ebook/epub/chapters_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/routing/ebook/epub/chapters_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/ebook/epub/components_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/routing/ebook/epub/components_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/ebook/epubs_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/routing/ebook/epubs_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/manifests_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/routing/manifests_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/reading_position_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/routing/reading_position_routing_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper_lite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/spec_helper_lite.rb -------------------------------------------------------------------------------- /spec/support/controller_macros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/support/controller_macros.rb -------------------------------------------------------------------------------- /spec/workers/epub_to_html_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/workers/epub_to_html_worker_spec.rb -------------------------------------------------------------------------------- /spec/workers/extract_epub_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/spec/workers/extract_epub_worker_spec.rb -------------------------------------------------------------------------------- /tea_api.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/tea_api.ru -------------------------------------------------------------------------------- /tmp/pids/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/backbone-forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/javascripts/backbone-forms.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/backbone-relational.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/javascripts/backbone-relational.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/javascripts/backbone.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/backbone_rails_sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/javascripts/backbone_rails_sync.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/bootstrap-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/javascripts/bootstrap-modal.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/dragdealer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/javascripts/dragdealer.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/hammer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/javascripts/hammer.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/javascripts/jquery.cookie.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.hammer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/javascripts/jquery.hammer.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/moment.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/javascripts/moment.fr.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/javascripts/moment.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/monocore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/javascripts/monocore.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/monoctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/javascripts/monoctrl.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/javascripts/queue.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/sticky-2.9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/javascripts/sticky-2.9.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/javascripts/underscore.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/backbone-forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/stylesheets/backbone-forms.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/dragdealer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/stylesheets/dragdealer.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/monocore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/stylesheets/monocore.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/monoctrl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEA-ebook/teabook-open-reader/HEAD/vendor/assets/stylesheets/monoctrl.css -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------