derive-url ( base url -- url' )
Furnace framework ยป URL objects

Prev:URL"
Next:relative-url ( url -- url' )


Vocabulary
urls

Inputs
basean url
urlan url


Outputs
url'an url


Word description
Builds a URL by filling in missing components of url from base.

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

USING: prettyprint urls ; URL" http://www.truecasey.com/drinks/kombucha" URL" master-cleanser" derive-url .
URL" http://www.truecasey.com/drinks/master-cleanser"


Definition