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

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2008-12-17 03:58:41 +0300
committerMiguel de Icaza <miguel@gnome.org>2008-12-17 03:58:41 +0300
commita796f2fd06a3cc370bc35e2de1b98ec12a95d12c (patch)
tree3c7b2b7074aad70d9b3ad5ef50dae3f4d58e9ff9 /webcompare
parent67a72d26bda348b51340379ffcd77971fcea84f2 (diff)
Add explanations
svn path=/trunk/mono-tools/; revision=121657
Diffstat (limited to 'webcompare')
-rw-r--r--webcompare/index.aspx46
1 files changed, 40 insertions, 6 deletions
diff --git a/webcompare/index.aspx b/webcompare/index.aspx
index 860aa49b..b5b643cf 100644
--- a/webcompare/index.aspx
+++ b/webcompare/index.aspx
@@ -10,23 +10,31 @@
<head>
<style type="text/css">
#col1 {
- width: 30%;
+ width: 24%;
float: left;
- margin-right: 4%;
+ margin-right: 1em;
border-right:1px dotted #AAAAAA;
}
#col2 {
- width: 30%;
+ width: 24%;
float: left;
- margin-right: 4%;
+ margin-right: 1em;
border-right:1px dotted #AAAAAA;
}
#col3 {
- width: 30%;
+ width: 24%;
float: left;
+ margin-right: 1em;
+ border-right:1px dotted #AAAAAA;
}
+
+#col4 {
+ width: 24%;
+ float: left;
+}
+
</style>
<script runat="server">
@@ -62,22 +70,48 @@ void GenerateList (string reference, string profile)
<div id="col1">
<h1>Mono 3.5 vs .NET 3.5</h1>
+ <p>This shows the work-in-progress of Mono towards completing
+ the 3.5 SP1 APIs.
+
<ul>
<% GenerateList ("3.5", "2.0"); %>
</ul>
</div>
<div id="col2">
+<h1>Moonlight vs Silverlight 2.0</h1>
+
+ <p>This is used to compare Mono + Moonlight assemblies against
+ the published API of Silverlight 2.0.
+
+ <ul>
+ <% GenerateList ("SL2", "2.1"); %>
+ </ul>
+</div>
+
+<div id="col3">
<h1>Mono 3.5 vs .NET 2.0</h1>
+ <p>This is comparing Mono's latest API which is typically
+ installed in the lib/mono/2.0/ directory, but contains the 3.5 API.
+
+ <p>This list is only useful to determine if there are some
+ major missing features, but not for detecting if there are
+ extra APIs (we will have them, as we are now tracking 3.5)
+
<ul>
<% GenerateList ("2.0", "2.0"); %>
</ul>
</div>
-<div id="col3">
+<div id="col4">
<h1>Mono 1.1 vs .NET 1.1</h1>
+ <p>The Mono 1.1 API is typically used for embedded scenarios,
+ so we are tracking here any major differences in the area of
+ extra APIs that should not be exposed while building the
+ NET_1_1 profile.
+
<ul>
<% GenerateList ("1.1", "1.0"); %>
</ul>