Changes between Version 7 and Version 8 of BadContent
- Timestamp:
- Jan 27, 2014, 9:17:31 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BadContent
v7 v8 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 th ose regular expressions matchesthe submitted content the submission will be rejected.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 these regular expressions match the submitted content the submission will be rejected. 2 2 3 3 {{{ 4 (?i)cleansing\s*milk5 (?i)facial\s*cleansers6 (?i)erectile\s*dysfunction7 4 (?i)zymbiotix 8 (?i)joint\s*pain9 (?i)workout\s*thighs10 (?i)supra\s*cleanse11 (?i)weight\s*loss12 5 (?i)acai 13 6 (?i)rejuval … … 15 8 (?i)biogeniste 16 9 (?i)poweredessays 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) 10 (?i)penomet 11 (?i)ketone 12 (?i)cleansing.?milk 13 (?i)facial.?cleansers 14 (?i)erectile.?dysfunction 15 (?i)joint.?pain 16 (?i)workout.?thighs 17 (?i)xtreme.?antler 18 (?i)weight.?(?:gain|loss) 19 (?i)makeup.?remov(?:er|ing) 20 (?i)anti.?(?:aging|wrinkle) 21 (?i)skin.?(?:care|treatment) 22 (?i)fat.?(?:burning|loss) 23 (?i)muscle.?(?:building|growth|rev) 24 (?i)wrinkle.?re(?:moving|movers|ducer|covery|wind) 25 (?i)(?:supra|zen|colon|liso).?cleanse 26 (?i)(?:carb|cal|fat).?diet 24 27 }}}
