tasque r43 - in branches/brainshare08: . src
- From: calvinrg svn gnome org
- To: svn-commits-list gnome org
- Subject: tasque r43 - in branches/brainshare08: . src
- Date: Thu, 20 Mar 2008 15:57:01 +0000 (GMT)
Author: calvinrg
Date: Thu Mar 20 15:57:01 2008
New Revision: 43
URL: http://svn.gnome.org/viewvc/tasque?rev=43&view=rev
Log:
* src/Application.cs: Added DBUS support in startup code
Modified:
branches/brainshare08/ChangeLog
branches/brainshare08/src/Application.cs
Modified: branches/brainshare08/src/Application.cs
==============================================================================
--- branches/brainshare08/src/Application.cs (original)
+++ branches/brainshare08/src/Application.cs Thu Mar 20 15:57:01 2008
@@ -168,8 +168,51 @@
if (File.Exists (args [idx])) {
// TODO: insert stuff here to create a task
+ // Complete and total hack for TomBoy
+ Logger.Debug("The extension is: {0}", Path.GetExtension(args[idx]));
+
+ if(Path.GetExtension(args[idx]).CompareTo(".tasque") == 0) {
+ Logger.Debug("I got a Task file");
+ try {
+ StreamReader reader = new StreamReader (args[idx]);
+ string taskXml = reader.ReadToEnd ();
+ string name = null;
+ reader.Close();
+ XmlTextReader xml = new XmlTextReader (new StringReader (taskXml));
+ xml.Namespaces = false;
+ while (xml.Read ()) {
+ switch (xml.NodeType) {
+ case XmlNodeType.Element:
+ switch (xml.Name) {
+ case "Name":
+ name = xml.ReadString ();
+ break;
+ }
+ break;
+ }
+ }
+
+ if(name != null) {
+ // Register Tasque RemoteControl
+ try {
+ remoteControl = RemoteControlProxy.Register ();
+ if (remoteControl != null) {
+ remoteControl.CreateTask(String.Empty, name, false);
+ }
+ } catch (Exception e) {
+ Logger.Debug ("Tasque remote control disabled (DBus exception): {0}",
+ e.Message);
+ }
+ } else {
+ Logger.Debug("Unable to create a task");
+ }
+ } catch (Exception e) {
+ Logger.Debug("Exception getting task {0}", e);
+ }
+ } else {
+ Logger.Debug("File being loaded is not a Tasque file");
+ }
}
-
break;
case "--backend":
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]