[Monodevelop-patches-list] r1627 - trunk/md-website
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Tue May 25 00:23:01 EDT 2004
Author: tberman
Date: 2004-05-25 00:23:01 -0400 (Tue, 25 May 2004)
New Revision: 1627
Modified:
trunk/md-website/faq.aspx
trunk/md-website/styles.css
Log:
faq updates. graphical mainly, we will see how they end up looking.
Modified: trunk/md-website/faq.aspx
===================================================================
--- trunk/md-website/faq.aspx 2004-05-25 03:15:15 UTC (rev 1626)
+++ trunk/md-website/faq.aspx 2004-05-25 04:23:01 UTC (rev 1627)
@@ -9,51 +9,56 @@
<div class="headlinebar">FAQ</div>
-<p><a name="gdb">How do I get a backtrace with gdb?</a></p>
-<p>
-<ol>
- <li>Add the following to ~/.gdbinit:<br />
- <pre>
+<div class="faq">
+ <div class="question"><a name="gdb">How do I get a backtrace with gdb?</a></div>
+ <ol>
+ <li>Add the following to ~/.gdbinit:<br />
+ <pre>
handle SIGPWR nostop noprint pass
handle SIGXCPU nostop noprint pass
- </pre>
- </li>
- <li>cd /usr/lib/monodevelop/bin</li>
- <li>gdb mono</li>
- <li>run MonoDevelop.exe</li>
- <li>thread apply all bt</li>
-</ol>
-</p>
+</pre>
+ </li>
+ <li>cd /usr/lib/monodevelop/bin</li>
+ <li>gdb mono</li>
+ <li>run MonoDevelop.exe</li>
+ <li>thread apply all bt</li>
+ </ol>
+</div>
<br/>
-<p><a name="orbit_crash">Crashes when quiting MonoDevelop</a></p>
-<p>If you get crashes when you close MonoDevelop, check your ORBit version.</p>
-<p>Version 2.8.2 is known to cause issues. Upgrade to 2.8.3 if at all possible.</p>
+<div class="faq">
+ <div class="question"><a name="orbit_crash">Crashes when quiting MonoDevelop?</a></div>
+<p>If you get crashes when you close MonoDevelop, check your ORBit version.
+Version 2.8.2 is known to cause issues. Upgrade to 2.8.3 if at all possible.</p>
<p>NOTE: This update could be harmful to your gnome system, and should <b>NOT</b> be done lightly.</p>
-<br>
-<p><a name="mimetype_gnome26">How do I add mimetypes in gnome 2.6?</a></p>
-
+</div>
+<br/>
+<div class="faq">
+ <div class="question"><a name="mimetype_gnome26">How do I add mimetypes in gnome 2.6?</a></div>
<p>First you copy monodevelop.xml to $(gnome_prefix)/share/mime/packages. Then you run update-mime-database $(gnome_prefix)/share/mime. On fedora, and many other distros $gnome_prefix is /usr, so you do:</p>
<pre class="code">cp monodevelop.xml /usr/share/mime/packages
update-mime-database /usr/share/mime</pre>
<p>You might have to do these operations as the root user. If for some reason this still doesnt solve the problem, you can attempt to:</p>
<pre class="code">find /usr/share/mime -type f -exec chmod 644 {} \;</pre>
<p>With a user who has permissions to do so.</p>
+</div>
<br/>
-<p><a name="gecko-sharp">Where do I get gecko-sharp.pc?</a></p>
-
+<div class="faq">
+ <div class="qeustion"><a name="gecko-sharp">Where do I get gecko-sharp.pc?</a></div>
<p>gecko-sharp.pc can be found in the gtkmozembed-sharp CVS module in the Mono
CVS repository.</p>
+</div>
<br/>
-<p><a name="syntax_highlighting">Why aren't my C# files syntax highlighted?</a></p>
-
+<div class="faq">
+ <div class="question"><a name="syntax_highlighting">Why aren't my C# files syntax highlighted?</a></div>
<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. If you are running gnome 2.6, see
above.</p>
-<br/>
-<p><a name="pkgconfig">What if the configuration summary says 'no' for one of the requirements?</a></p>
-
+</div>
+<br/>
+<div class="faq">
+ <div class="question"><a name="pkgconfig">What if the configuration summary says 'no' for one of the requirements?</a></div>
<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:</p>
@@ -65,7 +70,8 @@
<p>install a newer version or the development counterpart
of that package and rerun ./configure.
</p>
-
+</div>
+<br/>
<div class="headlinebar">Known Issues</div>
<p>This list tracks know issues, hopefully to prevent duplicate bug reporting
@@ -73,7 +79,7 @@
<ul><li>When you iconify a dockitem, close MonoDevelop and reopen, the dockitem is
gone.
-</li><li>When you maximize MonoDevelop, the docks do not resize properly.</li>
+</li><li>When you maximize MonoDevelop, the docks do not resize properly in all docking configurations.</li>
</ul>
<b>References</b>
Modified: trunk/md-website/styles.css
===================================================================
--- trunk/md-website/styles.css 2004-05-25 03:15:15 UTC (rev 1626)
+++ trunk/md-website/styles.css 2004-05-25 04:23:01 UTC (rev 1627)
@@ -104,3 +104,13 @@
margin: 3px;
line-height: 1.2em;
}
+
+.faq {
+ background-color: #fafafa;
+ border: 1px solid black;
+}
+
+.question {
+ background-color: #dcdcdc;
+ border-bottom: 1px solid black;
+}
More information about the Monodevelop-patches-list
mailing list