Return-Path: X-Original-To: apmail-incubator-bloodhound-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-bloodhound-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 01BD196EC for ; Thu, 5 Apr 2012 17:03:33 +0000 (UTC) Received: (qmail 72395 invoked by uid 500); 5 Apr 2012 17:03:32 -0000 Delivered-To: apmail-incubator-bloodhound-commits-archive@incubator.apache.org Received: (qmail 72373 invoked by uid 500); 5 Apr 2012 17:03:32 -0000 Mailing-List: contact bloodhound-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: bloodhound-dev@incubator.apache.org Delivered-To: mailing list bloodhound-commits@incubator.apache.org Received: (qmail 72365 invoked by uid 99); 5 Apr 2012 17:03:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Apr 2012 17:03:32 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Apr 2012 17:03:30 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 991E6238890B; Thu, 5 Apr 2012 17:03:10 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1309944 - in /incubator/bloodhound/trunk/doc/html-templates: css/bloodhound-custom.css css/bootstrap.css dashboard.html product.html version.html Date: Thu, 05 Apr 2012 17:03:10 -0000 To: bloodhound-commits@incubator.apache.org From: jdreimann@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120405170310.991E6238890B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jdreimann Date: Thu Apr 5 17:03:09 2012 New Revision: 1309944 URL: http://svn.apache.org/viewvc?rev=1309944&view=rev Log: Updated the Product page to suggest a layout, please see mailing list for more. Also updated the custom css with statusitem class and did some general cleanup such as fixing the alignment of tab content on the version page. Modified: incubator/bloodhound/trunk/doc/html-templates/css/bloodhound-custom.css incubator/bloodhound/trunk/doc/html-templates/css/bootstrap.css incubator/bloodhound/trunk/doc/html-templates/dashboard.html incubator/bloodhound/trunk/doc/html-templates/product.html incubator/bloodhound/trunk/doc/html-templates/version.html Modified: incubator/bloodhound/trunk/doc/html-templates/css/bloodhound-custom.css URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/doc/html-templates/css/bloodhound-custom.css?rev=1309944&r1=1309943&r2=1309944&view=diff ============================================================================== --- incubator/bloodhound/trunk/doc/html-templates/css/bloodhound-custom.css (original) +++ incubator/bloodhound/trunk/doc/html-templates/css/bloodhound-custom.css Thu Apr 5 17:03:09 2012 @@ -1,6 +1,7 @@ +/* @group Sticky Status */ + div#stickyStatus { position: relative; - width: 620px; } div#belowStatus { @@ -27,27 +28,78 @@ div#stickyStatus #whitebox { } div#stickyStatus #statusBar { - position: relative; + position: absolute; top: 65px; left: 30px; width: 580px; text-align: center; } -div#stickyStatus #statusBarBox { +div#statusBarBox { background-color: #FEFFF0; height: 45px; width: 583px; position: absolute; top: -5px; left: -18px; - z-index: -1; + z-index: -50; } -div#stickyStatus .first { +div#statusBar .first { float: left; } -div#stickyStatus .other { +div#statusBar .other { float: left; margin-left: 50px; -} \ No newline at end of file +} + +/* @end */ + +/* @group OOCSS */ + +ul.oocss { + list-style-type: none; + padding-left: 30px; + margin: 0; +} + +ul.oocss h3, +ul.oocss h6 { + display: inline; +} + +ul.oocss h3 { + margin-right: 20px; +} + +/* @end */ + +/* @group Status items */ + +ul.statusitems { + list-style-type: none; + margin: 0; + text-align: center; + border-bottom: 1px dashed gray; +} + +ul.statusitems li { + display: inline-block; + margin-right: 50px; +} + +ul.statusitems li p { + margin-bottom: -2px; +} + +ul.statusitems li a { + font-size: 150%; +} + +ul.statusitems li .progress { + width: 200%; + margin-bottom: 0px; + margin-top: 0; +} + +/* @end */ \ No newline at end of file Modified: incubator/bloodhound/trunk/doc/html-templates/css/bootstrap.css URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/doc/html-templates/css/bootstrap.css?rev=1309944&r1=1309943&r2=1309944&view=diff ============================================================================== --- incubator/bloodhound/trunk/doc/html-templates/css/bootstrap.css (original) +++ incubator/bloodhound/trunk/doc/html-templates/css/bootstrap.css Thu Apr 5 17:03:09 2012 @@ -2689,7 +2689,7 @@ input[type="submit"].btn.btn-mini { clear: both; } .tab-content { - display: block; + display: table; width: 100%; } .tabs-below .nav-tabs, @@ -2699,7 +2699,7 @@ input[type="submit"].btn.btn-mini { } .tab-content > .tab-pane, .pill-content > .pill-pane { - display: block; + display: none; } .tab-content > .active, .pill-content > .active { Modified: incubator/bloodhound/trunk/doc/html-templates/dashboard.html URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/doc/html-templates/dashboard.html?rev=1309944&r1=1309943&r2=1309944&view=diff ============================================================================== --- incubator/bloodhound/trunk/doc/html-templates/dashboard.html (original) +++ incubator/bloodhound/trunk/doc/html-templates/dashboard.html Thu Apr 5 17:03:09 2012 @@ -31,7 +31,7 @@
-
Modified: incubator/bloodhound/trunk/doc/html-templates/product.html URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/doc/html-templates/product.html?rev=1309944&r1=1309943&r2=1309944&view=diff ============================================================================== --- incubator/bloodhound/trunk/doc/html-templates/product.html (original) +++ incubator/bloodhound/trunk/doc/html-templates/product.html Thu Apr 5 17:03:09 2012 @@ -1,11 +1,13 @@ + MultiSite - Apache Bloodhound
+
+
-
-

