[Ttssh2-commit] [5888] ・数値指定での書き込み例を追加

アーカイブの一覧に戻る

svnno****@sourc***** svnno****@sourc*****
2015年 5月 26日 (火) 16:07:21 JST


Revision: 5888
          http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5888
Author:   doda
Date:     2015-05-26 16:07:20 +0900 (Tue, 26 May 2015)
Log Message:
-----------
・数値指定での書き込み例を追加
・段落を調整

Modified Paths:
--------------
    trunk/doc/en/html/macro/command/filewrite.html
    trunk/doc/en/html/macro/command/filewriteln.html
    trunk/doc/ja/html/macro/command/filewrite.html
    trunk/doc/ja/html/macro/command/filewriteln.html

-------------- next part --------------
Modified: trunk/doc/en/html/macro/command/filewrite.html
===================================================================
--- trunk/doc/en/html/macro/command/filewrite.html	2015-05-26 02:52:28 UTC (rev 5887)
+++ trunk/doc/en/html/macro/command/filewrite.html	2015-05-26 07:07:20 UTC (rev 5888)
@@ -24,7 +24,10 @@
 <h2>Remarks</h2>
 
 <p>
-Writes &lt;data&gt; to the file specified by &lt;file handle&gt;.<br />
+Writes &lt;data&gt; to the file specified by &lt;file handle&gt;.
+</p>
+
+<p>
 When the &lt;data&gt; type is the character string, the data is written as string.<br />
 When the &lt;data&gt; type is the integer, the least significant byte(0-255) regards as the ASCII code and
 the ASCII character is written.
@@ -36,5 +39,10 @@
 filewrite fhandle '---------cut here---------'#13#10
 </pre>
 
+<pre class="macro-example">
+; write a NUL character (0x00).
+filewrite fhandle 0
+</pre>
+
 </body>
 </html>

Modified: trunk/doc/en/html/macro/command/filewriteln.html
===================================================================
--- trunk/doc/en/html/macro/command/filewriteln.html	2015-05-26 02:52:28 UTC (rev 5887)
+++ trunk/doc/en/html/macro/command/filewriteln.html	2015-05-26 07:07:20 UTC (rev 5888)
@@ -24,7 +24,10 @@
 <h2>Remarks</h2>
 
 <p>
-Writes &lt;data&gt; and the new-line characters (CR+LF) to the file specified by &lt;file handle&gt;.<br />
+Writes &lt;data&gt; and the new-line characters (CR+LF) to the file specified by &lt;file handle&gt;.
+</p>
+
+<p>
 When the &lt;data&gt; type is the character string, the data is written as string.<br />
 When the &lt;data&gt; type is the integer, the least significant byte(0-255) regards as the ASCII code and
 the ASCII character is written.
@@ -36,5 +39,10 @@
 filewriteln fhandle '---------cut here---------'
 </pre>
 
+<pre class="macro-example">
+; write a NUL character (0x00) and the new-line character (CR+LF).
+filewrite fhandle 0
+</pre>
+
 </body>
 </html>

Modified: trunk/doc/ja/html/macro/command/filewrite.html
===================================================================
--- trunk/doc/ja/html/macro/command/filewrite.html	2015-05-26 02:52:28 UTC (rev 5887)
+++ trunk/doc/ja/html/macro/command/filewrite.html	2015-05-26 07:07:20 UTC (rev 5888)
@@ -24,7 +24,10 @@
 <h2>\x89\xF0\x90\xE0</h2>
 
 <p>
