JBoss Tools SVN: r40803 - branches/jbosstools-3.3.0.Beta3/build/aggregate.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-05-04 14:57:04 -0400 (Fri, 04 May 2012)
New Revision: 40803
Modified:
branches/jbosstools-3.3.0.Beta3/build/aggregate/build.xml
Log:
allow individual aggregates to override the template file (eg., for webtools site which can will for now be used for both Indigo and Juno)
Modified: branches/jbosstools-3.3.0.Beta3/build/aggregate/build.xml
===================================================================
--- branches/jbosstools-3.3.0.Beta3/build/aggregate/build.xml 2012-05-04 18:57:04 UTC (rev 40802)
+++ branches/jbosstools-3.3.0.Beta3/build/aggregate/build.xml 2012-05-04 18:57:04 UTC (rev 40803)
@@ -544,8 +544,11 @@
<antcallback target="generate.directory.xml" return="directory.xml.html"/>
+ <condition property="index-template.html" value="${output.dir}/index-template.html" else="${basedir}/index-template.html">
+ <available file="${output.dir}/index-template.html" />
+ </condition>
<copy todir="${output.dir}" overwrite="true">
- <fileset file="${basedir}/index-template.html" />
+ <fileset file="${index-template.html}" />
<mapper type="merge" to="index.html" />
<filterchain>
<expandproperties />
13 years, 7 months
JBoss Tools SVN: r40802 - trunk/build/aggregate.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-05-04 14:57:04 -0400 (Fri, 04 May 2012)
New Revision: 40802
Modified:
trunk/build/aggregate/build.xml
Log:
allow individual aggregates to override the template file (eg., for webtools site which can will for now be used for both Indigo and Juno)
Modified: trunk/build/aggregate/build.xml
===================================================================
--- trunk/build/aggregate/build.xml 2012-05-04 18:54:50 UTC (rev 40801)
+++ trunk/build/aggregate/build.xml 2012-05-04 18:57:04 UTC (rev 40802)
@@ -544,8 +544,11 @@
<antcallback target="generate.directory.xml" return="directory.xml.html"/>
+ <condition property="index-template.html" value="${output.dir}/index-template.html" else="${basedir}/index-template.html">
+ <available file="${output.dir}/index-template.html" />
+ </condition>
<copy todir="${output.dir}" overwrite="true">
- <fileset file="${basedir}/index-template.html" />
+ <fileset file="${index-template.html}" />
<mapper type="merge" to="index.html" />
<filterchain>
<expandproperties />
13 years, 7 months
JBoss Tools SVN: r40801 - in trunk/jst/tests/org.jboss.tools.jst.web.test: src/org/jboss/tools/jst/web/test and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2012-05-04 14:54:50 -0400 (Fri, 04 May 2012)
New Revision: 40801
Added:
trunk/jst/tests/org.jboss.tools.jst.web.test/projects/testWebProject/WebContent/WEB-INF/web.xml.original
Modified:
trunk/jst/tests/org.jboss.tools.jst.web.test/src/org/jboss/tools/jst/web/test/WebXMLValidationTest.java
Log:
JBIDE-11782
https://issues.jboss.org/browse/JBIDE-11782
Methods in WebXMLValidationTest are made independent of the order of their execution.
Added: trunk/jst/tests/org.jboss.tools.jst.web.test/projects/testWebProject/WebContent/WEB-INF/web.xml.original
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.web.test/projects/testWebProject/WebContent/WEB-INF/web.xml.original (rev 0)
+++ trunk/jst/tests/org.jboss.tools.jst.web.test/projects/testWebProject/WebContent/WEB-INF/web.xml.original 2012-05-04 18:54:50 UTC (rev 40801)
@@ -0,0 +1,14 @@
+<?xml version="1.0"?>
+<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
+ <display-name>jsf</display-name>
+ <listener>
+ <listener-class>abc</listener-class>
+ </listener>
+ <servlet>
+ <servlet-name>Faces Servlet</servlet-name>
+ <!-- <servlet-class>javax.faces.webapp.FacesServlet111</servlet-class> -->
+ <servlet-class>javax.faces.webapp.FacesServlet111</servlet-class>
+ <load-on-startup>1</load-on-startup>
+ </servlet>
+</web-app>
Modified: trunk/jst/tests/org.jboss.tools.jst.web.test/src/org/jboss/tools/jst/web/test/WebXMLValidationTest.java
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.web.test/src/org/jboss/tools/jst/web/test/WebXMLValidationTest.java 2012-05-04 17:36:57 UTC (rev 40800)
+++ trunk/jst/tests/org.jboss.tools.jst.web.test/src/org/jboss/tools/jst/web/test/WebXMLValidationTest.java 2012-05-04 18:54:50 UTC (rev 40801)
@@ -108,6 +108,9 @@
markers = webxml.findMarkers(WebXMLCoreValidator.PROBLEM_TYPE, false, IResource.DEPTH_ZERO);
assertTrue(hasMarkerOnLine(markers, 18));
assertFalse(hasMarkerOnLine(markers, 19));
+
+ String patho = "WebContent/WEB-INF/web.xml.original";
+ replaceFile(project, patho, path0);
}
static boolean hasMarkerOnLine(IMarker[] ms, int line) {
13 years, 7 months
JBoss Tools SVN: r40800 - in trunk/common: plugins/org.jboss.tools.common.mylyn/META-INF and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-05-04 13:36:57 -0400 (Fri, 04 May 2012)
New Revision: 40800
Modified:
trunk/common/features/org.jboss.tools.common.mylyn.feature/feature.xml
trunk/common/plugins/org.jboss.tools.common.mylyn/META-INF/MANIFEST.MF
Log:
set actual versions of mylyn and atlassian connector from TP into org.jboss.tools.common.mylyn/META-INF/MANIFEST.MF and org.jboss.tools.common.mylyn.feature/feature.xml
Modified: trunk/common/features/org.jboss.tools.common.mylyn.feature/feature.xml
===================================================================
--- trunk/common/features/org.jboss.tools.common.mylyn.feature/feature.xml 2012-05-04 17:22:45 UTC (rev 40799)
+++ trunk/common/features/org.jboss.tools.common.mylyn.feature/feature.xml 2012-05-04 17:36:57 UTC (rev 40800)
@@ -8,18 +8,18 @@
<plugin id="org.jboss.tools.common.mylyn" download-size="0" install-size="0" version="0.0.0" />
<requires>
- <import feature="org.eclipse.mylyn_feature" version="3.6.2" match="greaterOrEqual" />
- <import feature="org.eclipse.mylyn.ide_feature" version="3.6.2" match="greaterOrEqual" />
- <import feature="org.eclipse.mylyn.commons" version="3.6.2" match="greaterOrEqual" />
- <import feature="org.eclipse.mylyn.context_feature" version="3.6.2" match="greaterOrEqual" />
- <import feature="org.eclipse.mylyn.bugzilla_feature" version="3.6.2" match="greaterOrEqual" />
- <import feature="org.eclipse.mylyn.java_feature" version="3.6.2" match="greaterOrEqual" />
- <import feature="org.eclipse.mylyn.pde_feature" version="3.6.2" match="greaterOrEqual" />
- <import feature="org.eclipse.mylyn.team_feature" version="3.6.2" match="greaterOrEqual" />
+ <import feature="org.eclipse.mylyn_feature" version="3.6.5" match="greaterOrEqual" />
+ <import feature="org.eclipse.mylyn.ide_feature" version="3.6.5" match="greaterOrEqual" />
+ <import feature="org.eclipse.mylyn.commons" version="3.6.5" match="greaterOrEqual" />
+ <import feature="org.eclipse.mylyn.context_feature" version="3.6.5" match="greaterOrEqual" />
+ <import feature="org.eclipse.mylyn.bugzilla_feature" version="3.6.5" match="greaterOrEqual" />
+ <import feature="org.eclipse.mylyn.java_feature" version="3.6.5" match="greaterOrEqual" />
+ <import feature="org.eclipse.mylyn.pde_feature" version="3.6.5" match="greaterOrEqual" />
+ <import feature="org.eclipse.mylyn.team_feature" version="3.6.5" match="greaterOrEqual" />
- <import feature="org.eclipse.mylyn.versions" version="0.8.2" match="greaterOrEqual" />
+ <import feature="org.eclipse.mylyn.versions" version="0.8.5" match="greaterOrEqual" />
</requires>
-
+
<!-- JBDS-2098 add required mylyn and atlassian plugins/features; not sure if we need subclipse, bamboo, crucible, or fisheye support -->
<!--
<plugin id="com.atlassian.connector.eclipse.bamboo.core" version="0.0.0" match="greaterOrEqual" unpack="false" />
Modified: trunk/common/plugins/org.jboss.tools.common.mylyn/META-INF/MANIFEST.MF
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.mylyn/META-INF/MANIFEST.MF 2012-05-04 17:22:45 UTC (rev 40799)
+++ trunk/common/plugins/org.jboss.tools.common.mylyn/META-INF/MANIFEST.MF 2012-05-04 17:36:57 UTC (rev 40800)
@@ -6,14 +6,14 @@
Bundle-Vendor: JBoss by Red Hat
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Require-Bundle: org.jboss.tools.common.mylyn,
- org.eclipse.mylyn;bundle-version="3.6.0",
+ org.eclipse.mylyn;bundle-version="3.6.5",
org.eclipse.mylyn.commons.core;bundle-version="3.6.0",
- org.eclipse.mylyn.commons.ui;bundle-version="3.6.0",
- org.eclipse.mylyn.tasks.core;bundle-version="3.6.0",
- org.eclipse.mylyn.tasks.ui;bundle-version="3.6.0",
+ org.eclipse.mylyn.commons.ui;bundle-version="3.6.1",
+ org.eclipse.mylyn.tasks.core;bundle-version="3.6.1",
+ org.eclipse.mylyn.tasks.ui;bundle-version="3.6.5",
org.eclipse.core.runtime;bundle-version="3.7.0",
- com.atlassian.connector.eclipse.commons.core;bundle-version="3.0.0";resolution:=optional,
- com.atlassian.connector.eclipse.commons.ui;bundle-version="3.0.0";resolution:=optional,
- com.atlassian.connector.eclipse.jira.core;bundle-version="3.0.0";resolution:=optional,
- com.atlassian.connector.eclipse.jira.ui;bundle-version="3.0.0";resolution:=optional
+ com.atlassian.connector.eclipse.commons.core;bundle-version="3.0.2";resolution:=optional,
+ com.atlassian.connector.eclipse.commons.ui;bundle-version="3.0.2";resolution:=optional,
+ com.atlassian.connector.eclipse.jira.core;bundle-version="3.0.2";resolution:=optional,
+ com.atlassian.connector.eclipse.jira.ui;bundle-version="3.0.2";resolution:=optional
Eclipse-BundleShape: dir
13 years, 7 months
JBoss Tools SVN: r40799 - trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/examples.
by jbosstools-commits@lists.jboss.org
Author: ldimaggio
Date: 2012-05-04 13:22:45 -0400 (Fri, 04 May 2012)
New Revision: 40799
Modified:
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/examples/SmooksXML2POJO.java
Log:
Corrected expected results - did this ever work before?
Modified: trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/examples/SmooksXML2POJO.java
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/examples/SmooksXML2POJO.java 2012-05-04 14:54:26 UTC (rev 40798)
+++ trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/examples/SmooksXML2POJO.java 2012-05-04 17:22:45 UTC (rev 40799)
@@ -24,12 +24,12 @@
bot.sleep(Timing.time3S());
assertFalse ("Test fails due to ESB deployment error: NNNN", text.contains("ERROR [org.apache.juddi.v3.client.transport.wrapper.RequestHandler]"));
assertNotNull("Calling Send message failed, nothing appened to server log",text);
- assertTrue("Calling Send message failed, unexpected server output :"+text,text.contains("Order Items"));
+ assertTrue("Calling Send message failed, unexpected server output :"+text,text.contains("Order Value Objects Populated"));
text = executeClient(getExampleClientProjectName(),"src","org.jboss.soa.esb.samples.quickstart.transformxml2pojo.test","ReceiveJMSMessage.java");
assertFalse ("Test fails due to ESB deployment error: NNNN", text.contains("ERROR [org.apache.juddi.v3.client.transport.wrapper.RequestHandler]"));
assertNotNull("Calling Send message failed, nothing appened to server log",text);
- assertTrue("Calling Send message failed, unexpected server output :"+text,text.contains("Order Items"));
+ assertTrue("Calling Send message failed, unexpected server output :"+text,text.contains("Order Value Objects Populated"));
SWTTestExt.servers.removeAllProjectsFromServer();
}
}
13 years, 7 months
JBoss Tools SVN: r40798 - trunk/documentation/whatsnew.
by jbosstools-commits@lists.jboss.org
Author: yradtsevich
Date: 2012-05-04 10:54:26 -0400 (Fri, 04 May 2012)
New Revision: 40798
Modified:
trunk/documentation/whatsnew/index.html
Log:
Changed N&N links from "Visual Page Editor" to "Visual Page Editor/BrowserSim" when it is appropriate
Modified: trunk/documentation/whatsnew/index.html
===================================================================
--- trunk/documentation/whatsnew/index.html 2012-05-04 14:51:48 UTC (rev 40797)
+++ trunk/documentation/whatsnew/index.html 2012-05-04 14:54:26 UTC (rev 40798)
@@ -68,7 +68,7 @@
<p><a href="ws/ws-news-1.2.2.Beta1.html">Webservices Tools</a></p>
<p><a href="jst/jst-news-3.3.0.Beta1.html">JST/JSF</a></p>
- <p><a href="vpe/vpe-news-3.3.0.Beta1.html">Visual Page Editor</a></p>
+ <p><a href="vpe/vpe-news-3.3.0.Beta1.html">Visual Page Editor/BrowserSim</a></p>
<p><a href="hibernate/hibernate-news-3.5.0.Beta1.html">Hibernate Tools</a></p>
@@ -89,7 +89,7 @@
<p><a href="as/as-news-3.3.0.M5.html">JBoss AS Server
Tools</a></p>
<p><a href="jst/jst-news-3.3.0.M5.html">JST/JSF</a></p>
- <p><a href="vpe/vpe-news-3.3.0.M5.html">Visual Page Editor</a></p>
+ <p><a href="vpe/vpe-news-3.3.0.M5.html">Visual Page Editor/BrowserSim</a></p>
<p><a href="cdi/cdi-news-3.3.0.M5.html">CDI/Seam 3 Tools</a></p>
<p><a href="forge/forge-news-3.3.0.M5.html">Forge Tools</a></p>
<p><a href="hibernate/hibernate-news-3.5.0.M5.html">Hibernate Tools</a></p>
13 years, 7 months
JBoss Tools SVN: r40797 - trunk/documentation/whatsnew.
by jbosstools-commits@lists.jboss.org
Author: yradtsevich
Date: 2012-05-04 10:51:48 -0400 (Fri, 04 May 2012)
New Revision: 40797
Modified:
trunk/documentation/whatsnew/index.html
Log:
https://issues.jboss.org/browse/JBIDE-11744 : Create "New and Noteworthy" for 3.3.0.Beta3 /
https://issues.jboss.org/browse/JBIDE-11755 : Visual Editor Component N&N
Modified: trunk/documentation/whatsnew/index.html
===================================================================
--- trunk/documentation/whatsnew/index.html 2012-05-04 14:48:04 UTC (rev 40796)
+++ trunk/documentation/whatsnew/index.html 2012-05-04 14:51:48 UTC (rev 40797)
@@ -34,8 +34,17 @@
<hr>
</td>
</tr>
+
<tr>
<td valign="top" align="left">
+ <p align="right"><b>3.3.0.Beta3</b>
+ <td valign="top">
+ <p><a href="vpe/vpe-news-3.3.0.Beta3.html">Visual Page Editor/BrowserSim</a></p>
+ </td>
+ </tr>
+
+ <tr>
+ <td valign="top" align="left">
<p align="right"><b>3.3.0.Beta1</b>
<td valign="top">
13 years, 7 months
JBoss Tools SVN: r40796 - in trunk/documentation/whatsnew/vpe: images/3.3.0.Beta3 and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: yradtsevich
Date: 2012-05-04 10:48:04 -0400 (Fri, 04 May 2012)
New Revision: 40796
Modified:
trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/browsersim-android.png
trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/browsersim-iphone4.png
trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/browsersim-rotate.png
trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/view-source-option.png
trunk/documentation/whatsnew/vpe/vpe-news-3.3.0.Beta3.html
Log:
https://issues.jboss.org/browse/JBIDE-11755 : Visual Editor Component N&N
Property changes on: trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/browsersim-android.png
___________________________________________________________________
Modified: svn:mime-type
- application/octet-stream
+ image/png
Property changes on: trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/browsersim-iphone4.png
___________________________________________________________________
Modified: svn:mime-type
- application/octet-stream
+ image/png
Property changes on: trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/browsersim-rotate.png
___________________________________________________________________
Modified: svn:mime-type
- application/octet-stream
+ image/png
Property changes on: trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/view-source-option.png
___________________________________________________________________
Modified: svn:mime-type
- application/octet-stream
+ image/png
Property changes on: trunk/documentation/whatsnew/vpe/vpe-news-3.3.0.Beta3.html
___________________________________________________________________
Added: svn:mime-type
+ text/html
13 years, 7 months
JBoss Tools SVN: r40795 - in trunk/documentation/whatsnew/vpe: images and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: yradtsevich
Date: 2012-05-04 10:45:17 -0400 (Fri, 04 May 2012)
New Revision: 40795
Added:
trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/
trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/browsersim-android.png
trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/browsersim-iphone4.png
trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/browsersim-rotate.png
trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/view-source-option.png
trunk/documentation/whatsnew/vpe/vpe-news-3.3.0.Beta3.html
Log:
https://issues.jboss.org/browse/JBIDE-11755 : Visual Editor Component N&N
Added: trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/browsersim-android.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/browsersim-android.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/browsersim-iphone4.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/browsersim-iphone4.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/browsersim-rotate.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/browsersim-rotate.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/view-source-option.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/vpe/images/3.3.0.Beta3/view-source-option.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/vpe/vpe-news-3.3.0.Beta3.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.3.0.Beta3.html (rev 0)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.3.0.Beta3.html 2012-05-04 14:45:17 UTC (rev 40795)
@@ -0,0 +1,102 @@
+<?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>Visual Page Editor/BrowserSim 3.3.0.Beta3 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 style="text-align:left">Visual Page Editor/BrowserSim 3.3.0.Beta3 What's New</h1>
+
+<p align="right">
+<a href="../index.html">< Main Index</a>
+<a href="../hibernate/hibernate-news-3.3.0.Beta3.html">Hibernate Tools ></a>
+</p>
+
+<table border="0" cellpadding="10" cellspacing="0">
+ <tr>
+ <td colspan="2">
+ <hr />
+ <h3>BrowserSim</h3>
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <b><p>
+ View Source Option
+ <p></b>
+ </td>
+ <td valign="top">
+ <p>Now BrowserSim has a View Source option, so it is easy to view the HTML source directly in Eclipse.</p>
+ <p>
+ <img src="images/3.3.0.Beta3/view-source-option.png" width="555px" height="756px">
+ </p>
+ <p><small>
+ <a href="https://jira.jboss.org/jira/browse/JBIDE-11179">Related Jira</a>
+ </small></p>
+ </td>
+ </tr>
+
+ <tr>
+ <td colspan="2">
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <b><p>
+ Two new skins for BrowserSim
+ <p></b>
+ </td>
+ <td valign="top">
+ <p>BrowserSim got iPhone 4 and Android skins.</p>
+ <p style="width:850px">
+ <img src="images/3.3.0.Beta3/browsersim-iphone4.png" style="padding-right:20px;" height="711px" width="376px">
+ <img src="images/3.3.0.Beta3/browsersim-android.png" height="635px" width="419px">
+ </p>
+ <p><small>
+ <a href="https://jira.jboss.org/jira/browse/JBIDE-10945">Related Jira</a>
+ </small></p>
+ </td>
+ </tr>
+
+ <tr>
+ <td colspan="2">
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <b><p>
+ Rotate phone "on" the skin
+ <p></b>
+ </td>
+ <td valign="top">
+ <p>Now phones may be rotated by a right mouse click on one of the four corners.</p>
+ <p>
+ <img src="images/3.3.0.Beta3/browsersim-rotate.png" width="376px" height="711px">
+ </p>
+ <p><small>
+ <a href="https://jira.jboss.org/jira/browse/JBIDE-11053">Related Jira</a>
+ </small></p>
+ </td>
+ </tr>
+</table>
+</body>
+</html>
\ No newline at end of file
13 years, 7 months
JBoss Tools SVN: r40794 - trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/extensions.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2012-05-04 10:19:48 -0400 (Fri, 04 May 2012)
New Revision: 40794
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/extensions/ShowInWelcomePageActionProvider.java
Log:
JBIDE-11478 npe fix
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/extensions/ShowInWelcomePageActionProvider.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/extensions/ShowInWelcomePageActionProvider.java 2012-05-04 14:13:10 UTC (rev 40793)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/views/server/extensions/ShowInWelcomePageActionProvider.java 2012-05-04 14:19:48 UTC (rev 40794)
@@ -94,7 +94,8 @@
}
} else {
ServerExtendedProperties props = (ServerExtendedProperties)server.loadAdapter(ServerExtendedProperties.class, new NullProgressMonitor());
- urlString = props.getWelcomePageUrl();
+ if( props != null )
+ urlString = props.getWelcomePageUrl();
}
}
return urlString;
13 years, 7 months