From dfff35163c78161161af83fca1dca13268782b7a Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Sat, 1 Dec 2001 21:50:32 +0000 Subject: [PATCH] Add AnonCVS svn path=/trunk/mono/; revision=1502 --- doc/Makefile.am | 2 +- doc/anoncvs | 54 ++++++++++++++++++++++++++++++++++++++++++++++++ doc/ccvs | 5 ++++- doc/ideas | 16 -------------- doc/index | 18 ++++++++++++++++ doc/web/commands | 1 + doc/web/makefile | 1 + web/Makefile.am | 2 +- web/anoncvs | 54 ++++++++++++++++++++++++++++++++++++++++++++++++ web/ccvs | 5 ++++- web/ideas | 16 -------------- web/index | 18 ++++++++++++++++ web/web/commands | 1 + web/web/makefile | 1 + 14 files changed, 158 insertions(+), 36 deletions(-) create mode 100644 doc/anoncvs create mode 100644 web/anoncvs diff --git a/doc/Makefile.am b/doc/Makefile.am index 0f0551ee6ed..ab1762d8a84 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,7 +1,7 @@ WEB_FILES= \ c-sharp class-library contact contributing documentation download \ faq gcc-frontend ideas index passport rationale resources \ - roadmap runtime status team testing thanks tools porting + roadmap runtime status team testing thanks tools porting anoncvs OTHERS= pending resources-pending todo diff --git a/doc/anoncvs b/doc/anoncvs new file mode 100644 index 00000000000..1aa3ff452de --- /dev/null +++ b/doc/anoncvs @@ -0,0 +1,54 @@ +* Anonymous CVS access + + Anonymous access to the Mono is available currently from the + HispaLinux CVS server (later I will provide a nice + anoncvs.go-mono.com alias). + + Sources are currently being updated every hour. + + The server is currently located in Spain. If you want to + become an AnonCVS mirror, go here + +** Checking out the sources + + To check out the sources for the first time from the + repository, use this command: + +
+	export CVSROOT=:pserver:anonymous@reypastor.hispalinux.es:/mono
+	cvs co -z3 mcs mono gtk-sharp
+
+ + That will get you the compiler and class libraries (mcs), the + interpreter and JITer (mono) and the Gtk# bindings. + + The server is located in Spain. + +** Updating the sources + + To update your sources every day, you use this command: + +
+	export CVSROOT=:pserver:anonymous@reypastor.hispalinux.es:/mono
+	cvs update -dP -z3 mcs mono gtk-sharp
+
+ +** Thanks + + Thanks to HispaLinux + for providing this Anon CVS server. The server is located in + Spain. + + Special thanks to Jesus Climent, Rodrigo Moya, Juantomás + García and Ismael Olea for making this happen. + + +** Becoming an AnonCVS mirror + + To become an AnonCVS mirror, you currently need about 20 + megabytes of free disk space and bandwidth that you do not + mind sharing (you probably want enough to spare). + + I need to be able to rsync to your machine from the main CVS + server. The preferred method to rsync is to setup ssh in your + machine. diff --git a/doc/ccvs b/doc/ccvs index b67e8dc0c5b..274d7d9afdf 100644 --- a/doc/ccvs +++ b/doc/ccvs @@ -1,7 +1,10 @@ * CVS Access If you are an active Mono developer, you can get a CVS account - that hosts the Mono source code. + that hosts the Mono source code. + + If you are not a developer, but want to track the development, please + see the AnonCVS instructions. Send an e-mail to miguel with your public SSH key for this purpose. Please specify if the key was generated with SSH1 or SSH2. diff --git a/doc/ideas b/doc/ideas index fb2a89aa205..82854700ca6 100644 --- a/doc/ideas +++ b/doc/ideas @@ -42,22 +42,6 @@ TODO=multimedia href="mailto:vladimir@ximian.com">Vladimir has researched the problem before -TODO=gtk,Gtk+ wrappers for Mono and .NET - * Wrap the Gtk+ API. This is simple and can be done - on Windows as Gtk+ 2.0 works on Windows. - - This work can also be used on Windows and will - enable developers on Windows to use some of Gtk+'s - advanced features. - - The idea is to wrap the Gtk+ API and allow us to - build GUI applications using Gtk+ and in the future - other Gtk+-based libraries from Mono (Gal, GtkHTML). - - There is extensive knowledge on wrapping Gtk+ in - other languages (this has been done this for Perl, - Python, Java, Scheme, Haskel and other languages in - the past). diff --git a/doc/index b/doc/index index d3b8130f0b3..5c188459cbb 100644 --- a/doc/index +++ b/doc/index @@ -23,6 +23,22 @@ You can contact the team at: mono-list@ximian.com +** Dec 1, 2001 + + AnonCVS access to Mono is here (updated every hour). Thanks + to HispaLinux and Jesus + Climent for helping to set this up. + +** Nov 30, 2001 + + All tests from the mono runtime work with the JIT engine now + (Dietmar). + + Recursive enumeration definition in the C# compiler are + working now (Ravi). + + More work on the Web classes (Gaurav). + ** Nov 28, 2001 JIT land: Paolo got GDB support into the JIT engine while @@ -34,6 +50,8 @@ Nick keeps working on improving our class library test suite. + Dick has almost completed the Mono IO layer. + ** Nov 16, 2001
diff --git a/doc/web/commands b/doc/web/commands index bbf042e78e9..999837acd76 100644 --- a/doc/web/commands +++ b/doc/web/commands @@ -9,6 +9,7 @@ 1,Status,status.html,status.src 0,Download,download.html,download.src 1,CVS access,ccvs.html,ccvs.src +1,AnonCVS access,anoncvs.html,anoncvs.src 0,Contributing,contributing.html,contributing.src 1,Documentation,documentation.html,documentation.src 1,Test Suite,testing.html,testing.src diff --git a/doc/web/makefile b/doc/web/makefile index f3b6a5b8c13..037a364fdfb 100644 --- a/doc/web/makefile +++ b/doc/web/makefile @@ -1,4 +1,5 @@ SOURCES= \ + ../anoncvs \ ../contributing \ ../class-library \ ../class-status \ diff --git a/web/Makefile.am b/web/Makefile.am index 0f0551ee6ed..ab1762d8a84 100644 --- a/web/Makefile.am +++ b/web/Makefile.am @@ -1,7 +1,7 @@ WEB_FILES= \ c-sharp class-library contact contributing documentation download \ faq gcc-frontend ideas index passport rationale resources \ - roadmap runtime status team testing thanks tools porting + roadmap runtime status team testing thanks tools porting anoncvs OTHERS= pending resources-pending todo diff --git a/web/anoncvs b/web/anoncvs new file mode 100644 index 00000000000..1aa3ff452de --- /dev/null +++ b/web/anoncvs @@ -0,0 +1,54 @@ +* Anonymous CVS access + + Anonymous access to the Mono is available currently from the + HispaLinux CVS server (later I will provide a nice + anoncvs.go-mono.com alias). + + Sources are currently being updated every hour. + + The server is currently located in Spain. If you want to + become an AnonCVS mirror, go here + +** Checking out the sources + + To check out the sources for the first time from the + repository, use this command: + +
+	export CVSROOT=:pserver:anonymous@reypastor.hispalinux.es:/mono
+	cvs co -z3 mcs mono gtk-sharp
+
+ + That will get you the compiler and class libraries (mcs), the + interpreter and JITer (mono) and the Gtk# bindings. + + The server is located in Spain. + +** Updating the sources + + To update your sources every day, you use this command: + +
+	export CVSROOT=:pserver:anonymous@reypastor.hispalinux.es:/mono
+	cvs update -dP -z3 mcs mono gtk-sharp
+
+ +** Thanks + + Thanks to HispaLinux + for providing this Anon CVS server. The server is located in + Spain. + + Special thanks to Jesus Climent, Rodrigo Moya, Juantomás + García and Ismael Olea for making this happen. + + +** Becoming an AnonCVS mirror + + To become an AnonCVS mirror, you currently need about 20 + megabytes of free disk space and bandwidth that you do not + mind sharing (you probably want enough to spare). + + I need to be able to rsync to your machine from the main CVS + server. The preferred method to rsync is to setup ssh in your + machine. diff --git a/web/ccvs b/web/ccvs index b67e8dc0c5b..274d7d9afdf 100644 --- a/web/ccvs +++ b/web/ccvs @@ -1,7 +1,10 @@ * CVS Access If you are an active Mono developer, you can get a CVS account - that hosts the Mono source code. + that hosts the Mono source code. + + If you are not a developer, but want to track the development, please + see the AnonCVS instructions. Send an e-mail to miguel with your public SSH key for this purpose. Please specify if the key was generated with SSH1 or SSH2. diff --git a/web/ideas b/web/ideas index fb2a89aa205..82854700ca6 100644 --- a/web/ideas +++ b/web/ideas @@ -42,22 +42,6 @@ TODO=multimedia href="mailto:vladimir@ximian.com">Vladimir has researched the problem before -TODO=gtk,Gtk+ wrappers for Mono and .NET - * Wrap the Gtk+ API. This is simple and can be done - on Windows as Gtk+ 2.0 works on Windows. - - This work can also be used on Windows and will - enable developers on Windows to use some of Gtk+'s - advanced features. - - The idea is to wrap the Gtk+ API and allow us to - build GUI applications using Gtk+ and in the future - other Gtk+-based libraries from Mono (Gal, GtkHTML). - - There is extensive knowledge on wrapping Gtk+ in - other languages (this has been done this for Perl, - Python, Java, Scheme, Haskel and other languages in - the past). diff --git a/web/index b/web/index index d3b8130f0b3..5c188459cbb 100644 --- a/web/index +++ b/web/index @@ -23,6 +23,22 @@ You can contact the team at: mono-list@ximian.com +** Dec 1, 2001 + + AnonCVS access to Mono is here (updated every hour). Thanks + to HispaLinux and Jesus + Climent for helping to set this up. + +** Nov 30, 2001 + + All tests from the mono runtime work with the JIT engine now + (Dietmar). + + Recursive enumeration definition in the C# compiler are + working now (Ravi). + + More work on the Web classes (Gaurav). + ** Nov 28, 2001 JIT land: Paolo got GDB support into the JIT engine while @@ -34,6 +50,8 @@ Nick keeps working on improving our class library test suite. + Dick has almost completed the Mono IO layer. + ** Nov 16, 2001
diff --git a/web/web/commands b/web/web/commands index bbf042e78e9..999837acd76 100644 --- a/web/web/commands +++ b/web/web/commands @@ -9,6 +9,7 @@ 1,Status,status.html,status.src 0,Download,download.html,download.src 1,CVS access,ccvs.html,ccvs.src +1,AnonCVS access,anoncvs.html,anoncvs.src 0,Contributing,contributing.html,contributing.src 1,Documentation,documentation.html,documentation.src 1,Test Suite,testing.html,testing.src diff --git a/web/web/makefile b/web/web/makefile index f3b6a5b8c13..037a364fdfb 100644 --- a/web/web/makefile +++ b/web/web/makefile @@ -1,4 +1,5 @@ SOURCES= \ + ../anoncvs \ ../contributing \ ../class-library \ ../class-status \ -- 2.25.1