newLISP Fan Club

Forum => newLISP in the real world => Topic started by: johu on September 03, 2011, 03:56:24 AM

Title: about Japanese Manuals
Post by: johu on September 03, 2011, 03:56:24 AM
Hello, Lutz.



I updated the manual translated to Japanese.


  • newlisp_manual-10302

    CodePatterns-20110810

    guiserver_manual-144


There are in here (//https).

In newlisp_manual-10302, rev is 3.



And in guiserver.lsp (//http),


  • wioth → with

maybe.



Thanks,
Title: Re: about Japanese Manuals
Post by: Lutz on September 03, 2011, 01:37:45 PM
Thanks very much Joh,



all files are updated and I added a new link to the documentation page for this:



http://www.newlisp.org/guiserver-jp/







PS: is the correct spelling of your name Joh or Johu, I have seen both?
Title: Re: about Japanese Manuals
Post by: johu on September 04, 2011, 01:52:56 AM
Thanks, Lutz.



I used joh at first. But the place where could not use 3 characters' name for the registration was increased, I changed johu.

Therefore, I use johu recently. Joh is for old friends, maybe.



Then, both are correct. I don't care these.

And I registered johu in this forum, so it might be better?
Title: Re: about Japanese Manuals
Post by: johu on September 12, 2011, 05:46:57 AM
Hello, Lutz.



I updated the manual translated to Japanese for rev 7.



newlisp_manual-10302



There are in here (//https).



Thanks,
Title: Re: about Japanese Manuals
Post by: Lutz on September 12, 2011, 02:50:52 PM
Thanks Johu, the update is online:



http://www.newlisp.org/newlisp_manual-jp.html



There will be more changes/additions to the Users Manual and Code Patterns documents later this week for a stable maintenance release , 10.3.3 in a week or so. The changes will be published and announced on the forum, but  don't need to go online until the 10.3.3 release in later September.
Title: Re: about Japanese Manuals
Post by: johu on September 13, 2011, 02:31:21 AM
Thank you and I saw the release schedule.



And I have a suggestion in Code Patterns in newLISP.



The exsample of Scanning text (//http) uses http://newlisp.digidep.net/scripts/.



Its url consists of following:
Quote
      <a href="10x10.lsp">10x10.lsp</a>               29-Dec-2007 14:53  1.0K  newLisp Script

      <a href="3angle.lsp">3angle.lsp</a>              29-Dec-2007 14:53  2.5K  newLisp Script


So, exsample code might be changed by

; tokenize using replace with regular expressions

(set 'url  "http://newlisp.digidep.net/scripts/")
(set 'page (get-url url))

(replace {href="(.*lsp)"} page (first (push (append url $1) links)) 0)

and

(set 'links (find-all {href="(.*lsp)"} page (append url $1)))


Else using either other way or other url?
Title: Re: about Japanese Manuals
Post by: Lutz on September 13, 2011, 09:51:17 AM
Thanks Johu, I changed to a different version of the code. See also announcement here:



http://newlispfanclub.alh.net/forum/viewtopic.php?f=2&p=19555#p19555