mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:05:24 +08:00
862007fb18
* FEATURE: Add case-sensitivity flag to watched_words Currently, all watched words are matched case-insensitively. This flag allows a watched word to be flagged for case-sensitive matching. To allow allow for backwards compatibility the flag is set to false by default. * FEATURE: Support case-sensitive creation of Watched Words via API Extend admin creation and upload of Watched Words to support case sensitive flag. This lays the ground work for supporting case-insensitive matching of Watched Words. Support for an extra column has also been introduced for the Watched Words upload CSV file. The new column structure is as follows: word,replacement,case_sentive * FEATURE: Enable case-sensitive matching of Watched Words WordWatcher's word_matcher_regexp now returns a list of regular expressions instead of one case-insensitive regular expression. With the ability to flag a Watched Word as case-sensitive, an action can have words of both sensitivities.This makes the use of the global Regexp::IGNORECASE flag added to all words problematic. To get around platform limitations around the use of subexpression level switches/flags, a list of regular expressions is returned instead, one for each case sensitivity. Word matching has also been updated to use this list of regular expressions instead of one. * FEATURE: Use case-sensitive regular expressions for Watched Words Update Watched Words regular expressions matching and processing to handle the extra metadata which comes along with the introduction of case-sensitive Watched Words. This allows case-sensitive Watched Words to matched as such. * DEV: Simplify type casting of case-sensitive flag from uploads Use builtin semantics instead of a custom method for converting string case flags in uploaded Watched Words to boolean. * UX: Add case-sensitivity details to Admin Watched Words UI Update Watched Word form to include a toggle for case-sensitivity. This also adds support for, case-sensitive testing and matching of Watched Word in the admin UI. * DEV: Code improvements from review feedback - Extract watched word regex creation out to a utility function - Make JS array presence check more explicit and readable * DEV: Extract Watched Word regex creation to utility function Clean-up work from review feedback. Reduce code duplication. * DEV: Rename word_matcher_regexp to word_matcher_regexp_list Since a list is returned now instead of a single regular expression, change `word_matcher_regexp` to `word_matcher_regexp_list` to better communicate this change. * DEV: Incorporate WordWatcher updates from upstream Resolve conflicts and ensure apply_to_text does not remove non-word characters in matches that aren't at the beginning of the line. |
||
---|---|---|
.. | ||
admin | ||
api | ||
about_controller_spec.rb | ||
application_controller_spec.rb | ||
associate_accounts_controller_spec.rb | ||
badges_controller_spec.rb | ||
bookmarks_controller_spec.rb | ||
bootstrap_controller_spec.rb | ||
categories_controller_spec.rb | ||
clicks_controller_spec.rb | ||
composer_messages_controller_spec.rb | ||
csp_reports_controller_spec.rb | ||
directory_columns_controller_spec.rb | ||
directory_items_controller_spec.rb | ||
do_not_disturb_controller_spec.rb | ||
drafts_controller_spec.rb | ||
email_controller_spec.rb | ||
embed_controller_spec.rb | ||
exceptions_controller_spec.rb | ||
export_csv_controller_spec.rb | ||
extra_locales_controller_spec.rb | ||
finish_installation_controller_spec.rb | ||
forums_controller_spec.rb | ||
groups_controller_spec.rb | ||
hashtags_controller_spec.rb | ||
inline_onebox_controller_spec.rb | ||
invites_controller_spec.rb | ||
list_controller_spec.rb | ||
metadata_controller_spec.rb | ||
notifications_controller_spec.rb | ||
offline_controller_spec.rb | ||
omniauth_callbacks_controller_spec.rb | ||
onebox_controller_spec.rb | ||
permalinks_controller_spec.rb | ||
post_action_users_controller_spec.rb | ||
post_actions_controller_spec.rb | ||
post_readers_controller_spec.rb | ||
posts_controller_spec.rb | ||
presence_controller_spec.rb | ||
published_pages_controller_spec.rb | ||
push_notification_controller_spec.rb | ||
qunit_controller_spec.rb | ||
reviewable_claimed_topics_controller_spec.rb | ||
reviewables_controller_spec.rb | ||
robots_txt_controller_spec.rb | ||
safe_mode_controller_spec.rb | ||
search_controller_spec.rb | ||
session_controller_spec.rb | ||
similar_topics_controller_spec.rb | ||
site_controller_spec.rb | ||
sitemap_controller_spec.rb | ||
static_controller_spec.rb | ||
steps_controller_spec.rb | ||
stylesheets_controller_spec.rb | ||
svg_sprite_controller_spec.rb | ||
tag_groups_controller_spec.rb | ||
tags_controller_spec.rb | ||
theme_javascripts_controller_spec.rb | ||
topics_controller_spec.rb | ||
uploads_controller_multisite_spec.rb | ||
uploads_controller_spec.rb | ||
user_actions_controller_spec.rb | ||
user_api_keys_controller_spec.rb | ||
user_avatars_controller_spec.rb | ||
user_badges_controller_spec.rb | ||
user_status_controller_spec.rb | ||
users_controller_spec.rb | ||
users_email_controller_spec.rb | ||
webhooks_controller_spec.rb | ||
wizard_controller_spec.rb |