Skip to content

Commit

Permalink
Deployed 387bcee to 0.1 with MkDocs 1.6.0 and mike 2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mkromberg committed Sep 9, 2024
1 parent 7118148 commit b8f62f0
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 9 deletions.
58 changes: 57 additions & 1 deletion 0.1/Usage/Configuration/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,33 @@
</span>
</a>

</li>

<li class="md-nav__item">
<a href="#for-developers" class="md-nav__link">
<span class="md-ellipsis">
For Developers
</span>
</a>

</li>

<li class="md-nav__item">
<a href="#showdevtools" class="md-nav__link">
<span class="md-ellipsis">
SHOWDEVTOOLS
</span>
</a>

</li>

<li class="md-nav__item">
<a href="#jsclientfolder" class="md-nav__link">
<span class="md-ellipsis">
JSClientFolder
</span>
</a>

</li>

</ul>
Expand Down Expand Up @@ -1417,6 +1444,33 @@
</span>
</a>

</li>

<li class="md-nav__item">
<a href="#for-developers" class="md-nav__link">
<span class="md-ellipsis">
For Developers
</span>
</a>

</li>

<li class="md-nav__item">
<a href="#showdevtools" class="md-nav__link">
<span class="md-ellipsis">
SHOWDEVTOOLS
</span>
</a>

</li>

<li class="md-nav__item">
<a href="#jsclientfolder" class="md-nav__link">
<span class="md-ellipsis">
JSClientFolder
</span>
</a>

</li>

</ul>
Expand Down Expand Up @@ -1497,7 +1551,9 @@ <h2 id="logmodes">LOGMODES</h2>
<li>G: WG processing</li>
</ul>
<p>An up-to-date list can be found in the function <code>EWC.Log</code>.</p>
<h1 id="for-developers">For Developers</h1>
<h2 id="for-developers">For Developers</h2>
<p>The following configuration settings are intended for use during development of EWC
itself:</p>
<h2 id="showdevtools">SHOWDEVTOOLS</h2>
<p>If you set this to 1, EWC will call <code>ShowDevTools 1</code> on each HTMLRenderer that it creates.</p>
<h2 id="jsclientfolder">JSClientFolder</h2>
Expand Down
18 changes: 11 additions & 7 deletions 0.1/Usage/Installation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1439,12 +1439,14 @@

<h1 id="installation">Installation</h1>
<p>EWC is developed as an open-sourcen GitHub repository. To download the code, you can either install Git and clone the repository using the following command:</p>
<p><code>git clone https://github.com/dyalog/ewc.git</code></p>
<pre><code>git clone https://github.com/dyalog/ewc.git
</code></pre>
<p>Alternatively, you can just download a <a href="https://github.com/dyalog/ewc/archive/refs/heads/main.zip">zip file</a> containing all the code.</p>
<h2 id="verify-installation">Verify Installation</h2>
<p>The simplest way to verify installtion is to run the demo application:</p>
<p><code>]link.create # /path/to/ewc</code>
<code>demo.Run 'Desktop'</code></p>
<p>The simplest way to verify installation is to run the demo application:</p>
<pre><code>]link.create # /path/to/ewc
demo.Run 'Desktop'
</code></pre>
<p>This will pop up a form with a Dyalog logo and a dropdown on the right which allows
you to select a variety of simple test applications that have been used to test
EWC during development.</p>
Expand All @@ -1454,8 +1456,9 @@ <h2 id="the-demo-application">The Demo Application</h2>
select using the right argument.</p>
<h2 id="building-your-own-application">Building your Own Application</h2>
<p>After linking ewc, you can create a form as follows:</p>
<p><code>EWC.Init 'Desktop'</code>
<code>'F1' eWC 'Form' 'Hello World' (10 10) (400 600)</code></p>
<pre><code>EWC.Init 'Desktop'
'F1' eWC 'Form' 'Hello World' (10 10) (400 600)
</code></pre>
<p>This should create an HTMLRenderer window with the caption "Hello World". For more
information on getting started, see <a href="../Initialisation/">initialisation</a>.</p>
<h2 id="ewc-development">EWC Development</h2>
Expand All @@ -1464,7 +1467,8 @@ <h2 id="ewc-development">EWC Development</h2>
the client code separately. In order for EWC to automatically find this code,
it must be located in a folder called ewc-client, in the same folder as EWC itself.</p>
<p>You can achieve this using:</p>
<p><code>git clone https://github.com/dyalog/ewc-client.git</code></p>
<pre><code>git clone https://github.com/dyalog/ewc-client.git
</code></pre>



Expand Down
Loading

0 comments on commit b8f62f0

Please sign in to comment.