Yes I have imported the tag library before calling the <skin> tag, below is
a copy of my display page.
<!--- @@displayname: Home Page --->
<!--- import webskin tag library --->
<cfimport taglib="/farcry/core/tags/webskin" prefix="skin">
<cfoutput>
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  <html>
  <head>
  <title>#stObj.Title#</title>
In that file I include the footer, 
<cfmodule
template="/farcry/projects/#application.applicationName#/webskin/includes/fo
oter.cfm">
Where I need those links: terms of use and about us and so on.
So, the tag library is included before calling the <skin> tag in the
footer.cfm.
I really don't understand this - sad I can't find more examples on it.
And the object in the site tree does NOT have a FU in the main overview.

Regards
Rune Pedersen

-----Original Message-----
From: farcry-dev@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Ezra Parker
Sent: 7. mars 2008 23:04
To: farcry-dev
Subject: [farcry-dev] Re: Friendly URLs


Rune,

On Mar 7, 1:50 pm, "Rune Pedersen" <[EMAIL PROTECTED]> wrote:
> The link doesn't show up on the page?
> Is the first way of hard coding links correct?

Did you import the tag library before calling the <skin> tag?

<cfimport taglib="/farcry/core/tags/webskin" prefix="skin" />

If you didn't, then CF will not parse the tag, and it will appear in
your HTML source (and thus disappear from the page).

To answer your question, the first method will never result in a
friendly URL:

<a href="#application.url.conjurer#?
objectid=#application.navid.info#">

In this case you are constructing the URL, and are including the
"unfriendly" part (the query string).

--
Ezra Parker




--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"farcry-dev" group.
To post to this group, send email to farcry-dev@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/farcry-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to