Unsolicited idea: navigating the archives
- Paul Escobar
- Cartoon Hero
- Posts: 1024
- Joined: Wed Nov 30, 2005 2:11 pm
- Location: State of Flux
Unsolicited idea: navigating the archives
Dear PeppermintAfterlife, I wanted to (and did) re-read "The Ass in Assassin" episode the other day, but navigating to the beginning of it proved to be a bit time-consuming. So I have a suggestion: It'd be cool to be able to go directly to the beginning of each episode of The End of Things. Could be done with additional navigation arrows (might prove a bit too clutter-ish) or a clickable list of episode titles somewhere on the index page (And there's probably further ways of arranging such a thing that I can't think of). Anyway, that would be super neat. 
Last edited by Paul Escobar on Fri Mar 17, 2006 1:45 pm, edited 1 time in total.
- TheSuburbanLetdown
- Destroyer of Property Value
- Posts: 12714
- Joined: Wed May 05, 2004 8:38 pm
- Location: explod
That's actually something I've been meaning to do but have a horrible knowledge of coding and a lak of free time (you'll notice there's no update today). I like the way it's done over at pholph.com, and I know fellow spacer Joel Fagin does it the same exact way in a tutorial somewhere. He did say we can steal the coding. But I may just do something as simple as a redirect to the first page of a particular story. Either way, the archives are getting larger and unweildy.
- Paul Escobar
- Cartoon Hero
- Posts: 1024
- Joined: Wed Nov 30, 2005 2:11 pm
- Location: State of Flux
I'm unashamedly bumping this thread, because I came across some HTML code that produces a drop-down menu which can be used to navigate a site, and thought it might be of interest.
If I got it right, you just have to insert the code at the foot of this post on the End of Things main page wherever it fits, layout-wise. (I wasn't sure of the proper chapter titles, so I just put down something... Anyway, you just stick in the appropriate URLs and titles.)
The drop-down thingie works out alright; I tested it in Dreamweaver. The only thing I'm not quite sure will work is the cgi-bin/redirect code - and I have no possibility to test that. But if you care to, you can try out this code. The worst thing that can happen is that the menu redirects to "archive not found", and if that's the case, I'm a dumbass who's overlooked something obvious, and you can just delete the darn thing again, no harm done.
Here's the code:
<FORM
ACTION="../cgi-bin/redirect.pl"
METHOD=POST onSubmit="return dropdown(this.gourl)">
<SELECT NAME="gourl">
<OPTION VALUE="">Choose a destination...
<OPTION VALUE="http://endofthings.comicgen.com/d/20040419.html">The Smiling Bastard
<OPTION VALUE="http://endofthings.comicgen.com/d/20040 ... Homecoming Ticket
<OPTION VALUE="http://endofthings.comicgen.com/d/20040614.html">Self Portrait
<OPTION VALUE="http://endofthings.comicgen.com/d/20040616.html">Career Center
<OPTION VALUE="http://endofthings.comicgen.com/d/20040621.html">That Dream
<OPTION VALUE="http://endofthings.comicgen.com/d/20040625.html">The Soap Incident
</SELECT>
<INPUT TYPE=SUBMIT VALUE="Go">
</FORM>
EDIT: OK, I'm a dumbass who overlooked something obvious. To get the ACTION= bit to work, it requires some additional coding... which I don't know what should be. As it is, you'll just end up with "archive not found". Oops.
Er... It's all Macromedia's fault! Using Dreamweaver tricked me into believing I actually knew HTML!
If I got it right, you just have to insert the code at the foot of this post on the End of Things main page wherever it fits, layout-wise. (I wasn't sure of the proper chapter titles, so I just put down something... Anyway, you just stick in the appropriate URLs and titles.)
The drop-down thingie works out alright; I tested it in Dreamweaver. The only thing I'm not quite sure will work is the cgi-bin/redirect code - and I have no possibility to test that. But if you care to, you can try out this code. The worst thing that can happen is that the menu redirects to "archive not found", and if that's the case, I'm a dumbass who's overlooked something obvious, and you can just delete the darn thing again, no harm done.
Here's the code:
<FORM
ACTION="../cgi-bin/redirect.pl"
METHOD=POST onSubmit="return dropdown(this.gourl)">
<SELECT NAME="gourl">
<OPTION VALUE="">Choose a destination...
<OPTION VALUE="http://endofthings.comicgen.com/d/20040419.html">The Smiling Bastard
<OPTION VALUE="http://endofthings.comicgen.com/d/20040 ... Homecoming Ticket
<OPTION VALUE="http://endofthings.comicgen.com/d/20040614.html">Self Portrait
<OPTION VALUE="http://endofthings.comicgen.com/d/20040616.html">Career Center
<OPTION VALUE="http://endofthings.comicgen.com/d/20040621.html">That Dream
<OPTION VALUE="http://endofthings.comicgen.com/d/20040625.html">The Soap Incident
</SELECT>
<INPUT TYPE=SUBMIT VALUE="Go">
</FORM>
EDIT: OK, I'm a dumbass who overlooked something obvious. To get the ACTION= bit to work, it requires some additional coding... which I don't know what should be. As it is, you'll just end up with "archive not found". Oops.
Er... It's all Macromedia's fault! Using Dreamweaver tricked me into believing I actually knew HTML!
- TheSuburbanLetdown
- Destroyer of Property Value
- Posts: 12714
- Joined: Wed May 05, 2004 8:38 pm
- Location: explod
- Paul Escobar
- Cartoon Hero
- Posts: 1024
- Joined: Wed Nov 30, 2005 2:11 pm
- Location: State of Flux
