Mark modules as STABLE/UNSTABLE/DEPRECATED.

This commit is contained in:
Marco Pesenti Gritti 2008-10-28 14:19:01 +01:00
parent 9c74f4eec7
commit b58182a970
43 changed files with 181 additions and 30 deletions

View File

@ -26,6 +26,8 @@ interesting buttons for the user, like for example 'exit activity'
See the methods of the Activity class below for more information on what you See the methods of the Activity class below for more information on what you
will need for a real activity. will need for a real activity.
STABLE.
""" """
# Copyright (C) 2006-2007 Red Hat, Inc. # Copyright (C) 2006-2007 Red Hat, Inc.
# Copyright (C) 2007-2008 One Laptop Per Child # Copyright (C) 2007-2008 One Laptop Per Child

View File

@ -1,4 +1,3 @@
"""Shell side object which manages request to start activity"""
# Copyright (C) 2006-2007 Red Hat, Inc. # Copyright (C) 2006-2007 Red Hat, Inc.
# #
# This library is free software; you can redistribute it and/or # This library is free software; you can redistribute it and/or
@ -16,6 +15,12 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""Shell side object which manages request to start activity
UNSTABLE. Activities are currently not allowed to run other activities so at
the moment there is no reason to stabilize this API.
"""
import logging import logging
import dbus import dbus

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
class ActivityHandle(object): class ActivityHandle(object):
"""Data structure storing simple activity metadata""" """Data structure storing simple activity metadata"""
def __init__( def __init__(

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
UNSTABLE. It should really be internal to the Activity class.
"""
import logging import logging
import dbus import dbus

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import os import os
import sys import sys
import zipfile import zipfile

View File

@ -15,7 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""Sugar activity bundles""" """Sugar activity bundles
UNSTABLE.
"""
from ConfigParser import ConfigParser from ConfigParser import ConfigParser
import locale import locale

View File

@ -15,7 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""Sugar bundle file handler""" """Sugar bundle file handler
UNSTABLE.
"""
import os import os
import logging import logging

View File

@ -15,7 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""Sugar content bundles""" """Sugar content bundles
UNSTABLE.
"""
from ConfigParser import ConfigParser from ConfigParser import ConfigParser
import os import os

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import logging import logging
import time import time
from datetime import datetime from datetime import datetime

View File

@ -16,6 +16,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
UNSTABLE. Should be internal to the datastore module.
"""
import logging import logging
import dbus import dbus

View File

@ -16,6 +16,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import os import os
def is_emulator(): def is_emulator():

View File

@ -25,6 +25,7 @@ create a simple alert message.
self.add_alert(alert) self.add_alert(alert)
alert.show() alert.show()
STABLE.
""" """
# Copyright (C) 2007, One Laptop Per Child # Copyright (C) 2007, One Laptop Per Child
# #

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import time import time
import gobject import gobject

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import gobject import gobject
import gtk import gtk

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import gtk import gtk
import hippo import hippo

View File

@ -1,7 +1,3 @@
"""
A small fixed size picture, typically used to decorate components.
"""
# Copyright (C) 2006-2007 Red Hat, Inc. # Copyright (C) 2006-2007 Red Hat, Inc.
# #
# This library is free software; you can redistribute it and/or # This library is free software; you can redistribute it and/or
@ -19,6 +15,12 @@ A small fixed size picture, typically used to decorate components.
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
A small fixed size picture, typically used to decorate components.
STABLE.
"""
import re import re
import math import math
import logging import logging

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import gtk import gtk
from sugar.graphics.icon import Icon from sugar.graphics.icon import Icon

View File

@ -1,10 +1,3 @@
"""Notebook class
This class create a gtk.Notebook() widget supporting
a close button in every tab when the 'can-close-tabs' gproperty
is enabled (True)
"""
# Copyright (C) 2007, Eduardo Silva (edsiper@gmail.com) # Copyright (C) 2007, Eduardo Silva (edsiper@gmail.com)
# #
# This library is free software; you can redistribute it and/or # This library is free software; you can redistribute it and/or
@ -22,6 +15,15 @@ is enabled (True)
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""Notebook class
This class create a gtk.Notebook() widget supporting
a close button in every tab when the 'can-close-tabs' gproperty
is enabled (True)
STABLE.
"""
import gtk import gtk
import gobject import gobject

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import logging import logging
import gobject import gobject

View File

@ -16,6 +16,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import logging import logging
import gtk import gtk

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import gobject import gobject
_groups = {} _groups = {}

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import gtk import gtk
class Panel(gtk.VBox): class Panel(gtk.VBox):

View File

