├── .gitignore ├── .tool-versions ├── Capfile ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ └── .keep │ ├── javascripts │ │ ├── application.js │ │ ├── download.coffee │ │ ├── juans.coffee │ │ └── static_pages.coffee │ └── stylesheets │ │ ├── application.scss │ │ ├── download.scss │ │ └── juans.scss ├── controllers │ ├── application_controller.rb │ ├── canons_controller.rb │ ├── catalog_entry_controller.rb │ ├── chinese_tools_controller.rb │ ├── concerns │ │ ├── .keep │ │ └── cbeta_string.rb │ ├── download_controller.rb │ ├── export_controller.rb │ ├── juans_controller.rb │ ├── kwic3_controller.rb │ ├── lines_controller.rb │ ├── report_controller.rb │ ├── search_controller.rb │ ├── static_pages_controller.rb │ ├── textref_controller.rb │ ├── toc_node_controller.rb │ ├── word_seg_controller.rb │ └── works_controller.rb ├── errors │ └── cbeta_error.rb ├── helpers │ ├── application_helper.rb │ ├── download_helper.rb │ ├── export_helper.rb │ ├── juans_helper.rb │ ├── lines_helper.rb │ ├── sphinx_helper.rb │ ├── static_pages_helper.rb │ ├── toc_node_helper.rb │ └── works_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── README.md │ ├── analytics_record.rb │ ├── application_record.rb │ ├── canon.rb │ ├── catalog_entry.rb │ ├── category.rb │ ├── concerns │ │ └── .keep │ ├── gaiji.rb │ ├── goto_abbr.rb │ ├── juan_line.rb │ ├── lb_map.rb │ ├── line.rb │ ├── person.rb │ ├── place.rb │ ├── term.rb │ ├── toc_node.rb │ ├── variant.rb │ ├── visit.rb │ ├── work.rb │ └── xml_file.rb ├── services │ ├── authority_service.rb │ ├── crf.rb │ ├── int_to_zht.rb │ ├── kwic_service.rb │ ├── manticore_service.rb │ ├── matrix.rb │ ├── smith_waterman.rb │ ├── suffix_info.rb │ ├── unicode_service.rb │ └── word_seg_service.rb └── views │ ├── juans │ └── index.html.erb │ ├── layouts │ ├── _navbar_catalog.html.haml │ ├── _sidebar.haml │ └── application.html.erb │ ├── report │ ├── _datepicker.haml │ ├── daily.haml │ ├── index.haml │ ├── referer.haml │ └── url.haml │ ├── static_pages │ ├── _arg-cache.haml │ ├── _catalog-return.haml │ ├── _goto-linehead.haml │ ├── _html-for-ui-byline.haml │ ├── _html-for-ui-classes.haml │ ├── _html-for-ui-copyright.haml │ ├── _html-for-ui-facsimile.haml │ ├── _html-for-ui-gaiji.haml │ ├── _html-for-ui-graphic.haml │ ├── _html-for-ui-head.haml │ ├── _html-for-ui-juan.haml │ ├── _html-for-ui-lg.haml │ ├── _html-for-ui-linehead.haml │ ├── _html-for-ui-link.haml │ ├── _html-for-ui-note.haml │ ├── _html-for-ui-p.haml │ ├── _html-for-ui-person.haml │ ├── _html-for-ui-place.haml │ ├── _html-for-ui-punc.haml │ ├── _html-for-ui-table.haml │ ├── _html-for-ui-text.haml │ ├── _search-aio-q.haml │ ├── _search-aio-return.haml │ ├── _search-arg-paginate.haml │ ├── _sphinx-aio-q.haml │ ├── _sphinx-aio-return.haml │ ├── callback.html.erb │ ├── catalog.html.haml │ ├── catalog_index.haml │ ├── categories.html.haml │ ├── category.haml │ ├── chinese_tools.haml │ ├── common_parameters.haml │ ├── creators.html.haml │ ├── download.haml │ ├── download_docusky.haml │ ├── download_ebooks.haml │ ├── download_footnotes.haml │ ├── download_html.haml │ ├── download_text.haml │ ├── editions.html.haml │ ├── export.haml │ ├── get_html.html.haml │ ├── goto.html.haml │ ├── home.haml │ ├── html_for_ui.haml │ ├── line.html.haml │ ├── log.haml │ ├── log_old.html.haml │ ├── report.haml │ ├── rise_shine.haml │ ├── sc2tc.haml │ ├── scope_selector.haml │ ├── search.haml │ ├── search_all_in_one.haml │ ├── search_extended.haml │ ├── search_facet.haml │ ├── search_filter.haml │ ├── search_index.haml │ ├── search_kwic.haml │ ├── search_notes.haml │ ├── search_sc.haml │ ├── search_similar.haml │ ├── search_synonym.haml │ ├── search_title.haml │ ├── search_toc.html.haml │ ├── search_vars.haml │ ├── time.html.haml │ ├── toc.html.haml │ ├── word_count.html.haml │ ├── word_seg.html.haml │ ├── work.html.haml │ ├── work_index.haml │ └── works.html.haml │ ├── textref │ └── meta.csv │ └── word_seg │ └── index.haml ├── bin ├── bundle ├── dev ├── rails ├── rake ├── setup ├── spring └── update ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── category-id.json ├── credentials.yml.enc ├── credentials │ └── cn.yml.enc ├── deploy.rb ├── deploy │ ├── cn.rb │ ├── production.rb │ ├── sakya.rb │ └── staging.rb ├── environment.rb ├── environments │ ├── cn.rb │ ├── development.rb │ ├── production.rb │ ├── staging.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── new_framework_defaults.rb │ ├── permissions_policy.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── spring.rb └── storage.yml ├── data-static ├── categories.json ├── dynasty-order.csv ├── facsimile │ └── JM.json ├── layers │ └── fosizhi │ │ ├── GA │ │ ├── GA009 │ │ │ └── GA009n0008.csv │ │ ├── GA010 │ │ │ └── GA010n0009.csv │ │ ├── GA011 │ │ │ └── GA011n0010.csv │ │ ├── GA012 │ │ │ ├── GA012n0010.csv │ │ │ └── GA012n0011.csv │ │ ├── GA020 │ │ │ └── GA020n0017.csv │ │ ├── GA031 │ │ │ └── GA031n0032.csv │ │ ├── GA032 │ │ │ └── GA032n0032.csv │ │ ├── GA043 │ │ │ └── GA043n0043.csv │ │ ├── GA045 │ │ │ └── GA045n0049.csv │ │ ├── GA058 │ │ │ └── GA058n0062.csv │ │ ├── GA072 │ │ │ └── GA072n0077.csv │ │ ├── GA079 │ │ │ └── GA079n0081.csv │ │ ├── GA081 │ │ │ └── GA081n0084.csv │ │ ├── GA082 │ │ │ └── GA082n0084.csv │ │ ├── GA084 │ │ │ └── GA084n0086.csv │ │ ├── GA088 │ │ │ └── GA088n0089.csv │ │ ├── GA089 │ │ │ └── GA089n0089.csv │ │ └── GA090 │ │ │ └── GA090n0089.csv │ │ └── GB │ │ └── GB078 │ │ └── GB078n0109.csv ├── schema │ └── xml4docx.rnc ├── synonym.txt └── uuid │ ├── canons.json │ ├── juans.json │ └── works.json ├── db ├── analytics_migrate │ ├── 20201110030553_create_visits.rb │ └── 20220923035010_add_referer_to_visits.rb ├── analytics_schema.rb ├── migrate │ ├── 20190528080916_create_all.rb │ ├── 20211215083341_add_lb_end_to_juanlines.rb │ ├── 20221205031807_create_places.rb │ ├── 20230218080626_add_sort_to_catalog_entries.rb │ ├── 20230607054229_add_service_name_to_active_storage_blobs.active_storage.rb │ ├── 20230607054230_create_active_storage_variant_records.active_storage.rb │ ├── 20240222014726_add_vol_to_lines.rb │ ├── 20240318074051_add_pua_to_gaijis.rb │ └── 20241112055713_remove_not_null_on_active_storage_blobs_checksum.active_storage.rb ├── schema.rb └── seeds.rb ├── doc ├── Quarterly.md ├── README.md ├── apache2.md ├── cbeta-change-log.md ├── cbeta-xml-p5a.md ├── cn.md ├── convert-for-download.md ├── deploy-rails-project.md ├── dev-mac.md ├── docx.md ├── ebook.md ├── https.md ├── import-layers.md ├── juan-line.md ├── kwic.md ├── mirror.md ├── new-rails-project.md ├── new-works.md ├── nginx.md ├── postgresql.md ├── prepare-files.md ├── rails.md ├── rdb.md ├── remove-old.md ├── rvm.md ├── server-setup.md ├── setup.md ├── sphinx-build-index.md ├── sphinx-mac.md ├── sphinx.md ├── sphinx3-ubuntu20.md ├── staging.md ├── trouble-shooting.md ├── update-github.md ├── uuid.md └── variants.md ├── lib ├── assets │ └── .keep └── tasks │ ├── .keep │ ├── README.md │ ├── cbeta-module.rb │ ├── cbeta_p5a_share.rb │ ├── check.rake │ ├── check_authority.rb │ ├── check_covers.rb │ ├── check_gaiji.rb │ ├── check_metadata.rb │ ├── check_xml4docx.rb │ ├── convert.rake │ ├── convert_docusky.rb │ ├── convert_seg.rb │ ├── convert_toc.rb │ ├── convert_x2h.rb │ ├── convert_x2h_for_download.rb │ ├── convert_x2t4d2.rb │ ├── convert_x2t_for_download.rb │ ├── convert_xml4docx.rb │ ├── create.rake │ ├── create_creators.rb │ ├── create_uuid.rb │ ├── css_parser.rb │ ├── custom.rake │ ├── download.rake │ ├── download_ebooks.rb │ ├── export.rake │ ├── export_visits.rb │ ├── html-node.rb │ ├── import.rake │ ├── import_canons.rb │ ├── import_catalog.rb │ ├── import_category.rb │ ├── import_gaiji.rb │ ├── import_goto_abbrs.rb │ ├── import_jinglu_editors.rb │ ├── import_juan_line.rb │ ├── import_layers.rb │ ├── import_lb_maps.rb │ ├── import_lines-multi-edition.rb │ ├── import_lines.rb │ ├── import_synonym.rb │ ├── import_toc.rb │ ├── import_vars.rb │ ├── import_visits.rb │ ├── import_work_info.rb │ ├── kwic-builder.rb │ ├── kwic-h2t.rb │ ├── kwic-rotate.rb │ ├── kwic-sa.rb │ ├── kwic-sort-info.rb │ ├── kwic-test.rb │ ├── kwic-x2h.rb │ ├── kwic.rake │ ├── layers-ignore.txt │ ├── manticore-chunks.rb │ ├── manticore-notes.rb │ ├── manticore-t2x.rb │ ├── manticore-titles.rb │ ├── manticore.rake │ ├── quarterly.rake │ ├── quarterly │ ├── cbeta_epub2.rb │ ├── change-log-cat.rb │ ├── change-log-font.rb │ ├── changelog.rb │ ├── check-new-canon.rb │ ├── config.rb │ ├── diff-to-html.rb │ ├── epub-main.rb │ ├── epub-template │ │ ├── content.opf.erb │ │ ├── donate.xhtml │ │ ├── epub.css │ │ ├── readme.xhtml │ │ ├── titlepage.xhtml │ │ └── toc.ncx.erb │ ├── html-node.rb │ ├── juanline.rb │ ├── manticore-template-chunks.conf │ ├── manticore-template-notes.conf │ ├── manticore-template-text.conf │ ├── manticore-template-titles.conf │ ├── mobi.rb │ ├── p5a_to_text.rb │ ├── quarterly.rb │ ├── runbook-ebook-cn.rb │ ├── runbook-ebook.rb │ ├── runbook-prepare-cn.rb │ ├── runbook-sphinx-cn.rb │ ├── section-change-log.rb │ ├── section-check.rb │ ├── section-convert.rb │ ├── section-download-ebooks.rb │ ├── section-html.rb │ ├── section-kwic.rb │ ├── section-manticore.rb │ ├── section-prepare.rb │ ├── section-rdb.rb │ ├── section-sphinx.rb │ ├── sphinx-template-chunks.conf │ ├── sphinx-template-notes.conf │ ├── sphinx-template-text.conf │ ├── sphinx-template-titles.conf │ └── update-github.rb │ ├── quarterly_cn.rake │ ├── sa.cpp │ ├── share.rb │ ├── sphinx-notes.rb │ ├── sphinx-share.rb │ ├── sphinx-t2x.rb │ ├── sphinx-titles.rb │ ├── sphinx.rake │ ├── update.rake │ ├── x2h_for_download.html │ ├── x2h_for_download.rb │ ├── x2h_for_ui.rb │ ├── x2h_share.rb │ ├── x2t_for_download.rb │ ├── x2t_for_manticore.rb │ ├── x2t_for_sphinx.rb │ ├── x2x_for_docusky.rb │ ├── xml4docx-styles.yaml │ ├── xml4docx1.rb │ └── xml4docx2.rb ├── log └── .keep ├── public ├── 400.html ├── 404.html ├── 406-unsupported-browser.html ├── 422.html ├── 500.html ├── api-docs │ ├── api │ │ ├── collections.yaml │ │ ├── collections_x_resources.yaml │ │ ├── resources_x_sections.yaml │ │ ├── sections_x.yaml │ │ └── sections_x_content_units.yaml │ ├── catalog_entry │ │ ├── _.yaml │ │ ├── parameters.yaml │ │ ├── response-examples.yaml │ │ └── response.yaml │ ├── chinese_tools │ │ └── sc2tc.yaml │ ├── common │ │ └── resources.yaml │ ├── download │ │ ├── docusky.yaml │ │ ├── epub-all.yaml │ │ ├── epub.yaml │ │ ├── footnotes.yaml │ │ ├── html_work.yaml │ │ ├── html_work_juan.yaml │ │ ├── mobi-all.yaml │ │ ├── mobi.yaml │ │ ├── pdf-all.yaml │ │ ├── pdf.yaml │ │ └── text.yaml │ ├── export-all_creators-response.yaml │ ├── export │ │ ├── all-creators.yaml │ │ ├── all_creators2.yaml │ │ ├── all_works.yaml │ │ ├── check_list.yaml │ │ ├── creator_strokes.yaml │ │ ├── creator_strokes_works.yaml │ │ ├── dynasty.yaml │ │ ├── dynasty_works.yaml │ │ ├── scope_selector_by_category.yaml │ │ └── scope_selector_by_vol.yaml │ ├── juans │ │ ├── _.yaml │ │ ├── goto-parameters.yaml │ │ ├── goto-response.yaml │ │ ├── goto.md │ │ ├── goto.yaml │ │ ├── parameters.yaml │ │ └── response.yaml │ ├── lines │ │ ├── _.yaml │ │ ├── parameters.yaml │ │ └── response.yaml │ ├── openapi.yaml │ ├── search │ │ ├── _.yaml │ │ ├── all_in_one.yaml │ │ ├── extended.yaml │ │ ├── facet.yaml │ │ ├── facet_canon.yaml │ │ ├── facet_category.yaml │ │ ├── facet_creator.yaml │ │ ├── facet_dynasty.yaml │ │ ├── facet_work.yaml │ │ ├── footnotes-response.yaml │ │ ├── footnotes.yaml │ │ ├── kwic-parameters.yaml │ │ ├── kwic-response.yaml │ │ ├── kwic.yaml │ │ ├── parameters-filter.yaml │ │ ├── parameters-option.yaml │ │ ├── parameters.yaml │ │ ├── response.yaml │ │ ├── sc.yaml │ │ ├── semantic-response.yaml │ │ ├── semantic.yaml │ │ ├── similar-parameters.yaml │ │ ├── similar.yaml │ │ ├── synonym.yaml │ │ ├── title-response.yaml │ │ ├── title.yaml │ │ ├── toc-response-example.yaml │ │ ├── toc-response.yaml │ │ ├── toc.yaml │ │ ├── variants-response.yaml │ │ └── variants.yaml │ ├── word_seg │ │ └── _.yaml │ └── works │ │ ├── _.yaml │ │ ├── parameters.yaml │ │ ├── response.yaml │ │ ├── toc-node.yaml │ │ ├── toc-response.yaml │ │ └── toc.yaml ├── favicon.ico ├── icon.png ├── icon.svg └── robots.txt ├── test ├── application_system_test_case.rb ├── controllers │ ├── .keep │ ├── catalog_entry_controller_test.rb │ ├── chinese_tools_controller_test.rb │ ├── download_controller_test.rb │ ├── export_controller_test.rb │ ├── juans_controller_test.rb │ ├── kwic_controller_test.rb │ ├── lines_controller_test.rb │ ├── report_controller_test.rb │ ├── sphinx_controller_test.rb │ ├── static_pages_controller_test.rb │ ├── toc_node_controller_test.rb │ ├── word_seg_controller_test.rb │ └── works_controller_test.rb ├── fixtures │ ├── .keep │ ├── categories.yml │ ├── gaijis.yml │ ├── goto_abbrs.yml │ ├── juan_lines.yml │ ├── lines.yml │ ├── people.yml │ ├── terms.yml │ ├── toc_nodes.yml │ ├── variants.yml │ ├── works.yml │ └── xml_files.yml ├── helpers │ └── .keep ├── integration │ ├── .keep │ └── download_texts_test.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── category_test.rb │ ├── gaiji_test.rb │ ├── goto_abbr_test.rb │ ├── juan_line_test.rb │ ├── line_test.rb │ ├── person_test.rb │ ├── term_test.rb │ ├── toc_node_test.rb │ ├── variant_test.rb │ ├── work_test.rb │ └── xml_file_test.rb └── test_helper.rb └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 3.4.2 2 | nodejs 23.5.0 3 | -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/Capfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/download.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/assets/javascripts/download.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/juans.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/assets/javascripts/juans.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/static_pages.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/assets/javascripts/static_pages.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/download.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/assets/stylesheets/download.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/juans.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/assets/stylesheets/juans.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/canons_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/controllers/canons_controller.rb -------------------------------------------------------------------------------- /app/controllers/catalog_entry_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/controllers/catalog_entry_controller.rb -------------------------------------------------------------------------------- /app/controllers/chinese_tools_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/controllers/chinese_tools_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/concerns/cbeta_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/controllers/concerns/cbeta_string.rb -------------------------------------------------------------------------------- /app/controllers/download_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/controllers/download_controller.rb -------------------------------------------------------------------------------- /app/controllers/export_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/controllers/export_controller.rb -------------------------------------------------------------------------------- /app/controllers/juans_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/controllers/juans_controller.rb -------------------------------------------------------------------------------- /app/controllers/kwic3_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/controllers/kwic3_controller.rb -------------------------------------------------------------------------------- /app/controllers/lines_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/controllers/lines_controller.rb -------------------------------------------------------------------------------- /app/controllers/report_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/controllers/report_controller.rb -------------------------------------------------------------------------------- /app/controllers/search_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/controllers/search_controller.rb -------------------------------------------------------------------------------- /app/controllers/static_pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/controllers/static_pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/textref_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/controllers/textref_controller.rb -------------------------------------------------------------------------------- /app/controllers/toc_node_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/controllers/toc_node_controller.rb -------------------------------------------------------------------------------- /app/controllers/word_seg_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/controllers/word_seg_controller.rb -------------------------------------------------------------------------------- /app/controllers/works_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/controllers/works_controller.rb -------------------------------------------------------------------------------- /app/errors/cbeta_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/errors/cbeta_error.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/download_helper.rb: -------------------------------------------------------------------------------- 1 | module DownloadHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/export_helper.rb: -------------------------------------------------------------------------------- 1 | module ExportHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/juans_helper.rb: -------------------------------------------------------------------------------- 1 | module JuansHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/lines_helper.rb: -------------------------------------------------------------------------------- 1 | module LinesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/sphinx_helper.rb: -------------------------------------------------------------------------------- 1 | module SphinxHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/static_pages_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/helpers/static_pages_helper.rb -------------------------------------------------------------------------------- /app/helpers/toc_node_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/helpers/toc_node_helper.rb -------------------------------------------------------------------------------- /app/helpers/works_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/helpers/works_helper.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/models/README.md -------------------------------------------------------------------------------- /app/models/analytics_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/models/analytics_record.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/canon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/models/canon.rb -------------------------------------------------------------------------------- /app/models/catalog_entry.rb: -------------------------------------------------------------------------------- 1 | class CatalogEntry < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/models/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/models/category.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/gaiji.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/models/gaiji.rb -------------------------------------------------------------------------------- /app/models/goto_abbr.rb: -------------------------------------------------------------------------------- 1 | class GotoAbbr < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/models/juan_line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/models/juan_line.rb -------------------------------------------------------------------------------- /app/models/lb_map.rb: -------------------------------------------------------------------------------- 1 | class LbMap < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/models/line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/models/line.rb -------------------------------------------------------------------------------- /app/models/person.rb: -------------------------------------------------------------------------------- 1 | class Person < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /app/models/place.rb: -------------------------------------------------------------------------------- 1 | class Place < ActiveRecord::Base 2 | has_and_belongs_to_many :works 3 | end 4 | -------------------------------------------------------------------------------- /app/models/term.rb: -------------------------------------------------------------------------------- 1 | class Term < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /app/models/toc_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/models/toc_node.rb -------------------------------------------------------------------------------- /app/models/variant.rb: -------------------------------------------------------------------------------- 1 | class Variant < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /app/models/visit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/models/visit.rb -------------------------------------------------------------------------------- /app/models/work.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/models/work.rb -------------------------------------------------------------------------------- /app/models/xml_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/models/xml_file.rb -------------------------------------------------------------------------------- /app/services/authority_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/services/authority_service.rb -------------------------------------------------------------------------------- /app/services/crf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/services/crf.rb -------------------------------------------------------------------------------- /app/services/int_to_zht.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/services/int_to_zht.rb -------------------------------------------------------------------------------- /app/services/kwic_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/services/kwic_service.rb -------------------------------------------------------------------------------- /app/services/manticore_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/services/manticore_service.rb -------------------------------------------------------------------------------- /app/services/matrix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/services/matrix.rb -------------------------------------------------------------------------------- /app/services/smith_waterman.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/services/smith_waterman.rb -------------------------------------------------------------------------------- /app/services/suffix_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/services/suffix_info.rb -------------------------------------------------------------------------------- /app/services/unicode_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/services/unicode_service.rb -------------------------------------------------------------------------------- /app/services/word_seg_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/services/word_seg_service.rb -------------------------------------------------------------------------------- /app/views/juans/index.html.erb: -------------------------------------------------------------------------------- 1 | <%= response %> -------------------------------------------------------------------------------- /app/views/layouts/_navbar_catalog.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/layouts/_navbar_catalog.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_sidebar.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/layouts/_sidebar.haml -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/report/_datepicker.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/report/_datepicker.haml -------------------------------------------------------------------------------- /app/views/report/daily.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/report/daily.haml -------------------------------------------------------------------------------- /app/views/report/index.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/report/index.haml -------------------------------------------------------------------------------- /app/views/report/referer.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/report/referer.haml -------------------------------------------------------------------------------- /app/views/report/url.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/report/url.haml -------------------------------------------------------------------------------- /app/views/static_pages/_arg-cache.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_arg-cache.haml -------------------------------------------------------------------------------- /app/views/static_pages/_catalog-return.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_catalog-return.haml -------------------------------------------------------------------------------- /app/views/static_pages/_goto-linehead.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_goto-linehead.haml -------------------------------------------------------------------------------- /app/views/static_pages/_html-for-ui-byline.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_html-for-ui-byline.haml -------------------------------------------------------------------------------- /app/views/static_pages/_html-for-ui-classes.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_html-for-ui-classes.haml -------------------------------------------------------------------------------- /app/views/static_pages/_html-for-ui-copyright.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_html-for-ui-copyright.haml -------------------------------------------------------------------------------- /app/views/static_pages/_html-for-ui-facsimile.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_html-for-ui-facsimile.haml -------------------------------------------------------------------------------- /app/views/static_pages/_html-for-ui-gaiji.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_html-for-ui-gaiji.haml -------------------------------------------------------------------------------- /app/views/static_pages/_html-for-ui-graphic.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_html-for-ui-graphic.haml -------------------------------------------------------------------------------- /app/views/static_pages/_html-for-ui-head.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_html-for-ui-head.haml -------------------------------------------------------------------------------- /app/views/static_pages/_html-for-ui-juan.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_html-for-ui-juan.haml -------------------------------------------------------------------------------- /app/views/static_pages/_html-for-ui-lg.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_html-for-ui-lg.haml -------------------------------------------------------------------------------- /app/views/static_pages/_html-for-ui-linehead.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_html-for-ui-linehead.haml -------------------------------------------------------------------------------- /app/views/static_pages/_html-for-ui-link.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_html-for-ui-link.haml -------------------------------------------------------------------------------- /app/views/static_pages/_html-for-ui-note.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_html-for-ui-note.haml -------------------------------------------------------------------------------- /app/views/static_pages/_html-for-ui-p.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_html-for-ui-p.haml -------------------------------------------------------------------------------- /app/views/static_pages/_html-for-ui-person.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_html-for-ui-person.haml -------------------------------------------------------------------------------- /app/views/static_pages/_html-for-ui-place.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_html-for-ui-place.haml -------------------------------------------------------------------------------- /app/views/static_pages/_html-for-ui-punc.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_html-for-ui-punc.haml -------------------------------------------------------------------------------- /app/views/static_pages/_html-for-ui-table.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_html-for-ui-table.haml -------------------------------------------------------------------------------- /app/views/static_pages/_html-for-ui-text.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_html-for-ui-text.haml -------------------------------------------------------------------------------- /app/views/static_pages/_search-aio-q.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_search-aio-q.haml -------------------------------------------------------------------------------- /app/views/static_pages/_search-aio-return.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_search-aio-return.haml -------------------------------------------------------------------------------- /app/views/static_pages/_search-arg-paginate.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_search-arg-paginate.haml -------------------------------------------------------------------------------- /app/views/static_pages/_sphinx-aio-q.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_sphinx-aio-q.haml -------------------------------------------------------------------------------- /app/views/static_pages/_sphinx-aio-return.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/_sphinx-aio-return.haml -------------------------------------------------------------------------------- /app/views/static_pages/callback.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/callback.html.erb -------------------------------------------------------------------------------- /app/views/static_pages/catalog.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/catalog.html.haml -------------------------------------------------------------------------------- /app/views/static_pages/catalog_index.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/catalog_index.haml -------------------------------------------------------------------------------- /app/views/static_pages/categories.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/categories.html.haml -------------------------------------------------------------------------------- /app/views/static_pages/category.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/category.haml -------------------------------------------------------------------------------- /app/views/static_pages/chinese_tools.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/chinese_tools.haml -------------------------------------------------------------------------------- /app/views/static_pages/common_parameters.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/common_parameters.haml -------------------------------------------------------------------------------- /app/views/static_pages/creators.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/creators.html.haml -------------------------------------------------------------------------------- /app/views/static_pages/download.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/download.haml -------------------------------------------------------------------------------- /app/views/static_pages/download_docusky.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/download_docusky.haml -------------------------------------------------------------------------------- /app/views/static_pages/download_ebooks.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/download_ebooks.haml -------------------------------------------------------------------------------- /app/views/static_pages/download_footnotes.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/download_footnotes.haml -------------------------------------------------------------------------------- /app/views/static_pages/download_html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/download_html.haml -------------------------------------------------------------------------------- /app/views/static_pages/download_text.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/download_text.haml -------------------------------------------------------------------------------- /app/views/static_pages/editions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/editions.html.haml -------------------------------------------------------------------------------- /app/views/static_pages/export.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/export.haml -------------------------------------------------------------------------------- /app/views/static_pages/get_html.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/get_html.html.haml -------------------------------------------------------------------------------- /app/views/static_pages/goto.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/goto.html.haml -------------------------------------------------------------------------------- /app/views/static_pages/home.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/home.haml -------------------------------------------------------------------------------- /app/views/static_pages/html_for_ui.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/html_for_ui.haml -------------------------------------------------------------------------------- /app/views/static_pages/line.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/line.html.haml -------------------------------------------------------------------------------- /app/views/static_pages/log.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/log.haml -------------------------------------------------------------------------------- /app/views/static_pages/log_old.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/log_old.html.haml -------------------------------------------------------------------------------- /app/views/static_pages/report.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/report.haml -------------------------------------------------------------------------------- /app/views/static_pages/rise_shine.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/rise_shine.haml -------------------------------------------------------------------------------- /app/views/static_pages/sc2tc.haml: -------------------------------------------------------------------------------- 1 | %h1 中文簡體轉繁體 2 | %p 例: #{link_to_url '/chinese_tools/sc2tc?q=简体转繁体'} -------------------------------------------------------------------------------- /app/views/static_pages/scope_selector.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/scope_selector.haml -------------------------------------------------------------------------------- /app/views/static_pages/search.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/search.haml -------------------------------------------------------------------------------- /app/views/static_pages/search_all_in_one.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/search_all_in_one.haml -------------------------------------------------------------------------------- /app/views/static_pages/search_extended.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/search_extended.haml -------------------------------------------------------------------------------- /app/views/static_pages/search_facet.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/search_facet.haml -------------------------------------------------------------------------------- /app/views/static_pages/search_filter.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/search_filter.haml -------------------------------------------------------------------------------- /app/views/static_pages/search_index.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/search_index.haml -------------------------------------------------------------------------------- /app/views/static_pages/search_kwic.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/search_kwic.haml -------------------------------------------------------------------------------- /app/views/static_pages/search_notes.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/search_notes.haml -------------------------------------------------------------------------------- /app/views/static_pages/search_sc.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/search_sc.haml -------------------------------------------------------------------------------- /app/views/static_pages/search_similar.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/search_similar.haml -------------------------------------------------------------------------------- /app/views/static_pages/search_synonym.haml: -------------------------------------------------------------------------------- 1 | %h1 近義詞 搜尋 2 | 3 | %p 例: #{link_to_url '/search/synonym?q=文殊師利'} 4 | -------------------------------------------------------------------------------- /app/views/static_pages/search_title.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/search_title.haml -------------------------------------------------------------------------------- /app/views/static_pages/search_toc.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/search_toc.html.haml -------------------------------------------------------------------------------- /app/views/static_pages/search_vars.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/search_vars.haml -------------------------------------------------------------------------------- /app/views/static_pages/time.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/time.html.haml -------------------------------------------------------------------------------- /app/views/static_pages/toc.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/toc.html.haml -------------------------------------------------------------------------------- /app/views/static_pages/word_count.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/word_count.html.haml -------------------------------------------------------------------------------- /app/views/static_pages/word_seg.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/word_seg.html.haml -------------------------------------------------------------------------------- /app/views/static_pages/work.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/work.html.haml -------------------------------------------------------------------------------- /app/views/static_pages/work_index.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/work_index.haml -------------------------------------------------------------------------------- /app/views/static_pages/works.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/static_pages/works.html.haml -------------------------------------------------------------------------------- /app/views/textref/meta.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/textref/meta.csv -------------------------------------------------------------------------------- /app/views/word_seg/index.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/app/views/word_seg/index.haml -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/bin/update -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/category-id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/category-id.json -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/credentials/cn.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/credentials/cn.yml.enc -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /config/deploy/cn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/deploy/cn.rb -------------------------------------------------------------------------------- /config/deploy/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/deploy/production.rb -------------------------------------------------------------------------------- /config/deploy/sakya.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/deploy/sakya.rb -------------------------------------------------------------------------------- /config/deploy/staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/deploy/staging.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/cn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/environments/cn.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/environments/staging.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/new_framework_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/initializers/new_framework_defaults.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/config/storage.yml -------------------------------------------------------------------------------- /data-static/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/categories.json -------------------------------------------------------------------------------- /data-static/dynasty-order.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/dynasty-order.csv -------------------------------------------------------------------------------- /data-static/facsimile/JM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/facsimile/JM.json -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA009/GA009n0008.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA009/GA009n0008.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA010/GA010n0009.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA010/GA010n0009.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA011/GA011n0010.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA011/GA011n0010.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA012/GA012n0010.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA012/GA012n0010.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA012/GA012n0011.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA012/GA012n0011.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA020/GA020n0017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA020/GA020n0017.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA031/GA031n0032.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA031/GA031n0032.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA032/GA032n0032.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA032/GA032n0032.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA043/GA043n0043.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA043/GA043n0043.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA045/GA045n0049.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA045/GA045n0049.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA058/GA058n0062.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA058/GA058n0062.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA072/GA072n0077.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA072/GA072n0077.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA079/GA079n0081.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA079/GA079n0081.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA081/GA081n0084.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA081/GA081n0084.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA082/GA082n0084.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA082/GA082n0084.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA084/GA084n0086.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA084/GA084n0086.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA088/GA088n0089.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA088/GA088n0089.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA089/GA089n0089.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA089/GA089n0089.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GA/GA090/GA090n0089.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GA/GA090/GA090n0089.csv -------------------------------------------------------------------------------- /data-static/layers/fosizhi/GB/GB078/GB078n0109.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/layers/fosizhi/GB/GB078/GB078n0109.csv -------------------------------------------------------------------------------- /data-static/schema/xml4docx.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/schema/xml4docx.rnc -------------------------------------------------------------------------------- /data-static/synonym.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/synonym.txt -------------------------------------------------------------------------------- /data-static/uuid/canons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/uuid/canons.json -------------------------------------------------------------------------------- /data-static/uuid/juans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/uuid/juans.json -------------------------------------------------------------------------------- /data-static/uuid/works.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/data-static/uuid/works.json -------------------------------------------------------------------------------- /db/analytics_migrate/20201110030553_create_visits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/db/analytics_migrate/20201110030553_create_visits.rb -------------------------------------------------------------------------------- /db/analytics_migrate/20220923035010_add_referer_to_visits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/db/analytics_migrate/20220923035010_add_referer_to_visits.rb -------------------------------------------------------------------------------- /db/analytics_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/db/analytics_schema.rb -------------------------------------------------------------------------------- /db/migrate/20190528080916_create_all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/db/migrate/20190528080916_create_all.rb -------------------------------------------------------------------------------- /db/migrate/20211215083341_add_lb_end_to_juanlines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/db/migrate/20211215083341_add_lb_end_to_juanlines.rb -------------------------------------------------------------------------------- /db/migrate/20221205031807_create_places.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/db/migrate/20221205031807_create_places.rb -------------------------------------------------------------------------------- /db/migrate/20230218080626_add_sort_to_catalog_entries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/db/migrate/20230218080626_add_sort_to_catalog_entries.rb -------------------------------------------------------------------------------- /db/migrate/20230607054229_add_service_name_to_active_storage_blobs.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/db/migrate/20230607054229_add_service_name_to_active_storage_blobs.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20230607054230_create_active_storage_variant_records.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/db/migrate/20230607054230_create_active_storage_variant_records.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20240222014726_add_vol_to_lines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/db/migrate/20240222014726_add_vol_to_lines.rb -------------------------------------------------------------------------------- /db/migrate/20240318074051_add_pua_to_gaijis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/db/migrate/20240318074051_add_pua_to_gaijis.rb -------------------------------------------------------------------------------- /db/migrate/20241112055713_remove_not_null_on_active_storage_blobs_checksum.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/db/migrate/20241112055713_remove_not_null_on_active_storage_blobs_checksum.active_storage.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/Quarterly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/Quarterly.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/apache2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/apache2.md -------------------------------------------------------------------------------- /doc/cbeta-change-log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/cbeta-change-log.md -------------------------------------------------------------------------------- /doc/cbeta-xml-p5a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/cbeta-xml-p5a.md -------------------------------------------------------------------------------- /doc/cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/cn.md -------------------------------------------------------------------------------- /doc/convert-for-download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/convert-for-download.md -------------------------------------------------------------------------------- /doc/deploy-rails-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/deploy-rails-project.md -------------------------------------------------------------------------------- /doc/dev-mac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/dev-mac.md -------------------------------------------------------------------------------- /doc/docx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/docx.md -------------------------------------------------------------------------------- /doc/ebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/ebook.md -------------------------------------------------------------------------------- /doc/https.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/https.md -------------------------------------------------------------------------------- /doc/import-layers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/import-layers.md -------------------------------------------------------------------------------- /doc/juan-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/juan-line.md -------------------------------------------------------------------------------- /doc/kwic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/kwic.md -------------------------------------------------------------------------------- /doc/mirror.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/mirror.md -------------------------------------------------------------------------------- /doc/new-rails-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/new-rails-project.md -------------------------------------------------------------------------------- /doc/new-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/new-works.md -------------------------------------------------------------------------------- /doc/nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/nginx.md -------------------------------------------------------------------------------- /doc/postgresql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/postgresql.md -------------------------------------------------------------------------------- /doc/prepare-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/prepare-files.md -------------------------------------------------------------------------------- /doc/rails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/rails.md -------------------------------------------------------------------------------- /doc/rdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/rdb.md -------------------------------------------------------------------------------- /doc/remove-old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/remove-old.md -------------------------------------------------------------------------------- /doc/rvm.md: -------------------------------------------------------------------------------- 1 | # upgrade 2 | 3 | $ \curl -sSL https://get.rvm.io | sudo bash -s stable -------------------------------------------------------------------------------- /doc/server-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/server-setup.md -------------------------------------------------------------------------------- /doc/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/setup.md -------------------------------------------------------------------------------- /doc/sphinx-build-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/sphinx-build-index.md -------------------------------------------------------------------------------- /doc/sphinx-mac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/sphinx-mac.md -------------------------------------------------------------------------------- /doc/sphinx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/sphinx.md -------------------------------------------------------------------------------- /doc/sphinx3-ubuntu20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/sphinx3-ubuntu20.md -------------------------------------------------------------------------------- /doc/staging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/staging.md -------------------------------------------------------------------------------- /doc/trouble-shooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/trouble-shooting.md -------------------------------------------------------------------------------- /doc/update-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/update-github.md -------------------------------------------------------------------------------- /doc/uuid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/uuid.md -------------------------------------------------------------------------------- /doc/variants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/doc/variants.md -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/README.md: -------------------------------------------------------------------------------- 1 | # Tasks 2 | 3 | ## 匯入佛典資訊 4 | 5 | 包含作譯者資料 6 | rake import:work_info 7 | -------------------------------------------------------------------------------- /lib/tasks/cbeta-module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/cbeta-module.rb -------------------------------------------------------------------------------- /lib/tasks/cbeta_p5a_share.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/cbeta_p5a_share.rb -------------------------------------------------------------------------------- /lib/tasks/check.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/check.rake -------------------------------------------------------------------------------- /lib/tasks/check_authority.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/check_authority.rb -------------------------------------------------------------------------------- /lib/tasks/check_covers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/check_covers.rb -------------------------------------------------------------------------------- /lib/tasks/check_gaiji.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/check_gaiji.rb -------------------------------------------------------------------------------- /lib/tasks/check_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/check_metadata.rb -------------------------------------------------------------------------------- /lib/tasks/check_xml4docx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/check_xml4docx.rb -------------------------------------------------------------------------------- /lib/tasks/convert.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/convert.rake -------------------------------------------------------------------------------- /lib/tasks/convert_docusky.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/convert_docusky.rb -------------------------------------------------------------------------------- /lib/tasks/convert_seg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/convert_seg.rb -------------------------------------------------------------------------------- /lib/tasks/convert_toc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/convert_toc.rb -------------------------------------------------------------------------------- /lib/tasks/convert_x2h.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/convert_x2h.rb -------------------------------------------------------------------------------- /lib/tasks/convert_x2h_for_download.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/convert_x2h_for_download.rb -------------------------------------------------------------------------------- /lib/tasks/convert_x2t4d2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/convert_x2t4d2.rb -------------------------------------------------------------------------------- /lib/tasks/convert_x2t_for_download.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/convert_x2t_for_download.rb -------------------------------------------------------------------------------- /lib/tasks/convert_xml4docx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/convert_xml4docx.rb -------------------------------------------------------------------------------- /lib/tasks/create.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/create.rake -------------------------------------------------------------------------------- /lib/tasks/create_creators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/create_creators.rb -------------------------------------------------------------------------------- /lib/tasks/create_uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/create_uuid.rb -------------------------------------------------------------------------------- /lib/tasks/css_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/css_parser.rb -------------------------------------------------------------------------------- /lib/tasks/custom.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/custom.rake -------------------------------------------------------------------------------- /lib/tasks/download.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/download.rake -------------------------------------------------------------------------------- /lib/tasks/download_ebooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/download_ebooks.rb -------------------------------------------------------------------------------- /lib/tasks/export.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/export.rake -------------------------------------------------------------------------------- /lib/tasks/export_visits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/export_visits.rb -------------------------------------------------------------------------------- /lib/tasks/html-node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/html-node.rb -------------------------------------------------------------------------------- /lib/tasks/import.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/import.rake -------------------------------------------------------------------------------- /lib/tasks/import_canons.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/import_canons.rb -------------------------------------------------------------------------------- /lib/tasks/import_catalog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/import_catalog.rb -------------------------------------------------------------------------------- /lib/tasks/import_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/import_category.rb -------------------------------------------------------------------------------- /lib/tasks/import_gaiji.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/import_gaiji.rb -------------------------------------------------------------------------------- /lib/tasks/import_goto_abbrs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/import_goto_abbrs.rb -------------------------------------------------------------------------------- /lib/tasks/import_jinglu_editors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/import_jinglu_editors.rb -------------------------------------------------------------------------------- /lib/tasks/import_juan_line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/import_juan_line.rb -------------------------------------------------------------------------------- /lib/tasks/import_layers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/import_layers.rb -------------------------------------------------------------------------------- /lib/tasks/import_lb_maps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/import_lb_maps.rb -------------------------------------------------------------------------------- /lib/tasks/import_lines-multi-edition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/import_lines-multi-edition.rb -------------------------------------------------------------------------------- /lib/tasks/import_lines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/import_lines.rb -------------------------------------------------------------------------------- /lib/tasks/import_synonym.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/import_synonym.rb -------------------------------------------------------------------------------- /lib/tasks/import_toc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/import_toc.rb -------------------------------------------------------------------------------- /lib/tasks/import_vars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/import_vars.rb -------------------------------------------------------------------------------- /lib/tasks/import_visits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/import_visits.rb -------------------------------------------------------------------------------- /lib/tasks/import_work_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/import_work_info.rb -------------------------------------------------------------------------------- /lib/tasks/kwic-builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/kwic-builder.rb -------------------------------------------------------------------------------- /lib/tasks/kwic-h2t.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/kwic-h2t.rb -------------------------------------------------------------------------------- /lib/tasks/kwic-rotate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/kwic-rotate.rb -------------------------------------------------------------------------------- /lib/tasks/kwic-sa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/kwic-sa.rb -------------------------------------------------------------------------------- /lib/tasks/kwic-sort-info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/kwic-sort-info.rb -------------------------------------------------------------------------------- /lib/tasks/kwic-test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/kwic-test.rb -------------------------------------------------------------------------------- /lib/tasks/kwic-x2h.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/kwic-x2h.rb -------------------------------------------------------------------------------- /lib/tasks/kwic.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/kwic.rake -------------------------------------------------------------------------------- /lib/tasks/layers-ignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/layers-ignore.txt -------------------------------------------------------------------------------- /lib/tasks/manticore-chunks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/manticore-chunks.rb -------------------------------------------------------------------------------- /lib/tasks/manticore-notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/manticore-notes.rb -------------------------------------------------------------------------------- /lib/tasks/manticore-t2x.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/manticore-t2x.rb -------------------------------------------------------------------------------- /lib/tasks/manticore-titles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/manticore-titles.rb -------------------------------------------------------------------------------- /lib/tasks/manticore.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/manticore.rake -------------------------------------------------------------------------------- /lib/tasks/quarterly.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly.rake -------------------------------------------------------------------------------- /lib/tasks/quarterly/cbeta_epub2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/cbeta_epub2.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/change-log-cat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/change-log-cat.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/change-log-font.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/change-log-font.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/changelog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/changelog.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/check-new-canon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/check-new-canon.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/config.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/diff-to-html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/diff-to-html.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/epub-main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/epub-main.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/epub-template/content.opf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/epub-template/content.opf.erb -------------------------------------------------------------------------------- /lib/tasks/quarterly/epub-template/donate.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/epub-template/donate.xhtml -------------------------------------------------------------------------------- /lib/tasks/quarterly/epub-template/epub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/epub-template/epub.css -------------------------------------------------------------------------------- /lib/tasks/quarterly/epub-template/readme.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/epub-template/readme.xhtml -------------------------------------------------------------------------------- /lib/tasks/quarterly/epub-template/titlepage.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/epub-template/titlepage.xhtml -------------------------------------------------------------------------------- /lib/tasks/quarterly/epub-template/toc.ncx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/epub-template/toc.ncx.erb -------------------------------------------------------------------------------- /lib/tasks/quarterly/html-node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/html-node.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/juanline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/juanline.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/manticore-template-chunks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/manticore-template-chunks.conf -------------------------------------------------------------------------------- /lib/tasks/quarterly/manticore-template-notes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/manticore-template-notes.conf -------------------------------------------------------------------------------- /lib/tasks/quarterly/manticore-template-text.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/manticore-template-text.conf -------------------------------------------------------------------------------- /lib/tasks/quarterly/manticore-template-titles.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/manticore-template-titles.conf -------------------------------------------------------------------------------- /lib/tasks/quarterly/mobi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/mobi.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/p5a_to_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/p5a_to_text.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/quarterly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/quarterly.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/runbook-ebook-cn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/runbook-ebook-cn.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/runbook-ebook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/runbook-ebook.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/runbook-prepare-cn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/runbook-prepare-cn.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/runbook-sphinx-cn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/runbook-sphinx-cn.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/section-change-log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/section-change-log.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/section-check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/section-check.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/section-convert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/section-convert.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/section-download-ebooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/section-download-ebooks.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/section-html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/section-html.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/section-kwic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/section-kwic.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/section-manticore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/section-manticore.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/section-prepare.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/section-prepare.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/section-rdb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/section-rdb.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/section-sphinx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/section-sphinx.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly/sphinx-template-chunks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/sphinx-template-chunks.conf -------------------------------------------------------------------------------- /lib/tasks/quarterly/sphinx-template-notes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/sphinx-template-notes.conf -------------------------------------------------------------------------------- /lib/tasks/quarterly/sphinx-template-text.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/sphinx-template-text.conf -------------------------------------------------------------------------------- /lib/tasks/quarterly/sphinx-template-titles.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/sphinx-template-titles.conf -------------------------------------------------------------------------------- /lib/tasks/quarterly/update-github.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly/update-github.rb -------------------------------------------------------------------------------- /lib/tasks/quarterly_cn.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/quarterly_cn.rake -------------------------------------------------------------------------------- /lib/tasks/sa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/sa.cpp -------------------------------------------------------------------------------- /lib/tasks/share.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/share.rb -------------------------------------------------------------------------------- /lib/tasks/sphinx-notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/sphinx-notes.rb -------------------------------------------------------------------------------- /lib/tasks/sphinx-share.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/sphinx-share.rb -------------------------------------------------------------------------------- /lib/tasks/sphinx-t2x.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/sphinx-t2x.rb -------------------------------------------------------------------------------- /lib/tasks/sphinx-titles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/sphinx-titles.rb -------------------------------------------------------------------------------- /lib/tasks/sphinx.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/sphinx.rake -------------------------------------------------------------------------------- /lib/tasks/update.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/update.rake -------------------------------------------------------------------------------- /lib/tasks/x2h_for_download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/x2h_for_download.html -------------------------------------------------------------------------------- /lib/tasks/x2h_for_download.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/x2h_for_download.rb -------------------------------------------------------------------------------- /lib/tasks/x2h_for_ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/x2h_for_ui.rb -------------------------------------------------------------------------------- /lib/tasks/x2h_share.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/x2h_share.rb -------------------------------------------------------------------------------- /lib/tasks/x2t_for_download.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/x2t_for_download.rb -------------------------------------------------------------------------------- /lib/tasks/x2t_for_manticore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/x2t_for_manticore.rb -------------------------------------------------------------------------------- /lib/tasks/x2t_for_sphinx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/x2t_for_sphinx.rb -------------------------------------------------------------------------------- /lib/tasks/x2x_for_docusky.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/x2x_for_docusky.rb -------------------------------------------------------------------------------- /lib/tasks/xml4docx-styles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/xml4docx-styles.yaml -------------------------------------------------------------------------------- /lib/tasks/xml4docx1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/xml4docx1.rb -------------------------------------------------------------------------------- /lib/tasks/xml4docx2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/lib/tasks/xml4docx2.rb -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/400.html -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/404.html -------------------------------------------------------------------------------- /public/406-unsupported-browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/406-unsupported-browser.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/500.html -------------------------------------------------------------------------------- /public/api-docs/api/collections.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/api/collections.yaml -------------------------------------------------------------------------------- /public/api-docs/api/collections_x_resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/api/collections_x_resources.yaml -------------------------------------------------------------------------------- /public/api-docs/api/resources_x_sections.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/api/resources_x_sections.yaml -------------------------------------------------------------------------------- /public/api-docs/api/sections_x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/api/sections_x.yaml -------------------------------------------------------------------------------- /public/api-docs/api/sections_x_content_units.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/api/sections_x_content_units.yaml -------------------------------------------------------------------------------- /public/api-docs/catalog_entry/_.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/catalog_entry/_.yaml -------------------------------------------------------------------------------- /public/api-docs/catalog_entry/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/catalog_entry/parameters.yaml -------------------------------------------------------------------------------- /public/api-docs/catalog_entry/response-examples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/catalog_entry/response-examples.yaml -------------------------------------------------------------------------------- /public/api-docs/catalog_entry/response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/catalog_entry/response.yaml -------------------------------------------------------------------------------- /public/api-docs/chinese_tools/sc2tc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/chinese_tools/sc2tc.yaml -------------------------------------------------------------------------------- /public/api-docs/common/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/common/resources.yaml -------------------------------------------------------------------------------- /public/api-docs/download/docusky.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/download/docusky.yaml -------------------------------------------------------------------------------- /public/api-docs/download/epub-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/download/epub-all.yaml -------------------------------------------------------------------------------- /public/api-docs/download/epub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/download/epub.yaml -------------------------------------------------------------------------------- /public/api-docs/download/footnotes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/download/footnotes.yaml -------------------------------------------------------------------------------- /public/api-docs/download/html_work.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/download/html_work.yaml -------------------------------------------------------------------------------- /public/api-docs/download/html_work_juan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/download/html_work_juan.yaml -------------------------------------------------------------------------------- /public/api-docs/download/mobi-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/download/mobi-all.yaml -------------------------------------------------------------------------------- /public/api-docs/download/mobi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/download/mobi.yaml -------------------------------------------------------------------------------- /public/api-docs/download/pdf-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/download/pdf-all.yaml -------------------------------------------------------------------------------- /public/api-docs/download/pdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/download/pdf.yaml -------------------------------------------------------------------------------- /public/api-docs/download/text.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/download/text.yaml -------------------------------------------------------------------------------- /public/api-docs/export-all_creators-response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/export-all_creators-response.yaml -------------------------------------------------------------------------------- /public/api-docs/export/all-creators.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/export/all-creators.yaml -------------------------------------------------------------------------------- /public/api-docs/export/all_creators2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/export/all_creators2.yaml -------------------------------------------------------------------------------- /public/api-docs/export/all_works.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/export/all_works.yaml -------------------------------------------------------------------------------- /public/api-docs/export/check_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/export/check_list.yaml -------------------------------------------------------------------------------- /public/api-docs/export/creator_strokes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/export/creator_strokes.yaml -------------------------------------------------------------------------------- /public/api-docs/export/creator_strokes_works.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/export/creator_strokes_works.yaml -------------------------------------------------------------------------------- /public/api-docs/export/dynasty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/export/dynasty.yaml -------------------------------------------------------------------------------- /public/api-docs/export/dynasty_works.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/export/dynasty_works.yaml -------------------------------------------------------------------------------- /public/api-docs/export/scope_selector_by_category.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/export/scope_selector_by_category.yaml -------------------------------------------------------------------------------- /public/api-docs/export/scope_selector_by_vol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/export/scope_selector_by_vol.yaml -------------------------------------------------------------------------------- /public/api-docs/juans/_.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/juans/_.yaml -------------------------------------------------------------------------------- /public/api-docs/juans/goto-parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/juans/goto-parameters.yaml -------------------------------------------------------------------------------- /public/api-docs/juans/goto-response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/juans/goto-response.yaml -------------------------------------------------------------------------------- /public/api-docs/juans/goto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/juans/goto.md -------------------------------------------------------------------------------- /public/api-docs/juans/goto.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/juans/goto.yaml -------------------------------------------------------------------------------- /public/api-docs/juans/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/juans/parameters.yaml -------------------------------------------------------------------------------- /public/api-docs/juans/response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/juans/response.yaml -------------------------------------------------------------------------------- /public/api-docs/lines/_.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/lines/_.yaml -------------------------------------------------------------------------------- /public/api-docs/lines/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/lines/parameters.yaml -------------------------------------------------------------------------------- /public/api-docs/lines/response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/lines/response.yaml -------------------------------------------------------------------------------- /public/api-docs/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/openapi.yaml -------------------------------------------------------------------------------- /public/api-docs/search/_.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/_.yaml -------------------------------------------------------------------------------- /public/api-docs/search/all_in_one.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/all_in_one.yaml -------------------------------------------------------------------------------- /public/api-docs/search/extended.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/extended.yaml -------------------------------------------------------------------------------- /public/api-docs/search/facet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/facet.yaml -------------------------------------------------------------------------------- /public/api-docs/search/facet_canon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/facet_canon.yaml -------------------------------------------------------------------------------- /public/api-docs/search/facet_category.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/facet_category.yaml -------------------------------------------------------------------------------- /public/api-docs/search/facet_creator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/facet_creator.yaml -------------------------------------------------------------------------------- /public/api-docs/search/facet_dynasty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/facet_dynasty.yaml -------------------------------------------------------------------------------- /public/api-docs/search/facet_work.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/facet_work.yaml -------------------------------------------------------------------------------- /public/api-docs/search/footnotes-response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/footnotes-response.yaml -------------------------------------------------------------------------------- /public/api-docs/search/footnotes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/footnotes.yaml -------------------------------------------------------------------------------- /public/api-docs/search/kwic-parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/kwic-parameters.yaml -------------------------------------------------------------------------------- /public/api-docs/search/kwic-response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/kwic-response.yaml -------------------------------------------------------------------------------- /public/api-docs/search/kwic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/kwic.yaml -------------------------------------------------------------------------------- /public/api-docs/search/parameters-filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/parameters-filter.yaml -------------------------------------------------------------------------------- /public/api-docs/search/parameters-option.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/parameters-option.yaml -------------------------------------------------------------------------------- /public/api-docs/search/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/parameters.yaml -------------------------------------------------------------------------------- /public/api-docs/search/response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/response.yaml -------------------------------------------------------------------------------- /public/api-docs/search/sc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/sc.yaml -------------------------------------------------------------------------------- /public/api-docs/search/semantic-response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/semantic-response.yaml -------------------------------------------------------------------------------- /public/api-docs/search/semantic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/semantic.yaml -------------------------------------------------------------------------------- /public/api-docs/search/similar-parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/similar-parameters.yaml -------------------------------------------------------------------------------- /public/api-docs/search/similar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/similar.yaml -------------------------------------------------------------------------------- /public/api-docs/search/synonym.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/synonym.yaml -------------------------------------------------------------------------------- /public/api-docs/search/title-response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/title-response.yaml -------------------------------------------------------------------------------- /public/api-docs/search/title.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/title.yaml -------------------------------------------------------------------------------- /public/api-docs/search/toc-response-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/toc-response-example.yaml -------------------------------------------------------------------------------- /public/api-docs/search/toc-response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/toc-response.yaml -------------------------------------------------------------------------------- /public/api-docs/search/toc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/toc.yaml -------------------------------------------------------------------------------- /public/api-docs/search/variants-response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/variants-response.yaml -------------------------------------------------------------------------------- /public/api-docs/search/variants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/search/variants.yaml -------------------------------------------------------------------------------- /public/api-docs/word_seg/_.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/word_seg/_.yaml -------------------------------------------------------------------------------- /public/api-docs/works/_.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/works/_.yaml -------------------------------------------------------------------------------- /public/api-docs/works/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/works/parameters.yaml -------------------------------------------------------------------------------- /public/api-docs/works/response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/works/response.yaml -------------------------------------------------------------------------------- /public/api-docs/works/toc-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/works/toc-node.yaml -------------------------------------------------------------------------------- /public/api-docs/works/toc-response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/works/toc-response.yaml -------------------------------------------------------------------------------- /public/api-docs/works/toc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/api-docs/works/toc.yaml -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/icon.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/public/robots.txt -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/catalog_entry_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/controllers/catalog_entry_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/chinese_tools_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/controllers/chinese_tools_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/download_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/controllers/download_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/export_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/controllers/export_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/juans_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/controllers/juans_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/kwic_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/controllers/kwic_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/lines_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/controllers/lines_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/report_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/controllers/report_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/sphinx_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/controllers/sphinx_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/static_pages_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/controllers/static_pages_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/toc_node_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/controllers/toc_node_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/word_seg_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/controllers/word_seg_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/works_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/controllers/works_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/fixtures/categories.yml -------------------------------------------------------------------------------- /test/fixtures/gaijis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/fixtures/gaijis.yml -------------------------------------------------------------------------------- /test/fixtures/goto_abbrs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/fixtures/goto_abbrs.yml -------------------------------------------------------------------------------- /test/fixtures/juan_lines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/fixtures/juan_lines.yml -------------------------------------------------------------------------------- /test/fixtures/lines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/fixtures/lines.yml -------------------------------------------------------------------------------- /test/fixtures/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/fixtures/people.yml -------------------------------------------------------------------------------- /test/fixtures/terms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/fixtures/terms.yml -------------------------------------------------------------------------------- /test/fixtures/toc_nodes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/fixtures/toc_nodes.yml -------------------------------------------------------------------------------- /test/fixtures/variants.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/fixtures/variants.yml -------------------------------------------------------------------------------- /test/fixtures/works.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/fixtures/works.yml -------------------------------------------------------------------------------- /test/fixtures/xml_files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/fixtures/xml_files.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/download_texts_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/integration/download_texts_test.rb -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/category_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/models/category_test.rb -------------------------------------------------------------------------------- /test/models/gaiji_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/models/gaiji_test.rb -------------------------------------------------------------------------------- /test/models/goto_abbr_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/models/goto_abbr_test.rb -------------------------------------------------------------------------------- /test/models/juan_line_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/models/juan_line_test.rb -------------------------------------------------------------------------------- /test/models/line_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/models/line_test.rb -------------------------------------------------------------------------------- /test/models/person_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/models/person_test.rb -------------------------------------------------------------------------------- /test/models/term_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/models/term_test.rb -------------------------------------------------------------------------------- /test/models/toc_node_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/models/toc_node_test.rb -------------------------------------------------------------------------------- /test/models/variant_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/models/variant_test.rb -------------------------------------------------------------------------------- /test/models/work_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/models/work_test.rb -------------------------------------------------------------------------------- /test/models/xml_file_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/models/xml_file_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DILA-edu/cbeta-api/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------