Author: manolo
Date: Mon Apr 30 16:52:04 2012
New Revision: 1332287

URL: http://svn.apache.org/viewvc?rev=1332287&view=rev
Log:
Send deflated js. Fix favicon transparency. Css gradients in opera. Use 
xsiframe linker

Added:
    
james/hupa/trunk/client/src/main/webapp/images/hupa-logo-original-transparent.png
      - copied, changed from r1332199, 
james/hupa/trunk/client/src/main/webapp/images/hupa-logo-original-transparent.jpg
Removed:
    
james/hupa/trunk/client/src/main/webapp/images/hupa-logo-original-transparent.jpg
Modified:
    james/hupa/trunk/client/src/main/java/org/apache/hupa/Hupa.gwt.xml
    james/hupa/trunk/client/src/main/java/org/apache/hupa/HupaProd.gwt.xml
    james/hupa/trunk/client/src/main/webapp/Hupa.css
    james/hupa/trunk/client/src/main/webapp/Hupa.html
    james/hupa/trunk/client/src/main/webapp/favicon.ico

Modified: james/hupa/trunk/client/src/main/java/org/apache/hupa/Hupa.gwt.xml
URL: 
http://svn.apache.org/viewvc/james/hupa/trunk/client/src/main/java/org/apache/hupa/Hupa.gwt.xml?rev=1332287&r1=1332286&r2=1332287&view=diff
==============================================================================
--- james/hupa/trunk/client/src/main/java/org/apache/hupa/Hupa.gwt.xml 
(original)
+++ james/hupa/trunk/client/src/main/java/org/apache/hupa/Hupa.gwt.xml Mon Apr 
30 16:52:04 2012
@@ -37,15 +37,18 @@
   <inherits name='com.google.web.bindery.requestfactory.RequestFactory'/>
   <!-- <inherits name="com.google.gwt.junit.JUnit"/> -->
   
-  <!-- Inherit the default GWT style sheet.  You can change       -->
-  <!-- the theme of your GWT application by uncommenting          -->
-  <!-- any one of the following lines.                            -->
+  <!-- Inherit the default GWT style sheet.                       -->
   <inherits name='com.google.gwt.user.theme.standard.Standard'/>
   <!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
   <!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/>     -->
+  
+  <!-- CSS loaded asynchronously -->
   <stylesheet src="../Hupa.css"/>
   <stylesheet src="Upload.css"/>
   
+  <!--  xsiframe would be the default in gwt soon -->
+  <add-linker name="xsiframe"/>
+  
   <set-property name="locale" value="en" />
   <set-property-fallback name="locale" value="en"/>
   

Modified: james/hupa/trunk/client/src/main/java/org/apache/hupa/HupaProd.gwt.xml
URL: 
http://svn.apache.org/viewvc/james/hupa/trunk/client/src/main/java/org/apache/hupa/HupaProd.gwt.xml?rev=1332287&r1=1332286&r2=1332287&view=diff
==============================================================================
--- james/hupa/trunk/client/src/main/java/org/apache/hupa/HupaProd.gwt.xml 
(original)
+++ james/hupa/trunk/client/src/main/java/org/apache/hupa/HupaProd.gwt.xml Mon 
Apr 30 16:52:04 2012
@@ -18,6 +18,10 @@
 <module rename-to='hupa'>
   <inherits name='org.apache.hupa.Hupa'/> 
 
+  <!-- Provide gzipped version of generated js, so as it will sent compressed 
by jetty -->
+  <inherits name="com.google.gwt.precompress.Precompress"/>
+
+  <!-- This reduces a lot the size of compiled javascript-->
   <set-property name="compiler.stackMode" value="strip" />
 
   <!-- Set the languages to compile -->

