Skip to content

Commit

Permalink
deploy: c498d61
Browse files Browse the repository at this point in the history
  • Loading branch information
nkh committed Nov 29, 2023
1 parent 1b1685f commit 4cfece9
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 8 deletions.
4 changes: 2 additions & 2 deletions for_developers/scripting.html
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ <h1 id="scripting"><a class="header" href="#scripting">Scripting</a></h1>
<h2 id="executing-your-scripts"><a class="header" href="#executing-your-scripts">Executing your scripts</a></h2>
<p><a href="scripting_execute.html"><strong>Executing your scripts</strong></a></p>
<h2 id="transform-json-via-datatreedumper-to-asciio-script"><a class="header" href="#transform-json-via-datatreedumper-to-asciio-script">transform JSON, via Data::TreeDumper, to Asciio script</a></h2>
<p>The *json_dtd_to_asciio' script is installed with Asciio. It will read a JSON stream from stdin.</p>
<p>The *json_dtd_to_asciio_script' script is installed with Asciio. It will read a JSON stream from stdin.</p>
<p>It takes the following arguments:</p>
<ul>
<li>title</li>
Expand All @@ -207,7 +207,7 @@ <h2 id="transform-json-via-datatreedumper-to-asciio-script"><a class="header" hr
<li>'box', if you want the data to be boxed</li>
<li>start_level, 0/1: 0 meanss no start tree grlyph</li>
</ul>
<pre><code>&lt;coordinates_json ./script/json_dtd_to_asciio '' 10 10 box 0 | stdin_to_asciio_web
<pre><code>&lt;coordinates_json ./script/json_dtd_to_asciio_script '' 10 10 box 0 | stdin_to_asciio
</code></pre>
<h2 id="simplified-scripting-interface"><a class="header" href="#simplified-scripting-interface">Simplified scripting interface</a></h2>
<p>The simplified scripting interface is an API which hides some of the scripting details for you. </p>
Expand Down
8 changes: 8 additions & 0 deletions for_developers/scripting_api.html
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,14 @@ <h1 class="menu-title">Asciio</h1>
<div id="content" class="content">
<main>
<h1 id="simplified-scripting-api"><a class="header" href="#simplified-scripting-api">Simplified Scripting API</a></h1>
<h2 id="stop_updating_display"><a class="header" href="#stop_updating_display">stop_updating_display</a></h2>
<p>Stops updating the display until <em>start_updating_display</em> is called; this can be used to reduce flickering.</p>
<pre><code>stop_updating_display
</code></pre>
<h2 id="start_updating_display"><a class="header" href="#start_updating_display">start_updating_display</a></h2>
<p>Start updating the display; display will automatically be updated from when this is called. An update is also made.</p>
<pre><code>start_updating_display
</code></pre>
<h2 id="create_undo_snapshot"><a class="header" href="#create_undo_snapshot">create_undo_snapshot</a></h2>
<p>Creates an undo snapshot.</p>
<pre><code>create_undo_snapshot ;
Expand Down
2 changes: 1 addition & 1 deletion for_developers/scripting_execute.html
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ <h3 id="connecting-to-asciio-web-server"><a class="header" href="#connecting-to-
<ul>
<li>directly from your application</li>
<li>via a command line application like xh (https://github.com/ducaale/xh) or httpie.</li>
<li>piping to <em>stdin_to_asciio_web</em> script which is installed with asciio (uses xh).</li>
<li>piping to <em>stdin_to_asciio</em> script which is installed with asciio (uses xh).</li>
</ul>
<p>Example:</p>
<pre><code class="language-bash">
Expand Down
14 changes: 11 additions & 3 deletions print.html
Original file line number Diff line number Diff line change
Expand Up @@ -2196,7 +2196,7 @@ <h2 id="declare-bindings"><a class="header" href="#declare-bindings">Declare bin
<h2 id="executing-your-scripts"><a class="header" href="#executing-your-scripts">Executing your scripts</a></h2>
<p><a href="for_developers/scripting_execute.html"><strong>Executing your scripts</strong></a></p>
<h2 id="transform-json-via-datatreedumper-to-asciio-script"><a class="header" href="#transform-json-via-datatreedumper-to-asciio-script">transform JSON, via Data::TreeDumper, to Asciio script</a></h2>
<p>The *json_dtd_to_asciio' script is installed with Asciio. It will read a JSON stream from stdin.</p>
<p>The *json_dtd_to_asciio_script' script is installed with Asciio. It will read a JSON stream from stdin.</p>
<p>It takes the following arguments:</p>
<ul>
<li>title</li>
Expand All @@ -2205,7 +2205,7 @@ <h2 id="transform-json-via-datatreedumper-to-asciio-script"><a class="header" hr
<li>'box', if you want the data to be boxed</li>
<li>start_level, 0/1: 0 meanss no start tree grlyph</li>
</ul>
<pre><code>&lt;coordinates_json ./script/json_dtd_to_asciio '' 10 10 box 0 | stdin_to_asciio_web
<pre><code>&lt;coordinates_json ./script/json_dtd_to_asciio_script '' 10 10 box 0 | stdin_to_asciio
</code></pre>
<h2 id="simplified-scripting-interface"><a class="header" href="#simplified-scripting-interface">Simplified scripting interface</a></h2>
<p>The simplified scripting interface is an API which hides some of the scripting details for you. </p>
Expand Down Expand Up @@ -2327,7 +2327,7 @@ <h3 id="connecting-to-asciio-web-server"><a class="header" href="#connecting-to-
<ul>
<li>directly from your application</li>
<li>via a command line application like xh (https://github.com/ducaale/xh) or httpie.</li>
<li>piping to <em>stdin_to_asciio_web</em> script which is installed with asciio (uses xh).</li>
<li>piping to <em>stdin_to_asciio</em> script which is installed with asciio (uses xh).</li>
</ul>
<p>Example:</p>
<pre><code class="language-bash">
Expand All @@ -2349,6 +2349,14 @@ <h3 id="connecting-to-asciio-web-server"><a class="header" href="#connecting-to-

</code></pre>
<div style="break-before: page; page-break-before: always;"></div><h1 id="simplified-scripting-api"><a class="header" href="#simplified-scripting-api">Simplified Scripting API</a></h1>
<h2 id="stop_updating_display"><a class="header" href="#stop_updating_display">stop_updating_display</a></h2>
<p>Stops updating the display until <em>start_updating_display</em> is called; this can be used to reduce flickering.</p>
<pre><code>stop_updating_display
</code></pre>
<h2 id="start_updating_display"><a class="header" href="#start_updating_display">start_updating_display</a></h2>
<p>Start updating the display; display will automatically be updated from when this is called. An update is also made.</p>
<pre><code>start_updating_display
</code></pre>
<h2 id="create_undo_snapshot"><a class="header" href="#create_undo_snapshot">create_undo_snapshot</a></h2>
<p>Creates an undo snapshot.</p>
<pre><code>create_undo_snapshot ;
Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion searchindex.json

Large diffs are not rendered by default.

0 comments on commit 4cfece9

Please sign in to comment.