Page 1 of 1

jEdit syntax generator (v0.53)

Posted: Thu Nov 27, 2008 3:33 pm
by m35
The jEdit syntax generator has been thoroughly updated.

Because the syntax is generated, it can automatically add new symbols as newLISP is updated, and it will be perfectly tailored to your newLISP installation (Mac, Linux, Win, OS/2; ASCII, UTF8).

http://www.newlisp.org/index.cgi?Code_Contributions

Image

v0.50
* Upgraded to be properly compatible with jEdit 4.3.
* Some deprecated functions for newLISP v10 are now highlighted as INVALID.
* Full newlispdoc 1.8 syntax has also been added

Posted: Mon Dec 01, 2008 12:00 am
by m i c h a e l
m35,

JEdit complained about not allowing an empty BEGIN tag when parsing the resulting xml file, and it looks like there is an extra entry for Literal2 (lines 218-223) in your generator script that is causing the problem. Removing those lines (in the xml file) fixes the problem.

m i c h a e l

Posted: Mon Dec 01, 2008 12:47 am
by Lutz
newlisp9996-OSX-utf8.xml generated with 9.9.96 and the utility in the link works fine for me on jEdit 4.2 final, when loading cgi.lsp and crypto.lsp. Did you update .jedit/modes/catalog?


I like the colors, but prefer perhaps MacVim because I like TABs

Posted: Mon Dec 01, 2008 2:53 am
by m35
Haha you're absolutely right Michael.
newlispdoc devours the original code

Code: Select all

|||			<!-- NO_ESCAPE attribute removed for jEdit 4.3 -->
|||			<SPAN TYPE="LITERAL2">
||||			<BEGIN><?[ (string "[text" "]") ]></BEGIN>
||||			<END><?[ (string "[/text" "]") ]></END>
|||			</SPAN>
and the html is displayed like this.

Code: Select all

|||			<!-- NO_ESCAPE attribute removed for jEdit 4.3 -->
|||			<SPAN TYPE="LITERAL2">
||||			<BEGIN></BEGIN>
||||			<END></END>
|||			</SPAN>
The text is still there in the html, but isn't displayed in the browser. This also occurs for the <?xml version="1.0"?> at the top of the syntax template string.

Lutz, I'm thinking just link directly to the .lsp file and not use newlispdoc?

Posted: Mon Dec 01, 2008 1:22 pm
by Lutz
newlispdoc now handles <?...> tags correctly, an updated source listing has been posted for jEdit:

http://www.newlisp.org/code/jedit-newli ... sp.sh.html

and

http://www.newlisp.org/code/jedit-newli ... h.src.html

and the updated newlispdoc:

http://www.newlisp.org/syntax.cgi?code/newlispdoc.txt

and syntax.cgi

http://www.newlisp.org/syntax.cgi?code/syntax-cgi.txt

ps: newlispdoc has syntax.cgi built-in to pregenerate html source files. syntax.cgi is for on-the-fly highlighting.

Posted: Mon Dec 01, 2008 4:41 pm
by cormullion
One day Lutz a useful enhancement you could add to newlispdoc would be to allow the use of external formatting modules in place of syntax.cgi. I'm running a hacked newlispdoc that calls my own formatter (I prefer CSS styling, for example...)

Posted: Mon Dec 15, 2008 11:01 pm
by m35
v0.51
- simplified newlispdoc highlighting
- added platform specific symbols

v0.52
- added missing '@link'
- fixed digit regex
- added generator version note to generated file

Note that a recent Java update for Mac OS X has broken jEdit v4.3pre*. There is a fairly simple workaround posted here.

Posted: Mon Dec 15, 2008 11:30 pm
by Lutz

Posted: Sun Jan 04, 2009 9:47 am
by m35
v0.53
- Additional fix to digit regex