-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
AlexJitianu
committed
Feb 21, 2020
1 parent
2fbbd12
commit 2e997ad
Showing
1 changed file
with
152 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,122 +1,152 @@ | ||
<xt:extensions xmlns:xt="http://www.oxygenxml.com/ns/extension" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.oxygenxml.com/ns/extension http://www.oxygenxml.com/ns/extension/extensions.xsd"> | ||
|
||
<xt:extension xmlns:xt="http://www.oxygenxml.com/ns/extension" | ||
id="com.oxygenxml.xspec.XSpecSupportPlugin"> | ||
<xt:location href="https://github.com/xspec/oXygen-XML-editor-xspec-support/releases/download/${project.version}/${project.build.finalName}-plugin.zip"/> | ||
<xt:version>${project.version}</xt:version> | ||
<xt:oxy_version>18.1+</xt:oxy_version> | ||
<xt:type>plugin</xt:type> | ||
<xt:author>Syncro Soft</xt:author> | ||
<xt:name>XSpec Helper view</xt:name> | ||
<xt:description><html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<title>XSpec Helper View</title> | ||
</head> | ||
<body> | ||
<div> | ||
<p>This add-on contributes an <b>XSpec Test Results</b> view that provides the ability to run XSpec test scenarios and view the results directly in Oxygen. To use the new view, after installation, open an XSpec file and click the <b>Run XSpec test scenarios</b> button on the toolbar.</p> | ||
<p style="color:red">This plugin also requires the <b>XSpec Framework</b>. Please install them both.</p> | ||
</div> | ||
<div> | ||
<h3>What's new in version 1.2.1</h3> | ||
<ol> | ||
<li>Fixed bug that didn't allow running XSpec scenarios that needed Saxon EE.</li> | ||
</ol> | ||
</div> | ||
<div> | ||
<h3>What's new in version 1.2.0</h3> | ||
<ol> | ||
<li>Comes bundled with XSpec version 1.2.0.</li> | ||
<li>Better handling of witespaces in when presenting the diff. <a href="https://github.com/xspec/oXygen-XML-editor-xspec-support/issues/29">#29</a></li> | ||
</ol> | ||
</div> | ||
<div> | ||
<h3>What's new in version 1.0.0</h3> | ||
<ol> | ||
<li>Comes bundled with XSpec version 1.0.0.</li> | ||
<li>The plugin can now execute Schematron tests.</li> | ||
<li>Activating an Oxygen dark theme will also reflect in the view.</li> | ||
<li>The possibility to rerun only the failed scenario.</li> | ||
</ol> | ||
</div> | ||
</body> | ||
</html> | ||
</xt:description> | ||
<xt:license><![CDATA[ | ||
MIT License | ||
Copyright (c) 2017 XSpec | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
]]></xt:license> | ||
</xt:extension> | ||
|
||
<xt:extension xmlns:xt="http://www.oxygenxml.com/ns/extension" | ||
id="com.oxygenxml.xspec.XSpecSupportFramework"> | ||
<xt:location href="https://github.com/xspec/oXygen-XML-editor-xspec-support/releases/download/${project.version}/${project.build.finalName}-framework.zip"/> | ||
<xt:version>${project.version}</xt:version> | ||
<xt:oxy_version>18.0+</xt:oxy_version> | ||
<xt:type>framework</xt:type> | ||
<xt:author>Alex Jitianu</xt:author> | ||
<xt:name>XSpec Framework (required by the XSpec Helper view plugin)</xt:name> | ||
<xt:description><html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<title>XSpec Helper View</title> | ||
</head> | ||
<body> | ||
<div> | ||
<p style="color:red">This framework is required for the <b>XSpec Helper view</b> plugin. Both add-ons must be installed.</p> | ||
<p>This add-on constributes a customized version of Oxygen's built-in XSpec framework. The <b>XSpec Helper view</b> add-on uses this framework for XSpec test scenarios.</p> | ||
</div> | ||
</body> | ||
</html> | ||
</xt:description> | ||
<xt:license><![CDATA[ | ||
MIT License | ||
Copyright (c) 2017 XSpec | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
]]></xt:license> | ||
</xt:extension> | ||
|
||
|
||
|
||
|
||
</xt:extensions> | ||
<xt:extensions xmlns:xt="http://www.oxygenxml.com/ns/extension" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.oxygenxml.com/ns/extension http://www.oxygenxml.com/ns/extension/extensions.xsd"> | ||
|
||
<xt:extension xmlns:xt="http://www.oxygenxml.com/ns/extension" | ||
id="com.oxygenxml.xspec.XSpecSupportPlugin"> | ||
<xt:location href="https://github.com/xspec/oXygen-XML-editor-xspec-support/releases/download/${project.version}/${project.build.finalName}-plugin.zip"/> | ||
<xt:version>${project.version}</xt:version> | ||
<xt:oxy_version>18.1+</xt:oxy_version> | ||
<xt:type>plugin</xt:type> | ||
<xt:author>Syncro Soft</xt:author> | ||
<xt:name>XSpec Helper view</xt:name> | ||
<xt:description><html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<title>XSpec Helper View</title> | ||
</head> | ||
<body> | ||
<div> | ||
<p>This add-on contributes an <b>XSpec Test Results</b> view that provides the ability to run XSpec test scenarios and view the results directly in Oxygen. To use the new view, after installation, open an XSpec file and click the <b>Run XSpec test scenarios</b> button on the toolbar.</p> | ||
<p style="color:red">This plugin also requires the <b>XSpec Framework</b>. Please install them both.</p> | ||
</div> | ||
|
||
<div> | ||
<h3>How to Use It</h3> | ||
|
||
<ol> | ||
<li>Inside Oxygen XML Editor/Developer, open an XSpec file.</li> | ||
<li>Click the <b>XSpec Run</b> button on the toolbar or use the <b>Run test scenario(s)</b> action from the | ||
editor contextual menu.</li> | ||
</ol> | ||
|
||
<p><b>Result:</b> An <b>XSpec Test Results</b> view will be opened.</p> | ||
|
||
<p><b>Tip:</b> At this point you can switch to the XSLT and use the <b>Run</b> actions in this view to execute the scenarios.</p> | ||
|
||
<h3>What you can do inside the <b>XSpec Test Results</b> view</h3> | ||
|
||
<ul> | ||
<li>For each test, there is a <b>Show</b> action that selects the coresponding test in the editor.</li> | ||
<li>For each scenario, there is a <b>Run</b> action that just runs that particular scenario.</li> | ||
<li>For a failed test, you can click on it to open the diff comparison between the expected and actual results.</li> | ||
</ul> | ||
</div> | ||
|
||
<div> | ||
<h3>What's new in version 1.5.0</h3> | ||
<ol> | ||
<li>Comes bundled with XSpec version 1.5.0.</li> | ||
<li>Fixed some classpath issues that made it crash in Oxygen version 22.0.</li> | ||
</ol> | ||
</div> | ||
<div> | ||
<h3>What's new in version 1.2.1</h3> | ||
<ol> | ||
<li>Fixed bug that didn't allow running XSpec scenarios that needed Saxon EE.</li> | ||
</ol> | ||
</div> | ||
<div> | ||
<h3>What's new in version 1.2.0</h3> | ||
<ol> | ||
<li>Comes bundled with XSpec version 1.2.0.</li> | ||
<li>Better handling of witespaces in when presenting the diff. <a href="https://github.com/xspec/oXygen-XML-editor-xspec-support/issues/29">#29</a></li> | ||
</ol> | ||
</div> | ||
<div> | ||
<h3>What's new in version 1.0.0</h3> | ||
<ol> | ||
<li>Comes bundled with XSpec version 1.0.0.</li> | ||
<li>The plugin can now execute Schematron tests.</li> | ||
<li>Activating an Oxygen dark theme will also reflect in the view.</li> | ||
<li>The possibility to rerun only the failed scenario.</li> | ||
</ol> | ||
</div> | ||
</body> | ||
</html> | ||
</xt:description> | ||
<xt:license><![CDATA[ | ||
MIT License | ||
Copyright (c) 2017 XSpec | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
]]></xt:license> | ||
</xt:extension> | ||
|
||
<xt:extension xmlns:xt="http://www.oxygenxml.com/ns/extension" | ||
id="com.oxygenxml.xspec.XSpecSupportFramework"> | ||
<xt:location href="https://github.com/xspec/oXygen-XML-editor-xspec-support/releases/download/${project.version}/${project.build.finalName}-framework.zip"/> | ||
<xt:version>${project.version}</xt:version> | ||
<xt:oxy_version>18.0+</xt:oxy_version> | ||
<xt:type>framework</xt:type> | ||
<xt:author>Alex Jitianu</xt:author> | ||
<xt:name>XSpec Framework (required by the XSpec Helper view plugin)</xt:name> | ||
<xt:description><html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<title>XSpec Helper View</title> | ||
</head> | ||
<body> | ||
<div> | ||
<p style="color:red">This framework is required for the <b>XSpec Helper view</b> plugin. Both add-ons must be installed.</p> | ||
<p>This add-on constributes a customized version of Oxygen's built-in XSpec framework. The <b>XSpec Helper view</b> add-on uses this framework for XSpec test scenarios.</p> | ||
</div> | ||
</body> | ||
</html> | ||
</xt:description> | ||
<xt:license><![CDATA[ | ||
MIT License | ||
Copyright (c) 2017 XSpec | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
]]></xt:license> | ||
</xt:extension> | ||
|
||
|
||
|
||
|
||
</xt:extensions> |