[xiph-cvs] r6628 - in websites-ngen: . xiph.org/CSS
comatoast at xiph.org
comatoast at xiph.org
Wed May 5 01:30:05 PDT 2004
Author: comatoast
Date: 2004-05-05 04:30:05 -0400 (Wed, 05 May 2004)
New Revision: 6628
Added:
websites-ngen/readme.txt
Modified:
websites-ngen/style.txt
websites-ngen/todo.txt
websites-ngen/wrapup.py
websites-ngen/xiph.org/CSS/all.css
Log:
* Added a readme.
* Added some to-dos.
* MARKDOWN_COMMAND is now "Markdown.pl"
(the .pl bit is new since ActivePerl doesn't seem to add .pl to %PATHEXT%)
* Added a link in a comment in all.css to where the css3/svg colors are.
<p>Added: websites-ngen/readme.txt
===================================================================
--- websites-ngen/readme.txt 2004-05-05 06:28:40 UTC (rev 6627)
+++ websites-ngen/readme.txt 2004-05-05 08:30:05 UTC (rev 6628)
@@ -0,0 +1,24 @@
+About This Ball of Wax
+======================
+
+Requirements
+------------
+
+* Python 2.3.2, to run wrapup.py (use earlier versions at your own risk)
+* Perl 5.6.1, to run Markdown (ActivePerl works fine)
+* Apache, if you want to view your changes
+
+Trying It Out
+-------------
+
+Run wrapup.py right in the directory it's in. If nothing failed, you should see a new .html
+file for every .markdown file.
+
+Assumptions
+-----------
+
+All URLs are to be in the style of /foo/bar/, for reasons described on [Slash Forward][].
+I may break this for content-negotiated language-specific variants (say, for /foo/bar/es for
+"/foo/bar/ in Spanish"), but this is the way it's set up now.
+
+ [Slash Forward]: http://www.alistapart.com/articles/slashforward/
Modified: websites-ngen/style.txt
===================================================================
--- websites-ngen/style.txt 2004-05-05 06:28:40 UTC (rev 6627)
+++ websites-ngen/style.txt 2004-05-05 08:30:05 UTC (rev 6628)
@@ -2,13 +2,19 @@
==========================
* Four-column tabs for indentation.
+
+* Keep lines to 100 columns or fewer.
+
* Due to cross-platform and build restrictions, we canât use symlinks or hard links.
Instead, use HTTP redirects in .htaccess files. For more information, see the Apache 2
information on the Redirect directive at
<http://httpd.apache.org/docs-2.0/mod/mod_alias.html#redirect>.
+
* Use UTF-8. In particular, use proper apostrophes and quotes (U+2018âU+201E) and
en and em dashes.
+
* For em dashes, in English, leave no space between the dash and the wordsâlike this.
+
* For the love of all thatâs holy, leave no space between a question mark and its
preceding sentence.
Modified: websites-ngen/todo.txt
===================================================================
--- websites-ngen/todo.txt 2004-05-05 06:28:40 UTC (rev 6627)
+++ websites-ngen/todo.txt 2004-05-05 08:30:05 UTC (rev 6628)
@@ -1,6 +1,12 @@
To Do
=====
+* Implement some of the ideas on <http://wiki.xiph.org/SXSW2004Ideas>. Specifically, try having the huge buttons
+ on the left be for "developers", "music fans", "artists".
+
+* Realize that / will be _really_ weird, and that maybe it'd be nice to have that "inherit" from a common base
+ instead of it *being* the common base. Change things accordingly. Not sure how.
+
* News. Getting there.
* A software directory.
@@ -9,6 +15,11 @@
* We need a tagline. Lame starter: "Compressing your media into byte-size chunks"
+* A BOM snipper.
+
+* A way to have the title element and the first h1 element differ.
+ I guess itâs time to have the per-html-file .ini doodad after all.
+
* Sell the Powers that Be on a hypothetical http://files.xiph.org/ so we
don't end up putting big, useless things like .rpms and source .tgz files and (gasp) .exe
files in the subversion repo, making it even more bloated and time-consuming to download.
Modified: websites-ngen/wrapup.py
===================================================================
--- websites-ngen/wrapup.py 2004-05-05 06:28:40 UTC (rev 6627)
+++ websites-ngen/wrapup.py 2004-05-05 08:30:05 UTC (rev 6628)
@@ -22,7 +22,7 @@
import os, re, sys, glob, os.path, time, datetime
import pdb
from ConfigParser import SafeConfigParser
-MARKDOWN_COMMAND = "Markdown" # could also be "Markdown.pl"
+MARKDOWN_COMMAND = "Markdown.pl" # could also be "perl Markdown.pl"
TITLE_REGEX = re.compile(r"<h1.*>(.*)</h1>")
class MarkdownWrapper(object):
"""
Modified: websites-ngen/xiph.org/CSS/all.css
===================================================================
--- websites-ngen/xiph.org/CSS/all.css 2004-05-05 06:28:40 UTC (rev 6627)
+++ websites-ngen/xiph.org/CSS/all.css 2004-05-05 08:30:05 UTC (rev 6628)
@@ -2,8 +2,9 @@
font: 80% Verdana, sans-serif;
color: #000;
color: #122;
-
+
/* guess which colors I like... */
+ /* download more colors for FREE from http://www.w3.org/TR/css3-color/#svg-color */
background: #008080; /* teal */
background: #fff5ee; /* seashell */
background: #5f9ea0; /* cadet blue */
--- >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