Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/sugar/presence
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpgritti@gmail.com>2008-10-28 13:19:01 (GMT)
committer Marco Pesenti Gritti <mpgritti@gmail.com>2008-10-28 13:19:01 (GMT)
commitb58182a970d8ca8e593fcfa6ad229ab628d1bebb (patch)
tree0941e298b3e648a3171a1cdcc848ccf4c5703430 /src/sugar/presence
parent9c74f4eec71559c9e1c30c086590ef51f4320bcd (diff)
Mark modules as STABLE/UNSTABLE/DEPRECATED.
Diffstat (limited to 'src/sugar/presence')
-rw-r--r--src/sugar/presence/__init__.py16
-rw-r--r--src/sugar/presence/activity.py6
-rw-r--r--src/sugar/presence/buddy.py7
-rw-r--r--src/sugar/presence/presenceservice.py6
-rw-r--r--src/sugar/presence/sugartubeconn.py5
-rw-r--r--src/sugar/presence/tubeconn.py3
6 files changed, 30 insertions, 13 deletions
diff --git a/src/sugar/presence/__init__.py b/src/sugar/presence/__init__.py
index 3834ab2..1136c19 100644
--- a/src/sugar/presence/__init__.py
+++ b/src/sugar/presence/__init__.py
@@ -1,11 +1,3 @@
-"""Client-code's interface to the PresenceService
-
-Provides a simplified API for accessing the dbus service
-which coordinates native network presence and sharing
-information. This includes both "buddies" and "shared
-activities".
-"""
-
# Copyright (C) 2006-2007, Red Hat, Inc.
#
# This library is free software; you can redistribute it and/or
@@ -22,3 +14,11 @@ activities".
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
+
+"""Client-code's interface to the PresenceService
+
+Provides a simplified API for accessing the dbus service
+which coordinates native network presence and sharing
+information. This includes both "buddies" and "shared
+activities".
+"""
diff --git a/src/sugar/presence/activity.py b/src/sugar/presence/activity.py
index bd41cec..dc02aa1 100644
--- a/src/sugar/presence/activity.py
+++ b/src/sugar/presence/activity.py
@@ -1,4 +1,3 @@
-"""UI interface to an activity in the presence service"""
# Copyright (C) 2007, Red Hat, Inc.
#
# This library is free software; you can redistribute it and/or
@@ -16,6 +15,11 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
+"""UI interface to an activity in the presence service
+
+STABLE.
+"""
+
import logging
import dbus
diff --git a/src/sugar/presence/buddy.py b/src/sugar/presence/buddy.py
index 1030cfc..fab23d2 100644
--- a/src/sugar/presence/buddy.py
+++ b/src/sugar/presence/buddy.py
@@ -1,4 +1,3 @@
-"""UI interface to a buddy in the presence service"""
# Copyright (C) 2007, Red Hat, Inc.
#
# This library is free software; you can redistribute it and/or
@@ -16,11 +15,15 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
+"""UI interface to a buddy in the presence service
+
+STABLE.
+"""
+
import gobject
import gtk
import dbus
-
class Buddy(gobject.GObject):
"""UI interface for a Buddy in the presence service
diff --git a/src/sugar/presence/presenceservice.py b/src/sugar/presence/presenceservice.py
index 23e0ea0..e2398a8 100644
--- a/src/sugar/presence/presenceservice.py
+++ b/src/sugar/presence/presenceservice.py
@@ -1,4 +1,3 @@
-"""UI class to access system-level presence object"""
# Copyright (C) 2007, Red Hat, Inc.
#
# This library is free software; you can redistribute it and/or
@@ -16,6 +15,11 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
+"""UI class to access system-level presence object
+
+STABLE.
+"""
+
import logging
import dbus
diff --git a/src/sugar/presence/sugartubeconn.py b/src/sugar/presence/sugartubeconn.py
index 18113fe..954ef67 100644
--- a/src/sugar/presence/sugartubeconn.py
+++ b/src/sugar/presence/sugartubeconn.py
@@ -1,4 +1,3 @@
-"""Subclass of TubeConnection that converts handles to Sugar Buddies"""
# Copyright (C) 2008 One Laptop Per Child
#
# This program is free software; you can redistribute it and/or modify
@@ -15,6 +14,10 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+"""Subclass of TubeConnection that converts handles to Sugar Buddies
+
+STABLE.
+"""
from telepathy.constants import (
CHANNEL_GROUP_FLAG_CHANNEL_SPECIFIC_HANDLES)
diff --git a/src/sugar/presence/tubeconn.py b/src/sugar/presence/tubeconn.py
index c2f67e6..8606db6 100644
--- a/src/sugar/presence/tubeconn.py
+++ b/src/sugar/presence/tubeconn.py
@@ -16,6 +16,9 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+"""
+STABLE.
+"""
__all__ = ('TubeConnection',)
__docformat__ = 'reStructuredText'