Explorar o código

Fix broken links

Eric Andersen %!s(int64=23) %!d(string=hai) anos
pai
achega
4ddd797e60

+ 136 - 0
docs/uclibc.org/cvs_anon.html

@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> 
+
+<HTML>
+<HEAD>
+<title>uClibc Anonymous CVS Instructions</title>
+</HEAD>
+
+<body text="#000000" alink="#660000" link="#660000" bgcolor="#dee2de" vlink="#660000">
+
+<basefont face="lucida, helvetica, arial" size="3">
+
+
+<H3>Accessing the uClibc CVS Repository</H3>
+
+<CENTER>
+      <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
+	    <TR>
+		<td bgcolor="#000000">
+		  <FONT FACE="lucida, helvetica" COLOR="#ccccc0">
+		      <B>B&nbsp;u&nbsp;s&nbsp;y&nbsp;B&nbsp;o&nbsp;x</B>
+		  </FONT>
+		</TD>
+	    </TR>
+      </TABLE>
+
+
+</CENTER>
+
+<TABLE WIDTH="95%" CELLSPACING=1 CELLPADDING=4 BORDER=1>
+<TR><TD BGCOLOR="#ccccc0" ALIGN=center>
+    <A NAME="intro"> <BIG><B>
+    Anonymous CVS
+    </B></BIG></A>
+</TD></TR>
+<TR><TD BGCOLOR="#eeeee0">
+
+We allow anonymous (read-only) CVS access to everyone.  The first command you
+need to run for anonymous CVS access is:
+<pre>
+cvs -d:pserver:anonymous@uclibc.org:/var/cvs login</pre>
+<p>
+CVS will prompt you for a password. Just press the Enter key (there is no
+password for anonymous access).  This step only needs to be done once, the first
+time you attempt to access CVS.
+<p>
+Once the login is complete, you can then check the list of available
+CVS modules by running the following command (all on one line):
+<pre>
+cvs -z3 -d:pserver:anonymous@uclibc.org:/var/cvs co -c </pre>
+
+<p>
+If you wish, you can then check out a local copy of any of the 
+available modules.  The following is an example of how to grab 
+a copy of the uClibc source code:
+<pre>
+    cvs -z3 -d:pserver:anonymous@uclibc.org:/var/cvs co -P uClibc</pre>
+This will create a directory called <b>uClibc</b> in the current 
+directory which contains the latest and greatest source code for
+uClibc.
+
+<p>
+I usually create a ~/.cvsrc file with the following things in it, and I
+recommend you should use the same:
+<pre>
+    -z3
+    update -dP
+    rdiff -u
+    diff -ubBwpN
+    checkout -P</pre>
+
+<p> 
+Once you've checked out a copy of the source tree, you can update your
+source tree at any time so it is in sync with the latest and greatest by
+running the command:
+<pre>
+cvs update</pre>
+
+Because you've only been granted anonymous access to the tree, you won't be
+able to commit any changes. Changes can be submitted for inclusion by posting
+them to the appropriate <a
+href="http://www.uclibc.org/mailman/listinfo/uclibc">mailing list</a>.
+
+
+<!-- End of Table -->
+
+</TD></TR>
+</TABLE>
+
+
+
+<!-- Footer -->
+<HR>
+<TABLE WIDTH="100%">
+    <TR>
+	<TD>
+	    <font size="-1" face="arial, helvetica, sans-serif">
+	    Mail all comments, insults, suggestions and bribes to 
+	    <a href="mailto:andersen@codepoet.org">Erik Andersen</a><BR>
+	    The Busybox logo is copyright 1999-2002, Erik Andersen.
+	    </font>
+	</TD>
+
+	<TD>
+	    <a href="http://www.vim.org"><img border=0 width=90 height=36
+	    src="images/written.in.vi.png" 
+	    alt="This site created with the vi editor"></a>
+	</TD>
+
+	<TD>
+	    <a href="http://www.gimp.org/"><img border=0 width=90 height=36
+	    src="images/gfx_by_gimp.png" alt="Graphics by GIMP"></a>
+	</TD>
+
+	<TD>
+	    <a href="http://www.linuxtoday.com"><img width=90 height=36
+	    src="images/ltbutton2.png" alt="Linux Today"></a>
+	</TD>
+
+	<TD>
+	    <p><a href="http://slashdot.org"><img width=90 height=36
+	    src="images/sdsmall.png" alt="Slashdot"></a>
+	</TD>
+
+	<TD>
+	    <a href="http://freshmeat.net"><img width=90 height=36
+	    src="images/fm.mini.png" alt="Freshmeat"></a>
+	</TD>
+
+    </TR>
+</TABLE>
+
+
+</BODY>
+</HTML>
+
+

