You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ma...@apache.org on 2012/08/27 22:37:41 UTC

svn commit: r1377838 - in /incubator/ooo/ooo-site/trunk/content/download/test: other_print.html print_tables_aoo.js

Author: marcus
Date: Mon Aug 27 20:37:41 2012
New Revision: 1377838

URL: http://svn.apache.org/viewvc?rev=1377838&view=rev
Log:
Table and following text has to be left aligned

Modified:
    incubator/ooo/ooo-site/trunk/content/download/test/other_print.html
    incubator/ooo/ooo-site/trunk/content/download/test/print_tables_aoo.js

Modified: incubator/ooo/ooo-site/trunk/content/download/test/other_print.html
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/download/test/other_print.html?rev=1377838&r1=1377837&r2=1377838&view=diff
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/download/test/other_print.html (original)
+++ incubator/ooo/ooo-site/trunk/content/download/test/other_print.html Mon Aug 27 20:37:41 2012
@@ -68,9 +68,9 @@
 </script>
 <br/>
 
-<hr style="display: block;" />
+<hr style="clear: left" style="display: block;" />
 
-<h3 id='notes'>Important Notes:</h3>
+<h3 id="notes" style="clear: left">Important Notes:</h3>
 <ul>
   <li>A <a href="http://wiki.openoffice.org/wiki/Languagepack" title="What is a language pack">language pack</a>
   is not a release for its own and has to be installed over a stable release with the same version number and platform.

Modified: incubator/ooo/ooo-site/trunk/content/download/test/print_tables_aoo.js
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/download/test/print_tables_aoo.js?rev=1377838&r1=1377837&r2=1377838&view=diff
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/download/test/print_tables_aoo.js (original)
+++ incubator/ooo/ooo-site/trunk/content/download/test/print_tables_aoo.js Mon Aug 27 20:37:41 2012
@@ -92,7 +92,7 @@ function write_table( REL_MODE ) {
 	document.write( "<hr style='display: block;' />" );
 	document.write( "<div class='largetable'>" );
 	document.write( "<h3 id='" + REL_MODE + "'>" + NAME + "</h3><br />" );
-	document.write( "<table class='builds' cellpadding='2' cellspacing='2'>" );
+	document.write( "<table class='builds' cellpadding='2' cellspacing='2' style='float: left'>" );
 
 	define_colspan();
 	write_header( 1 );
@@ -329,7 +329,7 @@ function write_build( URL_AOO, URL_HASH,
 
 	// When enough rows are on the screen then write a small header for better visual orientation
 	ROW_COUNT++;
-	if ( ROW_COUNT == 9 ) {
+	if ( ROW_COUNT == 11 ) {
 		write_top();
 		write_header( 0 );
 		ROW_COUNT = 1;