[Monodevelop-patches-list] r456 - trunk/MonoDevelop/web/src

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Sun Jan 11 19:46:46 EST 2004


Author: tberman
Date: 2004-01-11 19:46:46 -0500 (Sun, 11 Jan 2004)
New Revision: 456

Modified:
   trunk/MonoDevelop/web/src/bugs.src
   trunk/MonoDevelop/web/src/download.src
   trunk/MonoDevelop/web/src/index.src
   trunk/MonoDevelop/web/src/screenshots.src
Log:
lots of site updates from steve_d


Modified: trunk/MonoDevelop/web/src/bugs.src
===================================================================
--- trunk/MonoDevelop/web/src/bugs.src	2004-01-12 00:23:50 UTC (rev 455)
+++ trunk/MonoDevelop/web/src/bugs.src	2004-01-12 00:46:46 UTC (rev 456)
@@ -1,3 +1,50 @@
-To report bugs, please go to <a href="http://bugzilla.ximian.com">here</a>.
+MonoDevelop is a very new project and, as such, still very much incomplete. 
+Thus, please refrain from reporting obviously unported features, as these 
+are known bugs, please however do report all bugs in anything that 
+should be working and isn't.
 <br/>
-Please refrain from reporting obviously unported features, as these are known bugs, please however do report all bugs in anything that should be working and isnt.
+<br/>
+
+<h1>Bug reporting</h1>
+<p>
+	To report bugs you need to create a <a
+	href="http://bugzilla.ximian.com/createaccount.cgi">Bugzilla
+	Account</a>.  
+<p>
+<a name="goodbugreport"/>
+<h2>How to make good bug reports</h2>
+<p>
+	<ol>
+<li>Submit a test case, the smaller it is, the better
+<p>
+<li>Use <a href="http://bugzilla.ximian.com">
+		http://bugzilla.ximian.com</a> to report the bug.
+		
+		<p>In <b>addition</b> to bugzilla, posting to the list is
+		fine if the bug merits larger exposure or design
+		discussions to solve; posting to the list twice or more
+		is just a way to annoy people and make them waste time,
+		specially when you start a new thread about it.
+<p>
+<li>If the test involves libraries or assemblies that are
+		not part of MonoDevelop, add info about where to download all
+		the dependencies, and how to compile/install them.
+<p>
+<li>Provide the <b>exact actions</b> needed to replicate the bug.
+<p>
+<li>Provide a concise and thorough description of the bug.
+<p>
+<li>Provide info about the version of the software you're
+		using (mono, MonoDevelop, and the operating system or relevant
+		libraries).
+<p>
+<li>Provide the output you expect the test case to produce.
+<p>
+<li>Provide the actual output <b>you</b> get from the test case.
+	</ol>
+<p>
+	A good bug report complies with at least 6 items from the list.
+	If your bug report complies with 3 or less items, it is very
+	poor and it means it will take much more time to fix (when it's
+	not ignored).
+<p>

Modified: trunk/MonoDevelop/web/src/download.src
===================================================================
--- trunk/MonoDevelop/web/src/download.src	2004-01-12 00:23:50 UTC (rev 455)
+++ trunk/MonoDevelop/web/src/download.src	2004-01-12 00:46:46 UTC (rev 456)
@@ -1 +1,141 @@
 At this time, no downloads are available, we are working hard to change that though.
