You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ns...@apache.org on 2013/10/24 15:12:06 UTC

svn commit: r1535370 - in /couchdb/site: index.html style/master.css style/master.less

Author: nslater
Date: Thu Oct 24 13:12:05 2013
New Revision: 1535370

URL: http://svn.apache.org/r1535370
Log:
Add search box and new l10n list

Modified:
    couchdb/site/index.html
    couchdb/site/style/master.css
    couchdb/site/style/master.less

Modified: couchdb/site/index.html
URL: http://svn.apache.org/viewvc/couchdb/site/index.html?rev=1535370&r1=1535369&r2=1535370&view=diff
==============================================================================
--- couchdb/site/index.html (original)
+++ couchdb/site/index.html Thu Oct 24 13:12:05 2013
@@ -44,7 +44,7 @@ This fabulous linen texture was integrat
             <a href="#about">About</a>
             <a href="http://docs.couchdb.org">Docs</a>
             <a href="#contribute">Contribute</a>
-            <a href="#mailing-list">Mailing List</a>
+            <a href="#mailing-lists">Mailing Lists</a>
             <a href="#download">Download</a>
             <a href="#quick-links">Quick Links</a>
         </div>
@@ -53,7 +53,7 @@ This fabulous linen texture was integrat
             <select onchange="location = this.options[this.selectedIndex].value;">
                 <option value="#about">About</option>
                 <option value="#contribute">Contribute</option>
-                <option value="#mailing-list">Mailing List</option>
+                <option value="#mailing-lists">Mailing Lists</option>
                 <option value="#download">Download</option>
                 <option value="#quick-links">Quick Links</option>
             </select>
@@ -135,12 +135,12 @@ This fabulous linen texture was integrat
 
 </div>
 
-<a class="scroll-point" name="mailing-list"></a>
+<a class="scroll-point" name="mailing-lists"></a>
 
 <hr/>
 
 <div class="wrap">
-    <h2 class="icon icon-mailing-list">Mailing List</h2>
+    <h2 class="icon icon-mailing-lists">Mailing Lists</h2>
 </div>
 
 <div class="grid">
@@ -152,6 +152,19 @@ This fabulous linen texture was integrat
         <br/>
 
         <div class="list-header">
+            <a href="http://mail-archives.apache.org/mod_mbox/couchdb-announce/"><strong>Mail Search</strong></a>
+            <p>Search all of our mailing lists at once.</p>
+        </div>
+
+        <ul class="list mailing-list">
+            <form action="http://markmail.org/search/list:org.apache.couchdb-*">
+                <input id="search-box" type="text" placeholder="Search query&hellip;" name="q" size="50"><button id="search-button"></button>
+            </form>
+        </ul>
+
+        <br/>
+
+        <div class="list-header">
             <a href="http://mail-archives.apache.org/mod_mbox/couchdb-announce/"><strong>Announcement Mailing List</strong></a>
             <p>This is a low-traffic list for release announcements and security disclosures.</p>
         </div>
@@ -196,6 +209,21 @@ This fabulous linen texture was integrat
         <br/>
 
         <div class="list-header">
+            <a href="http://mail-archives.apache.org/mod_mbox/couchdb-l10n/"><strong>Localisation Mailing List</strong></a>
+            <p>Do you speak more than one language? Help us to translate CouchDB!</p>
+        </div>
+
+        <ul class="list mailing-list">
+            <li>Writing to the list<a href="mailto:l10n@couchdb.apache.org">l10n@couchdb.apache.org<span></span></a></li>
+            <li>Subscription address<a href="mailto:l10n-subscribe@couchdb.apache.org">l10n-subscribe@couchdb.apache.org<span></span></a></li>
+            <li>Digest subscription address<a href="mailto:l10n-digest-subscribe@couchdb.apache.org">l10n-digest-subscribe@couchdb.apache.org<span></span></a></li>
+            <li>Unsubscription addresses<a href="mailto:l10n-unsubscribe@couchdb.apache.org">l10n-unsubscribe@couchdb.apache.org<span></span></a></li>
+            <li>Getting help with the list<a href="mailto:l10n-help@couchdb.apache.org">l10n-help@couchdb.apache.org<span></span></a></li>
+        </ul>
+
+        <br/>
+
+        <div class="list-header">
             <a href="http://mail-archives.apache.org/mod_mbox/couchdb-dev/"><strong>Developer Mailing List</strong></a>
             <p>This is where people working on CouchDB itself get together and discuss things.</p>
         </div>

Modified: couchdb/site/style/master.css
URL: http://svn.apache.org/viewvc/couchdb/site/style/master.css?rev=1535370&r1=1535369&r2=1535370&view=diff
==============================================================================
--- couchdb/site/style/master.css (original)
+++ couchdb/site/style/master.css Thu Oct 24 13:12:05 2013
@@ -59,6 +59,11 @@ label {
   font-weight: 400;
   font-size: 12px;
 }
+button {
+  font-size: 17px;
+  font-family: 'HelveticaNeue-Light', Helvetica, Arial, sans-serif;
+  font-weight: 300;
+}
 .feature {
   font-size: 21px;
 }
