relative-url ( url -- url' )
Furnace framework ยป URL objects

Prev:derive-url ( base url -- url' )
Next:ensure-port ( url -- url' )


Vocabulary
urls

Inputs
urlan url


Outputs
url'an url


Word description
Outputs a new URL with the same path and query components as the input value, but with the protocol, host and port set to f.

Examples
USING: prettyprint urls ; URL" http://factorcode.org/binaries.fhtml" relative-url .
URL" /binaries.fhtml"


Definition