+ 116 - 0
docs/uclibc.org/cvs_write.html

@@ -0,0 +1,116 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> 
+
+<HTML>
+<HEAD>
+<title>uClibc CVS Read/Write Instructions</title>
+</HEAD>
+
+<body text="#000000" alink="#660000" link="#660000" bgcolor="#dee2de" vlink="#660000">
+
+<basefont face="lucida, helvetica, arial" size="3">
+
+
+<H3>Accessing the uClibc CVS Repository</H3>
+
+<CENTER>
+      <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
+	    <TR>
+		<td bgcolor="#000000">
+		  <FONT FACE="lucida, helvetica" COLOR="#ccccc0">
+		      <B>B&nbsp;u&nbsp;s&nbsp;y&nbsp;B&nbsp;o&nbsp;x</B>
+		  </FONT>
+		</TD>
+	    </TR>
+      </TABLE>
+
+
+</CENTER>
+
+<TABLE WIDTH="95%" CELLSPACING=1 CELLPADDING=4 BORDER=1>
+<TR><TD BGCOLOR="#ccccc0" ALIGN=center>
+    <A NAME="intro"> <BIG><B>
+    CVS Read/Write Access
+    </B></BIG></A>
+</TD></TR>
+<TR><TD BGCOLOR="#eeeee0">
+
+
+If you want to be able to commit things to CVS, first contribute some
+stuff to show you are serious.  Then, very nicely ask 
+<a href="mailto:andersen@codepoet.org">Erik Andersen</a> if he will set you up with 
+an account.  To access CVS, you will want to add the following to set up your environment:
+<pre>
+$ export CVS_RSH=/usr/bin/ssh
+$ export CVSROOT='username@cvs.uclibc.org:/var/cvs'</pre>
+<br>
+It goes without saying you must change <em>username</em> to your own
+username...
+<p>
+
+To obtain commit access, you will need to demonstrate you are
+serious by submitting a few good patches first.  Then, you will need to 
+select a user-name to use when committing stuff, and finally, you will
+need to send me the username you have selected, an ssh key, and the email
+address where you prefer email to be sent (I will forward any email sent
+to you, but not store it).
+
+<p>
+Note that if you would prefer to keep your communications with me
+private, you can encrypt your email using my 
+<a href="http://www.codepoet.org/~andersen/erik/gpg.asc">public key</a>.  
+
+
+<!-- End of Table -->
+
+</TD></TR>
+</TABLE>
+
+
+
+<!-- Footer -->
+<HR>
+<TABLE WIDTH="100%">
+    <TR>
+	<TD>
+	    <font size="-1" face="arial, helvetica, sans-serif">
+	    Mail all comments, insults, suggestions and bribes to 
+	    <a href="mailto:andersen@codepoet.org">Erik Andersen</a><BR>
+	    The Busybox logo is copyright 1999-2002, Erik Andersen.
+	    </font>
+	</TD>
+
+	<TD>
+	    <a href="http://www.vim.org"><img border=0 width=90 height=36
+	    src="images/written.in.vi.png" 
+	    alt="This site created with the vi editor"></a>
+	</TD>
+
+	<TD>
+	    <a href="http://www.gimp.org/"><img border=0 width=90 height=36
+	    src="images/gfx_by_gimp.png" alt="Graphics by GIMP"></a>
+	</TD>
+
+	<TD>
+	    <a href="http://www.linuxtoday.com"><img width=90 height=36
+	    src="images/ltbutton2.png" alt="Linux Today"></a>
+	</TD>
+
+	<TD>
+	    <p><a href="http://slashdot.org"><img width=90 height=36
+	    src="images/sdsmall.png" alt="Slashdot"></a>
+	</TD>
+
+	<TD>
+	    <a href="http://freshmeat.net"><img width=90 height=36
+	    src="images/fm.mini.png" alt="Freshmeat"></a>
+	</TD>
+
+    </TR>
+</TABLE>
+
+
+</BODY>
+</HTML>
+
+
+

