You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by bo...@apache.org on 2010/07/14 00:39:34 UTC

svn commit: r963892 - in /buildr/trunk/doc: css/default.css packaging.textile

Author: boisvert
Date: Tue Jul 13 22:39:34 2010
New Revision: 963892

URL: http://svn.apache.org/viewvc?rev=963892&view=rev
Log:
Another update for BUILDR-466: Rendering issue with IE on the website (Shane Witbeck)

Modified:
    buildr/trunk/doc/css/default.css
    buildr/trunk/doc/packaging.textile

Modified: buildr/trunk/doc/css/default.css
URL: http://svn.apache.org/viewvc/buildr/trunk/doc/css/default.css?rev=963892&r1=963891&r2=963892&view=diff
==============================================================================
--- buildr/trunk/doc/css/default.css (original)
+++ buildr/trunk/doc/css/default.css Tue Jul 13 22:39:34 2010
@@ -18,7 +18,7 @@
 body {
   background-color: #fff;
   color: #000;
-  font-family: "Helvetica Neue", "DejaVu Sans", "Verdana";
+  font-family: "Helvetica Neue", "DejaVu Sans", "Verdana", sans-serif;
   text-align: center;
   line-height: 150%;
 }
@@ -138,9 +138,8 @@ th, thead td {
 /*  display: inline; */ /* IE Hack */
   width: 12em;
   float: left;
-  text-align: left;
   margin-right: 2em;
-  font-family: "Gill Sans";
+  font-family: "Gill Sans",sans-serif;
   font-size: 11pt;
   text-align: right;
   border-right: 1px solid #ccc;
@@ -173,16 +172,17 @@ th, thead td {
 #pages ol li p  {
   font-weight: normal;
   color: #000;
-  vertical-align: center;
+  vertical-align: middle;
 }
 
 
 #content { /* Parent Wrapper for inside boxes */
 /*  display: inline; *//* IE Hack */
-  float: right;
+  float: left;
   width: 44em;
   margin-left: 0.3em;
   margin-bottom: 5em;
+  word-wrap: break-word; /* prevents container divs from wrapping */
 }
 
 ol.toc {

Modified: buildr/trunk/doc/packaging.textile
URL: http://svn.apache.org/viewvc/buildr/trunk/doc/packaging.textile?rev=963892&r1=963891&r2=963892&view=diff
==============================================================================
--- buildr/trunk/doc/packaging.textile (original)
+++ buildr/trunk/doc/packaging.textile Tue Jul 13 22:39:34 2010
@@ -242,7 +242,8 @@ Axis2 service archives are similar to JA
 
 {% highlight ruby %}
 package(:aar).with(:libs=>'log4j:log4j:jar:1.1')
-package(:aar).with(:services_xml=>_('target/services.xml'), :wsdls=>_('target/*.wsdl'))
+package(:aar).with(:services_xml=>_('target/services.xml'),
+                   :wsdls=>_('target/*.wsdl'))
 {% endhighlight %}
 
 The @libs@ attribute is a list of .jar artifacts to be included in the archive under /lib.  The default is no artifacts; compile dependencies are not included by default.
@@ -257,9 +258,11 @@ If you already have WSDL files in the @s
 # Host name depends on environment.
 host = ENV['ENV'] == 'test' ? 'test.host' : 'ws.example.com'
 filter.from(_('src/main/axis2')).into(_(:target)).
-  include('services.xml', '==*==.wsdl').using('http_port'=>'8080', 'http_host'=>host)
+  include('services.xml', '==*==.wsdl').using('http_port'=>'8080',
+                                              'http_host'=>host)
 package(:aar).wsdls.clear
-package(:aar).with(:services_xml=>_('target/services.xml'), :wsdls=>_('target/==*==.wsdl'))
+package(:aar).with(:services_xml=>_('target/services.xml'),
+                   :wsdls=>_('target/==*==.wsdl'))
 {% endhighlight %}