| View previous topic :: View next topic |
| Author |
Message |
Cashmere Light Sweet Crude


Joined: Mar 27, 2008 Posts: 1971
|
Posted: Fri Jun 20, 2008 10:14 pm Post subject: Re: Better 'ignore' features |
|
|
Agree. _________________ Massive Human Dieoff must occur as a result of Peak Oil. Many more than half will die. It will occur everywhere, including where you live. If you fail to recognize this, then your odds of living move toward the "going to die" group. |
|
| Back to top |
|
 |
SILENTTODD Intermediate Crude


Joined: May 06, 2006 Posts: 873 Location: Tustin, CA
|
Posted: Fri Jun 20, 2008 10:39 pm Post subject: Re: Better 'ignore' features |
|
|
Some people get smarter with time. Just roll you eyes and ignore them till they do. _________________ Skeptical scrutiny in both Science and Religion is the means by which deep thoughts are winnowed from deep nonsense-Carl Sagan |
|
| Back to top |
|
 |
mos6507 Fusion

![]()
Joined: Aug 03, 2007 Posts: 4610 Location: Boston Suburbs
|
Posted: Fri Jun 20, 2008 11:05 pm Post subject: Re: Better 'ignore' features |
|
|
| Drifter wrote: | | I was wondering if we could get better 'ignore' button features, such as completely hiding any topics started by people on the ignore list, |
I definitely want this. I'd rather not even see the headlines in the topics that Cid posts. I don't keep my head in the sand. I follow the news as much as anyone but I don't need his hand-picked selections in my face. _________________ http://doomsteaddiary.blogspot.com/ |
|
| Back to top |
|
 |
Cashmere Light Sweet Crude


Joined: Mar 27, 2008 Posts: 1971
|
Posted: Sat Jun 21, 2008 12:22 am Post subject: Re: Better 'ignore' features |
|
|
Cid bugs you? Really?
Hmm. I find him mostly innocuous.
Now ignoring me Mos, that would seem to make much more sense.
 _________________ Massive Human Dieoff must occur as a result of Peak Oil. Many more than half will die. It will occur everywhere, including where you live. If you fail to recognize this, then your odds of living move toward the "going to die" group. |
|
| Back to top |
|
 |
Nickel Light Sweet Crude


Joined: Jun 26, 2007 Posts: 1640 Location: The Canada of America
|
Posted: Tue Jul 15, 2008 11:50 am Post subject: Re: Better 'ignore' features |
|
|
| mos6507 wrote: | | I'd rather not even see the headlines in the topics that Cid posts. I don't keep my head in the sand. I follow the news as much as anyone but I don't need his hand-picked selections in my face. |
Translation: "My worldview is carved in stone and it doesn't bear challenge from uncomfortable ideas that don't accord to it and that I can't argue away. Save me from the perils of persuasion! CENSOR!! CENSORRRRR!!!!!!!!"
Oh, wait, he can't hear me.  _________________ I can has cheezburger? |
|
| Back to top |
|
 |
darwinsdog Heavy Crude


Joined: Jun 27, 2008 Posts: 170
|
Posted: Tue Jul 15, 2008 11:54 am Post subject: Re: Better 'ignore' features |
|
|
| What difference does it make? If you don't like someone don't read their posts. Simple as that. |
|
| Back to top |
|
 |
Narz Light Sweet Crude


Joined: Nov 25, 2006 Posts: 1543 Location: New Jersey
|
Posted: Wed Jul 16, 2008 12:26 am Post subject: Re: Better 'ignore' features |
|
|
That's the main reason I don't bother with ignore lists. They almost make you want to read that sh!t more.
Even if they made this change you still might see someone quoting your nemesis & get riled up all over again. _________________ My PO Amazon store (shameless plug).
“Seek simplicity but distrust it” |
|
| Back to top |
|
 |
Nickel Light Sweet Crude


Joined: Jun 26, 2007 Posts: 1640 Location: The Canada of America
|
Posted: Wed Jul 16, 2008 7:55 am Post subject: Re: Better 'ignore' features |
|
|
| Narz wrote: | That's the main reason I don't bother with ignore lists. They almost make you want to read that sh!t more.
Even if they made this change you still might see someone quoting your nemesis & get riled up all over again. |
If someone quoted them, wouldn't the inclusion of the name in the quote keep you from seeing the post? Or does it only key in on the person who actually did the posting? _________________ I can has cheezburger? |
|
| Back to top |
|
 |
TommyJefferson Light Sweet Crude


Joined: Aug 19, 2004 Posts: 1786 Location: Republic of Texas
|
Posted: Sat Sep 27, 2008 6:46 am Post subject: Re: Better 'ignore' features |
|
|
| Hogan wrote: | | completely hiding any topics started by people on the ignore list |
I agree. This one small modification to the forum software would tremendously improve the majority of users' participation experience.
Here is a mod that might work:
| Code: | // ==UserScript==
// @name User Classes
// @include http://forums.mozillazine.org/viewtopic.php*
// @description Adds a class to facilitate hiding a user's posts
// @exclude
// ==/UserScript==
(function() {
// Ignore posts
var results = document.evaluate("//td[@class='avatar']/span/b", document, null, XPathResult.ANY_TYPE, null);
var resultNodes = [];
while (aResult = results.iterateNext())
resultNodes.push(aResult);
for (var i in resultNodes) {
var containingRow = resultNodes[i].parentNode.parentNode.parentNode;
containingRow.setAttribute('class', 'phpbb_user_' + resultNodes[i].innerHTML.replace(/ /g, ''));
var nextRow = containingRow.nextSibling;
while (nextRow.nodeType != 1)
nextRow = nextRow.nextSibling;
nextRow.setAttribute('class', 'phpbb_user_' + resultNodes[i].innerHTML.replace(/ /g, ''));
}
// Ignore threads
var results = document.evaluate("//td[@class='vf2']/span[@class='name']", document, null, XPathResult.ANY_TYPE, null);
var resultNodes = [];
while (aResult = results.iterateNext())
resultNodes.push(aResult);
for (var i in resultNodes) {
var containingRow = resultNodes[i].parentNode.parentNode;
containingRow.setAttribute('class', 'phpbb_user_' + resultNodes[i].innerHTML.replace(/ /g, ''));
var nextRow = containingRow.nextSibling;
while (nextRow.nodeType != 1)
nextRow = nextRow.nextSibling;
nextRow.setAttribute('class', 'phpbb_user_' + resultNodes[i].innerHTML.replace(/ /g, ''));
}
})();
|
_________________ Conform . Consume . Obey . |
|
| Back to top |
|
 |
alpha480v Heavy Crude


Joined: Jan 29, 2005 Posts: 320 Location: Western NY
|
Posted: Sat Sep 27, 2008 7:58 am Post subject: Re: Better 'ignore' features |
|
|
| darwinsdog wrote: | | What difference does it make? If you don't like someone don't read their posts. Simple as that. |
Agreed. |
|
| Back to top |
|
 |
|