[xiph-cvs] r6758 - in websites-ngen/xiph.org: . CSS CSS/mixins flac/CSS speex speex/CSS theora/CSS vorbis/CSS

comatoast at xiph.org comatoast at xiph.org
Wed May 26 00:57:55 PDT 2004



Author: comatoast
Date: 2004-05-26 03:57:55 -0400 (Wed, 26 May 2004)
New Revision: 6758

Added:
   websites-ngen/xiph.org/CSS/mixins/
   websites-ngen/xiph.org/CSS/mixins/sidebar.css
   websites-ngen/xiph.org/CSS/mixins/sidebars/
Removed:
   websites-ngen/xiph.org/CSS/sidebar-additions.css
Modified:
   websites-ngen/xiph.org/CSS/all.css
   websites-ngen/xiph.org/css.include
   websites-ngen/xiph.org/flac/CSS/all.css
   websites-ngen/xiph.org/index.markdown
   websites-ngen/xiph.org/lang.include
   websites-ngen/xiph.org/speex/CSS/all.css
   websites-ngen/xiph.org/speex/index.markdown
   websites-ngen/xiph.org/theora/CSS/all.css
   websites-ngen/xiph.org/vorbis/CSS/all.css
Log:
quickie addition with color changes shoved through so I can move things around without subversion telling me that I need to use --force or commit.

Modified: websites-ngen/xiph.org/CSS/all.css
===================================================================
--- websites-ngen/xiph.org/CSS/all.css	2004-05-26 02:37:20 UTC (rev 6757)
+++ websites-ngen/xiph.org/CSS/all.css	2004-05-26 07:57:55 UTC (rev 6758)
@@ -28,7 +28,7 @@
 
 body {
         margin: 0;
-	padding: 2em 0 0; /* the top padding here must match the top: bit of the sidebar div. */
+	padding: 2em 0 0;
 }
 
 h1, h2, h3, h4, h5, h6 {

Copied: websites-ngen/xiph.org/CSS/mixins/sidebar.css (from rev 6749, websites-ngen/xiph.org/CSS/sidebar-additions.css)
===================================================================
--- websites-ngen/xiph.org/CSS/sidebar-additions.css	2004-05-24 04:28:10 UTC (rev 6749)
+++ websites-ngen/xiph.org/CSS/mixins/sidebar.css	2004-05-26 07:57:55 UTC (rev 6758)
@@ -0,0 +1,101 @@
+body {
+	padding-top: 2em;
+}
+
+div#content {
+	margin-right: 17em;
+}
+
+div#sidebar {
+	position: absolute;
+	top: 2em; /* This must match the padding-top of the body element. */
+	right: 1em;
+	width: 15em;
+	margin: 0;
+	padding: 0;
+}
+
+/*	the "bignavbuttons" thing was taken from www.adaptivepath.com.  */
+div#sidebar ul {
+	margin: 0 0 1.5em;
+	padding: 0;
+}
+
+div#sidebar li {
+	list-style-type: none;
+	margin: 0;
+	margin-bottom: 1em;
+	border: 1px solid gray;
+	background: white;
+	font-size: 90%;
+}
+
+div#sidebar strong {
+	display: block;
+	font-size: larger;
+	margin-bottom: 0;
+	padding-bottom: 0;
+}
+
+div#sidebar a {
+	display: block;
+	padding: .25em;
+	text-decoration: none;
+	color: black;
+}
+
+div#sidebar a:link,
+div#sidebar a:visited {
+	color: black;
+}
+
+div#sidebar li a:hover {
+	color: black;
+}
+
+div#sidebar li.vorbis a:hover {
+	background: #b6cfbd;
+	background: rgb(37, 80, 112);
+	color: white;
+}
+
+div#sidebar li.speex a:hover {
+	background: #b1cfa1;
+	background: rgb(98, 121, 49);
+	color: white;
+}
+
+div#sidebar li.flac a:hover {
+	background: #ff9;		/* banana-ish */
+	background: #ddddc3;	/* a slightly darker version of what's on flac.sf.net */
+	background: #9c9;		/* background from flac.sf.net */
+	background: rgb(0, 64, 64);
+
+	color: white;
+
+
+}
+
+div#sidebar li.theora a:hover {
+	background: #bdb8cf;
+	background: rgb(119, 51, 70);	/* kinda looks like it's the color of pomegranate juice */
+	color: white;
+}
+
+div#sidebar li.icecast a:hover {
+	background: #bbb;
+}
+
+/*
+ *	This makes the sidebar buttons behave like full-size buttons instead of just working
+ *	when you hover your mouse pointer over the _text_ in IE/Windows
+ */
+.reset {
+	display: block;
+	clear: both;
+	margin: 0;
+	padding: 0;
+	height: 1px;
+	font-size: 1px;
+	line-height: 1px;
+}

