# -*- coding: utf-8 -*- # Copyright (C) 2005 Lateef Alabi-Oki # # This file is part of Scribes. # # Scribes 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. # # Scribes 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 Scribes; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """ General information about Scribes. @author: Lateef Alabi-Oki @organiation: The Scribes Project @copyright: Copyright © 2005 Lateef Alabi-Oki @license: GNU GPLv2 or Later @contact: mystilleef@gmail.com """ from os import environ from dbus import SessionBus, Interface, glib from gobject import MainLoop mainloop = MainLoop() session_bus = SessionBus() dbus_proxy_obj = session_bus.get_object('org.freedesktop.DBus', '/org/freedesktop/DBus') dbus_iface = Interface(dbus_proxy_obj, 'org.freedesktop.DBus') home_folder = environ["HOME"] desktop_folder = home_folder + "/Desktop" metadata_folder = home_folder + "/.gnome2/scribes/" home_plugin_folder = metadata_folder + "plugins" name = "scribes" scribes_prefix = "@scribes_prefix@" scribes_executable_path = scribes_prefix + "/bin" scribes_executable_client = scribes_executable_path + "/.scribesclient" scribes_executable_server = scribes_executable_path + "/scribes" scribes_data_path = "@scribes_data_path@" scribes_sysconfdir = "@scribes_sysconfdir@" scribes_data_folder = scribes_data_path + "/scribes" core_plugin_folder = scribes_data_folder + "/plugins" python_path = "@python_path@" version = "@VERSION@" author = ["Author:", "\tLateef Alabi-Oki \n", "Contributors:", "\tHerman Polloni ", "\tJames Laver ", "\tHugo Madureira ", "\tJustin Joy ", "\tFrank Hale ", "\tHideo Hattori ", "\tMatt Murphy ", "\tChris Wagner ", "\tShawn Bright ", "\tPeter Magnusson ", "\tJakub Sadowinski ", ] documenters = ["Lateef Alabi-Oki "] artists = ["Alexandre Moore ", "Panos Laganakos "] website = "http://scribes.sourceforge.net/" copyrights = "Copyright © 2005 Lateef Alabi-Oki" translators = "Brazilian Portuguese translation by Leonardo F. Fontenelle \ \nRussian translation by Paul Chavard \ \nGerman translation by Maximilian Baumgart \ \nGerman translation by Steffen Klemer \nItalian translation by Stefano Esposito \ \nFrench translation by Gautier Portet \ \nDutch translation by Filip Vervloesem \ \ \nSwedish translation by Daniel Nylander "