[xiph-cvs] r6771 - in websites-ngen: . xiph.org xiph.org/CSS/sidebars xiph.org/contribute/betterapps
comatoast at xiph.org
comatoast at xiph.org
Fri May 28 03:10:06 PDT 2004
Author: comatoast
Date: 2004-05-28 06:10:03 -0400 (Fri, 28 May 2004)
New Revision: 6771
Added:
websites-ngen/xiph.org/press/
Modified:
websites-ngen/doc.html
websites-ngen/todo.txt
websites-ngen/wrapup.py
websites-ngen/xiph.org/CSS/sidebars/captionedbuttons.css
websites-ngen/xiph.org/beforecontent.include
websites-ngen/xiph.org/contribute/betterapps/
websites-ngen/xiph.org/index.markdown
websites-ngen/xiph.org/options.ini
Log:
?\195?\175?\194?\187?\194?\191Modified / to actually pitch our products and the font sizing got a small tweak so IE/Windows would match Moz FF/Windows for the sidebar caption text.
Oh, and more doc.html updates.
<p>Modified: websites-ngen/doc.html
===================================================================
--- websites-ngen/doc.html 2004-05-28 04:43:33 UTC (rev 6770)
+++ websites-ngen/doc.html 2004-05-28 10:10:03 UTC (rev 6771)
@@ -39,10 +39,6 @@
padding: 0;
}
- ins {
- color: blue;
- }
-
ul#toc {
margin: 0;
padding: 0;
@@ -82,12 +78,26 @@
ul#toc a:hover {
background: #ccc;
}
-
+ .ahem {
+ margin: 1em 3em;
+ font-style: italic;
+ }
+
+ [class~=ahem] {
+ display: none;
+ }
</style>
</head>
<body>
<h1 id='top'>Wrapup Documentation</h1>
+<p class='ahem'>
+ This page will be slightly handier when viewed in
+ <a href='http://www.mozilla.org/products/firefox/'>Mozilla Firefox</a> than in
+ Internet Explorer as the navigation menu will stay in place in that blue section on the right
+ as you scroll.
+</p>
+
<ul id='toc'>
<li><a href='#top'>Top</a></li>
<li><a href='#requirements'>Requirements</a></li>
@@ -95,6 +105,7 @@
<li><a href='#creation'>Creating</a></li>
<li><a href='#apacheSetup'>Apache Setup</a></li>
<li><a href='#inheritsAndIncludes'><tt>.inherit</tt> and <tt>.include</tt> files</a></li>
+ <li><a href='#options'><tt>options.ini</tt> files</a></li>
<li><a href='#multilingual'>Multilingual Concerns</a></li>
</ul>
@@ -207,6 +218,12 @@
<tt>/speex/index.html</tt> and <tt>/speex/compare/index.html</tt>.
</p>
+<h2 id='options'><tt>options.ini</tt> files</h2>
+<p>
+ There will occasionally be small changes that need to be put in HTML documents that are made.
+ These small changes go in <tt>options.ini</tt> files. For a fully commented example, see
+ <a href='xiph.org/options.ini'>the top-level <tt>options.ini</tt> file</a>.
+</p>
<h2 id='multilingual'>Multilingual Concerns</h2>
<p>
@@ -216,17 +233,18 @@
<tt>.include</tt> files, such as <tt>css.ko.inherit</tt>.
</p>
<p>
+ However, when youâre writing HTML/Markdown pages, donât refer to the actual file in your
+ links; link to <tt>/foo/bar/baz/ja</tt> instead of <tt>/foo/bar/baz/index.ja.html</tt>.
+ <tt>mod_rewrite</tt> will serve up content from the short, pretty URL from the appropriate
+ file.
+</p>
+<p>
If youâre the first person to translate a page from English, youâll need to edit a
<tt>lang.include</tt> file that has a |-separated list of all the available languages for
- that page. If you donât know what itâs supposed to look like, see
- <tt>/lang.include</tt> for an example.
+ that page. If you donât know what itâs supposed to look like, see the top-level
+ <a href='xiph.org/lang.include'><tt>lang.include</tt></a> for an example.
</p>
<p>
- To refer to these pages from a Web browser, refer to, say, <tt>/speex/ja</tt> for the
- Japanese version of <tt>/speex/</tt>; the little bit of <tt>mod_rewrite</tt> translates
- that into the <tt>index.ja.html</tt> file thatâs stored on disk.
-</p>
-<p>
<strong>If youâre adding a new language to the website for the first time</strong>,
be sure to add it to the list of languages in <tt>/.htaccess</tt> so <tt>mod_rewrite</tt>
will try to serve up your files.
Modified: websites-ngen/todo.txt
===================================================================
--- websites-ngen/todo.txt 2004-05-28 04:43:33 UTC (rev 6770)
+++ websites-ngen/todo.txt 2004-05-28 10:10:03 UTC (rev 6771)
@@ -25,6 +25,7 @@
* Split /forusers/recommendations/ into /vorbis/recommendations/, /theora/recommendations/, etc.
+* I got one vote by j^ in #vorbis that the colors for the captioned buttons were too dark.
Open Questions
--------------
Modified: websites-ngen/wrapup.py
===================================================================
--- websites-ngen/wrapup.py 2004-05-28 04:43:33 UTC (rev 6770)
+++ websites-ngen/wrapup.py 2004-05-28 10:10:03 UTC (rev 6771)
@@ -145,6 +145,8 @@
for key, value in config.items(section):
if key == 'bodyattributes':
self.bodyAttributes = ' ' + value
+ if key == 'title':
+ self.title = value
def __loadIncludes(self):
Modified: websites-ngen/xiph.org/CSS/sidebars/captionedbuttons.css
===================================================================
--- websites-ngen/xiph.org/CSS/sidebars/captionedbuttons.css 2004-05-28 04:43:33 UTC (rev 6770)
+++ websites-ngen/xiph.org/CSS/sidebars/captionedbuttons.css 2004-05-28 10:10:03 UTC (rev 6771)
@@ -27,7 +27,7 @@
margin-bottom: 1em;
border: 1px solid gray;
background: white;
- font-size: 90%;
+ font-size: 85%;
}
div#sidebar strong {
Modified: websites-ngen/xiph.org/beforecontent.include
===================================================================
--- websites-ngen/xiph.org/beforecontent.include 2004-05-28 04:43:33 UTC (rev 6770)
+++ websites-ngen/xiph.org/beforecontent.include 2004-05-28 10:10:03 UTC (rev 6771)
@@ -27,21 +27,21 @@
<li class='vorbis'>
<a href='/vorbis/'>
<strong>Vorbis</strong><br>
- Lossy audio compression for music.
+ Lossy audio compression<br>for music.
<em class='reset'> </em>
</a>
</li>
<li class='speex'>
<a href='/speex/'>
<strong>Speex</strong><br>
- Low-bitrate audio compression for speech.
+ Low-bitrate audio compression<br>for speech.
<em class='reset'> </em>
</a>
</li>
<li class='flac'>
<a href='/flac/'>
<strong title='Free Lossless Audio Codec'>FLAC</strong><br>
- Lossless audio compression for archival.
+ Lossless audio compression<br>for immaculate music archives.
<em class='reset'> </em>
</a>
</li>
<p>Property changes on: websites-ngen/xiph.org/contribute/betterapps
___________________________________________________________________
Name: svn:ignore
+ index.html
<p>Modified: websites-ngen/xiph.org/index.markdown
===================================================================
--- websites-ngen/xiph.org/index.markdown 2004-05-28 04:43:33 UTC (rev 6770)
+++ websites-ngen/xiph.org/index.markdown 2004-05-28 10:10:03 UTC (rev 6771)
@@ -1,19 +1,33 @@
-Welcome to xiph.org!
+<img alt='' src='/Images/logos/xiph.gif' style='float: right;'>
+
+
+Welcome to Xiph.Org!
====================
+<!-- Communicate âHow can we help you with our codecs?â as effectively as possible -->
+
+
Xiph.org develops multimedia codecs and related tools to ensure that the foundations of Internet
-multimedia remain free and open.
+multimedia remain free and open. By using our codecs, you can save money on software- and
+patent-license fees as [Epic Games][] did by using [Ogg Vorbis][] for in-game music and
+[Speex][] for between-player voice chat in Unreal Tournament 2003.
-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.
+If youâre a band on tour, you might want to sell soundboard recordings in [FLAC][] like
+[Metallica][] and [Primus][] do.
- [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"
+If you want to distribute music over the Internet, you might want to consider offering downloads
+in [Ogg Vorbis][] and [FLAC][] as [Magnatune][] does.
-The Xiph.org Foundation is a non-profit corporation dedicated to protecting the foundations of
-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.
+ [epic games]: http://www.epicgames.com/
+ [metallica]: http://www.livemetallica.com/
+ [primus]: http://www.primuslive.com/
+
+ [magnatune]: http://www.magnatune.com/
+
+ [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"
+
+
â¦
Modified: websites-ngen/xiph.org/options.ini
===================================================================
--- websites-ngen/xiph.org/options.ini 2004-05-28 04:43:33 UTC (rev 6770)
+++ websites-ngen/xiph.org/options.ini 2004-05-28 10:10:03 UTC (rev 6771)
@@ -1,12 +1,15 @@
[index]
-; the 'title' key is not implemented; it would be used for when you want the title and h1 elements
-; to differ (maybe because you have markup in the latter)
-; Oh, and it hasn't been implemented yet.
-; title = Welcome to Xiph.Org!
+; The 'title' option completely overrides the title element in the page it applies to.
+; This is useful if you want to suppress the "Xiph.Org: " part or if there is markup in the
+; first-level heading that you don't want in the title attribute, such as or <abbr>.
-; the bodyattributes key has been implemented; set this to something to have attributes for
-; the body element in a given document.
+; We're using on this page because it seems weird to have "Xiph.Org: Welcome to Xiph.Org"
+; on the front page.
+
+title = Welcome to Xiph.Org!
+
+; The bodyattributes option will let you set attributes on the body element in a page.
; bodyattributes = onload="stripe('comparison', '#fff', '#edf3fe')"
[index.es]
-; title = ¡Bienvenidos a Xiph.Org!
+title = ¡Bienvenidos a Xiph.Org!
--- >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