1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# -*- 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
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 = "/usr"
scribes_executable_path = scribes_prefix + "/bin"
scribes_executable_client = scribes_executable_path + "/.scribesclient"
scribes_executable_server = scribes_executable_path + "/scribes"
scribes_data_path = "/usr/share"
scribes_sysconfdir = "/usr/etc"
scribes_data_folder = scribes_data_path + "/scribes"
core_plugin_folder = scribes_data_folder + "/plugins"
python_path = "/usr/lib/python2.5/site-packages"
version = "0.3.4-dev3"
author = ["Author:", "\tLateef Alabi-Oki <mystilleef@gmail.com>\n",
"Contributors:",
"\tHerman Polloni <hpolloni@gmail.com>",
"\tJames Laver <james.laver@gmail.com>",
"\tHugo Madureira <madureira.hugo@gmail.com>",
"\tJustin Joy <mavx21@gmail.com>",
"\tFrank Hale <frankhale@gmail.com>",
"\tHideo Hattori <dfgas409@kcc.zaq.ne.jp>",
"\tMatt Murphy <matt.murphy@crmpc.com>",
"\tChris Wagner <Chris.Wagner@softhome.net>",
"\tShawn Bright <nephish@gmail.com>",
"\tPeter Magnusson <peter.magnusson@crippledcanary.se>",
"\tJakub Sadowinski <paypal@unihex.com>",
"\tRockallite Wulf <rockalite@users.sourceforge.net>",
]
documenters = ["Lateef Alabi-Oki <mystilleef@gmail.com>"]
artists = ["Alexandre Moore <alexandre.moore@gmail.com>", "Panos Laganakos <panos.laganakos@gmail.com>"]
website = "http://scribes.sourceforge.net/"
copyrights = "Copyright © 2005 Lateef Alabi-Oki"
translators = "Brazilian Portuguese translation by Leonardo F. Fontenelle \
<leo.fontenelle@gmail.com>\nRussian translation by Paul Chavard \
<polo@tchak.net>\nGerman translation by Maximilian Baumgart \
<max.baumgart@web.de>\nGerman translation by Steffen Klemer <moh@gmx.org>\nItalian translation by Stefano Esposito \
<ragnarok@email.it>\nFrench translation by Gautier Portet \
<kassoulet@gmail.com>\nDutch translation by Filip Vervloesem \
<filipvervloesem@users.sourceforge.net> \
\nSwedish translation by Daniel Nylander <po@danielnylander.se> \
\nChinese translation by chaos proton <chaos.proton@gmail.com>"
|