[xiph-cvs] r6645 - in websites-ngen/xiph.org: . CSS subversion subversion/windows
comatoast at xiph.org
comatoast at xiph.org
Sun May 9 01:13:36 PDT 2004
Author: comatoast
Date: 2004-05-09 04:13:35 -0400 (Sun, 09 May 2004)
New Revision: 6645
Added:
websites-ngen/xiph.org/subversion/windows/
websites-ngen/xiph.org/subversion/windows/index.markdown
Modified:
websites-ngen/xiph.org/CSS/all.css
websites-ngen/xiph.org/aftermaintext.inherit
websites-ngen/xiph.org/subversion/index.markdown
Log:
* made kbd elements look like code elements as far as fonts go.
* overhauled /subversion/ and /subversion/windows/. The latter still needs Pageant
help, but it?\195?\162?\226?\130?\172?\226?\132?\162s a start.
* Added "Codecs" and "Tools" to the navigation thingy at the bottom.
<p>Modified: websites-ngen/xiph.org/CSS/all.css
===================================================================
--- websites-ngen/xiph.org/CSS/all.css 2004-05-08 13:36:32 UTC (rev 6644)
+++ websites-ngen/xiph.org/CSS/all.css 2004-05-09 08:13:35 UTC (rev 6645)
@@ -70,7 +70,7 @@
margin: .125em 0;
}
-code {
+code, kbd {
font: 100% Monaco, "Lucida Console", monospace;
}
Modified: websites-ngen/xiph.org/aftermaintext.inherit
===================================================================
--- websites-ngen/xiph.org/aftermaintext.inherit 2004-05-08 13:36:32 UTC (rev 6644)
+++ websites-ngen/xiph.org/aftermaintext.inherit 2004-05-09 08:13:35 UTC (rev 6645)
@@ -1,6 +1,8 @@
<div id='locations'>
<a href='/about/' title='About us'>About</a> |
- <a href='/lists/' title='Read or subscribe to one of our mailing lists'>mail</a> |
+ <a href='/codecs/' title='Our multimedia codecs'>Codecs</a> |
+ <a href='/tools/' title='Tools weâve written'>Tools</a> |
+ <a href='/lists/' title='Read or subscribe to one of our mailing lists'>Mail</a> |
<a href='/irc/' title='Visit us on IRC'>IRC</a> |
<a href='/subversion/' title='Check out what weâre working on'>SVN</a> |
<a href='/contact/' title='E-mail us'>Contact</a>
Modified: websites-ngen/xiph.org/subversion/index.markdown
===================================================================
--- websites-ngen/xiph.org/subversion/index.markdown 2004-05-08 13:36:32 UTC (rev 6644)
+++ websites-ngen/xiph.org/subversion/index.markdown 2004-05-09 08:13:35 UTC (rev 6645)
@@ -1,72 +1,42 @@
# Accessing our Subversion Repository
If you just want to browse our [Subversion][] repository, head on over to <http://svn.xiph.org/>.
-If you want to have a proper copy on disk, youâll need to download a Subversion client.
+If you want to have a proper copy on your own computer, youâll probably find that itâs easier to
+keep up with our development efforts with <kbd>svn co</kbd> than with <kbd>wget -m -np</kbd>.
+
The stock client is fine in both Unix-style OSs and on Windows, although you may want to consider
-using [TortoiseSVN][] if youâre using the latter.
+using [TortoiseSVN][] with [our Windows-specific instructions][win] if youâre using the latter.
An example initial checkout:
<div><code>
- $ mkdir xiphstuff <br>
- $ cd xiphstuff <br>
- $ svn co http://svn.xiph.org/trunk/ogg/
- http://svn.xiph.org/trunk/vorbis/
- http://svn.xiph.org/trunk/vorbis-tools/
+ ~ $ mkdir xiphstuff <br>
+ ~ $ cd xiphstuff <br>
+ ~/xiphstuff $ svn <abbr title='check out'>co</abbr>
+ http://svn.xiph.org/trunk/ogg/ \<br>
+ http://svn.xiph.org/trunk/vorbis/ \<br>
+ http://svn.xiph.org/trunk/vorbis-tools/ \<br>
+ http://svn.xiph.org/trunk/ao/
</code></div>
+## If You Have Commit Access
-
-## Accessing our Subversion Repository With TortoiseSVN
-<img src='1-checkout.png' class='tortoiseSvnScreenie'
- alt='Windows Explorerâs right-click menu with âCheckout...â selected'>
-
-[TortoiseSVN][] is a Windows Explorer shell extension that will let you do Subversion
-things from within Windows Explorer. Once you have it installed, create a folder where
-you can group your checkouts together; weâll use D:\Projects in these examples.
-
-Inside of D:\Projects, right-click somewhere in the blank space and select the âCheckout...â
-option from the menu.
-
-<div style='clear: both;'> </div>
-
-<img src='2-url.png' class='tortoiseSvnScreenie'
- alt=''>
-
-Now, type in the URL of the section of the repository that you want. Not sure what you want
-or where it is? Have a look at <http://svn.xiph.org/> in this Web browser. If youâre not looking
-for Icecast-specific things, what you want will probably be in a subdirectory of [/trunk/][].
-
-<div style='clear: both;'> </div>
-
-<img src='3-directory.png' class='tortoiseSvnScreenie'
- alt=''>
-
-Now that youâve found somethingâ¦
-<div style='clear: both;'> </div>
-<div style='clear: both;'> </div>
-## Accessing Our Subversion Repository With Commit Access
-
Briefly:
-<div><code>$ svn co svn+ssh://svn.xiph.org/svn/xiph/</code></div>
+<div><code>
+ $ svn co svn+ssh://svn.xiph.org/svn/xiph/ogg/ \<br>
+ svn+ssh://svn.xiph.org/svn/xiph/vorbis/ \<br>
+ svn+ssh://svn.xiph.org/svn/xiph/vorbis-tools/ \<br>
+ svn+ssh://svn.xiph.org/svn/xiph/ao/
+</code></div>
+Note the changed protocol (no, âssh+svnâ wonât work) and the addition of the
+<kbd>/svn/xiph/</kbd> part.
+
For reduced hassle, charge up an SSH agent.
-At length:
-
-...
-
-
-### â¦for Developers With Commit Access
-One of the easier ways to manage [TortoiseSVN][]. [PuTTY][], [PuTTYgen][], and [Pageant][]. Generate a new SSH2 DSA
-key, set its password, and save it somewhere safe.
-
-
[Subversion]: http://subversion.tigris.org/
[TortoiseSVN]: http://tortoisesvn.tigris.org/
[/trunk/]: http://svn.xiph.org/trunk/
+ [win]: ./windows/
[PuTTY]: http://www.chiark.greenend.org.uk/~sgtatham/putty/
- [PuTTYgen]: http://
- [Pageant]: http://
-
<p>Property changes on: websites-ngen/xiph.org/subversion/windows
___________________________________________________________________
Name: svn:ignore
+ index.html
<p>Added: websites-ngen/xiph.org/subversion/windows/index.markdown
===================================================================
--- websites-ngen/xiph.org/subversion/windows/index.markdown 2004-05-08 13:36:32 UTC (rev 6644)
+++ websites-ngen/xiph.org/subversion/windows/index.markdown 2004-05-09 08:13:35 UTC (rev 6645)
@@ -0,0 +1,67 @@
+# Windows-Specific Notes for Subversion Access
+If you want to use a Subversion client on Windows, there are two clients that weâve used:
+the [official command-line client][svn.exe] and [TortoiseSVN][]. Itâs possible to use both
+to work on the same checked-out repository and itâs rather nice to have both clients around;
+some things are simply easier in one client or the other.
+
+This document assumes youâve at least glanced at our [generic subversion instructions][generic].
+
+
+
+ [svn.exe]: http://subversion.tigris.org/
+ [TortoiseSVN]: http://tortoisesvn.tigris.org/
+ [generic]: ../
+
+## Starting Out with TortoiseSVN
+<img src='1-checkout.png' class='tortoiseSvnScreenie'
+ alt='Windows Explorerâs right-click menu with âCheckout...â selected'>
+
+[TortoiseSVN][] is a Windows Explorer shell extension that will let you do Subversion
+things from within Windows Explorer. Once you have it installed, create a folder where
+you can group your checkouts together; weâll use D:\Projects in these examples.
+
+Inside of D:\Projects, right-click somewhere in the blank space and select the âCheckout...â
+option from the menu.
+
+<div style='clear: both;'> </div>
+
+<img src='2-url.png' class='tortoiseSvnScreenie'
+ alt=''>
+
+Now, type in the URL of the section of the repository that you want. Not sure what you want
+or where it is? Have a look at <http://svn.xiph.org/> in this Web browser. Unless you want
+Icecast-specific things, youâll probably have the most success in a subdirectory of [/trunk/][].
+Since so much of our stuff depends on [Ogg][], weâll download it.
+
+<div style='clear: both;'> </div>
+<img src='3-directory.png' class='tortoiseSvnScreenie'
+ title='Pick a directory, any directory!'
+ alt='The TortoiseSVN dialog with âhttp://svn.xiph.org/trunk/oggâ
+ in the highlighted Repository URL field'>
+
+Now that youâre reasonably certain of what you want, you need to tell TortoiseSVN where you want
+your Ogg checkout to go. TortoiseSVN has already suggested the current folder,
+but checking [/trunk/ogg/][] out to the current folder will put a bunch of Ogg
+things directly in the current folder rather than keeping them in a nice, tidy subfolder of
+D:\Projects. As such, append â\oggâ to the âCheckout Directoryâ box.
+
+<div style='clear: both;'> </div>
+<img src='4-createfirst.png' class='tortoiseSvnScreenie'
+ alt='âThe folder D:\Projects\ogg does not exist. Would you like to create it first?â
+ [Yes] [No]'
+ title='Select âOKâ hereâ¦'>
+
+
+<div style='clear: both;'> </div>
+<img src='5-done.png' class='tortoiseSvnScreenie'
+ title=''
+ alt=''>
+â¦and thatâs it. Repeat with <http://svn.xiph.org/trunk/vorbis/> and
+<http://svn.xiph.org/trunk/vorbis-tools/> and youâll have everything you need
+to build things like oggenc.exe.
+
+<div style='clear: both;'> </div>
+
+ [/trunk/]: http://svn.xiph.org/trunk/
+ [/trunk/ogg/]: http://svn.xiph.org/trunk/ogg/
+ [Ogg]: /ogg/ "Ogg, the container format"
--- >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