You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2013/08/23 03:19:48 UTC

[08/35] git commit: Make layout upgrade for Bootstrap 3

Make layout upgrade for Bootstrap 3


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/1820cb20
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/1820cb20
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/1820cb20

Branch: refs/heads/master
Commit: 1820cb200659a479c9a98a54542279cb2b2eaaf0
Parents: eafc779
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Thu Aug 22 15:38:23 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Thu Aug 22 15:38:23 2013 -0700

----------------------------------------------------------------------
 .../tapestry5/corelib/pages/ExceptionReport.tml | 28 +++++++++++---------
 1 file changed, 16 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/1820cb20/tapestry-core/src/main/resources/org/apache/tapestry5/corelib/pages/ExceptionReport.tml
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/resources/org/apache/tapestry5/corelib/pages/ExceptionReport.tml b/tapestry-core/src/main/resources/org/apache/tapestry5/corelib/pages/ExceptionReport.tml
index c12075e..abac44b 100644
--- a/tapestry-core/src/main/resources/org/apache/tapestry5/corelib/pages/ExceptionReport.tml
+++ b/tapestry-core/src/main/resources/org/apache/tapestry5/corelib/pages/ExceptionReport.tml
@@ -4,28 +4,32 @@
 </head>
 <body>
 <div class="navbar navbar-inverse navbar-fixed-top">
-    <div class="navbar-inner">
-        <div class="container-fluid">
-
-            <ul class="nav">
-                <li class="navbar-text">
-                    <h4>Application Exception</h4>
+    <div class="container">
+        <div class="navbar-header">
+            <ul class="nav navbar-nav">
+                <li>
+                    <h4 class="navbar-text">Application Exception</h4>
                 </li>
                 <li class="divider-vertical"/>
-                <li class="navbar-text">
-                    Tapestry Version: ${tapestryVersion}
+                <li>
+                    <p class="navbar-text">
+                        Tapestry Version: ${tapestryVersion}
+                    </p>
                 </li>
                 <li class="divider-vertical"/>
-                <li class="navbar-text">
-                    Application Version: ${applicationVersion}
+                <li>
+                    <p class="navbar-text">
+                        Application Version: ${applicationVersion}
+                    </p>
                 </li>
             </ul>
         </div>
     </div>
 </div>
-<div class="container-fluid">
 
-    <div class="alert alert-error">
+<div class="container">
+
+    <div class="alert alert-danger">
         <h2>An exception has occurred processing this request.</h2>
 
         <p>${rootException.message}</p>