├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── javascripts │ │ ├── app.js.coffee │ │ ├── app │ │ │ ├── calendar_panel.js.coffee │ │ │ ├── markdown_toolbar.js.coffee │ │ │ ├── page_edit_panel.js.coffee │ │ │ ├── page_list_panel.js.coffee │ │ │ ├── page_search_panel.js.coffee │ │ │ ├── panel.js.coffee │ │ │ ├── settings.js.coffee │ │ │ └── splash.js.coffee │ │ ├── messages.js.coffee │ │ ├── models │ │ │ ├── page.js.coffee │ │ │ └── page_collection.js.coffee │ │ ├── preview.js.coffee │ │ ├── session.js.coffee │ │ └── shared │ │ │ ├── app_cache.js.coffee │ │ │ ├── defer.js.coffee │ │ │ ├── feedback.js.coffee │ │ │ ├── labeled_button.js.coffee │ │ │ ├── localstorage.js │ │ │ ├── modal_dialog.js.coffee │ │ │ └── utils.js.coffee │ └── stylesheets │ │ ├── app.css.scss │ │ ├── app │ │ ├── calendar.scss │ │ ├── edit.scss │ │ ├── navigator.scss │ │ ├── page_list.scss │ │ ├── preview.css.scss │ │ ├── settings.scss │ │ └── user_messages.scss │ │ ├── application.css │ │ ├── evernote_auth.css.less │ │ ├── exports.css.less │ │ ├── feedbacks.css.less │ │ ├── layout.scss │ │ ├── messages.css.scss │ │ ├── pages.scss │ │ ├── settings.scss │ │ └── toggle.css.scss ├── controllers │ ├── app_controller.rb │ ├── application_controller.rb │ ├── calendar_controller.rb │ ├── dropbox_auth_controller.rb │ ├── evernote_auth_controller.rb │ ├── exports_controller.rb │ ├── fbauth_controller.rb │ ├── feedbacks_controller.rb │ ├── ghauth_controller.rb │ ├── helps_controller.rb │ ├── messages_controller.rb │ ├── pages │ │ └── members_controller.rb │ ├── pages_controller.rb │ ├── sessions_controller.rb │ ├── settings_controller.rb │ ├── stats_controller.rb │ └── user_messages_controller.rb ├── helpers │ ├── app_helper.rb │ ├── application_helper.rb │ ├── calendar_helper.rb │ ├── dropbox_auth_helper.rb │ ├── evernote_auth_helper.rb │ ├── exports_helper.rb │ ├── fbauth_helper.rb │ ├── feedbacks_helper.rb │ ├── ghauth_helper.rb │ ├── helps_helper.rb │ ├── messages_helper.rb │ ├── pages │ │ └── members_helper.rb │ ├── pages_helper.rb │ ├── sessions_helper.rb │ ├── settings_helper.rb │ ├── stats_helper.rb │ └── user_messages_helper.rb ├── mailers │ └── .gitkeep ├── models │ ├── dropbox_user.rb │ ├── evernote_user.rb │ ├── fb_user.rb │ ├── feedback.rb │ ├── gh_user.rb │ ├── help.rb │ ├── page.rb │ ├── page_date.rb │ ├── page_history.rb │ ├── page_property.rb │ ├── page_tag.rb │ ├── page_tagging.rb │ ├── page_user.rb │ ├── settings.rb │ ├── user.rb │ ├── user_message.rb │ └── user_property.rb └── views │ ├── app │ ├── _calendar.html.erb │ ├── _edit.html.erb │ ├── _edit_help.html.erb │ ├── _list.html.erb │ ├── _markdown_toolbar.html.erb │ └── index.html.erb │ ├── dropbox_auth │ └── callback.html.erb │ ├── evernote_auth │ └── callback.html.erb │ ├── feedbacks │ └── index.html.erb │ ├── layouts │ └── application.html.erb │ ├── pages │ └── show.html.erb │ ├── sessions │ ├── destroy.html.erb │ └── test.html.erb │ └── shared │ ├── _dialog.html.erb │ ├── _help.html.erb │ ├── _settings.html.erb │ └── _top_nav.html.erb ├── bin ├── bundle ├── rails └── rake ├── config.ru ├── config ├── application-sample.yml ├── application.rb ├── async-sample.yml ├── boot.rb ├── database.yml ├── dropbox-sample.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── evernote-sample.yml ├── facebook-sample.yml ├── github-sample.yml ├── initializers │ ├── backtrace_silencers.rb │ ├── dependencies.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── secret_token.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ ├── en.bootstrap.yml │ └── en.yml ├── newrelic.yml ├── paperclip_feedbacks_s3-sample.yml ├── routes.rb ├── sunspot.yml └── unicorn.rb ├── db ├── migrate │ ├── 20130401042055_create_users.rb │ ├── 20130401043234_create_fb_users.rb │ ├── 20130401093441_add_icon_url_to_users.rb │ ├── 20130401093723_alter_fb_user.rb │ ├── 20130415152846_create_chatrooms.rb │ ├── 20130415152926_create_chat_messages.rb │ ├── 20130415154159_create_chatroom_user.rb │ ├── 20130416080847_create_pages.rb │ ├── 20130417115449_add_rw_permission_to_page.rb │ ├── 20130417122536_create_page_users.rb │ ├── 20130424073917_create_page_histories.rb │ ├── 20130424082452_add_lock_version_to_page.rb │ ├── 20130425163314_add_archived_to_page.rb │ ├── 20130426090032_create_gh_users.rb │ ├── 20130429044630_create_page_dates.rb │ ├── 20130430155039_add_modified_at_to_page.rb │ ├── 20130502015700_create_dropbox_users.rb │ ├── 20130502030218_add_backups_to_dropbox_users.rb │ ├── 20130502040619_create_page_tags.rb │ ├── 20130502040654_create_page_taggings.rb │ ├── 20130502061752_add_page_taggings_count_to_page_tags.rb │ ├── 20130505004446_create_user_messages.rb │ ├── 20130505061158_add_actived_at_to_users.rb │ ├── 20130506012327_add_email_to_users.rb │ ├── 20130523155845_rename_message_type.rb │ ├── 20130523155902_add_sender_user_id_to_user_messages.rb │ ├── 20130523161758_create_helps.rb │ ├── 20130529031512_create_feedbacks.rb │ ├── 20130529064128_add_user_agent_to_feedbacks.rb │ ├── 20130602120810_add_whatsnew_to_helps.rb │ ├── 20130606071309_create_user_properties.rb │ ├── 20130606071320_create_page_properties.rb │ ├── 20130619142109_create_evernote_users.rb │ ├── 20130619162458_remove_expiration_form_evernote_users.rb │ ├── 20130619175110_add_notebook_guid_to_evernote_user.rb │ ├── 20130621122817_add_active_to_users.rb │ ├── 20131014131119_remove_too_long_tags.rb │ └── 20131014145849_update_taggings.rb ├── schema.rb └── seeds.rb ├── deploy.sh ├── doc └── README_FOR_APP ├── lib ├── ar_async.rb ├── assets │ └── .gitkeep ├── backup_dropbox.rb ├── backup_pages.rb ├── block_profiler.rb ├── evernote_auth.rb ├── fbauth.rb ├── ghauth.rb ├── paperclip_ext.rb ├── prop_extend.rb └── tasks │ └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── fonts │ ├── fontawesome-webfont-311.ttf │ └── fontawesome-webfont-311.woff ├── images │ ├── dropbox_icon128.png │ ├── evernote16.png │ ├── evernote16b.png │ ├── evernote_icon128.png │ ├── masuidrive64.jpg │ ├── wripe-top880.png │ ├── wripe114s.png │ └── wripe400s.png ├── index.html ├── robots.txt ├── terms.html └── top.html ├── script └── rails ├── spec ├── factories │ └── users.rb ├── features │ ├── create_new_page_spec.rb │ ├── evernote_sync_spec.rb │ ├── guest_spec.rb │ ├── modify_page_spec.rb │ ├── search_spec.rb │ ├── signin_evernote_spec.rb │ ├── signin_facebook_spec.rb │ └── signin_github_spec.rb ├── spec_helper.rb └── support │ ├── capybara_drivers.rb │ ├── database_cleaner.rb │ ├── test_login.rb │ ├── wait_until.rb │ └── window.rb ├── test ├── controllers │ ├── app_controller_test.rb │ ├── dropbox_auth_controller_test.rb │ ├── sessions_controller_test.rb │ ├── settings_controller_test.rb │ ├── stats_controller_test.rb │ ├── top_controller_test.rb │ └── user_messages_controller_test.rb ├── fixtures │ ├── .gitkeep │ ├── dropbox_users.yml │ ├── fb_users.yml │ ├── gh_users.yml │ ├── page_dates.yml │ ├── page_histories.yml │ ├── page_taggings.yml │ ├── page_tags.yml │ ├── page_users.yml │ ├── pages.yml │ ├── user_messages.yml │ └── users.yml ├── functional │ └── .gitkeep ├── helpers │ ├── app_helper_test.rb │ ├── dropbox_auth_helper_test.rb │ ├── sessions_helper_test.rb │ ├── settings_helper_test.rb │ ├── stats_helper_test.rb │ ├── top_helper_test.rb │ └── user_messages_helper_test.rb ├── integration │ └── .gitkeep ├── models │ ├── dropbox_user_test.rb │ ├── page_date_test.rb │ ├── page_tag_test.rb │ ├── page_tagging_test.rb │ └── user_message_test.rb ├── performance │ └── browsing_test.rb ├── test_helper.rb └── unit │ ├── .gitkeep │ ├── fb_user_test.rb │ ├── gh_user_test.rb │ ├── helpers │ ├── dashboard_helper_test.rb │ ├── fbauth_helper_test.rb │ ├── ghauth_helper_test.rb │ ├── pages │ │ └── members_helper_test.rb │ └── pages_helper_test.rb │ ├── page_history_test.rb │ ├── page_test.rb │ ├── page_user_test.rb │ └── user_test.rb └── vendor ├── assets ├── javascripts │ ├── .gitkeep │ ├── konami.js │ └── shared │ │ ├── analytics.js.coffee │ │ ├── backbone.js │ │ ├── bootstrap.js │ │ ├── bootstrapSwitch.js │ │ ├── diff.js │ │ ├── html2canvas.js │ │ ├── html2canvas │ │ ├── Core.js │ │ ├── Font.js │ │ ├── Generate.js │ │ ├── Parse.js │ │ ├── Preload.js │ │ ├── Queue.js │ │ ├── Renderer.js │ │ ├── Support.js │ │ ├── Util.js │ │ └── renderers │ │ │ ├── Canvas.js │ │ │ └── SVG.js │ │ ├── iscroll-lite.js │ │ ├── jquery-ui-1.10.3.custom.js │ │ ├── jquery.bootstrap-growl.js │ │ ├── jquery.hotkeys.js │ │ ├── jscache.js │ │ ├── marked.js │ │ ├── pickup_dates.js │ │ ├── relative_date.js │ │ ├── sprintf.js │ │ └── underscore.js └── stylesheets │ ├── .gitkeep │ └── shared │ ├── bootstrap-responsive.css │ ├── bootstrap.css │ ├── bootstrapSwitch.css │ ├── font-awesome.css │ ├── patch.scss │ └── toggle-switch.css └── plugins └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/javascripts/app.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/app.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/app/calendar_panel.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/app/calendar_panel.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/app/markdown_toolbar.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/app/markdown_toolbar.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/app/page_edit_panel.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/app/page_edit_panel.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/app/page_list_panel.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/app/page_list_panel.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/app/page_search_panel.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/app/page_search_panel.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/app/panel.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/app/panel.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/app/settings.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/app/settings.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/app/splash.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/app/splash.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/messages.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/messages.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/page.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/models/page.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/page_collection.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/models/page_collection.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/preview.js.coffee: -------------------------------------------------------------------------------- 1 | #= require shared/marked 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/session.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/session.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/shared/app_cache.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/shared/app_cache.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/shared/defer.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/shared/defer.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/shared/feedback.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/shared/feedback.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/shared/labeled_button.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/shared/labeled_button.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/shared/localstorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/shared/localstorage.js -------------------------------------------------------------------------------- /app/assets/javascripts/shared/modal_dialog.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/shared/modal_dialog.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/shared/utils.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/javascripts/shared/utils.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/app.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/stylesheets/app.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/app/calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/stylesheets/app/calendar.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/app/edit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/stylesheets/app/edit.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/app/navigator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/stylesheets/app/navigator.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/app/page_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/stylesheets/app/page_list.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/app/preview.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/stylesheets/app/preview.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/app/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/stylesheets/app/settings.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/app/user_messages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/stylesheets/app/user_messages.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/evernote_auth.css.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/stylesheets/evernote_auth.css.less -------------------------------------------------------------------------------- /app/assets/stylesheets/exports.css.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/stylesheets/exports.css.less -------------------------------------------------------------------------------- /app/assets/stylesheets/feedbacks.css.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/stylesheets/feedbacks.css.less -------------------------------------------------------------------------------- /app/assets/stylesheets/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/stylesheets/layout.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/messages.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/stylesheets/messages.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/stylesheets/pages.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/settings.scss: -------------------------------------------------------------------------------- 1 | .container-fluid { 2 | padding-top: 32px; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/toggle.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/assets/stylesheets/toggle.css.scss -------------------------------------------------------------------------------- /app/controllers/app_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/controllers/app_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/calendar_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/controllers/calendar_controller.rb -------------------------------------------------------------------------------- /app/controllers/dropbox_auth_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/controllers/dropbox_auth_controller.rb -------------------------------------------------------------------------------- /app/controllers/evernote_auth_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/controllers/evernote_auth_controller.rb -------------------------------------------------------------------------------- /app/controllers/exports_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/controllers/exports_controller.rb -------------------------------------------------------------------------------- /app/controllers/fbauth_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/controllers/fbauth_controller.rb -------------------------------------------------------------------------------- /app/controllers/feedbacks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/controllers/feedbacks_controller.rb -------------------------------------------------------------------------------- /app/controllers/ghauth_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/controllers/ghauth_controller.rb -------------------------------------------------------------------------------- /app/controllers/helps_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/controllers/helps_controller.rb -------------------------------------------------------------------------------- /app/controllers/messages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/controllers/messages_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages/members_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/controllers/pages/members_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/settings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/controllers/settings_controller.rb -------------------------------------------------------------------------------- /app/controllers/stats_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/controllers/stats_controller.rb -------------------------------------------------------------------------------- /app/controllers/user_messages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/controllers/user_messages_controller.rb -------------------------------------------------------------------------------- /app/helpers/app_helper.rb: -------------------------------------------------------------------------------- 1 | module AppHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/calendar_helper.rb: -------------------------------------------------------------------------------- 1 | module CalendarHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/dropbox_auth_helper.rb: -------------------------------------------------------------------------------- 1 | module DropboxAuthHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/evernote_auth_helper.rb: -------------------------------------------------------------------------------- 1 | module EvernoteAuthHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/exports_helper.rb: -------------------------------------------------------------------------------- 1 | module ExportsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/fbauth_helper.rb: -------------------------------------------------------------------------------- 1 | module FbauthHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/feedbacks_helper.rb: -------------------------------------------------------------------------------- 1 | module FeedbacksHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/ghauth_helper.rb: -------------------------------------------------------------------------------- 1 | module GhauthHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/helps_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/helpers/helps_helper.rb -------------------------------------------------------------------------------- /app/helpers/messages_helper.rb: -------------------------------------------------------------------------------- 1 | module MessagesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/pages/members_helper.rb: -------------------------------------------------------------------------------- 1 | module Pages::MembersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/pages_helper.rb: -------------------------------------------------------------------------------- 1 | module PagesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/sessions_helper.rb: -------------------------------------------------------------------------------- 1 | module SessionsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/settings_helper.rb: -------------------------------------------------------------------------------- 1 | module SettingsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/stats_helper.rb: -------------------------------------------------------------------------------- 1 | module StatsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/user_messages_helper.rb: -------------------------------------------------------------------------------- 1 | module UserMessagesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/dropbox_user.rb: -------------------------------------------------------------------------------- 1 | class DropboxUser < ActiveRecord::Base 2 | belongs_to :user 3 | end 4 | -------------------------------------------------------------------------------- /app/models/evernote_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/models/evernote_user.rb -------------------------------------------------------------------------------- /app/models/fb_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/models/fb_user.rb -------------------------------------------------------------------------------- /app/models/feedback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/models/feedback.rb -------------------------------------------------------------------------------- /app/models/gh_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/models/gh_user.rb -------------------------------------------------------------------------------- /app/models/help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/models/help.rb -------------------------------------------------------------------------------- /app/models/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/models/page.rb -------------------------------------------------------------------------------- /app/models/page_date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/models/page_date.rb -------------------------------------------------------------------------------- /app/models/page_history.rb: -------------------------------------------------------------------------------- 1 | class PageHistory < ActiveRecord::Base 2 | belongs_to :page 3 | end 4 | -------------------------------------------------------------------------------- /app/models/page_property.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/models/page_property.rb -------------------------------------------------------------------------------- /app/models/page_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/models/page_tag.rb -------------------------------------------------------------------------------- /app/models/page_tagging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/models/page_tagging.rb -------------------------------------------------------------------------------- /app/models/page_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/models/page_user.rb -------------------------------------------------------------------------------- /app/models/settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/models/settings.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/models/user_message.rb -------------------------------------------------------------------------------- /app/models/user_property.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/models/user_property.rb -------------------------------------------------------------------------------- /app/views/app/_calendar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/views/app/_calendar.html.erb -------------------------------------------------------------------------------- /app/views/app/_edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/views/app/_edit.html.erb -------------------------------------------------------------------------------- /app/views/app/_edit_help.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/views/app/_edit_help.html.erb -------------------------------------------------------------------------------- /app/views/app/_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/views/app/_list.html.erb -------------------------------------------------------------------------------- /app/views/app/_markdown_toolbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/views/app/_markdown_toolbar.html.erb -------------------------------------------------------------------------------- /app/views/app/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/views/app/index.html.erb -------------------------------------------------------------------------------- /app/views/dropbox_auth/callback.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/views/dropbox_auth/callback.html.erb -------------------------------------------------------------------------------- /app/views/evernote_auth/callback.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/views/evernote_auth/callback.html.erb -------------------------------------------------------------------------------- /app/views/feedbacks/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/views/feedbacks/index.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/pages/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/views/pages/show.html.erb -------------------------------------------------------------------------------- /app/views/sessions/destroy.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/views/sessions/destroy.html.erb -------------------------------------------------------------------------------- /app/views/sessions/test.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/views/sessions/test.html.erb -------------------------------------------------------------------------------- /app/views/shared/_dialog.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/views/shared/_dialog.html.erb -------------------------------------------------------------------------------- /app/views/shared/_help.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/views/shared/_help.html.erb -------------------------------------------------------------------------------- /app/views/shared/_settings.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/views/shared/_settings.html.erb -------------------------------------------------------------------------------- /app/views/shared/_top_nav.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/app/views/shared/_top_nav.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/bin/rake -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config.ru -------------------------------------------------------------------------------- /config/application-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/application-sample.yml -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/async-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/async-sample.yml -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/dropbox-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/dropbox-sample.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/evernote-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/evernote-sample.yml -------------------------------------------------------------------------------- /config/facebook-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/facebook-sample.yml -------------------------------------------------------------------------------- /config/github-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/github-sample.yml -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/dependencies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/initializers/dependencies.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/locales/en.bootstrap.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/newrelic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/newrelic.yml -------------------------------------------------------------------------------- /config/paperclip_feedbacks_s3-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/paperclip_feedbacks_s3-sample.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/sunspot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/sunspot.yml -------------------------------------------------------------------------------- /config/unicorn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/config/unicorn.rb -------------------------------------------------------------------------------- /db/migrate/20130401042055_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130401042055_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20130401043234_create_fb_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130401043234_create_fb_users.rb -------------------------------------------------------------------------------- /db/migrate/20130401093441_add_icon_url_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130401093441_add_icon_url_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20130401093723_alter_fb_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130401093723_alter_fb_user.rb -------------------------------------------------------------------------------- /db/migrate/20130415152846_create_chatrooms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130415152846_create_chatrooms.rb -------------------------------------------------------------------------------- /db/migrate/20130415152926_create_chat_messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130415152926_create_chat_messages.rb -------------------------------------------------------------------------------- /db/migrate/20130415154159_create_chatroom_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130415154159_create_chatroom_user.rb -------------------------------------------------------------------------------- /db/migrate/20130416080847_create_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130416080847_create_pages.rb -------------------------------------------------------------------------------- /db/migrate/20130417115449_add_rw_permission_to_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130417115449_add_rw_permission_to_page.rb -------------------------------------------------------------------------------- /db/migrate/20130417122536_create_page_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130417122536_create_page_users.rb -------------------------------------------------------------------------------- /db/migrate/20130424073917_create_page_histories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130424073917_create_page_histories.rb -------------------------------------------------------------------------------- /db/migrate/20130424082452_add_lock_version_to_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130424082452_add_lock_version_to_page.rb -------------------------------------------------------------------------------- /db/migrate/20130425163314_add_archived_to_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130425163314_add_archived_to_page.rb -------------------------------------------------------------------------------- /db/migrate/20130426090032_create_gh_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130426090032_create_gh_users.rb -------------------------------------------------------------------------------- /db/migrate/20130429044630_create_page_dates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130429044630_create_page_dates.rb -------------------------------------------------------------------------------- /db/migrate/20130430155039_add_modified_at_to_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130430155039_add_modified_at_to_page.rb -------------------------------------------------------------------------------- /db/migrate/20130502015700_create_dropbox_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130502015700_create_dropbox_users.rb -------------------------------------------------------------------------------- /db/migrate/20130502030218_add_backups_to_dropbox_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130502030218_add_backups_to_dropbox_users.rb -------------------------------------------------------------------------------- /db/migrate/20130502040619_create_page_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130502040619_create_page_tags.rb -------------------------------------------------------------------------------- /db/migrate/20130502040654_create_page_taggings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130502040654_create_page_taggings.rb -------------------------------------------------------------------------------- /db/migrate/20130502061752_add_page_taggings_count_to_page_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130502061752_add_page_taggings_count_to_page_tags.rb -------------------------------------------------------------------------------- /db/migrate/20130505004446_create_user_messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130505004446_create_user_messages.rb -------------------------------------------------------------------------------- /db/migrate/20130505061158_add_actived_at_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130505061158_add_actived_at_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20130506012327_add_email_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130506012327_add_email_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20130523155845_rename_message_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130523155845_rename_message_type.rb -------------------------------------------------------------------------------- /db/migrate/20130523155902_add_sender_user_id_to_user_messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130523155902_add_sender_user_id_to_user_messages.rb -------------------------------------------------------------------------------- /db/migrate/20130523161758_create_helps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130523161758_create_helps.rb -------------------------------------------------------------------------------- /db/migrate/20130529031512_create_feedbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130529031512_create_feedbacks.rb -------------------------------------------------------------------------------- /db/migrate/20130529064128_add_user_agent_to_feedbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130529064128_add_user_agent_to_feedbacks.rb -------------------------------------------------------------------------------- /db/migrate/20130602120810_add_whatsnew_to_helps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130602120810_add_whatsnew_to_helps.rb -------------------------------------------------------------------------------- /db/migrate/20130606071309_create_user_properties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130606071309_create_user_properties.rb -------------------------------------------------------------------------------- /db/migrate/20130606071320_create_page_properties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130606071320_create_page_properties.rb -------------------------------------------------------------------------------- /db/migrate/20130619142109_create_evernote_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130619142109_create_evernote_users.rb -------------------------------------------------------------------------------- /db/migrate/20130619162458_remove_expiration_form_evernote_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130619162458_remove_expiration_form_evernote_users.rb -------------------------------------------------------------------------------- /db/migrate/20130619175110_add_notebook_guid_to_evernote_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130619175110_add_notebook_guid_to_evernote_user.rb -------------------------------------------------------------------------------- /db/migrate/20130621122817_add_active_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20130621122817_add_active_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20131014131119_remove_too_long_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20131014131119_remove_too_long_tags.rb -------------------------------------------------------------------------------- /db/migrate/20131014145849_update_taggings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/migrate/20131014145849_update_taggings.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/deploy.sh -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/doc/README_FOR_APP -------------------------------------------------------------------------------- /lib/ar_async.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/lib/ar_async.rb -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/backup_dropbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/lib/backup_dropbox.rb -------------------------------------------------------------------------------- /lib/backup_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/lib/backup_pages.rb -------------------------------------------------------------------------------- /lib/block_profiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/lib/block_profiler.rb -------------------------------------------------------------------------------- /lib/evernote_auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/lib/evernote_auth.rb -------------------------------------------------------------------------------- /lib/fbauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/lib/fbauth.rb -------------------------------------------------------------------------------- /lib/ghauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/lib/ghauth.rb -------------------------------------------------------------------------------- /lib/paperclip_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/lib/paperclip_ext.rb -------------------------------------------------------------------------------- /lib/prop_extend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/lib/prop_extend.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont-311.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/public/fonts/fontawesome-webfont-311.ttf -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont-311.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/public/fonts/fontawesome-webfont-311.woff -------------------------------------------------------------------------------- /public/images/dropbox_icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/public/images/dropbox_icon128.png -------------------------------------------------------------------------------- /public/images/evernote16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/public/images/evernote16.png -------------------------------------------------------------------------------- /public/images/evernote16b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/public/images/evernote16b.png -------------------------------------------------------------------------------- /public/images/evernote_icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/public/images/evernote_icon128.png -------------------------------------------------------------------------------- /public/images/masuidrive64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/public/images/masuidrive64.jpg -------------------------------------------------------------------------------- /public/images/wripe-top880.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/public/images/wripe-top880.png -------------------------------------------------------------------------------- /public/images/wripe114s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/public/images/wripe114s.png -------------------------------------------------------------------------------- /public/images/wripe400s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/public/images/wripe400s.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/public/terms.html -------------------------------------------------------------------------------- /public/top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/public/top.html -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/script/rails -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/features/create_new_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/spec/features/create_new_page_spec.rb -------------------------------------------------------------------------------- /spec/features/evernote_sync_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/spec/features/evernote_sync_spec.rb -------------------------------------------------------------------------------- /spec/features/guest_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/spec/features/guest_spec.rb -------------------------------------------------------------------------------- /spec/features/modify_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/spec/features/modify_page_spec.rb -------------------------------------------------------------------------------- /spec/features/search_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/spec/features/search_spec.rb -------------------------------------------------------------------------------- /spec/features/signin_evernote_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/spec/features/signin_evernote_spec.rb -------------------------------------------------------------------------------- /spec/features/signin_facebook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/spec/features/signin_facebook_spec.rb -------------------------------------------------------------------------------- /spec/features/signin_github_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/spec/features/signin_github_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/capybara_drivers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/spec/support/capybara_drivers.rb -------------------------------------------------------------------------------- /spec/support/database_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/spec/support/database_cleaner.rb -------------------------------------------------------------------------------- /spec/support/test_login.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/spec/support/test_login.rb -------------------------------------------------------------------------------- /spec/support/wait_until.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/spec/support/wait_until.rb -------------------------------------------------------------------------------- /spec/support/window.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/spec/support/window.rb -------------------------------------------------------------------------------- /test/controllers/app_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/controllers/app_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/dropbox_auth_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/controllers/dropbox_auth_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/sessions_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/controllers/sessions_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/settings_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/controllers/settings_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/stats_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/controllers/stats_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/top_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/controllers/top_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/user_messages_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/controllers/user_messages_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/dropbox_users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/fixtures/dropbox_users.yml -------------------------------------------------------------------------------- /test/fixtures/fb_users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/fixtures/fb_users.yml -------------------------------------------------------------------------------- /test/fixtures/gh_users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/fixtures/gh_users.yml -------------------------------------------------------------------------------- /test/fixtures/page_dates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/fixtures/page_dates.yml -------------------------------------------------------------------------------- /test/fixtures/page_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/fixtures/page_histories.yml -------------------------------------------------------------------------------- /test/fixtures/page_taggings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/fixtures/page_taggings.yml -------------------------------------------------------------------------------- /test/fixtures/page_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/fixtures/page_tags.yml -------------------------------------------------------------------------------- /test/fixtures/page_users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/fixtures/page_users.yml -------------------------------------------------------------------------------- /test/fixtures/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/fixtures/pages.yml -------------------------------------------------------------------------------- /test/fixtures/user_messages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/fixtures/user_messages.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/functional/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/app_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/helpers/app_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/dropbox_auth_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/helpers/dropbox_auth_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/sessions_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/helpers/sessions_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/settings_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/helpers/settings_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/stats_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/helpers/stats_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/top_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/helpers/top_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/user_messages_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/helpers/user_messages_helper_test.rb -------------------------------------------------------------------------------- /test/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/dropbox_user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/models/dropbox_user_test.rb -------------------------------------------------------------------------------- /test/models/page_date_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/models/page_date_test.rb -------------------------------------------------------------------------------- /test/models/page_tag_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/models/page_tag_test.rb -------------------------------------------------------------------------------- /test/models/page_tagging_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/models/page_tagging_test.rb -------------------------------------------------------------------------------- /test/models/user_message_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/models/user_message_test.rb -------------------------------------------------------------------------------- /test/performance/browsing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/performance/browsing_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/fb_user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/unit/fb_user_test.rb -------------------------------------------------------------------------------- /test/unit/gh_user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/unit/gh_user_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/dashboard_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/unit/helpers/dashboard_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/fbauth_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/unit/helpers/fbauth_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/ghauth_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/unit/helpers/ghauth_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/pages/members_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/unit/helpers/pages/members_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/pages_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/unit/helpers/pages_helper_test.rb -------------------------------------------------------------------------------- /test/unit/page_history_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/unit/page_history_test.rb -------------------------------------------------------------------------------- /test/unit/page_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/unit/page_test.rb -------------------------------------------------------------------------------- /test/unit/page_user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/unit/page_user_test.rb -------------------------------------------------------------------------------- /test/unit/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/test/unit/user_test.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/konami.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/konami.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/analytics.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/analytics.js.coffee -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/backbone.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/bootstrap.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/bootstrapSwitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/bootstrapSwitch.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/diff.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/html2canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/html2canvas.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/html2canvas/Core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/html2canvas/Core.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/html2canvas/Font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/html2canvas/Font.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/html2canvas/Generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/html2canvas/Generate.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/html2canvas/Parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/html2canvas/Parse.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/html2canvas/Preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/html2canvas/Preload.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/html2canvas/Queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/html2canvas/Queue.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/html2canvas/Renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/html2canvas/Renderer.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/html2canvas/Support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/html2canvas/Support.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/html2canvas/Util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/html2canvas/Util.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/html2canvas/renderers/Canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/html2canvas/renderers/Canvas.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/html2canvas/renderers/SVG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/html2canvas/renderers/SVG.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/iscroll-lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/iscroll-lite.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/jquery-ui-1.10.3.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/jquery-ui-1.10.3.custom.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/jquery.bootstrap-growl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/jquery.bootstrap-growl.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/jquery.hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/jquery.hotkeys.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/jscache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/jscache.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/marked.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/pickup_dates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/pickup_dates.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/relative_date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/relative_date.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/sprintf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/sprintf.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/shared/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/javascripts/shared/underscore.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/shared/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/stylesheets/shared/bootstrap-responsive.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/shared/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/stylesheets/shared/bootstrap.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/shared/bootstrapSwitch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/stylesheets/shared/bootstrapSwitch.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/shared/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/stylesheets/shared/font-awesome.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/shared/patch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/stylesheets/shared/patch.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/shared/toggle-switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masuidrive/open-wripe/HEAD/vendor/assets/stylesheets/shared/toggle-switch.css -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------