Skip to content

Commit

Permalink
index.tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
ferrall committed Mar 10, 2023
1 parent cf81f7f commit fe1fd61
Show file tree
Hide file tree
Showing 22 changed files with 91 additions and 65 deletions.
6 changes: 3 additions & 3 deletions docs/About/Acknowledgements.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ <h1><span class="icon"><img class="icon" src="icons/file.png">&nbsp;</span><span
<UL>
<LI>Documentation for any code contributed by other people includes an acknowledgement or the person is listed in the OxDoc &amp;author field.</LI>
<P/>
<LI>Thanks to seminar participants at: Minnesota (2013), Dalhousie (2014), and Melbourne (2016).</LI>
<LI>Thanks to seminar participants at: Minnesota (2013), Dalhousie (2014), Melbourne (2016) and Guelph (2019).</LI>
<P/>
<LI>Some code and documentation were written while visiting the Department of Economics, UC-Santa Barbara in 2012.</LI>
<P/>
<LI>Thanks to <a href="www.doornik.com">Jurgen Doornik</a> for creating and maintaining Ox. If there were justice in the world no economist would use Matlab.</LI>
<P/>
<LI>Thanks to <a href="">Yori Zwols</a> for creating <a href="https://github.com/yozw/oxdoc">OxDoc</a> and responding to my many requests even though he moved on long ago.</LI>
<LI>Thanks to <a href="https://github.com/yozw">Yori Zwols</a> for creating <a href="https://github.com/yozw/oxdoc">OxDoc</a> and responding to my many requests even though he moved on long ago.</LI>
<P/>
<LI>Thanks to Patrick Day for his early work on this project. His code did not end up in <span class="n">niqlow</span> but it challenged me to follow through on the original approach.</LI>
<P/>
Expand All @@ -34,7 +34,7 @@ <h1><span class="icon"><img class="icon" src="icons/file.png">&nbsp;</span><span
<LI>What's in a name? As usual in dynamic programming, work backwards to find the answer.</LI>
</UL>

<dl><dt class="author">Author:</dt><dd class="author"> &copy; 2011-2017 <a href="http://econ.queensu.ca/~ferrall">Christopher Ferrall</a>.</dd>
<dl><dt class="author">Author:</dt><dd class="author"> &copy; 2011-2023 <a href="http://econ.queensu.ca/~ferrall">Christopher Ferrall</a>.</dd>
</dl>
<div class="footer">
Generated by <a href="http://oxdoc.sourceforge.net">oxdoc 1.1-beta</a> &copy Copyright 2005-2014 by Y. Zwols<br>
Expand Down
3 changes: 3 additions & 0 deletions docs/About/Install.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
<h1><span class="icon"><img class="icon" src="icons/file.png">&nbsp;</span><span class="text">Install</span></h1>

Acquire, Install and Use <span class="n">niqlow</span>.
<P/>
<h3><a href="https://ferrallc.screencasthost.com/niqlow">Screenshot Guide to Installation.</a></h3>
<P/>
<ol class="contents">Steps
<LI>Get and install Ox (if necessary)</LI>
<LI>Get <span class="n">niqlow</span></LI>
Expand Down
2 changes: 1 addition & 1 deletion docs/About/License.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ <h1><span class="icon"><img class="icon" src="icons/file.png">&nbsp;</span><span
<P/>
</UL>

