JBoss Tools SVN: r21315 - in trunk/jsf: plugins/org.jboss.tools.jsf.vpe.jsf/src/org/jboss/tools/jsf/vpe/jsf/template and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: yzhishko
Date: 2010-04-07 11:22:49 -0400 (Wed, 07 Apr 2010)
New Revision: 21315
Added:
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/src/org/jboss/tools/jsf/vpe/jsf/template/JsfFacetInDataCell.java
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/src/org/jboss/tools/jsf/vpe/jsf/template/JsfFacetInDataForm.java
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jbpm/templates/vpe-templates-jbpm.xml
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/templates/vpe-templates-jsf.xml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/resources/jBPMTestProject/WebContent/pages/components/taskForm.xhtml.xml
Log:
https://jira.jboss.org/jira/browse/JBIDE-6114 - fix schema template
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jbpm/templates/vpe-templates-jbpm.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jbpm/templates/vpe-templates-jbpm.xml 2010-04-07 15:17:29 UTC (rev 21314)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jbpm/templates/vpe-templates-jbpm.xml 2010-04-07 15:22:49 UTC (rev 21315)
@@ -298,6 +298,7 @@
<vpe:template children="yes" modify="no"
class="org.jboss.tools.jsf.vpe.jbpm.template.JBPMDataCell">
<vpe:dnd>
+ <vpe:drag start-enable="no" />
<vpe:drop container="yes" />
</vpe:dnd>
</vpe:template>
@@ -305,10 +306,12 @@
<vpe:tag name="jbpm:dataform" case-sensitive="yes">
<vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.jbpm.template.JBPMDataForm" />
- <vpe:dnd>
- <vpe:drop container="yes" />
- </vpe:dnd>
+ class="org.jboss.tools.jsf.vpe.jbpm.template.JBPMDataForm">
+ <vpe:dnd>
+ <vpe:drag start-enable="no" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
+ </vpe:template>
</vpe:tag>
</vpe:templates>
\ No newline at end of file
Added: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/src/org/jboss/tools/jsf/vpe/jsf/template/JsfFacetInDataCell.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/src/org/jboss/tools/jsf/vpe/jsf/template/JsfFacetInDataCell.java (rev 0)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/src/org/jboss/tools/jsf/vpe/jsf/template/JsfFacetInDataCell.java 2010-04-07 15:22:49 UTC (rev 21315)
@@ -0,0 +1,37 @@
+package org.jboss.tools.jsf.vpe.jsf.template;
+
+import org.jboss.tools.vpe.editor.context.VpePageContext;
+import org.jboss.tools.vpe.editor.template.VpeAbstractTemplate;
+import org.jboss.tools.vpe.editor.template.VpeCreationData;
+import org.jboss.tools.vpe.editor.util.HTML;
+import org.mozilla.interfaces.nsIDOMDocument;
+import org.mozilla.interfaces.nsIDOMElement;
+import org.w3c.dom.Node;
+
+public class JsfFacetInDataCell extends VpeAbstractTemplate{
+
+ public VpeCreationData create(VpePageContext pageContext, Node sourceNode,
+ nsIDOMDocument visualDocument) {
+ nsIDOMElement visualElement = visualDocument.createElement(HTML.TAG_TH);
+ visualElement.setAttribute(HTML.ATTR_STYLE, computeStyleValue());
+ visualElement.setAttribute(HTML.ATTR_SCOPE, "colgroup"); //$NON-NLS-1$
+ visualElement.setAttribute("vpe-pseudo-type", "vpe-jbpm-cell-header"); //$NON-NLS-1$ //$NON-NLS-2$
+ return new VpeCreationData(visualElement);
+ }
+
+ private String computeStyleValue() {
+ StringBuilder builder = new StringBuilder(""); //$NON-NLS-1$
+ builder.append("background:none repeat scroll 0 0 #444444;"); //$NON-NLS-1$
+ builder.append("border-bottom:1px solid #000000;"); //$NON-NLS-1$
+ builder.append("border-collapse:collapse;"); //$NON-NLS-1$
+ builder.append("color:#FFFFFF;"); //$NON-NLS-1$
+ builder.append("font-size:11px;"); //$NON-NLS-1$
+ builder.append("text-align:left;"); //$NON-NLS-1$
+ builder.append("text-decoration:none;"); //$NON-NLS-1$
+ builder.append("white-space:nowrap;"); //$NON-NLS-1$
+ builder.append("width:130px;"); //$NON-NLS-1$
+ builder.append("padding:3px 5px"); //$NON-NLS-1$
+ return builder.toString();
+ }
+
+}
Added: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/src/org/jboss/tools/jsf/vpe/jsf/template/JsfFacetInDataForm.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/src/org/jboss/tools/jsf/vpe/jsf/template/JsfFacetInDataForm.java (rev 0)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/src/org/jboss/tools/jsf/vpe/jsf/template/JsfFacetInDataForm.java 2010-04-07 15:22:49 UTC (rev 21315)
@@ -0,0 +1,32 @@
+package org.jboss.tools.jsf.vpe.jsf.template;
+
+import org.jboss.tools.vpe.editor.context.VpePageContext;
+import org.jboss.tools.vpe.editor.template.VpeAbstractTemplate;
+import org.jboss.tools.vpe.editor.template.VpeCreationData;
+import org.jboss.tools.vpe.editor.util.HTML;
+import org.mozilla.interfaces.nsIDOMDocument;
+import org.mozilla.interfaces.nsIDOMElement;
+import org.w3c.dom.Node;
+
+public class JsfFacetInDataForm extends VpeAbstractTemplate {
+
+ public VpeCreationData create(VpePageContext pageContext, Node sourceNode,
+ nsIDOMDocument visualDocument) {
+ nsIDOMElement visualElement = visualDocument.createElement(HTML.TAG_TH);
+ visualElement.setAttribute(HTML.ATTR_STYLE, computeStyleValue());
+ visualElement.setAttribute(HTML.ATTR_COLSPAN, "2"); //$NON-NLS-1$
+ visualElement.setAttribute("vpe-pseudo-type", "vpe-jbpm-form-header"); //$NON-NLS-1$ //$NON-NLS-2$
+ return new VpeCreationData(visualElement);
+ }
+
+ private String computeStyleValue() {
+ StringBuilder builder = new StringBuilder(""); //$NON-NLS-1$
+ builder.append("background-color:#990000;"); //$NON-NLS-1$
+ builder.append("border-bottom:1px solid #000000;"); //$NON-NLS-1$
+ builder.append("color:#FFFF99;"); //$NON-NLS-1$
+ builder.append("font-weight:bold;"); //$NON-NLS-1$
+ builder.append("text-align:left"); //$NON-NLS-1$
+ return builder.toString();
+ }
+
+}
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/templates/vpe-templates-jsf.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/templates/vpe-templates-jsf.xml 2010-04-07 15:17:29 UTC (rev 21314)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/templates/vpe-templates-jsf.xml 2010-04-07 15:22:49 UTC (rev 21315)
@@ -2,9 +2,12 @@
<vpe:templates xmlns:vpe="http://org.jboss.org/tools/vpe/template"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <vpe:template-taglib uri="http://java.sun.com/jsf/html" prefix="h" />
- <vpe:template-taglib uri="http://java.sun.com/jsf/core" prefix="f" />
- <vpe:template-taglib uri="http://java.sun.com/jsf/composite" prefix="composite" />
+ <vpe:template-taglib uri="http://java.sun.com/jsf/html"
+ prefix="h" />
+ <vpe:template-taglib uri="http://java.sun.com/jsf/core"
+ prefix="f" />
+ <vpe:template-taglib uri="http://java.sun.com/jsf/composite"
+ prefix="composite" />
<vpe:tag name="f:loadBundle" case-sensitive="yes">
<vpe:template children="no" modify="no">
@@ -13,7 +16,7 @@
</vpe:tag>
<vpe:tag name="f:verbatim" case-sensitive="yes">
- <vpe:if test="(@escape='true')">
+ <vpe:if test="(@escape='true')">
<vpe:template children="yes" modify="yes"
class="org.jboss.tools.jsf.vpe.jsf.template.JsfVerbatim">
<vpe:dnd>
@@ -23,7 +26,7 @@
</vpe:template>
</vpe:if>
<vpe:template children="yes" modify="yes">
- <span title="{tagstring()}" class="vpe-text"/>
+ <span title="{tagstring()}" class="vpe-text" />
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="yes" />
@@ -32,10 +35,13 @@
</vpe:tag>
<vpe:tag name="h:inputText" case-sensitive="yes">
- <vpe:template children="no" modify="no" class="org.jboss.tools.jsf.vpe.jsf.template.JsfInputTextTemplate">
- <!-- <input type="text" value="{jsfvalue(@value)}"
- class="{@styleClass}" style="{@style}" title="{tagstring()}"
- size="{@size}" dir="{@dir}" /> -->
+ <vpe:template children="no" modify="no"
+ class="org.jboss.tools.jsf.vpe.jsf.template.JsfInputTextTemplate">
+ <!--
+ <input type="text" value="{jsfvalue(@value)}" class="{@styleClass}"
+ style="{@style}" title="{tagstring()}" size="{@size}" dir="{@dir}"
+ />
+ -->
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
@@ -58,11 +64,13 @@
</vpe:tag>
<vpe:tag name="h:inputTextarea" case-sensitive="yes">
- <vpe:template children="no" modify="no" class="org.jboss.tools.jsf.vpe.jsf.template.JsfInputTextAreaTemplate">
- <!-- <textarea class="{@styleClass}" style="{@style}"
- rows="{@rows}" cols="{@cols}" title="{tagstring()}" dir="{@dir}">
- <vpe:value expr="{jsfvalue(@value)}" />
- </textarea>-->
+ <vpe:template children="no" modify="no"
+ class="org.jboss.tools.jsf.vpe.jsf.template.JsfInputTextAreaTemplate">
+ <!--
+ <textarea class="{@styleClass}" style="{@style}" rows="{@rows}"
+ cols="{@cols}" title="{tagstring()}" dir="{@dir}"> <vpe:value
+ expr="{jsfvalue(@value)}" /> </textarea>
+ -->
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
@@ -77,9 +85,8 @@
<vpe:tag name="h:inputSecret" case-sensitive="yes">
<vpe:template children="no" modify="no">
- <input type="password" value="{jsfvalue(@value)}"
- class="{@styleClass}" style="{@style}" title="{tagstring()}"
- size="{@size}" dir="{@dir}" />
+ <input type="password" value="{jsfvalue(@value)}" class="{@styleClass}"
+ style="{@style}" title="{tagstring()}" size="{@size}" dir="{@dir}" />
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
@@ -102,7 +109,7 @@
</vpe:tag>
<vpe:tag name="h:inputHidden" case-sensitive="yes">
- <vpe:template children="no" modify="no" >
+ <vpe:template children="no" modify="no">
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="yes">
@@ -121,7 +128,7 @@
<vpe:tag name="h:outputText" case-sensitive="yes">
<vpe:if test="hasinparents('rich:progressBar')">
<vpe:template children="yes" modify="no">
- <span style="display:none;"/>
+ <span style="display:none;" />
</vpe:template>
</vpe:if>
<vpe:template children="yes" modify="no"
@@ -157,8 +164,8 @@
<vpe:if test="attrpresent('name')">
<vpe:template children="no" modify="yes">
<img src="{href(jsf2resource(@library,@name))}" width="{@width}"
- height="{@height}" class="{@styleClass}" style="{@style}"
- title="{tagstring()}" alt="{jsfvalue(@alt)}"/>
+ height="{@height}" class="{@styleClass}" style="{@style}" title="{tagstring()}"
+ alt="{jsfvalue(@alt)}" />
<vpe:dnd>
<vpe:drag start-enable="yes" />
</vpe:dnd>
@@ -170,9 +177,8 @@
</vpe:if>
<vpe:if test="attrpresent('value')">
<vpe:template children="no" modify="yes">
- <img src="{src(jsfvalue(@value))}" width="{@width}"
- height="{@height}" class="{@styleClass}" style="{@style}"
- title="{tagstring()}" alt="{jsfvalue(@alt)}"/>
+ <img src="{src(jsfvalue(@value))}" width="{@width}" height="{@height}"
+ class="{@styleClass}" style="{@style}" title="{tagstring()}" alt="{jsfvalue(@alt)}" />
<vpe:dnd>
<vpe:drag start-enable="yes" />
</vpe:dnd>
@@ -183,9 +189,8 @@
</vpe:template>
</vpe:if>
<vpe:template children="no" modify="yes">
- <img src="{src(jsfvalue(@url))}" width="{@width}"
- height="{@height}" class="{@styleClass}" style="{@style}"
- title="{tagstring()}" alt="{jsfvalue(@alt)}"/>
+ <img src="{src(jsfvalue(@url))}" width="{@width}" height="{@height}"
+ class="{@styleClass}" style="{@style}" title="{tagstring()}" alt="{jsfvalue(@alt)}" />
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
@@ -194,17 +199,18 @@
</vpe:tag>
<vpe:tag name="h:commandButton" case-sensitive="yes">
- <!-- This is a very big if-statement.
- Its goal is to add support of 'disabled property'
- DO NOT FORGET TO EDIT 'ELSE' PART IN FUTURE MODIFICATIONS -->
+ <!--
+ This is a very big if-statement. Its goal is to add support of
+ 'disabled property' DO NOT FORGET TO EDIT 'ELSE' PART IN FUTURE
+ MODIFICATIONS
+ -->
<vpe:if test="(@disabled='true')">
<vpe:if test="not(attrpresent('image'))">
<vpe:if test="(@type='')">
<vpe:template children="no" modify="no">
<input type="button" value="{iif(@value='',' ',jsfvalue(@value))}"
- class="{@styleClass}" style="{@style}"
- title="{tagstring()}" dir="{@dir}"
- disabled='disabled'/>
+ class="{@styleClass}" style="{@style}" title="{tagstring()}" dir="{@dir}"
+ disabled='disabled' />
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
@@ -219,9 +225,8 @@
<vpe:if test="not(@type='')">
<vpe:template children="no" modify="no">
<input type="{@type}" value="{iif(@value='',' ',jsfvalue(@value))}"
- class="{@styleClass}" style="{@style}"
- title="{tagstring()}" dir="{@dir}"
- disabled='disabled'/>
+ class="{@styleClass}" style="{@style}" title="{tagstring()}" dir="{@dir}"
+ disabled='disabled' />
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
@@ -236,9 +241,8 @@
</vpe:if>
<vpe:if test="attrpresent('image')">
<vpe:template children="no" modify="no">
- <input type="image" src="{src(@image)}"
- class="{@styleClass}" style="{@style}" title="{tagstring()}"
- disabled='disabled'/>
+ <input type="image" src="{src(@image)}" class="{@styleClass}"
+ style="{@style}" title="{tagstring()}" disabled='disabled' />
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
@@ -249,58 +253,57 @@
</vpe:if>
</vpe:if>
<!--else-->
- <vpe:if test="not(attrpresent('image'))">
- <vpe:if test="(@type='')">
- <vpe:template children="no" modify="no">
- <input type="button" value="{iif(@value='',' ',jsfvalue(@value))}"
- class="{@styleClass}" style="{@style}"
- title="{tagstring()}" dir="{@dir}"/>
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize>
- <vpe:dnd>
- <vpe:drag start-enable="yes" />
- </vpe:dnd>
- <vpe:textFormatting use-default-formats="yes">
- </vpe:textFormatting>
- </vpe:template>
- </vpe:if>
- <vpe:if test="not(@type='')">
- <vpe:template children="no" modify="no">
- <input type="{@type}" value="{iif(@value='',' ',jsfvalue(@value))}"
- class="{@styleClass}" style="{@style}"
- title="{tagstring()}" dir="{@dir}"/>
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize>
- <vpe:dnd>
- <vpe:drag start-enable="yes" />
- </vpe:dnd>
- <vpe:textFormatting use-default-formats="yes">
- </vpe:textFormatting>
- </vpe:template>
- </vpe:if>
+ <vpe:if test="not(attrpresent('image'))">
+ <vpe:if test="(@type='')">
+ <vpe:template children="no" modify="no">
+ <input type="button" value="{iif(@value='',' ',jsfvalue(@value))}"
+ class="{@styleClass}" style="{@style}" title="{tagstring()}" dir="{@dir}" />
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ </vpe:dnd>
+ <vpe:textFormatting use-default-formats="yes">
+ </vpe:textFormatting>
+ </vpe:template>
</vpe:if>
- <vpe:if test="attrpresent('image')">
+ <vpe:if test="not(@type='')">
<vpe:template children="no" modify="no">
- <input type="image" src="{src(@image)}"
- class="{@styleClass}" style="{@style}" title="{tagstring()}" />
+ <input type="{@type}" value="{iif(@value='',' ',jsfvalue(@value))}"
+ class="{@styleClass}" style="{@style}" title="{tagstring()}" dir="{@dir}" />
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ </vpe:dnd>
<vpe:textFormatting use-default-formats="yes">
</vpe:textFormatting>
</vpe:template>
</vpe:if>
+ </vpe:if>
+ <vpe:if test="attrpresent('image')">
+ <vpe:template children="no" modify="no">
+ <input type="image" src="{src(@image)}" class="{@styleClass}"
+ style="{@style}" title="{tagstring()}" />
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
+ <vpe:textFormatting use-default-formats="yes">
+ </vpe:textFormatting>
+ </vpe:template>
+ </vpe:if>
<!--end-of-else-->
</vpe:tag>
<!-- Проблема с вложенным параметром (31 of 4) -->
<vpe:tag name="h:commandLink" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.jsf.template.JsfCommandLinkTemplate">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.jsf.template.JsfCommandLinkTemplate">
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="yes">
@@ -334,31 +337,28 @@
<vpe:tag name="h:outputLink" case-sensitive="yes">
<vpe:if test="(@disabled='true')">
<vpe:template children="yes" modify="yes">
- <span class="{@styleClass}" style="{@style}"
- dir="{@dir}">
+ <span class="{@styleClass}" style="{@style}" dir="{@dir}">
</span>
<vpe:textFormatting use-default-formats="yes">
- <vpe:format type="UnderlineFormat"
- setDefault="true">
+ <vpe:format type="UnderlineFormat" setDefault="true">
<vpe:formatAttribute type="style" />
</vpe:format>
</vpe:textFormatting>
</vpe:template>
</vpe:if>
<vpe:if test="tld_version('min=1.2')">
- <vpe:template children="yes" modify="yes">
- <vpe:a class="{@styleClass}"
- style="{@style}"
- dir="{@dir}"
- title="{tagstring()}"/>
- <vpe:textFormatting use-default-formats="yes">
- <vpe:format type="UnderlineFormat" setDefault="true">
- <vpe:formatAttribute type="style" />
- </vpe:format>
- </vpe:textFormatting>
- </vpe:template>
+ <vpe:template children="yes" modify="yes">
+ <vpe:a class="{@styleClass}" style="{@style}" dir="{@dir}"
+ title="{tagstring()}" />
+ <vpe:textFormatting use-default-formats="yes">
+ <vpe:format type="UnderlineFormat" setDefault="true">
+ <vpe:formatAttribute type="style" />
+ </vpe:format>
+ </vpe:textFormatting>
+ </vpe:template>
</vpe:if>
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.jsf.template.JsfOutputLinkTemplate">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.jsf.template.JsfOutputLinkTemplate">
<vpe:textFormatting use-default-formats="yes">
<vpe:format type="UnderlineFormat" setDefault="true">
<vpe:formatAttribute type="style" />
@@ -384,9 +384,8 @@
<vpe:tag name="h:selectBooleanCheckbox" case-sensitive="yes">
<vpe:if test="@disabled='on'"><!-- Gavr --><!-- added x: 15.02.05 -->
<vpe:template children="no" modify="no">
- <input type="checkbox" disabled="on" checked="{@value}"
- class="{@styleClass}" style="{@style}" border="{@border}"
- title="{tagstring()}" />
+ <input type="checkbox" disabled="on" checked="{@value}" class="{@styleClass}"
+ style="{@style}" border="{@border}" title="{tagstring()}" />
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="yes">
@@ -397,15 +396,15 @@
</vpe:template>
</vpe:if>
<vpe:template children="no" modify="no">
- <input type="checkbox" checked="{@value}"
- class="{@styleClass}" style="{@style}" border="{@border}"
- title="{tagstring()}" />
+ <input type="checkbox" checked="{@value}" class="{@styleClass}"
+ style="{@style}" border="{@border}" title="{tagstring()}" />
</vpe:template>
</vpe:tag>
<!--
Проблема с вложенными f:selectItem (42 of 4) и f:selectItems (50 of 4)
- Возможна проблема с нечувствительностью к регистру lineDirection/pageDirection (44 of 4)
+ Возможна проблема с нечувствительностью к регистру
+ lineDirection/pageDirection (44 of 4)
-->
<vpe:tag name="h:selectManyCheckbox" case-sensitive="yes">
<vpe:template children="yes" modify="yes"
@@ -507,8 +506,8 @@
<vpe:tag name="h:selectManyMenu" case-sensitive="yes">
<vpe:template children="yes" modify="yes">
- <select style="{@style}" multiple="multiple"
- class="{@styleClass}" title="{tagstring()}" size="1" dir="{@dir}" />
+ <select style="{@style}" multiple="multiple" class="{@styleClass}"
+ title="{tagstring()}" size="1" dir="{@dir}" />
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="yes">
@@ -626,34 +625,32 @@
<vpe:if test="@layout='block'">
<vpe:template children="yes" modify="yes">
- <div style="{@style}" class="{@styleClass}"
- title="{tagstring()}" />
+ <div style="{@style}" class="{@styleClass}" title="{tagstring()}" />
<vpe:breaker type="ignore" />
</vpe:template>
</vpe:if>
- <vpe:if test="attrpresent('style')|attrpresent('styleClass')|attrpresent('id')">
+ <vpe:if
+ test="attrpresent('style')|attrpresent('styleClass')|attrpresent('id')">
<vpe:template children="yes" modify="yes">
- <span style="{@style}" class="{@styleClass}"
- title="{tagstring()}" />
+ <span style="{@style}" class="{@styleClass}" title="{tagstring()}" />
<vpe:breaker type="ignore" />
</vpe:template>
</vpe:if>
<vpe:template children="yes" modify="yes">
- <span class="vpe-text"
- title="{tagstring()}" />
- <vpe:breaker type="ignore" />
+ <span class="vpe-text" title="{tagstring()}" />
+ <vpe:breaker type="ignore" />
</vpe:template>
</vpe:tag>
<vpe:tag name="h:panelGrid" case-sensitive="yes">
<vpe:template children="yes" modify="yes">
<vpe:panelgrid border="{iif(@border='','0',@border)}"
- style="{@style}" class="{@styleClass}" width="{@width}"
- dir="{@dir}" frame="{@frame}" rules="{jsfvalue(@rules)}" columnClasses="{@columnClasses}"
- footerClass="{@footerClass}" headerClass="{@headerClass}"
- captionClass="{@captionClass}" captionStyle="{@captionStyle}" rowClasses="{@rowClasses}" cellspacing="{@cellspacing}"
- cellpadding="{@cellpadding}" bgcolor="{@bgcolor}"
- title="{tagstring()}" table-size="{@columns}" />
+ style="{@style}" class="{@styleClass}" width="{@width}" dir="{@dir}"
+ frame="{@frame}" rules="{jsfvalue(@rules)}" columnClasses="{@columnClasses}"
+ footerClass="{@footerClass}" headerClass="{@headerClass}"
+ captionClass="{@captionClass}" captionStyle="{@captionStyle}"
+ rowClasses="{@rowClasses}" cellspacing="{@cellspacing}" cellpadding="{@cellpadding}"
+ bgcolor="{@bgcolor}" title="{tagstring()}" table-size="{@columns}" />
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
@@ -670,12 +667,12 @@
<vpe:tag name="h:dataTable" case-sensitive="yes">
<vpe:template children="yes" modify="no">
- <vpe:datatable width="{@width}" height="{@height}" bgcolor="{@bgcolor}"
- border="{@border}" cellpadding="{@cellpadding}"
+ <vpe:datatable width="{@width}" height="{@height}"
+ bgcolor="{@bgcolor}" border="{@border}" cellpadding="{@cellpadding}"
cellspacing="{@cellspacing}" columnClasses="{@columnClasses}"
footerClass="{@footerClass}" headerClass="{@headerClass}"
- rowClasses="{@rowClasses}" frame="{@frame}" rules="{@rules}"
- class="{@styleClass}" style="{@style}" title="{tagstring()}" dir="{@dir}"/>
+ rowClasses="{@rowClasses}" frame="{@frame}" rules="{@rules}" class="{@styleClass}"
+ style="{@style}" title="{tagstring()}" dir="{@dir}" />
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
@@ -693,9 +690,8 @@
</vpe:tag>
<vpe:tag name="h:column" case-sensitive="yes">
- <vpe:if
- test="parentname()='h:dataTable'|parentname()='h:panelGrid'">
-<!-- Gavr --><!-- added x: 8.02.05 -->
+ <vpe:if test="parentname()='h:dataTable'|parentname()='h:panelGrid'">
+ <!-- Gavr --><!-- added x: 8.02.05 -->
<vpe:template children="yes" modify="yes">
<vpe:column title="{tagstring()}" />
</vpe:template>
@@ -711,12 +707,12 @@
<vpe:tag name="f:facet" case-sensitive="yes">
<vpe:if test="@name='popup'">
- <vpe:template children="yes" modify="yes" ></vpe:template>
+ <vpe:template children="yes" modify="yes"></vpe:template>
</vpe:if>
<vpe:if test="@name='head' and parentname()='a4j:page'">
<vpe:template children="yes" modify="no">
- <div style="display:none;"/>
+ <div style="display:none;" />
<vpe:dnd>
<vpe:drop container="yes" />
</vpe:dnd>
@@ -724,26 +720,27 @@
</vpe:if>
<vpe:if test="@name='header' and hasinparents('jbpm:datacell')">
- <vpe:template children="yes" modify="no">
- <th scope="colgroup" vpe-pseudo-type='vpe-jbpm-cell-header'
- style='background:none repeat scroll 0 0 #444444;border-bottom:1px solid #000000;border-collapse:collapse;color:#FFFFFF;font-size:11px;text-align:left;text-decoration:none;white-space:nowrap;width:130px;padding:3px 5px' />
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.jsf.template.JsfFacetInDataCell">
<vpe:dnd>
+ <vpe:drag start-enable="no" />
<vpe:drop container="yes" />
</vpe:dnd>
</vpe:template>
</vpe:if>
<vpe:if test="@name='header' and hasinparents('jbpm:dataform')">
- <vpe:template children="yes" modify="no">
- <th colspan='2' vpe-pseudo-type='vpe-jbpm-form-header'
- style='background-color:#990000;border-bottom:1px solid #000000;color:#FFFF99;font-weight:bold;text-align:left' />
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.jsf.template.JsfFacetInDataForm">
<vpe:dnd>
+ <vpe:drag start-enable="no" />
<vpe:drop container="yes" />
</vpe:dnd>
</vpe:template>
</vpe:if>
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.jsf.template.JsfFacet" >
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.jsf.template.JsfFacet">
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="yes" />
@@ -753,8 +750,8 @@
</vpe:tag>
<vpe:tag name="f:view" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" hasImaginaryBorder="yes"
- class="org.jboss.tools.jsf.vpe.jsf.template.JsfView">
+ <vpe:template children="yes" modify="yes"
+ hasImaginaryBorder="yes" class="org.jboss.tools.jsf.vpe.jsf.template.JsfView">
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="yes" />
@@ -778,8 +775,8 @@
</vpe:tag>
<vpe:tag name="f:subview" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" hasImaginaryBorder="yes"
- class="org.jboss.tools.jsf.vpe.jsf.template.JsfSubView">
+ <vpe:template children="yes" modify="yes"
+ hasImaginaryBorder="yes" class="org.jboss.tools.jsf.vpe.jsf.template.JsfSubView">
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="yes" />
@@ -803,8 +800,8 @@
</vpe:tag>
<vpe:tag name="h:form" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" hasImaginaryBorder="yes"
- class="org.jboss.tools.jsf.vpe.jsf.template.JsfForm">
+ <vpe:template children="yes" modify="yes"
+ hasImaginaryBorder="yes" class="org.jboss.tools.jsf.vpe.jsf.template.JsfForm">
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="yes" />
@@ -829,7 +826,7 @@
<vpe:tag name="f:setPropertyActionListener">
<vpe:template children="no" modify="no" />
</vpe:tag>
-
+
<vpe:tag name="f:actionListener">
<vpe:template children="no" modify="no" />
</vpe:tag>
@@ -841,7 +838,7 @@
<vpe:tag name="f:convertDateTime">
<vpe:template children="no" modify="no" />
</vpe:tag>
-
+
<vpe:tag name="f:converter">
<vpe:template children="no" modify="no" />
</vpe:tag>
@@ -887,7 +884,7 @@
<vpe:template children="yes" modify="no" />
</vpe:tag>
- <vpe:tag name="f:metadata" case-sensitive="yes">
+ <vpe:tag name="f:metadata" case-sensitive="yes">
<vpe:template children="yes" modify="no" />
</vpe:tag>
<!-- End of JSF 2.0 Core Tags -->
@@ -919,85 +916,95 @@
</vpe:textFormatting>
</vpe:template>
</vpe:tag>
-
+
<!-- JSF 2.0 HTML Tags -->
<vpe:tag name="h:body" case-sensitive="yes">
<!-- The tag cannot have any attribute. -->
- <!-- Checks for min tld version has been comented,
- becouse it's not specified correctly in jsf lib, mareshkau -->
- <!-- <vpe:if test="tld_version('min=2.0')"> -->
- <vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.jsf.template.JsfBodyTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes" />
- <vpe:drop container="no"></vpe:drop>
- </vpe:dnd>
- </vpe:template>
- <!-- </vpe:if> -->
+ <!--
+ Checks for min tld version has been comented, becouse it's not
+ specified correctly in jsf lib, mareshkau
+ -->
+ <!-- <vpe:if test="tld_version('min=2.0')"> -->
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.jsf.template.JsfBodyTemplate">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no"></vpe:drop>
+ </vpe:dnd>
+ </vpe:template>
+ <!-- </vpe:if> -->
</vpe:tag>
<vpe:tag name="h:head" case-sensitive="yes">
<!-- The tag cannot have any attribute. -->
- <!-- Checks for min tld version has been comented,
- becouse it's not specified correctly in jsf lib, mareshkau -->
- <!-- <vpe:if test="tld_version('min=2.0')"> -->
- <vpe:template children="yes" modify="no">
- <div style="display:none;" />
- <vpe:dnd>
- <vpe:drop container="yes" />
- </vpe:dnd>
- </vpe:template>
-<!-- </vpe:if> -->
+ <!--
+ Checks for min tld version has been comented, becouse it's not
+ specified correctly in jsf lib, mareshkau
+ -->
+ <!-- <vpe:if test="tld_version('min=2.0')"> -->
+ <vpe:template children="yes" modify="no">
+ <div style="display:none;" />
+ <vpe:dnd>
+ <vpe:drop container="yes" />
+ </vpe:dnd>
+ </vpe:template>
+ <!-- </vpe:if> -->
</vpe:tag>
<!--
- Tag h:outputScript can have any of next attributes: name, library, target.
- Mojarra 2.0 EDR1 implementation of JSF 2.0 includes a script as follows:
- <script type="text/javascript"
- src="{facesContext.getApplication().getResourceHandler().createResource(name, library).getRequestPath()}"/>
- -->
+ Tag h:outputScript can have any of next attributes: name, library,
+ target. Mojarra 2.0 EDR1 implementation of JSF 2.0 includes a script
+ as follows: <script type="text/javascript"
+ src="{facesContext.getApplication().getResourceHandler().createResource(name,
+ library).getRequestPath()}"/>
+ -->
<vpe:tag name="h:outputScript" case-sensitive="yes">
- <!-- Checks for min tld version has been comented,
- becouse it's not specified correctly in jsf lib, mareshkau -->
- <!-- <vpe:if test="tld_version('min=2.0')"> -->
+ <!--
+ Checks for min tld version has been comented, becouse it's not
+ specified correctly in jsf lib, mareshkau
+ -->
+ <!-- <vpe:if test="tld_version('min=2.0')"> -->
- <vpe:template children="no" modify="no"
- class="org.jboss.tools.jsf.vpe.jsf.template.JsfOutputScriptTemplate"/>
-<!-- </vpe:if> -->
+ <vpe:template children="no" modify="no"
+ class="org.jboss.tools.jsf.vpe.jsf.template.JsfOutputScriptTemplate" />
+ <!-- </vpe:if> -->
</vpe:tag>
<!--
- Tag h:outputStylesheet can have any of next attributes: name, library, target.
- Value of target could be either 'head' or 'body'.
- Mojarra 2.0 EDR1 implementation of JSF 2.0 links a stylesheet as follows:
- <link type="text/css" rel="stylesheet"
- href="{facesContext.getApplication().getResourceHandler().createResource(name, library).getRequestPath()}"/>
-
- NOTE: See VpeHtmlTemplate.getSourceRegionForOpenOn(...)
- for OpenOn implementation.
- -->
+ Tag h:outputStylesheet can have any of next attributes: name, library,
+ target. Value of target could be either 'head' or 'body'. Mojarra 2.0
+ EDR1 implementation of JSF 2.0 links a stylesheet as follows: <link
+ type="text/css" rel="stylesheet"
+ href="{facesContext.getApplication().getResourceHandler().createResource(name,
+ library).getRequestPath()}"/> NOTE: See
+ VpeHtmlTemplate.getSourceRegionForOpenOn(...) for OpenOn
+ implementation.
+ -->
<vpe:tag name="h:outputStylesheet" case-sensitive="yes">
- <!-- Checks for min tld version has been comented,
- becouse it's not specified correctly in jsf lib, mareshkau -->
- <!-- <vpe:if test="tld_version('min=2.0')"> -->
- <vpe:template children="no" modify="no">
- <vpe:link rel="stylesheet" href="{href(jsf2resource(@library,@name))}" />
- </vpe:template>
-<!-- </vpe:if> -->
+ <!--
+ Checks for min tld version has been comented, becouse it's not
+ specified correctly in jsf lib, mareshkau
+ -->
+ <!-- <vpe:if test="tld_version('min=2.0')"> -->
+ <vpe:template children="no" modify="no">
+ <vpe:link rel="stylesheet" href="{href(jsf2resource(@library,@name))}" />
+ </vpe:template>
+ <!-- </vpe:if> -->
</vpe:tag>
<vpe:tag name="h:button" case-sensitive="yes">
- <!-- This is a very big if-statement.
- Its goal is to add support of 'disabled property'
- DO NOT FORGET TO EDIT 'ELSE' PART IN FUTURE MODIFICATIONS -->
+ <!--
+ This is a very big if-statement. Its goal is to add support of
+ 'disabled property' DO NOT FORGET TO EDIT 'ELSE' PART IN FUTURE
+ MODIFICATIONS
+ -->
<vpe:if test="(@disabled='true')">
<vpe:if test="not(attrpresent('image'))">
<vpe:if test="(@type='')">
<vpe:template children="no" modify="no">
<input type="button" value="{iif(@value='',' ',jsfvalue(@value))}"
- class="{@styleClass}" style="{@style}"
- title="{tagstring()}" dir="{@dir}"
- disabled='disabled'/>
+ class="{@styleClass}" style="{@style}" title="{tagstring()}" dir="{@dir}"
+ disabled='disabled' />
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
@@ -1012,9 +1019,8 @@
<vpe:if test="not(@type='')">
<vpe:template children="no" modify="no">
<input type="{@type}" value="{iif(@value='',' ',jsfvalue(@value))}"
- class="{@styleClass}" style="{@style}"
- title="{tagstring()}" dir="{@dir}"
- disabled='disabled'/>
+ class="{@styleClass}" style="{@style}" title="{tagstring()}" dir="{@dir}"
+ disabled='disabled' />
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
@@ -1029,9 +1035,8 @@
</vpe:if>
<vpe:if test="attrpresent('image')">
<vpe:template children="no" modify="no">
- <input type="image" src="{src(@image)}"
- class="{@styleClass}" style="{@style}" title="{tagstring()}"
- disabled='disabled'/>
+ <input type="image" src="{src(@image)}" class="{@styleClass}"
+ style="{@style}" title="{tagstring()}" disabled='disabled' />
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
@@ -1042,57 +1047,56 @@
</vpe:if>
</vpe:if>
<!--else-->
- <vpe:if test="not(attrpresent('image'))">
- <vpe:if test="(@type='')">
- <vpe:template children="no" modify="no">
- <input type="button" value="{iif(@value='',' ',jsfvalue(@value))}"
- class="{@styleClass}" style="{@style}"
- title="{tagstring()}" dir="{@dir}"/>
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize>
- <vpe:dnd>
- <vpe:drag start-enable="yes" />
- </vpe:dnd>
- <vpe:textFormatting use-default-formats="yes">
- </vpe:textFormatting>
- </vpe:template>
- </vpe:if>
- <vpe:if test="not(@type='')">
- <vpe:template children="no" modify="no">
- <input type="{@type}" value="{iif(@value='',' ',jsfvalue(@value))}"
- class="{@styleClass}" style="{@style}"
- title="{tagstring()}" dir="{@dir}"/>
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize>
- <vpe:dnd>
- <vpe:drag start-enable="yes" />
- </vpe:dnd>
- <vpe:textFormatting use-default-formats="yes">
- </vpe:textFormatting>
- </vpe:template>
- </vpe:if>
+ <vpe:if test="not(attrpresent('image'))">
+ <vpe:if test="(@type='')">
+ <vpe:template children="no" modify="no">
+ <input type="button" value="{iif(@value='',' ',jsfvalue(@value))}"
+ class="{@styleClass}" style="{@style}" title="{tagstring()}" dir="{@dir}" />
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ </vpe:dnd>
+ <vpe:textFormatting use-default-formats="yes">
+ </vpe:textFormatting>
+ </vpe:template>
</vpe:if>
- <vpe:if test="attrpresent('image')">
+ <vpe:if test="not(@type='')">
<vpe:template children="no" modify="no">
- <input type="image" src="{src(@image)}"
- class="{@styleClass}" style="{@style}" title="{tagstring()}" />
+ <input type="{@type}" value="{iif(@value='',' ',jsfvalue(@value))}"
+ class="{@styleClass}" style="{@style}" title="{tagstring()}" dir="{@dir}" />
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ </vpe:dnd>
<vpe:textFormatting use-default-formats="yes">
</vpe:textFormatting>
</vpe:template>
</vpe:if>
+ </vpe:if>
+ <vpe:if test="attrpresent('image')">
+ <vpe:template children="no" modify="no">
+ <input type="image" src="{src(@image)}" class="{@styleClass}"
+ style="{@style}" title="{tagstring()}" />
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
+ <vpe:textFormatting use-default-formats="yes">
+ </vpe:textFormatting>
+ </vpe:template>
+ </vpe:if>
<!--end-of-else-->
</vpe:tag>
<vpe:tag name="h:link" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.jsf.template.JsfLinkTemplate">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.jsf.template.JsfLinkTemplate">
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="yes">
@@ -1126,60 +1130,73 @@
<!-- Jsf 2.0 composite tags -->
<vpe:tag name="composite:implementation" case-sensitive="yes">
- <!-- Checks for min tld version has been comented,
- becouse it's not specified correctly in jsf lib, mareshkau
- <vpe:if test="tld_version('min=2.0')"> -->
- <vpe:template children="yes" modify="yes"
+ <!--
+ Checks for min tld version has been comented, becouse it's not
+ specified correctly in jsf lib, mareshkau <vpe:if
+ test="tld_version('min=2.0')">
+ -->
+ <vpe:template children="yes" modify="yes"
class="org.jboss.tools.jsf.vpe.facelets.template.VpeCompositionTemplate"
namespaceIdentifier="org.jboss.tools.jsf.vpe.facelets">
- </vpe:template>
-<!-- </vpe:if>-->
+ </vpe:template>
+ <!-- </vpe:if>-->
</vpe:tag>
-
+
<vpe:tag name="composite:renderFacet">
- <vpe:template class="org.jboss.tools.jsf.vpe.facelets.template.VpeInsertTemplate" namespaceIdentifier="org.jboss.tools.jsf.vpe.facelets"
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.facelets.template.VpeInsertTemplate"
+ namespaceIdentifier="org.jboss.tools.jsf.vpe.facelets"
defineElementName="facet">
- </vpe:template>
+ </vpe:template>
</vpe:tag>
<vpe:tag name="composite:insertChildren">
- <vpe:template class="org.jboss.tools.jsf.vpe.facelets.template.VpeInsertTemplate" namespaceIdentifier="org.jboss.tools.jsf.vpe.facelets"
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.facelets.template.VpeInsertTemplate"
+ namespaceIdentifier="org.jboss.tools.jsf.vpe.facelets"
defineElementName="facet">
- </vpe:template>
+ </vpe:template>
</vpe:tag>
-
+
<vpe:tag name="composite:interface" case-sensitive="yes">
- <!-- Checks for min tld version has been comented,
- becouse it's not specified correctly in jsf lib, mareshkau -->
- <!-- <vpe:if test="tld_version('min=2.0')"> -->
- <vpe:template children="yes" modify="no"/>
-<!-- </vpe:if> -->
+ <!--
+ Checks for min tld version has been comented, becouse it's not
+ specified correctly in jsf lib, mareshkau
+ -->
+ <!-- <vpe:if test="tld_version('min=2.0')"> -->
+ <vpe:template children="yes" modify="no" />
+ <!-- </vpe:if> -->
</vpe:tag>
-
-
+
+
<vpe:tag name="composite:attribute" case-sensitive="yes">
- <!-- Checks for min tld version has been comented,
- becouse it's not specified correctly in jsf lib, mareshkau -->
- <!-- <vpe:if test="tld_version('min=2.0')"> -->
- <vpe:template children="no" modify="no" class="org.jboss.tools.jsf.vpe.jsf.template.JSF2CompositeAttributeTemplate" />
-<!-- </vpe:if> -->
+ <!--
+ Checks for min tld version has been comented, becouse it's not
+ specified correctly in jsf lib, mareshkau
+ -->
+ <!-- <vpe:if test="tld_version('min=2.0')"> -->
+ <vpe:template children="no" modify="no"
+ class="org.jboss.tools.jsf.vpe.jsf.template.JSF2CompositeAttributeTemplate" />
+ <!-- </vpe:if> -->
</vpe:tag>
<vpe:tag name="composite:actionSource" case-sensitive="yes">
- <!-- Checks for min tld version has been comented,
- becouse it's not specified correctly in jsf lib, mareshkau -->
- <!-- <vpe:if test="tld_version('min=2.0')"> -->
- <vpe:template children="no" modify="no"/>
-<!-- </vpe:if>-->
+ <!--
+ Checks for min tld version has been comented, becouse it's not
+ specified correctly in jsf lib, mareshkau
+ -->
+ <!-- <vpe:if test="tld_version('min=2.0')"> -->
+ <vpe:template children="no" modify="no" />
+ <!-- </vpe:if>-->
</vpe:tag>
-
+
<vpe:tag name="vpejsf2customTemplate" case-sensitive="yes">
- <vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.jsf.template.Jsf2CustomComponentTemplate">
- </vpe:template>
- </vpe:tag>
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.jsf.template.Jsf2CustomComponentTemplate">
+ </vpe:template>
+ </vpe:tag>
<!-- Default template -->
<vpe:template children="yes" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}"/>
+ <vpe:any value="{name()}" title="{tagstring()}" />
</vpe:template>
-
+
</vpe:templates>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/resources/jBPMTestProject/WebContent/pages/components/taskForm.xhtml.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/resources/jBPMTestProject/WebContent/pages/components/taskForm.xhtml.xml 2010-04-07 15:17:29 UTC (rev 21314)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/resources/jBPMTestProject/WebContent/pages/components/taskForm.xhtml.xml 2010-04-07 15:22:49 UTC (rev 21315)
@@ -5,7 +5,7 @@
</COLGROUP>
<THEAD>
<TR>
-<TH COLSPAN="2" STYLE="border-bottom: 1px solid rgb(0, 0, 0); background-color: rgb(153, 0, 0); color: rgb(255, 255, 153); font-weight: bold; text-align: left; -moz-user-modify: read-only;" VPE-PSEUDO-TYPE="vpe-jbpm-form-header">
+<TH STYLE="border-bottom: 1px solid rgb(0, 0, 0); background-color: rgb(153, 0, 0); color: rgb(255, 255, 153); font-weight: bold; text-align: left;" COLSPAN="2" VPE-PSEUDO-TYPE="vpe-jbpm-form-header">
<SPAN CLASS="vpe-text">
#{taskName}
</SPAN>
@@ -14,7 +14,7 @@
</THEAD>
<TBODY>
<TR>
-<TH SCOPE="colgroup" STYLE="border-bottom: 1px solid rgb(0, 0, 0); padding: 3px 5px; background: rgb(68, 68, 68) none repeat scroll 0pt 0pt; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous; border-collapse: collapse; color: rgb(255, 255, 255); font-size: 11px; text-align: left; text-decoration: none; white-space: nowrap; width: 130px; -moz-user-modify: read-only;">
+<TH STYLE="border-bottom: 1px solid rgb(0, 0, 0); padding: 3px 5px; background: rgb(68, 68, 68) none repeat scroll 0pt 0pt; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous; border-collapse: collapse; color: rgb(255, 255, 255); font-size: 11px; text-align: left; text-decoration: none; white-space: nowrap; width: 130px;" SCOPE="colgroup" VPE-PSEUDO-TYPE="vpe-jbpm-cell-header">
<SPAN CLASS="vpe-text">
field1
</SPAN>
@@ -25,7 +25,7 @@
</TD>
</TR>
<TR>
-<TH SCOPE="colgroup" STYLE="border-bottom: 1px solid rgb(0, 0, 0); padding: 3px 5px; background: rgb(68, 68, 68) none repeat scroll 0pt 0pt; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous; border-collapse: collapse; color: rgb(255, 255, 255); font-size: 11px; text-align: left; text-decoration: none; white-space: nowrap; width: 130px; -moz-user-modify: read-only;">
+<TH STYLE="border-bottom: 1px solid rgb(0, 0, 0); padding: 3px 5px; background: rgb(68, 68, 68) none repeat scroll 0pt 0pt; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous; border-collapse: collapse; color: rgb(255, 255, 255); font-size: 11px; text-align: left; text-decoration: none; white-space: nowrap; width: 130px;" SCOPE="colgroup" VPE-PSEUDO-TYPE="vpe-jbpm-cell-header">
<SPAN CLASS="vpe-text">
field2
</SPAN>
@@ -36,7 +36,7 @@
</TD>
</TR>
<TR>
-<TH SCOPE="colgroup" STYLE="border-bottom: 1px solid rgb(0, 0, 0); padding: 3px 5px; background: rgb(68, 68, 68) none repeat scroll 0pt 0pt; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous; border-collapse: collapse; color: rgb(255, 255, 255); font-size: 11px; text-align: left; text-decoration: none; white-space: nowrap; width: 130px; -moz-user-modify: read-only;">
+<TH STYLE="border-bottom: 1px solid rgb(0, 0, 0); padding: 3px 5px; background: rgb(68, 68, 68) none repeat scroll 0pt 0pt; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous; border-collapse: collapse; color: rgb(255, 255, 255); font-size: 11px; text-align: left; text-decoration: none; white-space: nowrap; width: 130px;" SCOPE="colgroup" VPE-PSEUDO-TYPE="vpe-jbpm-cell-header">
<SPAN CLASS="vpe-text">
field3
</SPAN>
@@ -47,7 +47,7 @@
</TD>
</TR>
<TR>
-<TH SCOPE="colgroup" STYLE="border-bottom: 1px solid rgb(0, 0, 0); padding: 3px 5px; background: rgb(68, 68, 68) none repeat scroll 0pt 0pt; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous; border-collapse: collapse; color: rgb(255, 255, 255); font-size: 11px; text-align: left; text-decoration: none; white-space: nowrap; width: 130px; -moz-user-modify: read-only;">
+<TH STYLE="border-bottom: 1px solid rgb(0, 0, 0); padding: 3px 5px; background: rgb(68, 68, 68) none repeat scroll 0pt 0pt; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous; border-collapse: collapse; color: rgb(255, 255, 255); font-size: 11px; text-align: left; text-decoration: none; white-space: nowrap; width: 130px;" SCOPE="colgroup" VPE-PSEUDO-TYPE="vpe-jbpm-cell-header">
<SPAN CLASS="vpe-text">
field4
</SPAN>
@@ -58,7 +58,7 @@
</TD>
</TR>
<TR>
-<TH SCOPE="colgroup" STYLE="border-bottom: 1px solid rgb(0, 0, 0); padding: 3px 5px; background: rgb(68, 68, 68) none repeat scroll 0pt 0pt; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous; border-collapse: collapse; color: rgb(255, 255, 255); font-size: 11px; text-align: left; text-decoration: none; white-space: nowrap; width: 130px; -moz-user-modify: read-only;">
+<TH STYLE="border-bottom: 1px solid rgb(0, 0, 0); padding: 3px 5px; background: rgb(68, 68, 68) none repeat scroll 0pt 0pt; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous; border-collapse: collapse; color: rgb(255, 255, 255); font-size: 11px; text-align: left; text-decoration: none; white-space: nowrap; width: 130px;" SCOPE="colgroup" VPE-PSEUDO-TYPE="vpe-jbpm-cell-header">
<SPAN CLASS="vpe-text">
Action
</SPAN>
14 years, 9 months
JBoss Tools SVN: r21314 - in trunk/as/docs/reference/en-US/images: webtools and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: abogachuk
Date: 2010-04-07 11:17:29 -0400 (Wed, 07 Apr 2010)
New Revision: 21314
Modified:
trunk/as/docs/reference/en-US/images/perspective/perspective_4.png
trunk/as/docs/reference/en-US/images/perspective/perspective_5.png
trunk/as/docs/reference/en-US/images/perspective/perspective_7.png
trunk/as/docs/reference/en-US/images/webtools/webtools_2.png
trunk/as/docs/reference/en-US/images/webtools/webtools_3.png
Log:
https://jira.jboss.org/jira/browse/JBDS-1143 Jboss AS docs mistakes
screenshots were updated
Modified: trunk/as/docs/reference/en-US/images/perspective/perspective_4.png
===================================================================
(Binary files differ)
Modified: trunk/as/docs/reference/en-US/images/perspective/perspective_5.png
===================================================================
(Binary files differ)
Modified: trunk/as/docs/reference/en-US/images/perspective/perspective_7.png
===================================================================
(Binary files differ)
Modified: trunk/as/docs/reference/en-US/images/webtools/webtools_2.png
===================================================================
(Binary files differ)
Modified: trunk/as/docs/reference/en-US/images/webtools/webtools_3.png
===================================================================
(Binary files differ)
14 years, 9 months
JBoss Tools SVN: r21313 - branches/modular_build/bpel/releng/psfs.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-07 11:13:52 -0400 (Wed, 07 Apr 2010)
New Revision: 21313
Modified:
branches/modular_build/bpel/releng/psfs/project.subclipse.psf
branches/modular_build/bpel/releng/psfs/project.subversive.psf
branches/modular_build/bpel/releng/psfs/test.common.subclipse.psf
branches/modular_build/bpel/releng/psfs/test.common.subversive.psf
Log:
switch to branches/modular_build
Modified: branches/modular_build/bpel/releng/psfs/project.subclipse.psf
===================================================================
--- branches/modular_build/bpel/releng/psfs/project.subclipse.psf 2010-04-07 15:11:25 UTC (rev 21312)
+++ branches/modular_build/bpel/releng/psfs/project.subclipse.psf 2010-04-07 15:13:52 UTC (rev 21313)
@@ -3,28 +3,28 @@
<provider id="org.tigris.subversion.subclipse.core.svnnature">
<!-- !*** Generated with org.eclipse.dash.common.releng/tools/scripts/buildAllHelper.xml#dir2svnmap task -->
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/features/org.j..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/features/org.j..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.jb..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.jb..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.jb..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/features/org.j..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/features/org.j..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/tests/org.ecli..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/tests/org.jbos..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
</provider>
</psf>
Modified: branches/modular_build/bpel/releng/psfs/project.subversive.psf
===================================================================
--- branches/modular_build/bpel/releng/psfs/project.subversive.psf 2010-04-07 15:11:25 UTC (rev 21312)
+++ branches/modular_build/bpel/releng/psfs/project.subversive.psf 2010-04-07 15:13:52 UTC (rev 21313)
@@ -3,28 +3,28 @@
<provider id="org.eclipse.team.svn.core.svnnature">
<!-- !*** Generated with org.eclipse.dash.common.releng/tools/scripts/buildAllHelper.xml#dir2svnmap task -->
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/features/org.j..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/features/org.j..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.ec..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.jb..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.jb..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/plugins/org.jb..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/features/org.j..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/features/org.j..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/tests/org.ecli..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel/tests/org.jbos..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/bp..."/>
</provider>
</psf>
Modified: branches/modular_build/bpel/releng/psfs/test.common.subclipse.psf
===================================================================
--- branches/modular_build/bpel/releng/psfs/test.common.subclipse.psf 2010-04-07 15:11:25 UTC (rev 21312)
+++ branches/modular_build/bpel/releng/psfs/test.common.subclipse.psf 2010-04-07 15:13:52 UTC (rev 21313)
@@ -3,10 +3,10 @@
<provider id="org.tigris.subversion.subclipse.core.svnnature">
<!-- !*** required to run tests -->
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/common/plugins/org...."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/common/tests/org.jb..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/co..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/co..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/tests/tests/org.jbo..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/te..."/>
</provider>
</psf>
Modified: branches/modular_build/bpel/releng/psfs/test.common.subversive.psf
===================================================================
--- branches/modular_build/bpel/releng/psfs/test.common.subversive.psf 2010-04-07 15:11:25 UTC (rev 21312)
+++ branches/modular_build/bpel/releng/psfs/test.common.subversive.psf 2010-04-07 15:13:52 UTC (rev 21313)
@@ -3,10 +3,10 @@
<provider id="org.eclipse.team.svn.core.svnnature">
<!-- !*** required to run tests -->
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/common/plugins/org...."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/common/tests/org.jb..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/co..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/co..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/tests/tests/org.jbo..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/te..."/>
</provider>
</psf>
14 years, 9 months
JBoss Tools SVN: r21312 - trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2010-04-07 11:11:25 -0400 (Wed, 07 Apr 2010)
New Revision: 21312
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/AbstractBeanElement.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-6157
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/AbstractBeanElement.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/AbstractBeanElement.java 2010-04-07 15:10:36 UTC (rev 21311)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/AbstractBeanElement.java 2010-04-07 15:11:25 UTC (rev 21312)
@@ -59,7 +59,7 @@
protected AnnotationDeclaration findNamedAnnotation() {
AnnotationDeclaration named = getDefinition().getNamedAnnotation();
if(named != null) return named;
- Set<IStereotypeDeclaration> ds = getStereotypeDeclarations();
+ Set<IStereotypeDeclaration> ds = getStereotypeDeclarations(true);
for (IStereotypeDeclaration d: ds) {
StereotypeElement s = (StereotypeElement)d.getStereotype();
if(s == null) continue;
@@ -79,6 +79,10 @@
}
public Set<IStereotypeDeclaration> getStereotypeDeclarations() {
+ return getStereotypeDeclarations(false);
+ }
+
+ public Set<IStereotypeDeclaration> getStereotypeDeclarations(boolean includeInherited) {
Set<IStereotypeDeclaration> result = new HashSet<IStereotypeDeclaration>();
for (AnnotationDeclaration d: definition.getAnnotations()) {
if(d instanceof IStereotypeDeclaration) {
@@ -87,6 +91,27 @@
}
}
}
+ if(includeInherited) {
+ Set<IStereotypeDeclaration> delta1 = result;
+ Set<IStereotypeDeclaration> delta2 = new HashSet<IStereotypeDeclaration>();
+ while(!delta1.isEmpty()) {
+ for (IStereotypeDeclaration d: delta1) {
+ IStereotype s = d.getStereotype();
+ if(s == null) continue;
+ Set<IStereotypeDeclaration> ds = s.getStereotypeDeclarations();
+ for (IStereotypeDeclaration d1: ds) {
+ IStereotype s1 = d1.getStereotype();
+ if(s1 != null && s1.getInheritedDeclaration() != null) {
+ if(!result.contains(d1) && !delta2.contains(d1)) delta2.add(d1);
+ }
+ }
+ }
+ if(delta2.isEmpty()) break;
+ result.addAll(delta2);
+ delta1 = delta2;
+ delta2 = new HashSet<IStereotypeDeclaration>();
+ }
+ }
return result;
}
14 years, 9 months
JBoss Tools SVN: r21311 - trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2010-04-07 11:10:36 -0400 (Wed, 07 Apr 2010)
New Revision: 21311
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/ClassBean.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-6151
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/ClassBean.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/ClassBean.java 2010-04-07 15:04:55 UTC (rev 21310)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/ClassBean.java 2010-04-07 15:10:36 UTC (rev 21311)
@@ -364,7 +364,8 @@
if(!scopes.isEmpty()) {
scope = scopes.iterator().next().getScope();
if(scope.getInheritedDeclaration() == null) {
- scope = null;
+ scope = getCDIProject().getScope(CDIConstants.DEPENDENT_ANNOTATION_TYPE_NAME);
+ return;
} else {
return;
}
14 years, 9 months
JBoss Tools SVN: r21310 - branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/psfs.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-07 11:04:55 -0400 (Wed, 07 Apr 2010)
New Revision: 21310
Modified:
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/psfs/common.subclipse.psf
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/psfs/common.subversive.psf
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/psfs/jbpm4.subclipse.psf
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/psfs/jbpm4.subversive.psf
Log:
switch to branches/modular_build
Modified: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/psfs/common.subclipse.psf
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/psfs/common.subclipse.psf 2010-04-07 15:03:54 UTC (rev 21309)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/psfs/common.subclipse.psf 2010-04-07 15:04:55 UTC (rev 21310)
@@ -5,13 +5,13 @@
<!-- !*** Contains features, plugins, and tests common to both jbpm3 and jbpm4. -->
<!-- !*** features -->
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** plugins -->
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/plugins/org.jb..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** test plugins -->
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/plugins/org.jb..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
</provider>
</psf>
Modified: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/psfs/common.subversive.psf
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/psfs/common.subversive.psf 2010-04-07 15:03:54 UTC (rev 21309)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/psfs/common.subversive.psf 2010-04-07 15:04:55 UTC (rev 21310)
@@ -5,13 +5,13 @@
<!-- !*** Contains features, plugins, and tests common to both jbpm3 and jbpm4. -->
<!-- !*** features -->
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** plugins -->
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/plugins/org.jb..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** test plugins -->
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/plugins/org.jb..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
</provider>
</psf>
Modified: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/psfs/jbpm4.subclipse.psf
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/psfs/jbpm4.subclipse.psf 2010-04-07 15:03:54 UTC (rev 21309)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/psfs/jbpm4.subclipse.psf 2010-04-07 15:04:55 UTC (rev 21310)
@@ -6,26 +6,25 @@
<!-- !*** See common.map for features, plugins, and tests common to both jbpm3 and jbpm4. -->
<!-- !*** features -->
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** plugins -->
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/plugins/org.jb..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/plugins/org.jb..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/plugins/org.jb..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/plugins/org.jb..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** test features -->
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** test plugins -->
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/tests/org.jbos..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/tests/org.jbos..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/tests/org.jbos..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/tests/org.jbpm..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
</provider>
</psf>
Modified: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/psfs/jbpm4.subversive.psf
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/psfs/jbpm4.subversive.psf 2010-04-07 15:03:54 UTC (rev 21309)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/psfs/jbpm4.subversive.psf 2010-04-07 15:04:55 UTC (rev 21310)
@@ -6,26 +6,25 @@
<!-- !*** See common.map for features, plugins, and tests common to both jbpm3 and jbpm4. -->
<!-- !*** features -->
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** plugins -->
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/plugins/org.jb..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/plugins/org.jb..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/plugins/org.jb..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/plugins/org.jb..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** test features -->
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** test plugins -->
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/tests/org.jbos..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/tests/org.jbos..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/tests/org.jbos..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/tests/org.jbpm..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
</provider>
</psf>
14 years, 9 months
JBoss Tools SVN: r21309 - branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/psfs.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-07 11:03:54 -0400 (Wed, 07 Apr 2010)
New Revision: 21309
Modified:
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/psfs/common.subclipse.psf
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/psfs/common.subversive.psf
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/psfs/jbpm3.subclipse.psf
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/psfs/jbpm3.subversive.psf
Log:
switch to branches/modular_build
Modified: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/psfs/common.subclipse.psf
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/psfs/common.subclipse.psf 2010-04-07 15:00:18 UTC (rev 21308)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/psfs/common.subclipse.psf 2010-04-07 15:03:54 UTC (rev 21309)
@@ -5,13 +5,13 @@
<!-- !*** Contains features, plugins, and tests common to both jbpm3 and jbpm4. -->
<!-- !*** features -->
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** plugins -->
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/plugins/org.jb..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** test plugins -->
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/plugins/org.jb..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
</provider>
</psf>
Modified: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/psfs/common.subversive.psf
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/psfs/common.subversive.psf 2010-04-07 15:00:18 UTC (rev 21308)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/psfs/common.subversive.psf 2010-04-07 15:03:54 UTC (rev 21309)
@@ -5,13 +5,13 @@
<!-- !*** Contains features, plugins, and tests common to both jbpm3 and jbpm4. -->
<!-- !*** features -->
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** plugins -->
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/plugins/org.jb..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** test plugins -->
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/plugins/org.jb..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
</provider>
</psf>
Modified: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/psfs/jbpm3.subclipse.psf
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/psfs/jbpm3.subclipse.psf 2010-04-07 15:00:18 UTC (rev 21308)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/psfs/jbpm3.subclipse.psf 2010-04-07 15:03:54 UTC (rev 21309)
@@ -6,17 +6,17 @@
<!-- !*** See common.map for features, plugins, and tests common to both jbpm3 and jbpm4. -->
<!-- !*** features -->
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** plugins -->
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/plugins/org.jb..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** test features -->
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** test plugins -->
- <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/tests/org.jbpm..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
</provider>
</psf>
Modified: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/psfs/jbpm3.subversive.psf
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/psfs/jbpm3.subversive.psf 2010-04-07 15:00:18 UTC (rev 21308)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/psfs/jbpm3.subversive.psf 2010-04-07 15:03:54 UTC (rev 21309)
@@ -6,17 +6,17 @@
<!-- !*** See common.map for features, plugins, and tests common to both jbpm3 and jbpm4. -->
<!-- !*** features -->
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** plugins -->
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/plugins/org.jb..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** test features -->
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/features/org.j..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
<!-- !*** test plugins -->
- <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm/tests/org.jbpm..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/jb..."/>
</provider>
</psf>
14 years, 9 months
JBoss Tools SVN: r21308 - in branches/modular_build/jbpm/releng: org.jboss.tools.jbpm4.releng and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-07 11:00:18 -0400 (Wed, 07 Apr 2010)
New Revision: 21308
Added:
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/build.xml
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/build.xml
Removed:
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/build.xml
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/build.xml
Modified:
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/build.properties
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/build.properties
Log:
update to latest
Modified: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/build.properties
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/build.properties 2010-04-07 14:54:44 UTC (rev 21307)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/build.properties 2010-04-07 15:00:18 UTC (rev 21308)
@@ -18,8 +18,10 @@
JAVA50_HOME=${JAVA_HOME}
JAVA60_HOME=${JAVA_HOME}
-repositoryURLs=http://download.eclipse.org/releases/galileo/,\
+# To make the build go faster, use locally cached zips instead of galileo site
+repositoryURLs=\
http://download.jboss.org/jbosstools/updates/nightly/trunk/,\
+http://download.eclipse.org/releases/galileo/,\
http://repository.jboss.org/eclipse/galileo/repos/eclipse-Update-3.5.2-20...
http://repository.jboss.org/eclipse/galileo/repos/GEF-Update-3.5.2.zip,\
http://repository.jboss.org/eclipse/galileo/repos/dtp-Updates-1.7.2-20100...
Deleted: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/build.xml
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/build.xml 2010-04-07 14:54:44 UTC (rev 21307)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/build.xml 2010-04-07 15:00:18 UTC (rev 21308)
@@ -1,40 +0,0 @@
-<project default="run" name="org.jboss.tools.*.releng/build.xml - Run a JBoss Tools component build using the Athena CBI">
- <target name="run">
- <!--
- You must check out the following projects to your workspace:
-
- org.eclipse.releng.basebuilder
- org.eclipse.dash.common.releng
- jbosstools/trunk/<your component>/releng
- -->
-
- <!-- load properties and set timestamp for the build -->
- <property file="build.properties" />
- <tstamp>
- <format property="buildTimestamp" pattern="yyyyMMddHHmm" />
- </tstamp>
-
- <!-- calculate workspaceDir as parent of this folder, the project's .releng folder (relengBuilderDir) -->
- <property name="relengBuilderDir" value="${basedir}" />
- <dirname file="${relengBuilderDir}" property="workspaceDir" />
-
- <!--
- can build in /tmp, eg., in /tmp/build, or in workspace, eg.,
- ${WORKSPACE}/build
- -->
- <property name="writableBuildRoot" value="/tmp/build" />
-
- <!--
- can be simple path, eg.,
- ${writableBuildRoot}/${buildType}${buildTimestamp} or longer, eg.,
- ${writableBuildRoot}/${topprojectName}/${projectName}/downloads/drops/${version}/${buildType}${buildTimestamp} or
- ${writableBuildRoot}/${topprojectName}/${projectName}/${subprojectName}/downloads/drops/${version}/${buildType}${buildTimestamp}
- -->
- <property name="buildDir" value="${writableBuildRoot}/${buildType}${buildTimestamp}-${zipPrefix}" />
-
- <!-- invoke a new Eclipse process and launch the build from the common.releng folder -->
- <property name="relengCommonBuilderDir" value="${workspaceDir}/org.eclipse.dash.common.releng" />
- <ant antfile="${relengCommonBuilderDir}/buildAll.xml" target="runEclipse" dir="${relengCommonBuilderDir}" />
-
- </target>
-</project>
Added: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/build.xml
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/build.xml (rev 0)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/build.xml 2010-04-07 15:00:18 UTC (rev 21308)
@@ -0,0 +1,41 @@
+<!-- A sample build file for use with Hudson. Note that forceContextQualifier
+ is being set, which overrides tag/branch values found in *.map files
+-->
+<project default="run">
+ <target name="run">
+ <!-- 0. Set a valid path to JAVA_HOME, if Eclipse's ${java.home}/../bin/javac cannot be found
+ -->
+ <property name="JAVA_HOME" value="${java.home}/.." />
+
+ <tstamp>
+ <format property="buildTimestamp" pattern="yyyyMMddHHmm" />
+ </tstamp>
+ <property name="forceContextQualifier" value="v${buildTimestamp}" />
+
+ <!-- 1. Import these projects using File > Import > Team Project Set > ./psfs/athena.psf.
+ 2. Close the org.eclipse.releng.basebuilder project - it does not need to compile to be of use.
+ 3. You can also define absolute paths for these directories, if relative paths do not work.
+ -->
+ <condition property="relengCommonBuilderDir"
+ value="${basedir}/../../../org.eclipse.dash.common.releng"
+ else="${basedir}/../org.eclipse.dash.common.releng"
+ >
+ <available file="${basedir}/../../../org.eclipse.dash.common.releng" type="dir" />
+ </condition>
+ <condition property="relengBaseBuilderDir"
+ value="${basedir}/../../../org.eclipse.releng.basebuilder"
+ else="${basedir}/../org.eclipse.releng.basebuilder"
+ >
+ <available file="${basedir}/../../../org.eclipse.releng.basebuilder" type="dir" />
+ </condition>
+
+ <!-- 4. To build from CVS sources using information in the ./maps/*.map files, comment these next two properties
+ 5. Or, to build from sources in the workspace, use these properties. You can also use absolute paths if needed.
+ -->
+ <!-- <property name="localSourceCheckoutDir" value="${basedir}/.." />
+ <property name="relengBuilderDir" value="${basedir}" /> -->
+
+ <property file="build.properties" />
+ <ant antfile="${relengCommonBuilderDir}/build.xml" />
+ </target>
+</project>
Property changes on: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/build.xml
___________________________________________________________________
Name: svn:executable
+ *
Name: svn:mime-type
+ text/plain
Modified: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/build.properties
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/build.properties 2010-04-07 14:54:44 UTC (rev 21307)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/build.properties 2010-04-07 15:00:18 UTC (rev 21308)
@@ -18,8 +18,10 @@
JAVA50_HOME=${JAVA_HOME}
JAVA60_HOME=${JAVA_HOME}
-repositoryURLs=http://download.eclipse.org/releases/galileo/,\
+# To make the build go faster, use locally cached zips instead of galileo site
+repositoryURLs=\
http://download.jboss.org/jbosstools/updates/nightly/trunk/,\
+http://download.eclipse.org/releases/galileo/,\
http://repository.jboss.org/eclipse/galileo/repos/eclipse-Update-3.5.2-20...
http://hudson.qa.jboss.com/hudson/view/DevStudio/job/jbosstools-cbi-jbpm3...
http://repository.jboss.org/eclipse/galileo/repos/GEF-Update-3.5.2.zip,\
Deleted: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/build.xml
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/build.xml 2010-04-07 14:54:44 UTC (rev 21307)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/build.xml 2010-04-07 15:00:18 UTC (rev 21308)
@@ -1,40 +0,0 @@
-<project default="run" name="org.jboss.tools.*.releng/build.xml - Run a JBoss Tools component build using the Athena CBI">
- <target name="run">
- <!--
- You must check out the following projects to your workspace:
-
- org.eclipse.releng.basebuilder
- org.eclipse.dash.common.releng
- jbosstools/trunk/<your component>/releng
- -->
-
- <!-- load properties and set timestamp for the build -->
- <property file="build.properties" />
- <tstamp>
- <format property="buildTimestamp" pattern="yyyyMMddHHmm" />
- </tstamp>
-
- <!-- calculate workspaceDir as parent of this folder, the project's .releng folder (relengBuilderDir) -->
- <property name="relengBuilderDir" value="${basedir}" />
- <dirname file="${relengBuilderDir}" property="workspaceDir" />
-
- <!--
- can build in /tmp, eg., in /tmp/build, or in workspace, eg.,
- ${WORKSPACE}/build
- -->
- <property name="writableBuildRoot" value="/tmp/build" />
-
- <!--
- can be simple path, eg.,
- ${writableBuildRoot}/${buildType}${buildTimestamp} or longer, eg.,
- ${writableBuildRoot}/${topprojectName}/${projectName}/downloads/drops/${version}/${buildType}${buildTimestamp} or
- ${writableBuildRoot}/${topprojectName}/${projectName}/${subprojectName}/downloads/drops/${version}/${buildType}${buildTimestamp}
- -->
- <property name="buildDir" value="${writableBuildRoot}/${buildType}${buildTimestamp}-${zipPrefix}" />
-
- <!-- invoke a new Eclipse process and launch the build from the common.releng folder -->
- <property name="relengCommonBuilderDir" value="${workspaceDir}/org.eclipse.dash.common.releng" />
- <ant antfile="${relengCommonBuilderDir}/buildAll.xml" target="runEclipse" dir="${relengCommonBuilderDir}" />
-
- </target>
-</project>
Added: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/build.xml
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/build.xml (rev 0)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/build.xml 2010-04-07 15:00:18 UTC (rev 21308)
@@ -0,0 +1,41 @@
+<!-- A sample build file for use with Hudson. Note that forceContextQualifier
+ is being set, which overrides tag/branch values found in *.map files
+-->
+<project default="run">
+ <target name="run">
+ <!-- 0. Set a valid path to JAVA_HOME, if Eclipse's ${java.home}/../bin/javac cannot be found
+ -->
+ <property name="JAVA_HOME" value="${java.home}/.." />
+
+ <tstamp>
+ <format property="buildTimestamp" pattern="yyyyMMddHHmm" />
+ </tstamp>
+ <property name="forceContextQualifier" value="v${buildTimestamp}" />
+
+ <!-- 1. Import these projects using File > Import > Team Project Set > ./psfs/athena.psf.
+ 2. Close the org.eclipse.releng.basebuilder project - it does not need to compile to be of use.
+ 3. You can also define absolute paths for these directories, if relative paths do not work.
+ -->
+ <condition property="relengCommonBuilderDir"
+ value="${basedir}/../../../org.eclipse.dash.common.releng"
+ else="${basedir}/../org.eclipse.dash.common.releng"
+ >
+ <available file="${basedir}/../../../org.eclipse.dash.common.releng" type="dir" />
+ </condition>
+ <condition property="relengBaseBuilderDir"
+ value="${basedir}/../../../org.eclipse.releng.basebuilder"
+ else="${basedir}/../org.eclipse.releng.basebuilder"
+ >
+ <available file="${basedir}/../../../org.eclipse.releng.basebuilder" type="dir" />
+ </condition>
+
+ <!-- 4. To build from CVS sources using information in the ./maps/*.map files, comment these next two properties
+ 5. Or, to build from sources in the workspace, use these properties. You can also use absolute paths if needed.
+ -->
+ <!-- <property name="localSourceCheckoutDir" value="${basedir}/.." />
+ <property name="relengBuilderDir" value="${basedir}" /> -->
+
+ <property file="build.properties" />
+ <ant antfile="${relengCommonBuilderDir}/build.xml" />
+ </target>
+</project>
Property changes on: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/build.xml
___________________________________________________________________
Name: svn:executable
+ *
Name: svn:mime-type
+ text/plain
14 years, 9 months
JBoss Tools SVN: r21307 - in branches/modular_build: jbpm/releng/org.jboss.tools.jbpm3.releng/maps and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-07 10:54:44 -0400 (Wed, 07 Apr 2010)
New Revision: 21307
Modified:
branches/modular_build/bpel/releng/maps/project.map
branches/modular_build/bpel/releng/maps/test.common.map
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/maps/common.map
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/maps/jbpm3.map
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/maps/test.map
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/maps/common.map
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/maps/jbpm4.map
branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/maps/test.map
Log:
fix trunk -> branches/modular_build
Modified: branches/modular_build/bpel/releng/maps/project.map
===================================================================
--- branches/modular_build/bpel/releng/maps/project.map 2010-04-07 14:51:42 UTC (rev 21306)
+++ branches/modular_build/bpel/releng/maps/project.map 2010-04-07 14:54:44 UTC (rev 21307)
@@ -1,23 +1,23 @@
!*** Generated with org.eclipse.dash.common.releng/tools/scripts/buildAllHelper.xml#dir2svnmap task
-feature@org.jboss.tools.bpel.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/features/org.jboss.tools.bpel.feature
-feature@org.jboss.tools.bpel.sdk.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/features/org.jboss.tools.bpel.sdk.feature
-plugin@org.eclipse.bpel.apache.ode.deploy.model=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.model
-plugin@org.eclipse.bpel.apache.ode.deploy.ui=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui
-plugin@org.eclipse.bpel.apache.ode.runtime=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime
-plugin@org.eclipse.bpel.common.model=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/plugins/org.eclipse.bpel.common.model
-plugin@org.eclipse.bpel.common.ui=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/plugins/org.eclipse.bpel.common.ui
-plugin@org.eclipse.bpel.compare.ui=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/plugins/org.eclipse.bpel.compare.ui
-plugin@org.eclipse.bpel.model=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/plugins/org.eclipse.bpel.model
-plugin@org.eclipse.bpel.runtimes=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/plugins/org.eclipse.bpel.runtimes
-plugin@org.eclipse.bpel.ui=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/plugins/org.eclipse.bpel.ui
-plugin@org.eclipse.bpel.validator=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/plugins/org.eclipse.bpel.validator
-plugin@org.eclipse.bpel.wsil.model=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/plugins/org.eclipse.bpel.wsil.model
-plugin@org.eclipse.bpel.xpath10=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/plugins/org.eclipse.bpel.xpath10
-plugin@org.jboss.tools.bpel.as.integration=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/plugins/org.jboss.tools.bpel.as.integration
-plugin@org.jboss.tools.bpel.cheatsheet=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/plugins/org.jboss.tools.bpel.cheatsheet
-plugin@org.jboss.tools.bpel.runtimes=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/plugins/org.jboss.tools.bpel.runtimes
+feature@org.jboss.tools.bpel.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/features/org.jboss.tools.bpel.feature
+feature@org.jboss.tools.bpel.sdk.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/features/org.jboss.tools.bpel.sdk.feature
+plugin@org.eclipse.bpel.apache.ode.deploy.model=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.model
+plugin@org.eclipse.bpel.apache.ode.deploy.ui=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui
+plugin@org.eclipse.bpel.apache.ode.runtime=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/plugins/org.eclipse.bpel.apache.ode.runtime
+plugin@org.eclipse.bpel.common.model=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/plugins/org.eclipse.bpel.common.model
+plugin@org.eclipse.bpel.common.ui=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/plugins/org.eclipse.bpel.common.ui
+plugin@org.eclipse.bpel.compare.ui=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/plugins/org.eclipse.bpel.compare.ui
+plugin@org.eclipse.bpel.model=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/plugins/org.eclipse.bpel.model
+plugin@org.eclipse.bpel.runtimes=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/plugins/org.eclipse.bpel.runtimes
+plugin@org.eclipse.bpel.ui=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/plugins/org.eclipse.bpel.ui
+plugin@org.eclipse.bpel.validator=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/plugins/org.eclipse.bpel.validator
+plugin@org.eclipse.bpel.wsil.model=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/plugins/org.eclipse.bpel.wsil.model
+plugin@org.eclipse.bpel.xpath10=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/plugins/org.eclipse.bpel.xpath10
+plugin@org.jboss.tools.bpel.as.integration=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/plugins/org.jboss.tools.bpel.as.integration
+plugin@org.jboss.tools.bpel.cheatsheet=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/plugins/org.jboss.tools.bpel.cheatsheet
+plugin@org.jboss.tools.bpel.runtimes=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/plugins/org.jboss.tools.bpel.runtimes
feature@org.jboss.tools.bpel.tests.sdk.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/features/org.jboss.tools.bpel.tests.sdk.feature
-feature@org.jboss.tools.bpel.tests.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/features/org.jboss.tools.bpel.tests.feature
-plugin@org.eclipse.tools.bpel.ui.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/tests/org.eclipse.tools.bpel.ui.test
-plugin@org.jboss.tools.bpel.ui.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/tests/org.jboss.tools.bpel.ui.test
+feature@org.jboss.tools.bpel.tests.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/features/org.jboss.tools.bpel.tests.feature
+plugin@org.eclipse.tools.bpel.ui.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/tests/org.eclipse.tools.bpel.ui.test
+plugin@org.jboss.tools.bpel.ui.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/tests/org.jboss.tools.bpel.ui.test
Modified: branches/modular_build/bpel/releng/maps/test.common.map
===================================================================
--- branches/modular_build/bpel/releng/maps/test.common.map 2010-04-07 14:51:42 UTC (rev 21306)
+++ branches/modular_build/bpel/releng/maps/test.common.map 2010-04-07 14:54:44 UTC (rev 21307)
@@ -1,5 +1,5 @@
!*** required to run tests
-plugin@org.jboss.tools.common=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/common/plugins/org.jboss.tools.common
-plugin@org.jboss.tools.common.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/common/tests/org.jboss.tools.common.test
+plugin@org.jboss.tools.common=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/common/plugins/org.jboss.tools.common
+plugin@org.jboss.tools.common.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/common/tests/org.jboss.tools.common.test
-plugin@org.jboss.tools.tests=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/tests/tests/org.jboss.tools.tests
+plugin@org.jboss.tools.tests=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/tests/tests/org.jboss.tools.tests
Modified: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/maps/common.map
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/maps/common.map 2010-04-07 14:51:42 UTC (rev 21306)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/maps/common.map 2010-04-07 14:54:44 UTC (rev 21307)
@@ -1,10 +1,10 @@
!*** Contains features, plugins, and tests common to both jbpm3 and jbpm4.
!*** features
-feature@org.jboss.tools.jbpm.common.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/features/org.jboss.tools.jbpm.common.feature
+feature@org.jboss.tools.jbpm.common.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/features/org.jboss.tools.jbpm.common.feature
!*** plugins
-plugin@org.jboss.tools.jbpm.common=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/plugins/org.jboss.tools.jbpm.common
+plugin@org.jboss.tools.jbpm.common=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/plugins/org.jboss.tools.jbpm.common
!*** test plugins
-plugin@org.jboss.tools.jbpm.common.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/tests/org.jboss.tools.jbpm.common.test
\ No newline at end of file
+plugin@org.jboss.tools.jbpm.common.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/tests/org.jboss.tools.jbpm.common.test
\ No newline at end of file
Modified: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/maps/jbpm3.map
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/maps/jbpm3.map 2010-04-07 14:51:42 UTC (rev 21306)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/maps/jbpm3.map 2010-04-07 14:54:44 UTC (rev 21307)
@@ -2,16 +2,16 @@
!*** See common.map for features, plugins, and tests common to both jbpm3 and jbpm4.
!*** features
-feature@org.jboss.tools.jbpm3.sdk.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/features/org.jboss.tools.jbpm3.sdk.feature
-feature@org.jboss.tools.jbpm3.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/features/org.jboss.tools.jbpm3.feature
-feature@org.jbpm.gd.jpdl.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/features/org.jbpm.gd.jpdl.feature
+feature@org.jboss.tools.jbpm3.sdk.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/features/org.jboss.tools.jbpm3.sdk.feature
+feature@org.jboss.tools.jbpm3.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/features/org.jboss.tools.jbpm3.feature
+feature@org.jbpm.gd.jpdl.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/features/org.jbpm.gd.jpdl.feature
!*** plugins
-plugin@org.jbpm.gd.jpdl=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/plugins/org.jbpm.gd.jpdl
+plugin@org.jbpm.gd.jpdl=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/plugins/org.jbpm.gd.jpdl
!*** test features
-feature@org.jboss.tools.jbpm3.tests.sdk.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/features/org.jboss.tools.jbpm3.tests.sdk.feature
-feature@org.jboss.tools.jbpm3.tests.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/features/org.jboss.tools.jbpm3.tests.feature
+feature@org.jboss.tools.jbpm3.tests.sdk.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/features/org.jboss.tools.jbpm3.tests.sdk.feature
+feature@org.jboss.tools.jbpm3.tests.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/features/org.jboss.tools.jbpm3.tests.feature
!*** test plugins
-plugin@org.jbpm.gd.jpdl.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/tests/org.jbpm.gd.jpdl.test
+plugin@org.jbpm.gd.jpdl.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/tests/org.jbpm.gd.jpdl.test
Modified: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/maps/test.map
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/maps/test.map 2010-04-07 14:51:42 UTC (rev 21306)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm3.releng/maps/test.map 2010-04-07 14:54:44 UTC (rev 21307)
@@ -1,2 +1,2 @@
-plugin@org.eclipse.test=v20080313,:pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse,
-fragment@org.eclipse.ant.optional.junit=v20070202,:pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse,
+plugin@org.eclipse.test=HEAD,:pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse,
+fragment@org.eclipse.ant.optional.junit=HEAD,:pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse,
Modified: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/maps/common.map
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/maps/common.map 2010-04-07 14:51:42 UTC (rev 21306)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/maps/common.map 2010-04-07 14:54:44 UTC (rev 21307)
@@ -1,10 +1,10 @@
!*** Contains features, plugins, and tests common to both jbpm3 and jbpm4.
!*** features
-!*** feature@org.jboss.tools.jbpm.common.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/features/org.jboss.tools.jbpm.common.feature
+!*** feature@org.jboss.tools.jbpm.common.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/features/org.jboss.tools.jbpm.common.feature
!*** plugins
-!*** plugin@org.jboss.tools.jbpm.common=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/plugins/org.jboss.tools.jbpm.common
+!*** plugin@org.jboss.tools.jbpm.common=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/plugins/org.jboss.tools.jbpm.common
!*** test plugins
-plugin@org.jboss.tools.jbpm.common.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/tests/org.jboss.tools.jbpm.common.test
\ No newline at end of file
+plugin@org.jboss.tools.jbpm.common.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/tests/org.jboss.tools.jbpm.common.test
\ No newline at end of file
Modified: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/maps/jbpm4.map
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/maps/jbpm4.map 2010-04-07 14:51:42 UTC (rev 21306)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/maps/jbpm4.map 2010-04-07 14:54:44 UTC (rev 21307)
@@ -2,21 +2,21 @@
!*** See common.map for features, plugins, and tests common to both jbpm3 and jbpm4.
!*** features
-feature@org.jboss.tools.jbpm4.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/features/org.jboss.tools.jbpm4.feature
-feature@org.jboss.tools.jbpm4.sdk.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/features/org.jboss.tools.jbpm4.sdk.feature
-feature@org.jboss.tools.flow.jpdl4.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/features/org.jboss.tools.flow.jpdl4.feature
-feature@org.jboss.tools.flow.common.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/flow/features/org.jboss.tools.flow.common.feature
+feature@org.jboss.tools.jbpm4.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/features/org.jboss.tools.jbpm4.feature
+feature@org.jboss.tools.jbpm4.sdk.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/features/org.jboss.tools.jbpm4.sdk.feature
+feature@org.jboss.tools.flow.jpdl4.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/features/org.jboss.tools.flow.jpdl4.feature
+feature@org.jboss.tools.flow.common.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/flow/features/org.jboss.tools.flow.common.feature
!*** plugins
-plugin@org.jboss.tools.flow.jpdl4=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/plugins/org.jboss.tools.flow.jpdl4
-plugin@org.jboss.tools.flow.jpdl4.multipage=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/plugins/org.jboss.tools.flow.jpdl4.multipage
-plugin@org.jboss.tools.flow.common=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/flow/plugins/org.jboss.tools.flow.common
+plugin@org.jboss.tools.flow.jpdl4=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/plugins/org.jboss.tools.flow.jpdl4
+plugin@org.jboss.tools.flow.jpdl4.multipage=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/plugins/org.jboss.tools.flow.jpdl4.multipage
+plugin@org.jboss.tools.flow.common=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/flow/plugins/org.jboss.tools.flow.common
!*** test features
-feature@org.jboss.tools.jbpm4.tests.sdk.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/features/org.jboss.tools.jbpm4.tests.sdk.feature
-feature@org.jboss.tools.jbpm4.tests.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/features/org.jboss.tools.jbpm4.tests.feature
+feature@org.jboss.tools.jbpm4.tests.sdk.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/features/org.jboss.tools.jbpm4.tests.sdk.feature
+feature@org.jboss.tools.jbpm4.tests.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/features/org.jboss.tools.jbpm4.tests.feature
!*** test plugins
-plugin@org.jboss.tools.flow.jpdl4.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/tests/org.jboss.tools.flow.jpdl4.test
-plugin@org.jboss.tools.flow.jpdl4.multipage.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jbpm/tests/org.jboss.tools.flow.jpdl4.multipage.test
-plugin@org.jboss.tools.flow.common.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/flow/tests/org.jboss.tools.flow.common.test
+plugin@org.jboss.tools.flow.jpdl4.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/tests/org.jboss.tools.flow.jpdl4.test
+plugin@org.jboss.tools.flow.jpdl4.multipage.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/jbpm/tests/org.jboss.tools.flow.jpdl4.multipage.test
+plugin@org.jboss.tools.flow.common.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/flow/tests/org.jboss.tools.flow.common.test
Modified: branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/maps/test.map
===================================================================
--- branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/maps/test.map 2010-04-07 14:51:42 UTC (rev 21306)
+++ branches/modular_build/jbpm/releng/org.jboss.tools.jbpm4.releng/maps/test.map 2010-04-07 14:54:44 UTC (rev 21307)
@@ -1,2 +1,2 @@
-plugin@org.eclipse.test=v20080313,:pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse,
-fragment@org.eclipse.ant.optional.junit=v20070202,:pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse,
+plugin@org.eclipse.test=HEAD,:pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse,
+fragment@org.eclipse.ant.optional.junit=HEAD,:pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse,
14 years, 9 months
JBoss Tools SVN: r21306 - branches/modular_build/bpel/releng/maps.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-07 10:51:42 -0400 (Wed, 07 Apr 2010)
New Revision: 21306
Modified:
branches/modular_build/bpel/releng/maps/project.map
Log:
fix trunk -> branches/modular_build
Modified: branches/modular_build/bpel/releng/maps/project.map
===================================================================
--- branches/modular_build/bpel/releng/maps/project.map 2010-04-07 13:39:19 UTC (rev 21305)
+++ branches/modular_build/bpel/releng/maps/project.map 2010-04-07 14:51:42 UTC (rev 21306)
@@ -17,7 +17,7 @@
plugin@org.jboss.tools.bpel.cheatsheet=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/plugins/org.jboss.tools.bpel.cheatsheet
plugin@org.jboss.tools.bpel.runtimes=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/plugins/org.jboss.tools.bpel.runtimes
-feature@org.jboss.tools.bpel.tests.sdk.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/features/org.jboss.tools.bpel.tests.sdk.feature
+feature@org.jboss.tools.bpel.tests.sdk.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/branches/modular_build/bpel/features/org.jboss.tools.bpel.tests.sdk.feature
feature@org.jboss.tools.bpel.tests.feature=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/features/org.jboss.tools.bpel.tests.feature
plugin@org.eclipse.tools.bpel.ui.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/tests/org.eclipse.tools.bpel.ui.test
plugin@org.jboss.tools.bpel.ui.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/bpel/tests/org.jboss.tools.bpel.ui.test
14 years, 9 months