Start on new presence service
This commit is contained in:
parent
abff0a8cec
commit
548e2983dd
@ -111,6 +111,7 @@ lib/python/Makefile
|
||||
lib/threadframe/Makefile
|
||||
services/Makefile
|
||||
services/presence/Makefile
|
||||
services/presence2/Makefile
|
||||
services/nm/Makefile
|
||||
services/clipboard/Makefile
|
||||
services/datastore/Makefile
|
||||
|
@ -1 +1 @@
|
||||
SUBDIRS = presence nm clipboard datastore console
|
||||
SUBDIRS = presence presence2 nm clipboard datastore console
|
||||
|
7
services/presence2/Makefile.am
Normal file
7
services/presence2/Makefile.am
Normal file
@ -0,0 +1,7 @@
|
||||
sugardir = $(pkgdatadir)/services/presence2
|
||||
sugar_PYTHON = \
|
||||
__init__.py
|
||||
|
||||
bin_SCRIPTS = sugar-presence-service2
|
||||
|
||||
EXTRA_DIST = $(bin_SCRIPTS)
|
0
services/presence2/__init__.py
Normal file
0
services/presence2/__init__.py
Normal file
35
services/presence2/sugar-presence-service2
Executable file
35
services/presence2/sugar-presence-service2
Executable file
@ -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()
|
Loading…
Reference in New Issue
Block a user