Page 1 of 1

#skiplinks are Error 404

Posted: Fri Oct 12, 2007 5:49 pm
by mpking
So I just installed serendipity 1.2, with the Bulletproof theme that included with the default build.

I ran it thru an HTML validator, and it complained on the following links being 404.
Not sure if it's a serendipity, a bulletproof problem, or a stupid installer (ME) problem

Code: Select all

<!-- #skiplinks: these are links used to navigate quickly in text-based browsers -->
<!--             they are of little use in modern graphical browsers, so the are -->
<!--             hidden using CSS                                                -->
<div id="skiplinks">
   <ul>
     <li><a href="skipnav">Skip to site navigation</a></li>
     <li><a href="skipent">Skip to blog entries</a></li>

     <li><a href="http://www.mpking.com/index.php?/archive">Skip to archive page</a></li>
     <li><a href="skiplsb">Skip to left sidebar</a></li>
     <li><a href="skiprsb">Skip to right sidebar</a></li>
   </ul>
</div>

Posted: Fri Oct 12, 2007 7:19 pm
by chickens
I noticed the same thing on my site, I added a number sign in front of each of them and it fixes the problem.

Code: Select all

<!-- #skiplinks: these are links used to navigate quickly in text-based browsers -->
<!--             they are of little use in modern graphical browsers, so the are -->
<!--             hidden using CSS                                                -->
<div id="skiplinks">
   <ul>
     <li><a href="#skipnav">Skip to site navigation</a></li>
     <li><a href="#skipent">Skip to blog entries</a></li>

     <li><a href="http://www.mpking.com/index.php?/archive">Skip to archive page</a></li>
     <li><a href="#skiplsb">Skip to left sidebar</a></li>
     <li><a href="#skiprsb">Skip to right sidebar</a></li>
   </ul>
</div>
Someone on the bulletproof team would probably be able to explain better than myself whats going on. I just know I had the same issue and doing the above works on my site and resolved the 404s.

Posted: Sun Oct 14, 2007 1:08 pm
by garvinhicking
Hi!

Thanks for reporting that here; it was fixed already in the bp 1.1 version code that is bundled with the next upcoming s9y version, and available for download on the bp site.

Best regards,
Garvin

Posted: Mon Oct 15, 2007 2:30 am
by mpking
I downloaded bulletproof v1.1.

Same problem looks like.

it's the index.tbl file, it still doesn't have the # signs necessary.

However, #skipnav still comes up as a broken link.

BTW, the xml.gif files don't have image sizes define. (This is also tripping on the validator) Any idea where I could fix that?

Posted: Mon Oct 15, 2007 11:44 am
by garvinhicking
Hi!

Hm, then it might be only fixed in the upcoming BP version. Here it is fixed:

http://svn.berlios.de/viewcvs/serendipi ... iew=markup

Regards,
Garvin

Posted: Tue Oct 16, 2007 2:25 am
by mpking
I just reviewed the source code. It appears it was fixed on the 27th. Since BP was released on the 20th.

Any rumors on when the next release might appear? (Otherwise I'll just go off the SVN.)

Mike