<dl><dt class="author">Author:</dt><dd class="author"> &copy; 2011-2019 <a href="http://econ.queensu.ca/~ferrall">Christopher Ferrall</a>.</dd>
<dl><dt class="author">Author:</dt><dd class="author"> &copy; 2011-2023 <a href="http://econ.queensu.ca/~ferrall">Christopher Ferrall</a>.</dd>
</dl>
<div class="footer">
Generated by <a href="http://oxdoc.sourceforge.net">oxdoc 1.1-beta</a> &copy Copyright 2005-2014 by Y. Zwols<br>
Expand Down
8 changes: 4 additions & 4 deletions docs/DDP/Bellman.ox.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ <h1><span class="icon"><img class="icon" src="icons/file.png">&nbsp;</span><span
<P/>
The integration over <span class="expressions">\(\zeta\)</span> is carried out internally by the virtual <a href="Bellman.ox.html#Bellman___thetaEMax">thetaEMax</a>() or its replacement and does not have to be coded by the user. The default method, <a href="Bellman.ox.html#Bellman___thetaEMax">thetaEMax</a>(), assumes there is <span class="expressions">\(\zeta.\)</span> Thus, the default does no integration.</p>-->
<P/>
<li>User-Contributed Elements of <code>MyModel</code> and <code>MyCode</code></li>
<li >User-Contributed Elements of <code>MyModel</code> and <code>MyCode</code></li>
<OL class="chapter">
<LI>Utility()</LI>
<LI id="utility">Utility()</LI>
<code>MyModel</code> must supply a replacement for <a href="Bellman.ox.html#Bellman___Utility">Utility</a>(). Since utility depends on the current state, the method must be automatic (not static). Here is an example with one state variable and one action and how they might determine utility.
<DD><pre>
&#35;import "DDP"
Expand All @@ -78,7 +78,7 @@ <h1><span class="icon"><img class="icon" src="icons/file.png">&nbsp;</span><span
<P/>
<p>As explained elsewhere, if <code>s</code> contains a state variable its "value" is not simply themselves. Likewise <code>a</code>. Their current values are retrieved by sending them to <a href="Shared.ox.html#CV">CV</a>(). Also, note that <span class="expressions">\(U()\)</span> at a state is always treated as a vector-valued function in <span class="n">DDP</span> . So <code>CV(d)</code> is a column vector. As a state variable <code>s</code> is a scalar at <span class="expressions">\(\theta\)</span>.</p>
<P/>
<LI>Reachable States</LI>
<LI id="reachable">Reachable States</LI>
<P/>
A state is <em>unreachable</em> if it cannot occur given initial conditions. For example, a person cannot have 20 years of labour market experience at age 18. Including unreachable states in the state space wastes computation and storage but does not cause any errors.</p>
<P/>
Expand Down Expand Up @@ -176,7 +176,7 @@ <h1><span class="icon"><img class="icon" src="icons/file.png">&nbsp;</span><span
<P/>
</OL>

<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2021 <a href="https://ferrall.github.io/">Christopher Ferrall</a></dd>
<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2023 <a href="https://ferrall.github.io/">Christopher Ferrall</a></dd>

<a name="auto"><hr><h1>Documentation of Items Defined in Bellman.ox <a href="#"><span class="skip"><abbr title=" Back to top">&nbsp;&#8679;&nbsp;</abbr></span></a></h1></a></dd>
</dl>
Expand Down
2 changes: 1 addition & 1 deletion docs/DDP/DDP.ox.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ <H1 id="over">What Kind of <span class="n">niqlow</span> User Are You?</H1>
<P/>
<HR/>

<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2021 <a href="https://ferrall.github.io/">Christopher Ferrall</a></dd></dd>
<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2023 <a href="https://ferrall.github.io/">Christopher Ferrall</a></dd></dd>
</dl>
<div class="footer">
Generated by <a href="http://oxdoc.sourceforge.net">oxdoc 1.1-beta</a> &copy Copyright 2005-2014 by Y. Zwols<br>
Expand Down
2 changes: 1 addition & 1 deletion docs/DDP/Data.ox.html
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ <h2><a name="Emet"><LI>Likelihood</LI></a></h2>
<P/>
</OL>

<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2021 <a href="https://ferrall.github.io/">Christopher Ferrall</a></dd>
<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2023 <a href="https://ferrall.github.io/">Christopher Ferrall</a></dd>

<a name="auto"><hr><h1>Documentation of Items Defined in Data.ox <a href="#"><span class="skip"><abbr title=" Back to top">&nbsp;&#8679;&nbsp;</abbr></span></a></h1></a></dd>
</dl>
Expand Down
2 changes: 1 addition & 1 deletion docs/DDP/Methods.ox.html
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ <h4>4 functions of <code>z*</code></h4>
<P/>
</OL>

<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2021 <a href="https://ferrall.github.io/">Christopher Ferrall</a></dd>
<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2023 <a href="https://ferrall.github.io/">Christopher Ferrall</a></dd>
<a name="auto"><hr><h1>Documentation of Items Defined in Methods.ox <a href="#"><span class="skip"><abbr title=" Back to top">&nbsp;&#8679;&nbsp;</abbr></span></a></h1></a></dd>
</dl>
<a name="global"></a>
Expand Down
2 changes: 1 addition & 1 deletion docs/DDP/Shared.ox.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ <h1><span class="icon"><img class="icon" src="icons/file.png">&nbsp;</span><span
<P/>
</OL>

