~ubuntu-branches/ubuntu/wily/gnome-applets/wily

« back to all changes in this revision

Viewing changes to invest-applet/invest/help.py

  • Committer: Package Import Robot
  • Author(s): Dmitry Shachnev
  • Date: 2014-11-19 19:57:51 UTC
  • mfrom: (1.10.22)
  • Revision ID: package-import@ubuntu.com-20141119195751-gqirgm99dewik39n
Tags: 3.14.0-1~svn1
* New upstream release.
* Update (build-)dependencies for new version.
  - Require new GLib and libpanel-applet.
  - Switch from Python 2 to Python 3.
  - Drop GConf.
* Remove --enable-mixer-applet configure flag.
* Remove obsolete gnome-applets.gconf-defaults file.
* Update applet list in package description.
* Move Python modules to a private location.
* Use dh_python3.
* Use NEWS file as upstream changelog.
* Bump Standards-Version to 3.9.6, no changes needed.
* Update Homepage URL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
from gi.repository import Gtk, Gdk
3
3
 
4
4
def show_help():
5
 
        Gtk.show_uri(None, "ghelp:invest-applet", Gdk.CURRENT_TIME)
 
5
        Gtk.show_uri(None, "help:invest-applet", Gdk.CURRENT_TIME)
6
6
 
7
7
def show_help_section(id):
8
 
        Gtk.show_uri(None, "ghelp:invest-applet?%s" % id, Gdk.CURRENT_TIME)
 
8
        Gtk.show_uri(None, "help:invest-applet/%s" % id, Gdk.CURRENT_TIME)