[Monodevelop-patches-list] r1187 - trunk/md-website

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Wed Mar 17 20:34:35 EST 2004


Author: kevinb
Date: 2004-03-17 20:34:35 -0500 (Wed, 17 Mar 2004)
New Revision: 1187

Modified:
   trunk/md-website/faq.aspx
   trunk/md-website/styles.css
Log:
Added the code class for the stylesheet and redid the FAQ formatting so
it looked nice.


Modified: trunk/md-website/faq.aspx
===================================================================
--- trunk/md-website/faq.aspx	2004-03-18 00:33:23 UTC (rev 1186)
+++ trunk/md-website/faq.aspx	2004-03-18 01:34:35 UTC (rev 1187)
@@ -5,118 +5,117 @@
       
       <div class="title">FAQs &amp; General Help</div>
 
-      <p>This page is a copy of the files FAQS, KNOWN_ISSUES, and README from the MonoDevelop/ directory in the subversion repository. Please download a copy from svn if this page is out of date. Last updated: Feb 27, 2004.</p>
+      <p>This page is a copy of the files FAQS, KNOWN_ISSUES, and README with
+      some edits, from the MonoDevelop/ directory in the Subversion
+      repository. Please download a copy from svn if this page is out of
+      date. Last updated: Feb 27, 2004.</p>
 
-      <div class="headlinebar">FAQs</div>
+      <div class="headlinebar">FAQ</div>
 
-      <pre>
-- Why aren't my C# files syntax highlighted?
+<p>Why aren't my C# files syntax highlighted?</p>
        
-GNOME doesn't recognize *.cs files as the text/x-csharp
+<p>GNOME doesn't recognize *.cs files as the text/x-csharp
 mimetype.  gtksourceview-sharp tries to set this up automatically,
 but it may not work in all cases. You can use
-gnome-file-types-properties to do this.
+gnome-file-types-properties to do this.</p>
         
-- What if the configuration summary says 'no' for one of the
-  requirements?
+<p>What if the configuration summary says 'no' for one of the requirements?</p>
 	   
-The configure script uses pkg-config to see if you have the
+<p>The configure script uses pkg-config to see if you have the
 required packages to build.  If it can't detect a package that
-you have installed:
+you have installed:</p>
 	    
-add the path to the &lt;package&gt;.pc file to PKG_CONFIG_PATH
-ex. export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH
+<p>add the path to the &lt;package&gt;.pc file to PKG_CONFIG_PATH.</p>
+
+<pre class="code">export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH</pre>
 	     
-install a newer version or the development counterpart
-of that package and rerun ./configure
-ex. gnome-vfs2-devel-2.4.1-1.rpm
-      </pre>
+<p>install a newer version or the development counterpart
+of that package and rerun ./configure.
+</p>
 
-      <div class="headlinebar">Known Issues</div>
+<div class="headlinebar">Known Issues</div>
 
-      <pre>
-This list tracks know issues, hopefully to prevent duplicate bug reporting
+<p>This list tracks know issues, hopefully to prevent duplicate bug reporting
 upon release.
        
-* When you iconify a dockitem, close MonoDevelop and reopen, the dockitem is
+<ul><li>When you iconify a dockitem, close MonoDevelop and reopen, the dockitem is
   gone.
-* When you maximize MonoDevelop, the docks do not resize properly.
-* The toolbar sometimes exhibit interesting behaviour including but not
+</li><li>When you maximize MonoDevelop, the docks do not resize properly.
+</li><li>The toolbar sometimes exhibit interesting behaviour including but not
   limited to looking disabled and working, looking enabled and not working
   and others.
-* Lingering code completion issues
-* When you click on  File-&gt;Recent Projects-&gt;clear recent project list or
-  File-&gt;Recent Files-&gt;clear recent files list you need a confimartion dialog
-  in order to avoid clearing accidentaly.
-      </pre>
+</li><li>Lingering code completion issues
+</li><li>When you click on  File-&gt;Recent Projects-&gt;clear recent project
+  list or File-&gt;Recent Files-&gt;clear recent files list you need a
+  confimartion dialog in order to avoid clearing accidentaly.</li></ul>
 
-      <div class="headlinebar">Readme</div>
+<div class="headlinebar">Readme</div>
 
-      <pre>
-This is MonoDevelop which is intended to be a full-featured
+<p>This is MonoDevelop which is intended to be a full-featured
 integrated development environment (IDE) for mono and Gtk#.
