Parsing XSLT offline on the client side

2019-02-20 15:02发布

Are there any offline (without having to submit code through a webserver) parsers for XSLT?

标签: xslt
3条回答
迷人小祖宗
2楼-- · 2019-02-20 15:33

I use JEdit with the XSLT plugin. It has a "three-way mode" which is awesome, since you see the input, the xslt and the output at the same time. It has some autocompletion capabilities too.

查看更多
神经病院院长
3楼-- · 2019-02-20 15:50

Kernow gets you started with Saxon.

查看更多
干净又极端
4楼-- · 2019-02-20 15:53

XSLT IDEs (Interactive Development Environments):

  • XSelerator (the one I've been using for 6-7 years). Free, has a Debugger for MSXML, has intellisense for both XSLT 1.0 and XSLT 2.0. In addition has some dynamic intellisense. The debugger has breakpoints, data breakpoints,visualizes temporary trees, variables, test conditions, current output, ..., etc.
  • VS2008 -- a good XML Editor + XSLT Debugger. Good static intellisence. Match patterns are statically checked. Breakpoints, data breakpoints, visualization of variables and the current output.
  • oXygen
  • XML-SPY (Altova)
  • Stylus Studio

XPath tools:

  • The XPath Visualizer -- A popular tool for learning XPath by playing with XPath expressions. Free and open source. Allows any XPath expression to be evaluated against a given XML document and displayes the results hi-lighted in the xml document (if they are node(s)) or in a separate box (if the results are atomic values). Allows xsl:variable-s to be defined and then used in XPath expressions. Allows xsl:key-s to be defined and then referenced by key() functions within XPath expressions.

EDIT: The XPath Visualizer now has a new, safer home, due to the kindness of Lars Huttar.

查看更多
登录 后发表回答