+ 18 - 19
docs/uclibc.org/index.html

@@ -74,7 +74,7 @@ to give away all your source code just because you use uClibc and/or run on Linu
 <TR><TD BGCOLOR="#eeeee0">
 
 uClibc has a 
-<a href="http://www.uclibc.org/lists/uclibc/">mailing list</a>.  
+<a href="/lists/uclibc/">mailing list</a>.  
 To subscribe, go and visit 
 <a href="http://www.uclibc.org/mailman/listinfo/uclibc">this page</a>.
 
@@ -91,7 +91,7 @@ To subscribe, go and visit
 </TD></TR>
 <TR><TD BGCOLOR="#eeeee0">
 
-    uClibc now has a <a href="http://www.uclibc.org/uClibc-apps.html">list of applications</a> 
+    uClibc now has a <a href="uClibc-apps.html">list of applications</a> 
     that are known to work.  Submissions are welcome! 
     Since most applications work just fine with uClibc, we are especially 
     interested in knowing about any applications that either do not compile
@@ -108,7 +108,7 @@ To subscribe, go and visit
 </TD></TR>
 <TR><TD BGCOLOR="#eeeee0">
 
-	uClibc now has a <a href="http://www.uclibc.org/FAQ.html">list of Frequently Asked Questions</a>.
+	uClibc now has a <a href="FAQ.html">list of Frequently Asked Questions</a>.
 	You might want to take a look.
     
     
@@ -130,7 +130,7 @@ To subscribe, go and visit
 
     CodePoet Consulting is pleased to announce the immediate
     availability of uClibc 0.9.9.  With this release,
-    <a href="http://www.uclibc.org/uClibc-apps.html">just about 
+    <a href="uClibc-apps.html">just about 
     everything we have tested now compiles and runs</a>.  In fact,
     there are now so many programs on the working application list that 
     rather than continue to add to this list, from now on we 
@@ -147,10 +147,10 @@ To subscribe, go and visit
     tested, and will be publicly released in the next couple of days,
     so stay tuned.
     <p>
-    The <a href="http://www.uclibc.org/downloads/Changelog">Changelog</a>
+    The <a href="downloads/Changelog">Changelog</a>
     and <a
-    href="http://www.uclibc.org/downloads/uClibc-0.9.9.tar.bz2">Source code</a> 
-    for this release are available <a href="http://www.uclibc.org/downloads/">here</a>.
+    href="downloads/uClibc-0.9.9.tar.bz2">Source code</a> 
+    for this release are available <a href="downloads/">here</a>.
     <p>
     One final bit on news -- as some of you may have noticed, uclibc.org 
     has been a bit overloaded and somewhat slow recently.  The server should 
@@ -170,12 +170,12 @@ To subscribe, go and visit
     approximately one release per month.
     <p>
     The source code for this release is available
-	<a href="http://www.uclibc.org/downloads/">here</a>.
+	<a href="downloads/">here</a>.
 
     <p> <li> <b>Old News</b>
     <br>
 
-    <a href="http://www.uclibc.org/old-news.html">Click here to read older news</a>.
+    <a href="old-news.html">Click here to read older news</a>.
     <p>
 
 
@@ -191,15 +191,14 @@ To subscribe, go and visit
 <TR><TD BGCOLOR="#eeeee0">
 <ul>
     <li> There is now a script that creates a daily snapshot tarball of uClibc and posts it on  
-	<a href="http://www.uclibc.org/downloads/uClibc-snapshot.tar.gz">here</a>.
+	<a href="downloads/uClibc-snapshot.tar.gz">here</a>.
     <li> uClibc also has a publicly browsable
