Invalid Xpath parameter in dojo library

I implemented a demo web project in java using dojo as the goal of the user interface. The error "xpath is invalid" constantly occurs, and it also takes quite a lot of time to develop an IDE (eclipse) to create a project. I tried to solve this problem, but the error remains the same. I will be grateful for any suggestion that could solve my problem. Also, why does the IDE take so long to create it (I think it's because of the dojo library). I am using version 1.9 dojo

<xsl:apply-templates select="&SupportedElements;"> //Error in this line"Xpath invalid token" 
+4
source share
1 answer

This is a known bug.

https://bugs.eclipse.org/bugs/show_bug.cgi?id=328051

In eclipse, exclude dojox / gfx / resources / svg2gfx.xsl from the XSL check.

Window → Settings; Validation → XSL Validator → Settings; Add exception group, Add fule, select file

+5
source

Source: https://habr.com/ru/post/1497380/


All Articles