Navigation external URL issue

Hello. How could I manage to have an url in the navigation tag which is
like: “http://www.example.com:8024/” (see below)? As far as I can tell,
with
the current syntax rendering this is not working OK. Thanks.

<r:navigation urls="il progetto: /it/; audio-video: /it/multimedia;
documenti: /it/documenti; discussioni: http://www.example.com:8024/;
contatti: /it/contatti; ">

Maurizio B. wrote:

Hello. How could I manage to have an url in the navigation tag which is
like: “http://www.example.com:8024/” (see below)? As far as I can tell,
with
the current syntax rendering this is not working OK. Thanks.

<r:navigation urls="il progetto: /it/; audio-video: /it/multimedia;
documenti: /it/documenti; discussioni: http://www.example.com:8024/;
contatti: /it/contatti; ">

You can’t. Instead your stuck with doing something extremely verbose.
Here’s how I did it for radiantcms.org:

<r:navigation urls=“Home: /”>
<r:here><r:title /></r:here>
<r:selected><r:title /></r:selected>
<r:normal><r:title /></r:normal>
</r:navigation>
|
<r:navigation urls=“Demo: /demo/; Download: /download/”>
<r:here><r:title /></r:here>
<r:selected><r:title
/>
</r:selected>
<r:normal><r:title /></r:normal>
<r:between> | </r:between>
</r:navigation>
|
Development
|
<r:navigation urls=“Mailing List: /mailing-list/; Weblog: /blog/”>
<r:here><r:title /></r:here>
<r:selected><r:title
/>
</r:selected>
<r:normal><r:title /></r:normal>
<r:between> | </r:between>
</r:navigation>

I’m interested in a patch that would fix this behavior.


John L.
http://wiseheartdesign.com

On 8/19/06, John W. Long [email protected] wrote:

You can’t. Instead your stuck with doing something extremely verbose.
Here’s how I did it for radiantcms.org:

Thank you. This works for me.

Incidentally, I noticed that if you leave a blank line at the end of the
url
string in the navigation tag, like in:
<r:navigation urls="il progetto Governet: /it/; audio-video:
/it/multimedia;
documenti: /it/documenti; ">
this results in an additional empty

  • html sequence.
  • ERRATA: “a blank line” CORRIGE: “a blank character”.