JBoss Tools SVN: r34471 - trunk/documentation/whatsnew/seam.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2011-08-31 19:50:18 -0400 (Wed, 31 Aug 2011)
New Revision: 34471
Added:
trunk/documentation/whatsnew/seam/seam-news-3.3.0.M3.html
Log:
https://issues.jboss.org/browse/JBIDE-9621 Seam Component N&N
Added: trunk/documentation/whatsnew/seam/seam-news-3.3.0.M3.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-3.3.0.M3.html (rev 0)
+++ trunk/documentation/whatsnew/seam/seam-news-3.3.0.M3.html 2011-08-31 23:50:18 UTC (rev 34471)
@@ -0,0 +1,54 @@
+<?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>Seam 2 tools 3.3.0.M3 What's New</title>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+<body>
+<h1>Seam 2 tools 3.3.0.M3 What's New</h1>
+
+<p align="right"><a href="../index.html">< Main Index</a> <a
+ href="../forge/forge-news-3.3.0.M3.html">Forge Tools ></a></p>
+
+<table border="0" cellpadding="10" cellspacing="0" width="80%">
+<tr>
+ <td colspan="2">
+ <hr />
+ <h3>New name for Seam Tools</h3>
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top">
+ <p>We renamed Seam UI's such as Seam Perspective, New Seam Project Wizard, etc., to Seam 2 in order not to confuse users who are looking for Seam 3 Tooling. JBoss Tools also support Seam 3 but it's a separate tooling included in CDI Tools.<br/>
+ <p><small><a href="https://jira.jboss.org/browse/JBIDE-8680">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/seam/seam-news-3.3.0.M3.html
___________________________________________________________________
Added: svn:mime-type
+ text/plain
13 years, 3 months
JBoss Tools SVN: r34470 - trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/include.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2011-08-31 19:28:56 -0400 (Wed, 31 Aug 2011)
New Revision: 34470
Modified:
trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/include/IncludeContextBuilder.java
Log:
Removed unused and not needed methods
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/include/IncludeContextBuilder.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/include/IncludeContextBuilder.java 2011-08-31 23:17:34 UTC (rev 34469)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/include/IncludeContextBuilder.java 2011-08-31 23:28:56 UTC (rev 34470)
@@ -45,7 +45,7 @@
public static final String ATT_URI = "uri"; //$NON-NLS-1$
public static final String ATT_NAME = "name"; //$NON-NLS-1$
- private final List<IncludeContextDefinition> fIncludeContextDefs = new ArrayList<IncludeContextDefinition>();;
+ private final List<IncludeContextDefinition> fIncludeContextDefs = new ArrayList<IncludeContextDefinition>();
private IncludeContextDefinition fCurrentIncludeDefinition;
private static final IncludeContextBuilder fInstance = new IncludeContextBuilder();
@@ -140,14 +140,11 @@
* @param element
* @return
*/
- private boolean processTagElement(IConfigurationElement element) {
+ private void processTagElement(IConfigurationElement element) {
String theName = getName(element);
-
- if (fCurrentIncludeDefinition != null && theName != null) {
- return fCurrentIncludeDefinition.addTag(theName, element);
+ if(fCurrentIncludeDefinition != null && theName != null) {
+ fCurrentIncludeDefinition.addTag(theName, element);
}
-
- return false;
}
/**
@@ -186,11 +183,7 @@
*/
private boolean processContentTypeElement(IConfigurationElement element) {
String theId = getId(element);
-
- if (fCurrentIncludeDefinition != null && theId != null) {
- return fCurrentIncludeDefinition.addContentType(theId, element);
- }
- return false;
+ return fCurrentIncludeDefinition != null && theId != null && fCurrentIncludeDefinition.addContentType(theId, element);
}
/* (non-Javadoc)
@@ -235,15 +228,6 @@
}
/**
- * Returns all the definitions
- *
- * @return
- */
- private List<IncludeContextDefinition> getIncludeContextDefinitions() {
- return fIncludeContextDefs;
- }
-
- /**
* Returns the attributes for the specified include tag
*
* @param uri
@@ -251,7 +235,7 @@
* @return
*/
public static String[] getIncludeAttributes(String uri, String tagName) {
- List<IncludeContextDefinition> defs = getInstance().getIncludeContextDefinitions();
+ List<IncludeContextDefinition> defs = fInstance.fIncludeContextDefs;
String[] result = EMPTY;
if(!defs.isEmpty()) {
List<String> attrs = new ArrayList<String>();
@@ -280,7 +264,7 @@
*/
public static String getContextType(String contentType) {
if (contentType != null) {
- List<IncludeContextDefinition> defs = getInstance().getIncludeContextDefinitions();
+ List<IncludeContextDefinition> defs = fInstance.fIncludeContextDefs;
for (IncludeContextDefinition def : defs) {
String contextType = def.getContextType(contentType);
if (contextType != null) {
@@ -301,7 +285,7 @@
*/
public static boolean isCSSStyleSheetContainer(String uri, String tagName) {
boolean isHolder = false;
- List<IncludeContextDefinition> defs = getInstance().getIncludeContextDefinitions();
+ List<IncludeContextDefinition> defs = fInstance.fIncludeContextDefs;
for (IncludeContextDefinition def : defs) {
if (uri.equals(def.getUri())) {
@@ -330,7 +314,7 @@
*/
public static boolean isJSF2CSSStyleSheetContainer(String uri, String tagName) {
boolean isHolder = false;
- List<IncludeContextDefinition> defs = getInstance().getIncludeContextDefinitions();
+ List<IncludeContextDefinition> defs = fInstance.fIncludeContextDefs;
for (IncludeContextDefinition def : defs) {
if (uri.equals(def.getUri())) {
@@ -359,7 +343,7 @@
*/
public static String[] getCSSStyleSheetAttributes(String uri, String tagName) {
String[] result = EMPTY;
- List<IncludeContextDefinition> defs = getInstance().getIncludeContextDefinitions();
+ List<IncludeContextDefinition> defs = fInstance.fIncludeContextDefs;
if(!defs.isEmpty()) {
List<String> attrs = new ArrayList<String>();
for (IncludeContextDefinition def : defs) {
@@ -387,7 +371,7 @@
public static String[] getJSF2CSSStyleSheetAttributes(String uri, String tagName) {
String[] result = EMPTY;
if (uri != null) {
- List<IncludeContextDefinition> defs = getInstance().getIncludeContextDefinitions();
+ List<IncludeContextDefinition> defs = fInstance.fIncludeContextDefs;
List<String> attrs = new ArrayList<String>();
for (IncludeContextDefinition def : defs) {
if (uri.equals(def.getUri())) {
13 years, 3 months
JBoss Tools SVN: r34469 - trunk/documentation/guides/JBDS_Release_Notes/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2011-08-31 19:17:34 -0400 (Wed, 31 Aug 2011)
New Revision: 34469
Added:
trunk/documentation/guides/JBDS_Release_Notes/en-US/5.0.0_Release_Notes.ent
trunk/documentation/guides/JBDS_Release_Notes/en-US/5.0.0_Release_Notes.xml
Removed:
trunk/documentation/guides/JBDS_Release_Notes/en-US/4.1.0_Release_Notes.ent
trunk/documentation/guides/JBDS_Release_Notes/en-US/4.1.0_Release_Notes.xml
Modified:
trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml
trunk/documentation/guides/JBDS_Release_Notes/en-US/Component_Versions.xml
trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml
trunk/documentation/guides/JBDS_Release_Notes/en-US/Known_Issues.xml
trunk/documentation/guides/JBDS_Release_Notes/en-US/New_Features.xml
trunk/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml
trunk/documentation/guides/JBDS_Release_Notes/en-US/Revision_History.xml
trunk/documentation/guides/JBDS_Release_Notes/en-US/master.xml
Log:
updated to begin JBDS 5.0 release notes
Deleted: trunk/documentation/guides/JBDS_Release_Notes/en-US/4.1.0_Release_Notes.ent
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/4.1.0_Release_Notes.ent 2011-08-31 22:54:12 UTC (rev 34468)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/4.1.0_Release_Notes.ent 2011-08-31 23:17:34 UTC (rev 34469)
@@ -1,4 +0,0 @@
-<!ENTITY PRODUCT "JBoss Developer Studio">
-<!ENTITY BOOKID "4.1.0_Release_Notes">
-<!ENTITY YEAR "2011">
-<!ENTITY HOLDER "Red Hat">
Deleted: trunk/documentation/guides/JBDS_Release_Notes/en-US/4.1.0_Release_Notes.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/4.1.0_Release_Notes.xml 2011-08-31 22:54:12 UTC (rev 34468)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/4.1.0_Release_Notes.xml 2011-08-31 23:17:34 UTC (rev 34469)
@@ -1,12 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-
-<!-- This article will dsplay the release notes for version 4.0.0, and be found at http://docs.redhat.com/docs/en-US/JBoss_Developer_Studio/4.0/html-single/... -->
-
-<article>
- <xi:include href="Article_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
- <xi:include href="Overview.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
- <xi:include href="Component_Versions.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
- <xi:include href="Fixed_Issues.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
- <xi:include href="Known_Issues.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
- <xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
-</article>
Added: trunk/documentation/guides/JBDS_Release_Notes/en-US/5.0.0_Release_Notes.ent
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/5.0.0_Release_Notes.ent (rev 0)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/5.0.0_Release_Notes.ent 2011-08-31 23:17:34 UTC (rev 34469)
@@ -0,0 +1,4 @@
+<!ENTITY PRODUCT "JBoss Developer Studio">
+<!ENTITY BOOKID "5.0.0_Release_Notes">
+<!ENTITY YEAR "2011">
+<!ENTITY HOLDER "Red Hat">
Property changes on: trunk/documentation/guides/JBDS_Release_Notes/en-US/5.0.0_Release_Notes.ent
___________________________________________________________________
Added: svn:executable
+ *
Added: trunk/documentation/guides/JBDS_Release_Notes/en-US/5.0.0_Release_Notes.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/5.0.0_Release_Notes.xml (rev 0)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/5.0.0_Release_Notes.xml 2011-08-31 23:17:34 UTC (rev 34469)
@@ -0,0 +1,12 @@
+<?xml version='1.0' encoding='utf-8' ?>
+
+<!-- This article will dsplay the release notes for version 4.0.0, and be found at http://docs.redhat.com/docs/en-US/JBoss_Developer_Studio/4.0/html-single/... -->
+
+<article>
+ <xi:include href="Article_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+ <xi:include href="Overview.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+ <xi:include href="Component_Versions.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+ <xi:include href="Fixed_Issues.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+ <xi:include href="Known_Issues.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+ <xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+</article>
Property changes on: trunk/documentation/guides/JBDS_Release_Notes/en-US/5.0.0_Release_Notes.xml
___________________________________________________________________
Added: svn:executable
+ *
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml 2011-08-31 22:54:12 UTC (rev 34468)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml 2011-08-31 23:17:34 UTC (rev 34469)
@@ -3,12 +3,12 @@
<!-- Modify the title tag to change which book will be built -->
<articleinfo>
- <title>4.1.0 Release Notes</title>
+ <title>5.0.0 Release Notes</title>
<subtitle>Information about the changes made for this release of the JBoss Developer Studio.</subtitle>
<productname>JBoss Developer Studio</productname>
- <productnumber>4.1</productnumber>
+ <productnumber>5.0</productnumber>
<edition>0</edition>
- <pubsnumber>2</pubsnumber>
+ <pubsnumber>1</pubsnumber>
<abstract>
<para>
These release notes contain important information related to the JBoss Developer Studio. New features, known issues, resources, and other current issues are addressed here.
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/Component_Versions.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Component_Versions.xml 2011-08-31 22:54:12 UTC (rev 34468)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Component_Versions.xml 2011-08-31 23:17:34 UTC (rev 34469)
@@ -12,12 +12,12 @@
</listitem>
<listitem>
<para>
- JBoss Tools 3.2.1
+ JBoss Tools 3.3.0
</para>
</listitem>
<listitem>
<para>
- JBoss Enterprise Application Platform 5.1
+ JBoss Enterprise Application Platform 6.0
</para>
</listitem>
</itemizedlist>
@@ -26,9 +26,4 @@
The Enterprise Application Platform Server has been redefined for the enterprise market to a level where direct association to a community release can no longer be drawn.
</para>
</note>
- <important>
- <para>
- The Drools Rule editor has been removed from this release. For further information on why this has occurred, see <ulink url="https://issues.jboss.org/browse/JBIDE-9052">JBIDE-9052</ulink>
- </para>
- </important>
</section>
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml 2011-08-31 22:54:12 UTC (rev 34468)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml 2011-08-31 23:17:34 UTC (rev 34469)
@@ -1,35 +1,35 @@
<?xml version='1.0' encoding='utf-8' ?>
<section id="Issues-fixed-in-this-release">
<title>
- Features added and issues fixed in version 4.1.0
+ Features added and issues fixed in version 5.0.0
</title>
<!-- <para>
The following list highlights new features that have been added to this release, as well as listing notable bug fixes. You can find a complete list of bug fixes <ulink url="https://issues.jboss.org/browse/JBIDE">here</ulink>.
</para> -->
- <formalpara>
+<!-- <formalpara>
<title>BPEL</title>
<para>
<itemizedlist>
<listitem>
<para>
- <ulink url="http://jira.jboss.com/jira/browse/JBDS-1610">JBDS-1610</ulink>: BPEL tooling is now supported as an additional tool for JBoss Developer Studio. Many bug fixes and enhancements have been applied to it in order to bring it from a technology preview to a supported component.
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-0000">JBIDE-0000</ulink>:
</para>
</listitem>
</itemizedlist>
</para>
- </formalpara>
- <formalpara>
+ </formalpara> -->
+ <!-- <formalpara>
<title>Contexts and Dependency Injection (CDI)</title>
<para>
<itemizedlist>
<listitem>
<para>
- <ulink url="http://jira.jboss.com/jira/browse/JBIDE-3126">JBIDE-3126</ulink>: Validation for the serializablity of injected beans into passive-scoped beans has been added. This ensures that if a bean belongs to <property>@SessionScoped</property>, <property>@ConversationScope</property> or any <property>@NormalScope(passivating=true)</property> and it is not stateful (<property>@Stateful</property>), the bean is checked to see if it implements <classname>java.io.Serializible</classname>. If it does implement the Serializible class, then it is marked as an error.
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-0000">JBIDE-0000</ulink>:
</para>
</listitem>
</itemizedlist>
</para>
- </formalpara>
+ </formalpara> -->
<!-- Deltacloud is only shipped with JBoss.org -->
<!--
<formalpara>
@@ -56,28 +56,18 @@
</itemizedlist>
</para>
</formalpara> -->
- <formalpara>
+<!-- <formalpara>
<title>ESB</title>
<para>
<itemizedlist>
<listitem>
<para>
- <ulink url="http://jira.jboss.com/jira/browse/JBIDE-8569">JBIDE-8569</ulink>: Classes within the JBoss ESB Editor and ESB Message Persister are now filtered within the <guilabel>Select class</guilabel> dialog that is invoked through the <guilabel>Browse</guilabel> button. Content assist proposals are also filtered within the text field instead of a drop-down list, providing a significant performance enhancement over previously voiced solutions.
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-0000">JBIDE-0000</ulink>:
</para>
</listitem>
- <listitem>
- <para>
- <ulink url="http://jira.jboss.com/jira/browse/JBIDE-8567">JBIDE-8567</ulink>: A drop-down list has been added to the JBoss ESB Editor and Route in order to allow selection of a predefined <guilabel>Service Category</guilabel> or <guilabel>Service Name</guilabel>.
- </para>
- </listitem>
- <listitem>
- <para>
- <ulink url="http://jira.jboss.com/jira/browse/JBIDE-8466">JBIDE-8466</ulink>: The <guilabel>Rule Agent Properties</guilabel> property has been added to the <guilabel>Content Based Router Action</guilabel> section of the JBoss ESB Editor. The following actions are now also supported through drop-down lists: <property>org.jboss.soa.esb.actions.ContentBasedWiretap</property> and <property>org.jboss.soa.esb.actions.MessageFilter</property>.
- </para>
- </listitem>
</itemizedlist>
</para>
- </formalpara>
+ </formalpara> -->
<!-- Google Web Toolkit is only shipped with JBoss.org -->
<!--
<formalpara>
@@ -179,18 +169,18 @@
</itemizedlist>
</para>
</formalpara>-->
- <formalpara>
+<!-- <formalpara>
<title>RichFaces</title>
<para>
<itemizedlist>
<listitem>
<para>
- <ulink url="http://jira.jboss.com/jira/browse/JBIDE-8617">JBIDE-8617</ulink>: A new RichFaces 4 palette is available to assist with RichFaces 4 components. This palette is hidden by default.
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-0000">JBIDE-0000</ulink>:
</para>
</listitem>
</itemizedlist>
</para>
- </formalpara>
+ </formalpara> -->
<!--<formalpara>
<title>Seam</title>
<para>
@@ -227,38 +217,18 @@
</itemizedlist>
</para>
</formalpara>-->
- <formalpara>
+<!-- <formalpara>
<title>Teiid Designer</title>
<para>
<itemizedlist>
<listitem>
<para>
- <ulink url="http://jira.jboss.com/jira/browse/JBIDE-8399">JBIDE-8399</ulink>: The engine behind the incorporated project examples that are distributed with the tools can now recognize a Teiid instance within a JBoss server. This has allowed for Teiid requirements to be added to Teiid Designer project examples.
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-0000">JBIDE-0000</ulink>:
</para>
</listitem>
- <listitem>
- <para>
- <ulink url="http://jira.jboss.com/jira/browse/TEIIDDES-934">TEIIDDES-934</ulink>: An error was apparent in previous releases of Teiid Designer where the number of models added to a VDB could grow so large that data roles became inaccessible from the menu. This was caused because no scrollbar existed for the menu, meaning menu items would persist past the bottom of the screen without any way for the user to see them. This issue has been corrected in this latest release.
- </para>
- </listitem>
- <listitem>
- <para>
- <ulink url="http://jira.jboss.com/jira/browse/TEIIDDES-877">TEIIDDES-877</ulink>: When creating a new Teiid project, the Teiid Designer perspective would not be opened by default. In this version, a user is asked if they would like to open the corresponding Teiid Designer perspective when they have created a new Teiid project.
- </para>
- </listitem>
- <listitem>
- <para>
- <ulink url="http://jira.jboss.com/jira/browse/TEIIDDES-869">TEIIDDES-869</ulink>: The Web Service model that was generated by the <guilabel>New Model Wizard</guilabel> was incorrect, with errors in the <methodname>invoke</methodname> and <methodname>invokeHTTP</methodname> procedures. These errors meant that the resulting parameters from the methods would be modeled as <property>IN</property>, rather than as a <property>result</property>. It also meant that the <property>contenttype</property> of the <methodname>invokeHttp</methodname> should be an <property>OUT</property> parameter. These errors have been corrected in this release.
- </para>
- </listitem>
- <listitem>
- <para>
- <ulink url="http://jira.jboss.com/jira/browse/TEIIDDES-859">TEIIDDES-859</ulink>: In an example project, the ability to preview data would fail due to the preview jobs starting before the auto-build and locking model resources. Scheduling of the preview jobs are now delayed in order to ensure there is enough time for the auto-build to start.
- </para>
- </listitem>
</itemizedlist>
</para>
- </formalpara>
+ </formalpara> -->
<!--<formalpara>
<title>Usage</title>
<para>
@@ -283,23 +253,18 @@
</itemizedlist>
</para>
</formalpara>-->
- <formalpara>
+<!-- <formalpara>
<title>Web Tools Platform</title>
<para>
<itemizedlist>
<listitem>
<para>
- <ulink url="http://jira.jboss.com/jira/browse/JBDS-1602">JBDS-1602</ulink>: The Web Service Tester tool included as part of the Web Tools Platform contained an issue that would generate incorrect SOAP code, causing marshaling issues expressed as a <exceptionname>NullPointerException</exceptionname>. Multiple namespaces can now be handled without error and correct SOAP code is generated, removing marshaling issues.
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-0000">JBIDE-0000</ulink>:
</para>
</listitem>
- <listitem>
- <para>
- <ulink url="http://jira.jboss.com/jira/browse/JBIDE-8770">JBIDE-8770</ulink>: Sample input has been provided for Web Service Definition Language (WSDL) with a Simple Object Access Protocol (SOAP) header definition. This allows users a foundation to create their own WSDL applications that utilize SOAP definitions.
- </para>
- </listitem>
</itemizedlist>
</para>
- </formalpara>
+ </formalpara> -->
<!--<formalpara>
<title>XHTML Editor</title>
<para>
@@ -324,21 +289,16 @@
</itemizedlist>
</para>
</formalpara>-->
- <formalpara>
+<!-- <formalpara>
<title>General Issues</title>
<para>
<itemizedlist>
<listitem>
<para>
- <ulink url="http://jira.jboss.com/jira/browse/JBDS-1268">JBDS-1268</ulink>: The JBoss Developer Studio can now be installed by passing the installer a settings file named <filename>InstallConfigRecord.xml</filename>. To undertake this, setup an <filename>InstallConfigRecord.xml</filename> and run the following on a command line: <code>java -jar jbdevstudio-4.1.0.GA.jar InstallConfigRecord.xml</code>. This allows for an automated and reproducible installation. For further information consult the <emphasis>Getting Started Guide</emphasis>.
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-0000">JBIDE-0000</ulink>:
</para>
</listitem>
- <listitem>
- <para>
- <ulink url="http://jira.jboss.com/jira/browse/JBIDE-8596">JBIDE-8596</ulink>: The Properties editor for project files has been improved by allowing the <keycap>Enter</keycap> key to be pressed on a cell to begin editing its contents. Likewise, by performing a single mouse click a user can also edit the contents of a cell (previously a user had to double click to edit a cell).
- </para>
- </listitem>
</itemizedlist>
</para>
- </formalpara>
+ </formalpara> -->
</section>
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/Known_Issues.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Known_Issues.xml 2011-08-31 22:54:12 UTC (rev 34468)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Known_Issues.xml 2011-08-31 23:17:34 UTC (rev 34469)
@@ -1,50 +1,20 @@
<?xml version='1.0' encoding='utf-8' ?>
<section id="Known_Issues_with_this_release">
<title>
- Known Issues in version 4.1.0
+ Known Issues in version 5.0.0
</title>
<para>
Following is a list of known issues at the time of release.
</para>
- <formalpara>
+<!-- <formalpara>
<title>General Known Issues</title>
<para>
<itemizedlist>
<listitem>
<para>
- <ulink url="http://jira.jboss.com/jira/browse/JBDS-1685">JBDS-1685</ulink>: Upon installing Subclipse from the JBoss Developer Studio Extras site and restarting your JBoss Developer Studio installation, an error exists that sets a default SVN property incorrectly. The workaround for this issue is to navigate to <menuchoice>
- <guimenuitem>Window</guimenuitem>
- <guimenuitem>Preferences</guimenuitem>
- <guimenuitem>Team</guimenuitem>
- <guimenuitem>SVN</guimenuitem>
- </menuchoice>.
</para>
- <para>
- If you then see an error window, click the <guibutton>OK</guibutton> button.
- </para>
- <para>
- On the SVN Preferences page, in the <guilabel>SVN interface</guilabel> section, change the drop-down list value of <guilabel>Client</guilabel> to <guimenuitem>SVNKit (Pure Java) SVNKit v1.3.5.7406</guimenuitem>.
- </para>
- <para>
- Click the <guibutton>Apply</guibutton> button and then the <guibutton>OK</guibutton> button.
- </para>
- <para>
- Subclipse will now function correctly.
- </para>
</listitem>
- <listitem>
- <para>
- <ulink url="http://jira.jboss.com/jira/browse/JBDS-1643">JBDS-1643</ulink> and <ulink url="http://jira.jboss.com/jira/browse/SOA-3051">SOA-3051</ulink>: JBoss Developer Studio 4.1 assumes the use of Drools 5.0 or above for project creation. If using an earlier version of Drools or JBoss Rules, code compatibility must be set to your version of Drools or JBoss Rules in the last page of the project creation wizard.
- </para>
- <para>
- If you need to set code compatibility to an older version of Drools or JBoss Rules, you may notice multiple warnings when creating a project relating to the new Drools 5 API. These warnings will not affect your project and can be turned off by navigating to <menuchoice>
- <guimenuitem>Window</guimenuitem>
- <guimenuitem>Preferences</guimenuitem>
- <guimenuitem>Drools</guimenuitem>
- </menuchoice> and setting the <guilabel>Internal Drools classes are</guilabel> drop-down box to <guilabel>Accessible</guilabel>.
- </para>
- </listitem>
</itemizedlist>
</para>
- </formalpara>
+ </formalpara> -->
</section>
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/New_Features.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/New_Features.xml 2011-08-31 22:54:12 UTC (rev 34468)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/New_Features.xml 2011-08-31 23:17:34 UTC (rev 34469)
@@ -1,6 +1,6 @@
<?xml version='1.0' encoding='utf-8' ?>
<section id="New_Features">
- <title>New Features in JBoss Developer Studio 4.1</title>
+ <title>New Features in JBoss Developer Studio 5.0</title>
<para>
New product information to go here
</para>
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml 2011-08-31 22:54:12 UTC (rev 34468)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml 2011-08-31 23:17:34 UTC (rev 34469)
@@ -2,23 +2,18 @@
<section id="Overview">
<title>Overview</title>
<para>
- JBoss Developer Studio 4.1 is a major release of the Eclipse based IDE developed and supported by Red Hat (the visual tooling components are supported for 3 years, and the runtime platform for 5 years). The IDE, which is available for Windows, Linux and OS X, provides tooling that allows for rapid Web 2.0 application development on the JBoss Enterprise Application Platform. This release also improves support for SOA application development with the JBoss Enterprise SOA Platform.
+ JBoss Developer Studio 5.0 is a major release of the Eclipse based IDE developed and supported by Red Hat (the visual tooling components are supported for 3 years, and the runtime platform for 5 years). The IDE, which is available for Windows, Linux and OS X, provides tooling that allows for rapid Web 2.0 application development on the JBoss Enterprise Application Platform. This release also improves support for SOA application development with the JBoss Enterprise SOA Platform.
</para>
- <para>
- JBoss Developer Studio 4.1 contains many new features, including:
+<!-- <para>
+ JBoss Developer Studio 5.0 contains many new features, including:
</para>
<itemizedlist>
<listitem>
<para>
- Scriptble install of JBoss Developer Studio 4.1. When installing JBoss Developer Studio 4.1, you can now pass the installation a <filename>InstallConfigRecord.xml</filename> file to install with pre-defined settings, ensuring no user interaction is required. For further details see the release note for JBDS-1268 in the new and fixed issues section of this document, or the <emphasis>Getting Started Guide</emphasis> for this release.
+
</para>
</listitem>
- <listitem>
- <para>
- Full BPEL Editor support through the JBoss Developer Studio Extras site. The BPEL Editor is now fully supported as an add-on to your basic install of JBoss Developer Studio 4.1. To access this plug-in, add the JBoss Developer Studio Extras site <!-- (insert site here) --> to your installation; see the BPEL User Guide for further information.
- </para>
- </listitem>
- </itemizedlist>
+ </itemizedlist> -->
<important>
<para>
If you are installing on a Linux distribution you must set the following limits in <filename>/etc/security/limits.conf</filename> upon installation completion and before running JBoss Developer Studio:
@@ -34,93 +29,4 @@
For further installation instructions see the Getting Started Guide for this release, available at: <ulink url="http://docs.redhat.com/docs/en-US/JBoss_Developer_Studio/index.html">http://docs.redhat.com/docs/en-US/JBoss_Developer_Studio/index.html</ulink>
</para>
</important>
- <!-- Old 'new' feature list for JBDS 4.0.0 left as a guide -->
- <!-- <itemizedlist>
- <listitem>
- <para>
- <emphasis role="bold">Improved Eclipse Integration:</emphasis> The installed IDE is now a native Eclipse application, which results in a more streamlined installation and update process, and a smaller download size since unused plugins are no longer included. In addition, the IDE is now based on Eclipse 3.6 (Helios), which is the latest stable release provided by the Eclipse Foundation.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis role="bold">Improved Java Performance:</emphasis> The IDE now targets Java 6, resulting in increased performance and reduced memory usage. However, users can still target runtimes relying on different versions of Java as long as they have the matching Java runtime configured in the Java SDK preferences section.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis role="bold">New Hibernate Tools Features:</emphasis> Code generation settings can now be exported to an Ant build.xml file, providing a means to run them from the command line or to be included in your own build scripts. The JPA tooling supports both JPA 1 and JPA 2.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis role="bold">Additional Visual Page Editing Compatibility:</emphasis> The Visual Page Editor is now configured so it can be installed and used on platforms where XULRunner is not available (i.e. older OS X versions). While this does remove the "Visual" part of the editor, you still benefit from the code completion, navigation and validation features.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis role="bold">Improved Internationalization:</emphasis> There is now an Externalize Strings action available to help you implement internationalization(i18n) in your XHTML pages.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis role="bold">New DocBook Support:</emphasis> The editor now supports visual Docbook editing.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis role="bold">Spring Support:</emphasis> Support for the Spring tag libraries have been added.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis role="bold">Improved JSF and JSTL Support:</emphasis> Additional code completion, validation and refactoring support has been included for JSF and Seam managed beans. JSF and JSTL tag libraries are also now loaded from users classpath to provide code completion and validation for the exact version being used in the project.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis role="bold">Additional Seam Features:</emphasis> Additional validation and refactoring features have been included.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis role="bold">Additional ESB Features:</emphasis> The latest ESB version is now added as a supported version, the ESB editor has additional shortcuts for configuring action and handlers, and JBDS now supports ESB annotation in the Annotation editor.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis role="bold">Improved JBoss Server Deployment and Configuration:</emphasis> The JBoss server adapter now has support for remote deployment via SSH and SCP, and the server adapter can publish individual files as well as individual folders.
- </para>
- <para>
- A new JBoss Tools Runtimes preference page is available that allows you to configure any server runtime found in a list of directories. This removes the need to manually configuring them all.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis role="bold">Simplified Web Services Creation and Testing:</emphasis> New simplified Wizards are provided for creating JAX-WS and JAX-RS Web services, while a new Webservice Tester View has been provided to test SOAP and HTTP based webservices.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis role="bold">New Teiid Support:</emphasis> The Teiid Designer has been added to this release of JBDS. The Teiid Designer is a graphical data modeling tool that enables rapid definition, integration, management and testing of data services without programming using the Teiid runtime engine.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis role="bold">New Modeshape Support:</emphasis> Modeshape tooling has been provided to allow users to browse, checkin and checkout of Modeshape servers.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis role="bold">Technical Previews:</emphasis> A Technical preview of CDI and JSF 2 (including composite components, code completions and validations) tooling is included, along with a JBoss AS 6 compatible server adapter. Technical previews of Servlet 3, Richfaces 4 and BPEL are also available.
- </para>
- <para>
- Information on how to access the tech previews can be found in the <ulink url="http://docs.redhat.com/docs/en-US/JBoss_Developer_Studio/4.0/html-single/...">Getting Started Guide</ulink>.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis role="bold">And More:</emphasis> JBDS supports many more libraries and technologies including: Contexts and Dependency Injection (CDI), JBoss Drools, JBoss ESB, JBoss jBPM, JBoss Portal, JBoss Seam, Smooks
- </para>
- </listitem>
- </itemizedlist> -->
</section>
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/Revision_History.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Revision_History.xml 2011-08-31 22:54:12 UTC (rev 34468)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Revision_History.xml 2011-08-31 23:17:34 UTC (rev 34469)
@@ -6,7 +6,7 @@
<revhistory>
<revision>
<revnumber>1-0</revnumber>
- <date>Fri May 27 2011</date>
+ <date>Thu Sep 01 2011</date>
<author>
<firstname>Isaac</firstname>
<surname>Rooskov</surname>
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/master.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/master.xml 2011-08-31 22:54:12 UTC (rev 34468)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/master.xml 2011-08-31 23:17:34 UTC (rev 34469)
@@ -25,7 +25,7 @@
<holder>JBoss by Red Hat</holder>
</copyright>
<releaseinfo>
- Version: 3.2.1.GA
+ Version: 3.3.0.GA
</releaseinfo>
13 years, 3 months
JBoss Tools SVN: r34468 - in branches/jbosstools-3.3.0.M3/portlet: tests/org.jboss.tools.portlet.core.test and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-08-31 18:54:12 -0400 (Wed, 31 Aug 2011)
New Revision: 34468
Added:
branches/jbosstools-3.3.0.M3/portlet/features/org.jboss.tools.portlet.test.feature/feature.properties
branches/jbosstools-3.3.0.M3/portlet/features/org.jboss.tools.portlet.test.feature/license.html
branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/about.html
branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/about.ini
branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/about.mappings
branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/about.properties
branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/jboss_about.png
Modified:
branches/jbosstools-3.3.0.M3/portlet/features/org.jboss.tools.portlet.test.feature/build.properties
branches/jbosstools-3.3.0.M3/portlet/features/org.jboss.tools.portlet.test.feature/feature.xml
branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/build.properties
Log:
JBIDE-9595 ./portlet/features/org.jboss.tools.portlet.test.feature/feature.xml :: add license/copyright/description in feature.properties and ref from feature.xml; fix build.properties to include license.html & feature.*
Modified: branches/jbosstools-3.3.0.M3/portlet/features/org.jboss.tools.portlet.test.feature/build.properties
===================================================================
--- branches/jbosstools-3.3.0.M3/portlet/features/org.jboss.tools.portlet.test.feature/build.properties 2011-08-31 22:49:26 UTC (rev 34467)
+++ branches/jbosstools-3.3.0.M3/portlet/features/org.jboss.tools.portlet.test.feature/build.properties 2011-08-31 22:54:12 UTC (rev 34468)
@@ -1 +1,3 @@
-bin.includes = feature.xml
+bin.includes = feature.xml,\
+ license.html,\
+ feature.properties
Added: branches/jbosstools-3.3.0.M3/portlet/features/org.jboss.tools.portlet.test.feature/feature.properties
===================================================================
--- branches/jbosstools-3.3.0.M3/portlet/features/org.jboss.tools.portlet.test.feature/feature.properties (rev 0)
+++ branches/jbosstools-3.3.0.M3/portlet/features/org.jboss.tools.portlet.test.feature/feature.properties 2011-08-31 22:54:12 UTC (rev 34468)
@@ -0,0 +1,49 @@
+###############################################################################
+# Copyright (c) 2008-2011 Red Hat, Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=JBoss Portlet tests
+
+# "providerName" property - name of the company that provides the feature
+providerName=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=JBoss Portlet tests
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\nAll rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\nwhich accompanies this distribution, and is available at\nhttp\://www.eclipse.org/legal/epl-v10.html\n\nContributors\:\nJBoss by Red Hat - Initial implementation.\n
+ ############### end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################
Modified: branches/jbosstools-3.3.0.M3/portlet/features/org.jboss.tools.portlet.test.feature/feature.xml
===================================================================
--- branches/jbosstools-3.3.0.M3/portlet/features/org.jboss.tools.portlet.test.feature/feature.xml 2011-08-31 22:49:26 UTC (rev 34467)
+++ branches/jbosstools-3.3.0.M3/portlet/features/org.jboss.tools.portlet.test.feature/feature.xml 2011-08-31 22:54:12 UTC (rev 34468)
@@ -1,18 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
-<feature id="org.jboss.tools.portlet.test.feature" label="JBoss Tools - Tests - Portlet" version="1.2.0.qualifier">
+<feature
+ id="org.jboss.tools.portlet.test.feature"
+ label="%featureName"
+ version="1.2.0.qualifier"
+ provider-name="%providerName"
+ plugin="org.jboss.tools.portlet.core.test">
- <description url="http://www.example.com/description">
- [Enter Feature Description here.]
+ <description>
+ %description
</description>
- <copyright url="http://www.example.com/copyright">
- [Enter Copyright Description here.]
+ <copyright>
+ %copyright
</copyright>
- <license url="http://www.example.com/license">
- [Enter License Description here.]
+ <license url="%licenseURL">
+ %license
</license>
- <plugin id="org.jboss.tools.portlet.core.test" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+ <plugin
+ id="org.jboss.tools.portlet.core.test"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
</feature>
Added: branches/jbosstools-3.3.0.M3/portlet/features/org.jboss.tools.portlet.test.feature/license.html
===================================================================
--- branches/jbosstools-3.3.0.M3/portlet/features/org.jboss.tools.portlet.test.feature/license.html (rev 0)
+++ branches/jbosstools-3.3.0.M3/portlet/features/org.jboss.tools.portlet.test.feature/license.html 2011-08-31 22:54:12 UTC (rev 34468)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file
Added: branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/about.html
===================================================================
--- branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/about.html (rev 0)
+++ branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/about.html 2011-08-31 22:54:12 UTC (rev 34468)
@@ -0,0 +1,30 @@
+<?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-Type" content="text/html; charset=ISO-8859-1" />
+<title>JBoss Portlet tests</title>
+<style type="text/css" media="screen">
+<!--
+ body {
+ font-family: Sans-serif, Arial, Helvetica;
+ }
+
+-->
+</style>
+</head>
+<body>
+<h1>JBoss Portlet tests</h1>
+
+<p>
+This plugin is part of the JBoss Tools developed by the <a href="http://www.jboss.com">JBoss Inc.</a>
+</p>
+
+<p>Information about this plugin is available at <a href="http://www.jboss.org/tools">JBoss Tools project page</a></p>
+
+<p>
+This software is distributed under the terms of the Eclipse Public License - v 1.0
+(see <a href="www.eclipse.org/legal/epl-v10.html">Eclipse Public License - Version 1.0</a>).
+</p>
+</body>
+</html>
\ No newline at end of file
Added: branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/about.ini
===================================================================
--- branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/about.ini (rev 0)
+++ branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/about.ini 2011-08-31 22:54:12 UTC (rev 34468)
@@ -0,0 +1,27 @@
+# about.ini
+# contains information about a feature
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# "%key" are externalized strings defined in about.properties
+# This file does not need to be translated.
+# test
+# Property "aboutText" contains blurb for "About" dialog (translated)
+aboutText=%blurb
+
+# Property "windowImage" contains path to window icon (16x16)
+# needed for primary features only
+
+# Property "featureImage" contains path to feature image (32x32)
+featureImage=jboss_about.png
+
+# Property "aboutImage" contains path to product image (500x330 or 115x164)
+# needed for primary features only
+
+# Property "appName" contains name of the application (not translated)
+# needed for primary features only
+
+# Property "welcomePerspective" contains the id of the perspective in which the
+# welcome page is to be opened.
+# optional
+
+
+
Added: branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/about.mappings
===================================================================
--- branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/about.mappings (rev 0)
+++ branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/about.mappings 2011-08-31 22:54:12 UTC (rev 34468)
@@ -0,0 +1,5 @@
+# about.mappings
+# contains fill-ins for about.properties
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file does not need to be translated.
+
Added: branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/about.properties
===================================================================
--- branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/about.properties (rev 0)
+++ branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/about.properties 2011-08-31 22:54:12 UTC (rev 34468)
@@ -0,0 +1,2 @@
+blurb=JBoss Portlet tests\n\nVersion\: {featureVersion}\n\n(c) Copyright JBoss by Red Hat, contributors and others 2004 - 2011. All rights reserved.\nVisit http\://jboss.org/tools
+
Modified: branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/build.properties
===================================================================
--- branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/build.properties 2011-08-31 22:49:26 UTC (rev 34467)
+++ branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/build.properties 2011-08-31 22:54:12 UTC (rev 34468)
@@ -1,4 +1,9 @@
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
- .
+ .,\
+ about.html,\
+ about.ini,\
+ about.mappings,\
+ about.properties,\
+ jboss_about.png
Added: branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/jboss_about.png
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M3/portlet/tests/org.jboss.tools.portlet.core.test/jboss_about.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
13 years, 3 months
JBoss Tools SVN: r34467 - in trunk/portlet: tests/org.jboss.tools.portlet.core.test and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-08-31 18:49:26 -0400 (Wed, 31 Aug 2011)
New Revision: 34467
Added:
trunk/portlet/features/org.jboss.tools.portlet.test.feature/feature.properties
trunk/portlet/features/org.jboss.tools.portlet.test.feature/license.html
trunk/portlet/tests/org.jboss.tools.portlet.core.test/about.html
trunk/portlet/tests/org.jboss.tools.portlet.core.test/about.ini
trunk/portlet/tests/org.jboss.tools.portlet.core.test/about.mappings
trunk/portlet/tests/org.jboss.tools.portlet.core.test/about.properties
trunk/portlet/tests/org.jboss.tools.portlet.core.test/jboss_about.png
Modified:
trunk/portlet/features/org.jboss.tools.portlet.test.feature/build.properties
trunk/portlet/features/org.jboss.tools.portlet.test.feature/feature.xml
trunk/portlet/tests/org.jboss.tools.portlet.core.test/build.properties
Log:
JBIDE-9595 ./portlet/features/org.jboss.tools.portlet.test.feature/feature.xml :: add license/copyright/description in feature.properties and ref from feature.xml; fix build.properties to include license.html & feature.*
Modified: trunk/portlet/features/org.jboss.tools.portlet.test.feature/build.properties
===================================================================
--- trunk/portlet/features/org.jboss.tools.portlet.test.feature/build.properties 2011-08-31 22:43:04 UTC (rev 34466)
+++ trunk/portlet/features/org.jboss.tools.portlet.test.feature/build.properties 2011-08-31 22:49:26 UTC (rev 34467)
@@ -1 +1,3 @@
-bin.includes = feature.xml
+bin.includes = feature.xml,\
+ license.html,\
+ feature.properties
Added: trunk/portlet/features/org.jboss.tools.portlet.test.feature/feature.properties
===================================================================
--- trunk/portlet/features/org.jboss.tools.portlet.test.feature/feature.properties (rev 0)
+++ trunk/portlet/features/org.jboss.tools.portlet.test.feature/feature.properties 2011-08-31 22:49:26 UTC (rev 34467)
@@ -0,0 +1,49 @@
+###############################################################################
+# Copyright (c) 2008-2011 Red Hat, Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=JBoss Portlet tests
+
+# "providerName" property - name of the company that provides the feature
+providerName=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=JBoss Portlet tests
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\nAll rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\nwhich accompanies this distribution, and is available at\nhttp\://www.eclipse.org/legal/epl-v10.html\n\nContributors\:\nJBoss by Red Hat - Initial implementation.\n
+ ############### end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################
Modified: trunk/portlet/features/org.jboss.tools.portlet.test.feature/feature.xml
===================================================================
--- trunk/portlet/features/org.jboss.tools.portlet.test.feature/feature.xml 2011-08-31 22:43:04 UTC (rev 34466)
+++ trunk/portlet/features/org.jboss.tools.portlet.test.feature/feature.xml 2011-08-31 22:49:26 UTC (rev 34467)
@@ -1,18 +1,28 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<feature id="org.jboss.tools.portlet.test.feature" label="JBoss Tools - Tests - Portlet" version="1.2.0.qualifier">
-
- <description url="http://www.example.com/description">
- [Enter Feature Description here.]
- </description>
-
- <copyright url="http://www.example.com/copyright">
- [Enter Copyright Description here.]
- </copyright>
-
- <license url="http://www.example.com/license">
- [Enter License Description here.]
- </license>
-
- <plugin id="org.jboss.tools.portlet.core.test" download-size="0" install-size="0" version="0.0.0" unpack="false" />
-
-</feature>
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.portlet.test.feature"
+ label="%featureName"
+ version="1.2.0.qualifier"
+ provider-name="%providerName"
+ plugin="org.jboss.tools.portlet.core.test">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <plugin
+ id="org.jboss.tools.portlet.core.test"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
Added: trunk/portlet/features/org.jboss.tools.portlet.test.feature/license.html
===================================================================
--- trunk/portlet/features/org.jboss.tools.portlet.test.feature/license.html (rev 0)
+++ trunk/portlet/features/org.jboss.tools.portlet.test.feature/license.html 2011-08-31 22:49:26 UTC (rev 34467)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file
Added: trunk/portlet/tests/org.jboss.tools.portlet.core.test/about.html
===================================================================
--- trunk/portlet/tests/org.jboss.tools.portlet.core.test/about.html (rev 0)
+++ trunk/portlet/tests/org.jboss.tools.portlet.core.test/about.html 2011-08-31 22:49:26 UTC (rev 34467)
@@ -0,0 +1,30 @@
+<?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-Type" content="text/html; charset=ISO-8859-1" />
+<title>JBoss Portlet tests</title>
+<style type="text/css" media="screen">
+<!--
+ body {
+ font-family: Sans-serif, Arial, Helvetica;
+ }
+
+-->
+</style>
+</head>
+<body>
+<h1>JBoss Portlet tests</h1>
+
+<p>
+This plugin is part of the JBoss Tools developed by the <a href="http://www.jboss.com">JBoss Inc.</a>
+</p>
+
+<p>Information about this plugin is available at <a href="http://www.jboss.org/tools">JBoss Tools project page</a></p>
+
+<p>
+This software is distributed under the terms of the Eclipse Public License - v 1.0
+(see <a href="www.eclipse.org/legal/epl-v10.html">Eclipse Public License - Version 1.0</a>).
+</p>
+</body>
+</html>
\ No newline at end of file
Added: trunk/portlet/tests/org.jboss.tools.portlet.core.test/about.ini
===================================================================
--- trunk/portlet/tests/org.jboss.tools.portlet.core.test/about.ini (rev 0)
+++ trunk/portlet/tests/org.jboss.tools.portlet.core.test/about.ini 2011-08-31 22:49:26 UTC (rev 34467)
@@ -0,0 +1,27 @@
+# about.ini
+# contains information about a feature
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# "%key" are externalized strings defined in about.properties
+# This file does not need to be translated.
+# test
+# Property "aboutText" contains blurb for "About" dialog (translated)
+aboutText=%blurb
+
+# Property "windowImage" contains path to window icon (16x16)
+# needed for primary features only
+
+# Property "featureImage" contains path to feature image (32x32)
+featureImage=jboss_about.png
+
+# Property "aboutImage" contains path to product image (500x330 or 115x164)
+# needed for primary features only
+
+# Property "appName" contains name of the application (not translated)
+# needed for primary features only
+
+# Property "welcomePerspective" contains the id of the perspective in which the
+# welcome page is to be opened.
+# optional
+
+
+
Added: trunk/portlet/tests/org.jboss.tools.portlet.core.test/about.mappings
===================================================================
--- trunk/portlet/tests/org.jboss.tools.portlet.core.test/about.mappings (rev 0)
+++ trunk/portlet/tests/org.jboss.tools.portlet.core.test/about.mappings 2011-08-31 22:49:26 UTC (rev 34467)
@@ -0,0 +1,5 @@
+# about.mappings
+# contains fill-ins for about.properties
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file does not need to be translated.
+
Added: trunk/portlet/tests/org.jboss.tools.portlet.core.test/about.properties
===================================================================
--- trunk/portlet/tests/org.jboss.tools.portlet.core.test/about.properties (rev 0)
+++ trunk/portlet/tests/org.jboss.tools.portlet.core.test/about.properties 2011-08-31 22:49:26 UTC (rev 34467)
@@ -0,0 +1,2 @@
+blurb=JBoss Portlet tests\n\nVersion\: {featureVersion}\n\n(c) Copyright JBoss by Red Hat, contributors and others 2004 - 2011. All rights reserved.\nVisit http\://jboss.org/tools
+
Modified: trunk/portlet/tests/org.jboss.tools.portlet.core.test/build.properties
===================================================================
--- trunk/portlet/tests/org.jboss.tools.portlet.core.test/build.properties 2011-08-31 22:43:04 UTC (rev 34466)
+++ trunk/portlet/tests/org.jboss.tools.portlet.core.test/build.properties 2011-08-31 22:49:26 UTC (rev 34467)
@@ -1,4 +1,9 @@
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
- .
+ .,\
+ about.html,\
+ about.ini,\
+ about.mappings,\
+ about.properties,\
+ jboss_about.png
Added: trunk/portlet/tests/org.jboss.tools.portlet.core.test/jboss_about.png
===================================================================
(Binary files differ)
Property changes on: trunk/portlet/tests/org.jboss.tools.portlet.core.test/jboss_about.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
13 years, 3 months
JBoss Tools SVN: r34466 - trunk/build/results.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-08-31 18:43:04 -0400 (Wed, 31 Aug 2011)
New Revision: 34466
Modified:
trunk/build/results/build.xml
Log:
make path to ../aggregate/site/build.xml variable (for use with bottests-site)
Modified: trunk/build/results/build.xml
===================================================================
--- trunk/build/results/build.xml 2011-08-31 22:18:56 UTC (rev 34465)
+++ trunk/build/results/build.xml 2011-08-31 22:43:04 UTC (rev 34466)
@@ -61,6 +61,13 @@
</classpath>
</taskdef>
+ <condition property="aggregate_site_build.xml" value="${basedir}/../aggregate/site/build.xml">
+ <available file="${basedir}/../aggregate/site/build.xml" type="file" />
+ </condition>
+ <condition property="aggregate_site_build.xml" value="${basedir}/../aggregate/site/site/build.xml">
+ <available file="${basedir}/../aggregate/site/site/build.xml" type="file" />
+ </condition>
+
<available file="${COMMON_TOOLS}/saxon.jar" type="file" property="saxon.jar.exists" />
<antcall target="get.saxon" />
@@ -102,47 +109,47 @@
<!-- NEW STUFF HERE -->
<target name="buildResults.single" depends="init" description="generate buildResults.html from build properties">
- <ant target="collect.zips" antfile="../aggregate/site/build.xml">
+ <ant target="collect.zips" antfile="${aggregate_site_build.xml}">
<property name="inputRepos" value="2" />
<property name="inputRepo1" value="file://${input.dir}/all/repo/" />
<property name="inputRepo2" value="http://download.jboss.org/jbosstools/builds/staging/${JOB_NAME}/all/repo/" />
</ant>
- <ant target="collect.metadata" antfile="../aggregate/site/build.xml">
+ <ant target="collect.metadata" antfile="${aggregate_site_build.xml}">
</ant>
<antcall target="buildResults" />
</target>
<target name="buildResults.aggregate" depends="init" description="generate buildResults.html from build properties">
- <ant target="collect.zips" antfile="../aggregate/site/build.xml">
+ <ant target="collect.zips" antfile="${aggregate_site_build.xml}">
<property name="inputRepos" value="2" />
<property name="inputRepo1" value="file://${input.dir}/all/repo/" />
<!-- for trunk use _composite_/trunk; for 3.3_stable_branch, use _composite_/3.3.indigo -->
<property name="inputRepo2" value="http://download.jboss.org/jbosstools/builds/staging/_composite_/trunk" />
</ant>
- <ant target="collect.metadata" antfile="../aggregate/site/build.xml">
+ <ant target="collect.metadata" antfile="${aggregate_site_build.xml}">
</ant>
<antcall target="buildResults" />
</target>
<target name="test.buildResults.aggregate" depends="init" description="generate buildResults.html from build properties">
<property name="isTest" value="true" />
- <ant target="collect.zips" antfile="../aggregate/site/build.xml">
+ <ant target="collect.zips" antfile="${aggregate_site_build.xml}">
<property name="inputRepos" value="1" />
<!-- for trunk use _composite_/trunk; for 3.3_stable_branch, use _composite_/3.3.indigo -->
<property name="inputRepo1" value="http://download.jboss.org/jbosstools/builds/staging/_composite_/trunk" />
</ant>
- <ant target="collect.metadata" antfile="../aggregate/site/build.xml">
+ <ant target="collect.metadata" antfile="${aggregate_site_build.xml}">
</ant>
<antcall target="buildResults" />
</target>
<target name="test.buildResults.single" depends="init" description="generate buildResults.html from build properties">
<property name="isTest" value="true" />
- <ant target="collect.zips" antfile="../aggregate/site/build.xml">
+ <ant target="collect.zips" antfile="${aggregate_site_build.xml}">
<property name="inputRepos" value="1" />
<property name="inputRepo1" value="http://download.jboss.org/jbosstools/builds/staging/jbosstools-3.3_trunk...." />
</ant>
- <ant target="collect.metadata" antfile="../aggregate/site/build.xml">
+ <ant target="collect.metadata" antfile="${aggregate_site_build.xml}">
</ant>
<antcall target="buildResults" />
</target>
13 years, 3 months
JBoss Tools SVN: r34465 - branches/jbosstools-3.2.x/documentation/guides/JBDS_Release_Notes/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2011-08-31 18:18:56 -0400 (Wed, 31 Aug 2011)
New Revision: 34465
Modified:
branches/jbosstools-3.2.x/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml
Log:
updated with new release notes for JBDS 4.1.1
Modified: branches/jbosstools-3.2.x/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml
===================================================================
--- branches/jbosstools-3.2.x/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml 2011-08-31 22:09:40 UTC (rev 34464)
+++ branches/jbosstools-3.2.x/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml 2011-08-31 22:18:56 UTC (rev 34465)
@@ -94,18 +94,18 @@
</itemizedlist>
</para>
</formalpara>-->
- <!--<formalpara>
+ <formalpara>
<title>jBPM</title>
<para>
<itemizedlist>
<listitem>
<para>
- <ulink url="http://jira.jboss.com/jira/browse/JBIDE-0000">JBIDE-0000</ulink>:
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-3727">JBIDE-3727</ulink>: When editing the name of a node in source view (and more than one node is present), performing backspace or delete actions would not work correctly, missing characters and when typing a new name it would appear backwards. These issues have been corrected in this release by using the <classname>org.eclipse.swt.widgets.Display</classname> class and updating semantic element variables to be <property>final</property>. The results from editing node names is now as expected.
</para>
</listitem>
</itemizedlist>
</para>
- </formalpara>-->
+ </formalpara>
<!--<formalpara>
<title>JBoss Enterprise Portal Platform</title>
<para>
@@ -317,6 +317,11 @@
</listitem>
<listitem>
<para>
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-9381">JBIDE-9381</ulink>: An issue existed that meant the runtime detector did not detect the SOA 5.2 runtime correctly, instead displaying it as 5.1. Correcting this issue has seen the modification of <filename>JBossASHandler.java</filename> to also include 5.2 as a runtime displau option, and using the implementation and version properties from <filename>run.jar</filename>.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
<ulink url="http://jira.jboss.com/jira/browse/JBIDE-9361">JBIDE-9361</ulink>: When importing a project, if it is not faceted or does not contain a primary runtime, the project will not be imported correctly. This could have lead to errors being displayed and projects referencing an incorrect runtime. The issue has been corrected within this release by updating the <filename>WTPRuntimeFix.java</filename> by adding in code to check and handle when a project is not faceted or does not contain a primary runtime.
</para>
</listitem>
13 years, 3 months
JBoss Tools SVN: r34464 - in branches/jbosstools-3.3.0.M3/birt: tests/org.jboss.tools.birt.core.test and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-08-31 18:09:40 -0400 (Wed, 31 Aug 2011)
New Revision: 34464
Added:
branches/jbosstools-3.3.0.M3/birt/features/org.jboss.tools.birt.test.feature/feature.properties
branches/jbosstools-3.3.0.M3/birt/features/org.jboss.tools.birt.test.feature/license.html
branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/about.html
branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/about.ini
branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/about.mappings
branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/about.properties
branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/jboss_about.png
Modified:
branches/jbosstools-3.3.0.M3/birt/features/org.jboss.tools.birt.test.feature/build.properties
branches/jbosstools-3.3.0.M3/birt/features/org.jboss.tools.birt.test.feature/feature.xml
branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/build.properties
Log:
JBIDE-9599 ./birt/features/org.jboss.tools.birt.test.feature/feature.xml :: add license/copyright/description in feature.properties and ref from feature.xml; fix build.properties to include license.html & feature.*
Modified: branches/jbosstools-3.3.0.M3/birt/features/org.jboss.tools.birt.test.feature/build.properties
===================================================================
--- branches/jbosstools-3.3.0.M3/birt/features/org.jboss.tools.birt.test.feature/build.properties 2011-08-31 21:21:24 UTC (rev 34463)
+++ branches/jbosstools-3.3.0.M3/birt/features/org.jboss.tools.birt.test.feature/build.properties 2011-08-31 22:09:40 UTC (rev 34464)
@@ -1 +1,3 @@
-bin.includes = feature.xml
+bin.includes = feature.xml,\
+ license.html,\
+ feature.properties
Added: branches/jbosstools-3.3.0.M3/birt/features/org.jboss.tools.birt.test.feature/feature.properties
===================================================================
--- branches/jbosstools-3.3.0.M3/birt/features/org.jboss.tools.birt.test.feature/feature.properties (rev 0)
+++ branches/jbosstools-3.3.0.M3/birt/features/org.jboss.tools.birt.test.feature/feature.properties 2011-08-31 22:09:40 UTC (rev 34464)
@@ -0,0 +1,54 @@
+###############################################################################
+# Copyright (c) 2008-2011 Red Hat, Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=JBoss BIRT Integration tests
+
+# "providerName" property - name of the company that provides the feature
+providerName=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=JBoss BIRT Integration tests
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\nAll rights reserved. This program and the accompanying materials\n
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http\://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors\:\n\
+JBoss by Red Hat - Initial implementation.\n
+ ############### end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################
Modified: branches/jbosstools-3.3.0.M3/birt/features/org.jboss.tools.birt.test.feature/feature.xml
===================================================================
--- branches/jbosstools-3.3.0.M3/birt/features/org.jboss.tools.birt.test.feature/feature.xml 2011-08-31 21:21:24 UTC (rev 34463)
+++ branches/jbosstools-3.3.0.M3/birt/features/org.jboss.tools.birt.test.feature/feature.xml 2011-08-31 22:09:40 UTC (rev 34464)
@@ -1,20 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<feature
id="org.jboss.tools.birt.test.feature"
- label="JBoss Tools - Tests - BIRT"
+ label="%featureName"
version="1.3.0.qualifier"
- provider-name="JBoss by RedHat">
+ provider-name="%providerName"
+ plugin="org.jboss.tools.birt.core.test">
- <description url="http://www.example.com/description">
- [Enter Feature Description here.]
+ <description>
+ %description
</description>
- <copyright url="http://www.example.com/copyright">
- [Enter Copyright Description here.]
+ <copyright>
+ %copyright
</copyright>
- <license url="http://www.example.com/license">
- [Enter License Description here.]
+ <license url="%licenseURL">
+ %license
</license>
<plugin
Added: branches/jbosstools-3.3.0.M3/birt/features/org.jboss.tools.birt.test.feature/license.html
===================================================================
--- branches/jbosstools-3.3.0.M3/birt/features/org.jboss.tools.birt.test.feature/license.html (rev 0)
+++ branches/jbosstools-3.3.0.M3/birt/features/org.jboss.tools.birt.test.feature/license.html 2011-08-31 22:09:40 UTC (rev 34464)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file
Added: branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/about.html
===================================================================
--- branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/about.html (rev 0)
+++ branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/about.html 2011-08-31 22:09:40 UTC (rev 34464)
@@ -0,0 +1,30 @@
+<?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-Type" content="text/html; charset=ISO-8859-1" />
+<title>JBoss BIRT Integration tests</title>
+<style type="text/css" media="screen">
+<!--
+ body {
+ font-family: Sans-serif, Arial, Helvetica;
+ }
+
+-->
+</style>
+</head>
+<body>
+<h1>JBoss BIRT Integration tests</h1>
+
+<p>
+This plugin is part of the JBoss Tools developed by the <a href="http://www.jboss.com">JBoss Inc.</a>
+</p>
+
+<p>Information about this plugin is available at <a href="http://www.jboss.org/tools">JBoss Tools project page</a></p>
+
+<p>
+This software is distributed under the terms of the Eclipse Public License - v 1.0
+(see <a href="www.eclipse.org/legal/epl-v10.html">Eclipse Public License - Version 1.0</a>).
+</p>
+</body>
+</html>
\ No newline at end of file
Added: branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/about.ini
===================================================================
--- branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/about.ini (rev 0)
+++ branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/about.ini 2011-08-31 22:09:40 UTC (rev 34464)
@@ -0,0 +1,27 @@
+# about.ini
+# contains information about a feature
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# "%key" are externalized strings defined in about.properties
+# This file does not need to be translated.
+# test
+# Property "aboutText" contains blurb for "About" dialog (translated)
+aboutText=%blurb
+
+# Property "windowImage" contains path to window icon (16x16)
+# needed for primary features only
+
+# Property "featureImage" contains path to feature image (32x32)
+featureImage=jboss_about.png
+
+# Property "aboutImage" contains path to product image (500x330 or 115x164)
+# needed for primary features only
+
+# Property "appName" contains name of the application (not translated)
+# needed for primary features only
+
+# Property "welcomePerspective" contains the id of the perspective in which the
+# welcome page is to be opened.
+# optional
+
+
+
Added: branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/about.mappings
===================================================================
--- branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/about.mappings (rev 0)
+++ branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/about.mappings 2011-08-31 22:09:40 UTC (rev 34464)
@@ -0,0 +1,5 @@
+# about.mappings
+# contains fill-ins for about.properties
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file does not need to be translated.
+
Added: branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/about.properties
===================================================================
--- branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/about.properties (rev 0)
+++ branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/about.properties 2011-08-31 22:09:40 UTC (rev 34464)
@@ -0,0 +1,2 @@
+blurb=JBoss BIRT Integration tests\n\nVersion\: {featureVersion}\n\n(c) Copyright JBoss by Red Hat, contributors and others 2004 - 2011. All rights reserved.\nVisit http\://jboss.org/tools
+
Modified: branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/build.properties
===================================================================
--- branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/build.properties 2011-08-31 21:21:24 UTC (rev 34463)
+++ branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/build.properties 2011-08-31 22:09:40 UTC (rev 34464)
@@ -1,4 +1,9 @@
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
- .
+ .,\
+ about.html,\
+ about.ini,\
+ about.mappings,\
+ about.properties,\
+ jboss_about.png
Added: branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/jboss_about.png
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M3/birt/tests/org.jboss.tools.birt.core.test/jboss_about.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
13 years, 3 months
JBoss Tools SVN: r34463 - in trunk/birt: tests/org.jboss.tools.birt.core.test and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-08-31 17:21:24 -0400 (Wed, 31 Aug 2011)
New Revision: 34463
Added:
trunk/birt/features/org.jboss.tools.birt.test.feature/feature.properties
trunk/birt/features/org.jboss.tools.birt.test.feature/license.html
trunk/birt/tests/org.jboss.tools.birt.core.test/about.html
trunk/birt/tests/org.jboss.tools.birt.core.test/about.ini
trunk/birt/tests/org.jboss.tools.birt.core.test/about.mappings
trunk/birt/tests/org.jboss.tools.birt.core.test/about.properties
trunk/birt/tests/org.jboss.tools.birt.core.test/jboss_about.png
Modified:
trunk/birt/features/org.jboss.tools.birt.test.feature/build.properties
trunk/birt/features/org.jboss.tools.birt.test.feature/feature.xml
trunk/birt/tests/org.jboss.tools.birt.core.test/build.properties
Log:
JBIDE-9599 ./birt/features/org.jboss.tools.birt.test.feature/feature.xml :: add license/copyright/description in feature.properties and ref from feature.xml; fix build.properties to include license.html & feature.*
Modified: trunk/birt/features/org.jboss.tools.birt.test.feature/build.properties
===================================================================
--- trunk/birt/features/org.jboss.tools.birt.test.feature/build.properties 2011-08-31 20:40:55 UTC (rev 34462)
+++ trunk/birt/features/org.jboss.tools.birt.test.feature/build.properties 2011-08-31 21:21:24 UTC (rev 34463)
@@ -1 +1,3 @@
-bin.includes = feature.xml
+bin.includes = feature.xml,\
+ license.html,\
+ feature.properties
Added: trunk/birt/features/org.jboss.tools.birt.test.feature/feature.properties
===================================================================
--- trunk/birt/features/org.jboss.tools.birt.test.feature/feature.properties (rev 0)
+++ trunk/birt/features/org.jboss.tools.birt.test.feature/feature.properties 2011-08-31 21:21:24 UTC (rev 34463)
@@ -0,0 +1,54 @@
+###############################################################################
+# Copyright (c) 2008-2011 Red Hat, Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=JBoss BIRT Integration tests
+
+# "providerName" property - name of the company that provides the feature
+providerName=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=JBoss BIRT Integration tests
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\nAll rights reserved. This program and the accompanying materials\n
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http\://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors\:\n\
+JBoss by Red Hat - Initial implementation.\n
+ ############### end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################
Modified: trunk/birt/features/org.jboss.tools.birt.test.feature/feature.xml
===================================================================
--- trunk/birt/features/org.jboss.tools.birt.test.feature/feature.xml 2011-08-31 20:40:55 UTC (rev 34462)
+++ trunk/birt/features/org.jboss.tools.birt.test.feature/feature.xml 2011-08-31 21:21:24 UTC (rev 34463)
@@ -1,27 +1,28 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.tools.birt.test.feature"
- label="JBoss Tools - Tests - BIRT"
- version="1.3.0.qualifier"
- provider-name="JBoss by RedHat">
-
- <description url="http://www.example.com/description">
- [Enter Feature Description here.]
- </description>
-
- <copyright url="http://www.example.com/copyright">
- [Enter Copyright Description here.]
- </copyright>
-
- <license url="http://www.example.com/license">
- [Enter License Description here.]
- </license>
-
- <plugin
- id="org.jboss.tools.birt.core.test"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
-</feature>
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.birt.test.feature"
+ label="%featureName"
+ version="1.3.0.qualifier"
+ provider-name="%providerName"
+ plugin="org.jboss.tools.birt.core.test">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <plugin
+ id="org.jboss.tools.birt.core.test"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
Added: trunk/birt/features/org.jboss.tools.birt.test.feature/license.html
===================================================================
--- trunk/birt/features/org.jboss.tools.birt.test.feature/license.html (rev 0)
+++ trunk/birt/features/org.jboss.tools.birt.test.feature/license.html 2011-08-31 21:21:24 UTC (rev 34463)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file
Added: trunk/birt/tests/org.jboss.tools.birt.core.test/about.html
===================================================================
--- trunk/birt/tests/org.jboss.tools.birt.core.test/about.html (rev 0)
+++ trunk/birt/tests/org.jboss.tools.birt.core.test/about.html 2011-08-31 21:21:24 UTC (rev 34463)
@@ -0,0 +1,30 @@
+<?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-Type" content="text/html; charset=ISO-8859-1" />
+<title>JBoss BIRT Integration tests</title>
+<style type="text/css" media="screen">
+<!--
+ body {
+ font-family: Sans-serif, Arial, Helvetica;
+ }
+
+-->
+</style>
+</head>
+<body>
+<h1>JBoss BIRT Integration tests</h1>
+
+<p>
+This plugin is part of the JBoss Tools developed by the <a href="http://www.jboss.com">JBoss Inc.</a>
+</p>
+
+<p>Information about this plugin is available at <a href="http://www.jboss.org/tools">JBoss Tools project page</a></p>
+
+<p>
+This software is distributed under the terms of the Eclipse Public License - v 1.0
+(see <a href="www.eclipse.org/legal/epl-v10.html">Eclipse Public License - Version 1.0</a>).
+</p>
+</body>
+</html>
\ No newline at end of file
Added: trunk/birt/tests/org.jboss.tools.birt.core.test/about.ini
===================================================================
--- trunk/birt/tests/org.jboss.tools.birt.core.test/about.ini (rev 0)
+++ trunk/birt/tests/org.jboss.tools.birt.core.test/about.ini 2011-08-31 21:21:24 UTC (rev 34463)
@@ -0,0 +1,27 @@
+# about.ini
+# contains information about a feature
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# "%key" are externalized strings defined in about.properties
+# This file does not need to be translated.
+# test
+# Property "aboutText" contains blurb for "About" dialog (translated)
+aboutText=%blurb
+
+# Property "windowImage" contains path to window icon (16x16)
+# needed for primary features only
+
+# Property "featureImage" contains path to feature image (32x32)
+featureImage=jboss_about.png
+
+# Property "aboutImage" contains path to product image (500x330 or 115x164)
+# needed for primary features only
+
+# Property "appName" contains name of the application (not translated)
+# needed for primary features only
+
+# Property "welcomePerspective" contains the id of the perspective in which the
+# welcome page is to be opened.
+# optional
+
+
+
Added: trunk/birt/tests/org.jboss.tools.birt.core.test/about.mappings
===================================================================
--- trunk/birt/tests/org.jboss.tools.birt.core.test/about.mappings (rev 0)
+++ trunk/birt/tests/org.jboss.tools.birt.core.test/about.mappings 2011-08-31 21:21:24 UTC (rev 34463)
@@ -0,0 +1,5 @@
+# about.mappings
+# contains fill-ins for about.properties
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file does not need to be translated.
+
Added: trunk/birt/tests/org.jboss.tools.birt.core.test/about.properties
===================================================================
--- trunk/birt/tests/org.jboss.tools.birt.core.test/about.properties (rev 0)
+++ trunk/birt/tests/org.jboss.tools.birt.core.test/about.properties 2011-08-31 21:21:24 UTC (rev 34463)
@@ -0,0 +1,2 @@
+blurb=JBoss BIRT Integration tests\n\nVersion\: {featureVersion}\n\n(c) Copyright JBoss by Red Hat, contributors and others 2004 - 2011. All rights reserved.\nVisit http\://jboss.org/tools
+
Modified: trunk/birt/tests/org.jboss.tools.birt.core.test/build.properties
===================================================================
--- trunk/birt/tests/org.jboss.tools.birt.core.test/build.properties 2011-08-31 20:40:55 UTC (rev 34462)
+++ trunk/birt/tests/org.jboss.tools.birt.core.test/build.properties 2011-08-31 21:21:24 UTC (rev 34463)
@@ -1,4 +1,9 @@
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
- .
+ .,\
+ about.html,\
+ about.ini,\
+ about.mappings,\
+ about.properties,\
+ jboss_about.png
Added: trunk/birt/tests/org.jboss.tools.birt.core.test/jboss_about.png
===================================================================
(Binary files differ)
Property changes on: trunk/birt/tests/org.jboss.tools.birt.core.test/jboss_about.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
13 years, 3 months
JBoss Tools SVN: r34462 - branches/jbosstools-3.2.x/modeshape/plugins/org.jboss.tools.modeshape.rest.
by jbosstools-commits@lists.jboss.org
Author: elvisisking
Date: 2011-08-31 16:40:55 -0400 (Wed, 31 Aug 2011)
New Revision: 34462
Modified:
branches/jbosstools-3.2.x/modeshape/plugins/org.jboss.tools.modeshape.rest/modeshape-client.jar
Log:
JBDS-1698 Weak Modeshape Performance. Checking in an updated ModeShape 2.5 gotten from SOA 5.2.0 ER3 that fixes some issues.
Modified: branches/jbosstools-3.2.x/modeshape/plugins/org.jboss.tools.modeshape.rest/modeshape-client.jar
===================================================================
(Binary files differ)
13 years, 3 months