jEdit syntax generator (v0.53)

Started by m35, November 27, 2008, 07:33:54 AM

Previous topic - Next topic

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">http://www.newlisp.org/index.cgi?Code_Contributions



http://img.photobucket.com/albums/v202/fishwater/jedit-newlisp.png">



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

m i c h a e l

#1
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

Lutz

#2
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

m35

#3
Haha you're absolutely right Michael.

newlispdoc devours the original code


||| <!-- 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.


||| <!-- 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?

Lutz

#4
newlispdoc now handles <?...> tags correctly, an updated source listing has been posted for jEdit:



http://www.newlisp.org/code/jedit-newlisp-mode-generator.lsp.sh.html">http://www.newlisp.org/code/jedit-newli ... sp.sh.html">http://www.newlisp.org/code/jedit-newlisp-mode-generator.lsp.sh.html



and



http://www.newlisp.org/code/jedit-newlisp-mode-generator.lsp.sh.src.html">http://www.newlisp.org/code/jedit-newli ... h.src.html">http://www.newlisp.org/code/jedit-newlisp-mode-generator.lsp.sh.src.html



and the updated newlispdoc:



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



and syntax.cgi



http://www.newlisp.org/syntax.cgi?code/syntax-cgi.txt">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.

cormullion

#5
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...)

m35

#6
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 http://www.nabble.com/--jedit-Bugs-2127295---Mac-OSX-Java-update-on-2008-09-24-breaks-jEdit-td19677552.html">here.

Lutz

#7
m35's improved number regex has also been added to:



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



and:



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

m35

#8
v0.53

- Additional fix to digit regex