Home page
- GeniusCobyWalker
- Member
- Posts: 65
- Joined: Mon Jan 12, 2009 4:17 pm
Re: Home page
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.
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.
Full Knowledge in:
GML, Ti-Basic, Zilog Z80 Assembly, SX28 Assembly and Blender
Experience in:
C++,OpenGl,NDS C++,Dark Basic,Dark Basic Pro,Dark Gdk and PSP Coding
Using:
Ubuntu ,GEdit ,NASM ,GCC ,LD ,Bochs
GML, Ti-Basic, Zilog Z80 Assembly, SX28 Assembly and Blender
Experience in:
C++,OpenGl,NDS C++,Dark Basic,Dark Basic Pro,Dark Gdk and PSP Coding
Using:
Ubuntu ,GEdit ,NASM ,GCC ,LD ,Bochs
Re: Home page
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
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
OS Development Series | Wiki | os | ncc
char c[2]={"\x90\xC3"};int main(){void(*f)()=(void(__cdecl*)(void))(void*)&c;f();}
char c[2]={"\x90\xC3"};int main(){void(*f)()=(void(__cdecl*)(void))(void*)&c;f();}
- Troy Martin
- Member
- Posts: 1686
- Joined: Fri Apr 18, 2008 4:40 pm
- Location: Langley, Vancouver, BC, Canada
- Contact:
Re: Home page
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.
-
- Member
- Posts: 199
- Joined: Sat Jun 28, 2008 6:44 pm
Re: Home page
or,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.
Code: Select all
<?php header("Location: http://wiki.osdev.org/"); ?>
- gravaera
- Member
- Posts: 737
- Joined: Tue Jun 02, 2009 4:35 pm
- Location: Supporting the cause: Use \tabs to indent code. NOT \x20 spaces.
Re: Home page
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>
17:56 < sortie> Paging is called paging because you need to draw it on pages in your notebook to succeed at it.
-
- Member
- Posts: 199
- Joined: Sat Jun 28, 2008 6:44 pm
Re: Home page
Yeah, and for all those with Noscript, we get a white page.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>
Re: Home page
You can do it more simple: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>
Code: Select all
<body onload = "javascript:location.href = 'http://wiki.osdev.org';"></body>
-- Andrew
- gravaera
- Member
- Posts: 737
- Joined: Tue Jun 02, 2009 4:35 pm
- Location: Supporting the cause: Use \tabs to indent code. NOT \x20 spaces.
Re: Home page
Boohoo j/ksyntropy wrote:Yeah, and for all those with Noscript, we get a white page.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>
17:56 < sortie> Paging is called paging because you need to draw it on pages in your notebook to succeed at it.
- Troy Martin
- Member
- Posts: 1686
- Joined: Fri Apr 18, 2008 4:40 pm
- Location: Langley, Vancouver, BC, Canada
- Contact:
Re: Home page
MWHAHAHAHAHAHAHAHA!!!!!qandrew wrote:But it's better to use META tag..
Re: Home page
No, it's better to use the Location: header!
HTTP 1.1 header > Meta tag > Javascript > Pointless redirecting homepage.
HTTP 1.1 header > Meta tag > Javascript > Pointless redirecting homepage.
"Sufficiently advanced stupidity is indistinguishable from malice."
-
- Member
- Posts: 199
- Joined: Sat Jun 28, 2008 6:44 pm
Re: Home page
I think my response accidentally your home page.
- chase
- Site Admin
- Posts: 710
- Joined: Wed Oct 20, 2004 10:46 pm
- Libera.chat IRC: chase_osdev
- Location: Texas
- Discord: chase/matt.heimer
- Contact:
Re: Home page
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.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.