forked from gramps-project/gramps
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,109 changed files
with
91,881 additions
and
67,814 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,5 @@ | |
From this position, import gramps works great | ||
""" | ||
import gramps.grampsapp as app | ||
|
||
app.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,42 @@ | ||
#!/usr/bin/env python3 | ||
''' | ||
""" | ||
grampsw.exe | ||
''' | ||
""" | ||
import os | ||
from os import environ | ||
from os.path import join | ||
import sys | ||
import site | ||
|
||
if getattr(sys, 'frozen', False): | ||
if getattr(sys, "frozen", False): | ||
aio = os.path.dirname(sys.executable) | ||
sys.path.insert(1, aio) | ||
sys.path.insert(1, os.path.join(aio,'lib')) | ||
sys.path.insert(1, os.path.join(aio, "lib")) | ||
sys.path.insert(1, site.getusersitepackages()) | ||
environ['SSL_CERT_FILE'] = join(aio, 'ssl/certs/ca-bundle.trust.crt') | ||
environ['GI_TYPELIB_PATH'] = join(aio, 'lib/girepository-1.0') | ||
environ['G_ENABLE_DIAGNOSTIC'] = '0' | ||
environ['G_PARAM_DEPRECATED'] = '0' | ||
environ['GRAMPS_RESOURCES'] = join(aio, 'share') | ||
environ['PATH'] = aio + ';' + aio +'\lib;' + environ['PATH'] | ||
environ["SSL_CERT_FILE"] = join(aio, "ssl/certs/ca-bundle.trust.crt") | ||
environ["GI_TYPELIB_PATH"] = join(aio, "lib/girepository-1.0") | ||
environ["G_ENABLE_DIAGNOSTIC"] = "0" | ||
environ["G_PARAM_DEPRECATED"] = "0" | ||
environ["GRAMPS_RESOURCES"] = join(aio, "share") | ||
environ["PATH"] = aio + ";" + aio + "\lib;" + environ["PATH"] | ||
|
||
import atexit | ||
import ctypes | ||
|
||
|
||
def close(): | ||
''' Show warning dialog if Gramps is already running''' | ||
sys.exit('Gramps is already running!') | ||
"""Show warning dialog if Gramps is already running""" | ||
sys.exit("Gramps is already running!") | ||
|
||
|
||
HANDLE = ctypes.windll.kernel32.CreateMutexW(None, 1, "org.gramps-project.gramps") | ||
ERROR = ctypes.GetLastError() | ||
if ERROR == 183: #ERROR_ALREADY_EXISTS: | ||
if ERROR == 183: # ERROR_ALREADY_EXISTS: | ||
close() | ||
|
||
atexit.register(ctypes.windll.kernel32.CloseHandle, HANDLE) | ||
atexit.register(ctypes.windll.kernel32.ReleaseMutex, HANDLE) | ||
|
||
import gramps.grampsapp as app | ||
|
||
app.main() |
Oops, something went wrong.