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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2004-02-13 08:42:44 +0300
committerMiguel de Icaza <miguel@gnome.org>2004-02-13 08:42:44 +0300
commit7b8bb2a2a74b3ea349f440cd1ed68a443344f0a4 (patch)
tree0aa6792d56a19adfe54edcdf9ce24ce6ccfaf2a1 /doc
parentd85cdd96a1377496add2607348c3171198327cc9 (diff)
updates
svn path=/trunk/mono/; revision=23050
Diffstat (limited to 'doc')
-rw-r--r--doc/download8
-rw-r--r--doc/performance10
-rw-r--r--doc/web/commands2
-rw-r--r--doc/web/makefile1
4 files changed, 15 insertions, 6 deletions
diff --git a/doc/download b/doc/download
index 47c91f067ba..e9c5353d216 100644
--- a/doc/download
+++ b/doc/download
@@ -55,6 +55,14 @@
</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>
</td>
<td>
diff --git a/doc/performance b/doc/performance
index 96f687b5ec1..582e3ce8ce2 100644
--- a/doc/performance
+++ b/doc/performance
@@ -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
diff --git a/doc/web/commands b/doc/web/commands
index dd5c6184d44..e31dbb1e5c2 100644
--- a/doc/web/commands
+++ b/doc/web/commands
@@ -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
diff --git a/doc/web/makefile b/doc/web/makefile
index 96904620b08..ff993b1b790 100644
--- a/doc/web/makefile
+++ b/doc/web/makefile
@@ -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 \