Allow retrieving the script path
authorBernie Innocenti <bernie@codewiz.org>
Sat, 29 Aug 2009 17:56:25 +0000 (19:56 +0200)
committerBernie Innocenti <bernie@codewiz.org>
Sat, 29 Aug 2009 17:56:25 +0000 (19:56 +0200)
geekigeeki.conf.py
geekigeeki.py

index ab0e4309f2a7c59f527605db20b481c496264912..26e9a30866174962d9ef93d444f4a89d2d8c8b41 100644 (file)
@@ -32,7 +32,7 @@ link_urls = [
 
 history_url = '../wikigit/wiki.git'
 
-post_edit_hook = './post_edit_hook.sh'
+post_edit_hook = os.path.join(script_path(), 'post_edit_hook.sh')
 
 datetime_fmt = '%a, %d %b %Y %H:%M:%S %Z'
 
@@ -43,4 +43,4 @@ nonexist_pfx = ''
 image_maxwidth = 400
 
 # Set to True for CGI var dump
-#debug_cgi = True
+debug_cgi = False
index 94439abf47df16a3ef21efb7baf2ba7632d35f02..5b26b553da7b344af20ce8d416693d95449f80de 100755 (executable)
@@ -36,6 +36,9 @@ def config_get(key, default=None):
 def script_name():
     return os.environ.get('SCRIPT_NAME', '')
 
+def script_path():
+    return os.path.split(os.environ.get('SCRIPT_FILENAME', ''))[0]
+
 def query_string():
     path_info = os.environ.get('PATH_INFO', '')
     if len(path_info) and path_info[0] == '/':