Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Writing Jelly views with IDE assistance"

(New page: == Using schemas for Jelly tags == XML schemas for tag libraries defined in Jelly, stapler, and Hudson are available. Most modern IDEs and other XML editors can use them to provide auto-c...)
 
(Using schemas for Jelly tags)
 
Line 3: Line 3:
 
XML schemas for tag libraries defined in Jelly, stapler, and Hudson are available. Most modern IDEs and other XML editors can use them to provide auto-completion, which improves your productivity.
 
XML schemas for tag libraries defined in Jelly, stapler, and Hudson are available. Most modern IDEs and other XML editors can use them to provide auto-completion, which improves your productivity.
  
    For Jelly core, define, format, util, and other tag libraries maintained in Apache, schemas are available in https://maven-jellydoc-plugin.dev.java.net/jelly-schemas.zip. These schemas rarely change.
+
*For Jelly core, define, format, util, and other tag libraries maintained in Apache, schemas are available in https://maven-jellydoc-plugin.dev.java.net/jelly-schemas.zip. These schemas rarely change.
    For stapler, schema is available in https://stapler.dev.java.net/taglib.xsd. New tags are occasionally added here.
+
*For stapler, schema is available in https://stapler.dev.java.net/taglib.xsd. New tags are occasionally added here.
    For taglibs defined in Hudson, schemas are still TBD.
+
*For taglibs defined in Hudson, schemas are still TBD.
  
 
=== Tool-specific configuration ===
 
=== Tool-specific configuration ===

Latest revision as of 19:04, 17 July 2013

Using schemas for Jelly tags

XML schemas for tag libraries defined in Jelly, stapler, and Hudson are available. Most modern IDEs and other XML editors can use them to provide auto-completion, which improves your productivity.

Tool-specific configuration

IntelliJ IDEA

See http://www.jetbrains.com/idea/webhelp/referencing-dtd-or-schema.html. Note that when you refer to local files, IntelliJ doesn't make copies, so you can update schemas just by overwriting those files. This is convenient for handling schemas that change frequently. NetBeans

NetBeans 6.7 (starting with the Beta) should offer completion on these schemas automatically. Stapler plugin for IntelliJ IDEA

We have a plugin for IntelliJ IDEA that assists Jelly file authoring.

Back to the top