Thread finder!!

Thread finder!!

Site Ideas

Cookies help us deliver our Services. By using our Services or clicking I agree, you agree to our use of cookies. Learn More.

ck

Tempe, AZ

Joined
12 Oct 04
Moves
117487
21 Feb 07

How are we supposed to find a thread in a bunch of 10,000 (or more!!) threads?? Recommend this to support the ultimate idea of all time!!! :o

DS
I'm A Mighty Pirateβ„’

PaTROLLING the forum

Joined
01 Dec 04
Moves
36332
21 Feb 07

Originally posted by chess kid1
How are we supposed to find a thread in a bunch of 10,000 (or more!!) threads?? Recommend this to support the ultimate idea of all time!!! :o
Try the Search Forums option.

Digital Alchemist

Joined
10 Sep 03
Moves
658668
21 Feb 07

Originally posted by chess kid1
How are we supposed to find a thread in a bunch of 10,000 (or more!!) threads?? Recommend this to support the ultimate idea of all time!!! :o
If you're using Firefox and Greasemonkey, there's a script to implement a "bookmark" system which you can grab at:

http://members.shaw.ca/ouroboros/RHP/

s

Joined
23 Sep 05
Moves
11774
21 Feb 07

Originally posted by ouroboros
If you're using Firefox and Greasemonkey, there's a script to implement a "bookmark" system which you can grab at:

http://members.shaw.ca/ouroboros/RHP/
javascript:void(0);

N

The sky

Joined
05 Apr 05
Moves
10385
21 Feb 07

Originally posted by Daemon Sin
Try the Search Forums option.
It sucks.

Digital Alchemist

Joined
10 Sep 03
Moves
658668
21 Feb 07

Originally posted by stocken
javascript:void(0);
Sorry? Are you commenting on my programming style or did you encounter a bug?

s

Joined
23 Sep 05
Moves
11774
22 Feb 07
1 edit

Originally posted by ouroboros
Sorry? Are you commenting on my programming style or did you encounter a bug?
I'm saying that's the URL given for my bookmark link. It doesn't do a whole
lot. I could be missing something imperative here (as I often do), so I
thought if I post the javascript URL, perhaps you could tell me to get the
correct script somewhere or help me understand it.

(No, I would never comment on someone's programming style unless
we're working on the same project and need to adapt the same style for
clarity.)

Digital Alchemist

Joined
10 Sep 03
Moves
658668
22 Feb 07

Originally posted by stocken
I'm saying that's the URL given for my bookmark link. It doesn't do a whole
lot. I could be missing something imperative here (as I often do), so I
thought if I post the javascript URL, perhaps you could tell me to get the
correct script somewhere or help me understand it.

(No, I would never comment on someone's programming style unless
we're working on the same project and need to adapt the same style for
clarity.)
If you have the script installed, there should be a 'Bookmark' link beside the 'Recommend' link on each post. Clicking that link will add the thread to your bookmarks. As well, threads where you post will also be added to your bookmarks.

In your forum toolbar (the light blue one), you should also see a new section labelled 'My Bookmarks' next to the 'Recommended' link. Clicking on that will display everything that you have bookmarked.

This doesn't solve the problem of searching through threads but it let's you keep an eye on threads that you are interested in.

s

Joined
23 Sep 05
Moves
11774
22 Feb 07
1 edit

Originally posted by ouroboros
If you have the script installed, there should be a 'Bookmark' link beside the 'Recommend' link on each post. Clicking that link will add the thread to your bookmarks. As well, threads where you post will also be added to your bookmarks.

In your forum toolbar (the light blue one), you should also see a new section labelled 'My Bookmarks' next to the ' ng through threads but it let's you keep an eye on threads that you are interested in.
Aaaah, I thought it was supposed to add the page to the browser bookmarks
(which would have been kinda silly considering you can just do that
yourself then - but I'm often silly). So, the javascript link: javascript:void(0)
is altered by the script after the page has loaded? I see how it works
now.

Thanks.

And I know you've probably heard it so many times you can puke, but you're
doing a great job with those greasy scripts of yours. Keep it up. πŸ™‚

Digital Alchemist

Joined
10 Sep 03
Moves
658668
22 Feb 07
1 edit

Originally posted by stocken
So, the javascript link: javascript:void(0)
is altered by the script after the page has loaded?
Actually, no. The click is handled by catching the "click" event with a listener that does all the work. The href doesn't take you anywhere. So to prevent the browser from either re-loading the current page or being sent somewhere else, "javascript:void(0);" basically tells the browser not to do anything.

Further, the listener actually clears the currently loaded page, and loads a completely new page in its place. However, you'll note that the URL of the page does not change. Firefox still believes that you are on the page that you were when you clicked the 'My Bookmarks' button. So you might encounter some "weirdness" when clicking some of the regular links afterward.

When you click the "bookmark" link, there really isn't any feedback.

s

Joined
23 Sep 05
Moves
11774
22 Feb 07

Originally posted by ouroboros
Actually, no. The click is handled by catching the "click" event with a listener that does all the work. The href doesn't take you anywhere. So to prevent the browser from either re-loading the current page or being sent somewhere else, "javascript:void(0);" basically tells the browser not to do anything.

Further, the listener actually clears the cur ...[text shortened]... afterward.

When you click the "bookmark" link, there really isn't any feedback.
You just made me curious. I think I'll have a closer look at that script. I take
it you're using DOM to rebuild the page, and a cookie to store the
bookmarks? πŸ™‚

Digital Alchemist

Joined
10 Sep 03
Moves
658668
22 Feb 07

Originally posted by stocken
You just made me curious. I think I'll have a closer look at that script. I take
it you're using DOM to rebuild the page, and a cookie to store the
bookmarks? πŸ™‚
Yes, DOM to rebuild but using the Firefox preference system to manage the bookmarks.

s

Joined
23 Sep 05
Moves
11774
22 Feb 07

Originally posted by ouroboros
...but using the Firefox preference system to manage the bookmarks.
Excellent! I can see you're using hidden preferences for a lot of things
(about:config). Javascript just got fun again. πŸ˜€

Oh, firefox. This beautiful, beautiful beast.

d

Joined
05 Jan 04
Moves
45179
22 Feb 07

Originally posted by Nordlys
It sucks.
That's an understatement.

Digital Alchemist

Joined
10 Sep 03
Moves
658668
22 Feb 07
1 edit

Originally posted by stocken
Excellent! I can see you're using hidden preferences for a lot of things
(about:config). Javascript just got fun again. πŸ˜€

Oh, firefox. This beautiful, beautiful beast.
If you're interested, jump into the extension development. I consider the GM scripts as dead development now that I'm working on the extension.

Firefox is definitely very, very cool!