You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by cm...@apache.org on 2010/05/11 21:04:55 UTC

svn commit: r943230 - in /subversion/site/publish: mailing-lists.html style/site.css

Author: cmpilato
Date: Tue May 11 19:04:55 2010
New Revision: 943230

URL: http://svn.apache.org/viewvc?rev=943230&view=rev
Log:
* site/publish/style/site.css
  (ul.nobullet): New.

* site/publish/mailing-lists.html
  Use bullet-less lists for archives instead of <br/> hacks.
  Let the list-of-lists table eat up the full width of the
  canvas -- that Description column is too chunky to waste 10em.

Modified:
    subversion/site/publish/mailing-lists.html
    subversion/site/publish/style/site.css

Modified: subversion/site/publish/mailing-lists.html
URL: http://svn.apache.org/viewvc/subversion/site/publish/mailing-lists.html?rev=943230&r1=943229&r2=943230&view=diff
==============================================================================
--- subversion/site/publish/mailing-lists.html (original)
+++ subversion/site/publish/mailing-lists.html Tue May 11 19:04:55 2010
@@ -45,13 +45,12 @@
 <p>Now that we've gotten all that off our collective chests, here are
    our primary mailing lists:</p>
 
-<table cellpadding="0" cellspacing="0" id="list-list" style="margin: 0px 5em;">
+<table cellpadding="0" cellspacing="0" id="list-list">
   <thead>
   <tr>
     <th>List</th>
     <th>Description</th>
     <th>Archives</th>
-    <th>Subscribe</th>
   </tr>
   </thead>
   <tbody>
@@ -76,12 +75,14 @@
         infrequent interval (say, once/month) <em>might</em> be acceptable,
         but please use common sense.  If it seems inappropriate, it probably
         is.</td>
-    <td><a href="http://mail-archives.apache.org/mod_mbox/subversion-users/"
-            >apache.org</a><br/>
-         <a href="http://svn.haxx.se/users/"
-            >svn.haxx.se</a><br/>
-         <a href="http://news.gmane.org/gmane.comp.version-control.subversion.user"
-            >gmane.org</a></td>
+    <td><ul class="nobullet">
+          <li><a href="http://mail-archives.apache.org/mod_mbox/subversion-users/"
+            >apache.org</a></li>
+          <li><a href="http://svn.haxx.se/users/"
+            >svn.haxx.se</a></li>
+          <li><a href="http://news.gmane.org/gmane.comp.version-control.subversion.user"
+            >gmane.org</a></li>
+        </ul></td>
     <td><a href="mailto:users-subscribe@subversion.apache.org"
                  title="users-subscribe@subversion.apache.org"
         >subscribe</a></td>
@@ -93,12 +94,14 @@
         questions should be posted to 'users' instead; that includes
         build problems, configuration issues, etc, as well as usage
         questions. </td>
-    <td><a href="http://mail-archives.apache.org/mod_mbox/subversion-dev/"
-            >apache.org</a><br/>
-        <a href="http://svn.haxx.se/dev/"
-            >svn.haxx.se</a><br/>
-        <a href="http://news.gmane.org/gmane.comp.version-control.subversion.devel"
-            >gmane.org</a></td>
+    <td><ul class="nobullet">
+          <li><a href="http://mail-archives.apache.org/mod_mbox/subversion-dev/"
+            >apache.org</a></li>
+          <li><a href="http://svn.haxx.se/dev/"
+            >svn.haxx.se</a></li>
+          <li><a href="http://news.gmane.org/gmane.comp.version-control.subversion.devel"
+            >gmane.org</a></li>
+        </ul></td>
     <td><a href="mailto:dev-subscribe@subversion.apache.org"
                  title="dev-subscribe@subversion.apache.org"
         >subscribe</a></td>
@@ -109,8 +112,10 @@
     <td>This list receives automated commit emails from the
         repository. <em>DO NOT POST</em> to this list. Only subscribe
         to it if you want to read commit emails.</td>
-    <td><a href="http://mail-archives.apache.org/mod_mbox/subversion-commits/"
-          >apache.org</a></td>
+    <td><ul class="nobullet">
+          <li><a href="http://mail-archives.apache.org/mod_mbox/subversion-commits/"
+            >apache.org</a></li>
+        </ul></td>
     <td><a href="mailto:commits-subscribe@subversion.apache.org"
                  title="commits-subscribe@subversion.apache.org"
         >subscribe</a></td>
@@ -123,8 +128,10 @@
       list unless it's an announcement. (The list is moderated anyway,
       so your post will not go through unless it's a legitimate
       announcement.)</td>
-    <td><a href="http://mail-archives.apache.org/mod_mbox/subversion-announce/"
-            >apache.org</a></td>
+    <td><ul class="nobullet">
+          <li><a href="http://mail-archives.apache.org/mod_mbox/subversion-announce/"
+            >apache.org</a></li>
+         </ul></td>
     <td><a href="mailto:announce-subscribe@subversion.apache.org"
                  title="announce-subscribe@subversion.apache.org"
         >subscribe</a></td>

Modified: subversion/site/publish/style/site.css
URL: http://svn.apache.org/viewvc/subversion/site/publish/style/site.css?rev=943230&r1=943229&r2=943230&view=diff
==============================================================================
--- subversion/site/publish/style/site.css (original)
+++ subversion/site/publish/style/site.css Tue May 11 19:04:55 2010
@@ -196,6 +196,11 @@ h4 {
   font-size: 120%;
   line-height: 1.2em;
 }
+ul.nobullet {
+  list-style: none;
+  padding-left: 0em;
+}
+
 ul.topmenu {
   padding: 0px;
   line-height: 2em;