[xiph-cvs] r6640 - in websites-ngen: . xiph.org xiph.org/CSS xiph.org/forusers
comatoast at xiph.org
comatoast at xiph.org
Fri May 7 23:08:59 PDT 2004
Author: comatoast
Date: 2004-05-08 02:08:59 -0400 (Sat, 08 May 2004)
New Revision: 6640
Added:
websites-ngen/xiph.org/CSS/sidebar-additions.css
websites-ngen/xiph.org/forusers/
websites-ngen/xiph.org/forusers/recommendations/
Removed:
websites-ngen/xiph.org/recommendations/
Modified:
websites-ngen/wrapup.py
websites-ngen/xiph.org/CSS/all.css
websites-ngen/xiph.org/inhead.include
Log:
* <meta http-equiv='Content-type' content='text/html; charset=UTF-8'>
moved out of /inhead.include.
* Sidebar-specific CSS things moved into /CSS/sidebar-additions.css
* I think I moved /recommendations/ into /forusers/.
<p>Modified: websites-ngen/wrapup.py
===================================================================
--- websites-ngen/wrapup.py 2004-05-08 05:47:45 UTC (rev 6639)
+++ websites-ngen/wrapup.py 2004-05-08 06:08:59 UTC (rev 6640)
@@ -105,6 +105,7 @@
ret += self.doctype + '\n'
ret += "<html lang='" + self.lang + "'>\n"
ret += "<head>\n"
+ ret += "<meta http-equiv='Content-type' content='text/html; charset=UTF-8'>\n"
ret += self.inHead
ret += '<title>' + self.title + '</title>\n'
ret += "</head>\n"
Modified: websites-ngen/xiph.org/CSS/all.css
===================================================================
--- websites-ngen/xiph.org/CSS/all.css 2004-05-08 05:47:45 UTC (rev 6639)
+++ websites-ngen/xiph.org/CSS/all.css 2004-05-08 06:08:59 UTC (rev 6640)
@@ -75,87 +75,14 @@
}
div#content {
- margin: 0 1em 1em 17em;
+ margin: 0 1em 1em;
padding: 0 .5em;
border: 1px solid gray;
background: white;
background: #f5f5f5; /* white smoke */
}
-div#sidebar {
- position: absolute;
- top: 50px;
- left: 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;
-}
-
-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: #6e6942;
- background: #c7cf97; /* Mike calls this one "gloomy AND nasty" */
- background: #cac8a9; /* "less nasty" */
-}
-
-div#sidebar li.theora a:hover {
- background: #ebf;
- background: #d0c6ff;
- background: #bdb8cf;
-}
-
-div#sidebar li.icecast a:hover {
- background: #f5f5f5; /* white smoke */
- background: #ccc;
-}
-
div#locations {
text-align: center;
text-transform: lowercase;
Added: websites-ngen/xiph.org/CSS/sidebar-additions.css
===================================================================
--- websites-ngen/xiph.org/CSS/sidebar-additions.css 2004-05-08 05:47:45 UTC (rev 6639)
+++ websites-ngen/xiph.org/CSS/sidebar-additions.css 2004-05-08 06:08:59 UTC (rev 6640)
@@ -0,0 +1,77 @@
+div#content {
+ margin-left: 17em;
+}
+
+div#sidebar {
+ position: absolute;
+ top: 50px;
+ left: 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;
+}
+
+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: #6e6942;
+ background: #c7cf97; /* Mike calls this one "gloomy AND nasty" */
+ background: #cac8a9; /* "less nasty" */
+}
+
+div#sidebar li.theora a:hover {
+ background: #ebf;
+ background: #d0c6ff;
+ background: #bdb8cf;
+}
+
+div#sidebar li.icecast a:hover {
+ background: #f5f5f5; /* white smoke */
+ background: #ccc;
+}
Copied: websites-ngen/xiph.org/forusers/recommendations (from rev 6631, websites-ngen/xiph.org/recommendations)
Modified: websites-ngen/xiph.org/inhead.include
===================================================================
--- websites-ngen/xiph.org/inhead.include 2004-05-08 05:47:45 UTC (rev 6639)
+++ websites-ngen/xiph.org/inhead.include 2004-05-08 06:08:59 UTC (rev 6640)
@@ -1,4 +1,6 @@
- <meta http-equiv='Content-type' content='text/html; charset=UTF-8'>
<style type='text/css'>
@import url(/CSS/all.css);
</style>
+ <style type='text/css'>
+ @import url(/CSS/sidebar-additions.css);
+ </style>
--- >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