Page 2 of 2
Re: Home page
Posted: Sat Aug 29, 2009 7:35 pm
by GeniusCobyWalker
just like a folder with 1 file.
Why does osdev.org just link to the wiki?
Why not point strait to the wiki? It would be the exact same, just no wait.
Re: Home page
Posted: Sun Aug 30, 2009 10:52 am
by neon
Im thinking its temporary until he can fix the front page to point directly to the wiki.
I personally do not like the change that much but it would aid in the issue of newcomers not searching before they post. ...At least I hope so
Re: Home page
Posted: Mon Aug 31, 2009 9:33 am
by Troy Martin
GeniusCobyWalker wrote:just like a folder with 1 file.
Why does osdev.org just link to the wiki?
Why not point strait to the wiki? It would be the exact same, just no wait.
Code: Select all
<meta http-equiv="refresh" content="0;http://wiki.osdev.org/" />
EDIT: to avoid post deletion, I'll just say this: that would be a temporary fix for having to wait for the refresh.
Re: Home page
Posted: Mon Aug 31, 2009 9:43 am
by whowhatwhere
Troy Martin wrote:GeniusCobyWalker wrote:just like a folder with 1 file.
Why does osdev.org just link to the wiki?
Why not point strait to the wiki? It would be the exact same, just no wait.
Code: Select all
<meta http-equiv="refresh" content="0;http://wiki.osdev.org/" />
EDIT: to avoid post deletion, I'll just say this: that would be a temporary fix for having to wait for the refresh.
or,
Code: Select all
<?php header("Location: http://wiki.osdev.org/"); ?>
Re: Home page
Posted: Mon Aug 31, 2009 1:57 pm
by gravaera
Oh yeah? I have one too!!
j/k
Code: Select all
...
<head>
<script language="javascript">
function goWiki(){ document.location = "http://wiki.osdev.org"; };
</script>
</head>
<body onload="javascript: goWiki();">
</body>
Re: Home page
Posted: Mon Aug 31, 2009 6:56 pm
by whowhatwhere
gravaera wrote:Oh yeah? I have one too!!
j/k
Code: Select all
...
<head>
<script language="javascript">
function goWiki(){ document.location = "http://wiki.osdev.org"; };
</script>
</head>
<body onload="javascript: goWiki();">
</body>
Yeah, and for all those with Noscript, we get a white page.
Re: Home page
Posted: Tue Sep 01, 2009 8:27 am
by Andr3w
gravaera wrote:Oh yeah? I have one too!!
j/k
Code: Select all
...
<head>
<script language="javascript">
function goWiki(){ document.location = "http://wiki.osdev.org"; };
</script>
</head>
<body onload="javascript: goWiki();">
</body>
You can do it more simple:
Code: Select all
<body onload = "javascript:location.href = 'http://wiki.osdev.org';"></body>
But it's better to use
META tag..
-- Andrew
Re: Home page
Posted: Tue Sep 01, 2009 3:35 pm
by gravaera
syntropy wrote:gravaera wrote:Oh yeah? I have one too!!
j/k
Code: Select all
...
<head>
<script language="javascript">
function goWiki(){ document.location = "http://wiki.osdev.org"; };
</script>
</head>
<body onload="javascript: goWiki();">
</body>
Yeah, and for all those with Noscript, we get a white page.
Boohoo
j/k
Re: Home page
Posted: Tue Sep 01, 2009 4:05 pm
by Troy Martin
qandrew wrote:But it's better to use META tag..
MWHAHAHAHAHAHAHAHA!!!!!
Re: Home page
Posted: Tue Sep 01, 2009 5:20 pm
by Zenith
No, it's better to use the Location: header!
HTTP 1.1 header > Meta tag > Javascript > Pointless redirecting homepage.
Re: Home page
Posted: Tue Sep 01, 2009 10:13 pm
by whowhatwhere
I think my response accidentally your home page.
Re: Home page
Posted: Sat Sep 05, 2009 4:50 pm
by chase
GeniusCobyWalker wrote:just like a folder with 1 file.
Why does osdev.org just link to the wiki?
Why not point strait to the wiki? It would be the exact same, just no wait.
There are a mess load of mod_rewrite rules I need to change before I do that to keep all the old links around the web from breaking. If I just break all the links coming into the site then the Google page rank goes to hell. I'll probably get to it next month.