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-20 20:17:36 +0300
committerMiguel de Icaza <miguel@gnome.org>2008-12-20 20:17:36 +0300
commit0661bb8bceb9a7ab00988ffec309d6b4bcd49d16 (patch)
tree9bbf5241dbbe15d8417385d042d662e89b7319ca /webcompare
parenta8f8c17071212f1948afd6f99b25c81894e16ce0 (diff)
Update the title
svn path=/trunk/mono-tools/; revision=121928
Diffstat (limited to 'webcompare')
-rw-r--r--webcompare/status.aspx111
1 files changed, 56 insertions, 55 deletions
diff --git a/webcompare/status.aspx b/webcompare/status.aspx
index dea4cb83..f9c8d885 100644
--- a/webcompare/status.aspx
+++ b/webcompare/status.aspx
@@ -10,66 +10,15 @@ TODO:
Add Error messages generated by the compare process.
-->
-<head>
- <script>
- </script>
-
-<style type="text/css">
-.icons {
- width: 12px;
- height: 1em;
- display: inline-block;
- background: no-repeat left bottom;
-}
-
-.creport {
- display: inline-block;
- cursor: pointer;
-}
-
-.report {
- display: inline-block;
-}
-
-.suffix {
- margin-left: 0.5em;
-}
-
-.missing {
- background-image: url(sm.gif);
-}
-
-.extra {
- background-image: url(sx.gif);
-}
-
-.ok {
- background-image: url(sc.gif);
-}
-
-.warning {
- background-image: url(mn.png);
-}
-
-.niex {
- background-image: url(se.gif);
-}
-
-.todo {
- background-image: url(st.gif);
-}
-
- </style>
-</head>
<script runat="server" language="c#">
public CompareContext compare_context;
-const string ImageMissing = "<img src='sm.gif' border=0 align=absmiddle>";
-const string ImageExtra = "<img src='sx.gif' border=0 align=absmiddle>";
+const string ImageMissing = "<img src='sm.gif' border=0 align=absmiddle title='Missing'>";
+const string ImageExtra = "<img src='sx.gif' border=0 align=absmiddle title='Extra'>";
const string ImageOk = "<img src='sc.gif' border=0 align=absmiddle>";
-const string ImageError = "<img src='se.gif' border=0 align=absmiddle>";
-const string ImageWarning = "<img src='mn.png' border=0 align=absmiddle>";
+const string ImageError = "<img src='se.gif' border=0 align=absmiddle title='throw NotImplementedException'>";
+const string ImageWarning = "<img src='mn.png' border=0 align=absmiddle title='warning'>";
static string ImageTodo (ComparisonNode cn)
{
@@ -110,9 +59,12 @@ public void ShowPleaseWait ()
true);
}
+global_asax.CompareParameters compare_param;
+
public void Page_Load ()
{
var cp = new global_asax.CompareParameters (Page.Request.QueryString);
+ compare_param = cp;
if (!global_asax.CompareParameters.InCache (cp) && !IsPostBack){
ShowPleaseWait ();
return;
@@ -368,6 +320,55 @@ void TreeNodePopulate (object sender, TreeNodeEventArgs e)
}
}
</script>
+<head>
+ <title>Mono <%=compare_param.Assembly%>.dll API Compare against <%=compare_param.InfoDir%>
+<style type="text/css">
+.icons {
+ width: 12px;
+ height: 1em;
+ display: inline-block;
+ background: no-repeat left bottom;
+}
+
+.creport {
+ display: inline-block;
+ cursor: pointer;
+}
+
+.report {
+ display: inline-block;
+}
+
+.suffix {
+ margin-left: 0.5em;
+}
+
+.missing {
+ background-image: url(sm.gif);
+}
+
+.extra {
+ background-image: url(sx.gif);
+}
+
+.ok {
+ background-image: url(sc.gif);
+}
+
+.warning {
+ background-image: url(mn.png);
+}
+
+.niex {
+ background-image: url(se.gif);
+}
+
+.todo {
+ background-image: url(st.gif);
+}
+
+ </style>
+</head>
<body>
Page generated at: <%=DateTime.Now %>