<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2021 <a href="https://ferrall.github.io/">Christopher Ferrall</a> </dd>
<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2023 <a href="https://ferrall.github.io/">Christopher Ferrall</a> </dd>
<a name="auto"><hr><h1>Documentation of Items Defined in Shared.ox <a href="#"><span class="skip"><abbr title=" Back to top">&nbsp;&#8679;&nbsp;</abbr></span></a></h1></a></dd>
</dl>
<a name="global"></a>
Expand Down
42 changes: 26 additions & 16 deletions docs/DDP/Variables.ox.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ <h1><span class="icon"><img class="icon" src="icons/file.png">&nbsp;</span><span
<P/>
<p>Indicator vectors make it possible to write any utility as a sum: <span class="expressions">\(U = \sum_k d_k u_k\)</span>. But as with the single action approach the interpretation is not obvious and <span class="expressions">\(U()\)</span> will in no way resemble usual mathematical notation for an objective.</p>
<P/>
<LI>Actual, Current and Empirical Values of an Action Variable</LI>
<LI id="AV">Actual, Current and Empirical Values of an Action Variable</LI>
<P/>
Usually an action variable can be an object of the base <a href="Variables.ox.html#ActionVariable">ActionVariable</a> class. The user rarely needs to define a derived class.
<P/>
Expand Down Expand Up @@ -913,7 +913,7 @@ <h3>How is Transit() used?</h3>
<P/>
</OL>

<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2021 <a href="https://ferrall.github.io/">Christopher Ferrall</a> </dd>
<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2023 <a href="https://ferrall.github.io/">Christopher Ferrall</a> </dd>

<a id="auto"><hr><h1>Documentation of Items Defined in Variables.ox <a href="#"><span class="skip"><abbr title=" Back to top">&nbsp;&#8679;&nbsp;</abbr></span></a></h1></a></dd>
</dl>
Expand Down Expand Up @@ -1069,10 +1069,10 @@ <h2><span class="icon"><img class="icon" src="icons/class.png">&nbsp;</span><spa
<P/>
<span class="equation">$$s' = s+I\{ CV(x) \in tau\}I\{s \lt N-1\}.$$</span>

<dl><dt class="example">Example:</dt><dd class="example"><code><pre>
<dl><dt class="example">Example:</dt><dd class="example"><pre>
decl exper = new ActionCounter("Yrs Experience",10,work); //track up to 10 years working
EndogenousStates(exper);
</pre></code></DD>
</pre></DD>
</dd>
</dl>
<table class="method_table">
Expand Down Expand Up @@ -2220,8 +2220,8 @@ <h2><span class="icon"><img class="icon" src="icons/class.png">&nbsp;</span><spa
<DT>Transition:</DT>
<span class="equation">$$s' = I\{ x = Lag(x)\}(s+ I\{s \lt N-1\}).$$</span>

<dl><dt class="example">Example:</dt><dd class="example"><code><pre>
</pre></code></DD>
<dl><dt class="example">Example:</dt><dd class="example"><pre>
</pre></DD>
</dd>
</dl>
<table class="method_table">
Expand Down Expand Up @@ -2625,6 +2625,7 @@ <h2><span class="icon"><img class="icon" src="icons/class.png">&nbsp;</span><spa
decl health = new IIDJump("h",<0.1;0.8;0.1>);
</pre>
</dd>
</dd>
<dt class="comments">Comments:</dt><dd class="comments">Unlike a general Markov variable, a IIDJump is eligible to be an Exogenous variable, a member of <span class="expressions">\(\epsilon\)</span>
added to the model with <a href="DP.ox.html#DP___ExogenousStates">ExogenousStates</a>.
</dd>
Expand Down Expand Up @@ -3557,6 +3558,7 @@ <h2><span class="icon"><img class="icon" src="icons/class.png">&nbsp;</span><spa
As a transition probability:
<span class="equation">$$P(q'; q,s) = I\{ q' = q + I\{s=1\} \}.$$</span>
</dd>
</dd>
</dl>
<dl class="inherited">
<dt>Inherited methods from <a href="Variables.ox.html#StateVariable">StateVariable</a>:</dt><dd><a href="Variables.ox.html#StateVariable___Check">Check</a>, <a href="Variables.ox.html#StateVariable___IsBlock">IsBlock</a>, <a href="Variables.ox.html#StateVariable___IsBlockMember">IsBlockMember</a>, <a href="Variables.ox.html#StateVariable___IsReachable">IsReachable</a>, <a href="Variables.ox.html#StateVariable___MakeTerminal">MakeTerminal</a>, <a href="Variables.ox.html#StateVariable___myAV">myAV</a>, <a href="Variables.ox.html#StateVariable___StateVariable">StateVariable</a>, <a href="Variables.ox.html#StateVariable___Track">Track</a>, <a href="Variables.ox.html#StateVariable___Transit">Transit</a>, <a href="Variables.ox.html#StateVariable___UnChanged">UnChanged</a></dd>
Expand Down Expand Up @@ -4261,7 +4263,7 @@ <h2><span class="icon"><img class="icon" src="icons/class.png">&nbsp;</span><spa
decl p = probn(x*q); // x has to be updated using current age and other x values.
decl ivals = CV(i);
return 0 ~ (1-p*ivals) ~ p*ivals;
}</pre>
}</pre></dd>
</dd>
</dl>
<table class="method_table">
Expand Down Expand Up @@ -4424,7 +4426,7 @@ <h2><span class="icon"><img class="icon" src="icons/class.png">&nbsp;</span><spa
EndogenousState( x = new Renewal("x",90,i,q) );
&vellip;
}
</pre>
</pre></dd>
</dd>
</dl>
<table class="method_table">
Expand Down Expand Up @@ -4503,8 +4505,8 @@ <h2><span class="icon"><img class="icon" src="icons/class.png">&nbsp;</span><spa
s' = .
</pre></dd>