Deleted: websites-ngen/xiph.org/CSS/sidebar-additions.css
===================================================================
--- websites-ngen/xiph.org/CSS/sidebar-additions.css	2004-05-26 02:37:20 UTC (rev 6757)
+++ websites-ngen/xiph.org/CSS/sidebar-additions.css	2004-05-26 07:57:55 UTC (rev 6758)
@@ -1,78 +0,0 @@
-div#content {
-	margin-right: 17em;
-}
-
-div#sidebar {
-	position: absolute;
-	top: 2em; /* the top property must match the padding-top of the body element. */
-	right: 1em;
-	width: 15em;
-	margin: 0;
-	padding: 0;
-}
-
-/*	the "bignavbuttons" thing was taken from www.adaptivepath.com.
-	I'm still not sure what the em.reset is for.
-*/
-div#sidebar ul {
-	margin: 0 0 2em;
-	padding: 0;
-}
-
-div#sidebar li {
-	list-style-type: none;
-	margin: 0;
-	margin-bottom: 1em;
-	border: 1px solid gray;
-	background: white;
-	font-size: 90%;
-}
-
-div#sidebar strong {
-	display: block;
-	font-size: larger;
-	margin-bottom: 0;
-	padding-bottom: 0;
-}
-
-div#sidebar a {
-	display: block;
-	padding: .25em;
-	text-decoration: none;
-	color: black;
-}
-
-div#sidebar a:link,
-div#sidebar a:visited {
-	color: black;
-}
-
-div#sidebar li a:hover {
-	color: black;
-}
-
-div#sidebar li.vorbis a:hover {
-	background: #b6cfbd;
-}
-
-div#sidebar li.speex a:hover {
-	background: #b1cfa1;
-}
-
-div#sidebar li.flac a:hover {
-	background: #ff9; /* banana-ish */
-	background: #ddddc3; /* a slightly darker version of what's on flac.sf.net */
-	background: #9c9; /* background from flac.sf.net */
-
-}
-
-div#sidebar li.theora a:hover {
-	background: #ebf;
-	background: #d0c6ff;
-	background: #bdb8cf;
-}
-
-div#sidebar li.icecast a:hover {
-	background: #f5f5f5; /* white smoke */
-	background: #ccc;
-}

Modified: websites-ngen/xiph.org/css.include
===================================================================
--- websites-ngen/xiph.org/css.include	2004-05-26 02:37:20 UTC (rev 6757)
+++ websites-ngen/xiph.org/css.include	2004-05-26 07:57:55 UTC (rev 6758)
@@ -1,3 +1,3 @@
         <style type='text/css'>
-		@import url(/CSS/sidebar-additions.css);
+		@import url(/CSS/mixins/sidebar.css);
         </style>

Modified: websites-ngen/xiph.org/flac/CSS/all.css
===================================================================
--- websites-ngen/xiph.org/flac/CSS/all.css	2004-05-26 02:37:20 UTC (rev 6757)
+++ websites-ngen/xiph.org/flac/CSS/all.css	2004-05-26 07:57:55 UTC (rev 6758)
@@ -1,8 +1,9 @@
 html {
-	background: #9c9;
+	background: #9c9;				/* from flac.sf.net */
+	background: rgb(0, 64, 64);
 
 }
 
 div#content {
-	background: #eeeed4;
+	background: #eeeed4;	/* from flac.sf.net */
 }

Modified: websites-ngen/xiph.org/index.markdown
===================================================================
--- websites-ngen/xiph.org/index.markdown	2004-05-26 02:37:20 UTC (rev 6757)
+++ websites-ngen/xiph.org/index.markdown	2004-05-26 07:57:55 UTC (rev 6758)
@@ -1,15 +1,16 @@
-Welcome to xiph.org!
+<img src='/Images/logos/xiph.gif' alt='' style='float: right;'>
+Welcome to xiph.org!
 ====================
 
-Xiph.org develops multimedia codecs and tools to protect the foundations of Internet multimedia
-from control by private interests.
 
+Xiph.org develops multimedia codecs and related tools to ensure that the foundations of Internet
+multimedia remain free and open.
+
 By using [Ogg Vorbis][], [FLAC][], and [Speex][], you can save money. Epic used Vorbis in Unreal
 Tournament 2003, and they’re wildly successful. Ion Storm didn't use Vorbis for Daikatana, and
 nobody in their right mind would ever want to play it.
 
 
-
         [Ogg Vorbis]:	/vorbis/	"Ogg Vorbis, a lossy audio compression codec"
         [FLAC]:			/flac/		"FLAC, a lossless audio compression codec"
         [Speex]:		/speex/		"Speex, a low-bitrate voice compression codec"
@@ -21,42 +22,4 @@
 Internet multimedia from control by private interests. Our purpose is to support and develop free,
 open protocols and software to serve the public, developer and business markets.
 
