shallowdeep
Posts: 343
Joined: 9/1/2006 From: California Status: offline
|
quote:
ORIGINAL: littlewonder I've never once in all the years I've been on here, have ever had "Fetlife" censored. I write people all the time telling them if they are looking for bdsm stuff in Baltimore, they should go over to Fetlife where there are tons of groups to follow. To clarify, the filter isn't applied to CollarMe mail, just to text in profiles and journal entries. I doubt I would have noticed it myself except that I've stumbled across more than one profile or journal in which someone was expressing confusion or irritation about the filter. It is definitely present, however. If you view the source for a page, the code (reproduced below) to filter out mentions of FetLife is easy to see. Curiously, unlike most of the other proscribed strings, mentions of FetLife also get stripped out somewhere on the server side even if you disable the client-side JavaScript. At one point it seems the filter may have served a purpose, but I'm not sure the circumstances that prompted its implementation still obtain. Given that it was something I noticed causing at least momentary confusion or frustration for a few users, it seemed like a reevaluation of the current pros and cons could be worthwhile. Relevant code snippet: if (indexOfNoCase(desc, "fetlife") != -1)
{
editor_setHTML('p_desc',desc.replace(/fetlife/i, ""));
}
if (indexOfNoCase(desc, "fet-life") != -1)
{
editor_setHTML('p_desc',desc.replace(/fet-life/i, ""));
}
if (indexOfNoCase(desc, "fet life") != -1)
{
editor_setHTML('p_desc',desc.replace(/fet life/i, ""));
}
|