├── .env.sample ├── .gitignore ├── .rspec ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── Procfile ├── README.md ├── Rakefile ├── about ├── app ├── admin │ ├── articles.rb │ ├── categories.rb │ ├── contacts.rb │ ├── dashboard.rb │ ├── guide_steps.rb │ ├── guides.rb │ ├── quick_answers.rb │ ├── users.rb │ └── web_services.rb ├── assets │ ├── fonts │ │ ├── League_Gothic-webfont.eot │ │ ├── League_Gothic-webfont.svg │ │ ├── League_Gothic-webfont.ttf │ │ └── League_Gothic-webfont.woff │ ├── images │ │ ├── HNLAnswers_2013InteractionAwards_WinnerConnecting.png │ │ ├── amir.jpeg │ │ ├── angel.jpeg │ │ ├── background_image.jpeg │ │ ├── background_image.jpg │ │ ├── background_pattern.png │ │ ├── beta.png │ │ ├── bg_transparent.png │ │ ├── border.png │ │ ├── brigade.png │ │ ├── cfa.png │ │ ├── cfa_logo.png │ │ ├── cfa_logo_footer.png │ │ ├── cyd.jpeg │ │ ├── diana.jpeg │ │ ├── favicon.ico │ │ ├── forest.jpeg │ │ ├── getting_started_btn.png │ │ ├── govuk.png │ │ ├── hnl_answers_wguide.jpg │ │ ├── hnl_gov.png │ │ ├── joey.jpeg │ │ ├── liz.jpg │ │ ├── mick.jpeg │ │ ├── nick.jpeg │ │ ├── phil.jpg │ │ ├── quick_answers_icon.png │ │ ├── quick_answers_icon_small.png │ │ ├── rails.png │ │ ├── rob.jpg │ │ ├── searchIcon.png │ │ ├── search_page_photo.png │ │ ├── sheba.jpg │ │ ├── wmd-buttons.png │ │ └── yellow_bg.png │ ├── javascripts │ │ ├── Markdown.Extra.js │ │ ├── active_admin.js │ │ ├── application.js │ │ ├── articles.js │ │ ├── categories.js │ │ ├── contacts.js │ │ ├── external_links_in_new_window.js │ │ ├── guides.js │ │ ├── jquery-jvert-tabs-1.1.4.js │ │ ├── mustache.js │ │ ├── pagedown │ │ │ ├── LICENSE.txt │ │ │ ├── Markdown.Converter.js │ │ │ ├── Markdown.Editor.js │ │ │ ├── Markdown.Sanitizer.js │ │ │ ├── README.txt │ │ │ ├── demo │ │ │ │ ├── browser │ │ │ │ │ ├── demo.css │ │ │ │ │ └── demo.html │ │ │ │ └── node │ │ │ │ │ └── demo.js │ │ │ ├── local │ │ │ │ └── Markdown.local.fr.js │ │ │ ├── node-pagedown.js │ │ │ ├── package.json │ │ │ ├── resources │ │ │ │ └── wmd-buttons.psd │ │ │ └── wmd-buttons.png │ │ ├── quick_answers.js │ │ ├── search.js │ │ └── web_services.js │ └── stylesheets │ │ ├── active_admin.css.scss │ │ ├── all │ │ ├── bootstrap.css │ │ └── style.css │ │ ├── application-admin.css.scss │ │ ├── application-all.css.scss │ │ ├── application-ie.css.scss │ │ ├── application-mobile.css.scss │ │ ├── application-print.css.scss │ │ ├── guide.css.scss │ │ ├── mobile │ │ └── mobile.css │ │ ├── quick_answer.css.scss │ │ └── web_services.css.scss ├── controllers │ ├── application_controller.rb │ ├── articles_controller.rb │ ├── categories_controller.rb │ ├── guides_controller.rb │ ├── home_controller.rb │ ├── quick_answers_controller.rb │ ├── search_controller.rb │ ├── sessions_controller.rb │ └── web_services_controller.rb ├── helpers │ ├── active_admin │ │ └── views_helper.rb │ ├── application_helper.rb │ ├── articles_helper.rb │ ├── category_helper.rb │ ├── contacts_helper.rb │ ├── guides_helper.rb │ ├── home_helper.rb │ ├── quick_answer_helper.rb │ ├── search_helper.rb │ └── web_services_helper.rb ├── jobs │ └── report_exception_job.rb ├── mailers │ └── .gitkeep ├── models │ ├── .gitkeep │ ├── ability.rb │ ├── administrator.rb │ ├── article.rb │ ├── article_version.rb │ ├── category.rb │ ├── contact.rb │ ├── department.rb │ ├── guide.rb │ ├── guide_step.rb │ ├── keyword.rb │ ├── quick_answer.rb │ ├── user.rb │ ├── web_service.rb │ └── wordcount.rb └── views │ ├── admin │ ├── contacts │ │ └── _article.html.erb │ ├── dashboard │ │ └── _dashboard.html.erb │ └── guide_steps │ │ └── _form.html.erb │ ├── articles │ ├── article_type.html.erb │ ├── index.html.erb │ └── missing.html.erb │ ├── categories │ ├── index.html.erb │ ├── missing.html.erb │ └── show.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.erb │ └── unlocks │ │ └── new.html.erb │ ├── guides │ └── show.html.erb │ ├── home │ ├── _article.html.erb │ ├── _category.html.erb │ ├── about.html.erb │ └── index.html.erb │ ├── layouts │ └── application.html.erb │ ├── quick_answers │ └── show.html.erb │ ├── search │ └── index.html.erb │ ├── shared │ ├── _articles_sidebar.html.erb │ ├── _categories_sidebar.html.erb │ ├── _flash_info.html.erb │ ├── _pagedown.html.erb │ ├── _search_form.html.erb │ ├── _twitter_share.html.erb │ └── admin │ │ ├── _article_actions.html.erb │ │ ├── _article_content.html.erb │ │ ├── _article_details.html.erb │ │ ├── _article_form.html.erb │ │ └── _author_pic.html.erb │ └── web_services │ └── show.html.erb ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── dblogin.yml.sample ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ ├── staging.rb │ └── test.rb ├── initializers │ ├── active_admin.rb │ ├── backtrace_silencers.rb │ ├── devise.rb │ ├── inflections.rb │ ├── kaminari.rb │ ├── mime_types.rb │ ├── paper_trail.rb │ ├── rollbar.rb │ ├── secret_token.rb │ ├── session_store.rb │ ├── tanker.rb │ ├── will_paginate.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ └── en.yml ├── newrelic.yml ├── routes.rb ├── tinymce.yml └── unicorn.rb ├── db ├── migrate │ ├── 20120416181217_create_articles.rb │ ├── 20120424172229_create_contacts.rb │ ├── 20120430224632_add_fields_to_article.rb │ ├── 20120430232605_rename_type_to_content_type.rb │ ├── 20120501181542_devise_create_users.rb │ ├── 20120501181544_create_rails_admin_histories_table.rb │ ├── 20120501191040_add_admin_to_users.rb │ ├── 20120628194351_add_published_to_article.rb │ ├── 20120628200512_devise_create_admins.rb │ ├── 20120628203747_modify_admin.rb │ ├── 20120629070448_add_slug_to_articles.rb │ ├── 20120629072846_create_friendly_id_slugs.rb │ ├── 20120629140930_change_admin_to_publisher_users.rb │ ├── 20120629143105_rename_admins_to_administrators.rb │ ├── 20120701155314_add_is_admin_to_users.rb │ ├── 20120702150748_create_admin_notes.rb │ ├── 20120702150749_move_admin_notes_to_comments.rb │ ├── 20120702165334_drop_administrator_table.rb │ ├── 20120702171830_add_is_editor_to_users.rb │ ├── 20120706171506_create_categories.rb │ ├── 20120706172717_add_category_references_to_articles.rb │ ├── 20120706173031_add_article_references_to_category.rb │ ├── 20120706193649_add_access_count_to_articles.rb │ ├── 20120707184743_create_keywords.rb │ ├── 20120707190634_create_wordcounts.rb │ ├── 20120714144317_create_delayed_jobs.rb │ ├── 20120727004822_add_description_to_category.rb │ ├── 20120727052215_change_content_type_articles.rb │ ├── 20120727124910_add_author_picture_name_to_articles.rb │ ├── 20120730225526_create_guides.rb │ ├── 20120807200215_add_type_to_articles.rb │ ├── 20120807233918_create_guide_steps.rb │ ├── 20120807235112_drop_guides_table.rb │ ├── 20120817231009_add_slugs_to_categories.rb │ ├── 20121010140714_add_content_markdown_to_articles.rb │ ├── 20121026145929_add_render_markdown_to_article.rb │ ├── 20121028193745_add_division_of_content_fields_to_articles.rb │ ├── 20121106123303_create_departments.rb │ ├── 20121107003920_fix_naming_conventions_on_roles.rb │ ├── 20121107014855_add_status_to_articles.rb │ ├── 20121107020439_add_user_id_to_article.rb │ ├── 20121108074632_remove_is_published_field_from_articles.rb │ ├── 20130907155202_create_article_versions.rb │ ├── 20130907164815_add_status_to_article_versions.rb │ ├── 20130909221406_add_published_pending_review_to_article.rb │ ├── 20130910020528_populate_published_pending_review_with_status_on_article.rb │ ├── 20130914020501_remove_status_from_article.rb │ └── 20131001150637_remove_legacy_content_fields_from_article.rb ├── schema.rb └── seeds.rb ├── doc ├── 20120728012731_add_voting_to_articles.rb ├── README_FOR_APP ├── information architecture.md ├── misc scripts └── notes - bug fixing 'some searches result in internal 500 error'.md ├── lib ├── assets │ ├── .gitkeep │ ├── dict │ │ ├── blank │ │ │ ├── blank.aff │ │ │ └── blank.dic │ │ ├── custom.aff │ │ ├── custom.csv │ │ └── en_US │ │ │ ├── README_en_US.txt │ │ │ ├── en_US.aff │ │ │ └── en_US.dic │ ├── eng_stop.csv │ └── markdown-cheatsheet.pdf ├── error_service.rb ├── markdownifier.rb ├── native │ ├── hunspell-1.3.tar.bz2 │ ├── hunspell-1.3 │ │ ├── bin │ │ │ ├── affixcompress │ │ │ ├── analyze │ │ │ ├── chmorph │ │ │ ├── hunspell │ │ │ ├── hunzip │ │ │ ├── hzip │ │ │ ├── ispellaff2myspell │ │ │ ├── makealias │ │ │ ├── munch │ │ │ ├── unmunch │ │ │ ├── wordforms │ │ │ └── wordlist2hunspell │ │ ├── include │ │ │ └── hunspell │ │ │ │ ├── affentry.hxx │ │ │ │ ├── affixmgr.hxx │ │ │ │ ├── atypes.hxx │ │ │ │ ├── baseaffix.hxx │ │ │ │ ├── csutil.hxx │ │ │ │ ├── dictmgr.hxx │ │ │ │ ├── filemgr.hxx │ │ │ │ ├── hashmgr.hxx │ │ │ │ ├── htypes.hxx │ │ │ │ ├── hunspell.h │ │ │ │ ├── hunspell.hxx │ │ │ │ ├── hunvisapi.h │ │ │ │ ├── hunzip.hxx │ │ │ │ ├── langnum.hxx │ │ │ │ ├── phonet.hxx │ │ │ │ ├── replist.hxx │ │ │ │ ├── suggestmgr.hxx │ │ │ │ └── w_char.hxx │ │ ├── lib │ │ │ ├── libhunspell-1.3.a │ │ │ ├── libhunspell-1.3.la │ │ │ ├── libhunspell-1.3.so │ │ │ ├── libhunspell-1.3.so.0 │ │ │ ├── libhunspell-1.3.so.0.0.0 │ │ │ ├── libparsers.a │ │ │ └── pkgconfig │ │ │ │ └── hunspell.pc │ │ └── share │ │ │ ├── locale │ │ │ ├── hu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── hunspell.mo │ │ │ └── it │ │ │ │ └── LC_MESSAGES │ │ │ │ └── hunspell.mo │ │ │ └── man │ │ │ ├── hu │ │ │ ├── man1 │ │ │ │ └── hunspell.1 │ │ │ └── man4 │ │ │ │ └── hunspell.4 │ │ │ ├── man1 │ │ │ ├── hunspell.1 │ │ │ ├── hunzip.1 │ │ │ └── hzip.1 │ │ │ ├── man3 │ │ │ └── hunspell.3 │ │ │ └── man4 │ │ │ └── hunspell.4 │ └── libhunspell-1.3.so ├── rails_nlp │ ├── README.md │ ├── big_huge_thesaurus.rb │ ├── rails_nlp.rb │ ├── rails_nlp_spec.rb │ └── spec_helper.rb ├── tanker_article_defaults.rb └── tasks │ ├── .gitkeep │ ├── analyse_models.rake │ ├── data.rake │ └── update_url.rake ├── log └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── script ├── delayed_job └── rails ├── spec ├── controllers │ └── admin │ │ └── quick_answers_controller_spec.rb ├── factories.rb ├── factories │ ├── articles.rb │ ├── categories.rb │ ├── contacts.rb │ └── users.rb ├── features │ └── edit_article_spec.rb ├── models │ ├── article_spec.rb │ ├── category_spec.rb │ ├── keyword_spec.rb │ └── wordcount_spec.rb ├── routing │ └── routes_spec.rb ├── spec_helper.rb └── support │ ├── custom_matchers.rb │ └── session_helpers.rb └── vendor ├── assets ├── javascripts │ └── .gitkeep └── stylesheets │ └── .gitkeep └── plugins └── .gitkeep /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 1.9.3-p545 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/Guardfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/Rakefile -------------------------------------------------------------------------------- /about: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/admin/articles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/admin/articles.rb -------------------------------------------------------------------------------- /app/admin/categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/admin/categories.rb -------------------------------------------------------------------------------- /app/admin/contacts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/admin/contacts.rb -------------------------------------------------------------------------------- /app/admin/dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/admin/dashboard.rb -------------------------------------------------------------------------------- /app/admin/guide_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/admin/guide_steps.rb -------------------------------------------------------------------------------- /app/admin/guides.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/admin/guides.rb -------------------------------------------------------------------------------- /app/admin/quick_answers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/admin/quick_answers.rb -------------------------------------------------------------------------------- /app/admin/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/admin/users.rb -------------------------------------------------------------------------------- /app/admin/web_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/admin/web_services.rb -------------------------------------------------------------------------------- /app/assets/fonts/League_Gothic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/fonts/League_Gothic-webfont.eot -------------------------------------------------------------------------------- /app/assets/fonts/League_Gothic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/fonts/League_Gothic-webfont.svg -------------------------------------------------------------------------------- /app/assets/fonts/League_Gothic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/fonts/League_Gothic-webfont.ttf -------------------------------------------------------------------------------- /app/assets/fonts/League_Gothic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/fonts/League_Gothic-webfont.woff -------------------------------------------------------------------------------- /app/assets/images/HNLAnswers_2013InteractionAwards_WinnerConnecting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/HNLAnswers_2013InteractionAwards_WinnerConnecting.png -------------------------------------------------------------------------------- /app/assets/images/amir.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/amir.jpeg -------------------------------------------------------------------------------- /app/assets/images/angel.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/angel.jpeg -------------------------------------------------------------------------------- /app/assets/images/background_image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/background_image.jpeg -------------------------------------------------------------------------------- /app/assets/images/background_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/background_image.jpg -------------------------------------------------------------------------------- /app/assets/images/background_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/background_pattern.png -------------------------------------------------------------------------------- /app/assets/images/beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/beta.png -------------------------------------------------------------------------------- /app/assets/images/bg_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/bg_transparent.png -------------------------------------------------------------------------------- /app/assets/images/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/border.png -------------------------------------------------------------------------------- /app/assets/images/brigade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/brigade.png -------------------------------------------------------------------------------- /app/assets/images/cfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/cfa.png -------------------------------------------------------------------------------- /app/assets/images/cfa_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/cfa_logo.png -------------------------------------------------------------------------------- /app/assets/images/cfa_logo_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/cfa_logo_footer.png -------------------------------------------------------------------------------- /app/assets/images/cyd.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/cyd.jpeg -------------------------------------------------------------------------------- /app/assets/images/diana.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/diana.jpeg -------------------------------------------------------------------------------- /app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/forest.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/forest.jpeg -------------------------------------------------------------------------------- /app/assets/images/getting_started_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/getting_started_btn.png -------------------------------------------------------------------------------- /app/assets/images/govuk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/govuk.png -------------------------------------------------------------------------------- /app/assets/images/hnl_answers_wguide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/hnl_answers_wguide.jpg -------------------------------------------------------------------------------- /app/assets/images/hnl_gov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/hnl_gov.png -------------------------------------------------------------------------------- /app/assets/images/joey.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/joey.jpeg -------------------------------------------------------------------------------- /app/assets/images/liz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/liz.jpg -------------------------------------------------------------------------------- /app/assets/images/mick.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/mick.jpeg -------------------------------------------------------------------------------- /app/assets/images/nick.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/nick.jpeg -------------------------------------------------------------------------------- /app/assets/images/phil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/phil.jpg -------------------------------------------------------------------------------- /app/assets/images/quick_answers_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/quick_answers_icon.png -------------------------------------------------------------------------------- /app/assets/images/quick_answers_icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/quick_answers_icon_small.png -------------------------------------------------------------------------------- /app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/rails.png -------------------------------------------------------------------------------- /app/assets/images/rob.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/rob.jpg -------------------------------------------------------------------------------- /app/assets/images/searchIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/searchIcon.png -------------------------------------------------------------------------------- /app/assets/images/search_page_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/search_page_photo.png -------------------------------------------------------------------------------- /app/assets/images/sheba.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/sheba.jpg -------------------------------------------------------------------------------- /app/assets/images/wmd-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/wmd-buttons.png -------------------------------------------------------------------------------- /app/assets/images/yellow_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/images/yellow_bg.png -------------------------------------------------------------------------------- /app/assets/javascripts/Markdown.Extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/Markdown.Extra.js -------------------------------------------------------------------------------- /app/assets/javascripts/active_admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/active_admin.js -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/articles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/articles.js -------------------------------------------------------------------------------- /app/assets/javascripts/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/categories.js -------------------------------------------------------------------------------- /app/assets/javascripts/contacts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/contacts.js -------------------------------------------------------------------------------- /app/assets/javascripts/external_links_in_new_window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/external_links_in_new_window.js -------------------------------------------------------------------------------- /app/assets/javascripts/guides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/guides.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery-jvert-tabs-1.1.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/jquery-jvert-tabs-1.1.4.js -------------------------------------------------------------------------------- /app/assets/javascripts/mustache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/mustache.js -------------------------------------------------------------------------------- /app/assets/javascripts/pagedown/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/pagedown/LICENSE.txt -------------------------------------------------------------------------------- /app/assets/javascripts/pagedown/Markdown.Converter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/pagedown/Markdown.Converter.js -------------------------------------------------------------------------------- /app/assets/javascripts/pagedown/Markdown.Editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/pagedown/Markdown.Editor.js -------------------------------------------------------------------------------- /app/assets/javascripts/pagedown/Markdown.Sanitizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/pagedown/Markdown.Sanitizer.js -------------------------------------------------------------------------------- /app/assets/javascripts/pagedown/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/pagedown/demo/browser/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/pagedown/demo/browser/demo.css -------------------------------------------------------------------------------- /app/assets/javascripts/pagedown/demo/browser/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/pagedown/demo/browser/demo.html -------------------------------------------------------------------------------- /app/assets/javascripts/pagedown/demo/node/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/pagedown/demo/node/demo.js -------------------------------------------------------------------------------- /app/assets/javascripts/pagedown/local/Markdown.local.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/pagedown/local/Markdown.local.fr.js -------------------------------------------------------------------------------- /app/assets/javascripts/pagedown/node-pagedown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/pagedown/node-pagedown.js -------------------------------------------------------------------------------- /app/assets/javascripts/pagedown/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/pagedown/package.json -------------------------------------------------------------------------------- /app/assets/javascripts/pagedown/resources/wmd-buttons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/pagedown/resources/wmd-buttons.psd -------------------------------------------------------------------------------- /app/assets/javascripts/pagedown/wmd-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/pagedown/wmd-buttons.png -------------------------------------------------------------------------------- /app/assets/javascripts/quick_answers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/quick_answers.js -------------------------------------------------------------------------------- /app/assets/javascripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/search.js -------------------------------------------------------------------------------- /app/assets/javascripts/web_services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/javascripts/web_services.js -------------------------------------------------------------------------------- /app/assets/stylesheets/active_admin.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/stylesheets/active_admin.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/all/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/stylesheets/all/bootstrap.css -------------------------------------------------------------------------------- /app/assets/stylesheets/all/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/stylesheets/all/style.css -------------------------------------------------------------------------------- /app/assets/stylesheets/application-admin.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/stylesheets/application-admin.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application-all.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/stylesheets/application-all.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application-ie.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/stylesheets/application-ie.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application-mobile.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/stylesheets/application-mobile.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application-print.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/stylesheets/application-print.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/guide.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/stylesheets/guide.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/mobile/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/stylesheets/mobile/mobile.css -------------------------------------------------------------------------------- /app/assets/stylesheets/quick_answer.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/stylesheets/quick_answer.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/web_services.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/assets/stylesheets/web_services.css.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/articles_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/controllers/articles_controller.rb -------------------------------------------------------------------------------- /app/controllers/categories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/controllers/categories_controller.rb -------------------------------------------------------------------------------- /app/controllers/guides_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/controllers/guides_controller.rb -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/quick_answers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/controllers/quick_answers_controller.rb -------------------------------------------------------------------------------- /app/controllers/search_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/controllers/search_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/web_services_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/controllers/web_services_controller.rb -------------------------------------------------------------------------------- /app/helpers/active_admin/views_helper.rb: -------------------------------------------------------------------------------- 1 | module ActiveAdmin::ViewsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/articles_helper.rb: -------------------------------------------------------------------------------- 1 | module ArticlesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/category_helper.rb: -------------------------------------------------------------------------------- 1 | module CategoryHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/contacts_helper.rb: -------------------------------------------------------------------------------- 1 | module ContactsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/guides_helper.rb: -------------------------------------------------------------------------------- 1 | module GuidesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/quick_answer_helper.rb: -------------------------------------------------------------------------------- 1 | module QuickAnswerHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/search_helper.rb: -------------------------------------------------------------------------------- 1 | module SearchHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/web_services_helper.rb: -------------------------------------------------------------------------------- 1 | module WebServicesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/jobs/report_exception_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/jobs/report_exception_job.rb -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/administrator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/models/administrator.rb -------------------------------------------------------------------------------- /app/models/article.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/models/article.rb -------------------------------------------------------------------------------- /app/models/article_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/models/article_version.rb -------------------------------------------------------------------------------- /app/models/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/models/category.rb -------------------------------------------------------------------------------- /app/models/contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/models/contact.rb -------------------------------------------------------------------------------- /app/models/department.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/models/department.rb -------------------------------------------------------------------------------- /app/models/guide.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/models/guide.rb -------------------------------------------------------------------------------- /app/models/guide_step.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/models/guide_step.rb -------------------------------------------------------------------------------- /app/models/keyword.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/models/keyword.rb -------------------------------------------------------------------------------- /app/models/quick_answer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/models/quick_answer.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/web_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/models/web_service.rb -------------------------------------------------------------------------------- /app/models/wordcount.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/models/wordcount.rb -------------------------------------------------------------------------------- /app/views/admin/contacts/_article.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/admin/dashboard/_dashboard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/admin/dashboard/_dashboard.html.erb -------------------------------------------------------------------------------- /app/views/admin/guide_steps/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/admin/guide_steps/_form.html.erb -------------------------------------------------------------------------------- /app/views/articles/article_type.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/articles/article_type.html.erb -------------------------------------------------------------------------------- /app/views/articles/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/articles/index.html.erb -------------------------------------------------------------------------------- /app/views/articles/missing.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/articles/missing.html.erb -------------------------------------------------------------------------------- /app/views/categories/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/categories/index.html.erb -------------------------------------------------------------------------------- /app/views/categories/missing.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/categories/missing.html.erb -------------------------------------------------------------------------------- /app/views/categories/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/categories/show.html.erb -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/devise/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/confirmation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/devise/mailer/confirmation_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/devise/mailer/reset_password_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/devise/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/devise/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/devise/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/devise/registrations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_links.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/devise/shared/_links.erb -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/views/guides/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/guides/show.html.erb -------------------------------------------------------------------------------- /app/views/home/_article.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/home/_article.html.erb -------------------------------------------------------------------------------- /app/views/home/_category.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/home/_category.html.erb -------------------------------------------------------------------------------- /app/views/home/about.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/home/about.html.erb -------------------------------------------------------------------------------- /app/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/home/index.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/quick_answers/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/quick_answers/show.html.erb -------------------------------------------------------------------------------- /app/views/search/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/search/index.html.erb -------------------------------------------------------------------------------- /app/views/shared/_articles_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/shared/_articles_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/shared/_categories_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/shared/_categories_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/shared/_flash_info.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/shared/_flash_info.html.erb -------------------------------------------------------------------------------- /app/views/shared/_pagedown.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/shared/_pagedown.html.erb -------------------------------------------------------------------------------- /app/views/shared/_search_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/shared/_search_form.html.erb -------------------------------------------------------------------------------- /app/views/shared/_twitter_share.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/shared/_twitter_share.html.erb -------------------------------------------------------------------------------- /app/views/shared/admin/_article_actions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/shared/admin/_article_actions.html.erb -------------------------------------------------------------------------------- /app/views/shared/admin/_article_content.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/shared/admin/_article_content.html.erb -------------------------------------------------------------------------------- /app/views/shared/admin/_article_details.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/shared/admin/_article_details.html.erb -------------------------------------------------------------------------------- /app/views/shared/admin/_article_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/shared/admin/_article_form.html.erb -------------------------------------------------------------------------------- /app/views/shared/admin/_author_pic.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/web_services/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/app/views/web_services/show.html.erb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/dblogin.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/dblogin.yml.sample -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/environments/staging.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/active_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/initializers/active_admin.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/kaminari.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/initializers/kaminari.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/paper_trail.rb: -------------------------------------------------------------------------------- 1 | Version.module_eval do 2 | self.abstract_class = true 3 | end 4 | -------------------------------------------------------------------------------- /config/initializers/rollbar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/initializers/rollbar.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/tanker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/initializers/tanker.rb -------------------------------------------------------------------------------- /config/initializers/will_paginate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/initializers/will_paginate.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/newrelic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/newrelic.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/tinymce.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/config/tinymce.yml -------------------------------------------------------------------------------- /config/unicorn.rb: -------------------------------------------------------------------------------- 1 | worker_processes 3 2 | timeout 30 3 | preload_app true -------------------------------------------------------------------------------- /db/migrate/20120416181217_create_articles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120416181217_create_articles.rb -------------------------------------------------------------------------------- /db/migrate/20120424172229_create_contacts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120424172229_create_contacts.rb -------------------------------------------------------------------------------- /db/migrate/20120430224632_add_fields_to_article.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120430224632_add_fields_to_article.rb -------------------------------------------------------------------------------- /db/migrate/20120430232605_rename_type_to_content_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120430232605_rename_type_to_content_type.rb -------------------------------------------------------------------------------- /db/migrate/20120501181542_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120501181542_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20120501181544_create_rails_admin_histories_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120501181544_create_rails_admin_histories_table.rb -------------------------------------------------------------------------------- /db/migrate/20120501191040_add_admin_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120501191040_add_admin_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20120628194351_add_published_to_article.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120628194351_add_published_to_article.rb -------------------------------------------------------------------------------- /db/migrate/20120628200512_devise_create_admins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120628200512_devise_create_admins.rb -------------------------------------------------------------------------------- /db/migrate/20120628203747_modify_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120628203747_modify_admin.rb -------------------------------------------------------------------------------- /db/migrate/20120629070448_add_slug_to_articles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120629070448_add_slug_to_articles.rb -------------------------------------------------------------------------------- /db/migrate/20120629072846_create_friendly_id_slugs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120629072846_create_friendly_id_slugs.rb -------------------------------------------------------------------------------- /db/migrate/20120629140930_change_admin_to_publisher_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120629140930_change_admin_to_publisher_users.rb -------------------------------------------------------------------------------- /db/migrate/20120629143105_rename_admins_to_administrators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120629143105_rename_admins_to_administrators.rb -------------------------------------------------------------------------------- /db/migrate/20120701155314_add_is_admin_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120701155314_add_is_admin_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20120702150748_create_admin_notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120702150748_create_admin_notes.rb -------------------------------------------------------------------------------- /db/migrate/20120702150749_move_admin_notes_to_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120702150749_move_admin_notes_to_comments.rb -------------------------------------------------------------------------------- /db/migrate/20120702165334_drop_administrator_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120702165334_drop_administrator_table.rb -------------------------------------------------------------------------------- /db/migrate/20120702171830_add_is_editor_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120702171830_add_is_editor_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20120706171506_create_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120706171506_create_categories.rb -------------------------------------------------------------------------------- /db/migrate/20120706172717_add_category_references_to_articles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120706172717_add_category_references_to_articles.rb -------------------------------------------------------------------------------- /db/migrate/20120706173031_add_article_references_to_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120706173031_add_article_references_to_category.rb -------------------------------------------------------------------------------- /db/migrate/20120706193649_add_access_count_to_articles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120706193649_add_access_count_to_articles.rb -------------------------------------------------------------------------------- /db/migrate/20120707184743_create_keywords.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120707184743_create_keywords.rb -------------------------------------------------------------------------------- /db/migrate/20120707190634_create_wordcounts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120707190634_create_wordcounts.rb -------------------------------------------------------------------------------- /db/migrate/20120714144317_create_delayed_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120714144317_create_delayed_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20120727004822_add_description_to_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120727004822_add_description_to_category.rb -------------------------------------------------------------------------------- /db/migrate/20120727052215_change_content_type_articles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120727052215_change_content_type_articles.rb -------------------------------------------------------------------------------- /db/migrate/20120727124910_add_author_picture_name_to_articles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120727124910_add_author_picture_name_to_articles.rb -------------------------------------------------------------------------------- /db/migrate/20120730225526_create_guides.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120730225526_create_guides.rb -------------------------------------------------------------------------------- /db/migrate/20120807200215_add_type_to_articles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120807200215_add_type_to_articles.rb -------------------------------------------------------------------------------- /db/migrate/20120807233918_create_guide_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120807233918_create_guide_steps.rb -------------------------------------------------------------------------------- /db/migrate/20120807235112_drop_guides_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120807235112_drop_guides_table.rb -------------------------------------------------------------------------------- /db/migrate/20120817231009_add_slugs_to_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20120817231009_add_slugs_to_categories.rb -------------------------------------------------------------------------------- /db/migrate/20121010140714_add_content_markdown_to_articles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20121010140714_add_content_markdown_to_articles.rb -------------------------------------------------------------------------------- /db/migrate/20121026145929_add_render_markdown_to_article.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20121026145929_add_render_markdown_to_article.rb -------------------------------------------------------------------------------- /db/migrate/20121028193745_add_division_of_content_fields_to_articles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20121028193745_add_division_of_content_fields_to_articles.rb -------------------------------------------------------------------------------- /db/migrate/20121106123303_create_departments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20121106123303_create_departments.rb -------------------------------------------------------------------------------- /db/migrate/20121107003920_fix_naming_conventions_on_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20121107003920_fix_naming_conventions_on_roles.rb -------------------------------------------------------------------------------- /db/migrate/20121107014855_add_status_to_articles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20121107014855_add_status_to_articles.rb -------------------------------------------------------------------------------- /db/migrate/20121107020439_add_user_id_to_article.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20121107020439_add_user_id_to_article.rb -------------------------------------------------------------------------------- /db/migrate/20121108074632_remove_is_published_field_from_articles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20121108074632_remove_is_published_field_from_articles.rb -------------------------------------------------------------------------------- /db/migrate/20130907155202_create_article_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20130907155202_create_article_versions.rb -------------------------------------------------------------------------------- /db/migrate/20130907164815_add_status_to_article_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20130907164815_add_status_to_article_versions.rb -------------------------------------------------------------------------------- /db/migrate/20130909221406_add_published_pending_review_to_article.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20130909221406_add_published_pending_review_to_article.rb -------------------------------------------------------------------------------- /db/migrate/20130910020528_populate_published_pending_review_with_status_on_article.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20130910020528_populate_published_pending_review_with_status_on_article.rb -------------------------------------------------------------------------------- /db/migrate/20130914020501_remove_status_from_article.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20130914020501_remove_status_from_article.rb -------------------------------------------------------------------------------- /db/migrate/20131001150637_remove_legacy_content_fields_from_article.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/migrate/20131001150637_remove_legacy_content_fields_from_article.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/20120728012731_add_voting_to_articles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/doc/20120728012731_add_voting_to_articles.rb -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/doc/README_FOR_APP -------------------------------------------------------------------------------- /doc/information architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/doc/information architecture.md -------------------------------------------------------------------------------- /doc/misc scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/doc/misc scripts -------------------------------------------------------------------------------- /doc/notes - bug fixing 'some searches result in internal 500 error'.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/doc/notes - bug fixing 'some searches result in internal 500 error'.md -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/assets/dict/blank/blank.aff: -------------------------------------------------------------------------------- 1 | SET UTF-8 2 | TRY esianrtolcdugmphbyfvkwzESIANRTOLCDUGMPHBYFVKWZ' 3 | WORDCHARS 0123456789 -------------------------------------------------------------------------------- /lib/assets/dict/blank/blank.dic: -------------------------------------------------------------------------------- 1 | 1000 -------------------------------------------------------------------------------- /lib/assets/dict/custom.aff: -------------------------------------------------------------------------------- 1 | SET UTF-8 2 | TRY esianrtolcdugmphbyfvkwzESIANRTOLCDUGMPHBYFVKWZ' 3 | WORDCHARS 0123456789 -------------------------------------------------------------------------------- /lib/assets/dict/custom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/assets/dict/custom.csv -------------------------------------------------------------------------------- /lib/assets/dict/en_US/README_en_US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/assets/dict/en_US/README_en_US.txt -------------------------------------------------------------------------------- /lib/assets/dict/en_US/en_US.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/assets/dict/en_US/en_US.aff -------------------------------------------------------------------------------- /lib/assets/dict/en_US/en_US.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/assets/dict/en_US/en_US.dic -------------------------------------------------------------------------------- /lib/assets/eng_stop.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/assets/eng_stop.csv -------------------------------------------------------------------------------- /lib/assets/markdown-cheatsheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/assets/markdown-cheatsheet.pdf -------------------------------------------------------------------------------- /lib/error_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/error_service.rb -------------------------------------------------------------------------------- /lib/markdownifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/markdownifier.rb -------------------------------------------------------------------------------- /lib/native/hunspell-1.3.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3.tar.bz2 -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/bin/affixcompress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/bin/affixcompress -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/bin/analyze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/bin/analyze -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/bin/chmorph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/bin/chmorph -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/bin/hunspell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/bin/hunspell -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/bin/hunzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/bin/hunzip -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/bin/hzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/bin/hzip -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/bin/ispellaff2myspell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/bin/ispellaff2myspell -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/bin/makealias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/bin/makealias -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/bin/munch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/bin/munch -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/bin/unmunch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/bin/unmunch -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/bin/wordforms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/bin/wordforms -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/bin/wordlist2hunspell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/bin/wordlist2hunspell -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/include/hunspell/affentry.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/include/hunspell/affentry.hxx -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/include/hunspell/affixmgr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/include/hunspell/affixmgr.hxx -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/include/hunspell/atypes.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/include/hunspell/atypes.hxx -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/include/hunspell/baseaffix.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/include/hunspell/baseaffix.hxx -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/include/hunspell/csutil.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/include/hunspell/csutil.hxx -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/include/hunspell/dictmgr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/include/hunspell/dictmgr.hxx -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/include/hunspell/filemgr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/include/hunspell/filemgr.hxx -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/include/hunspell/hashmgr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/include/hunspell/hashmgr.hxx -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/include/hunspell/htypes.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/include/hunspell/htypes.hxx -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/include/hunspell/hunspell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/include/hunspell/hunspell.h -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/include/hunspell/hunspell.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/include/hunspell/hunspell.hxx -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/include/hunspell/hunvisapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/include/hunspell/hunvisapi.h -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/include/hunspell/hunzip.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/include/hunspell/hunzip.hxx -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/include/hunspell/langnum.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/include/hunspell/langnum.hxx -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/include/hunspell/phonet.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/include/hunspell/phonet.hxx -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/include/hunspell/replist.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/include/hunspell/replist.hxx -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/include/hunspell/suggestmgr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/include/hunspell/suggestmgr.hxx -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/include/hunspell/w_char.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/include/hunspell/w_char.hxx -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/lib/libhunspell-1.3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/lib/libhunspell-1.3.a -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/lib/libhunspell-1.3.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/lib/libhunspell-1.3.la -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/lib/libhunspell-1.3.so: -------------------------------------------------------------------------------- 1 | libhunspell-1.3.so.0.0.0 -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/lib/libhunspell-1.3.so.0: -------------------------------------------------------------------------------- 1 | libhunspell-1.3.so.0.0.0 -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/lib/libhunspell-1.3.so.0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/lib/libhunspell-1.3.so.0.0.0 -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/lib/libparsers.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/lib/libparsers.a -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/lib/pkgconfig/hunspell.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/lib/pkgconfig/hunspell.pc -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/share/locale/hu/LC_MESSAGES/hunspell.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/share/locale/hu/LC_MESSAGES/hunspell.mo -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/share/locale/it/LC_MESSAGES/hunspell.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/share/locale/it/LC_MESSAGES/hunspell.mo -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/share/man/hu/man1/hunspell.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/share/man/hu/man1/hunspell.1 -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/share/man/hu/man4/hunspell.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/share/man/hu/man4/hunspell.4 -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/share/man/man1/hunspell.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/share/man/man1/hunspell.1 -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/share/man/man1/hunzip.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/share/man/man1/hunzip.1 -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/share/man/man1/hzip.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/share/man/man1/hzip.1 -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/share/man/man3/hunspell.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/share/man/man3/hunspell.3 -------------------------------------------------------------------------------- /lib/native/hunspell-1.3/share/man/man4/hunspell.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/hunspell-1.3/share/man/man4/hunspell.4 -------------------------------------------------------------------------------- /lib/native/libhunspell-1.3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/native/libhunspell-1.3.so -------------------------------------------------------------------------------- /lib/rails_nlp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/rails_nlp/README.md -------------------------------------------------------------------------------- /lib/rails_nlp/big_huge_thesaurus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/rails_nlp/big_huge_thesaurus.rb -------------------------------------------------------------------------------- /lib/rails_nlp/rails_nlp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/rails_nlp/rails_nlp.rb -------------------------------------------------------------------------------- /lib/rails_nlp/rails_nlp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/rails_nlp/rails_nlp_spec.rb -------------------------------------------------------------------------------- /lib/rails_nlp/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/rails_nlp/spec_helper.rb -------------------------------------------------------------------------------- /lib/tanker_article_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/tanker_article_defaults.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/analyse_models.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/tasks/analyse_models.rake -------------------------------------------------------------------------------- /lib/tasks/data.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/tasks/data.rake -------------------------------------------------------------------------------- /lib/tasks/update_url.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/lib/tasks/update_url.rake -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/public/robots.txt -------------------------------------------------------------------------------- /script/delayed_job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/script/delayed_job -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/script/rails -------------------------------------------------------------------------------- /spec/controllers/admin/quick_answers_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/spec/controllers/admin/quick_answers_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/spec/factories.rb -------------------------------------------------------------------------------- /spec/factories/articles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/spec/factories/articles.rb -------------------------------------------------------------------------------- /spec/factories/categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/spec/factories/categories.rb -------------------------------------------------------------------------------- /spec/factories/contacts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/spec/factories/contacts.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/features/edit_article_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/spec/features/edit_article_spec.rb -------------------------------------------------------------------------------- /spec/models/article_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/spec/models/article_spec.rb -------------------------------------------------------------------------------- /spec/models/category_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/spec/models/category_spec.rb -------------------------------------------------------------------------------- /spec/models/keyword_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/spec/models/keyword_spec.rb -------------------------------------------------------------------------------- /spec/models/wordcount_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/spec/models/wordcount_spec.rb -------------------------------------------------------------------------------- /spec/routing/routes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/spec/routing/routes_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/custom_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/spec/support/custom_matchers.rb -------------------------------------------------------------------------------- /spec/support/session_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/honolulu_answers/HEAD/spec/support/session_helpers.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------