summaryrefslogtreecommitdiff
path: root/plugins/xslt-debugger/src/META-INF/plugin.xml
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2013-01-08 11:11:20 -0800
committerJean-Baptiste Queru <jbq@google.com>2013-01-08 11:11:20 -0800
commitb56ea2a18f232d79481e778085fd64e8ae486fc3 (patch)
tree44e1f6eb4864a45033f865b74fe783e3d784dd6a /plugins/xslt-debugger/src/META-INF/plugin.xml
downloadidea-b56ea2a18f232d79481e778085fd64e8ae486fc3.tar.gz
Snapshot of commit d5ec1d5018ed24f1b4f32b1d09df6dbd7e2fc425
from branch master of git://git.jetbrains.org/idea/community.git
Diffstat (limited to 'plugins/xslt-debugger/src/META-INF/plugin.xml')
-rw-r--r--plugins/xslt-debugger/src/META-INF/plugin.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/plugins/xslt-debugger/src/META-INF/plugin.xml b/plugins/xslt-debugger/src/META-INF/plugin.xml
new file mode 100644
index 000000000000..2670f2b5e4bf
--- /dev/null
+++ b/plugins/xslt-debugger/src/META-INF/plugin.xml
@@ -0,0 +1,35 @@
+<idea-plugin version="2" url="http://www.jetbrains.net/confluence/display/CONTEST/XSLT-Debugger">
+ <name>XSLT-Debugger</name>
+ <id>XSLT-Debugger</id>
+
+ <description><![CDATA[
+ Interactive XSLT Debugger. Allows debugging of XSLT stylesheets in IntelliJ IDEA.
+ ]]></description>
+
+ <version>1.4</version>
+ <vendor email="sascha.weinreuter@cit.de">Sascha Weinreuter</vendor>
+ <idea-version since-build="96.1"/>
+
+ <depends>XPathView</depends>
+ <depends>com.intellij.modules.xml</depends>
+
+ <change-notes>
+ Xalan Support. To debug with Xalan instead of SAXON, a supported Xalan version (2.7.x) should be present in the
+ classpath or "-Dxslt.transformer.type=xalan" should be added as VM argument for the run configuration. Debugging
+ with SAXON can be forced by adding "-Dxslt.transformer.type=saxon".
+ </change-notes>
+
+ <extensions defaultExtensionNs="com.intellij">
+ <xdebugger.breakpointType implementation="org.intellij.plugins.xsltDebugger.XsltBreakpointType"/>
+
+ <programRunner implementation="org.intellij.plugins.xsltDebugger.XsltDebuggerRunner"/>
+ </extensions>
+
+ <extensions defaultExtensionNs="XPathView">
+ <xsltRunnerExtension implementation="org.intellij.plugins.xsltDebugger.XsltDebuggerExtension"/>
+ </extensions>
+
+ <!--
+ <helpset file="help.jar" path="/Help.hs"/>
+ -->
+</idea-plugin>