<dl><dt class="example">Example:</dt><dd class="example"><code><pre>
</pre></code>
<dl><dt class="example">Example:</dt><dd class="example"><pre>
</pre></dd>
</dd>
</dl>
<table class="method_table">
Expand Down Expand Up @@ -4821,7 +4823,7 @@ <h2><span class="icon"><img class="icon" src="icons/class.png">&nbsp;</span><spa

<dl><dt class="example">Example:</dt><dd class="example"><pre>
decl wks = new ActionState("wksunemp",work,10,<0>); //track up to 10 years
EndogenousStates(wks);</pre>
EndogenousStates(wks);</pre></dd>
</dd>
</dl>
<table class="method_table">
Expand Down Expand Up @@ -7945,12 +7947,14 @@ <h3><span class="icon"><img class="icon" src="icons/method.png">&nbsp;</span><sp
</td>
</tr>
<tr>
<td class="declaration" valign="baseline">Order
<td class="declaration" valign="baseline">Order</td>
<td class="description" valign="baseline">number of lags [default = 1]
</td>
</tr>
</table>
</dd>
<dt class="example">Example:</dt><dd class="example"><pre>wrked = new LaggedAction("Worked Last Year",work);</pre>
<dt class="example">Example:</dt><dd class="example"><pre>wrked = new LaggedAction("Worked Last Year",work);
</pre></dd>
</dd>
<dt class="seealso">See also:</dt><dd class="seealso"><a href="DP.ox.html#DP___KLaggedAction">KLaggedAction</a></dd>
</dl>
Expand Down Expand Up @@ -7998,7 +8002,9 @@ <h3><span class="icon"><img class="icon" src="icons/method.png">&nbsp;</span><sp
</tr>
</table>
</dd>
<dt class="example">Example:</dt><dd class="example"><pre>prevoccup = new LaggedState("Prev",occup);</pre></DD>
<dt class="example">Example:</dt><dd class="example"><pre>
prevoccup = new LaggedState("Prev",occup);
</pre></DD>
</dd>
<dt class="seealso">See also:</dt><dd class="seealso"><a href="DP.ox.html#DP___KLaggedState">KLaggedState</a></dd>
</dl>
Expand Down Expand Up @@ -9105,7 +9111,9 @@ <h3><span class="icon"><img class="icon" src="icons/method.png">&nbsp;</span><sp
</table>
</dd>
<dt class="example">Example:</dt><dd class="example">Once a person retires the stay retired forever:
<pre>retired = new PermanentChoice("Ret",retire);</pre></dd>
<pre>
retired = new PermanentChoice("Ret",retire);
</pre></dd>
</dd>
</dl>
</dd></dl>
Expand Down Expand Up @@ -10478,10 +10486,12 @@ <h3><span class="icon"><img class="icon" src="icons/method.png">&nbsp;</span><sp
</tr>
</table>
</dd>
<dt class="example">Example:</dt><dd class="example">s = new StateVariable("s",5);
<dt class="example">Example:</dt><dd class="example"><pre>
s = new StateVariable("s",5);
s->MakeTerminal(<3;4>);
v = new StateVariable("v",1);
v->MakeTerminal(1);
</pre>
</dd>
<P/>
Now any state for which <code>CV(s)=3</code> or <code>CV(s)=4</code> or <code>CV(v)=1</code>
Expand Down
2 changes: 1 addition & 1 deletion docs/FiveO/Algorithms.ox.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h1><span class="icon"><img class="icon" src="icons/file.png">&nbsp;</span><span
<P/>
See the FiveO <a href="hierarchy.html" target="_blank">class hierarchy</a> to see all the available algorithms.

<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2021 <a href="https://ferrall.github.io/">Christopher Ferrall</a></dd>
<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2023 <a href="https://ferrall.github.io/">Christopher Ferrall</a></dd>

