Source code for stoqlib.gui.utils.help
# -*- Mode: Python; coding: utf-8 -*-
# vi:si:et:sw=4:sts=4:ts=4
##
## Copyright (C) 2011-2012 Async Open Source <http://www.async.com.br>
## All rights reserved
##
## 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., or visit: http://www.gnu.org/.
##
## Author(s): Stoq Team <stoq-devel@async.com.br>
##
""" Showing help. """
import os
import glib
import gtk
from stoqlib.lib.kiwilibrary import library
from stoqlib.gui.base.dialogs import get_current_toplevel
from stoqlib.gui.utils.openbrowser import open_browser
import stoq
[docs]def show_contents(screen=None):
show_section('', screen=screen)
[docs]def show_section(section, screen=None):
if library.uninstalled:
root = library.get_root()
uri = os.path.join(root, 'docs', 'manual', 'pt_BR')
if section != '':
uri += '/' + section + '.page'
else:
if library.get_resource_exists('stoq', 'docs', 'manual', 'pt_BR'):
manual_dir = library.get_resource_filename(
'stoq', 'docs', 'manual', 'pt_BR')
if section:
uri = os.path.join(manual_dir, section + '.page')
else:
uri = manual_dir
else:
uri = 'stoq'
if section:
uri += '?' + section
if not screen:
toplevel = get_current_toplevel()
if toplevel:
screen = toplevel.get_screen()
try:
gtk.show_uri(screen, 'ghelp:' + uri, gtk.get_current_event_time())
except glib.GError:
open_browser('http://doc.stoq.com.br/manual/%s/%s.html' % (
stoq.short_version,
section or 'index', ), screen)