ZMObject
└─ZMToolboxTool
└─ZMToolboxNet
public class ZMToolboxNet
extends ZMToolboxTool
| Fields inherited from org.zenmagick.toolbox.ZMToolboxTool | |
|---|---|
| request_, toolbox_ | |
| Fields inherited from org.zenmagick.core.ZMObject | |
|---|---|
| properties_ | |
| Method Summary | |
|---|---|
| string | absolute(string url) Convert a given relative url into an absolute one. |
| string | decode(string url) Decode a HTML encoded URL. |
| string | encode(string url) Encode a given URL to valid HTML. |
| string | url(string requestId, string params, boolean secure, boolean echo) Create a URL. |
| Methods inherited from org.zenmagick.toolbox.ZMToolboxTool | |
|---|---|
| getRequest, getToolbox, setRequest, setToolbox | |
| Methods inherited from org.zenmagick.core.ZMObject | |
|---|---|
| attachMethod, get, getAttachedMethods, getPropertyNames, set, singleton | |
public string absolute(string url)
Convert a given relative url into an absolute one.
public string decode(string url)
Decode a HTML encoded URL.
public string encode(string url)
Encode a given URL to valid HTML.
public string url(string requestId, string params, boolean secure, boolean echo)
Create a URL.
Mother of all URL related methods.
If the requestId parameter is null, the current requestId will be
used. The provided parameter will be merged into the current query string.
If the params parameter is null, all parameters of the
current request will be added.
null add all current parameterfalse.true, the URL will be echo'ed as well as returned.
Networking/URL related functions.