Host used as redirector in universal URLs.
Parse the location part (including query and fragment) of a universal URL.
url
:
str | None
– 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.
node_name
:
str | None
– the node name
url
:
str | None
– (optional) the direct URL
str
– 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
:
str | None
– the node name
root_url
:
str | None
– the Moera root URL of the node
path
:
str | None
– (optional) virtual path at the node ('/'
, if set to None
or empty)
query
:
str | None
– (optional) query component of the URL
fragment
:
str | None
– (optional) fragment identifier of the URL
str
– the universal URL
Represents location part of a universal Moera URL.
str | None
–
The node name.
str
–
Scheme specifier of the node location.
str | None
–
Authority (host name and optional port) of the node location.
str | None
–
Virtual path at the node.
str
–
(read only) Universal Moera location (without query and fragment).
str | None
–
Query component of the URL.
str | None
–
Fragment identifier of the URL.
node_name
:
str | None
– (optional) the node name
scheme
:
str | None
– (optional) scheme specifier of the node location ('https'
, if set to None
or empty)
authority
:
str | None
– (optional) authority (host name and optional port) of the node location
path
:
str | None
– (optional) virtual path at the node ('/'
, if set to None
or empty)
query
:
str | None
– (optional) query component of the URL
fragment
:
str | None
– (optional) fragment identifier of the URL