updates
authorMiguel de Icaza <miguel@gnome.org>
Fri, 13 Feb 2004 05:42:44 +0000 (05:42 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Fri, 13 Feb 2004 05:42:44 +0000 (05:42 -0000)
svn path=/trunk/mono/; revision=23050

doc/download
doc/performance
doc/web/commands
doc/web/makefile
web/download
web/performance
web/web/commands
web/web/makefile

index 47c91f067ba9a0577ba4ce2012dd9b2e8012477c..e9c5353d2162346c70fd28ab5bca1067711c2323 100644 (file)
                    <a href="archive/0.30/fedora-1-i386">Packages</a>
                  </td>
                </tr>
+               <tr bgcolor="#bbbbbb">
+                 <td bgcolor="#999999">
+                    <img src="images/suse-36.gif"><b>SUSE 9/x86</b><br>
+                 </td>
+                 <td>
+                   <a href="archive/0.30/suse-90-i586/">Packages</a>
+                 </td>
+               </tr>
                <tr bgcolor="#bbbbbb">
                  <td bgcolor="#999999">
                     <img src="images/debian-36.gif"><b>Debian Packages</b><br>
index 96f687b5ec132ff364d36eca080c1b0ae4f00447..582e3ce8ce2369fb2081a61a1763c7392b5a8ca5 100644 (file)
@@ -19,7 +19,7 @@
        into the runtime system. You can invoke this profiler on your program
        by running with the --profile flag.
 
-<pre>
+<pre class="shell">
        mono --profile program.exe
 </pre>
 
@@ -37,7 +37,7 @@
        When the program has finished executing, the profiler prints the
        data in human readable format. It looks like:
 
-<pre>
+<pre class="shell">
 Total time spent compiling 227 methods (sec): 0.07154
 Slowest method to compile (sec): 0.01893: System.Console::.cctor()
 Time(ms) Count   P/call(ms) Method name
@@ -133,7 +133,7 @@ Total memory allocated: 448 KB
        handle this issue in different ways. Some choose to make a
        special class for each primative, and force the user to do an
        operation such as:
-<pre>
+<pre class="shell">
 // This is Java
 list.add (new Integer (1));
 System.out.println (list.get (1).intValue ());
@@ -152,7 +152,7 @@ System.out.println (list.get (1).intValue ());
        Note that because it is an implicit conversion, you will
        not see it in your code. For example, boxing is happening here:
 
-<pre>
+<pre class="shell">
 ArrayList foo = new ArrayList ();
 foo.Add (1);
 </pre>
@@ -181,7 +181,7 @@ foo.Add (1);
        reduce the memory consumption and reduce the work that the GC
        has to do.
 
-** foreach
+** Common problems with <tt>foreach</tt>
 
        The <tt>foreach</tt> C# statement handles various kinds of
        different constructs (about seven different code patterns are
index dd5c6184d44bb9954c2af8ce2f24cdc03310f1b4..e31dbb1e5c27273caa28d7a0926b559bf69a8f06 100644 (file)
@@ -1,7 +1,6 @@
 0,Home,index.html,index.src
 1,Roadmap,mono-roadmap.html
 1,FAQ,faq.html,faq.src
-1,News archive,http://monoevo.sf.net/mwn/archives.html
 1,Screenshots,screenshots.html,screenshots.src
 1,Team,team.html,team.src
 1,Other sites,other.html,other.src
@@ -41,6 +40,7 @@
 1,Papers,papers.html,papers.src
 1,Languages,languages.html,languages.src
 1,Debugging,jit-debug.html,jit-debug.src
+1,Performance,performance.html,performance.src
 0,Plans,plans.html,plans.src
 1,Drawing,drawing.html,drawing.src
 1,ADO.NET,ado-net.html,ado-net.src
index 96904620b08960e45aeebbeca824f28ee84dbd05..ff993b1b790c067688d57b3ee04ac1c498277dc4 100644 (file)
@@ -50,6 +50,7 @@ OBJECTS=                                                                      \
        deploy/other.html                                                       \
        deploy/papers.html                                                      \
        deploy/passport.html                                                    \
+       deploy/performance.html                                                 \
        deploy/plans.html                                                       \
        deploy/porting.html                                                     \
        deploy/postgresql.html                                                  \
index 47c91f067ba9a0577ba4ce2012dd9b2e8012477c..e9c5353d2162346c70fd28ab5bca1067711c2323 100644 (file)
                    <a href="archive/0.30/fedora-1-i386">Packages</a>
                  </td>
                </tr>
+               <tr bgcolor="#bbbbbb">
+                 <td bgcolor="#999999">
+                    <img src="images/suse-36.gif"><b>SUSE 9/x86</b><br>
+                 </td>
+                 <td>
+                   <a href="archive/0.30/suse-90-i586/">Packages</a>
+                 </td>
+               </tr>
                <tr bgcolor="#bbbbbb">
                  <td bgcolor="#999999">
                     <img src="images/debian-36.gif"><b>Debian Packages</b><br>
index 96f687b5ec132ff364d36eca080c1b0ae4f00447..582e3ce8ce2369fb2081a61a1763c7392b5a8ca5 100644 (file)
@@ -19,7 +19,7 @@
        into the runtime system. You can invoke this profiler on your program
        by running with the --profile flag.
 
-<pre>
+<pre class="shell">
        mono --profile program.exe
 </pre>
 
@@ -37,7 +37,7 @@
        When the program has finished executing, the profiler prints the
        data in human readable format. It looks like:
 
-<pre>
+<pre class="shell">
 Total time spent compiling 227 methods (sec): 0.07154
 Slowest method to compile (sec): 0.01893: System.Console::.cctor()
 Time(ms) Count   P/call(ms) Method name
@@ -133,7 +133,7 @@ Total memory allocated: 448 KB
        handle this issue in different ways. Some choose to make a
        special class for each primative, and force the user to do an
        operation such as:
-<pre>
+<pre class="shell">
 // This is Java
 list.add (new Integer (1));
 System.out.println (list.get (1).intValue ());
@@ -152,7 +152,7 @@ System.out.println (list.get (1).intValue ());
        Note that because it is an implicit conversion, you will
        not see it in your code. For example, boxing is happening here:
 
-<pre>
+<pre class="shell">
 ArrayList foo = new ArrayList ();
 foo.Add (1);
 </pre>
@@ -181,7 +181,7 @@ foo.Add (1);
        reduce the memory consumption and reduce the work that the GC
        has to do.
 
-** foreach
+** Common problems with <tt>foreach</tt>
 
        The <tt>foreach</tt> C# statement handles various kinds of
        different constructs (about seven different code patterns are
index dd5c6184d44bb9954c2af8ce2f24cdc03310f1b4..e31dbb1e5c27273caa28d7a0926b559bf69a8f06 100644 (file)
@@ -1,7 +1,6 @@
 0,Home,index.html,index.src
 1,Roadmap,mono-roadmap.html
 1,FAQ,faq.html,faq.src
-1,News archive,http://monoevo.sf.net/mwn/archives.html
 1,Screenshots,screenshots.html,screenshots.src
 1,Team,team.html,team.src
 1,Other sites,other.html,other.src
@@ -41,6 +40,7 @@
 1,Papers,papers.html,papers.src
 1,Languages,languages.html,languages.src
 1,Debugging,jit-debug.html,jit-debug.src
+1,Performance,performance.html,performance.src
 0,Plans,plans.html,plans.src
 1,Drawing,drawing.html,drawing.src
 1,ADO.NET,ado-net.html,ado-net.src
index 96904620b08960e45aeebbeca824f28ee84dbd05..ff993b1b790c067688d57b3ee04ac1c498277dc4 100644 (file)
@@ -50,6 +50,7 @@ OBJECTS=                                                                      \
        deploy/other.html                                                       \
        deploy/papers.html                                                      \
        deploy/passport.html                                                    \
+       deploy/performance.html                                                 \
        deploy/plans.html                                                       \
        deploy/porting.html                                                     \
        deploy/postgresql.html                                                  \