Ogre Wiki Missing Links
-
- OGRE Retired Moderator
- Posts: 20570
- Joined: Thu Jan 22, 2004 10:13 am
- Location: Denmark
- x 179
Re: Ogre Wiki Missing Links
It's not gone.
It's just that Tiki doesn't seem to have been hacked yet to not use a '+' sign as a space character.
So currently all links with spaces in them are pointing to the void.
It's just that Tiki doesn't seem to have been hacked yet to not use a '+' sign as a space character.
So currently all links with spaces in them are pointing to the void.
/* Less noise. More signal. */
Ogitor Scenebuilder - powered by Ogre, presented by Qt, fueled by Passion.
OgreAddons - the Ogre code suppository.
Ogitor Scenebuilder - powered by Ogre, presented by Qt, fueled by Passion.
OgreAddons - the Ogre code suppository.
-
- Google Summer of Code Student
- Posts: 550
- Joined: Thu Jun 04, 2009 5:07 pm
- Location: Berlin
- x 108
Re: Ogre Wiki Missing Links
Actually this would be handled by some layers below the Tiki Wiki, PHP should do it.
Google Summer of Code 2012 Student
Topic: "Volume Rendering with LOD aimed at terrain"
Project links: Project thread, WIKI page, Code fork for the project
Mentor: Mattan Furst
Volume GFX, accepting donations.
Topic: "Volume Rendering with LOD aimed at terrain"
Project links: Project thread, WIKI page, Code fork for the project
Mentor: Mattan Furst
Volume GFX, accepting donations.
-
- Gnoblar
- Posts: 1
- Joined: Sat May 19, 2012 8:50 pm
Re: Ogre Wiki Missing Links
Both ogrebullet tutorials are dead
http://www.ogre3d.org/tikiwiki/OgreBull ... =Libraries
http://www.ogre3d.org/tikiwiki/OgreBull ... =Libraries
You're right replacing all + by %20 on windows resolves the problem (i also have to remove the &... part)
The following links work :
http://www.ogre3d.org/tikiwiki/OgreBull ... torial%201
http://www.ogre3d.org/tikiwiki/OgreBull ... torial%202
http://www.ogre3d.org/tikiwiki/OgreBull ... =Libraries
http://www.ogre3d.org/tikiwiki/OgreBull ... =Libraries
You're right replacing all + by %20 on windows resolves the problem (i also have to remove the &... part)
The following links work :
http://www.ogre3d.org/tikiwiki/OgreBull ... torial%201
http://www.ogre3d.org/tikiwiki/OgreBull ... torial%202
-
- OGRE Retired Moderator
- Posts: 20570
- Joined: Thu Jan 22, 2004 10:13 am
- Location: Denmark
- x 179
Re: Ogre Wiki Missing Links
It can be solved internally by turning off pretty URLs, but that's not really the ideal solution.
They chose some brain-dead options when they decided to throw in their pretty URL feature.
It's too bad, because there is no way one can migrate from MediaWiki to Tiki without a solid URL rewrite scheme.
That worked so-so with Apache, and other non-conforming web servers, but now - on a proper server - we're screwed.
Personally, I don't care about pretty URLs, but we need to take care not to break any incoming links..
They chose some brain-dead options when they decided to throw in their pretty URL feature.
It's too bad, because there is no way one can migrate from MediaWiki to Tiki without a solid URL rewrite scheme.
That worked so-so with Apache, and other non-conforming web servers, but now - on a proper server - we're screwed.
Personally, I don't care about pretty URLs, but we need to take care not to break any incoming links..
/* Less noise. More signal. */
Ogitor Scenebuilder - powered by Ogre, presented by Qt, fueled by Passion.
OgreAddons - the Ogre code suppository.
Ogitor Scenebuilder - powered by Ogre, presented by Qt, fueled by Passion.
OgreAddons - the Ogre code suppository.
-
- Gnoblar
- Posts: 1
- Joined: Sat May 19, 2012 10:45 pm
Re: Ogre Wiki Missing Links
http://www.ogre3d.org/tikiwiki/Building+Ogre
is missing, if i just replace the + with %20 it works, but this is very annoying to have to do every time
edit: every page that uses + for spaces does not work, please fix this
is missing, if i just replace the + with %20 it works, but this is very annoying to have to do every time
edit: every page that uses + for spaces does not work, please fix this
-
- Gnoblar
- Posts: 3
- Joined: Mon May 14, 2012 7:15 am
- x 5
Re: Ogre Wiki Missing Links
It is possible to add a space in the place of the "+", but the url's with a "&structure=Tutorials" need to have that removed to open the pages as an example for the tutorials.
But I don't know how to remedy the menus to reflect that change.
But I don't know how to remedy the menus to reflect that change.
-
- Gnoblar
- Posts: 21
- Joined: Fri Feb 24, 2012 11:03 pm
- Location: Sweden
Re: Ogre Wiki Missing Links
Seems like most of the links are broken/missing since the server transfer :/
-
- Gnoblar
- Posts: 1
- Joined: Sun May 20, 2012 9:37 am
Re: Ogre Wiki Missing Links
http://www.ogre3d.org/tikiwiki/Basic+Tu ... =Tutorials this link can not show the contents ! I think all the Tutorials like this.
-
- Gnoblar
- Posts: 1
- Joined: Sun May 20, 2012 9:40 am
Re: Ogre Wiki Missing Links
The tutorial missing links.How can I solve this problem.
-
- Gnoblar
- Posts: 1
- Joined: Sun May 20, 2012 11:02 am
Re: Ogre Wiki Missing Links
Just replace any '+' for "%20" and remove "&structure=Tutorials" parts in address. Like so:qiuhaojie5 wrote: The tutorial missing links.How can I solve this problem.
Broken:
http://www.ogre3d.org/tikiwiki/Basic+Tu ... =Tutorials
Working:
http://www.ogre3d.org/tikiwiki/Basic%20Tutorial%201
-
- Gnoblar
- Posts: 1
- Joined: Sat May 19, 2012 11:39 pm
-
- OGRE Retired Team Member
- Posts: 19269
- Joined: Sun Oct 06, 2002 11:19 pm
- Location: Guernsey, Channel Islands
- x 66
Re: Ogre Wiki Missing Links
I've re-introduced the Tiki hack which deals with '+' characters in the URL when running on Nginx. So URLs like this work again: http://www.ogre3d.org/tikiwiki/RTS+Sample+App
However, when a URL has something like '&structure=Tutorials' on the end will not work. I'm not sure if there's a way to get rid of that in the Tutorials page, jacmoe do you know what adds it?
This whole problem is caused by Tiki generating URLs which are not correct as per the RFC standards ('+' is not allowed outside a query string) and the way that Nginx processes them makes this not work. The hack I've added works for now, but it's not perfect - really Tiki needs to fix this. Hopefully jacmoe can help them with that
However, when a URL has something like '&structure=Tutorials' on the end will not work. I'm not sure if there's a way to get rid of that in the Tutorials page, jacmoe do you know what adds it?
This whole problem is caused by Tiki generating URLs which are not correct as per the RFC standards ('+' is not allowed outside a query string) and the way that Nginx processes them makes this not work. The hack I've added works for now, but it's not perfect - really Tiki needs to fix this. Hopefully jacmoe can help them with that
-
- OGRE Retired Team Member
- Posts: 19269
- Joined: Sun Oct 06, 2002 11:19 pm
- Location: Guernsey, Channel Islands
- x 66
Re: Ogre Wiki Missing Links
Actually, since a lot of the links that are being produced by Tiki aren't working because of the '&structure=blah' option, I've disabled Clean URLs in Tiki for the moment.
-
- Gnoblar
- Posts: 6
- Joined: Mon May 21, 2012 10:59 am
-
- Gnoblar
- Posts: 3
- Joined: Tue Feb 07, 2012 9:46 am
-
- OGRE Retired Team Member
- Posts: 19269
- Joined: Sun Oct 06, 2002 11:19 pm
- Location: Guernsey, Channel Islands
- x 66
Re: Ogre Wiki Missing Links
Please see the above. You can't use old short links with '+' in them and a 'structure=' parameter anymore because Tiki generates them incorrectly.
I've stopped Tiki generating short links for now so it should not be generating the kinds of links you've posted here. If you've found them, they've probably been manually created and if so, please tell us where the links are (not where they point) so that the link itself can be fixed.
I've stopped Tiki generating short links for now so it should not be generating the kinds of links you've posted here. If you've found them, they've probably been manually created and if so, please tell us where the links are (not where they point) so that the link itself can be fixed.
-
- Gnoblar
- Posts: 6
- Joined: Mon May 21, 2012 10:59 am
Re: Ogre Wiki Missing Links
Ok, sorry about that
I did find another one, http://www.ogre3d.org/tikiwiki/RapidXML ... e=Cookbook
Wich is mentioned in this post: http://www.ogre3d.org/forums/viewtopic. ... ng#p454698
I did find another one, http://www.ogre3d.org/tikiwiki/RapidXML ... e=Cookbook
Wich is mentioned in this post: http://www.ogre3d.org/forums/viewtopic. ... ng#p454698
-
- Gnoblar
- Posts: 14
- Joined: Wed Dec 14, 2011 12:24 am
- x 25
Re: Ogre Wiki Missing Links
I might not be the first to notice, but the 'installing and using SDKs' and 'series of tutorial' links in http://www.ogre3d.org/download/source and http://www.ogre3d.org/download/sdk seem to use a use a wiki URL type that's not (or no longer) supported. These links might be the first ones that new people try after downloading Ogre, so if someone could make them point to a correct page on the tikiwiki instead, that would be great.
Last edited by Giliam on Sun May 27, 2012 12:43 pm, edited 1 time in total.
My blog: http://www.decarpentier.nl
-
- OGRE Retired Team Member
- Posts: 2903
- Joined: Thu Jan 18, 2007 2:48 pm
- x 58
Re: Ogre Wiki Missing Links
Thanks, I fixed them.
-
- Orc Shaman
- Posts: 788
- Joined: Mon Jan 18, 2010 6:06 pm
- Location: Costa Mesa, California
- x 24
-
- Halfling
- Posts: 49
- Joined: Fri Dec 07, 2007 10:16 am
Re: Ogre Wiki Missing Links
http://www.ogre3d.org/tikiwiki/Selectio ... e=Cookbook
missed
missed
-
- OGRE Team Member
- Posts: 4304
- Joined: Mon Feb 04, 2008 2:02 pm
- Location: Germany
- x 136
Re: Ogre Wiki Missing Links
http://www.ogre3d.org/forums/viewtopic. ... 23#p458823hahaer wrote:http://www.ogre3d.org/tikiwiki/Selectio ... e=Cookbook
missed
Ogre Admin [Admin, Dev, PR, Finance, Wiki, etc.] | BasicOgreFramework | AdvancedOgreFramework
Don't know what to do in your spare time? Help the Ogre wiki grow! Or squash a bug...
Don't know what to do in your spare time? Help the Ogre wiki grow! Or squash a bug...
-
- Gnoblar
- Posts: 6
- Joined: Tue Dec 28, 2010 8:24 am
Re: Ogre Wiki Missing Links
It's missing this link:
http://www.ogre3d.or...ucture=Cookbook
http://www.ogre3d.or...ucture=Cookbook
-
- OGRE Retired Moderator
- Posts: 20570
- Joined: Thu Jan 22, 2004 10:13 am
- Location: Denmark
- x 179
Re: Ogre Wiki Missing Links
http://www.ogre3d.org/forums/viewtopic. ... 23#p458823reylf wrote:It's missing this link:
http://www.ogre3d.or...ucture=Cookbook
/* Less noise. More signal. */
Ogitor Scenebuilder - powered by Ogre, presented by Qt, fueled by Passion.
OgreAddons - the Ogre code suppository.
Ogitor Scenebuilder - powered by Ogre, presented by Qt, fueled by Passion.
OgreAddons - the Ogre code suppository.
-
- Orc Shaman
- Posts: 788
- Joined: Mon Jan 18, 2010 6:06 pm
- Location: Costa Mesa, California
- x 24