Rebol Programming/path-thru
USAGE:Edit
PATH-THRU url
DESCRIPTION:Edit
Return a path relative to the disk cache.
PATH-THRU is a function value.
ARGUMENTS:Edit
- url -- (Type: any)
SOURCE CODEEdit
path-thru: func [ "Return a path relative to the disk cache." url /local purl ][ if file? url [return url] if not all [purl: decode-url url purl/host] [return none] rejoin [view-root/public slash purl/host slash any [purl/path ""] any [purl/target ""]] ]