-	<a href="http://cvs.uclinux.org/cgi-bin/cvsweb/uClibc/">CVS tree</a> (this CVS tree is also mirrored onto 
-	<a href="http://www.uclibc.org/cgi-bin/cvsweb/uClibc/">www.uclibc.org</a> but they are both the same thing).
+	<a href="/cgi-bin/cvsweb/uClibc/">CVS tree</a>
     <li> Anonymous
-	<a href="http://cvs.uclinux.org/cvs_anon.html">CVS access</a> is available, and
+	<a href="cvs_anon.html">CVS access</a> is available, and
 	
     <li> For those that are actively contributing there is even 
-	<a href="http://cvs.uclinux.org/cvs_write.html">CVS write access</a>.
+	<a href="cvs_write.html">CVS write access</a>.
 </ul>
 
 <!-- Begin Applications section -->
@@ -313,19 +312,19 @@ Here are a few things on the TODO list:
 
 <ul> 
 
-    <li> <a href="http://www.uclinux.org/">The uClinux home page</a>
+    <li> <a href="http://www.uclibc.org/">The uClibc home page</a>
     <p>
 
-    <li> <a href="http://cvs.uclinux.org/">The uClinux CVS repository</a>
+    <li> <a href="http://busybox.net/">BusyBox</a>
     <p>
 
-    <li> <a href="http://www.uclibc.org/">The uClibc home page</a>
+    <li> <a href="http://udhcp.busybox.net/">udhcp</a>
     <p>
 
-    <li> <a href="http://busybox.net/">BusyBox</a>
+    <li> <a href="http://www.uclinux.org/">The uClinux home page</a>
     <p>
 
-    <li> <a href="http://udhcp.busybox.net/">udhcp</a>
+    <li> <a href="http://cvs.uclinux.org/">The uClinux CVS repository</a>
     <p>
 
     <li> <a href="http://codepoet-consulting.com/">CodePoet Consulting</a>

+ 5 - 5
docs/uclibc.org/old-news.html

@@ -36,7 +36,7 @@
     </TD></TR>
     <TR><TD BGCOLOR="#eeeee0">
 
-	    <a href="http://uclibc.org">Click Here to Return to the main uClibc webpage</a>.
+	    <a href="index.html">Click Here to Return to the main uClibc webpage</a>.
 	    <p>
 
 <!-- Begin Older News section -->
@@ -83,7 +83,7 @@
     <p>
     <li> <b>7 November 2001, uClibc application list</b>
     <br>
-	uClibc now has a <a href="http://uclibc.org/uClibc-apps.html">list of applications</a> 
+	uClibc now has a <a href="uClibc-apps.html">list of applications</a> 
 	that are known to work.  If you have any applications to add to the
 	list, submissions are welcome!
 
@@ -94,7 +94,7 @@
 
 	Those wanting an easy way to test out uClibc and give it
 	a test drive can download and compile 
-	<a href="ftp://uclibc.org/buildroot.tar.gz">buildroot.tar.gz</a>.   This
+	<a href="http://www.uclibc.org/downloads/buildroot.tar.gz">buildroot.tar.gz</a>.   This
 	is a nifty buildsystem that will automagically download and build
 	a <a href="http://user-mode-linux.sourceforge.net/">User-Mode Linux</a>
 	kernel, and will then download source for and compile up a fully
@@ -156,13 +156,13 @@
     <br>
 
 	Jean-Yves Avenard contributed an SH port.  See his email 
-	with the initial patch <a href="http://uclibc.org/lists/uclibc/2001-February/000409.html">here</a>.
+	with the initial patch <a href="/lists/uclibc/2001-February/000409.html">here</a>.
 
     <p> <li> <b>16 January 2001, uClibc as a shared library</b>
     <br>
 
 	 As if January 16, uClibc can now be used (at least on x86) as a shared
-	library.  See the <a href="http://uclibc.org/lists/uclibc/2001-January/000126.html">email</a>
+	library.  See the <a href="/lists/uclibc/2001-January/000126.html">email</a>
 	announcing this achievement.
 
     <p> <li> <b>11 January 2001, gcc wrapper added</b>