JBoss Tools SVN: r28443 - trunk/build/aggregate/site.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-01-20 15:54:10 -0500 (Thu, 20 Jan 2011)
New Revision: 28443
Modified:
trunk/build/aggregate/site/build.xml
Log:
add filename, filesize, filemd5 to available metadata xml properties
Modified: trunk/build/aggregate/site/build.xml
===================================================================
--- trunk/build/aggregate/site/build.xml 2011-01-20 19:25:41 UTC (rev 28442)
+++ trunk/build/aggregate/site/build.xml 2011-01-20 20:54:10 UTC (rev 28443)
@@ -96,7 +96,7 @@
<var name="relativePath" unset="true" />
<for list="${ALL_ZIPS}" delimiter=", " keepgoing="true" param="zipPath">
<sequential>
- <propertyregex override="true" property="relativePath" defaultvalue="" input="@{zipPath}" regexp="(.+)/([^/]+.zip)" replace="\1" />
+ <propertyregex override="true" property="relativePath" defaultvalue="" input="@{zipPath}" regexp="(.+)/([^/]+\.zip)" replace="\1" />
<propertyregex override="true" property="svnrevPath" defaultvalue="" input="@{zipPath}" regexp=".zip" replace=".SVN_REVISION" />
<propertyregex override="true" property="svnrevPath" defaultvalue="${svnrevPath}" input="${svnrevPath}" regexp="-Sources-|-Update-" replace="-" />
@@ -104,6 +104,8 @@
<propertyregex override="true" property="buildPropertiesPath" defaultvalue="" input="@{zipPath}" regexp=".zip" replace=".build.properties" />
<propertyregex override="true" property="buildPropertiesPath" defaultvalue="${buildPropertiesPath}" input="${buildPropertiesPath}" regexp="-Sources-|-Update-" replace="-" />
+ <propertyregex override="true" property="filePrefix" defaultvalue="@{zipPath}" input="@{zipPath}" regexp="(.+)/([^/]+)\.zip" replace="\2.build.properties" />
+
<mkdir dir="${aggregate.zips.dir}/${relativePath}" />
<!-- fetch zips to local dir -->
<echo level="verbose">repoNum = @{repoNum}
@@ -117,7 +119,8 @@
<if>
<isset property="isTest" />
<then>
- <touch file="${aggregate.zips.dir}/@{zipPath}" />
+ <!-- create a fake file of variable length (rather than using touch for zero-length one) -->
+ <echo file="${aggregate.zips.dir}/@{zipPath}">${aggregate.zips.dir}/@{zipPath}</echo>
</then>
<else>
<var name="wget.return" unset="true" />
@@ -135,6 +138,27 @@
</else>
</if>
+ <!-- set variable for filename -->
+ <echo file="${aggregate.zips.dir}/build.properties.file.txt" append="true">${filePrefix}.filename = @{zipPath}
+</echo>
+ <!-- set variable for filesize in Kb -->
+ <length file="${aggregate.zips.dir}/@{zipPath}" property="fs.length.b" />
+ <math operand2="${fs.length.b}" operation="/" operand1="1024" result="fs.length.kb" datatype="float" />
+ <!-- <math operand2="${fs.length.b}" operation="/" operand1="1048576" result="fs.length.mb" datatype="float"/> -->
+ <echo level="verbose">${aggregate.zips.dir}/@{zipPath}: ${fs.length.kb} Kb, ${fs.length.mb} Mb</echo>
+ <echo file="${aggregate.zips.dir}/build.properties.file.txt" append="true">${filePrefix}.filesize = ${fs.length.kb} Kb
+</echo>
+ <var name="fs.length.b" unset="true" />
+ <var name="fs.length.kb" unset="true" />
+
+ <!-- set variable for filemd5 -->
+ <checksum file="${aggregate.zips.dir}/@{zipPath}" property="${filePrefix}.filemd5" />
+ <propertycopy from="${filePrefix}.filemd5" property="tempmd5" />
+ <echo file="${aggregate.zips.dir}/build.properties.file.txt" append="true">${filePrefix}.filemd5 = ${tempmd5}
+</echo>
+ <var name="${filePrefix}.filemd5" unset="true" />
+ <var name="tempmd5" unset="true" />
+
<!-- rename the svn and build properties files so they align with the zip names -->
<if>
<available file="${svnRevTXT}" type="file" />
@@ -414,8 +438,17 @@
<delete dir="${aggregate.zips.dir}" quiet="true" />
</target>
- <target name="collect.metadata" description="collect svn revision info + other metadata (JOB_NAME, BUILD_ID, BUILD_NUMBER, WORKSPACE, HUDSON_SLAVE)">
+ <target name="collect.metadata" description="collect svn revision info + other metadata (JOB_NAME, BUILD_ID, BUILD_NUMBER, WORKSPACE, HUDSON_SLAVE), zip file names+sizes+md5sums">
<property name="aggregate.zips.dir" value="${output.dir}/zips" />
+
+ <!-- load file properties (name, size, md5sum) -->
+ <if>
+ <available file="${aggregate.zips.dir}/build.properties.file.txt" type="file" />
+ <then>
+ <property file="${aggregate.zips.dir}/build.properties.file.txt" />
+ </then>
+ </if>
+
<!-- for all build.properties.txt files in zips/ folder -->
<for param="propsfile">
<path>
@@ -540,7 +573,7 @@
</for>
<!-- dump properties to an XML file, filtering for only those properties we care about -->
- <echoproperties format="xml" destfile="${aggregate.zips.dir}/allprops.xml">
+ <echoproperties format="xml" destfile="${aggregate.zips.dir}/build.properties.all.xml">
<propertyset>
<propertyref regex=".*\.build\.properties" />
</propertyset>
15 years, 2 months
JBoss Tools SVN: r28442 - workspace/bfitzpat/org.jboss.tools.py.project.converter/src.
by jbosstools-commits@lists.jboss.org
Author: bfitzpat
Date: 2011-01-20 14:25:41 -0500 (Thu, 20 Jan 2011)
New Revision: 28442
Modified:
workspace/bfitzpat/org.jboss.tools.py.project.converter/src/converter.py
Log:
Update to migration script for JBDS-1520
Modified: workspace/bfitzpat/org.jboss.tools.py.project.converter/src/converter.py
===================================================================
--- workspace/bfitzpat/org.jboss.tools.py.project.converter/src/converter.py 2011-01-20 19:02:37 UTC (rev 28441)
+++ workspace/bfitzpat/org.jboss.tools.py.project.converter/src/converter.py 2011-01-20 19:25:41 UTC (rev 28442)
@@ -45,12 +45,14 @@
for esbfile in variant_esb_filenames:
copied = file_handler.copy_file_to_metainfdir(in_dir, eclipse_dir, esbfile)
if copied:
-# global isesb
isesb = True
# copy any jboss-esb.properties files to META-INF dir
- jbossesbprops = 'jboss-esb.properties'
- file_handler.copy_file_to_metainfdir(in_dir, eclipse_dir, jbossesbprops)
+ variant_esbprops_filenames = [ 'jboss-esb.properties', 'jbossesb-properties.xml']
+ for esbpropsfile in variant_esbprops_filenames:
+ copied = file_handler.copy_file_to_metainfdir(in_dir, eclipse_dir, esbpropsfile)
+ if copied:
+ isesb = True
# copy any log4j.xml files to esbcontent dir
log4jxml = 'log4j.xml'
15 years, 2 months
JBoss Tools SVN: r28441 - trunk/build/aggregate/site.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-01-20 14:02:37 -0500 (Thu, 20 Jan 2011)
New Revision: 28441
Modified:
trunk/build/aggregate/site/build.xml
Log:
implement collect.metadata and test.collect.metadata tasks to fetch metadata from upstream jobs' staging output
Modified: trunk/build/aggregate/site/build.xml
===================================================================
--- trunk/build/aggregate/site/build.xml 2011-01-20 19:02:19 UTC (rev 28440)
+++ trunk/build/aggregate/site/build.xml 2011-01-20 19:02:37 UTC (rev 28441)
@@ -395,7 +395,6 @@
<param name="inputRepo3" value="http://download.jboss.org/jbosstools/builds/staging/jbosstools-3.2_trunk...." />
<param name="inputRepo4" value="http://download.jboss.org/jbosstools/builds/staging/jbosstools-savara-1.1..." />
<param name="inputRepo5" value="http://download.jboss.org/jbosstools/builds/staging/jbosstools-savara-1.1..." />
-
</antcall>
</target>
@@ -415,18 +414,152 @@
<delete dir="${aggregate.zips.dir}" quiet="true" />
</target>
- <target name="collect.metadata" description="collect svn revision files + other metadata (JOB_NAME, BUILD_ID, BUILD_NUMBER, WORKSPACE, HUDSON_SLAVE)">
- <!-- TODO: write this method -->
+ <target name="collect.metadata" description="collect svn revision info + other metadata (JOB_NAME, BUILD_ID, BUILD_NUMBER, WORKSPACE, HUDSON_SLAVE)">
+ <property name="aggregate.zips.dir" value="${output.dir}/zips" />
+ <!-- for all build.properties.txt files in zips/ folder -->
+ <for param="propsfile">
+ <path>
+ <fileset dir="${aggregate.zips.dir}" includes="*.build.properties.txt, **/*.build.properties.txt" />
+ </path>
+ <sequential>
+ <!-- load properties file using a prefix which relates to the associated prop file -->
+ <propertyregex override="true" property="prefix" defaultvalue="" input="@{propsfile}" regexp=".+/([^/]+\.build\.properties)\.txt" replace="\1" />
+ <echo level="verbose">Read ${prefix} from @{propsfile}</echo>
+
+ <property file="@{propsfile}" prefix="${prefix}" />
+
+ <!-- now load SVN revs -->
+ <propertyregex override="true" property="svnrevTXT" defaultvalue="" input="@{propsfile}" regexp="\.build\.properties\.txt" replace=".SVN_REVISION.txt" />
+ <propertyregex override="true" property="svnrevXML" defaultvalue="" input="@{propsfile}" regexp="\.build\.properties\.txt" replace=".SVN_REVISION.xml" />
+ <if>
+ <available file="${svnrevXML}" type="file" />
+ <then>
+ <!-- XML way: load into .revision.module and .revision.revision -->
+ <xmlproperty file="${svnrevXML}" collapseAttributes="true" prefix="${prefix}" keeproot="false" />
+ <!-- purge the "<changeSet><kind>" entry if present -->
+ <if>
+ <isset property="${prefix}.kind" />
+ <then>
+ <var name="${prefix}.kind" unset="true" />
+ </then>
+ </if>
+
+ <!-- TXT way: load into .SVN_REVISION -->
+ <propertycopy from="${prefix}.revision.module" property="temprm.all" override="true" />
+ <propertycopy from="${prefix}.revision.revision" property="temprr.all" override="true" />
+ <var name="i" value="0" />
+ <for list="${temprm.all}" delimiter=", " param="module">
+ <sequential>
+ <math result="i" operand1="1" operation="+" operand2="${i}" datatype="int" />
+ <var name="j" value="0" />
+ <for list="${temprr.all}" delimiter=", " param="revision">
+ <sequential>
+ <math result="j" operand1="1" operation="+" operand2="${j}" datatype="int" />
+ <if>
+ <equals arg1="${i}" arg2="${j}" />
+ <then>
+ <var name="temprr" value="@{revision}" />
+ <if>
+ <isset property="${prefix}.SVN_REVISION" />
+ <then>
+ <propertycopy from="${prefix}.SVN_REVISION" property="temp.all" override="true" />
+ <var name="${prefix}.SVN_REVISION" value="${temp.all},@{module}@${temprr}" />
+ <var name="temp.all" unset="true" />
+ </then>
+ <else>
+ <var name="${prefix}.SVN_REVISION" value="@{module}@${temprr}" />
+ </else>
+ </if>
+ <var name="temprr" unset="true" />
+ </then>
+ </if>
+ </sequential>
+ </for>
+ <var name="j" unset="true" />
+ </sequential>
+ </for>
+ <var name="i" unset="true" />
+ <var name="temprm.all" unset="true" />
+ <var name="temprr.all" unset="true" />
+ </then>
+ <elseif>
+ <available file="${svnrevTXT}" type="file" />
+ <then>
+ <!-- TXT way: load into .SVN_REVISION -->
+ <loadfile property="${prefix}.SVN_REVISION" srcFile="${svnrevTXT}" />
+ <propertycopy from="${prefix}.SVN_REVISION" property="temp" />
+ <propertyregex override="true" property="temp" defaultvalue="${temp}" input="${temp}" regexp="[ \n\t]+" replace="," />
+ <propertyregex override="true" property="${prefix}.SVN_REVISION" defaultvalue="${temp}" input="${temp}" regexp=",$" replace="" />
+
+ <!-- XML way: load into .revision.module and .revision.revision -->
+ <for list="${temp}" delimiter="," param="pair">
+ <sequential>
+ <propertyregex override="true" property="temprm" defaultvalue="@{pair}" input="@{pair}" regexp="(.+)(a)(.+)" replace="\1" />
+ <propertyregex override="true" property="temprr" defaultvalue="@{pair}" input="@{pair}" regexp="(.+)(a)(.+)" replace="\2" />
+ <if>
+ <isset property="${prefix}.revision.module" />
+ <then>
+ <propertycopy from="${prefix}.revision.module" property="temprm.all" override="true" />
+ <propertycopy from="${prefix}.revision.revision" property="temprr.all" override="true" />
+ <var name="${prefix}.revision.module" value="${temprm.all},${temprm}" />
+ <var name="${prefix}.revision.revision" value="${temprr.all},${temprr}" />
+ <var name="temprm.all" unset="true" />
+ <var name="temprr.all" unset="true" />
+ </then>
+ <else>
+ <var name="${prefix}.revision.module" value="${temprm}" />
+ <var name="${prefix}.revision.revision" value="${temprr}" />
+ </else>
+ </if>
+ <var name="temprm" unset="true" />
+ <var name="temprr" unset="true" />
+ </sequential>
+ </for>
+ <var name="temp" unset="true" />
+ </then>
+ </elseif>
+ </if>
+
+ <var name="prefix" unset="true" />
+ </sequential>
+
+ </for>
+ <for param="svnrevfile">
+ <path>
+ <fileset dir="${aggregate.zips.dir}" includes="*.SVN_REVISION.txt, **/*.SVN_REVISION.txt" />
+ </path>
+ <sequential>
+ <!-- load properties file using a prefix which relates to the associated prop file -->
+ <propertyregex override="true" property="prefix" defaultvalue="" input="@{propsfile}" regexp=".+/([^/]+\.build\.properties)\.txt" replace="\1" />
+ <echo level="verbose">Read ${prefix} from @{propsfile}</echo>
+
+ <property file="@{propsfile}" prefix="${prefix}" />
+
+ <var name="prefix" unset="true" />
+ </sequential>
+
+ </for>
+ <!-- dump properties to an XML file, filtering for only those properties we care about -->
+ <echoproperties format="xml" destfile="${aggregate.zips.dir}/allprops.xml">
+ <propertyset>
+ <propertyref regex=".*\.build\.properties" />
+ </propertyset>
+ </echoproperties>
+
</target>
+ <target name="test.collect.metadata" depends="init">
+ <property name="isTest" value="true" />
+ <antcall target="collect.metadata">
+ </antcall>
+ </target>
+
+ <!-- TODO: write this method -->
<target name="create.summary.file" description="create summary file with list of generated files, sizes, and SVN revisions all linked and ordered by source build job">
- <!-- TODO: write this method -->
</target>
- <target name="test.create.summary.file" depends="test.collect.zips">
+ <target name="test.create.summary.file" depends="test.collect.zips,test.collect.metadata">
<property name="isTest" value="true" />
- <antcall target="collect.metadata">
- </antcall>
<antcall target="create.summary.file">
</antcall>
</target>
15 years, 2 months
JBoss Tools SVN: r28440 - trunk/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-01-20 14:02:19 -0500 (Thu, 20 Jan 2011)
New Revision: 28440
Modified:
trunk/build/publishUpdateZipToStaging.sh
Log:
0644 -> 0755
Modified: trunk/build/publishUpdateZipToStaging.sh
===================================================================
Property changes on: trunk/build/publishUpdateZipToStaging.sh
___________________________________________________________________
Name: svn:executable
+ *
15 years, 2 months
JBoss Tools SVN: r28439 - in trunk/documentation/whatsnew/cdi: images and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2011-01-20 12:30:25 -0500 (Thu, 20 Jan 2011)
New Revision: 28439
Added:
trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.CR1.html
trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/
trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/DeleteAllInjectedConstructors1.png
trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/DeleteDisposerAnnotations1.png
trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/MakeFieldStaticNew.png
trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/NonBusinessMethodWithDisposerParameter2.png
trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/NonBusinessProducer.png
trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/NonBusinessProducer2.png
trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/annotation_literal.png
trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/beans_xml.png
trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/cdi.png
trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/cdiFacet.png
trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/keywords.png
trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/new_bean.png
trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/target_validation.png
trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/validation.png
Log:
https://issues.jboss.org/browse/JBIDE-8160 CDI Components N&N
Added: trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.CR1.html (rev 0)
+++ trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.CR1.html 2011-01-20 17:30:25 UTC (rev 28439)
@@ -0,0 +1,260 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Language" content="en-us" />
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<link rel="stylesheet" href="../whatsnew.css" />
+<title>CDI tools 3.2.0.CR1 What's New</title>
+</head>
+<body>
+<h1>CDI tools 3.2.0.CR1 What's New</h1>
+
+<p align="right"><a href="../index.html">< Main Index</a><!-- <a
+ href="../seam/seam-news-3.2.0.M2.html">Seam Tools News ></a> --> <a
+ href="../bpel/bpel-news-1.1.0.CR1.html">BPEL Tools News ></a></p>
+
+<table border="0" cellpadding="10" cellspacing="0" width="80%">
+ <tr>
+ <td colspan="2">
+ <hr />
+ <h3>Wizards</h3>
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p><b>New CDI Bean Wizard</b></p>
+ </td>
+ <td align="top">
+ <p>New CDI Bean wizard is now avaliable.</p>
+ <img src="images/3.2.0.CR1/new_bean.png"/>
+ <p><small><a
+ href="https://jira.jboss.org/browse/JBIDE-8124">Related Jira</a></small></p>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p><b>New Annotation Literal Wizard</b></p>
+ </td>
+ <td align="top">
+ <p>New Annotation Literal wizard for selected qualifier:</p>
+ <img src="images/3.2.0.CR1/annotation_literal.png"/>
+ <p><small><a
+ href="https://jira.jboss.org/browse/JBIDE-7875">Related Jira</a></small></p>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p><b>New beans.xml Wizard</b></p>
+ </td>
+ <td align="top">
+ <p>New beans.xml wizard is now available:</p>
+ <img src="images/3.2.0.CR1/beans_xml.png"/>
+ <p><small><a
+ href="https://jira.jboss.org/browse/JBIDE-7842">Related Jira</a></small></p>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p><b>Keywords for CDI Wizards</b></p>
+ </td>
+ <td align="top">
+ <p>Now it's possible to open CDI wizards using keywords such as <i>cdi, bean</i>, etc.:</p>
+ <img src="images/3.2.0.CR1/keywords.png"/>
+ <p><small><a
+ href="https://jira.jboss.org/browse/JBIDE-7802">Related Jira</a></small></p>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p><b>CDI Configuration Preset.</b></p>
+ </td>
+ <td align="top">
+ <p>New CDI configuration preset for Dynamic Web Project wizard is now available.</p>
+ <img src="images/3.2.0.CR1/cdi.png"/>
+ <p><small><a
+ href="https://jira.jboss.org/browse/JBIDE-7823"">Related Jira</a></small></p>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p><b>CDI Facet Install Page.</b></p>
+ </td>
+ <td align="top">
+ <p>There is no need to create a beans.xml file manually anymore when CDI facet is installed.</p>
+ <img src="images/3.2.0.CR1/cdiFacet.png"/>
+ <p><small><a
+ href="https://jira.jboss.org/browse/JBIDE-7803">Related Jira</a></small></p>
+ </td>
+ </tr>
+
+ <tr>
+ <td colspan="2">
+ <hr />
+ <h3>Project Validation</h3>
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p><b>CDI deployment problems validation.</b></p>
+ </td>
+ <td valign="top">
+ <p>The following CDI deployment problems described in JSR-299 Specification are now validated:
+ <ul>- Inconsistent specialization (JSR-299 �5.1.3);</ul>
+ <ul>- Ambiguous EL names (JSR-299 �5.3.1);</ul>
+ <ul>- Unproxyable bean types (JSR-299 �5.4.1);</ul>
+ <ul>- Decorator resolution (JSR-299 �8.3);</ul>
+ </p>
+ <img src="images/3.2.0.CR1/validation.png"/>
+ <p>Notice that the validator warning/error reference the section of
+ the JSR-299 specification it relates to.</p>
+ <p><small><a
+ href="https://jira.jboss.org/browse/JBIDE-6575">Related Jira</a></small></p>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p><b>CDI annotation types validation.</b></p>
+ </td>
+ <td valign="top">
+ <p>There are also a few new validation rules for @Target for CDI annotations:
+ <ul>- Interceptor binding types declared @Target(TYPE) may not be applied to interceptor binding types declared @Target({TYPE, METHOD}) (JSR-299 �9.1.1);</ul>
+ <ul>- If a stereotype declares interceptor bindings, it must be defined as @Target(TYPE) (JSR-299 �9.1.2);</ul>
+ <ul>- Stereotypes declared @Target(TYPE) may not be applied to stereotypes declared @Target({TYPE, METHOD, FIELD}), @Target(METHOD), @Target(FIELD) or @Target({METHOD, FIELD}). (JSR-299 �2.7.1.5);</ul>
+ </p>
+ <img src="images/3.2.0.CR1/target_validation.png"/>
+ <p><small><a
+ href="https://jira.jboss.org/browse/JBIDE-7895">Related Jira 1</a>,
+ <a href="https://jira.jboss.org/browse/JBIDE-7894">Related Jira 2</a>,
+ <a href="https://jira.jboss.org/browse/JBIDE-7897">Related Jira 3</a></small></p>
+ </td>
+ </tr>
+
+ <tr>
+ <td colspan="2">
+ <hr />
+ <h3>Quick Fixes</h3>
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p><b>Non-static method of a session bean is annotated @Produces, and the method is not a business method of the session bean</b></p>
+ </td>
+ <td valign="top">
+ <p>A few Quick Fixes for non-business methods of a session bean class which are annotated @Produces are now avaliable.</p>
+ <img src="images/3.2.0.CR1/NonBusinessProducer.png"/><br/><br/>
+ <img src="images/3.2.0.CR1/NonBusinessProducer2.png"/>
+ <p><small><a
+ href="https://jira.jboss.org/browse/JBIDE-7669">Related Jira</a></small></p>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p><b>Non-static field of a session bean is annotated @Produces</b></p>
+ </td>
+ <td valign="top">
+ <p>If a non-static field of a session bean class is annotated @Produces then this field can be made static via Quick Fix menu</p>
+ <img src="images/3.2.0.CR1/MakeFieldStaticNew.png"/>
+ <p><small><a
+ href="https://jira.jboss.org/browse/JBIDE-7674">Related Jira</a></small></p>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p><b>Bean class has more than one constructor annotated @Inject</b></p>
+ </td>
+ <td valign="top">
+ <p>If a bean class has more than one constructor annotated @Inject then the annotation can be removed from duplicated injected constructors via Quick Fix menu</p>
+ <img src="images/3.2.0.CR1/DeleteAllInjectedConstructors1.png"/>
+ <p><small><a
+ href="https://jira.jboss.org/browse/JBIDE-7675">Related Jira</a></small></p>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p><b>Multiple disposer methods for a single producer method</b></p>
+ </td>
+ <td valign="top">
+ <p>If there are multiple disposer methods for a single producer method then @Disposes annotation can be removed from all the duplicated methods except the seleceted one via Quick Fix menu</p>
+ <img src="images/3.2.0.CR1/DeleteDisposerAnnotations1.png"/>
+ <p><small><a
+ href="https://jira.jboss.org/browse/JBIDE-7673">Related Jira</a></small></p>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p><b>Non-static method of a session bean has a parameter annotated @Disposes/@Observes</b></p>
+ </td>
+ <td valign="top">
+ <p>If a non-static method of a session bean class has a parameter annotated @Disposes/@Observes then this method can be made a business method of the session bean via Quick Fix menu</p>
+ <img src="images/3.2.0.CR1/NonBusinessMethodWithDisposerParameter2.png"/>
+ <p><small><a
+ href="https://jira.jboss.org/browse/JBIDE-7672">Related Jira</a></small></p>
+ </td>
+ </tr>
+
+ <tr>
+ <td colspan="2">
+ <hr />
+ </td>
+ </tr>
+
+</table>
+
+</body>
+
+</html>
\ No newline at end of file
Property changes on: trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.CR1.html
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/DeleteAllInjectedConstructors1.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/DeleteAllInjectedConstructors1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/DeleteDisposerAnnotations1.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/DeleteDisposerAnnotations1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/MakeFieldStaticNew.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/MakeFieldStaticNew.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/NonBusinessMethodWithDisposerParameter2.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/NonBusinessMethodWithDisposerParameter2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/NonBusinessProducer.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/NonBusinessProducer.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/NonBusinessProducer2.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/NonBusinessProducer2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/annotation_literal.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/annotation_literal.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/beans_xml.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/beans_xml.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/cdi.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/cdi.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/cdiFacet.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/cdiFacet.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/keywords.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/keywords.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/new_bean.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/new_bean.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/target_validation.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/target_validation.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/validation.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/cdi/images/3.2.0.CR1/validation.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
15 years, 2 months
JBoss Tools SVN: r28438 - trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-01-20 08:49:16 -0500 (Thu, 20 Jan 2011)
New Revision: 28438
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVMessages.properties
Log:
missing text-key for Alias column (in TRUNK only, CR1 was updated)
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVMessages.properties
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVMessages.properties 2011-01-20 13:45:02 UTC (rev 28437)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVMessages.properties 2011-01-20 13:49:16 UTC (rev 28438)
@@ -76,6 +76,7 @@
CreateInstance.label=Launch Instance
NAME=Name
+ALIAS=Alias
ID=ID
HOSTNAME=Public Hostname
STATUS=State
15 years, 2 months
JBoss Tools SVN: r28437 - in trunk/documentation/whatsnew/jst: images and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2011-01-20 08:45:02 -0500 (Thu, 20 Jan 2011)
New Revision: 28437
Added:
trunk/documentation/whatsnew/jst/images/3.2.0.CR1/
trunk/documentation/whatsnew/jst/images/3.2.0.CR1/fn_import.png
trunk/documentation/whatsnew/jst/images/3.2.0.CR1/insert_tag.png
trunk/documentation/whatsnew/jst/jst-news-3.2.0.CR1.html
Log:
https://issues.jboss.org/browse/JBIDE-8166 JST/JSF Components N&N
Added: trunk/documentation/whatsnew/jst/images/3.2.0.CR1/fn_import.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/jst/images/3.2.0.CR1/fn_import.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/jst/images/3.2.0.CR1/insert_tag.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/jst/images/3.2.0.CR1/insert_tag.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/jst/jst-news-3.2.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/jst/jst-news-3.2.0.CR1.html (rev 0)
+++ trunk/documentation/whatsnew/jst/jst-news-3.2.0.CR1.html 2011-01-20 13:45:02 UTC (rev 28437)
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Language" content="en-us" />
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<link rel="stylesheet" href="../whatsnew.css" />
+<title>JST/JSF 3.2.0.CR1 What's New</title>
+</head>
+<body>
+<h1>JST/JSF 3.2.0.CR1 What's New</h1>
+
+<p align="right"><a href="../index.html">< Main
+ Index</a> <a href="../vpe/vpe-news-3.2.0.CR1.html">VPE Tools ></a></p>
+
+<table border="0" cellpadding="10" cellspacing="0" width="80%">
+<tr>
+ <td colspan="2">
+ <hr />
+ <h3>Palette</h3>
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p><b>JSP functions</b></p>
+ </td>
+ <td valign="top">
+ <p>Now it's possible to import JSP functions (not only tags) into JBoss Tools Palette.</p>
+ <img src="images/jsf2kickstart.png"/>
+ <p><small><a
+ href="https://jira.jboss.org/browse/JBIDE-5661">Related Jira</a></small></p>
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p><b>'Insert Tag' wizard</b></p>
+ </td>
+ <td valign="top">
+ <p>Wizard 'Insert Tag' opened on drop from Palette now shows most used attributes on a special tab to seporate them from all the available attributes.</p>
+ <img src="images/3.2.0.CR1/insert_tag.png"/>
+ <p><small><a
+ href="https://jira.jboss.org/browse/JBIDE-7830">Related Jira 1</a></small></p>
+ </td>
+ </tr>
+
+ <tr>
+ <td colspan="2">
+ <hr />
+ </td>
+ </tr>
+</table>
+
+</body>
+
+</html>
\ No newline at end of file
Property changes on: trunk/documentation/whatsnew/jst/jst-news-3.2.0.CR1.html
___________________________________________________________________
Name: svn:mime-type
+ text/plain
15 years, 2 months
JBoss Tools SVN: r28436 - in trunk/documentation/whatsnew/vpe: images and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: mareshkau
Date: 2011-01-20 08:27:21 -0500 (Thu, 20 Jan 2011)
New Revision: 28436
Added:
trunk/documentation/whatsnew/vpe/images/3.2.0.CR1/
trunk/documentation/whatsnew/vpe/images/3.2.0.CR1/new-window-side-by-side.png
trunk/documentation/whatsnew/vpe/images/3.2.0.CR1/side-by-side.png
trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.CR1.html
Log:
https://issues.jboss.org/browse/JBIDE-8168
Added: trunk/documentation/whatsnew/vpe/images/3.2.0.CR1/new-window-side-by-side.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/vpe/images/3.2.0.CR1/new-window-side-by-side.png
___________________________________________________________________
Name: svn:mime-type
+ image/png
Added: trunk/documentation/whatsnew/vpe/images/3.2.0.CR1/side-by-side.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/vpe/images/3.2.0.CR1/side-by-side.png
___________________________________________________________________
Name: svn:mime-type
+ image/png
Added: trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.CR1.html (rev 0)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.CR1.html 2011-01-20 13:27:21 UTC (rev 28436)
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Language" content="en-us" />
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<link rel="stylesheet" href="../whatsnew.css" />
+<title>What's New Visual Page Editor</title>
+</head>
+<body>
+<h1>What's New Visual Page Editor</h1>
+
+<p align="right"><a href="../index.html">< Main Index</a> <a
+ href="../portlet/portlet-news-1.0.0.CR1.html">Portal Tools ></a></p>
+<table border="0" cellpadding="10" cellspacing="0" width="80%">
+ <tr>
+ <td colspan="2">
+ <hr />
+ <h3>General</h3>
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left"><b>Side by side two-paned editor</b></td>
+ <td valign="top">
+ <p>Side by Side New editor command has been added to all eclipse editors.</p>
+ <p><img src="images/3.2.0.CR1/new-window-side-by-side.png"
+ alt="New Editor Command Side By Side To Existing One" /></p>
+ <p><img src="images/3.2.0.CR1/side-by-side.png"
+ alt="New Editor Command Side By Side To Existing One Execution" /></p>
+ <p><small>
+ <a href="https://issues.jboss.org/browse/JBIDE-6083">Related Jira</a>
+ </small></p>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <hr />
+ </td>
+ </tr>
+</table>
+
+</body>
+
+</html>
+
+
Property changes on: trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.CR1.html
___________________________________________________________________
Name: svn:mime-type
+ text/html
15 years, 2 months
JBoss Tools SVN: r28435 - in trunk/documentation/whatsnew/hibernate: images and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: vyemialyanchyk
Date: 2011-01-20 08:19:28 -0500 (Thu, 20 Jan 2011)
New Revision: 28435
Added:
trunk/documentation/whatsnew/hibernate/images/properties_for_configuration.png
Modified:
trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.CR1.html
Log:
https://issues.jboss.org/browse/JBIDE-8162
Hibernate Component N&N
Modified: trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.CR1.html 2011-01-20 12:14:39 UTC (rev 28434)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.CR1.html 2011-01-20 13:19:28 UTC (rev 28435)
@@ -19,7 +19,7 @@
<td colspan="2">
<hr/>
<h3>Query Editor</h3>
- <hr/>
+ <hr/>
</td>
</tr>
@@ -29,17 +29,34 @@
<p>Full list parameter value is shown in the text area for named parameters. The values are separated by the "|" symbol.
</p>
<p><img src="images/full_param_list.png"/></p>
- <p><small><a href="https://issues.jboss.org/browse/JBIDE-7771">Related jira</a></p>
+ <p><small><a href="https://issues.jboss.org/browse/JBIDE-7771">Related jira</a></small></p>
</td>
</tr>
-
<tr>
<td colspan="2">
<hr/>
+ <h3>Properties for Configuration node</h3>
+ <hr/>
</td>
</tr>
+ <tr>
+ <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>Configuration Properties</b></td>
+ <td valign="top">
+ <p>Display all properties for Configuration node for Hibernate Console Configuration.
+ </p>
+ <p><img src="images/properties_for_configuration.png"/></p>
+ <p><small><a href="https://issues.jboss.org/browse/JBIDE-7990">Related jira</a></small></p>
+ </td>
+ </tr>
+
+ <tr>
+ <td colspan="2">
+ <hr/>
+ </td>
+ </tr>
+
</table>
</body>
Added: trunk/documentation/whatsnew/hibernate/images/properties_for_configuration.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/hibernate/images/properties_for_configuration.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
15 years, 2 months
JBoss Tools SVN: r28434 - in trunk/documentation/whatsnew/hibernate: images and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dgeraskov
Date: 2011-01-20 07:14:39 -0500 (Thu, 20 Jan 2011)
New Revision: 28434
Added:
trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.CR1.html
trunk/documentation/whatsnew/hibernate/images/full_param_list.png
Log:
https://issues.jboss.org/browse/JBIDE-8162
Hibernate Component N&N
Added: trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.CR1.html (rev 0)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.CR1.html 2011-01-20 12:14:39 UTC (rev 28434)
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Language" content="en-us" />
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<link rel="stylesheet" href="../whatsnew.css"/>
+<title>Hibernate tools 3.4.0.CR1 What's New</title>
+</head>
+<body>
+<h1>Hibernate tools 3.4.0.CR1 What's New</h1>
+
+<p align="right"><a href="../index.html">< Main Index</a> <a href="../jst/jst-news-3.2.0.CR1.html">JST Tools ></a></p>
+
+<table border="0" cellpadding="10" cellspacing="0" width="80%">
+
+ <tr>
+ <td colspan="2">
+ <hr/>
+ <h3>Query Editor</h3>
+ <hr/>
+ </td>
+ </tr>
+
+ <tr>
+ <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>Query Parameters</b></td>
+ <td valign="top">
+ <p>Full list parameter value is shown in the text area for named parameters. The values are separated by the "|" symbol.
+ </p>
+ <p><img src="images/full_param_list.png"/></p>
+ <p><small><a href="https://issues.jboss.org/browse/JBIDE-7771">Related jira</a></p>
+ </td>
+ </tr>
+
+
+ <tr>
+ <td colspan="2">
+ <hr/>
+ </td>
+ </tr>
+
+</table>
+
+</body>
+
+</html>
+
+
Added: trunk/documentation/whatsnew/hibernate/images/full_param_list.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/hibernate/images/full_param_list.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
15 years, 2 months