2008-10-31  Chris Toshok  <toshok@ximian.com>

	* gtk.cs: track change to api - get/set_transparent is on
	MoonWindow now, not Surface.

2008-10-14  Stephane Delcroix  <sdelcroix@novell.com>

	* gtk.cs: new moon_window_gtk_new ctor signature

2008-09-06  Chris Toshok  <toshok@ximian.com>

	* ManagedDownloader.cs: remove GetTempFile.

	* gtk.cs: reformat the comments, remove all references to Canvas,
	and allow the toplevel (now called Content) to be a UIElement.

2008-08-25  Jeffrey Stedfast  <fejj@novell.com>

	* gtk.cs: Call DependencyObject.EnsureInitialized ()

2008-07-25  Chris Toshok  <toshok@ximian.com>

	* gtk.cs: pass "true" for silverlight2 in surface_new.  this might
	not be totally correct (people might want 1.0 apps in gtksilver),
	but I bet it'll serve.

2008-07-18  Chris Toshok  <toshok@ximian.com>

	* gtk.cs: create a MoonWindowGtk and pass that to surface_new.

2008-06-09  Geoff Norton  <gnorton@novell.com>
	
	* gtk.cs:
	* ManagedDownloader.cs: Update delegates to the new open prototype.

2008-05-23  Geoff Norton  <gnorton@novell.com>

	* Makefile.am: Dont remove index.xml when cleaning

2008-04-30  Fernando Herrera  <fherrera@novell.com>

	* ManagedDownloader.cs: Don't use our own temporal file, just write to
	the downloader, so we can use a ProgressiveSource for http streams.

2008-04-24  Fernando Herrera  <fherrera@novell.com>

	* Makefile.am: Fix "make -jN" build.

2008-04-21  Geoff Norton  <gnorton@novell.com>

	* index.xml: Updated for the new monodoc format.
	
2008-04-16  Andrew Jorgensen  <ajorgensen@novell.com>

	* Makefile.am: $(builddir) isn't available on older systems, use
	$(top_builddir)

2008-04-16  Andrew Jorgensen  <ajorgensen@novell.com>

	* Makefile.am: Doc directories don't exist during dist

2008-04-10  Fernando Herrera  <fherrera@novell.com>

	* ManagedDownloader.cs (Open): check first if the uri starts with "/".

2008-03-11  Chris Toshok  <toshok@ximian.com>

	* ManagedDownloader.cs: downloader_get_surface ->
	event_object_get_surface.

2008-03-10  Sebastien Pouliot  <sebastien@ximian.com>

	* ManagedDownloader.cs: Avoid crash if the download was aborted 
	(e.g. when the XAML parser rejects it's input).

2008-03-10  Chris Toshok  <toshok@ximian.com>

	* ManagedDownloader.cs: time_manager_add_tick_call requires us to
	pass in the proper TimeManager now, get the downloader's Surface's
	TimeManager.

2008-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 

	* gtk.cs: Added CreateFromString and InitializeFromXaml allowing xaml to be
	  loaded when multiple surfaces are used (these methods should be called 
	  instead of XamlReader.Load/Control.InitializeFromXaml in agclr).

2008-03-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 

	* gtk.cs: Specify the surface when loading xaml, allowing multiple surfaces
	  to be loaded in the same appdomain.

2008-02-25  Chris Toshok  <toshok@ximian.com>

	* gtk.cs: use surface_get_widget, not surface_get_drawing_area.

2008-02-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 

	* ManagedDownloader.cs: Don't do anything in the tick callbacks if the
	  downloader has been aborted or destroyed.

2008-01-10  Andrew Jorgensen  <ajorgensen@novell.com>

	* Makefile.am: Remove reference to docs/Gtk.Moonlight.xml
	because newer monodocer renames it.

2008-01-10  Jeffrey Stedfast  <fejj@novell.com>

	* Makefile.am: In order for building where builddir != srcdir to
	work, we need to reference the docs directory as '$(srcdir)/docs/'
	and not just 'docs/'

2007-10-10  Rolf Bjarne Kvinge  <RKvinge@novell.com>

	* gtk.cs: Use the XamlLoader in the LoadFile overload as well. 
	Set the surface of the domain for the XamlLoader.

2007-10-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>

	* gtk.cs: Use the XamlLoader in agclr.

2007-10-08  Rolf Bjarne Kvinge  <RKvinge@novell.com>

	* gtk.cs: Use platform invokes in agmono instead of declaring them
	again. Added a Resize method to resize the surface. Added a LoadXaml
	to load a xaml string. Fixed LoadFile to work again.

2007-09-26  Andrew Jorgensen  <ajorgensen@novell.com>

	* Makefile.am: Add $(DESTDIR) to gacutil command for rpm packaging

2007-08-20  Chris Toshok  <toshok@ximian.com>

	* ManagedDownloader.cs: fix this the right way, by keeping the
	local file case, just putting it in the Download delegate.

2007-08-20  Chris Toshok  <toshok@ximian.com>

	* ManagedDownloader.cs: remove the special case for files - it
	breaks the async semantics of the downloader class, and keeps
	mopen from working with monotone.

2007-07-16  Miguel de Icaza  <miguel@novell.com>

	* ManagedDownloader.cs: Do not use the auto_reset event after the
	finished callback, because the downloader might just trigger a new
	download and we would have pending events in the queue that are
	never executed.    Fixes loop downloaded crash.

2007-07-06  Miguel de Icaza  <miguel@novell.com>

	* Makefile: add support for uploading the docs to the server.

	* gtk.cs: Eliminate traces of get_response_func, this is now
	handled in the C++ runtime.

2007-07-04  Miguel de Icaza  <miguel@novell.com>

	* ManagedDownloader.cs: Do not go the expensive route if we are
	getting a file:// uri, just get directly from the file system.

2007-07-03  Miguel de Icaza  <miguel@novell.com>

	* ManagedDownloader.cs: Adapt to the new downloading framework
	that requires us to notify with a filename where the results have
	been placed. 

	(Download): Now places the file in a temporary file.   The TODO
	file has been updated with thoughts on how to cache this.

	(Start): Special case for files in the local file system, notify
	the downloader immediately of the transfer being finished.
	
	(dowloader_notify_error, downloader_notify_finished): new
	pinvokes, used to notify of completion and errors.

2007-06-25  Everaldo Canuto  <ecanuto@novell.com>

	* mopen.cs: When --desklet difine also --transparent.

2007-06-25  Everaldo Canuto  <ecanuto@novell.com>

	* mopen.cs: Use XRoot and YRoot instead of X and Y in drag-and-drop event.

2007-06-25  Everaldo Canuto  <ecanuto@novell.com>

	* mopen.cs: Add mouse drag-and-drop event.

2007-06-25  Everaldo Canuto  <ecanuto@novell.com>

	* mopen.cs: Fix mopen crash when canvas size is not specified. We should
	have a better stuff for this, just get it working right now.

2007-06-25  Everaldo Canuto  <ecanuto@novell.com>

	* mopen.cs: Use cavas size for silver and window size.

2007-06-25  Everaldo Canuto  <ecanuto@novell.com>

	* mopen.cs: Add support for "--desklet" option, it removes window decoration
	and will add some other desklet related stuff. Also add "--help"