-----------------
-
-This is some *more* text. Fancy that.
-
-------
-
-I went often to look at the collection of curiosities
-in Heidelberg Castle, and one day I surprised the keeper
-of it with my German.  I spoke entirely in that language. 
-He was greatly interested; and after I had talked a while
-he said my German was very rare, possibly a "unique";
-and wanted to add it to his museum. 
-
-If he had known what it had cost me to acquire my art,
-he would also have known that it would break any
-collector to buy it.  Harris and I had been hard at
-work on our German during several weeks at that time,
-and although we had made good progress, it had been
-accomplished under great difficulty and annoyance,
-for three of our teachers had died in the mean time. 
-A person who has not studied German can form no idea
-of what a perplexing language it is. 
-
-
-These things are not words, they are alphabetical processions. 
-And they are not rare; one can open a German newspaper
-at any time and see them marching majestically across
-the page--and if he has any imagination he can see
-the banners and hear the music, too.  They impart
-a martial thrill to the meekest subject.  I take a
-great interest in these curiosities.  Whenever I come
-across a good one, I stuff it and put it in my museum. 
-In this way I have made quite a valuable collection. 
-When I get duplicates, I exchange with other collectors,
-and thus increase the variety of my stock.  Here rare
-some specimens which I lately bought at an auction sale
-of the effects of a bankrupt bric-a-brac hunter:
-
 …

Modified: websites-ngen/xiph.org/lang.include
===================================================================
--- websites-ngen/xiph.org/lang.include	2004-05-26 02:37:20 UTC (rev 6757)
+++ websites-ngen/xiph.org/lang.include	2004-05-26 07:57:55 UTC (rev 6758)
@@ -1,5 +1,4 @@
 <div id='languages'>
         <a href='./' title='English'	hreflang='en-US'>en</a> |
-	<a href='es' title='Español'	hreflang='es'   >es</a> |
-	<a href='de' title='Deutsch'	hreflang='de'   >de</a>
+	<a href='es' title='Español'	hreflang='es'   >es</a>
 </div>

Modified: websites-ngen/xiph.org/speex/CSS/all.css
===================================================================
--- websites-ngen/xiph.org/speex/CSS/all.css	2004-05-26 02:37:20 UTC (rev 6757)
+++ websites-ngen/xiph.org/speex/CSS/all.css	2004-05-26 07:57:55 UTC (rev 6758)
@@ -1,5 +1,6 @@
 html {
         background: #b1cfa1;
+	background: rgb(98, 121, 49);
 }
 
 div#content {
@@ -45,6 +46,7 @@
 
 div#sidebar a:hover {
         background: #c1dfb1;
+	background: rgb(146, 181, 72);
 }
 
 table#comparison {

Modified: websites-ngen/xiph.org/speex/index.markdown
===================================================================
--- websites-ngen/xiph.org/speex/index.markdown	2004-05-26 02:37:20 UTC (rev 6757)
+++ websites-ngen/xiph.org/speex/index.markdown	2004-05-26 07:57:55 UTC (rev 6758)
@@ -1,7 +1,6 @@
 Speex
 =====
 
-## Overview
 Speex is an [Open Source/Free Software][osfs], patent-free audio compression format
 designed for speech. The Speex Project aims to lower the barrier of entry for voice
 applications by providing a free alternative to expensive proprietary speech codecs
@@ -31,7 +30,7 @@
 *	An in-progress fixed-point port
 
 Speex has a number of features that other codecs don’t such as intensity stereo encoding
-and a VBR mode; see our [comparison page][] for more.
+and a <abbr title='variable bitrate'>VBR</abbr> mode; see our [comparison page][] for more.
 
         [comparison page]: ./compare/
 

Modified: websites-ngen/xiph.org/theora/CSS/all.css
===================================================================
--- websites-ngen/xiph.org/theora/CSS/all.css	2004-05-26 02:37:20 UTC (rev 6757)
+++ websites-ngen/xiph.org/theora/CSS/all.css	2004-05-26 07:57:55 UTC (rev 6758)
@@ -1,3 +1,4 @@
 html {
         background: #bdb8cf;
+	background: rgb(119, 51, 70);
 }

Modified: websites-ngen/xiph.org/vorbis/CSS/all.css
===================================================================
--- websites-ngen/xiph.org/vorbis/CSS/all.css	2004-05-26 02:37:20 UTC (rev 6757)
+++ websites-ngen/xiph.org/vorbis/CSS/all.css	2004-05-26 07:57:55 UTC (rev 6758)
@@ -1,3 +1,4 @@
 html {
         background: #b6cfbd;
+	background: rgb(37, 80, 112);
 }

--- >8 ----
List archives:  http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body.  No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.



More information about the commits mailing list