Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services/presence2/sugar-presence-service2
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2007-02-21 11:37:04 (GMT)
committer Dan Williams <dcbw@redhat.com>2007-02-21 11:37:04 (GMT)
commit548e2983dd41e5b02d1b8325ab4e4740a90f40c8 (patch)
tree988121fc2e7846f0197e0105190680e25a23093e /services/presence2/sugar-presence-service2
parentabff0a8cecb5b16c7c6f4a21cd3e4d8d8023ccab (diff)
Start on new presence service
Diffstat (limited to 'services/presence2/sugar-presence-service2')
-rwxr-xr-xservices/presence2/sugar-presence-service235
1 files changed, 35 insertions, 0 deletions
diff --git a/services/presence2/sugar-presence-service2 b/services/presence2/sugar-presence-service2
new file mode 100755
index 0000000..1c1fe70
--- /dev/null
+++ b/services/presence2/sugar-presence-service2
@@ -0,0 +1,35 @@
+#!/usr/bin/env python
+# vi: ts=4 ai noet
+#
+# Copyright (C) 2006, Red Hat, Inc.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+import logging
+import sys
+import os
+
+from sugar import logger
+from sugar import env
+
+sys.path.insert(0, env.get_services_dir())
+
+logger.start('presenceservice')
+
+from presence2 import PresenceService
+
+logging.info('Starting presence service')
+
+PresenceService.main()