-\x83t\x83@\x83C\x83\x8B\x83n\x83\x93\x83h\x83\x8B &lt;file handle&gt; \x82Ŏw\x92肳\x82\xEA\x82\xE9\x83t\x83@\x83C\x83\x8B\x82ցA&lt;data&gt; \x82\xF0\x8F\x91\x82\xAB\x8D\x9E\x82ށB<br />
+\x83t\x83@\x83C\x83\x8B\x83n\x83\x93\x83h\x83\x8B &lt;file handle&gt; \x82Ŏw\x92肳\x82\xEA\x82\xE9\x83t\x83@\x83C\x83\x8B\x82ցA&lt;data&gt; \x82\xF0\x8F\x91\x82\xAB\x8D\x9E\x82ށB
+</p>
+
+<p>
 &lt;data&gt; \x82\xAA\x95\xB6\x8E\x9A\x97\xF1\x8C^\x82̏ꍇ\x81A\x95\xB6\x8E\x9A\x97\xF1\x82\xF0\x8F\x91\x82\xAB\x8D\x9E\x82ށB<br />
 &lt;data&gt; \x82\xAA\x90\xAE\x90\x94\x8C^\x82̏ꍇ\x82́A\x82\xBB\x82̒l\x82̉\xBA\x88ʃo\x83C\x83g(0-255)\x82\xF0 ASCII \x83R\x81[\x83h\x82Ƃ݂Ȃ\xB5\x81A\x82\xBB\x82̕\xB6\x8E\x9A\x82\xF0\x8F\x91\x82\xAB\x8D\x9E\x82ށB
 </p>
@@ -35,5 +38,10 @@
 filewrite fhandle '---------cut here---------'#13#10
 </pre>
 
+<pre class="macro-example">
+; NUL\x95\xB6\x8E\x9A(0x00)\x82\xF0\x8F\x91\x82\xAB\x8D\x9E\x82\xDE
+filewrite fhandle 0
+</pre>
+
 </body>
 </html>

Modified: trunk/doc/ja/html/macro/command/filewriteln.html
===================================================================
--- trunk/doc/ja/html/macro/command/filewriteln.html	2015-05-26 02:52:28 UTC (rev 5887)
+++ trunk/doc/ja/html/macro/command/filewriteln.html	2015-05-26 07:07:20 UTC (rev 5888)
@@ -24,7 +24,10 @@
 <h2>\x89\xF0\x90\xE0</h2>
 
 <p>
-\x83t\x83@\x83C\x83\x8B\x83n\x83\x93\x83h\x83\x8B &lt;file handle&gt; \x82Ŏw\x92肳\x82\xEA\x82\xE9\x83t\x83@\x83C\x83\x8B\x82ցA\x95\xB6\x8E\x9A\x97\xF1 &lt;data&gt; \x82Ɖ\xFC\x8Ds\x95\xB6\x8E\x9A (CR+LF) \x82\xF0\x8F\x91\x82\xAB\x8D\x9E\x82ށB<br />
+\x83t\x83@\x83C\x83\x8B\x83n\x83\x93\x83h\x83\x8B &lt;file handle&gt; \x82Ŏw\x92肳\x82\xEA\x82\xE9\x83t\x83@\x83C\x83\x8B\x82ցA&lt;data&gt; \x82Ɖ\xFC\x8Ds\x95\xB6\x8E\x9A (CR+LF) \x82\xF0\x8F\x91\x82\xAB\x8D\x9E\x82ށB
+</p>
+
+<p>
 &lt;data&gt; \x82\xAA\x95\xB6\x8E\x9A\x97\xF1\x8C^\x82̏ꍇ\x81A\x95\xB6\x8E\x9A\x97\xF1\x82\xF0\x8F\x91\x82\xAB\x8D\x9E\x82ށB<br />
 &lt;data&gt; \x82\xAA\x90\xAE\x90\x94\x8C^\x82̏ꍇ\x82́A\x82\xBB\x82̒l\x82̉\xBA\x88ʃo\x83C\x83g(0-255)\x82\xF0 ASCII \x83R\x81[\x83h\x82Ƃ݂Ȃ\xB5\x81A\x82\xBB\x82̕\xB6\x8E\x9A\x82\xF0\x8F\x91\x82\xAB\x8D\x9E\x82ށB
 </p>
@@ -35,5 +38,10 @@
 filewriteln fhandle '---------cut here---------'
 </pre>
 
+<pre class="macro-example">
+; NUL\x95\xB6\x8E\x9A(0x00)\x82Ɖ\xFC\x8Ds\x95\xB6\x8E\x9A(CR+LF)\x82\xF0\x8F\x91\x82\xAB\x8D\x9E\x82\xDE
+filewrite fhandle 0
+</pre>
+
 </body>
 </html>



Ttssh2-commit メーリングリストの案内
アーカイブの一覧に戻る