about Japanese Manuals

Q&A's, tips, howto's
Locked
johu
Posts: 143
Joined: Mon Feb 08, 2010 8:47 am

about Japanese Manuals

Post by johu »

Hello, Lutz.

I updated the manual translated to Japanese.
  • newlisp_manual-10302
    CodePatterns-20110810
    guiserver_manual-144
There are in here.
In newlisp_manual-10302, rev is 3.

And in guiserver.lsp,
  • wioth → with
maybe.

Thanks,

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Re: about Japanese Manuals

Post by Lutz »

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?

johu
Posts: 143
Joined: Mon Feb 08, 2010 8:47 am

Re: about Japanese Manuals

Post by johu »

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?

johu
Posts: 143
Joined: Mon Feb 08, 2010 8:47 am

Re: about Japanese Manuals

Post by johu »

Hello, Lutz.

I updated the manual translated to Japanese for rev 7.

newlisp_manual-10302

There are in here.

Thanks,

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Re: about Japanese Manuals

Post by Lutz »

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.

johu
Posts: 143
Joined: Mon Feb 08, 2010 8:47 am

Re: about Japanese Manuals

Post by johu »

Thank you and I saw the release schedule.

And I have a suggestion in Code Patterns in newLISP.

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

Its url consists of following:
<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

Code: Select all

; 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

Code: Select all

(set 'links (find-all {href="(.*lsp)"} page (append url $1)))
Else using either other way or other url?

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Re: about Japanese Manuals

Post by Lutz »

Thanks Johu, I changed to a different version of the code. See also announcement here:

http://newlispfanclub.alh.net/forum/vie ... 555#p19555

Locked