Sophie

Sophie

distrib > Mageia > 5 > i586 > media > core-release > by-pkgid > b4603fcd3afb71dfbec25f4867b993f4 > files > 311

js_of_ocaml-doc-2.4.1-2.mga5.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css">
<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
<link rel="Start" href="index.html">
<link rel="Up" href="Url.html">
<link title="Index of types" rel=Appendix href="index_types.html">
<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
<link title="Index of values" rel=Appendix href="index_values.html">
<link title="Index of class methods" rel=Appendix href="index_methods.html">
<link title="Index of class types" rel=Appendix href="index_class_types.html">
<link title="Index of modules" rel=Appendix href="index_modules.html">
<link title="Index of module types" rel=Appendix href="index_module_types.html">
<link title="CSS" rel="Chapter" href="CSS.html">
<link title="Dom" rel="Chapter" href="Dom.html">
<link title="Dom_events" rel="Chapter" href="Dom_events.html">
<link title="Dom_html" rel="Chapter" href="Dom_html.html">
<link title="Dom_svg" rel="Chapter" href="Dom_svg.html">
<link title="EventSource" rel="Chapter" href="EventSource.html">
<link title="File" rel="Chapter" href="File.html">
<link title="Firebug" rel="Chapter" href="Firebug.html">
<link title="Form" rel="Chapter" href="Form.html">
<link title="Js" rel="Chapter" href="Js.html">
<link title="Json" rel="Chapter" href="Json.html">
<link title="Jsonp" rel="Chapter" href="Jsonp.html">
<link title="Keycode" rel="Chapter" href="Keycode.html">
<link title="Lwt_js" rel="Chapter" href="Lwt_js.html">
<link title="Lwt_js_events" rel="Chapter" href="Lwt_js_events.html">
<link title="Regexp" rel="Chapter" href="Regexp.html">
<link title="Sys_js" rel="Chapter" href="Sys_js.html">
<link title="Typed_array" rel="Chapter" href="Typed_array.html">
<link title="Url" rel="Chapter" href="Url.html">
<link title="WebGL" rel="Chapter" href="WebGL.html">
<link title="WebSockets" rel="Chapter" href="WebSockets.html">
<link title="XmlHttpRequest" rel="Chapter" href="XmlHttpRequest.html">
<link title="Lwt_log_js" rel="Chapter" href="Lwt_log_js.html">
<link title="JsooTop" rel="Chapter" href="JsooTop.html">
<link title="Ocamlbuild_js_of_ocaml" rel="Chapter" href="Ocamlbuild_js_of_ocaml.html">
<link title="Deriving_Json" rel="Chapter" href="Deriving_Json.html">
<link title="Deriving_Json_lexer" rel="Chapter" href="Deriving_Json_lexer.html">
<link title="Pa_deriving_Json" rel="Chapter" href="Pa_deriving_Json.html"><title>Url.Current</title>
</head>
<body>
<div class="navbar">&nbsp;<a class="up" href="Url.html" title="Url">Up</a>
&nbsp;</div>
<h1>Module <a href="type_Url.Current.html">Url.Current</a></h1>

<pre><span class="keyword">module</span> Current: <code class="code">sig</code> <a href="Url.Current.html">..</a> <code class="code">end</code></pre><div class="info module top">
This module can be used to handle the Url associated to the current
    document.<br>
</div>
<hr width="100%">

<pre><span id="VALhost"><span class="keyword">val</span> host</span> : <code class="type">string</code></pre><div class="info ">
The host part of the current url.<br>
</div>

<pre><span id="VALport"><span class="keyword">val</span> port</span> : <code class="type">int option</code></pre><div class="info ">
The port of the current url.<br>
</div>

<pre><span id="VALprotocol"><span class="keyword">val</span> protocol</span> : <code class="type">string</code></pre><div class="info ">
The protocol of the current url.<br>
</div>

<pre><span id="VALpath_string"><span class="keyword">val</span> path_string</span> : <code class="type">string</code></pre><div class="info ">
The path of the current url as one long string.<br>
</div>

<pre><span id="VALpath"><span class="keyword">val</span> path</span> : <code class="type">string list</code></pre><div class="info ">
The path of the current url as a list of small string.<br>
</div>

<pre><span id="VALarguments"><span class="keyword">val</span> arguments</span> : <code class="type">(string * string) list</code></pre><div class="info ">
The arguments of the current url as an association list.<br>
</div>

<pre><span id="VALget_fragment"><span class="keyword">val</span> get_fragment</span> : <code class="type">unit -> string</code></pre><div class="info ">
Because the <code class="code">fragment</code> of the Url for the current document can change
        dynamically, we use a functional value here.<br>
</div>

<pre><span id="VALset_fragment"><span class="keyword">val</span> set_fragment</span> : <code class="type">string -> unit</code></pre><div class="info ">
<code class="code">set_fragment s</code> replaces the current fragment by <code class="code">s</code>.<br>
</div>

<pre><span id="VALget"><span class="keyword">val</span> get</span> : <code class="type">unit -> <a href="Url.html#TYPEurl">Url.url</a> option</code></pre><div class="info ">
<code class="code">get ()</code> returns a value of type <a href="Url.html#TYPEurl"><code class="code">Url.url</code></a> with fields reflecting the
        state of the current Url.<br>
</div>

<pre><span id="VALset"><span class="keyword">val</span> set</span> : <code class="type"><a href="Url.html#TYPEurl">Url.url</a> -> unit</code></pre><div class="info ">
<code class="code">set u</code> replaces the current Url for <code class="code">u</code>. <b>WARNING:</b> Causes the
        document to change.<br>
</div>

<pre><span id="VALas_string"><span class="keyword">val</span> as_string</span> : <code class="type">string</code></pre><div class="info ">
<code class="code">as_string</code> is the original string representation of the current Url. It
        is NOT necessarily equals to <code class="code">string_of_url (get ())</code> but
        <code class="code">url_of_string as_string = get ()</code> holds.<br>
</div>
</body></html>