<a name="auto"><hr><h1>Documentation of Items Defined in Algorithms.ox <a href="#"><span class="skip"><abbr title=" Back to top">&nbsp;&#8679;&nbsp;</abbr></span></a></h1></a></dd>
</dl>
Expand Down
2 changes: 1 addition & 1 deletion docs/FiveO/FiveO.ox.html
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ <h1><span class="icon"><img class="icon" src="icons/file.png">&nbsp;</span><span
<p>In <code>Modelbase</code> aspects of parameters are stored separately, at least from the user's perspective. Parameters can be fixed or free, but other kinds of constraints and relationships between parameters are left to the user. A key difference with <span class="n">FiveO</span> is that parameters are represented as objects derived from built-in parameter types. Parameters are created using a class that captures the constraints on the parameter and its relation to other parameters. For example, with one line of code a user can add a vector of parameters that are guaranteed to be <a href="Parameters.ox.html#Increasing">Increasing</a> during optimization: <var>x<sub>1</sub> &gt;x<sub>2</sub> &gt; ··· &gt x<sub>M</sub>.
</OL>

<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2021 <a href="https://ferrall.github.io/">Christopher Ferrall</a>
<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2023 <a href="https://ferrall.github.io/">Christopher Ferrall</a>
</DD></dd>
</dl>
<a name="global"></a>
Expand Down
2 changes: 1 addition & 1 deletion docs/FiveO/Shared.ox.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ <h1><span class="icon"><img class="icon" src="icons/file.png">&nbsp;</span><span
<P/>
</OL>

<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2021 <a href="https://ferrall.github.io/">Christopher Ferrall</a> </dd>
<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2023 <a href="https://ferrall.github.io/">Christopher Ferrall</a> </dd>
<a name="auto"><hr><h1>Documentation of Items Defined in Shared.ox <a href="#"><span class="skip"><abbr title=" Back to top">&nbsp;&#8679;&nbsp;</abbr></span></a></h1></a></dd>
</dl>
<a name="global"></a>
Expand Down
2 changes: 1 addition & 1 deletion docs/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<link rel="icon" href="icons/nicon16.png" type="image/png">
<meta http-equiv="refresh" content="3;url=niqlow.ox.html" />
<style>
body {
body {
background-image: url("niqlow.svg");
background-repeat:no-repeat;
background-color:#980000ff ;
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/misc/StataMNP.ox.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ <h1><span class="icon"><img class="icon" src="icons/file.png">&nbsp;</span><span
<P/>
<a href="../output/StataMNP.txt">Complete (noisy) output</a>

<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2022 <a href="http://econ.queensu.ca/~ferrall">Christopher Ferrall</a></dd></dd>
<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2023 <a href="http://econ.queensu.ca/~ferrall">Christopher Ferrall</a></dd></dd>
</dl>
<a name="global"></a>
<h2><span class="icon"><img class="icon" src="icons/global.png">&nbsp;</span><span class="text">Global functions</span></h2>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/replications/KeaneWolpinREStat1994.ox.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ <h2>Replication</h2>
<DD class="example"><details><summary>Output <a href="javascript:popoxcode('../../../examples/output/KeaneWolpinREStat1994.txt');">niqlow/examples/output/KeaneWolpinREStat1994.txt</a></summary>
<pre><object width="75%" height="200" type="text/plain" data="../../../examples/output/KeaneWolpinREStat1994.txt" border="1" ></object></pre></details></DD>

<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2021 <a href="https://ferrall.github.io/">Christopher Ferrall</a></dd></dd>
<dl><dt class="author">Author:</dt><dd class="author">&copy; 2011-2023 <a href="https://ferrall.github.io/">Christopher Ferrall</a></dd></dd>
</dl>
<a name="DynamicRoy"></a>
<h2><span class="icon"><img class="icon" src="icons/class.png">&nbsp;</span><span class="text">DynamicRoy</span></h2>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<link rel="icon" href="icons/nicon16.png" type="image/png">
<meta http-equiv="refresh" content="3;url=niqlow.ox.html" />
<style>
body {
body {
background-image: url("niqlow.svg");
background-repeat:no-repeat;
background-color:#980000ff ;
Expand Down
3 changes: 2 additions & 1 deletion docs/index.tmp
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<html>
<link rel="icon" href="icons/nicon16.png" type="image/png">
<head>
<link rel="icon" href="icons/nicon16.png" type="image/png">
<meta http-equiv="refresh" content="3;url=niqlow.ox.html" />
<style>
body {
background-image: url("niqlow.svg");
Expand Down
Loading

0 comments on commit fe1fd61

Please sign in to comment.