Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@novell.com>2007-12-04 13:49:22 +0300
committerLluis Sanchez <lluis@novell.com>2007-12-04 13:49:22 +0300
commit0aa95ab0ad2750a62ca248d0154b9b9f80f11de8 (patch)
tree1de0d12270990af00b94d77e7a54eac89bc36122 /main/docs/SourceMap.html
parent7195f4926b21b46ad8e4ce1976603ffc63b49729 (diff)
Directory reorganization
svn path=/branches/monodevelop/reorg/; revision=90637
Diffstat (limited to 'main/docs/SourceMap.html')
-rw-r--r--main/docs/SourceMap.html115
1 files changed, 115 insertions, 0 deletions
diff --git a/main/docs/SourceMap.html b/main/docs/SourceMap.html
new file mode 100644
index 0000000000..acd55ceab7
--- /dev/null
+++ b/main/docs/SourceMap.html
@@ -0,0 +1,115 @@
+< html>
+ <head>
+ <title>MonoDevelop source map</title>
+ </head>
+
+ <body>
+ <h3>Introduction</h3>
+ <p>Sometimes it can be hard to find your way around the MonoDevelop
+ source tree. This is intended as a brief description on where and
+ what things are, and a couple tips to find things. Beware that MonoDevelop is in heavy active development and things can and do change rapidly.</p>
+
+ <!-- fix this to be a tables with: name, location, description
+ and possibly even dependencies, shared with SD -->
+ <h3>Assemblies</h3>
+ <p>
+ Name: MonoDevelop.Core<br />
+ Location: <code>Core/src/MonoDevelop.Core/</code><br />
+ Description: contains the bare necessities for the IDE.<br />
+ Depends: none
+ </p>
+ <p>
+ Name: MonoDevelop.Base<br />
+ Location: <code>Core/src/MonoDevelop.Base/</code><br />
+ Description: contains the base of the IDE.<br />
+ Depends: MonoDevelop.Core Gtk#/GNOME
+ </p>
+ <p>
+ Name: MonoDevelop.Dock<br />
+ Location: <code>Core/src/MonoDevelop.Dock/</code><br />
+ Description: Gtk# docking widgets ported from gdl C library.<br />
+ Depends: none
+ </p>
+ <p>
+ Name: ICSharpCode.SharpAssembly<br />
+ Location: <code>Core/src/ICSharpCode.SharpAssembly</code><br />
+ Description: Assembly reading library.<br />
+ Depends: none
+ </p>
+ <p>
+ Name: ICSharpCode.SharpRefactory<br />
+ Location: <code>Core/src/ICSharpCode.SharpRefactory</code<br />
+ Description: C# parser library.<br />
+ Depends: none
+ </p>
+ <p>
+ Name: MonoDevelop.SourceEditor<br />
+ Location: <code>Core/src/AddIns/DisplayBindings/SourceEditor</code><br />
+ Description: Default editor for MonoDevelop.<br />
+ Depends: Gtk# gtksourceview-sharp MonoDevelop.Core MonoDevelop.Base MonoDevelop.Gui.Widgets MonoDevelop.Gui.Utils
+ </p>
+ <p>
+ Name: MonoDevelop.Gui.Utils<br />
+ Location: <code>Core/src/MonoDevelop.Gui.Utils</code><br />
+ Description: extra miscellaneous functions.<br />
+ Depends: Gtk#/GNOME
+ </p>
+ <p>
+ Name: MonoDevelop.Gui.Widgets<br />
+ Location: <code>Core/src/MonoDevelop.Gui.Widgets/</code><br />
+ Description: extra Gtk# specific widgets.<br />
+ Depends: Gtk#/GNOME MonoDevelop.Core MonoDevelop.Gui.Utils
+ </p>
+ <p>
+ Name: MonoDevelop.Debugger<br />
+ Location: <code>Core/src/AddIns/DebuggerAddIn/</code><br />
+ Description: debugging support library<br />
+ Depends: Gtk# Mono.Debugger MonoDevelop.Base MonoDevelop.Core
+ </p>
+ <p>
+ Name: CSharpBinding<br />
+ Location: <code>Core/src/AddIns/BackendBindings/CSharpBinding/</code><br />
+ Description: backend for C# langauge support<br />
+ Depends: MonoDevelop.Core MonoDevelop.Base MonoDevelop.SourceEditor ICSharpCode.SharpRefactory MonoDevelop.Gui.Widgets
+ </p>
+ <p>
+ Name: JavaBinding<br />
+ Location: <code>Extras/JavaBinding/</code><br />
+ Description: backend for Java Langauge<br />
+ Depends: external java runtime and compiler
+ </p>
+ <p>
+ Name: StartUp<br />
+ Location: <code>Core/src/MonoDevelop.StartUp/</code><br />
+ Description: Parses commandline and invokes the rest.<br />
+ Depends: MonoDevelop.Core MonoDevelop.Base MonoDevelop.SourceEditor ICSharpCode.SharpRefactory MonoDevelop.Gui.Widgets
+ </p>
+ <p>
+ Name: MonoDeveloperExtensions<br />
+ Location: <code>Extras/MonoDeveloperExtensions</code><br />
+ Description: tools for developing mono itself
+ Depends: MonoDevelop.Core MonoDevelop.Base gtk#
+ </p>
+
+ <h3>Others</h3>
+ <p>addin files - <code>build/AddIns</code></p>
+ <p>resources - <code>build/data/resources</code> and <code>data/resources</code></p>
+ <p>templates - <code>build/data/templates</code></p>
+ <p>glade - data/resources/glade</p>
+
+ <h3>Last resort</h3>
+ <p>Sometimes its still can be confusing so running something like
+ the two below commands can be used as a last resort to find things.
+ </p><p>
+ <code>find . -name '*TypeName*.cs'</code>
+ </p><p>
+ <code>find . -name '*.cs' | xargs grep TypeName</code>
+ </p>
+
+ <h3>Credits and Errata</h3>
+ <p>Send comments to <a href="mailto:john.luke@gmail.com">john.luke@gmail.com</a> or the <a href="mailto:monodevelop-list@lists.ximian.com">monodevelop mailing list</a>.</p>
+ <p><a href="http://opensource.org/licenses/mit-license.php">MIT License</a></p>
+ <p>Last updated March 18, 2004</p>
+ </body>
+</html>
+