I'm using Ubuntu
I'm working with xsl files that have import or include statements like this
<xsl:import href="/xsl/content/contentsecondary.xsl" />
Eclipse can't find this file because the /xsl/ isn't actually at the the root of the project, but is seen from the root of the web server because of this line in my etc/xml/catalog file:
<rewriteSystem systemIdStartString="/xsl/" rewritePrefix="file:///home/someguy/workspace/someproject/include/xsl/"/>
So in order for eclipse's built in xsl validation to work, it needs to know the real location of /xsl/. Does anyone have any idea how to do this?
For now I've turned off error reporting on missing include files but still get errors on call-template calls to templates it can't find. I've never experienced our templates fully integrated with eclipses xsl features. I think it would provide some really great error checking/auto-completion that I'm missing out on.
Any help would be appreciated. Thanks.