MultiSite

-

-

This is the product description. Nay lad ipsum dolor sit t'foot o' our stairs ah'll box thi ears big girl's blouse ey up donec ee by gum ah'll learn thi soft southern pansy at mardy bum phasellus soft southern pansy.

- -
- -
-
- -
-
-

Version 14.3 Current

- Due in 3 weeks (15 Feb, 2012) Change
75% completed
-
-
+
+
+
+
+
+

MultiSite

+
Owned by Warren Warwick
+
+
+
+
+

24% complete

+
+
- Complete (75)Incomplete (25)
-

Note to maintainers -

    -
  • Move tickets from next-minor-0.14.x to here once you know you're going to fix them for the 0.14.2 release.
  • -
  • There should be no enhancements here, only defects
  • -
  • There should be only major defects here anyway, focus is now on 0.15
  • -
-

-
-
+
+

In progress

+

14

+
+
+

Open

+

20

+
+
+

Complete

+

24

- -
+
+
+
+
+

Replication, mirroring and clustering for enterprise performance

+ +

This is the product description. Nay lad ipsum dolor sit t'foot o' our stairs ah'll box thi ears big girl's blouse ey up donec ee by gum ah'll learn thi soft southern pansy at mardy bum phasellus soft southern pansy.

+
    +
  • Michael palin gi' o'er felis nah then mi bloomin' 'eck t' molestie nunc accumsan.
  • +
  • Varius tempor gerritetten eget 'sup wi' 'im.
  • +
+ +
+
+

Versions

+ Add new + + View more +
+
+
+ -
-

Activity

- +
+

Activity

+
- + +
+
@@ -148,6 +219,7 @@ + Modified: incubator/bloodhound/trunk/doc/html-templates/version.html URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/doc/html-templates/version.html?rev=1309944&r1=1309943&r2=1309944&view=diff ============================================================================== --- incubator/bloodhound/trunk/doc/html-templates/version.html (original) +++ incubator/bloodhound/trunk/doc/html-templates/version.html Thu Apr 5 17:03:09 2012 @@ -97,21 +97,19 @@
-
-

Sit amet vestibulum

- +
+

Sit amet vestibulum

+

Note to maintainers:

  • Move tickets from next-minor-0.14.x to here once you know you're going to fix them for the 0.14.2 release.
  • There should be no enhancements here, only defects
  • There should be only major defects here anyway, focus is now on 0.15
- -
- +
Milestones @@ -127,41 +125,31 @@
-
+
-

Create Milestone

-
-
- - - - -

- -
- + Attach files
Upload or link to files. -

- + Set owner
This is you by default. -
-
- + Due date
Upload or link to files. -

- + Component
Upload or link to files. -
- - Cancel -
+

Create Milestone

+
+ + + + +
+ + Attach files

Upload or link to files.

+ + Set owner

This is you by default.

+ + Due date

Upload or link to files.

+ + Component

Upload or link to files.

+ Cancel
- +
@@ -174,13 +162,12 @@
-
+