[Mono-docs-list] Instalation Problem under RedHat 9

2003-08-14 Thread Luciano Callero
Hi. I install all of package for Mono in RPM Format, except MonoDoc, beacause it tell me that need gtkHtml3.0.xx And I Have gtkHtml3.3.xx. Then I try to install from the source. I do configure, and when i do make, it starts, and start processing XML's files. But stop and does not continue in

[Mono-docs-list] RE: [Mono-list] Live Monodoc server.

2003-08-14 Thread Piers Haken
I should clarify this. The tree doesn't work in IE, and I think it's this line that's the culprit. All the URLs are being expanded as http://./...; Piers. -Original Message- From: Piers Haken Sent: Saturday, August 09, 2003 11:09 PM To: Miguel de Icaza; Mono Docs; [EMAIL PROTECTED]

[Mono-docs-list] Monodoc on the web: screenshot.

2003-08-14 Thread Miguel de Icaza
Hey guys, Am still fixing up a few things here and there, but I got Monodoc to use a dynamic tree (xloadtree: very nice java-script based dynamic tree loading) and rendering it. You can see it here: http://primates.ximian.com/~miguel/tmp/monodoc-web.png -- Miguel de Icaza [EMAIL

[Mono-docs-list] RE: [Mono-list] Live Monodoc server.

2003-08-14 Thread Piers Haken
Here's a patch (untested): Index: monodoc.ashx === RCS file: /cvs/public/monodoc/browser/web/monodoc.ashx,v retrieving revision 1.9 diff -u -r1.9 monodoc.ashx --- monodoc.ashx8 Aug 2003 04:34:44 - 1.9 +++

Re: [Mono-docs-list] Small monodoc-web bug

2003-08-14 Thread Miguel de Icaza
Hello, On IE under windows, the links get file:/// appended to the frontof them, so when you click on them, it wont work. I assume stripping on file:/// from the server side before processing the link is the best solution. Here is what a sample link looks like:

[Mono-docs-list] RE: [Mono-list] Live Monodoc server.

2003-08-14 Thread Piers Haken
I think you need to set add an attribute 'target=content' to each of the XML tree items and each of the root WebFXLoadTreeItems. Then you can remove the base element. Piers. -Original Message- From: Miguel de Icaza [mailto:[EMAIL PROTECTED] Sent: Sunday, August 10, 2003 8:20 AM To:

[Mono-docs-list] RE: [Mono-list] Live Monodoc server.

2003-08-14 Thread Piers Haken
I think you need to remove the line base href='.' target='content' / from the left frame. Piers. -Original Message- From: Miguel de Icaza [mailto:[EMAIL PROTECTED] Sent: Saturday, August 09, 2003 8:24 PM To: Mono Docs; [EMAIL PROTECTED] Subject: [Mono-list] Live

[Mono-docs-list] Issue with Mono handbook chapter names

2003-08-14 Thread John BouAntoun
http://mono.ximian.com:8080/monodoc.ashx?link=root:/monohb Chapter 12 - Collections / Dynamical Arrays There is no such word as Dynamical, it should read Dynamic Regards, JBA ___ Mono-docs-list maillist - [EMAIL PROTECTED]

RE: [Mono-docs-list] Small monodoc-web bug

2003-08-14 Thread Todd Berman
I am assuming that IE itself puts the file:/// there because of the url being N:, T:, etc. I am not 100% sure though, and the raw html doesn't have them: tr valign=toptda href=N:GtkMozEmbedGtkMozEmbed/a/tdtdEmbed a Mozilla browser window into your Gtk application./td/tr I think its just yet

[Mono-docs-list] Re: [Mono-list] Live Monodoc server.

2003-08-14 Thread Giuseppe Greco
On Sun, 2003-08-10 at 05:24, Miguel de Icaza wrote: Hey guys, We have a live Monodoc 0.6 server on http://mono.ximian.com:8080 running Mono + ASP.NET + our Monodoc framework rendering the core documentation, Gtk# and GtkMozEmbed#. The site sports a nice dynamic javascript tree,

[Mono-docs-list] Live Monodoc server.

2003-08-14 Thread Miguel de Icaza
Hey guys, We have a live Monodoc 0.6 server on http://mono.ximian.com:8080 running Mono + ASP.NET + our Monodoc framework rendering the core documentation, Gtk# and GtkMozEmbed#. The site sports a nice dynamic javascript tree, that only downloads the parts it needs to load. Enjoy,

Re: [Mono-docs-list] Small monodoc-web bug

2003-08-14 Thread Roger Sylte
Miguel de Icaza wrote: monodoc.ashx?type=N:System What about using URL encoding? monodoc.ashx?type=N%3ASystem Roger/