├── .github └── workflows │ └── tests.yml ├── .gitignore ├── Gemfile ├── MIT-LICENSE ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── commontator │ │ │ └── manifest.js │ ├── images │ │ └── commontator │ │ │ ├── downvote.png │ │ │ ├── downvote_active.png │ │ │ ├── downvote_disabled.png │ │ │ ├── downvote_hover.png │ │ │ ├── upvote.png │ │ │ ├── upvote_active.png │ │ │ ├── upvote_disabled.png │ │ │ └── upvote_hover.png │ ├── javascripts │ │ └── commontator │ │ │ ├── application.js │ │ │ └── mentions.js │ └── stylesheets │ │ └── commontator │ │ ├── application.scss │ │ └── comments.scss ├── controllers │ └── commontator │ │ ├── application_controller.rb │ │ ├── comments_controller.rb │ │ ├── security_transgression.rb │ │ ├── subscriptions_controller.rb │ │ └── threads_controller.rb ├── helpers │ └── commontator │ │ ├── application_helper.rb │ │ └── link_renderer.rb ├── mailers │ └── commontator │ │ └── subscriptions_mailer.rb ├── models │ └── commontator │ │ ├── collection.rb │ │ ├── comment.rb │ │ ├── json_array_coder.rb │ │ ├── subscription.rb │ │ └── thread.rb └── views │ └── commontator │ ├── comments │ ├── _body.html.erb │ ├── _form.html.erb │ ├── _list.html.erb │ ├── _show.html.erb │ ├── _show.js.erb │ ├── _votes.html.erb │ ├── cancel.js.erb │ ├── create.js.erb │ ├── delete.js.erb │ ├── edit.js.erb │ ├── new.js.erb │ ├── show.js.erb │ ├── update.js.erb │ └── vote.js.erb │ ├── shared │ └── _thread.html.erb │ ├── subscriptions │ ├── _link.html.erb │ └── subscribe.js.erb │ ├── subscriptions_mailer │ └── comment_created.html.erb │ └── threads │ ├── _hide_show_links.js.erb │ ├── _reply.html.erb │ ├── _show.html.erb │ ├── _show.js.erb │ └── show.js.erb ├── arrow.xcf ├── commontator.gemspec ├── config ├── initializers │ └── commontator.rb ├── locales │ ├── de.yml │ ├── en.yml │ ├── pt-BR.yml │ ├── ru.yml │ └── zh.yml └── routes.rb ├── db └── migrate │ ├── 10_install_commontator.rb │ └── 11_add_replying_to_comments.rb ├── lib ├── commontator.rb ├── commontator │ ├── acts_as_commontable.rb │ ├── acts_as_commontator.rb │ ├── build_thread.rb │ ├── commontable_config.rb │ ├── commontator_config.rb │ ├── config.rb │ ├── controllers.rb │ ├── engine.rb │ ├── shared_helper.rb │ └── version.rb └── tasks │ └── commontator_tasks.rake ├── script └── rails ├── spec ├── controllers │ └── commontator │ │ ├── comments_controller_spec.rb │ │ ├── subscriptions_controller_spec.rb │ │ └── threads_controller_spec.rb ├── dummy │ ├── README.md │ ├── Rakefile │ ├── app │ │ ├── assets │ │ │ ├── config │ │ │ │ └── manifest.js │ │ │ ├── javascripts │ │ │ │ └── application.js │ │ │ └── stylesheets │ │ │ │ └── application.css │ │ ├── controllers │ │ │ ├── application_controller.rb │ │ │ ├── dummy_api_controller.rb │ │ │ └── dummy_models_controller.rb │ │ ├── models │ │ │ ├── dummy_dependent_model.rb │ │ │ ├── dummy_model.rb │ │ │ └── dummy_user.rb │ │ └── views │ │ │ ├── dummy_models │ │ │ └── show.html.erb │ │ │ └── layouts │ │ │ └── application.html.erb │ ├── bin │ │ ├── rails │ │ ├── rake │ │ └── setup │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── cable.yml │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── application_controller_renderer.rb │ │ │ ├── assets.rb │ │ │ ├── backtrace_silencers.rb │ │ │ ├── commontator.rb │ │ │ ├── content_security_policy.rb │ │ │ ├── cookies_serializer.rb │ │ │ ├── default_url_options.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ ├── secret_token.rb │ │ │ ├── session_store.rb │ │ │ └── wrap_parameters.rb │ │ ├── locales │ │ │ └── en.yml │ │ ├── routes.rb │ │ └── storage.yml │ ├── db │ │ ├── migrate │ │ │ ├── 00_create_dummy_models.rb │ │ │ ├── 01_create_dummy_users.rb │ │ │ ├── 02_create_dummy_dependent_models.rb │ │ │ └── 03_acts_as_votable_migration.rb │ │ ├── schema.rb │ │ └── seeds.rb │ ├── lib │ │ └── .keep │ ├── public │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ └── favicon.ico │ └── script │ │ └── rails ├── helpers │ └── commontator │ │ └── application_helper_spec.rb ├── lib │ ├── commontator │ │ ├── acts_as_commontable_spec.rb │ │ ├── acts_as_commontator_spec.rb │ │ ├── commontable_config_spec.rb │ │ ├── commontator_config_spec.rb │ │ ├── controllers_spec.rb │ │ └── shared_helper_spec.rb │ └── commontator_spec.rb ├── mailers │ └── commontator │ │ └── subscriptions_mailer_spec.rb ├── models │ └── commontator │ │ ├── comment_spec.rb │ │ ├── subscription_spec.rb │ │ └── thread_spec.rb ├── rails_helper.rb └── spec_helper.rb └── vendor └── assets ├── javascripts ├── mentionsInput │ └── jquery.mentionsInput.js └── underscore │ └── underscore.js └── stylesheets └── mentionsInput └── jquery.mentionsInput.css /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/commontator/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/assets/config/commontator/manifest.js -------------------------------------------------------------------------------- /app/assets/images/commontator/downvote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/assets/images/commontator/downvote.png -------------------------------------------------------------------------------- /app/assets/images/commontator/downvote_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/assets/images/commontator/downvote_active.png -------------------------------------------------------------------------------- /app/assets/images/commontator/downvote_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/assets/images/commontator/downvote_disabled.png -------------------------------------------------------------------------------- /app/assets/images/commontator/downvote_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/assets/images/commontator/downvote_hover.png -------------------------------------------------------------------------------- /app/assets/images/commontator/upvote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/assets/images/commontator/upvote.png -------------------------------------------------------------------------------- /app/assets/images/commontator/upvote_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/assets/images/commontator/upvote_active.png -------------------------------------------------------------------------------- /app/assets/images/commontator/upvote_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/assets/images/commontator/upvote_disabled.png -------------------------------------------------------------------------------- /app/assets/images/commontator/upvote_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/assets/images/commontator/upvote_hover.png -------------------------------------------------------------------------------- /app/assets/javascripts/commontator/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/assets/javascripts/commontator/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/commontator/mentions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/assets/javascripts/commontator/mentions.js -------------------------------------------------------------------------------- /app/assets/stylesheets/commontator/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/assets/stylesheets/commontator/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/commontator/comments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/assets/stylesheets/commontator/comments.scss -------------------------------------------------------------------------------- /app/controllers/commontator/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/controllers/commontator/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/commontator/comments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/controllers/commontator/comments_controller.rb -------------------------------------------------------------------------------- /app/controllers/commontator/security_transgression.rb: -------------------------------------------------------------------------------- 1 | class Commontator::SecurityTransgression < StandardError 2 | end 3 | -------------------------------------------------------------------------------- /app/controllers/commontator/subscriptions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/controllers/commontator/subscriptions_controller.rb -------------------------------------------------------------------------------- /app/controllers/commontator/threads_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/controllers/commontator/threads_controller.rb -------------------------------------------------------------------------------- /app/helpers/commontator/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/helpers/commontator/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/commontator/link_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/helpers/commontator/link_renderer.rb -------------------------------------------------------------------------------- /app/mailers/commontator/subscriptions_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/mailers/commontator/subscriptions_mailer.rb -------------------------------------------------------------------------------- /app/models/commontator/collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/models/commontator/collection.rb -------------------------------------------------------------------------------- /app/models/commontator/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/models/commontator/comment.rb -------------------------------------------------------------------------------- /app/models/commontator/json_array_coder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/models/commontator/json_array_coder.rb -------------------------------------------------------------------------------- /app/models/commontator/subscription.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/models/commontator/subscription.rb -------------------------------------------------------------------------------- /app/models/commontator/thread.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/models/commontator/thread.rb -------------------------------------------------------------------------------- /app/views/commontator/comments/_body.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/comments/_body.html.erb -------------------------------------------------------------------------------- /app/views/commontator/comments/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/comments/_form.html.erb -------------------------------------------------------------------------------- /app/views/commontator/comments/_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/comments/_list.html.erb -------------------------------------------------------------------------------- /app/views/commontator/comments/_show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/comments/_show.html.erb -------------------------------------------------------------------------------- /app/views/commontator/comments/_show.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/comments/_show.js.erb -------------------------------------------------------------------------------- /app/views/commontator/comments/_votes.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/comments/_votes.html.erb -------------------------------------------------------------------------------- /app/views/commontator/comments/cancel.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/comments/cancel.js.erb -------------------------------------------------------------------------------- /app/views/commontator/comments/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/comments/create.js.erb -------------------------------------------------------------------------------- /app/views/commontator/comments/delete.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/comments/delete.js.erb -------------------------------------------------------------------------------- /app/views/commontator/comments/edit.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/comments/edit.js.erb -------------------------------------------------------------------------------- /app/views/commontator/comments/new.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/comments/new.js.erb -------------------------------------------------------------------------------- /app/views/commontator/comments/show.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/comments/show.js.erb -------------------------------------------------------------------------------- /app/views/commontator/comments/update.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/comments/update.js.erb -------------------------------------------------------------------------------- /app/views/commontator/comments/vote.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/comments/vote.js.erb -------------------------------------------------------------------------------- /app/views/commontator/shared/_thread.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/shared/_thread.html.erb -------------------------------------------------------------------------------- /app/views/commontator/subscriptions/_link.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/subscriptions/_link.html.erb -------------------------------------------------------------------------------- /app/views/commontator/subscriptions/subscribe.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/subscriptions/subscribe.js.erb -------------------------------------------------------------------------------- /app/views/commontator/subscriptions_mailer/comment_created.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/subscriptions_mailer/comment_created.html.erb -------------------------------------------------------------------------------- /app/views/commontator/threads/_hide_show_links.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/threads/_hide_show_links.js.erb -------------------------------------------------------------------------------- /app/views/commontator/threads/_reply.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/threads/_reply.html.erb -------------------------------------------------------------------------------- /app/views/commontator/threads/_show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/threads/_show.html.erb -------------------------------------------------------------------------------- /app/views/commontator/threads/_show.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/threads/_show.js.erb -------------------------------------------------------------------------------- /app/views/commontator/threads/show.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/app/views/commontator/threads/show.js.erb -------------------------------------------------------------------------------- /arrow.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/arrow.xcf -------------------------------------------------------------------------------- /commontator.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/commontator.gemspec -------------------------------------------------------------------------------- /config/initializers/commontator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/config/initializers/commontator.rb -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/config/locales/de.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/config/locales/pt-BR.yml -------------------------------------------------------------------------------- /config/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/config/locales/ru.yml -------------------------------------------------------------------------------- /config/locales/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/config/locales/zh.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/10_install_commontator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/db/migrate/10_install_commontator.rb -------------------------------------------------------------------------------- /db/migrate/11_add_replying_to_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/db/migrate/11_add_replying_to_comments.rb -------------------------------------------------------------------------------- /lib/commontator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/lib/commontator.rb -------------------------------------------------------------------------------- /lib/commontator/acts_as_commontable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/lib/commontator/acts_as_commontable.rb -------------------------------------------------------------------------------- /lib/commontator/acts_as_commontator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/lib/commontator/acts_as_commontator.rb -------------------------------------------------------------------------------- /lib/commontator/build_thread.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/lib/commontator/build_thread.rb -------------------------------------------------------------------------------- /lib/commontator/commontable_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/lib/commontator/commontable_config.rb -------------------------------------------------------------------------------- /lib/commontator/commontator_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/lib/commontator/commontator_config.rb -------------------------------------------------------------------------------- /lib/commontator/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/lib/commontator/config.rb -------------------------------------------------------------------------------- /lib/commontator/controllers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/lib/commontator/controllers.rb -------------------------------------------------------------------------------- /lib/commontator/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/lib/commontator/engine.rb -------------------------------------------------------------------------------- /lib/commontator/shared_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/lib/commontator/shared_helper.rb -------------------------------------------------------------------------------- /lib/commontator/version.rb: -------------------------------------------------------------------------------- 1 | COMMONTATOR_VERSION = '7.0.1' 2 | -------------------------------------------------------------------------------- /lib/tasks/commontator_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/lib/tasks/commontator_tasks.rake -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/script/rails -------------------------------------------------------------------------------- /spec/controllers/commontator/comments_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/controllers/commontator/comments_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/commontator/subscriptions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/controllers/commontator/subscriptions_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/commontator/threads_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/controllers/commontator/threads_controller_spec.rb -------------------------------------------------------------------------------- /spec/dummy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/README.md -------------------------------------------------------------------------------- /spec/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/Rakefile -------------------------------------------------------------------------------- /spec/dummy/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/app/assets/config/manifest.js -------------------------------------------------------------------------------- /spec/dummy/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /spec/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /spec/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /spec/dummy/app/controllers/dummy_api_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/app/controllers/dummy_api_controller.rb -------------------------------------------------------------------------------- /spec/dummy/app/controllers/dummy_models_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/app/controllers/dummy_models_controller.rb -------------------------------------------------------------------------------- /spec/dummy/app/models/dummy_dependent_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/app/models/dummy_dependent_model.rb -------------------------------------------------------------------------------- /spec/dummy/app/models/dummy_model.rb: -------------------------------------------------------------------------------- 1 | class DummyModel < ActiveRecord::Base 2 | acts_as_commontable 3 | end 4 | 5 | -------------------------------------------------------------------------------- /spec/dummy/app/models/dummy_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/app/models/dummy_user.rb -------------------------------------------------------------------------------- /spec/dummy/app/views/dummy_models/show.html.erb: -------------------------------------------------------------------------------- 1 | <%= commontator_thread(@dummy_model) %> 2 | -------------------------------------------------------------------------------- /spec/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /spec/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/bin/rails -------------------------------------------------------------------------------- /spec/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/bin/rake -------------------------------------------------------------------------------- /spec/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/bin/setup -------------------------------------------------------------------------------- /spec/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config.ru -------------------------------------------------------------------------------- /spec/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/application.rb -------------------------------------------------------------------------------- /spec/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/boot.rb -------------------------------------------------------------------------------- /spec/dummy/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/cable.yml -------------------------------------------------------------------------------- /spec/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/database.yml -------------------------------------------------------------------------------- /spec/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/environment.rb -------------------------------------------------------------------------------- /spec/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /spec/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /spec/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/initializers/assets.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/commontator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/initializers/commontator.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/default_url_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/initializers/default_url_options.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/initializers/session_store.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /spec/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /spec/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/routes.rb -------------------------------------------------------------------------------- /spec/dummy/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/config/storage.yml -------------------------------------------------------------------------------- /spec/dummy/db/migrate/00_create_dummy_models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/db/migrate/00_create_dummy_models.rb -------------------------------------------------------------------------------- /spec/dummy/db/migrate/01_create_dummy_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/db/migrate/01_create_dummy_users.rb -------------------------------------------------------------------------------- /spec/dummy/db/migrate/02_create_dummy_dependent_models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/db/migrate/02_create_dummy_dependent_models.rb -------------------------------------------------------------------------------- /spec/dummy/db/migrate/03_acts_as_votable_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/db/migrate/03_acts_as_votable_migration.rb -------------------------------------------------------------------------------- /spec/dummy/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/db/schema.rb -------------------------------------------------------------------------------- /spec/dummy/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/db/seeds.rb -------------------------------------------------------------------------------- /spec/dummy/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/public/404.html -------------------------------------------------------------------------------- /spec/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/public/422.html -------------------------------------------------------------------------------- /spec/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/public/500.html -------------------------------------------------------------------------------- /spec/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/dummy/script/rails -------------------------------------------------------------------------------- /spec/helpers/commontator/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/helpers/commontator/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/lib/commontator/acts_as_commontable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/lib/commontator/acts_as_commontable_spec.rb -------------------------------------------------------------------------------- /spec/lib/commontator/acts_as_commontator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/lib/commontator/acts_as_commontator_spec.rb -------------------------------------------------------------------------------- /spec/lib/commontator/commontable_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/lib/commontator/commontable_config_spec.rb -------------------------------------------------------------------------------- /spec/lib/commontator/commontator_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/lib/commontator/commontator_config_spec.rb -------------------------------------------------------------------------------- /spec/lib/commontator/controllers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/lib/commontator/controllers_spec.rb -------------------------------------------------------------------------------- /spec/lib/commontator/shared_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/lib/commontator/shared_helper_spec.rb -------------------------------------------------------------------------------- /spec/lib/commontator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/lib/commontator_spec.rb -------------------------------------------------------------------------------- /spec/mailers/commontator/subscriptions_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/mailers/commontator/subscriptions_mailer_spec.rb -------------------------------------------------------------------------------- /spec/models/commontator/comment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/models/commontator/comment_spec.rb -------------------------------------------------------------------------------- /spec/models/commontator/subscription_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/models/commontator/subscription_spec.rb -------------------------------------------------------------------------------- /spec/models/commontator/thread_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/models/commontator/thread_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/mentionsInput/jquery.mentionsInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/vendor/assets/javascripts/mentionsInput/jquery.mentionsInput.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/underscore/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/vendor/assets/javascripts/underscore/underscore.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/mentionsInput/jquery.mentionsInput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lml/commontator/HEAD/vendor/assets/stylesheets/mentionsInput/jquery.mentionsInput.css --------------------------------------------------------------------------------