debian/0000775000000000000000000000000012025553313007167 5ustar debian/screenlets.install0000664000000000000000000000101411531051351012716 0ustar debian/tmp/usr/bin debian/tmp/usr/share/screenlets debian/tmp/usr/lib debian/tmp/usr/share/screenlets-manager debian/tmp/usr/share/locale /desktop-menu/screenlets.svg /usr/share/icons/hicolor/scalable/apps/ /desktop-menu/screenlets-tray.svg /usr/share/icons/hicolor/scalable/apps/ /desktop-menu/screenlets-manager.desktop /usr/share/applications /desktop-menu/screenlets-daemon.desktop /usr/share/desktop-directories /debian/org.screenlets.ScreenletsDaemon.service /usr/share/dbus-1/services/ debian/prefix /etc/screenlets/ debian/README.Debian0000664000000000000000000000033411531321221011220 0ustar screenlets ========== Screenlets is an application which works better with real transparency. You can obtain this using a composite manager like : - xcompmgr - xfwm4 (>= 4.2.0) - compiz - metacity (>= 2.21.4) - mutter debian/screenlets.10000664000000000000000000000120711531046306011420 0ustar .TH SCREENLETS 1 "June 5, 2008" .SH NAME screenlets \- Widget-like mini-applications for GNOME .SH SYNOPSIS .B screenlets .SH DESCRIPTION \fBscreenlets\fP are small owner-drawn applications that can be described as "the virtual representation of things lying/standing around on your desk" : sticky notes, clocks, rulers, .... screenlets actually starts screenlets-manager, the GUI to manage all screenlets (see man screenlets-manager). .SH AUTHOR screenlets was written by Rico Pfaus . .PP This manual page was written by Julien Lavergne , for the Debian project (but may be used by others). debian/screenlets-debianizer.10000664000000000000000000000067411531046306013541 0ustar .TH SCREENLETS-DEBIANIZER 1 "October 29, 2010" .SH NAME screenlets-debianizer \- An application to debianize Screenlets .SH SYNOPSIS .B screenlets-debianizer .SH DESCRIPTION \fBscreenlets-debianizer\fP is a program for debianizing Screenlets, Widget- like mini-applications for GNOME. You can launch it with the directory of your screenlets to release it. .SH AUTHOR screenlets-packager was written by Guido Tabbernuk . debian/patches/0000775000000000000000000000000011716031345010620 5ustar debian/patches/90-disable-resize-grip.patch0000664000000000000000000000170311554607365015744 0ustar --- screenlets-0.1.3.orig/src/lib/__init__.py +++ screenlets-0.1.3/src/lib/__init__.py @@ -818,6 +818,10 @@ class Screenlet (gobject.GObject, Editab self.window.set_destroy_with_parent(True) self.window.resize(width, height) self.window.set_decorated(False) + try: # Workaround for Ubuntu Natty + self.window.set_property('has-resize-grip', False) + except TypeError: + pass self.window.set_app_paintable(True) # create pango layout, if active if uses_pango: @@ -1929,13 +1933,13 @@ class Screenlet (gobject.GObject, Editab def expose (self, widget, event): ctx = widget.window.cairo_create() - # clear context - self.clear_cairo_context(ctx) # set a clip region for the expose event ctx.rectangle(event.area.x, event.area.y, event.area.width, event.area.height) ctx.clip() - + # clear context + self.clear_cairo_context(ctx) + # scale context #ctx.scale(self.scale, self.scale) # call drawing method debian/patches/91_use_webkit.patch0000664000000000000000000002713511573755644014343 0ustar Description: Port from python-gtkmozembed to python-webkit Author: Chris Coulson Forwarded: no --- a/src/share/screenlets-manager/WebappScreenlet.py +++ b/src/share/screenlets-manager/WebappScreenlet.py @@ -22,59 +22,13 @@ import sys import os from screenlets import sensors -#########WORKARROUND FOR GTKOZEMBED BUG BY WHISE################ myfile = 'WebappScreenlet.py' -mypath = sys.argv[0][:sys.argv[0].find('myfile')].strip() -if sys.argv[0].endswith(myfile): # Makes Shure its not the manager running... - # First workarround - c = None - workarround = "python "+ sys.argv[0] + " &" - a = str(commands.getoutput('whereis firefox')).replace('firefox: ','').split(' ') - for b in a: - if os.path.isfile(b + '/run-mozilla.sh'): - c = b + '/run-mozilla.sh' - workarround = c + " " + sys.argv[0] + " &" - - if c == None: - # Second workarround - print 'First workarround didnt work let run a second manual workarround' - if str(sensors.sys_get_distrib_name()).lower().find('ubuntu') != -1: # Works for ubuntu 32 - workarround = "export LD_LIBRARY_PATH=/usr/lib/firefox \n export MOZILLA_FIVE_HOME=/usr/lib/firefox \n python "+ sys.argv[0] + " &" - elif str(sensors.sys_get_distrib_name()).lower().find('debian') != -1: # Works for debian 32 with iceweasel installed - workarround = "export LD_LIBRARY_PATH=/usr/lib/iceweasel \n export MOZILLA_FIVE_HOME=/usr/lib/iceweasel \n python " + sys.argv[0] + " &" - elif str(sensors.sys_get_distrib_name()).lower().find('suse') != -1: # Works for suse 32 with seamonkey installed - workarround = "export LD_LIBRARY_PATH=/usr/lib/seamonkey \n export MOZILLA_FIVE_HOME=/usr/lib/seamonkey \n python "+ sys.argv[0] + " &" - print 'Your running suse , make shure you have seamonkey installed' - elif str(sensors.sys_get_distrib_name()).lower().find('fedora') != -1: # Works for fedora 32 with seamonkey installed - workarround = "export LD_LIBRARY_PATH=/usr/lib/seamonkey \n export MOZILLA_FIVE_HOME=/usr/lib/seamonkey \n python "+ sys.argv[0] + " &" - print 'Your running fedora , make shure you have seamonkey installed' - - - if os.path.isfile("/tmp/"+ myfile+"running"): - os.system("rm -f " + "/tmp/"+ myfile+"running") - - else: - if workarround == "python "+ sys.argv[0] + " &": - print 'No workarround will be applied to your sistem , this screenlet will probably not work properly' - os.system (workarround) - fileObj = open("/tmp/"+ myfile+"running","w") #// open for for write - fileObj.write('gtkmozembed bug workarround') - - fileObj.close() - sys.exit() - - -else: - pass try: - import gtkmozembed + import webkit except: - if sys.argv[0].endswith(myfile):screenlets.show_error(None,"You need Gtkmozembed to run this Screenlet , please install it") - else: print "You need Gtkmozembed to run this Screenlet , please install it" -#########WORKARROUND FOR GTKOZEMBED BUG BY WHISE################ - - + if sys.argv[0].endswith(myfile):screenlets.show_error(None,"You need WebKit to run this Screenlet , please install it") + else: print "You need WebKit to run this Screenlet , please install it" class WebappScreenlet (screenlets.Screenlet): """Brings Web applications to your desktop""" @@ -93,21 +47,16 @@ class WebappScreenlet (screenlets.Screen screenlets.Screenlet.__init__(self, width=325, height=370,uses_theme=True, is_widget=False, is_sticky=True,draw_buttons=False, **keyword_args) - if hasattr(gtkmozembed, 'set_profile_path'): - gtkmozembed.set_profile_path(self.mypath,'mozilla') - else: - gtkmozembed.gtk_moz_embed_set_profile_path(self.mypath ,'mozilla') - - self.moz = gtkmozembed.MozEmbed() + self.view = webkit.WebView() self.win = gtk.Window() #self.win.maximize() - self.win.add(self.moz) + self.win.add(self.view) - self.moz.load_url(self.url) + self.view.load_uri(self.url) self.win.connect('destroy',self.quitall) self.win.connect("configure-event", self.configure) - self.moz.connect("title",self.update) + self.view.connect("notify::title",self.update) def configure (self, widget, event): @@ -133,7 +82,7 @@ class WebappScreenlet (screenlets.Screen def update(self,widget): - title = self.moz.get_title() + title = self.view.get_title() self.win.set_title(title) def quitall(self,widget): if len(self.session.instances) > 1: --- a/setup.py +++ b/setup.py @@ -81,7 +81,6 @@ files_list.insert(0, ('share/screenlets- 'src/share/screenlets-manager/KarambaScreenlet.py', 'src/share/screenlets-manager/widget.png', 'src/share/screenlets-manager/WidgetScreenlet.py', - 'src/share/screenlets-manager/prefs.js', 'src/share/screenlets-manager/webapp.png', 'src/share/screenlets-manager/WebappScreenlet.py', 'src/share/screenlets-manager/karamba.png'])) --- a/src/share/screenlets-manager/WidgetScreenlet.py +++ b/src/share/screenlets-manager/WidgetScreenlet.py @@ -22,60 +22,14 @@ import sys import os from screenlets import sensors - - -#########WORKARROUND FOR GTKOZEMBED BUG BY WHISE################ myfile = 'WidgetScreenlet.py' -mypath = sys.argv[0][:sys.argv[0].find(myfile)].strip() - -if sys.argv[0].endswith(myfile): # Makes Shure its not the manager running... - # First workarround - c = None - workarround = "python "+ sys.argv[0] + " &" - a = str(commands.getoutput('whereis firefox')).replace('firefox: ','').split(' ') - for b in a: - if os.path.isfile(b + '/run-mozilla.sh'): - c = b + '/run-mozilla.sh' - workarround = c + " " + sys.argv[0] + " &" - - - if c == None: - # Second workarround - print 'First workarround didnt work let run a second manual workarround' - if str(sensors.sys_get_distrib_name()).lower().find('ubuntu') != -1: # Works for ubuntu 32 - workarround = "export LD_LIBRARY_PATH=/usr/lib/firefox \n export MOZILLA_FIVE_HOME=/usr/lib/firefox \n python "+ sys.argv[0] + " &" - elif str(sensors.sys_get_distrib_name()).lower().find('debian') != -1: # Works for debian 32 with iceweasel installed - workarround = "export LD_LIBRARY_PATH=/usr/lib/iceweasel \n export MOZILLA_FIVE_HOME=/usr/lib/iceweasel \n python " + sys.argv[0] + " &" - elif str(sensors.sys_get_distrib_name()).lower().find('suse') != -1: # Works for suse 32 with seamonkey installed - workarround = "export LD_LIBRARY_PATH=/usr/lib/seamonkey \n export MOZILLA_FIVE_HOME=/usr/lib/seamonkey \n python "+ sys.argv[0] + " &" - print 'Your running suse , make shure you have seamonkey installed' - elif str(sensors.sys_get_distrib_name()).lower().find('fedora') != -1: # Works for fedora 32 with seamonkey installed - workarround = "export LD_LIBRARY_PATH=/usr/lib/seamonkey \n export MOZILLA_FIVE_HOME=/usr/lib/seamonkey \n python "+ sys.argv[0] + " &" - print 'Your running fedora , make shure you have seamonkey installed' - - if os.path.isfile("/tmp/"+ myfile+"running"): - os.system("rm -f " + "/tmp/"+ myfile+"running") - - else: - if workarround == "python "+ sys.argv[0] + " &": - print 'No workarround will be applied to your sistem , this screenlet will probably not work properly' - os.system (workarround) - fileObj = open("/tmp/"+ myfile+"running","w") #// open for for write - fileObj.write('gtkmozembed bug workarround') - - fileObj.close() - sys.exit() - - -else: - pass try: - import gtkmozembed + import webkit except: - if sys.argv[0].endswith(myfile):screenlets.show_error(None,"You need Gtkmozembed to run this Screenlet , please install it") - else: print "You need Gtkmozembed to run this Screenlet , please install it" -#########WORKARROUND FOR GTKOZEMBED BUG BY WHISE################ + if sys.argv[0].endswith(myfile):screenlets.show_error(None,"You need WebKit to run this Screenlet , please install it") + else: print "You need WebKit to run this Screenlet , please install it" + #Check for internet connection required for web widgets if sys.argv[0].endswith(myfile):# Makes Shure its not the manager running... @@ -97,7 +51,7 @@ class WidgetScreenlet (screenlets.Screen __desc__ = __doc__ started = False - moz = None + view = None box = None mypath = sys.argv[0][:sys.argv[0].find('WidgetScreenlet.py')].strip() url = mypath + 'index.html' @@ -130,12 +84,8 @@ class WidgetScreenlet (screenlets.Screen self.disable_option('scale') self.theme_name = 'default' self.box = gtk.VBox(False, 0) - if hasattr(gtkmozembed, 'set_profile_path'): - gtkmozembed.set_profile_path(self.mypath,'mozilla') - else: - gtkmozembed.gtk_moz_embed_set_profile_path(self.mypath ,'mozilla') - self.moz = gtkmozembed.MozEmbed() - self.box.pack_start(self.moz, False, False, 0) + self.view = webkit.WebView() + self.box.pack_start(self.view, False, False, 0) self.window.add(self.box) @@ -202,7 +152,7 @@ class WidgetScreenlet (screenlets.Screen #ctx.translate(0,10) self.draw_scaled_image(ctx,0,0,self.width,self.height,self.mypath + 'icon.png') - self.moz.shape_combine_mask(self.bgpbms,0,0) + self.view.shape_combine_mask(self.bgpbms,0,0) else: self.bgpb = gtk.gdk.pixbuf_new_from_file(self.mypath + 'icon.png').scale_simple(int(self.widget_width),int(self.widget_height),gtk.gdk.INTERP_HYPER) self.bgpbim, self.bgpbms = self.bgpb.render_pixmap_and_mask(alpha_threshold=128) @@ -211,7 +161,7 @@ class WidgetScreenlet (screenlets.Screen ctx.translate(0,10) self.draw_image(ctx,0,0,self.mypath + 'icon.png') - self.moz.shape_combine_mask(self.bgpbms,8,8) + self.view.shape_combine_mask(self.bgpbms,8,8) @@ -276,7 +226,7 @@ class WidgetScreenlet (screenlets.Screen self.url = self.widget_info[13:][:(len(self.widget_info)-24)] self.engine = 'google' - self.moz.load_url(self.url) + self.view.load_uri(self.url) print 'loading ' + self.url self.width = int(self.widget_width)+30 @@ -291,9 +241,9 @@ class WidgetScreenlet (screenlets.Screen self.box.set_uposition(-1,7) - self.moz.set_size_request(-1,int(self.widget_height)) + self.view.set_size_request(-1,int(self.widget_height)) else: - self.moz.set_size_request(-1,int(self.height)) + self.view.set_size_request(-1,int(self.height)) self.redraw_canvas() def on_mouse_down(self,event): --- a/src/share/screenlets-manager/screenlets-manager.py +++ b/src/share/screenlets-manager/screenlets-manager.py @@ -1058,7 +1058,6 @@ class ScreenletsManager(object): os.system('cp ' + screenlets.INSTALL_PREFIX + '/share/screenlets-manager/WebappScreenlet.py ' +DIR_USER + '/' + a + '/' + a + 'Screenlet.py') os.system('cp ' + screenlets.INSTALL_PREFIX + '/share/screenlets-manager/webapp.png ' +DIR_USER + '/' + a + '/icon.png') os.system('cp ' + screenlets.INSTALL_PREFIX + '/share/screenlets-manager/webapp.png ' +DIR_USER + '/' + a + '/themes/default') - os.system('cp ' + screenlets.INSTALL_PREFIX + '/share/screenlets-manager/prefs.js ' +DIR_USER + '/' + a + '/mozilla') enginecopy = open(DIR_USER + '/' + a + '/' + a + 'Screenlet.py','r') enginesave = enginecopy.read() @@ -1145,7 +1144,6 @@ class ScreenletsManager(object): os.system('cp ' + screenlets.INSTALL_PREFIX + '/share/screenlets-manager/WidgetScreenlet.py ' +DIR_USER + '/' + a + '/' + a + 'Screenlet.py') os.system('cp ' + screenlets.INSTALL_PREFIX + '/share/screenlets-manager/widget.png ' +DIR_USER + '/' + a + '/icon.png') os.system('cp ' + screenlets.INSTALL_PREFIX + '/share/screenlets-manager/widget.png ' +DIR_USER + '/' + a + '/themes/default') - os.system('cp ' + screenlets.INSTALL_PREFIX + '/share/screenlets-manager/prefs.js ' +DIR_USER + '/' + a + '/mozilla') enginecopy = open(DIR_USER + '/' + a + '/' + a + 'Screenlet.py','r') enginesave = enginecopy.read() enginesave = enginesave.replace('WidgetScreenlet',a + 'Screenlet') debian/prefix0000664000000000000000000000000511531046324010402 0ustar /usr debian/changelog0000664000000000000000000004241312025553313011045 0ustar screenlets (0.1.6-0ubuntu2) quantal; urgency=low * Drop python-evolution recommends. The latter will be removed as being deprecated. -- Didier Roche Mon, 17 Sep 2012 09:52:43 +0200 screenlets (0.1.6-0ubuntu1) precise; urgency=low * New upstream release. * debian/rules: - Remove permission fix, the file is not shipped anymore. * debian/copyright: - Fix formating. -- Julien Lavergne Sun, 12 Feb 2012 22:47:27 +0100 screenlets (0.1.4-0ubuntu2) oneiric; urgency=low * Add missing dependency on python-beautifulsoup (LP: #805198) -- Stefano Rivera Mon, 04 Jul 2011 20:12:34 +0200 screenlets (0.1.4-0ubuntu1) oneiric; urgency=low * New upstream release. * debian/patches: - 90-disable-resize-grip.patch : Drop, merged upstream. - 91_use_webkit.patch: Drop, merged upstream. * debian/rules: - Only fix the permission on 1 file. * debian/copyright: - Update copyright holders. -- Julien Lavergne Sat, 02 Jul 2011 11:06:42 +0200 screenlets (0.1.3-0ubuntu4) oneiric; urgency=low * Import webkit in a try/except block, as was done previously with gtkmozembed - update debian/patches/91_use_webkit.patch -- Chris Coulson Wed, 08 Jun 2011 21:30:12 +0100 screenlets (0.1.3-0ubuntu3) oneiric; urgency=low * Port from python-gtkmozembed to python-webkit. GtkMozEmbed has been abandoned upstream, and we are planning to drop xulrunner from the archive (see https://blueprints.launchpad.net/ubuntu/+spec/ desktop-o-mozilla-rapid-release-maintenance) - add debian/patches/91_use_webkit.patch - update debian/patches/series - change python-gtkmozembed dependency to python-webkit -- Chris Coulson Wed, 08 Jun 2011 00:34:07 +0100 screenlets (0.1.3-0ubuntu2) natty; urgency=low * debian/patches/90-disable-resize-grip.patch: - From upstream (rev 646), disable resize grip (LP: #717989) -- Julien Lavergne Sat, 23 Apr 2011 19:40:12 +0200 screenlets (0.1.3-0ubuntu1) natty; urgency=low * New upstream release, including only fixes and translations updates since last upload. * debian/watch: - Update to watch for all types of archives. * debian/control: - Add Recommends on screenlets-pack-basic. - Add Suggests on screenlets-pack-all. -- Julien Lavergne Fri, 25 Mar 2011 22:02:52 +0100 screenlets (0.1.2+bzr616-0ubuntu1) natty; urgency=low * New upstream snapshot. - Move individual screenlets into another source package. - Many bug fixes since 0.1.2. * Convert to source format 3.0 (quilt). * debian/patches - Removed all patches, merged upstream. * debian/rules: - Convert to dh7. - Don't remove copies of feedparser, not in this package. - Don't remove empty directory for the individual screenlets. * debian/screenlets.install: - Update installed files. * debian/compat - Bump to level 7. * debian/control: - Rewrite Depends and build-depends. * README.Debian : - Mention mutter as a composite manager. * debian/README.source: - Remove the README.source. * debian/screenlets.manpages: - Add the manpages. * debian/copyright: - Rewrite with dep5 style. -- Julien Lavergne Thu, 24 Feb 2011 00:51:35 +0100 screenlets (0.1.2-7ubuntu2) maverick; urgency=low * debian/patches/21-return-ip-address.patch: - Fix screenlets.sensors.net_get_ip() to get the IP address. Thanks Michel Leunen for the patch. (LP: #618868) -- Julien Lavergne Sat, 21 Aug 2010 18:01:52 +0200 screenlets (0.1.2-7ubuntu1) lucid; urgency=low * Updated tomboy notes folder path. (LP: #477017) -- Frank Cheung Sun, 08 Nov 2009 13:18:33 +0000 screenlets (0.1.2-7) unstable; urgency=medium * Urgency to medium to fix RC bug. * debian/rules: Really apply patches to fix the segfaults again. (Closes: #536392) -- Julien Lavergne Fri, 07 Aug 2009 23:53:44 +0200 screenlets (0.1.2-6) unstable; urgency=low [ Julien Lavergne ] * debian/rules: Replace simple-patchsys by quilt. * debian/control: - Build-depends on quilt. - Remove X{B,S}-Python-Version. - Bump Standards-Version to 3.8.2 (no change needed). * debian/pyversions : Add compatible versions. * debian/patches: - 13-opacity-option.patch: Disable the opacity option if the screen is not composited (Closes: #518179). - 14-configuration-save.patch: From Ubuntu, save and restore the configuration file in some cases. (LP: #345359) - 15-nowplaying-mpd-try.patch: Try to connect to mpd instead of forcing the connection. (LP: #269256) - 16-clearweather-catch-connection-error.patch: From Ubuntu, catch connection error on update (thanks Kjell Braden for the patch). (LP: #264809) - 17-nowplaying-disable-amarok.patch: Disable Amarok 1.X support. - 18-nowplaying-rb-playing.patch: Avoid Dbus exception when checking if the player is playing. - 19-remove-autostart-output.patch: Remove output when screenlets are autostarted. (LP: #318248) - Update patches to apply with quilt. * debian/README.source: Replace by the quilt one. [ Siegfried-Angel Gevatter Pujals ] * debian/screenlets.install: - Install the available translations (usr/share/locale) (LP: #386878). -- Julien Lavergne Sat, 20 Jun 2009 16:33:51 +0200 screenlets (0.1.2-5) unstable; urgency=medium * Urgency to medium to fix RC bug. * debian/patches: Update description for all patches. * debian/patches/12-new-class-creation.patch: - Use new-style class creation. This should avoid some segfaults (Closes: #519664). * debian/control: - Remove python-dcop from suggests. - Bump the need of a compositor to recommends, because it's needed to deal with transparency. - Following python-gnome2-desktop split. + Remove depends on python-gnome2-desktop + Add python-rsvg as depends. + Add python-wnck as depends, needed by screenlets-manager. + Add python-evolution as recommends, only needed by the EvolutionContacts Screenlets. + Add python-gnomekeyring as recommends, as it's an optional feature. - Bump Standards-Version to 3.8.1 (no change needed). -- Julien Lavergne Mon, 13 Apr 2009 21:48:26 +0200 screenlets (0.1.2-4) unstable; urgency=low [ Julien Lavergne ] * debian/10-ImageMenuItem-update.patch - Replace get_children() by get_child() and get_image() following pygtk modifications. * debian/11-xfce-wallpaper-setting.patch - Add a xfconf-query call to update desktop wallpaper (Closes: #497222). * debian/control - Suggest xfconf for WallpaperClock under XFCE, require for 11-xfce-wallpaper-setting.patch. - Switch from python-central to python-support. - Set XS-Python-Version to >= 2.4 - Remove duplicated section in binary. * debian/copyright - Replace (C) by ©. * debian/pycompat: Remove. * debian/rules: Switch from pycentral to pysupport. [ Sandro Tosi ] * debian/control - switch Vcs-Browser field to viewsvn -- Julien Lavergne Thu, 12 Mar 2009 00:24:34 +0100 screenlets (0.1.2-3) unstable; urgency=low * debian/patches - 04-install-wallclock-in-home.patch : install WallpaperClock in ~/.screenlets instead of /usr/share (Closes: #497127). - 05-places-no-bookmark.patch : don't crash Places Screenlets if there is no bookmark. - 06-main-menu-no-bookmark.patch : don't crash Main Menu Screenlets if there is no bookmark. * debian/rules - Remove feedparser.py in FeedReader Screenlet, already in python-feedparser. -- Julien Lavergne Sun, 28 Sep 2008 01:29:35 +0200 screenlets (0.1.2-2) unstable; urgency=low * debian/install - Install prefix in /etc/screenlets/ (Closes: #488953) * debian/patches/01-scripts-cleanup.patch - Use "\n" to print correctly script output (Closes: #488952) * debian/rules - Only use uscan in get-orig-source. -- Julien Lavergne Thu, 03 Jul 2008 23:21:09 +0200 screenlets (0.1.2-1) unstable; urgency=low * New upstream release. * debian/control - Add python-imaging as Recommends for WallpaperClockScreenlet Screenlets. - Bump Standards-Version to 3.8.0 (no change needed). - Replace python-gnome2-extras with python-gtkmozembed, screenlets only use this module. (Closes: #485296) * debian/patches - 01-scripts-cleanup.patch: Update. - 02-fix-acpi-crash.patch: Add exception in ACPI Screenlets when there is no battery. - 03-fix-wallpaperclock-location.patch: Test WallpaperClock location before assignation. - 02_RSS_fix_import.patch: removed, merged upstream. - 03-sticky-on-XFCE.patch: removed, merged upstream. - 04-fix-clock-offset.patch: removed, merged upstream. - 05-disable-Numeric-import.patch: removed, merged upstream. * debian/rules - Don't remove empty directory, fixed upstream. - Install screenlets.1 and screenlets-daemon.1 man pages. - Add a get-orig-source to repack the tarball. - Delete empty directory in WallpaperClockScreenlet. * debian/copyright - Update Authors and Copyright. * debian/watch - Update to upload bz2 tarball. * Add screenlets.1 and screenlets-daemon.1 man pages. * Improve screenletsd.1, screenlets-manager.1 and screenlets-packager.1 -- Julien Lavergne Wed, 04 Jun 2008 21:39:02 +0200 screenlets (0.1.1-2) unstable; urgency=low * debian/patches - 02_RSS_fix_import.patch : Don't crash the manager if python-feedparser is not installed. - 03-sticky-on-XFCE.patch : Keep sticky mode on restart for XFCE. Thanks Luca Niccoli for the patch (Closes: #480672) - 04-fix-clock-offset.patch : From upstream, update date of Clock Screenlet at midnight, even if there is an offset. (Closes: #458788) - 05-disable-Numeric-import.patch : From upstream, disable import Numeric, not necessary (Closes: #478462) * debian/control - Drop Depends on python-numeric. -- Julien Lavergne Wed, 28 May 2008 00:01:13 +0200 screenlets (0.1.1-1) unstable; urgency=low * New upstream release (Closes: #477313) * debian/control - Add evolution as Suggests for EvolutionContacts Screenlet. - Add tomboy as Suggests for Tomboy Screenlet. - Add gnome-orca as Suggests for Speech Screenlets. * debian/copyright - Update with new Screenlets. * debian/rules - Remove binary-predeb rules for *.conf and RadioScreenlet.py, fixed upstream. * debian/patches/01-scipts-cleanup.patch - Update. -- Julien Lavergne Thu, 08 May 2008 11:34:56 +0200 screenlets (0.1-1) unstable; urgency=low * New upstream release (Closes: #474510) * debian/patches - 02-Clean-Desktop.patch: removed, merged upstream. - 03-fix-menu-icon.patch: removed, merged upstream. - 05-clean-shebang.patch: removed, merged upstream. - 06-use-default-browser.patch: removed, merged upstream. - 01-scripts-cleanup.patch: Updated. * debian/control - Drop Build-Depends for the documentation. - Add python-gnome2-extras and iceweasel as Recommends for Web Screenlets. * debian/rules - Don't build documentation, included upstream. - Clean locale directory. - Fix 755 mode for png files. * debian/screenlets-doc.install - Update location of the documentation. * debian/copyright - Update to new Copyright for some screenlets. -- Julien Lavergne Wed, 02 Apr 2008 19:42:37 +0200 screenlets (0.0.14-1) unstable; urgency=medium * New upstream release * Urgency to medium to fix RC bug (472024) * debian/rules - Remove rmdir for usr/lib, fixed with python-central 0.6 (Closes: #472024) - Move rm for feedparser.py to install/screenlets. - Add PYTHONPATH to build the documentation. * debian/patches - 01-scripts-cleanup.patch: delete bashism (Closes: #472897) - 05-clean-shebang.patch: remove useless shebang. - 06-use-default-browser.patch: Use default browser instead of Firefox. - 04-fix-crash-acpi.patch: removed, merged upstream. - 10-problem-on-create-tmpfile.patch: removed, merged upstream. * debian/control - Bump python-central Build-Depends to >= 0.6 - Remove screenlets Build-Depends. - Add screenlets binary Depends to Build-Depends for the documentation. - Remove python-imaging as Recommends, SlideShow now doesn't use it. * debian/copyright - Update Copyright with new screenlets. * debian/watch - Switch to http, require by Launchpad. -- Julien Lavergne Tue, 01 Apr 2008 20:38:48 +0200 screenlets (0.0.12-1) unstable; urgency=low * New upstream release. * debian/control - Add screenlets-doc binary. - Move python-central to Build-Depends-Indep. - Add python-epydoc, doc-base, python-docutils and screenlets Build-Depends-Indep to build API documentation. - Add python-imaging as Recommends for SlideShow Screenlets. - Add python-feedparser as Recommends for ClearRSS Screenlets. - Add python-gmenu as Recommends for MainMenu Screenlet. - Add python-numeric as Recommends for CleanWeather Screenlet. - Add python-chardet as Recommends for ClearRSS Screenlet. - Wrap Build Depends and Depends. - Add Suggest metacity (>= 2.21.4) which support composite. - Add Suggest python-dcop for the NowPlaying Screenlets. - Mention in the description that Screenlets work also on non-composited desktop. * debian/copyright - Update upstream authors. - Update Copyright and Licences. * debian/screenlets-doc.doc-base.screenlets - Add doc-base install file. * debian/rules - Build API docs. - Add a binary-predeb rule to delete empty /usr/lib folder and bad theme folder. - Remove feedparser.py in ClearRSS Screenlet, already in python-feedparser. - Remove other rm and rmdir commands, handle by *.install files. - Fix 755 mode for conf files. - Add screenletsd.1 in man pages. * debian/screenlets.install - Rename install to screenlets.install to add screenlets-doc package. - Install D-Bus service properly. * debian/screenlets-doc.install - Install docs files. * debian/screenlets.link - Rename links to screenlets.links. * debian/patches - Drop 09-delete-example-files.patch, handle by *.install files. - Drop 01-Install-to-usr-directory.patch, merged upstream. - Drop 04-Fix-python-heritage-empaty.patch, merged upstream. - Drop 05-Test-in-home-dir.patch, merged upstream. - Drop 06-Fix-error-type-pager-windowslist.patch, merged upstream. - Drop 07-Add-python-to-autostart-files.patch, merged upstream. - Drop 03-Clean-hashbang-shebang.patch: merged upstream. - 01-scripts-cleanup.patch: Replace bash by sh, add exec and python in some commands. - 02-Clean-Desktop.patch: Updated. - 03-fix-menu-icon.patch: Fix "non icon" bug in contextual menu. * debian/watch - Update to the new location of upstream tarball. * Debian/README - Update with the non-composite support. -- Julien Lavergne Wed, 12 Mar 2008 22:00:30 +0100 screenlets (0.0.10-3) unstable; urgency=low [Marco Rodrigues] * Update Standards-Version to 3.7.3. [Julien Lavergne] * debian/patches: - 10-Import-screenlets-before-gtk.patch : Fix crash on startup with import gtk module after screenlets module (Closes: #455219) * debian/rules: - Delete empty /usr/lib directory -- Julien Lavergne Mon, 17 Dec 2007 00:14:20 +0100 screenlets (0.0.10-2) unstable; urgency=low * debian/control : change priority to optional * debian/install - add dbus service for screenlets-daemon (Thanks Niv Sardi) - install svg image in /usr/share/icons/hicolor/scalable/apps/ * debian/screenlets.links : add link for the new icon path * debian/rules : add upstream changelog * debian/patches - 08-add_timezone_support.patch : Add timezone support for ClockScreenlets (Thanks Niv Sardi) - 09-delete-example-files.patch : Delete examples until copyright fix * debian/screenlets-manager.1 & debian/screenlets-packager.1 : Clean man pages -- Julien Lavergne Mon, 26 Nov 2007 23:50:01 +0100 screenlets (0.0.10-1) unstable; urgency=low [ Julien Lavergne ] * Initial release (Closes: #446783) * debian/patches/01-Install-to-usr-directory.patch : Install in /usr instead of /usr/local * debian/patches/02-Clean-Desktop.patch : Delete "Encoding", Exec screenlets-manager bin, add Type=Application to screenlets.daemon, move screenlets-manager to Utility. * debian/patches/04-Fix-python-heritage-empaty.patch : Delete the () in python class. * debian/patches/05-Test-in-home-dir.patch : test if $HOME/.config/Screenlets exit or create it, and create autostart file. * debian/patches/06-Fix-error-type-pager-windowslist.patch : Fix TypeError in active_window_changed() when Pager and Windowlist screenlets are running, and fix crash with __setattr__ * debian/patches/07-Add-python-to-autostart-files.patch : add "python" to autostart files to make sure they start at login. [ Kumar Appaiah ] * debian/patches/03-Clean-hashbang-shebang.patch : Remove shebang and use #!/bin/sh. -- Julien Lavergne Fri, 19 Oct 2007 16:52:50 +0200 debian/screenlets-manager.10000664000000000000000000000110711531046306013027 0ustar .TH SCREENLETS-MANAGER 1 "July 16, 2007" .SH NAME screenlets-manager \- An application to manage Screenlets .SH SYNOPSIS .B screenlets-manager .SH DESCRIPTION \fBscreenlets-manager\fP is a preferences GUI for managing Screenlets, Widget-like mini-applications for GNOME. You can launch or stop one, make them start on login, install or uninstall others screenlets. .SH AUTHOR screenlets-manager was written by Rico Pfaus . .PP This manual page was written by Julien Lavergne , for the Debian project (but may be used by others). debian/screenlets-doc.doc-base.screenlets0000664000000000000000000000133611531046324015651 0ustar Document: screenlets Title: Screenlets API Reference Author: Rico Pfaus Abstract: Screenlets are small owner-drawn applications (written in Python) that can be described as "the virtual representation of things lying/standing around on your desk". Sticknotes, clocks, rulers, ... the possibilities are endless. The goal of the Screenlets base-classes is to simplify the creation of fully themable mini-apps that each solve basic desktop-work-related needs and generally improve the usability and eye-candy of the modern composited Linux-desktop. This manual describe the API to create new screenlets. Section: Games/Toys Format: HTML Index: /usr/share/doc/screenlets/API/index.html Files: /usr/share/doc/screenlets/API/*.html debian/rules0000775000000000000000000000037211716032103010244 0ustar #!/usr/bin/make -f #export DH_VERBOSE=1 %: dh $@ override_dh_auto_install: dh_auto_install --buildsystem=python_distutils override_dh_clean: rm -fR build/locale dh_clean get-orig-source: dh_testdir uscan --force-download --verbose --repack debian/menu0000664000000000000000000000023511531046324010056 0ustar ?package(screenlets):\ needs="X11"\ section="Games/Toys"\ title="Screenlets"\ command="screenlets-manager"\ hints="Gnome" debian/control0000664000000000000000000000537612025553265010613 0ustar Source: screenlets Section: gnome Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Julien Lavergne Uploaders: Python Applications Packaging Team Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.3.5-11) Build-Depends-Indep: python-support (>= 0.6.0), doc-base Standards-Version: 3.8.2 Homepage: http://screenlets.org Vcs-Svn: svn://svn.debian.org/python-apps/packages/screenlets/trunk Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/screenlets/trunk/ Package: screenlets Architecture: all Depends: ${misc:Depends}, ${python:Depends}, python-gobject, python-gtk2, python-gnome2, python-dbus, python-cairo, python-wnck | python-gnome2-desktop, python-gst0.10, python-xdg, python-gconf, python-beautifulsoup Recommends: python-webkit, python-rsvg | python-gnome2-desktop, metacity (>= 2.21.4) | xcompmgr | compiz | xfwm4 (>= 4.2) | mutter, screenlets-pack-basic Suggests: screenlets-pack-all Description: Widget-like mini-applications for GNOME Screenlets are small owner-drawn applications (written in Python) that can be described as "the virtual representation of things lying/standing around on your desk". Sticky notes, clocks, rulers, ... the possibilities are endless. . The goal of the Screenlets base-classes is to simplify the creation of fully themable mini-apps that each solve basic desktop-work-related needs and generally improve the usability and eye-candy of the modern composited Linux-desktop. . Features: * Real applications, no HTML-"widgets" * Easy to use, easy to develop * Full compositing support * Works with any composited X desktop (compiz, xfce4, ...) * Works also on non-composited desktop * Included ability to apply themes (SVG, PNG or mixed) * Fully scalable when using SVGs * Embedded drag&drop-support * Automated storing of options (using ini or GConf) * Controllable through customizable D-Bus service * Can be used together with compiz' widget-plugin to create a Dashboard-like feature as seen on OS X * Uses Cairo and GTK2 for drawing and windowing Package: screenlets-doc Section: doc Architecture: all Depends: screenlets, ${misc:Depends} Description: Widget-like mini-applications for GNOME - Documentation package Screenlets are small owner-drawn applications (written in Python) that can be described as "the virtual representation of things lying/standing around on your desk". Sticky notes, clocks, rulers, ... the possibilities are endless. . This package contains the API documentation. debian/org.screenlets.ScreenletsDaemon.service0000664000000000000000000000015511531046324016741 0ustar [D-BUS Service] Name=org.screenlets.ScreenletsDaemon Exec=/usr/share/screenlets-manager/screenlets-daemon.py debian/screenlets-doc.install0000664000000000000000000000005511531046324013471 0ustar /docs/epydoc/* /usr/share/doc/screenlets/API debian/screenletsd.10000664000000000000000000000154111531046306011565 0ustar .TH SCREENLETSD 1 "February 2, 2008" .SH NAME screenletsd \- A command line interface for Screenlets .SH SYNOPSIS .B screenletsd [\fICOMMAND \fR] [\fIOPTIONS\fR] [\fISCREENLETS_NAME\fR] .SH COMMAND .TP .B \-\-gui Open up the Graphical Interface .TP .B \-\-cli Use the Command Line interface .SH OPTIONS (for command --cli only) .TP .B run Run the Screenlet .TP .B au Add the Screenlet to your autostart list .SH DESCRIPTION \fBscreenletsd\fP is command line interface for Screenlets, Widget-like mini-applications for GNOME. You can interact with Screenlets like launch one, or add one to your autostart list. It can also start the graphical interface. .SH AUTHOR screenletsd was written by Rico Pfaus . .PP This manual page was written by Julien Lavergne , for the Debian project (but may be used by others). debian/screenlets.links0000664000000000000000000000012611531046324012377 0ustar /usr/share/icons/hicolor/scalable/apps/screenlets.svg /usr/share/icons/screenlets.svg debian/copyright0000664000000000000000000006570611716034427011146 0ustar Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=166 Upstream-Name: screenlets Upstream-Contact: Screenlets Team Source: https://code.launchpad.net/~screenlets-dev/screenlets/trunk Files: * Copyright: 2007 Rico Pfaus Helder Fraga Natan Yellin (Aantn) Vasek Potocek 2007 2008 Pavel Panchekha 2008 Przemyslaw Firszt (pefi) 2009-2011 Martin Owens (DoctorMO) License: GPL-3 This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License version 3, as published by the Free Software Foundation. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, SATISFACTORY QUALITY, 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, see . . On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-3’. Files: src/lib/plugins/iCal.py Copyright: Jiva DeVoe License: BSD Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the University nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Files: src/lib/plugins/AmazonCoverArtSearch.py src/lib/plugins/Loader.py Copyright: 2006 - Gareth Murphy, Martin Szulecki 2006 - Jonathan Matthew License: GPL-2+ 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, 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. Files: src/lib/plugins/mpdclient2.py Copyright: 2005 - Nick Welch License: Public Domain The person or persons who have associated work with this document (the "Dedicator" or "Certifier") hereby either (a) certifies that, to the best of his knowledge, the work of authorship identified is in the public domain of the country from which the work is published, or (b) hereby dedicates whatever copyright the dedicators holds in the work of authorship identified below (the "Work") to the public domain. A certifier, moreover, dedicates any copyright interest he may have in the associated work, and for these purposes, is described as a "dedicator" below. . A certifier has taken reasonable steps to verify the copyright status of this work. Certifier recognizes that his good faith efforts may not shield him from liability if in fact the work certified is not in the public domain. . Dedicator makes this dedication for the benefit of the public at large and to the detriment of the Dedicator's heirs and successors. Dedicator intends this dedication to be an overt act of relinquishment in perpetuity of all present and future rights under copyright law, whether vested or contingent, in the Work. Dedicator understands that such relinquishment of all rights includes the relinquishment of all rights to enforce (by lawsuit or otherwise) those copyrights in the Work. . Dedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived. Files: *.svg *.png Copyright: Rico Pfaus . Helder Fraga. Natan Yellin (Aantn) License: CC-BY-SA-3 THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. . BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. . 1. Definitions . 1. "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License. . 2. "Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined below) for the purposes of this License. . 3. "Creative Commons Compatible License" means a license that is listed at http://creativecommons.org/compatiblelicenses that has been approved by Creative Commons as being essentially equivalent to this License, including, at a minimum, because that license: (i) contains terms that have the same purpose, meaning and effect as the License Elements of this License; and, (ii) explicitly permits the relicensing of adaptations of works made available under that license under this License or a Creative Commons jurisdiction license with the same License Elements as this License. . 4. "Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership. . 5. "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike. . 6. "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License. . 7. "Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast. . 8. "Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work. . 9. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. . 10. "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images. . 11. "Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium. . 2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws. . 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: . 1. to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections; . 2. to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified."; . 3. to Distribute and Publicly Perform the Work including as incorporated in Collections; and, 4. to Distribute and Publicly Perform Adaptations. 5. For the avoidance of doubt: 1. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; 2. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and, 3. Voluntary License Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License. . The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved. . 4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: . 1. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(c), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(c), as requested. . 2. You may Distribute or Publicly Perform an Adaptation only under the terms of: (i) this License; (ii) a later version of this License with the same License Elements as this License; (iii) a Creative Commons jurisdiction license (either this or a later license version) that contains the same License Elements as this License (e.g., Attribution-ShareAlike 3.0 US)); (iv) a Creative Commons Compatible License. If you license the Adaptation under one of the licenses mentioned in (iv), you must comply with the terms of that license. If you license the Adaptation under the terms of any of the licenses mentioned in (i), (ii) or (iii) (the "Applicable License"), you must comply with the terms of the Applicable License generally and the following provisions: (I) You must include a copy of, or the URI for, the Applicable License with every copy of each Adaptation You Distribute or Publicly Perform; (II) You may not offer or impose any terms on the Adaptation that restrict the terms of the Applicable License or the ability of the recipient of the Adaptation to exercise the rights granted to that recipient under the terms of the Applicable License; (III) You must keep intact all notices that refer to the Applicable License and to the disclaimer of warranties with every copy of the Work as included in the Adaptation You Distribute or Publicly Perform; (IV) when You Distribute or Publicly Perform the Adaptation, You may not impose any effective technological measures on the Adaptation that restrict the ability of a recipient of the Adaptation from You to exercise the rights granted to that recipient under the terms of the Applicable License. This Section 4(b) applies to the Adaptation as incorporated in a Collection, but this does not require the Collection apart from the Adaptation itself to be made subject to the terms of the Applicable License. . 3. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and (iv) , consistent with Ssection 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4(c) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties. . 4. Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise. . 5. Representations, Warranties and Disclaimer . UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. . 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. . 7. Termination . 1. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. . 2. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. . 8. Miscellaneous . 1. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. . 2. Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. . 3. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. . 4. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. . 5. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. . 6. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law. . Creative Commons Notice . Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. . Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of the License. debian/watch0000664000000000000000000000015611543201347010223 0ustar version=3 https://launchpad.net/screenlets/+download http://launchpad.net/screenlets/.*/screenlets-(.+).tar.* debian/screenlets.manpages0000664000000000000000000000023411531046306013052 0ustar debian/screenlets.1 debian/screenletsd.1 debian/screenlets-daemon.1 debian/screenlets-debianizer.1 debian/screenlets-manager.1 debian/screenlets-packager.1 debian/compat0000664000000000000000000000000211531051632010363 0ustar 7 debian/screenlets-packager.10000664000000000000000000000105611531046306013175 0ustar .TH SCREENLETS-PACKAGER 1 "July 16, 2007" .SH NAME screenlets-packager \- An application to package Screenlets .SH SYNOPSIS .B screenlets-packager .SH DESCRIPTION \fBscreenlets-packager\fP is a program for packaging Screenlets, Widget-like mini-applications for GNOME. You can launch it with the directory of your screenlets to release it. .SH AUTHOR screenlets-packager was written by Rico Pfaus . .PP This manual page was written by Julien Lavergne , for the Debian project (but may be used by others). debian/screenlets-daemon.10000664000000000000000000000070611531046306012664 0ustar .TH SCREENLETS-DAEMON 1 "June 5, 2008" .SH NAME screenlets-daemon \- An application to track activity of Screenlets .SH SYNOPSIS .B screenlets-daemon .SH DESCRIPTION \fBscreenlets-daemon\fP is a program which tracks Screenlets activity. .SH AUTHOR screenlets-manager was written by Rico Pfaus . .PP This manual page was written by Julien Lavergne , for the Debian project (but may be used by others). debian/source/0000775000000000000000000000000011716031345010471 5ustar debian/source/format0000664000000000000000000000001411531047715011702 0ustar 3.0 (quilt) debian/pyversions0000664000000000000000000000000511531046324011326 0ustar 2.4- debian/pycompat0000664000000000000000000000000211531046324010736 0ustar 2