Host used as redirector in universal URLs.
Parse the location part (including query and fragment) of a universal URL.
url
:
string | null
– the URL to be parsed
UniversalLocation
– the parsed location
Build a universal Moera URL from the direct URL of a page on a node, adding the node name provided.
nodeName
:
string | null
– the node name
url?
:
string | null
– the direct URL
string
– the universal URL
Build a universal Moera URL from the node name, the Moera root URL of the node, virtual path and other components.
node_name
:
string | null
– the node name
rootUrl
:
string | null
– the Moera root URL of the node
path?
:
string | null
– virtual path at the node ('/'
, if set to null
or empty)
query?
:
string | null
– query component of the URL
fragment?
:
string | null
– fragment identifier of the URL
string
– the universal URL
Represents location part of a universal Moera URL.
string | null
–
The node name.
string
–
Scheme specifier of the node location.
string | null
–
Authority (host name and optional port) of the node location.
string | null
–
Virtual path at the node.
string
–
(read only) Universal Moera location (without query and fragment).
string | null
–
Query component of the URL.
string | null
–
Fragment identifier of the URL.
nodeName?
:
string | null
– the node name
scheme?
:
string | null
– scheme specifier of the node location ('https'
, if set to null
or empty)
authority?
:
string | null
– authority (host name and optional port) of the node location
path?
:
string | null
– virtual path at the node ('/'
, if set to null
or empty)
query?
:
string | null
– query component of the URL (without ?
)
fragment?
:
string | null
– fragment identifier of the URL (without #
)