> Thanks to all. By that time, I developped my own, but
> since it is 23
> lines long, I was affraid I missed something much simpler.
> But since the one in cflib.org is 47 lines, I'm reassured
> ;-)

Oh you were looking at massimo's ...

this was mine (I suspect similar to yours -- about as long anyway -
though looking at it now, massimo's has more comments, which accounts
for nearly half the bulk):

<cfscript>
/**
 * Returns a relative path from the current template to an absolute
file path.
 *
 * @param abspath        Absolute path. (Required)
 * @return Returns a string.
 * @author Isaac Dealey ([EMAIL PROTECTED])
 * @version 1, May 2, 2003
 */
function getRelative(abspath) {
        var aHere =
listtoarray(getdirectoryfrompath(getcurrenttemplatepath()),"\/");
        var aThere = ""; var lenThere = 0;
        var aRel = ArrayNew(1); var x = 0;
        var newpath = "";

        aThere = ListToArray(abspath,"\/"); lenThere = arraylen(aThere);

        for (x = 1; x lte arraylen(aHere); x = x + 1) {
                if (x GT lenThere OR comparenocase(aHere[x],aThere[x])) {
                        ArrayPrepend(aRel,".."); if (x lte lenThere) {
ArrayAppend(aRel,aThere[x]); }
                }
        }

        for (; x lte arraylen(aThere); x = x + 1) {
ArrayAppend(aRel,aThere[x]); }

        newpath = ArrayToList(aRel,"/");

        return newpath;
}
</cfscript>




s. isaac dealey   954.927.5117
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/story/?storyid=44477&DE=1
http://www.sys-con.com/story/?storyid=45569&DE=1
http://www.fusiontap.com




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193457
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to