Skip to content

Finally an ignore feature!

[Deleted User][Deleted User] Posts: 0
edited August 2016 in Site Resources
The user and all related content has been deleted.
Post edited by [Deleted User] on
ButtercheesedeltagololienCrevsDaakTroodon80NonnahswriterJuliusBorisovAlonsoMirandelStummvonBordwehr
«13

Comments

  • The user and all related content has been deleted.
    ButtercheeseCrevsDaakNonnahswritertbone1
  • The user and all related content has been deleted.
  • [Deleted User][Deleted User] Posts: 0
    edited August 2016
    The user and all related content has been deleted.
    Post edited by [Deleted User] on
    Buttercheese
  • The user and all related content has been deleted.
    Troodon80
  • joluvjoluv Member Posts: 2,137
    Shandyr said:

    Please, someone quote this message. And then someome else quote the quoted message.
    Because I want to test how the ignore function works on quotes. Especially nested ones.

    I quoted your message.
    [Deleted User]Troodon80
  • Mr2150Mr2150 Member Posts: 1,170

    joluv said:

    Shandyr said:

    Please, someone quote this message. And then someome else quote the quoted message.
    Because I want to test how the ignore function works on quotes. Especially nested ones.

    I quoted your message.
    I herd u leik quotes
    Quotey McQuoteface...
    [Deleted User]smeagolheartTroodon80
  • [Deleted User][Deleted User] Posts: 0
    edited August 2016
    The user and all related content has been deleted.
    ButtercheeseMr2150Troodon80
  • The user and all related content has been deleted.
    Nonnahswriter
  • Mr2150Mr2150 Member Posts: 1,170
    Is that what happens when you ignore everyone?
    [Deleted User]
  • [Deleted User][Deleted User] Posts: 0
    edited March 2017
    The user and all related content has been deleted.
    Post edited by [Deleted User] on
    Mr2150mlnevese
  • [Deleted User][Deleted User] Posts: 0
    edited August 2016
    The user and all related content has been deleted.
    JuliusBorisov
  • [Deleted User][Deleted User] Posts: 0
    edited August 2016
    The user and all related content has been deleted.
  • [Deleted User][Deleted User] Posts: 0
    edited August 2016
    The user and all related content has been deleted.
    ButtercheeseNonnahswriter
  • [Deleted User][Deleted User] Posts: 0
    edited August 2016
    The user and all related content has been deleted.
    ButtercheeseTroodon80
  • Troodon80Troodon80 Member, Developer Posts: 4,110
    Yay, I was ignored. :D
    [Deleted User]CrevsDaakButtercheese
  • The user and all related content has been deleted.
    Buttercheese
  • The user and all related content has been deleted.
    joluv
  • Troodon80Troodon80 Member, Developer Posts: 4,110
    That works, though I will say that the nested quotes won't work simply by setting the display to none. Nested quotes already have that setting, it's when you press on the Show link that it then sets display to block. The only way to get rid of that would be to replace this:
    quotesToHide[i].parentNode.style.display = 'none';
    with this:
    quotesToHide[i].parentNode.innerHTML = '';
    This will actually remove/replace the body of the quote and the username from the markup code after the page has loaded—you won't even see it if you inspect using Firebug or Chrome. You could do an extra sweep and set the display for the Show link to none instead. Those are your two options. This will still not change the fact that actually quoting someone is an SQL query and will always pull the most up to date version of the post, user content and all.

    Security-wise, it's fine. :-)
    [Deleted User]joluvButtercheese
  • [Deleted User][Deleted User] Posts: 0
    edited December 2017
    The user and all related content has been deleted.
    Post edited by [Deleted User] on
    ButtercheeseTroodon80lolienMirandel
  • The user and all related content has been deleted.
  • ButtercheeseButtercheese Member Posts: 3,766
    I haven't tested it thrououtly yet, but it seems to be working fine with Chrome as well, at least I have not spotted any glitches/ issues yet.

    Instead of Greasmonkey you need the equal plugin for Chrome, called Tampermonkey.
    [Deleted User]Troodon80
  • [Deleted User][Deleted User] Posts: 0
    edited August 2016
    The user and all related content has been deleted.
    Buttercheese
  • The user and all related content has been deleted.
    Troodon80
  • Troodon80Troodon80 Member, Developer Posts: 4,110
    edited August 2016
    Shandyr said:

    So I will look into a way to erase a forum member's name from posts of other forum members.

    There are not going to be very many ways to do this that will be 'good'; as in resource efficient. Continuing along the same lines to what you already have, this will work:
    var tagsToDelete = document.querySelectorAll("a"); for (var i=0; i < tagsToDelete.length; i++) { var inner = tagsToDelete[i].innerHTML; if (userlist.indexOf(inner.substring(1,inner.length)) > -1 ) { // uncomment the line you want to use // option 1: replace text and link //tagsToDelete[i].outerHTML = '<a href="#">@blockeduser</a>'; // option 2: replace just the visible text in the tag //tagsToDelete[i].innerHTML = '@blockeduser'; } }You have two options here:
    • One that changes the URL as well as the tag text; and
    • One that changes just the tag text but still allows you to follow the link to the users' profile.
    This won't remove a person's name where someone is simply referring to someone else without tagging, though (e.g. "I'd like to refer back to what Shandyr said on the first page about X."). For that, you'd need a much more thorough (also generic) search and replace function.
    [Deleted User]
  • [Deleted User][Deleted User] Posts: 0
    edited August 2016
    The user and all related content has been deleted.
    Troodon80
  • [Deleted User][Deleted User] Posts: 0
    edited August 2016
    The user and all related content has been deleted.
    lolienAnduin
  • ButtercheeseButtercheese Member Posts: 3,766
    Maybe instead of the username, the link to the user page could be blocked?
    (I don't know jackshit about jawascript.)
    Troodon80
  • The user and all related content has been deleted.
    ButtercheeseTroodon80
  • [Deleted User][Deleted User] Posts: 0
    edited August 2016
    The user and all related content has been deleted.
    Troodon80
Sign In or Register to comment.