-It was originally a port of SharpDevelop 0.98.
-See http://monodevelop.com/ for more info.
+It was originally a port of SharpDevelop 0.98.</p>
        
-Compiling for users
--------------------
+<b>Compiling for users</b><br />
+
+<pre class="code">
 ./configure
 make
 make install
+</pre><br />
         
-Compiling for developers
-------------------------
-To compile run the following command:
-	 
+<b>Compiling for developers</b>
+
+<p>To compile run the following command:</p>
+ 
+<pre class="code">
 ./autogen.sh
 make
+</pre>
 	  
-To run MonoDevelop:
-make run
+<p>To run MonoDevelop:</p>
+<pre class="code">make run</pre>
 	   
-Example:
-make clean &amp;&amp; make &amp;&amp; make run
+<p>Example:
+<pre class="code">make clean &amp;&amp; make &amp;&amp; make
+run</pre></p><br />
 	    
-Installing
-----------
-Installing is currently optional.
-(Use make run to use MonoDevelop without installing.)
+<b>Installing</b>
+
+<p>Installing is currently optional.
+(Use make run to use MonoDevelop without installing.)</p>
 	     
-make install
+<pre class="code">make install</pre>
 	      
-Dependencies
-------------
-Mono &gt;= 0.30 with ICU enabled
-Gtk# cvs
-ORBit2 &gt;= 2.8.3
-gnome-vfs &gt;= 2.0
-gtksourceview &gt;= 0.7
-gtksourceview-sharp from mono's cvs
-(gtksourceview is available on Red Carpet,
-on many of the OpenCarpet channels.)
-	       
-See http://lists.ximian.com/archives/public/monodevelop-list/2004-January/000129.html.
+<p><b>Dependencies</b></p>
+
+<ul>
+<li>Mono &gt;= 0.30 with ICU enabled</li>
+<li>Gtk# cvs</li>
+<li>ORBit2 &gt;= 2.8.3</li> 
+<li>gnome-vfs &gt;= 2.0</li>
+<li>gtksourceview &gt;= 0.7*</li>
+<li>gtksourceview-sharp from mono's cvs</li>
+</ul>
+
+<p>*gtksourceview is available on <a
+href="http://www.ximian.com/red_carpet/">Red Carpet</a>, on many of the <a href="http://www.opencarpet.org/">OpenCarpet</a> channels.</p>
+
+<p>See <a
+href="http://lists.ximian.com/archives/public/monodevelop-list/2004-January/000129.html">http://lists.ximian.com/archives/public/monodevelop-list/2004-January/000129.html</a>
+for more information about the GtkSourceView dependency.</p>
 	        
-References
-----------
-SharpDevelop Tech Notes
-http://www.icsharpcode.net/TechNotes/
+<b>References</b>
+
+<ul>
+<li><a href="http://www.icsharpcode.net/TechNotes/
+">SharpDevelop Tech Notes</a></li>
 		 
-Gnome Human Interface Guidelines (HIG)
+<li><a href="Gnome Human Interface Guidelines (HIG)
 http://developer.gnome.org/projects/gup/hig/1.0/
 		  
-freedesktop.org standards
-http://freedesktop.org/Standards/
-		   
-Integrating with GNOME (a little out of date)
-http://developers.sun.com/solaris/articles/integrating_gnome.html
-		    
-Discussion, Bugs, Patches
--------------------------
-monodevelop-list at lists.ximian.com (questions and discussion)
-monodevelop-patches-list at lists.ximian.com (track commits to MonoDevelop)
-monodevelop-bugs at lists.ximian.com (track MonoDevelop bugzilla component)
-http://bugzilla.ximian.com (submit bugs and patches here)		     
-      </pre>
+">freedesktop.org standards</a></li>
+<li><a href="http://developers.sun.com/solaris/articles/integrating_gnome.html
+">Integrating with GNOME (a little out of date)</a></li>
+</ul>	    
 
 <ccms:PageFooter runat="server"/>

Modified: trunk/md-website/styles.css
===================================================================
--- trunk/md-website/styles.css	2004-03-18 00:33:23 UTC (rev 1186)
+++ trunk/md-website/styles.css	2004-03-18 01:34:35 UTC (rev 1187)
@@ -90,3 +90,12 @@
 
 .feature img { padding-right: 20px;
 	       padding-left: 20px; }
+
+.code {
+ padding: 3px;
+ background-color: black;
+ color: #00FF00;
+ width: 80%;
+ margin: auto;
+ line-height: 1.1em;
+}
\ No newline at end of file




More information about the Monodevelop-patches-list mailing list