├── .bundle └── config ├── .gitignore ├── 47810.lock ├── Gemfile ├── Gemfile.lock ├── README ├── README.md ├── README.rdoc ├── Rakefile ├── app ├── assets │ ├── images │ │ └── .keep │ ├── javascripts │ │ ├── application.js │ │ └── bootstrap.js.coffee │ └── stylesheets │ │ ├── application.css │ │ ├── bootstrap_and_overrides.css.less │ │ ├── collections.css.scss │ │ ├── devise.css.scss │ │ ├── documents.css.scss │ │ ├── extract_ners.css.scss │ │ ├── extracts.css.scss │ │ ├── ners.css.scss │ │ ├── preprocesses.css.scss │ │ ├── scaffolds.css.scss │ │ ├── topic_docs.css.scss │ │ └── topics.css.scss ├── controllers │ ├── application_controller.rb │ ├── collections_controller.rb │ ├── concerns │ │ ├── .keep │ │ └── get_collection.rb │ ├── documents_controller.rb │ ├── extract_ners_controller.rb │ ├── extract_topics_controller.rb │ ├── ners_controller.rb │ ├── preprocesses_controller.rb │ ├── topic_docs_controller.rb │ └── topics_controller.rb ├── helpers │ ├── application_helper.rb │ ├── collections_helper.rb │ ├── devise_helper.rb │ ├── documents_helper.rb │ ├── extract_ners_helper.rb │ ├── extracts_helper.rb │ ├── ners_helper.rb │ ├── preprocesses_helper.rb │ ├── topic_docs_helper.rb │ └── topics_helper.rb ├── inputs │ ├── date_picker_input.rb │ ├── datetime_picker_input.rb │ └── time_picker_input.rb ├── mailers │ ├── .keep │ ├── collection_import_mailer.rb │ ├── delete_preprocess_mailer.rb │ ├── extract_ners_mailer.rb │ ├── extract_topics_mailer.rb │ └── preprocesses_mailer.rb ├── models │ ├── .keep │ ├── ability.rb │ ├── collection.rb │ ├── collection_import.rb │ ├── collection_import_bad.rb │ ├── collection_import_opts.rb │ ├── concerns │ │ └── .keep │ ├── deletepreprocess.rb │ ├── document.rb │ ├── extract_ner.rb │ ├── extract_ner_opts.rb │ ├── extract_ner_run_job.rb │ ├── extract_topic.rb │ ├── extract_topic_opts.rb │ ├── extract_topic_run_model.rb │ ├── ner.rb │ ├── preprocess.rb │ ├── preprocesscollection.rb │ ├── preprocesscollectionopts.rb │ ├── topic.rb │ ├── topic_doc.rb │ ├── topic_doc_names.rb │ ├── topic_names.rb │ ├── upload_file.rb │ ├── user.rb │ └── weirdcollection.rb └── views │ ├── collection_import_mailer │ └── import_complete.html.erb │ ├── collections │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── delete_preprocess_mailer │ └── preprocess_delete.html.erb │ ├── devise │ ├── confirmations │ │ └── new.html.erb │ ├── mailer │ │ ├── confirmation_instructions.html.erb │ │ ├── reset_password_instructions.html.erb │ │ └── unlock_instructions.html.erb │ ├── passwords │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── registrations │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── sessions │ │ └── new.html.erb │ ├── shared │ │ └── _links.html.erb │ └── unlocks │ │ └── new.html.erb │ ├── documents │ ├── index.html.erb │ └── show.html.erb │ ├── extrac_ners_mailer │ └── extract_ners_complete.html.rb │ ├── extract_ners │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── extract_topics │ ├── _form.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── extract_topics_mailer │ └── extract_topics_complete.html.erb │ ├── layouts │ ├── _errors.erb │ ├── _flash_messages.html.erb │ ├── _side_nav.html.erb │ ├── _sidenavbar.html.erb │ └── application.html.erb │ ├── ners │ ├── destroy.js.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.json.jbuilder │ ├── new.html.erb │ ├── show.html.erb │ └── show.json.jbuilder │ ├── preprocesses │ ├── _form.html.erb │ ├── index.html.erb │ └── new.html.erb │ ├── preprocesses_mailer │ └── preprocess_complete.html.erb │ ├── topic_docs │ ├── index.html.erb │ └── show.html.erb │ └── topics │ ├── destroy.js.erb │ ├── index.html.erb │ └── show.erb ├── bin ├── bundle ├── delayed_job ├── rails └── rake ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── add_static_to_friendly_id.rb │ ├── backtrace_silencers.rb │ ├── delayed_job_config.rb │ ├── delayed_job_silencer.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── friendly_id.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── paginate.rb │ ├── ranged_datetime_wrapper.rb │ ├── secret_token.rb │ ├── session_store.rb │ ├── simple_form.rb │ ├── simple_form_bootstrap.rb │ ├── validates_timeliness.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ ├── en.bootstrap.yml │ ├── en.yml │ ├── flash.en.yml │ ├── simple_form.en.yml │ └── validates_timeliness.en.yml └── routes.rb ├── db ├── migrate │ ├── 20140616190658_create_collections.rb │ ├── 20140616193939_add_source_dir_to_collections.rb │ ├── 20140616211422_remove_start_date_from_collections.rb │ ├── 20140616212211_remove_collection_id_from_collections.rb │ ├── 20140616214254_change_column_collecton_name.rb │ ├── 20140616221614_change_isdir_in_collections.rb │ ├── 20140618223053_add_processed_to_collections.rb │ ├── 20140619000009_add_orig_upload_fn_to_collections.rb │ ├── 20140623191407_create_pre_process.rb │ ├── 20140623192359_create_preassignment.rb │ ├── 20140625205628_add_belongs_to_preprocesses.rb │ ├── 20140627213117_create_extracts.rb │ ├── 20140702203107_add_mimetype_to_collections.rb │ ├── 20140707070145_create_delayed_jobs.rb │ ├── 20140707083504_add_filedir_to_preprocesses.rb │ ├── 20140707202828_add_timestamps_to_preprocesses.rb │ ├── 20140707215053_add_routine_name_to_preprocesses.rb │ ├── 20140723234945_add_status_to_preprocess.rb │ ├── 20140724005206_create_delayed_workers.rb │ ├── 20140725022217_addtfidf_opts_to_preprocesses.rb │ ├── 20140725191618_rename_extract_to_extract_topics.rb │ ├── 20140725231141_add_columns_to_extract_topics.rb │ ├── 20140725231653_create_extract_ners.rb │ ├── 20140728083234_addzerovalfortfidf.rb │ ├── 20140801094612_create_documents.rb │ ├── 20140801094713_removepreprocessindexfromextracttopics.rb │ ├── 20140801121820_maketables.rb │ ├── 20140801211401_create_ners.rb │ ├── 20140804033142_add_collection_id_to_ners.rb │ ├── 20140804204944_addextract_ner_id_to_ners.rb │ ├── 20140806234745_add_status_to_collection.rb │ ├── 20140908103852_add_sessions_table.rb │ ├── 20150301000527_devise_create_users.rb │ ├── 20150302005123_add_similar_ners.rb │ ├── 20150302032059_add_keywordsto_extract_ners.rb │ ├── 20150309195839_change_collectio_name.rb │ ├── 20150316185211_add_libserver.rb │ ├── 20150406053748_addfiletypetodocuments.rb │ ├── 20150406070438_create_friendly_id_slugs.rb │ ├── 20150406070525_addslugtocollection.rb │ ├── 20150406100843_add_slugs_to_documents.rb │ ├── 20150408100955_add_roles_to_user.rb │ └── 20150429094357_add_heartbeats.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep ├── delayed │ └── heartbeat │ │ ├── heartbeat.rb │ │ ├── plugin.rb │ │ ├── worker_heartbeat.rb │ │ └── worker_model.rb ├── file_compressers.rb ├── preprocesscollection.rb ├── preprocesscollection.rb_old ├── tasks │ └── .keep └── templates │ └── erb │ └── scaffold │ └── _form.html.erb ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── images │ ├── bancroft.gif │ ├── bancroft_library_lg.jpg │ ├── book.jpg │ ├── book2.jpg │ ├── booktry.html │ ├── paperbackground.jpg │ ├── papers.jpg │ └── papers.png ├── resources ├── get_johnm_papers.rb ├── projects └── py_scripts │ ├── extra_scripts │ ├── basic_corpus_stats.py │ ├── get_johnm_papers.rb │ ├── mystemmer.rb │ ├── test_future_and_past.rb │ ├── test_tf_idf.rb │ └── tf_idf_new.rb │ ├── keywords │ ├── .ipynb_checkpoints │ │ └── keyword_extract-checkpoint.ipynb │ ├── FoxStoplist.txt │ ├── SmartStoplist.txt │ ├── corpus_keywords.py │ ├── keyword_extract.ipynb │ ├── keyword_extractor.py │ ├── keyword_extractor.pyc │ ├── preprocess_text.py │ ├── preprocess_text.pyc │ ├── rake.py │ ├── rake.pyc │ ├── raketest.py │ └── test.py │ ├── load_mallet │ └── parse_mallet_out_new.py │ ├── nltk │ ├── pos_lookup.py │ └── string_to_int_lookup.py │ ├── stemmer_and_tagger │ ├── extra_malletcmds │ └── stemmer_and_tagger.py │ └── tfidf │ └── tfidf.py └── vendor └── assets ├── javascripts ├── .keep ├── bootstrap-datetimepicker.js └── pickers.js └── stylesheets ├── .keep ├── bootstrap-datetimepicker.css └── bootstrap-datetimepicker.min.css /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_DISABLE_SHARED_GEMS: '1' 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/.gitignore -------------------------------------------------------------------------------- /47810.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/README.md -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/assets/javascripts/bootstrap.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap_and_overrides.css.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/assets/stylesheets/bootstrap_and_overrides.css.less -------------------------------------------------------------------------------- /app/assets/stylesheets/collections.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/assets/stylesheets/collections.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/devise.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/assets/stylesheets/devise.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/documents.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/assets/stylesheets/documents.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/extract_ners.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/assets/stylesheets/extract_ners.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/extracts.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/assets/stylesheets/extracts.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/ners.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/assets/stylesheets/ners.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/preprocesses.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/assets/stylesheets/preprocesses.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/scaffolds.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/assets/stylesheets/scaffolds.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/topic_docs.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/assets/stylesheets/topic_docs.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/topics.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/assets/stylesheets/topics.css.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/collections_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/controllers/collections_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/concerns/get_collection.rb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/controllers/documents_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/controllers/documents_controller.rb -------------------------------------------------------------------------------- /app/controllers/extract_ners_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/controllers/extract_ners_controller.rb -------------------------------------------------------------------------------- /app/controllers/extract_topics_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/controllers/extract_topics_controller.rb -------------------------------------------------------------------------------- /app/controllers/ners_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/controllers/ners_controller.rb -------------------------------------------------------------------------------- /app/controllers/preprocesses_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/controllers/preprocesses_controller.rb -------------------------------------------------------------------------------- /app/controllers/topic_docs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/controllers/topic_docs_controller.rb -------------------------------------------------------------------------------- /app/controllers/topics_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/controllers/topics_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/collections_helper.rb: -------------------------------------------------------------------------------- 1 | module CollectionsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/devise_helper.rb: -------------------------------------------------------------------------------- 1 | module DeviseHelper 2 | 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/documents_helper.rb: -------------------------------------------------------------------------------- 1 | module DocumentsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/extract_ners_helper.rb: -------------------------------------------------------------------------------- 1 | module ExtractNersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/extracts_helper.rb: -------------------------------------------------------------------------------- 1 | module ExtractsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/ners_helper.rb: -------------------------------------------------------------------------------- 1 | module NersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/preprocesses_helper.rb: -------------------------------------------------------------------------------- 1 | module PreprocessesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/topic_docs_helper.rb: -------------------------------------------------------------------------------- 1 | module TopicDocsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/topics_helper.rb: -------------------------------------------------------------------------------- 1 | module TopicsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/inputs/date_picker_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/inputs/date_picker_input.rb -------------------------------------------------------------------------------- /app/inputs/datetime_picker_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/inputs/datetime_picker_input.rb -------------------------------------------------------------------------------- /app/inputs/time_picker_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/inputs/time_picker_input.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/collection_import_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/mailers/collection_import_mailer.rb -------------------------------------------------------------------------------- /app/mailers/delete_preprocess_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/mailers/delete_preprocess_mailer.rb -------------------------------------------------------------------------------- /app/mailers/extract_ners_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/mailers/extract_ners_mailer.rb -------------------------------------------------------------------------------- /app/mailers/extract_topics_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/mailers/extract_topics_mailer.rb -------------------------------------------------------------------------------- /app/mailers/preprocesses_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/mailers/preprocesses_mailer.rb -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/collection.rb -------------------------------------------------------------------------------- /app/models/collection_import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/collection_import.rb -------------------------------------------------------------------------------- /app/models/collection_import_bad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/collection_import_bad.rb -------------------------------------------------------------------------------- /app/models/collection_import_opts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/collection_import_opts.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/deletepreprocess.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/deletepreprocess.rb -------------------------------------------------------------------------------- /app/models/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/document.rb -------------------------------------------------------------------------------- /app/models/extract_ner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/extract_ner.rb -------------------------------------------------------------------------------- /app/models/extract_ner_opts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/extract_ner_opts.rb -------------------------------------------------------------------------------- /app/models/extract_ner_run_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/extract_ner_run_job.rb -------------------------------------------------------------------------------- /app/models/extract_topic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/extract_topic.rb -------------------------------------------------------------------------------- /app/models/extract_topic_opts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/extract_topic_opts.rb -------------------------------------------------------------------------------- /app/models/extract_topic_run_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/extract_topic_run_model.rb -------------------------------------------------------------------------------- /app/models/ner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/ner.rb -------------------------------------------------------------------------------- /app/models/preprocess.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/preprocess.rb -------------------------------------------------------------------------------- /app/models/preprocesscollection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/preprocesscollection.rb -------------------------------------------------------------------------------- /app/models/preprocesscollectionopts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/preprocesscollectionopts.rb -------------------------------------------------------------------------------- /app/models/topic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/topic.rb -------------------------------------------------------------------------------- /app/models/topic_doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/topic_doc.rb -------------------------------------------------------------------------------- /app/models/topic_doc_names.rb: -------------------------------------------------------------------------------- 1 | class TopicDocNames < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/models/topic_names.rb: -------------------------------------------------------------------------------- 1 | class TopicNames < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/models/upload_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/upload_file.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/weirdcollection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/models/weirdcollection.rb -------------------------------------------------------------------------------- /app/views/collection_import_mailer/import_complete.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/collection_import_mailer/import_complete.html.erb -------------------------------------------------------------------------------- /app/views/collections/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/collections/_form.html.erb -------------------------------------------------------------------------------- /app/views/collections/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/collections/edit.html.erb -------------------------------------------------------------------------------- /app/views/collections/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/collections/index.html.erb -------------------------------------------------------------------------------- /app/views/collections/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/collections/new.html.erb -------------------------------------------------------------------------------- /app/views/collections/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/collections/show.html.erb -------------------------------------------------------------------------------- /app/views/delete_preprocess_mailer/preprocess_delete.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/delete_preprocess_mailer/preprocess_delete.html.erb -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/devise/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/confirmation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/devise/mailer/confirmation_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/devise/mailer/reset_password_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/devise/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/devise/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/devise/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/devise/registrations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/devise/shared/_links.html.erb -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/views/documents/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/documents/index.html.erb -------------------------------------------------------------------------------- /app/views/documents/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/documents/show.html.erb -------------------------------------------------------------------------------- /app/views/extrac_ners_mailer/extract_ners_complete.html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/extrac_ners_mailer/extract_ners_complete.html.rb -------------------------------------------------------------------------------- /app/views/extract_ners/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/extract_ners/_form.html.erb -------------------------------------------------------------------------------- /app/views/extract_ners/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/extract_ners/edit.html.erb -------------------------------------------------------------------------------- /app/views/extract_ners/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/extract_ners/index.html.erb -------------------------------------------------------------------------------- /app/views/extract_ners/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/extract_ners/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/extract_ners/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/extract_ners/new.html.erb -------------------------------------------------------------------------------- /app/views/extract_ners/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/extract_ners/show.html.erb -------------------------------------------------------------------------------- /app/views/extract_ners/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/extract_ners/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/extract_topics/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/extract_topics/_form.html.erb -------------------------------------------------------------------------------- /app/views/extract_topics/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/extract_topics/index.html.erb -------------------------------------------------------------------------------- /app/views/extract_topics/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/extract_topics/new.html.erb -------------------------------------------------------------------------------- /app/views/extract_topics/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/extract_topics/show.html.erb -------------------------------------------------------------------------------- /app/views/extract_topics_mailer/extract_topics_complete.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/extract_topics_mailer/extract_topics_complete.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_errors.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/layouts/_errors.erb -------------------------------------------------------------------------------- /app/views/layouts/_flash_messages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/layouts/_flash_messages.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_side_nav.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/layouts/_side_nav.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_sidenavbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/layouts/_sidenavbar.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/ners/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/ners/destroy.js.erb -------------------------------------------------------------------------------- /app/views/ners/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/ners/edit.html.erb -------------------------------------------------------------------------------- /app/views/ners/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/ners/index.html.erb -------------------------------------------------------------------------------- /app/views/ners/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/ners/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/ners/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/ners/new.html.erb -------------------------------------------------------------------------------- /app/views/ners/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/ners/show.html.erb -------------------------------------------------------------------------------- /app/views/ners/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/ners/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/preprocesses/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/preprocesses/_form.html.erb -------------------------------------------------------------------------------- /app/views/preprocesses/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/preprocesses/index.html.erb -------------------------------------------------------------------------------- /app/views/preprocesses/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/preprocesses/new.html.erb -------------------------------------------------------------------------------- /app/views/preprocesses_mailer/preprocess_complete.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/preprocesses_mailer/preprocess_complete.html.erb -------------------------------------------------------------------------------- /app/views/topic_docs/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/topic_docs/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/topic_docs/show.html.erb -------------------------------------------------------------------------------- /app/views/topics/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/topics/destroy.js.erb -------------------------------------------------------------------------------- /app/views/topics/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/topics/index.html.erb -------------------------------------------------------------------------------- /app/views/topics/show.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/app/views/topics/show.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/delayed_job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/bin/delayed_job -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/bin/rake -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/add_static_to_friendly_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/initializers/add_static_to_friendly_id.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/delayed_job_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/initializers/delayed_job_config.rb -------------------------------------------------------------------------------- /config/initializers/delayed_job_silencer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/initializers/delayed_job_silencer.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/friendly_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/initializers/friendly_id.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/paginate.rb: -------------------------------------------------------------------------------- 1 | require 'will_paginate/array' 2 | -------------------------------------------------------------------------------- /config/initializers/ranged_datetime_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/initializers/ranged_datetime_wrapper.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/simple_form_bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/initializers/simple_form_bootstrap.rb -------------------------------------------------------------------------------- /config/initializers/validates_timeliness.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/initializers/validates_timeliness.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/locales/en.bootstrap.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/flash.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/locales/flash.en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/locales/validates_timeliness.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/locales/validates_timeliness.en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/20140616190658_create_collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140616190658_create_collections.rb -------------------------------------------------------------------------------- /db/migrate/20140616193939_add_source_dir_to_collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140616193939_add_source_dir_to_collections.rb -------------------------------------------------------------------------------- /db/migrate/20140616211422_remove_start_date_from_collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140616211422_remove_start_date_from_collections.rb -------------------------------------------------------------------------------- /db/migrate/20140616212211_remove_collection_id_from_collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140616212211_remove_collection_id_from_collections.rb -------------------------------------------------------------------------------- /db/migrate/20140616214254_change_column_collecton_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140616214254_change_column_collecton_name.rb -------------------------------------------------------------------------------- /db/migrate/20140616221614_change_isdir_in_collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140616221614_change_isdir_in_collections.rb -------------------------------------------------------------------------------- /db/migrate/20140618223053_add_processed_to_collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140618223053_add_processed_to_collections.rb -------------------------------------------------------------------------------- /db/migrate/20140619000009_add_orig_upload_fn_to_collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140619000009_add_orig_upload_fn_to_collections.rb -------------------------------------------------------------------------------- /db/migrate/20140623191407_create_pre_process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140623191407_create_pre_process.rb -------------------------------------------------------------------------------- /db/migrate/20140623192359_create_preassignment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140623192359_create_preassignment.rb -------------------------------------------------------------------------------- /db/migrate/20140625205628_add_belongs_to_preprocesses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140625205628_add_belongs_to_preprocesses.rb -------------------------------------------------------------------------------- /db/migrate/20140627213117_create_extracts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140627213117_create_extracts.rb -------------------------------------------------------------------------------- /db/migrate/20140702203107_add_mimetype_to_collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140702203107_add_mimetype_to_collections.rb -------------------------------------------------------------------------------- /db/migrate/20140707070145_create_delayed_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140707070145_create_delayed_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20140707083504_add_filedir_to_preprocesses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140707083504_add_filedir_to_preprocesses.rb -------------------------------------------------------------------------------- /db/migrate/20140707202828_add_timestamps_to_preprocesses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140707202828_add_timestamps_to_preprocesses.rb -------------------------------------------------------------------------------- /db/migrate/20140707215053_add_routine_name_to_preprocesses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140707215053_add_routine_name_to_preprocesses.rb -------------------------------------------------------------------------------- /db/migrate/20140723234945_add_status_to_preprocess.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140723234945_add_status_to_preprocess.rb -------------------------------------------------------------------------------- /db/migrate/20140724005206_create_delayed_workers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140724005206_create_delayed_workers.rb -------------------------------------------------------------------------------- /db/migrate/20140725022217_addtfidf_opts_to_preprocesses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140725022217_addtfidf_opts_to_preprocesses.rb -------------------------------------------------------------------------------- /db/migrate/20140725191618_rename_extract_to_extract_topics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140725191618_rename_extract_to_extract_topics.rb -------------------------------------------------------------------------------- /db/migrate/20140725231141_add_columns_to_extract_topics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140725231141_add_columns_to_extract_topics.rb -------------------------------------------------------------------------------- /db/migrate/20140725231653_create_extract_ners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140725231653_create_extract_ners.rb -------------------------------------------------------------------------------- /db/migrate/20140728083234_addzerovalfortfidf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140728083234_addzerovalfortfidf.rb -------------------------------------------------------------------------------- /db/migrate/20140801094612_create_documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140801094612_create_documents.rb -------------------------------------------------------------------------------- /db/migrate/20140801094713_removepreprocessindexfromextracttopics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140801094713_removepreprocessindexfromextracttopics.rb -------------------------------------------------------------------------------- /db/migrate/20140801121820_maketables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140801121820_maketables.rb -------------------------------------------------------------------------------- /db/migrate/20140801211401_create_ners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140801211401_create_ners.rb -------------------------------------------------------------------------------- /db/migrate/20140804033142_add_collection_id_to_ners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140804033142_add_collection_id_to_ners.rb -------------------------------------------------------------------------------- /db/migrate/20140804204944_addextract_ner_id_to_ners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140804204944_addextract_ner_id_to_ners.rb -------------------------------------------------------------------------------- /db/migrate/20140806234745_add_status_to_collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140806234745_add_status_to_collection.rb -------------------------------------------------------------------------------- /db/migrate/20140908103852_add_sessions_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20140908103852_add_sessions_table.rb -------------------------------------------------------------------------------- /db/migrate/20150301000527_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20150301000527_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20150302005123_add_similar_ners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20150302005123_add_similar_ners.rb -------------------------------------------------------------------------------- /db/migrate/20150302032059_add_keywordsto_extract_ners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20150302032059_add_keywordsto_extract_ners.rb -------------------------------------------------------------------------------- /db/migrate/20150309195839_change_collectio_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20150309195839_change_collectio_name.rb -------------------------------------------------------------------------------- /db/migrate/20150316185211_add_libserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20150316185211_add_libserver.rb -------------------------------------------------------------------------------- /db/migrate/20150406053748_addfiletypetodocuments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20150406053748_addfiletypetodocuments.rb -------------------------------------------------------------------------------- /db/migrate/20150406070438_create_friendly_id_slugs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20150406070438_create_friendly_id_slugs.rb -------------------------------------------------------------------------------- /db/migrate/20150406070525_addslugtocollection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20150406070525_addslugtocollection.rb -------------------------------------------------------------------------------- /db/migrate/20150406100843_add_slugs_to_documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20150406100843_add_slugs_to_documents.rb -------------------------------------------------------------------------------- /db/migrate/20150408100955_add_roles_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20150408100955_add_roles_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20150429094357_add_heartbeats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/migrate/20150429094357_add_heartbeats.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/delayed/heartbeat/heartbeat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/lib/delayed/heartbeat/heartbeat.rb -------------------------------------------------------------------------------- /lib/delayed/heartbeat/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/lib/delayed/heartbeat/plugin.rb -------------------------------------------------------------------------------- /lib/delayed/heartbeat/worker_heartbeat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/lib/delayed/heartbeat/worker_heartbeat.rb -------------------------------------------------------------------------------- /lib/delayed/heartbeat/worker_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/lib/delayed/heartbeat/worker_model.rb -------------------------------------------------------------------------------- /lib/file_compressers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/lib/file_compressers.rb -------------------------------------------------------------------------------- /lib/preprocesscollection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/lib/preprocesscollection.rb -------------------------------------------------------------------------------- /lib/preprocesscollection.rb_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/lib/preprocesscollection.rb_old -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/templates/erb/scaffold/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/lib/templates/erb/scaffold/_form.html.erb -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/bancroft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/public/images/bancroft.gif -------------------------------------------------------------------------------- /public/images/bancroft_library_lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/public/images/bancroft_library_lg.jpg -------------------------------------------------------------------------------- /public/images/book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/public/images/book.jpg -------------------------------------------------------------------------------- /public/images/book2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/public/images/book2.jpg -------------------------------------------------------------------------------- /public/images/booktry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/public/images/booktry.html -------------------------------------------------------------------------------- /public/images/paperbackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/public/images/paperbackground.jpg -------------------------------------------------------------------------------- /public/images/papers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/public/images/papers.jpg -------------------------------------------------------------------------------- /public/images/papers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/public/images/papers.png -------------------------------------------------------------------------------- /resources/get_johnm_papers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/get_johnm_papers.rb -------------------------------------------------------------------------------- /resources/projects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/projects -------------------------------------------------------------------------------- /resources/py_scripts/extra_scripts/basic_corpus_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/extra_scripts/basic_corpus_stats.py -------------------------------------------------------------------------------- /resources/py_scripts/extra_scripts/get_johnm_papers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/extra_scripts/get_johnm_papers.rb -------------------------------------------------------------------------------- /resources/py_scripts/extra_scripts/mystemmer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/extra_scripts/mystemmer.rb -------------------------------------------------------------------------------- /resources/py_scripts/extra_scripts/test_future_and_past.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/extra_scripts/test_future_and_past.rb -------------------------------------------------------------------------------- /resources/py_scripts/extra_scripts/test_tf_idf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/extra_scripts/test_tf_idf.rb -------------------------------------------------------------------------------- /resources/py_scripts/extra_scripts/tf_idf_new.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/extra_scripts/tf_idf_new.rb -------------------------------------------------------------------------------- /resources/py_scripts/keywords/.ipynb_checkpoints/keyword_extract-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/keywords/.ipynb_checkpoints/keyword_extract-checkpoint.ipynb -------------------------------------------------------------------------------- /resources/py_scripts/keywords/FoxStoplist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/keywords/FoxStoplist.txt -------------------------------------------------------------------------------- /resources/py_scripts/keywords/SmartStoplist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/keywords/SmartStoplist.txt -------------------------------------------------------------------------------- /resources/py_scripts/keywords/corpus_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/keywords/corpus_keywords.py -------------------------------------------------------------------------------- /resources/py_scripts/keywords/keyword_extract.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/keywords/keyword_extract.ipynb -------------------------------------------------------------------------------- /resources/py_scripts/keywords/keyword_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/keywords/keyword_extractor.py -------------------------------------------------------------------------------- /resources/py_scripts/keywords/keyword_extractor.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/keywords/keyword_extractor.pyc -------------------------------------------------------------------------------- /resources/py_scripts/keywords/preprocess_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/keywords/preprocess_text.py -------------------------------------------------------------------------------- /resources/py_scripts/keywords/preprocess_text.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/keywords/preprocess_text.pyc -------------------------------------------------------------------------------- /resources/py_scripts/keywords/rake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/keywords/rake.py -------------------------------------------------------------------------------- /resources/py_scripts/keywords/rake.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/keywords/rake.pyc -------------------------------------------------------------------------------- /resources/py_scripts/keywords/raketest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/keywords/raketest.py -------------------------------------------------------------------------------- /resources/py_scripts/keywords/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/keywords/test.py -------------------------------------------------------------------------------- /resources/py_scripts/load_mallet/parse_mallet_out_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/load_mallet/parse_mallet_out_new.py -------------------------------------------------------------------------------- /resources/py_scripts/nltk/pos_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/nltk/pos_lookup.py -------------------------------------------------------------------------------- /resources/py_scripts/nltk/string_to_int_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/nltk/string_to_int_lookup.py -------------------------------------------------------------------------------- /resources/py_scripts/stemmer_and_tagger/extra_malletcmds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/stemmer_and_tagger/extra_malletcmds -------------------------------------------------------------------------------- /resources/py_scripts/stemmer_and_tagger/stemmer_and_tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/stemmer_and_tagger/stemmer_and_tagger.py -------------------------------------------------------------------------------- /resources/py_scripts/tfidf/tfidf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/resources/py_scripts/tfidf/tfidf.py -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/bootstrap-datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/vendor/assets/javascripts/bootstrap-datetimepicker.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/pickers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/vendor/assets/javascripts/pickers.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap-datetimepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/vendor/assets/stylesheets/bootstrap-datetimepicker.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap-datetimepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j9recurses/archextract/HEAD/vendor/assets/stylesheets/bootstrap-datetimepicker.min.css --------------------------------------------------------------------------------