+<p>
+If you have received subversion access from Todd or Miguel, please read the 
+instructions below.
+<p>
+
+<h1>Using SVN</h1>
+	
+	This is a small tutorial for using SVN (subversion).
+<p>
+<h2>Generating an SSH key</h2>
+<p>
+	If you are using SSH version 2, please generate your key using:
+<p>
+
+<pre>
+	ssh-keygen -t rsa
+</pre>
+<p>
+	And mail <a href="mailto:miguel at ximian.com">miguel</a> the 
+	id_rsa.pub file.
+<p>
+	If you are using SSH version 1, run:
+<pre>
+	ssh-keygen
+</pre>
+
+<p>
+	And mail <a href="mailto:miguel at ximian.com">miguel</a> your 
+	identity.pub file.
+<p>
+	If you are using SSH from SSH Communications Security (they offer
+	a free SSH client for personal use), you have to use OpenSSH to
+	convert your public key to the required format. You have to use 
+	OpenSSH's ssh-keygen program and write the following:
+<p>
+<pre>
+	ssh-keygen -i -f id_XXX.pub > my_public_key.pub
+</pre>
+	
+	where the file id_XXX.pub is your public key file, 
+	normally located under ~/.ssh/ or ~/.ssh2/.
+	Send to <a href="mailto:miguel at ximian.com">miguel</a> the 
+	my_public_key.pub file. 
+
+<p>
+	The *exact* format for this file must be:
+<p>
+<pre>
+	ssh-rsa XXXXX....
+</pre>
+<p>
+	You will need subversion and SSH.  Windows users can get SSH by
+	installing Cygwin (<a
+	href="http://www.cygwin.com">http://www.cygwin.com</a>).
+<p>
+	Unix users will probably have SSH installed already. Subversion can be
+	obtained from <a href="http://subversion.tigris.org/">the official 
+	subversion website</a> for both Windows and Unix. 
+<p>
+
+
+<h2>Checking out the sources</h2>
+<p>
+	To checkout the sources for the first time use the command:
+<p>
+	Note: You should be running 0.35.1 (latest) of svn before attempting
+	anything here.
+<p>
+<pre>
+	svn co svn+ssh://mono-cvs.ximian.com/svn/monodevelop/trunk/MonoDevelop
+</pre>
+	
+	If you have a different username on mono-cvs and the local computer
+	you can do the following:
+<p>
+<pre>
+
+	svn co svn+ssh://username@mono-cvs.ximian.com/svn/monodevelop/trunk/MonoDevelop
+</pre>
+<p>
+	before checking out.
+<p>
+<h2>Updating your sources</h2>
+<p>
+	You can update your repository to the latest copy of MonoDevelop by
+	running the following command:
+<p>
+<pre>
+	svn up
+</pre>
+
+<p>
+	from inside your repository.
+<p>
+<h2>Committing your work</h2>
+<p>
+	Before you commit anything, you should first update to the latest
+	sources by following the updating directions. After you are up to date
+	you need to run a:
+<p>
+<pre>
+	svn add filename
+</pre>
+<p>
+	for every file that you have created. You can get a list of these files
+	by running:
+
+<p>
+<pre>
+	svn status
+</pre>
+<p>
+	After all the files are added, run:
+<p>
+<pre>
+	svn commit
+</pre>
+<p>
+	to commit your changes.
+<p>
+
+<h1>Keeping track of changes.</h1>
+<p>
+	We provide one e-mail based mechanism to keep track of
+	changes to the code base:
+	
+	<ul>
+<li><a href="mailto:monodevelop-patches-list-request at lists.ximian.com">
+		  monodevelop-patches-list at lists.ximian.com</a>: This mailing list receives
+		  in patch form all the changes that are being made to SVN.
+	</ul>
+<p>
+	We hope to offer LXR and Bonsai in the future as well.
+<p>
+	To subscribe, send an email message to
+	monodevelop-patches-list-request at lists.ximian.com and in the body of the
+	message put `subscribe'.
+<p>
+	This will send you an email message every time the author of a patch submits
+	a patch for review. 

Modified: trunk/MonoDevelop/web/src/index.src
===================================================================
--- trunk/MonoDevelop/web/src/index.src	2004-01-12 00:23:50 UTC (rev 455)
+++ trunk/MonoDevelop/web/src/index.src	2004-01-12 00:46:46 UTC (rev 456)
@@ -1 +1,11 @@
-MonoDevelop is a port of <a href="http://www.icsharpcode.net/OpenSource/SD/" target="_new">SharpDevelop</a> to Gtk#
+MonoDevelop is a port of <a href="http://www.icsharpcode.net/OpenSource/SD/" target="_new">
+SharpDevelop</a> to Gtk#.
+<p>
+
+MonoDevelop is in the very early stages of development right now, and progressing quickly. 
+This page and the mailing lists will contain all major updates
+<p>
+
+
+<h2>Jan 11th, 2004: MonoDevelop Website is Up</h2>
+MonoDevelop website is created. Watch this space!

Modified: trunk/MonoDevelop/web/src/screenshots.src
===================================================================
--- trunk/MonoDevelop/web/src/screenshots.src	2004-01-12 00:23:50 UTC (rev 455)
+++ trunk/MonoDevelop/web/src/screenshots.src	2004-01-12 00:46:46 UTC (rev 456)
@@ -1,15 +1,21 @@
-<center>
-An old screenshot of our working code completion.
+
+
+<h2>January 1, 2004 - New file dialog</h2>
+<p>
+<img src="images/MonoDevelop-NewFile.png"/>
 <br/>
-<img src="images/MonoDevelop-CodeComplete.png"/>
 <br/>
+
+<h2>January 1, 2004 - Project scout</h2>
+A slick tree view of all the files in your current projects and combines.
+<p>
+<img src="images/MonoDevelop-ProjectView.png"/>
 <br/>
-New file dialog
 <br/>
-<img src="images/MonoDevelop-NewFile.png"/>
+
+<h2>December 28, 2003 - Code Completion</h2>
+An old screenshot displaying working code completion on the dot operator.
+<p>
+<img src="images/MonoDevelop-CodeComplete.png"/>
 <br/>
 <br/>
-Project scout
-<br/>
-<img src="images/MonoDevelop-ProjectView.png"/>
-</center>




More information about the Monodevelop-patches-list mailing list