@@ -246,7 +251,7 @@ blockquote {
   bottom: 0;
 }
 /*---------------------------------------------------
-	Layout - Contribution, Mailing List, 
+	Layout - Contribution, Mailing List,
 	Download and Quick Links
 ---------------------------------------------------*/
 .container-box {
@@ -464,6 +469,35 @@ blockquote {
   background-color: #ae2323;
 }
 /*---------------------------------------------------
+	Search Form
+---------------------------------------------------*/
+#search-box {
+  border: none;
+  width: 716px;
+  padding: 8px;
+  font-size: 16px;
+  font-family: 'HelveticaNeue-Light', Helvetica, Arial, sans-serif;
+  font-weight: 300;
+}
+#search-box,
+#search-button {
+  box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  -webkit-box-sizing: border-box;
+  height: 32px;
+  vertical-align: bottom;
+}
+#search-button {
+  font-size: 16px;
+  margin-left: -1px;
+  padding: 5px;
+  border: none;
+  width: 36px;
+  background: url(../image/sprite.png) no-repeat;
+  background-position: -156px -95px;
+  background-color: #ff0000;
+}
+/*---------------------------------------------------
 	Misc
 ---------------------------------------------------*/
 .icon {
@@ -640,7 +674,6 @@ a.pt-about {
 @media all and (max-width: 675px) {
   body {
     /*        font-size: 14px;*/
-  
   }
   .leadin img {
     left: -4px;

Modified: couchdb/site/style/master.less
URL: http://svn.apache.org/viewvc/couchdb/site/style/master.less?rev=1535370&r1=1535369&r2=1535370&view=diff
==============================================================================
--- couchdb/site/style/master.less (original)
+++ couchdb/site/style/master.less Thu Oct 24 13:12:05 2013
@@ -72,10 +72,16 @@ b, strong {
 
 label {
 	font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif;
-	font-weight: 400;	
+	font-weight: 400;
 	font-size: 12px;
 }
 
+button {
+    font-size: 17px;
+    font-family: 'HelveticaNeue-Light', Helvetica, Arial, sans-serif;
+    font-weight: 300;
+}
+
 .feature {
 	font-size: 21px;
 }
@@ -286,13 +292,13 @@ blockquote {
 }
 
 /*---------------------------------------------------
-	Layout - Contribution, Mailing List, 
+	Layout - Contribution, Mailing List,
 	Download and Quick Links
 ---------------------------------------------------*/
 
 @link-box: 36px;
 @link-box-gap: 3px;
-.container-box {    
+.container-box {
     background: #fff;
     padding: @padding/2;
     position: relative;
@@ -527,6 +533,39 @@ blockquote {
 
 
 /*---------------------------------------------------
+	Search Form
+---------------------------------------------------*/
+
+#search-box {
+    border: none;
+    width: 716px;
+    padding: 8px;
+    font-size: 16px;
+    font-family: 'HelveticaNeue-Light', Helvetica, Arial, sans-serif;
+    font-weight: 300;
+}
+
+#search-box,
+#search-button {
+    box-sizing: border-box;
+    -moz-box-sizing: border-box;
+    -webkit-box-sizing: border-box;
+    height: 32px;
+    vertical-align: bottom;
+}
+
+#search-button {
+    font-size: 16px;
+    margin-left: -1px;
+    padding: 5px;
+    border: none;
+    width: 36px;
+    background: url(../image/sprite.png) no-repeat;
+    background-position: -156px -95px;
+    background-color: #ff0000;
+}
+
+/*---------------------------------------------------
 	Misc
 ---------------------------------------------------*/
 
@@ -554,7 +593,7 @@ a.pt-top {
 }
 
 a.pt-about {
-	margin: -100px 0 130px; 
+	margin: -100px 0 130px;
 	border:none
 }
 
@@ -577,20 +616,20 @@ a.pt-about {
 ---------------------------------------------------*/
 @mobile-pad: 24px;
 
-@media all and (max-width:1024px) { 
+@media all and (max-width:1024px) {
     #wrap, .wrap, #footer, hr {
         width: auto;
-    }    
+    }
     .wrap, #footer {
         margin-left: @mobile-pad;
         margin-right: @mobile-pad;
-    }       
+    }
     .quick-links, .quick-links-header li {
         width: 30%;
     }
     .platforms-list {
         width: 48%;
-    }    
+    }
     h1 {
         font-size: 30px;
     }
@@ -599,7 +638,7 @@ a.pt-about {
     }
 }
 
-@media all and (max-width:950px) { 
+@media all and (max-width:950px) {
     h1 {
         font-size: 24px;
     }
@@ -634,7 +673,7 @@ a.pt-about {
     }
 }
 
-@media all and (max-width:770px) { 
+@media all and (max-width:770px) {
     body {
         font-size: 14px;
     }
@@ -697,7 +736,7 @@ a.pt-about {
     }
 }
 
-@media all and (max-width:675px) { 
+@media all and (max-width:675px) {
     body {
 /*        font-size: 14px;*/
     }
@@ -727,7 +766,7 @@ a.pt-about {
     }
 }
 
-@media all and (max-width:620px) {  
+@media all and (max-width:620px) {
     h1 {
         font-size: 16px;
     }
@@ -798,7 +837,7 @@ a.pt-about {
     }
 }
 
-@media all and (max-width:446px) {  
+@media all and (max-width:446px) {
     .leadin .button-container {
         right: auto;
         left: 8px;