summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build/build.xml2
-rwxr-xr-xsrc/com/vaadin/terminal/gwt/client/ApplicationConnection.java2
-rw-r--r--src/com/vaadin/terminal/gwt/server/PortletApplicationContext.java2
3 files changed, 3 insertions, 3 deletions
diff --git a/build/build.xml b/build/build.xml
index fffa906ec1..c62f64796d 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -991,7 +991,7 @@
</tstamp>
<property file="${build.properties.file}" />
<property name="version" value="${vaadin.version}"/>
- <property name="version.full" value="${version}.custom-${build.date.compact}"/>
+ <property name="version.full" value="${version}-${build.date.compact}"/>
<!-- <property name="compile.only.default-widgetset" value="1"/> -->
</then>
<!-- Otherwise version and snapshot.repository.url come from target "init" -->
diff --git a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java
index d320e463cb..8baad19786 100755
--- a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java
+++ b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java
@@ -570,7 +570,7 @@ public class ApplicationConnection {
}
int cssWaits = 0;
- static final int MAX_CSS_WAITS = 20;
+ static final int MAX_CSS_WAITS = 100;
protected void handleWhenCSSLoaded(final String jsonText,
final ValueMap json) {
diff --git a/src/com/vaadin/terminal/gwt/server/PortletApplicationContext.java b/src/com/vaadin/terminal/gwt/server/PortletApplicationContext.java
index fac1f17ba7..49d40cbc62 100644
--- a/src/com/vaadin/terminal/gwt/server/PortletApplicationContext.java
+++ b/src/com/vaadin/terminal/gwt/server/PortletApplicationContext.java
@@ -29,7 +29,7 @@ import com.vaadin.Application;
public class PortletApplicationContext extends WebApplicationContext implements
Serializable {
- protected PortletSession portletSession;
+ protected transient PortletSession portletSession;
protected Map<Application, Set<PortletListener>> portletListeners = new HashMap<Application, Set<PortletListener>>();