@ -16,6 +16,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import gtk import gtk
import gobject import gobject

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import math import math
import hippo import hippo

View File

@ -18,6 +18,8 @@
""" """
All the constants are expressed in pixels. They are defined for the XO screen All the constants are expressed in pixels. They are defined for the XO screen
and are usually adapted to different resolution by applying a zoom factor. and are usually adapted to different resolution by applying a zoom factor.
STABLE.
""" """
import os import os

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import gobject import gobject
import gtk import gtk

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import gtk import gtk
import gobject import gobject
import hippo import hippo

View File

@ -16,6 +16,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import logging import logging
import gtk import gtk

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import gtk import gtk
import gobject import gobject

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import gobject import gobject
import gtk import gtk

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import gobject import gobject
import gtk import gtk

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import random import random
colors = [ colors = [

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
STABLE.
"""
import os import os
import threading import threading
import urllib import urllib
@ -25,7 +29,6 @@ import gobject
import SimpleHTTPServer import SimpleHTTPServer
import SocketServer import SocketServer
__authinfos = {} __authinfos = {}
def _add_authinfo(authinfo): def _add_authinfo(authinfo):

View File

@ -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. # Copyright (C) 2006-2007, Red Hat, Inc.
# #
# This library is free software; you can redistribute it and/or # 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 # License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # 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".
"""

View File

@ -1,4 +1,3 @@
"""UI interface to an activity in the presence service"""
# Copyright (C) 2007, Red Hat, Inc. # Copyright (C) 2007, Red Hat, Inc.
# #
# This library is free software; you can redistribute it and/or # This library is free software; you can redistribute it and/or
@ -16,6 +15,11 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""UI interface to an activity in the presence service
STABLE.
"""
import logging import logging
import dbus import dbus

View File

@ -1,4 +1,3 @@
"""UI interface to a buddy in the presence service"""
# Copyright (C) 2007, Red Hat, Inc. # Copyright (C) 2007, Red Hat, Inc.
# #
# This library is free software; you can redistribute it and/or # This library is free software; you can redistribute it and/or
@ -16,11 +15,15 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""UI interface to a buddy in the presence service
STABLE.
"""
import gobject import gobject
import gtk import gtk
import dbus import dbus
class Buddy(gobject.GObject): class Buddy(gobject.GObject):
"""UI interface for a Buddy in the presence service """UI interface for a Buddy in the presence service

View File

@ -1,4 +1,3 @@
"""UI class to access system-level presence object"""
# Copyright (C) 2007, Red Hat, Inc. # Copyright (C) 2007, Red Hat, Inc.
# #
# This library is free software; you can redistribute it and/or # This library is free software; you can redistribute it and/or
@ -16,6 +15,11 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""UI class to access system-level presence object
STABLE.
"""
import logging import logging
import dbus import dbus

View File

@ -1,4 +1,3 @@
"""Subclass of TubeConnection that converts handles to Sugar Buddies"""
# Copyright (C) 2008 One Laptop Per Child # Copyright (C) 2008 One Laptop Per Child
# #
# This program is free software; you can redistribute it and/or modify # 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 # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # 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 ( from telepathy.constants import (
CHANNEL_GROUP_FLAG_CHANNEL_SPECIFIC_HANDLES) CHANNEL_GROUP_FLAG_CHANNEL_SPECIFIC_HANDLES)

View File

@ -16,6 +16,9 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
STABLE.
"""
__all__ = ('TubeConnection',) __all__ = ('TubeConnection',)
__docformat__ = 'reStructuredText' __docformat__ = 'reStructuredText'

View File

@ -1,4 +1,3 @@
"""User settings/configuration loading"""
# Copyright (C) 2006-2007, Red Hat, Inc. # Copyright (C) 2006-2007, Red Hat, Inc.
# #
# This library is free software; you can redistribute it and/or # This library is free software; you can redistribute it and/or
@ -16,6 +15,11 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""User settings/configuration loading.
DEPRECATED. We are using GConf now to store preferences.
"""
import gconf import gconf
import os import os
import logging import logging

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
UNSTABLE. Used only internally by jarabe.
"""
import os import os
from sugar import _sugarext from sugar import _sugarext

View File

@ -16,6 +16,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
UNSTABLE. We have been adding helpers randomly to this module.
"""
import os import os
import time import time
import sha import sha

View File

@ -15,6 +15,10 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA. # Boston, MA 02111-1307, USA.
"""
UNSTABLE. Used only internally by Activity and jarabe.
"""
import gtk import gtk
def get_activity_id(wnck_window): def get_activity_id(wnck_window):