Hey guys, here's something that has bugged me for a long time.
InnocentHawk came up with a great idea, moving the bosses and demon's souls into one page, using the tabbed interface. It's really slick. So, in order to not break all of the previous links, I made a static redirect from the /demons-souls/ page to the /bosses/ page. What irritated me about this, however, was that nomatter where the redirect came from, the bosses list always came up first. Really, if a user clicks on a link to the /demons-souls/ page, the site should redirect to the /bosses/ page with the demon's souls tab selected (since that's what they clicked on…). I was unable, however, to figure out how to do that.
I have quite a bit of programming experince, some Python and Java, but the majority in lower level languages. Is there a way to peel apart the exact url as it is incomming to the page, and interact with the table?
(Possibly) more clearly, can we somehow peel off the last bit of the link off? Maybe just use the indexes of the tabs for ease of linking? If the exact link had "t=0" open the "bosses (alphebetical)" tab, or "t=1" open the "Demon's souls" tab? The complete url might look something like… "http://demonssouls.wikidot.com/bosses/t=1" to open the "Demon's souls" tab. This would make it quite easy to change the static redirect from the /demons-souls/ page…
Just a thought. If anyone feels like looking into it or whatever, by all means, I'm curious how we could make that work.