2006-12-08 19:06:49 +00:00
|
|
|
# dcommon.py
|
2006-11-28 22:28:37 +00:00
|
|
|
#
|
2006-12-08 19:06:49 +00:00
|
|
|
# Copyright (C) Zach Tibbitts 2006 <zach@collegegeek.org>
|
2007-01-08 19:38:19 +00:00
|
|
|
#
|
|
|
|
# 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)
|
2006-12-08 19:06:49 +00:00
|
|
|
# any later version.
|
|
|
|
#
|
2007-01-08 19:38:19 +00:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
2006-12-08 19:06:49 +00:00
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2007-01-08 19:38:19 +00:00
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2006-12-08 19:06:49 +00:00
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-01-08 19:38:19 +00:00
|
|
|
# along with this program. If not, write to:
|
2006-12-08 19:06:49 +00:00
|
|
|
# The Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor
|
|
|
|
# Boston, MA 02110-1301, USA.
|
2006-11-28 22:28:37 +00:00
|
|
|
|
|
|
|
import sys, os, webbrowser
|
|
|
|
|
2006-12-04 23:59:45 +00:00
|
|
|
PROGRAM_NAME = "Deluge"
|
2007-02-05 23:51:11 +00:00
|
|
|
PROGRAM_VERSION = "0.4.9.0"
|
2006-11-28 22:28:37 +00:00
|
|
|
DELUGE_DIR = os.path.abspath(os.path.dirname(sys.argv[0]))
|
|
|
|
GLADE_DIR = DELUGE_DIR + "/glade"
|
|
|
|
PIXMAP_DIR = DELUGE_DIR + "/pixmaps"
|
|
|
|
|
2007-02-06 20:11:46 +00:00
|
|
|
class DelugePreferences:
|
|
|
|
def __init__(self):
|
|
|
|
self.pref = {}
|
|
|
|
|
|
|
|
def set(self, key, value):
|
|
|
|
self.pref[key] = value
|
|
|
|
|
|
|
|
def get(self, key):
|
|
|
|
return self.pref[key]
|
|
|
|
|
|
|
|
def load_from_file(self, filename):
|
|
|
|
f = open(filename, mode='r')
|
|
|
|
for line in f:
|
|
|
|
(key, value) = line.split("=")
|
|
|
|
key = key.strip(" \n")
|
|
|
|
value = value.strip(" \n")
|
|
|
|
self.pref[key] = value
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
def save_to_file(self, filename):
|
|
|
|
f = open(filename, mode='w')
|
|
|
|
for key in self.pref.keys():
|
|
|
|
f.write(key)
|
|
|
|
f.write(' = ')
|
|
|
|
f.write(self.pref[key])
|
|
|
|
f.write('\n')
|
|
|
|
f.flush()
|
|
|
|
f.close()
|
|
|
|
|
2006-11-28 22:28:37 +00:00
|
|
|
def get_glade_file(fname):
|
|
|
|
return GLADE_DIR + "/" + fname
|
|
|
|
|
|
|
|
def get_pixmap(fname):
|
|
|
|
return PIXMAP_DIR + "/" + fname
|
|
|
|
|
|
|
|
def open_url_in_browser(dialog, link):
|
|
|
|
try:
|
|
|
|
webbrowser.open(link)
|
|
|
|
except webbrowser.Error:
|
|
|
|
print "Error: no webbrowser found"
|