Re: The wiki now blocks 'href' as a word

2008-04-16 Thread christian . ridderstrom
On Sun, 13 Apr 2008, Angus Leeming wrote: [EMAIL PROTECTED] wrote: Does anyone know a perl compatible regexp that matches 'href' but not '\href'? Match all occurences of 'href' that are preceded by zero or more whitespace chars and followed by zero or more whitespace chars and an '=' char

Re: The wiki now blocks 'href' as a word

2008-04-16 Thread christian . ridderstrom
On Sun, 13 Apr 2008, Angus Leeming wrote: [EMAIL PROTECTED] wrote: Does anyone know a perl compatible regexp that matches 'href' but not '\href'? Match all occurences of 'href' that are preceded by zero or more whitespace chars and followed by zero or more whitespace chars and an '=' char

Re: The wiki now blocks 'href' as a word

2008-04-13 Thread christian . ridderstrom
On Sun, 13 Apr 2008, Jürgen Spitzmüller wrote: [EMAIL PROTECTED] wrote: which should match 'href' as a separate word. I hope this does not apply to the LaTeX command \href. Hmm... it probably does.. aussie is down, so I can't test. I'll look at it. Thanks, /Christian -- Christian

Re: The wiki now blocks 'href' as a word

2008-04-13 Thread christian . ridderstrom
On Sun, 13 Apr 2008, [EMAIL PROTECTED] wrote: On Sun, 13 Apr 2008, Jürgen Spitzmüller wrote: [EMAIL PROTECTED] wrote: which should match 'href' as a separate word. I hope this does not apply to the LaTeX command \href. Hmm... it probably does.. aussie is down, so I can't test. I'll

Re: The wiki now blocks 'href' as a word

2008-04-13 Thread Angus Leeming
[EMAIL PROTECTED] wrote: Does anyone know a perl compatible regexp that matches 'href' but not '\href'? Match all occurences of 'href' that are preceded by zero or more whitespace chars and followed by zero or more whitespace chars and an '=' char [\n\t ]*href[\n\t ]*= Angus

Re: The wiki now blocks 'href' as a word

2008-04-13 Thread christian . ridderstrom
On Sun, 13 Apr 2008, Jürgen Spitzmüller wrote: [EMAIL PROTECTED] wrote: which should match 'href' as a separate word. I hope this does not apply to the LaTeX command \href. Hmm... it probably does.. aussie is down, so I can't test. I'll look at it. Thanks, /Christian -- Christian

Re: The wiki now blocks 'href' as a word

2008-04-13 Thread christian . ridderstrom
On Sun, 13 Apr 2008, [EMAIL PROTECTED] wrote: On Sun, 13 Apr 2008, Jürgen Spitzmüller wrote: [EMAIL PROTECTED] wrote: > which should match 'href' as a separate word. I hope this does not apply to the LaTeX command \href. Hmm... it probably does.. aussie is down, so I can't test. I'll

Re: The wiki now blocks 'href' as a word

2008-04-13 Thread Angus Leeming
[EMAIL PROTECTED] wrote: Does anyone know a perl compatible regexp that matches 'href' but not '\href'? Match all occurences of 'href' that are preceded by zero or more whitespace chars and followed by zero or more whitespace chars and an '=' char [\n\t ]*href[\n\t ]*= Angus

The wiki now blocks 'href' as a word

2008-04-12 Thread christian . ridderstrom
Hi, To prevent spam, I configured the wiki to block 'href' through the regular expression \bhref\b which should match 'href' as a separate word. I hope this will stop stupid spam bots that try to instert HTML links. Words that _contain_ 'href' should still be allowed. Cheers,

The wiki now blocks 'href' as a word

2008-04-12 Thread christian . ridderstrom
Hi, To prevent spam, I configured the wiki to block 'href' through the regular expression \bhref\b which should match 'href' as a separate word. I hope this will stop stupid spam bots that try to instert HTML links. Words that _contain_ 'href' should still be allowed. Cheers,