Modified: james/hupa/trunk/client/src/main/webapp/Hupa.css
URL: 
http://svn.apache.org/viewvc/james/hupa/trunk/client/src/main/webapp/Hupa.css?rev=1332287&r1=1332286&r2=1332287&view=diff
==============================================================================
--- james/hupa/trunk/client/src/main/webapp/Hupa.css (original)
+++ james/hupa/trunk/client/src/main/webapp/Hupa.css Mon Apr 30 16:52:04 2012
@@ -361,26 +361,31 @@ body {
 .hupa-top-wrap, .hupa-login-form, .hupa-msg-top-bar {
     background: -moz-linear-gradient(#FFFFFF, #C5D9FF);
     background: -webkit-linear-gradient(#FFFFFF, #C5D9FF);
+    background: -o-linear-gradient(#FFFFFF, #C5D9FF);
     filter: progid:DXImageTransform.Microsoft.gradient( 
startColorstr='#FFFFFF', endColorstr='#C5D9FF',GradientType=0 ); 
 }
 .hupa-commands-bar {
     background: -moz-linear-gradient(#C5D9FF, #eaeaea);
     background: -webkit-linear-gradient(#C5D9FF, #eaeaea);
+    background: -o-linear-gradient(#C5D9FF, #eaeaea);
     filter: progid:DXImageTransform.Microsoft.gradient( 
startColorstr='#C5D9FF', endColorstr='#eaeaea',GradientType=0 ); 
 }
 .hupa-tree {
     background: -moz-linear-gradient(#C5D9FF, #eaeaea);
     background: -webkit-linear-gradient(#C5D9FF, #eaeaea);
+    background: -o-linear-gradient(#C5D9FF, #eaeaea);
     filter: progid:DXImageTransform.Microsoft.gradient( 
startColorstr='#C5D9FF', endColorstr='#eaeaea',GradientType=0 ); 
 }
 div.hupa-main {
     background: -moz-linear-gradient(#eaeaea, #fafafa);
     background: -webkit-linear-gradient(#eaeaea, #fafafa);
+    background: -o-linear-gradient(#eaeaea, #fafafa);
     filter: progid:DXImageTransform.Microsoft.gradient( 
startColorstr='#eaeaea', endColorstr='#fafafa',GradientType=0 );     
 }
 .hupa-flash, .hupa-dialog-box td.dialogMiddleCenter  {
     background: -moz-linear-gradient(#fae5b0, #eaeaea);
     background: -webkit-linear-gradient(#fae5b0, #eaeaea);
+    background: -o-linear-gradient(#fae5b0, #eaeaea);
     filter: progid:DXImageTransform.Microsoft.gradient( 
startColorstr='#fae5b0', endColorstr='#eaeaea',GradientType=0 );     
 }
 .hupa-login-form, .hupa-bottom {

Modified: james/hupa/trunk/client/src/main/webapp/Hupa.html
URL: 
http://svn.apache.org/viewvc/james/hupa/trunk/client/src/main/webapp/Hupa.html?rev=1332287&r1=1332286&r2=1332287&view=diff
==============================================================================
--- james/hupa/trunk/client/src/main/webapp/Hupa.html (original)
+++ james/hupa/trunk/client/src/main/webapp/Hupa.html Mon Apr 30 16:52:04 2012
@@ -18,6 +18,8 @@
 <html>
   <head>
     <meta http-equiv="content-type" content="text/html; charset=UTF-8">
+
+    <link rel="Shortcut Icon" href="favicon.ico" type="image/x-icon"/>
     
     <title>Hupa webmail</title>
     

Modified: james/hupa/trunk/client/src/main/webapp/favicon.ico
URL: 
http://svn.apache.org/viewvc/james/hupa/trunk/client/src/main/webapp/favicon.ico?rev=1332287&r1=1332286&r2=1332287&view=diff
==============================================================================
Binary files - no diff available.

Copied: 
james/hupa/trunk/client/src/main/webapp/images/hupa-logo-original-transparent.png
 (from r1332199, 
james/hupa/trunk/client/src/main/webapp/images/hupa-logo-original-transparent.jpg)
URL: 
http://svn.apache.org/viewvc/james/hupa/trunk/client/src/main/webapp/images/hupa-logo-original-transparent.png?p2=james/hupa/trunk/client/src/main/webapp/images/hupa-logo-original-transparent.png&p1=james/hupa/trunk/client/src/main/webapp/images/hupa-logo-original-transparent.jpg&r1=1332199&r2=1332287&rev=1332287&view=diff
==============================================================================
Binary files - no diff available.



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscr...@james.apache.org
For additional commands, e-mail: server-dev-h...@james.apache.org

Reply via email to