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 "Template:Jetty Options Row"

m
 
(14 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<!-- if defined but null, or if defined and NOT null -->
 
 
|-
 
|-
| {{#if: {{{*|}}} | X }}
+
! {{{1}}}
 +
| {{#if: {{{*|}}} | X | &nbsp; }}
 
| X <!-- All -->
 
| X <!-- All -->
| {{#if: {{{default}}} | def | undef }}
+
| {{#if: {{{default|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{Server|}}} | X }}
+
| {{#if: {{{Server|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{ext|}}} | X }}
+
| {{#if: {{{ext|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{resources|}}} | X }}
+
| {{#if: {{{resources|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{server|}}} | X }}
+
| {{#if: {{{server|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{xml|}}} | X }}
+
| {{#if: {{{xml|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{security|}}} | X }}
+
| {{#if: {{{security|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{servlet|}}} | X }}
+
| {{#if: {{{servlet|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{webapp|}}} | X }}
+
| {{#if: {{{webapp|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{deploy|}}} | X }}
+
| {{#if: {{{deploy|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{servlets|}}} | X }}
+
| {{#if: {{{servlets|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{rewrite|}}} | X }}
+
| {{#if: {{{rewrite|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{jmx|}}} | X }}
+
| {{#if: {{{jmx|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{ajp|}}} | X }}
+
| {{#if: {{{ajp|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{slf4j|}}} | X }}
+
| {{#if: {{{slf4j|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{jsp|}}} | X }}
+
| {{#if: {{{jsp|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{jsp-2.1|}}} | X }}
+
| {{#if: {{{jsp-2.1|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{plus|}}} | X }}
+
| {{#if: {{{plus|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{annotations|}}} | X }}
+
| {{#if: {{{annotations|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{client|}}} | X }}
+
| {{#if: {{{client|{{{*|}}}}}} | X | &nbsp; }}
| {{#if: {{{policy|}}} | X }}
+
| {{#if: {{{policy|{{{*|}}}}}} | X | &nbsp; }}
<noinclude>
+
| {{#if: {{{websocket|{{{*|}}}}}} | X | &nbsp; }}<noinclude>
  
Usage :
+
== Usage ==
 +
Represents one JAR or resource, and the [[Jetty/Reference/Start Options|start options]] which use this resource.
  
<nowiki> {{Jetty Modes Row | /lib/jarname-*.jar | mode1 | mode2 ... }} </nowiki>:  
+
; <nowiki> {{Jetty Options Row | /lib/jarname-*.jar | option1=1 | option2=1... }} </nowiki> : places an X on the option1 and option2 columns
 
+
; <nowiki> {{Jetty Options Row | /lib/jarname-*.jar | *=1... }} </nowiki> : places an X on all columns
{{Jetty Modes Row | /lib/jarname-*.jar | mode1 | mode2 ... }}
+
 
+
<nowiki> {{Jetty Modes Row | /lib/jarname-*.jar | default }}</nowiki>:
+
 
+
{{Jetty Modes Row | /lib/jarname-*.jar | default }}
+
 
+
<nowiki> {{Jetty Modes Row | /lib/jarname-*.jar | default=Y }}</nowiki>:  
+
 
+
{{Jetty Modes Row | /lib/jarname-*.jar | default=Y }}
+
  
 
[[Category: Jetty Template]]
 
[[Category: Jetty Template]]
 
</noinclude>
 
</noinclude>

Latest revision as of 18:35, 30 April 2012

|- ! {{{1}}} |   | X |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |  

Usage

Represents one JAR or resource, and the start options which use this resource.

{{Jetty Options Row | /lib/jarname-*.jar | option1=1 | option2=1... }}  
places an X on the option1 and option2 columns
{{Jetty Options Row | /lib/jarname-*.jar | *=1... }}  
places an X on all columns

Back to the top