You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bloodhound.apache.org by rj...@apache.org on 2013/03/11 03:50:25 UTC

svn commit: r1454979 - /incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_wiki_view.html

Author: rjollos
Date: Mon Mar 11 02:50:24 2013
New Revision: 1454979

URL: http://svn.apache.org/r1454979
Log:
Fixes #455: Wrap the wiki version page info table in a `div` with class `span12` so that it doesn't overflow the `#content` `div`.

Modified:
    incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_wiki_view.html

Modified: incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_wiki_view.html
URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_wiki_view.html?rev=1454979&r1=1454978&r2=1454979&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_wiki_view.html (original)
+++ incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_wiki_view.html Mon Mar 11 02:50:24 2013
@@ -49,20 +49,22 @@
     <div id="content" class="wiki row">
 
       <py:if test="version">
-        <br />
-        <table id="info" summary="Revision info">
-          <tbody>
-            <tr><th scope="row" i18n:msg="version, author, date">
-               Version $page.version (modified by ${authorinfo(page.author)}, ${pretty_dateinfo(page.time)})
-               (<a href="${href.wiki(page.name, action='diff', version=page.version)}">diff</a>)
-            </th></tr>
-            <tr><td xml:space="preserve">
-              <div class="alert alert-success">
-                ${wiki_to_html(context, page.comment or '--')}
-              </div>
-            </td></tr>
-          </tbody>
-        </table>
+        <div class="span12">
+          <br />
+          <table id="info" summary="Revision info">
+            <tbody>
+              <tr><th scope="row" i18n:msg="version, author, date">
+                 Version $page.version (modified by ${authorinfo(page.author)}, ${pretty_dateinfo(page.time)})
+                 (<a href="${href.wiki(page.name, action='diff', version=page.version)}">diff</a>)
+              </th></tr>
+              <tr><td xml:space="preserve">
+                <div class="alert alert-success">
+                  ${wiki_to_html(context, page.comment or '--')}
+                </div>
+              </td></tr>
+            </tbody>
+          </table>
+        </div>
       </py:if>
 
       <div class="wikipage searchable span12" py:choose="" xml:space="preserve">