Gossamer Forum
Home : Products : Links 2.0 : Installation -- Unix :

extension index.html for subcategories

Quote Reply
extension index.html for subcategories
Dear Bobsie :-) Thanks for former replys! Another question is needed : At http://gayguide.net we use Frames. We create home.htm's for the framesets and we display categories & links as one part of the frameset. My problem is e.g. visible at http://gayguide.net/europe/ : All listed subdirectories would need the extension /index.html in order that the navigation works and user would just get the subdirectories'listings. Your support is fantastic !


------------------
Global Gay Guide Network
http://gayguide.net
Quote Reply
Re: extension index.html for subcategories In reply to
It looks like the problem you are having is that none of your frames have a name assigned to them. For example:

Quote:
<frame src="http://gayguide.net/network/ggmain.htm" marginwidth="10" marginheight="10" scrolling="auto" frameborder="0">

Should have a name assigned to it, something like this:

Quote:
<frame name="ggmain" src="http://gayguide.net/network/ggmain.htm" marginwidth="10" marginheight="10" scrolling="auto" frameborder="0">

Then, the links in the frame on the left can have a target="ggmain" included so that the documents will all open in that frame.

Each frame should be assigned its own name so that html documents can be targeted to open in the appropriate frame when needed.

I hope this helps.
Quote Reply
Re: extension index.html for subcategories In reply to
Dear Bobsie :-)) That was very helpfull.
But I struggle with finding the possible to add to each

<dl><dt><strong><a class="link" href="http://gayguide.net/europe/albania/">albania</a></strong> <small class="numlinks">(0)</small> </dt></dl>

the target="framename"

like
<dl><dt><strong><a class="link" href="http://gayguide.net/europe/albania/" target="framename"
>albania</a></strong> <small class="numlinks">(0)</small> </dt></dl>

I assume it should be in nph-build.cgi ??

Thanks again !!!!!!! Jean

------------------
Global Gay Guide Network
http://gayguide.net
Quote Reply
Re: extension index.html for subcategories In reply to
The anchor tag for categories are created in sub site_html_print_cat of either site_html.pl (non-templates) or site_html_templates.pl (templates).

I hope this helps.