Changes between Version 6 and Version 7 of BadContent
- Timestamp:
- Jan 26, 2014, 7:44:56 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BadContent
v6 v7 1 The [http://trac.edgewall.org/browser/plugins/1.0/spam-filter/tracspamfilter/filters/regex.py regex filter] reads a list of regular expressions from this page; each regular expression (case sensitive) being on a separate line inside the code block. Uses the [http://docs.python.org/lib/re-syntax.html Python syntax] for regular expressions. If any of those regular expressions matches the submitted content the submission will be rejected. 2 1 3 {{{ 2 (?i)cleansing\s ?milk3 (?i)facial\s ?cleansers4 (?i)erectile\s ?dysfunction4 (?i)cleansing\s*milk 5 (?i)facial\s*cleansers 6 (?i)erectile\s*dysfunction 5 7 (?i)zymbiotix 6 (?i)joint\s ?pain7 (?i)workout\s ?thighs8 (?i)supra\s ?cleanse9 (?i)weight\s ?loss8 (?i)joint\s*pain 9 (?i)workout\s*thighs 10 (?i)supra\s*cleanse 11 (?i)weight\s*loss 10 12 (?i)acai 11 13 (?i)rejuval … … 13 15 (?i)biogeniste 14 16 (?i)poweredessays 15 (?i)xtreme\s ?antler16 (?i)makeup\s ?remov(?:er|ing)17 (?i)anti\s ?(?:aging|wrinkle)18 (?i)skin\s ?(?:care|treatment)19 (?i)fat\s ?(?:burning|loss)20 (?i)muscle\s ?(?:building|growth|rev)21 (?i)wrinkle\s ?re(?:moving|ducer|covery|wind)17 (?i)xtreme\s*antler 18 (?i)makeup\s*remov(?:er|ing) 19 (?i)anti\s*(?:aging|wrinkle) 20 (?i)skin\s*(?:care|treatment) 21 (?i)fat\s*(?:burning|loss) 22 (?i)muscle\s*(?:building|growth|rev) 23 (?i)wrinkle\s*re(?:moving|ducer|covery|wind) 22 24 }}}
