in reply to Custom Word Filters

you could allways add something like this to your Free Nodelet (assuming you enable it in your Nodelet settings, and assuming your browser is forgiving about script blocks in the body)....

<script> var b = document.getElementsByTagName("body").item(0); b.innerHTML = b.innerHTML.replace( /Ja()va|Ru()by|Pas()cal/ig, "PROFANITY" ); </script>

Make sure you are very carefull with your regex, or you could make the site entirely unusable, to the point that you might not even be able to use the User Settings page to undo it.

Replies are listed 'Best First'.
Re^2: Custom Word Filters
by dorward (Curate) on May 19, 2005 at 08:58 UTC
    What's to forgive? <script> elements are allowed in the <body> in HTML (although they do still need a type attribute). The only issue might be with accessing the DOM before the page has finished rendering, but that's easy enough to solve by wrapping it with:
    window.onload = function() { // Your code }
Re^2: Custom Word Filters
by mrborisguy (Hermit) on May 19, 2005 at 12:16 UTC

    That's brilliant. Thanks!

    -Bryan