diff --git a/binding-mri/binding-mri.cpp b/binding-mri/binding-mri.cpp index 087b7fe..cac6683 100644 --- a/binding-mri/binding-mri.cpp +++ b/binding-mri/binding-mri.cpp @@ -75,6 +75,9 @@ void fileIntBindingInit(); void journalBindingInit(); void wallpaperBindingInit(); +#ifdef __linux__ +void wallpaperBindingTerminate(); +#endif void nikoBindingInit(); void oneshotBindingInit(); void steamBindingInit(); @@ -621,6 +624,9 @@ static void mriBindingExecute() static void mriBindingTerminate() { rb_raise(rb_eSystemExit, " "); +#ifdef __linux__ + wallpaperBindingTerminate(); +#endif } static void mriBindingReset() diff --git a/binding-mri/wallpaper-binding.cpp b/binding-mri/wallpaper-binding.cpp index 47209dd..b6327a7 100644 --- a/binding-mri/wallpaper-binding.cpp +++ b/binding-mri/wallpaper-binding.cpp @@ -3,6 +3,7 @@ #include "binding-util.h" #include "binding-types.h" #include "config.h" +#include "oneshot.h" #ifdef _WIN32 #include @@ -21,15 +22,60 @@ static bool isCached = false; #else #include + #include #include + #include + #include + #include #include - Glib::RefPtr bgsetting = Gio::Settings::create("org.gnome.desktop.background"); - std::string defPictureURI = bgsetting->get_string("picture-uri"); - std::string defPictureOptions = bgsetting->get_string("picture-options"); - std::string defPrimaryColor = bgsetting->get_string("primary-color"); + static std::string desktop = "uninitialized"; + // GNOME settings + static Glib::RefPtr bgsetting; + static std::string defPictureURI, defPictureOptions, defPrimaryColor; + // XFCE settings + static XfconfChannel* bgchannel; + static int defPictureStyle; + static int defColorStyle; + static GValue defColor = G_VALUE_INIT; + static bool defColorExists; + static std::string optionImage, optionColor, optionImageStyle, optionColorStyle; #endif #endif +#ifdef __linux__ +void desktopEnvironmentInit() +{ + if (desktop != "uninitialized") { + return; + } + desktop = shState->oneshot().desktopEnv; + if (desktop == "gnome") { + bgsetting = Gio::Settings::create("org.gnome.desktop.background"); + defPictureURI = bgsetting->get_string("picture-uri"); + defPictureOptions = bgsetting->get_string("picture-options"); + defPrimaryColor = bgsetting->get_string("primary-color"); + } else if (desktop == "xfce") { + GError *xferror = NULL; + if (xfconf_init(&xferror)) { + bgchannel = xfconf_channel_get("xfce4-desktop"); + std::string optionPrefix = "/backdrop/screen0/monitor0/workspace0/"; + optionImage = optionPrefix + "last-image"; + optionColor = optionPrefix + "color1"; + optionImageStyle = optionPrefix + "image-style"; + optionColorStyle = optionPrefix + "color-style"; + defPictureURI = xfconf_channel_get_string(bgchannel, optionImage.c_str(), ""); + defPictureStyle = xfconf_channel_get_int(bgchannel, optionImageStyle.c_str(), -1); + defColorExists = xfconf_channel_get_property(bgchannel, optionColor.c_str(), &defColor); + defColorStyle = xfconf_channel_get_int(bgchannel, optionColorStyle.c_str(), -1); + } else { + // Configuration failed to initialize, we won't set the wallpaper + desktop = "xfce_error"; + g_error_free(xferror); + } + } +} +#endif + RB_METHOD(wallpaperSet) { RB_UNUSED_PARAM; @@ -118,18 +164,68 @@ end: MacDesktop::CacheCurrentBackground(); isCached = true; } - MacDesktop::ChangeBackground(shState->config().gameFolder + path, ((color >> 16) & 0xFF) / 255.0, ((color >> 8) & 0xFF) / 255.0, ((color) & 0xFF) / 255.0); + MacDesktop::ChangeBackground(shState->config().gameFolder + path, ((color >> 16) & 0xFF) / 255.0, ((color >> 8) & 0xFF) / 255.0, (color & 0xFF) / 255.0); #else char gameDir[PATH_MAX]; - if (getcwd(gameDir, sizeof(gameDir)) != NULL) { - std::string gameDirStr(gameDir); + if (getcwd(gameDir, sizeof(gameDir)) == NULL) { + return Qnil; + } + std::string gameDirStr(gameDir); + desktopEnvironmentInit(); + if (desktop == "gnome") { std::stringstream hexColor; hexColor << "#" << std::hex << color; bgsetting->set_string("picture-uri", "file://" + gameDirStr + path); bgsetting->set_string("picture-options", "scaled"); bgsetting->set_string("primary-color", hexColor.str()); - } else { - // Error handling? + } else if (desktop == "xfce") { + int r = (color >> 16) & 0xFF; + int g = (color >> 8) & 0xFF; + int b = color & 0xFF; + unsigned int ur = r * 256 + r; + unsigned int ug = g * 256 + g; + unsigned int ub = b * 256 + b; + unsigned int alpha = 65535; + std::string concatPath(gameDirStr + path); + xfconf_channel_set_string(bgchannel, optionImage.c_str(), concatPath.c_str()); + xfconf_channel_set_int(bgchannel, optionColorStyle.c_str(), 0); + xfconf_channel_set_int(bgchannel, optionImageStyle.c_str(), 4); + GValue colorValue = G_VALUE_INIT; + GPtrArray *colorArr = g_ptr_array_sized_new(4); + GType colorArrType = g_type_from_name("GPtrArray_GValue_"); + if (!colorArrType) { + std::stringstream colorCommand; + colorCommand << "xfconf-query -c xfce4-desktop -n -p " << optionImage + << " -t uint -t uint -t uint -t uint -s " << ub + << " -s " << ug << " -s " << ub << " -s " << alpha; + int colorCommandRes = system(colorCommand.str().c_str()); + defColorExists = xfconf_channel_get_property(bgchannel, optionColor.c_str(), &defColor); + colorArrType = g_type_from_name("GPtrArray_GValue_"); + if (!colorArrType) { + // Let's do some debug output here and skip changing the color + std::cout << "WALLPAPER ERROR: xfconf-query call returned" << colorCommandRes; + return Qnil; + } + } + g_value_init(&colorValue, colorArrType); + GValue *vr = g_new0(GValue, 1); + GValue *vg = g_new0(GValue, 1); + GValue *vb = g_new0(GValue, 1); + GValue *va = g_new0(GValue, 1); + g_value_init(vr, G_TYPE_UINT); + g_value_init(vg, G_TYPE_UINT); + g_value_init(vb, G_TYPE_UINT); + g_value_init(va, G_TYPE_UINT); + g_value_set_uint(vr, ur); + g_value_set_uint(vg, ug); + g_value_set_uint(vb, ub); + g_value_set_uint(va, alpha); + g_ptr_array_add(colorArr, vr); + g_ptr_array_add(colorArr, vg); + g_ptr_array_add(colorArr, vb); + g_ptr_array_add(colorArr, va); + g_value_set_boxed(&colorValue, colorArr); + xfconf_channel_set_property(bgchannel, optionColor.c_str(), &colorValue); } #endif #endif @@ -168,9 +264,33 @@ RB_METHOD(wallpaperReset) #ifdef __APPLE__ MacDesktop::ResetBackground(); #else - bgsetting->set_string("picture-uri", defPictureURI); - bgsetting->set_string("picture-options", defPictureOptions); - bgsetting->set_string("primary-color", defPrimaryColor); + desktopEnvironmentInit(); + if (desktop == "gnome") { + bgsetting->set_string("picture-uri", defPictureURI); + bgsetting->set_string("picture-options", defPictureOptions); + bgsetting->set_string("primary-color", defPrimaryColor); + } else if (desktop == "xfce") { + if (defColorExists) { + xfconf_channel_set_property(bgchannel, optionColor.c_str(), &defColor); + } else { + xfconf_channel_reset_property(bgchannel, optionColor.c_str(), false); + } + if (defPictureURI == "") { + xfconf_channel_reset_property(bgchannel, optionImage.c_str(), false); + } else { + xfconf_channel_set_string(bgchannel, optionImage.c_str(), defPictureURI.c_str()); + } + if (defPictureStyle == -1) { + xfconf_channel_reset_property(bgchannel, optionImageStyle.c_str(), false); + } else { + xfconf_channel_set_int(bgchannel, optionImageStyle.c_str(), defPictureStyle); + } + if (defColorStyle == -1) { + xfconf_channel_reset_property(bgchannel, optionColorStyle.c_str(), false); + } else { + xfconf_channel_set_int(bgchannel, optionColorStyle.c_str(), defColorStyle); + } + } #endif #endif return Qnil; @@ -184,3 +304,14 @@ void wallpaperBindingInit() _rb_define_module_function(module, "set", wallpaperSet); _rb_define_module_function(module, "reset", wallpaperReset); } + +#ifdef __linux__ +void wallpaperBindingTerminate() +{ + // Clean up + // We assume Gio::Settings destructor will be automatically called + if (desktop == "xfce") { + xfconf_shutdown(); + } +} +#endif diff --git a/journal/unix/build/journal/_______ b/journal/unix/build/journal/_______ new file mode 100755 index 0000000..7cca9b5 Binary files /dev/null and b/journal/unix/build/journal/_______ differ diff --git a/journal/unix/build/journal/base_library.zip b/journal/unix/build/journal/base_library.zip new file mode 100644 index 0000000..145e15c Binary files /dev/null and b/journal/unix/build/journal/base_library.zip differ diff --git a/journal/unix/build/journal/localpycos/pyimod01_os_path.pyc b/journal/unix/build/journal/localpycos/pyimod01_os_path.pyc new file mode 100644 index 0000000..842e042 Binary files /dev/null and b/journal/unix/build/journal/localpycos/pyimod01_os_path.pyc differ diff --git a/journal/unix/build/journal/localpycos/pyimod02_archive.pyc b/journal/unix/build/journal/localpycos/pyimod02_archive.pyc new file mode 100644 index 0000000..59440b7 Binary files /dev/null and b/journal/unix/build/journal/localpycos/pyimod02_archive.pyc differ diff --git a/journal/unix/build/journal/localpycos/pyimod03_importers.pyc b/journal/unix/build/journal/localpycos/pyimod03_importers.pyc new file mode 100644 index 0000000..1fb976b Binary files /dev/null and b/journal/unix/build/journal/localpycos/pyimod03_importers.pyc differ diff --git a/journal/unix/build/journal/localpycos/struct.pyo b/journal/unix/build/journal/localpycos/struct.pyo new file mode 100644 index 0000000..1b1ea59 Binary files /dev/null and b/journal/unix/build/journal/localpycos/struct.pyo differ diff --git a/journal/unix/build/journal/out00-Analysis.toc b/journal/unix/build/journal/out00-Analysis.toc new file mode 100644 index 0000000..e87304c --- /dev/null +++ b/journal/unix/build/journal/out00-Analysis.toc @@ -0,0 +1,500 @@ +(['journal.py'], + ['/home/perapisar/Temp/mkxp/synglechance/journal/unix', + '/home/perapisar/Temp/mkxp/synglechance/journal/unix'], + ['codecs'], + [], + [], + [], + False, + False, + '3.5.2 (default, Nov 23 2017, 16:37:01) \n[GCC 5.4.0 20160609]', + [('pyi_rth_qt5', + '/usr/local/lib/python3.5/dist-packages/PyInstaller/loader/rthooks/pyi_rth_qt5.py', + 'PYSOURCE'), + ('journal', + '/home/perapisar/Temp/mkxp/synglechance/journal/unix/journal.py', + 'PYSOURCE')], + [('posixpath', '/usr/lib/python3.5/posixpath.py', 'PYMODULE'), + ('_strptime', '/usr/lib/python3.5/_strptime.py', 'PYMODULE'), + ('datetime', '/usr/lib/python3.5/datetime.py', 'PYMODULE'), + ('stringprep', '/usr/lib/python3.5/stringprep.py', 'PYMODULE'), + ('_compat_pickle', '/usr/lib/python3.5/_compat_pickle.py', 'PYMODULE'), + ('pickle', '/usr/lib/python3.5/pickle.py', 'PYMODULE'), + ('__future__', '/usr/lib/python3.5/__future__.py', 'PYMODULE'), + ('argparse', '/usr/lib/python3.5/argparse.py', 'PYMODULE'), + ('difflib', '/usr/lib/python3.5/difflib.py', 'PYMODULE'), + ('ast', '/usr/lib/python3.5/ast.py', 'PYMODULE'), + ('imp', '/usr/lib/python3.5/imp.py', 'PYMODULE'), + ('inspect', '/usr/lib/python3.5/inspect.py', 'PYMODULE'), + ('cmd', '/usr/lib/python3.5/cmd.py', 'PYMODULE'), + ('bdb', '/usr/lib/python3.5/bdb.py', 'PYMODULE'), + ('opcode', '/usr/lib/python3.5/opcode.py', 'PYMODULE'), + ('dis', '/usr/lib/python3.5/dis.py', 'PYMODULE'), + ('codeop', '/usr/lib/python3.5/codeop.py', 'PYMODULE'), + ('code', '/usr/lib/python3.5/code.py', 'PYMODULE'), + ('glob', '/usr/lib/python3.5/glob.py', 'PYMODULE'), + ('shlex', '/usr/lib/python3.5/shlex.py', 'PYMODULE'), + ('importlib._bootstrap', + '/usr/lib/python3.5/importlib/_bootstrap.py', + 'PYMODULE'), + ('importlib._bootstrap_external', + '/usr/lib/python3.5/importlib/_bootstrap_external.py', + 'PYMODULE'), + ('importlib.machinery', + '/usr/lib/python3.5/importlib/machinery.py', + 'PYMODULE'), + ('importlib.util', '/usr/lib/python3.5/importlib/util.py', 'PYMODULE'), + ('importlib.abc', '/usr/lib/python3.5/importlib/abc.py', 'PYMODULE'), + ('importlib', '/usr/lib/python3.5/importlib/__init__.py', 'PYMODULE'), + ('pkgutil', '/usr/lib/python3.5/pkgutil.py', 'PYMODULE'), + ('ctypes._endian', '/usr/lib/python3.5/ctypes/_endian.py', 'PYMODULE'), + ('ctypes', '/usr/lib/python3.5/ctypes/__init__.py', 'PYMODULE'), + ('xml', '/usr/lib/python3.5/xml/__init__.py', 'PYMODULE'), + ('xml.sax.expatreader', + '/usr/lib/python3.5/xml/sax/expatreader.py', + 'PYMODULE'), + ('xml.sax.saxutils', '/usr/lib/python3.5/xml/sax/saxutils.py', 'PYMODULE'), + ('urllib.request', '/usr/lib/python3.5/urllib/request.py', 'PYMODULE'), + ('getpass', '/usr/lib/python3.5/getpass.py', 'PYMODULE'), + ('nturl2path', '/usr/lib/python3.5/nturl2path.py', 'PYMODULE'), + ('ftplib', '/usr/lib/python3.5/ftplib.py', 'PYMODULE'), + ('netrc', '/usr/lib/python3.5/netrc.py', 'PYMODULE'), + ('http.cookiejar', '/usr/lib/python3.5/http/cookiejar.py', 'PYMODULE'), + ('urllib.response', '/usr/lib/python3.5/urllib/response.py', 'PYMODULE'), + ('urllib.error', '/usr/lib/python3.5/urllib/error.py', 'PYMODULE'), + ('bisect', '/usr/lib/python3.5/bisect.py', 'PYMODULE'), + ('xml.sax', '/usr/lib/python3.5/xml/sax/__init__.py', 'PYMODULE'), + ('xml.sax.handler', '/usr/lib/python3.5/xml/sax/handler.py', 'PYMODULE'), + ('xml.sax._exceptions', + '/usr/lib/python3.5/xml/sax/_exceptions.py', + 'PYMODULE'), + ('xml.sax.xmlreader', '/usr/lib/python3.5/xml/sax/xmlreader.py', 'PYMODULE'), + ('xml.parsers', '/usr/lib/python3.5/xml/parsers/__init__.py', 'PYMODULE'), + ('xml.parsers.expat', '/usr/lib/python3.5/xml/parsers/expat.py', 'PYMODULE'), + ('plistlib', '/usr/lib/python3.5/plistlib.py', 'PYMODULE'), + ('platform', '/usr/lib/python3.5/platform.py', 'PYMODULE'), + ('urllib.parse', '/usr/lib/python3.5/urllib/parse.py', 'PYMODULE'), + ('tempfile', '/usr/lib/python3.5/tempfile.py', 'PYMODULE'), + ('tty', '/usr/lib/python3.5/tty.py', 'PYMODULE'), + ('pydoc_data', '/usr/lib/python3.5/pydoc_data/__init__.py', 'PYMODULE'), + ('pydoc_data.topics', '/usr/lib/python3.5/pydoc_data/topics.py', 'PYMODULE'), + ('textwrap', '/usr/lib/python3.5/textwrap.py', 'PYMODULE'), + ('html.entities', '/usr/lib/python3.5/html/entities.py', 'PYMODULE'), + ('html', '/usr/lib/python3.5/html/__init__.py', 'PYMODULE'), + ('ipaddress', '/usr/lib/python3.5/ipaddress.py', 'PYMODULE'), + ('ssl', '/usr/lib/python3.5/ssl.py', 'PYMODULE'), + ('http.client', '/usr/lib/python3.5/http/client.py', 'PYMODULE'), + ('mimetypes', '/usr/lib/python3.5/mimetypes.py', 'PYMODULE'), + ('socketserver', '/usr/lib/python3.5/socketserver.py', 'PYMODULE'), + ('http', '/usr/lib/python3.5/http/__init__.py', 'PYMODULE'), + ('http.server', '/usr/lib/python3.5/http/server.py', 'PYMODULE'), + ('uu', '/usr/lib/python3.5/uu.py', 'PYMODULE'), + ('quopri', '/usr/lib/python3.5/quopri.py', 'PYMODULE'), + ('email.feedparser', '/usr/lib/python3.5/email/feedparser.py', 'PYMODULE'), + ('email.parser', '/usr/lib/python3.5/email/parser.py', 'PYMODULE'), + ('email', '/usr/lib/python3.5/email/__init__.py', 'PYMODULE'), + ('optparse', '/usr/lib/python3.5/optparse.py', 'PYMODULE'), + ('calendar', '/usr/lib/python3.5/calendar.py', 'PYMODULE'), + ('email._parseaddr', '/usr/lib/python3.5/email/_parseaddr.py', 'PYMODULE'), + ('email.utils', '/usr/lib/python3.5/email/utils.py', 'PYMODULE'), + ('email.errors', '/usr/lib/python3.5/email/errors.py', 'PYMODULE'), + ('email.header', '/usr/lib/python3.5/email/header.py', 'PYMODULE'), + ('email._policybase', '/usr/lib/python3.5/email/_policybase.py', 'PYMODULE'), + ('email.base64mime', '/usr/lib/python3.5/email/base64mime.py', 'PYMODULE'), + ('email.encoders', '/usr/lib/python3.5/email/encoders.py', 'PYMODULE'), + ('email.charset', '/usr/lib/python3.5/email/charset.py', 'PYMODULE'), + ('base64', '/usr/lib/python3.5/base64.py', 'PYMODULE'), + ('email._encoded_words', + '/usr/lib/python3.5/email/_encoded_words.py', + 'PYMODULE'), + ('hashlib', '/usr/lib/python3.5/hashlib.py', 'PYMODULE'), + ('random', '/usr/lib/python3.5/random.py', 'PYMODULE'), + ('email.generator', '/usr/lib/python3.5/email/generator.py', 'PYMODULE'), + ('email.iterators', '/usr/lib/python3.5/email/iterators.py', 'PYMODULE'), + ('urllib', '/usr/lib/python3.5/urllib/__init__.py', 'PYMODULE'), + ('email._header_value_parser', + '/usr/lib/python3.5/email/_header_value_parser.py', + 'PYMODULE'), + ('email.headerregistry', + '/usr/lib/python3.5/email/headerregistry.py', + 'PYMODULE'), + ('email.quoprimime', '/usr/lib/python3.5/email/quoprimime.py', 'PYMODULE'), + ('email.contentmanager', + '/usr/lib/python3.5/email/contentmanager.py', + 'PYMODULE'), + ('email.policy', '/usr/lib/python3.5/email/policy.py', 'PYMODULE'), + ('email.message', '/usr/lib/python3.5/email/message.py', 'PYMODULE'), + ('gzip', '/usr/lib/python3.5/gzip.py', 'PYMODULE'), + ('tarfile', '/usr/lib/python3.5/tarfile.py', 'PYMODULE'), + ('bz2', '/usr/lib/python3.5/bz2.py', 'PYMODULE'), + ('_compression', '/usr/lib/python3.5/_compression.py', 'PYMODULE'), + ('lzma', '/usr/lib/python3.5/lzma.py', 'PYMODULE'), + ('py_compile', '/usr/lib/python3.5/py_compile.py', 'PYMODULE'), + ('zipfile', '/usr/lib/python3.5/zipfile.py', 'PYMODULE'), + ('shutil', '/usr/lib/python3.5/shutil.py', 'PYMODULE'), + ('socket', '/usr/lib/python3.5/socket.py', 'PYMODULE'), + ('webbrowser', '/usr/lib/python3.5/webbrowser.py', 'PYMODULE'), + ('pydoc', '/usr/lib/python3.5/pydoc.py', 'PYMODULE'), + ('copy', '/usr/lib/python3.5/copy.py', 'PYMODULE'), + ('struct', '/usr/lib/python3.5/struct.py', 'PYMODULE'), + ('token', '/usr/lib/python3.5/token.py', 'PYMODULE'), + ('tokenize', '/usr/lib/python3.5/tokenize.py', 'PYMODULE'), + ('gettext', '/usr/lib/python3.5/gettext.py', 'PYMODULE'), + ('getopt', '/usr/lib/python3.5/getopt.py', 'PYMODULE'), + ('pdb', '/usr/lib/python3.5/pdb.py', 'PYMODULE'), + ('unittest.util', '/usr/lib/python3.5/unittest/util.py', 'PYMODULE'), + ('unittest.result', '/usr/lib/python3.5/unittest/result.py', 'PYMODULE'), + ('logging', '/usr/lib/python3.5/logging/__init__.py', 'PYMODULE'), + ('pprint', '/usr/lib/python3.5/pprint.py', 'PYMODULE'), + ('unittest.case', '/usr/lib/python3.5/unittest/case.py', 'PYMODULE'), + ('unittest.suite', '/usr/lib/python3.5/unittest/suite.py', 'PYMODULE'), + ('fnmatch', '/usr/lib/python3.5/fnmatch.py', 'PYMODULE'), + ('unittest.loader', '/usr/lib/python3.5/unittest/loader.py', 'PYMODULE'), + ('unittest.runner', '/usr/lib/python3.5/unittest/runner.py', 'PYMODULE'), + ('unittest.main', '/usr/lib/python3.5/unittest/main.py', 'PYMODULE'), + ('unittest.signals', '/usr/lib/python3.5/unittest/signals.py', 'PYMODULE'), + ('unittest', '/usr/lib/python3.5/unittest/__init__.py', 'PYMODULE'), + ('doctest', '/usr/lib/python3.5/doctest.py', 'PYMODULE'), + ('stat', '/usr/lib/python3.5/stat.py', 'PYMODULE'), + ('genericpath', '/usr/lib/python3.5/genericpath.py', 'PYMODULE'), + ('string', '/usr/lib/python3.5/string.py', 'PYMODULE'), + ('ntpath', '/usr/lib/python3.5/ntpath.py', 'PYMODULE'), + ('warnings', '/usr/lib/python3.5/warnings.py', 'PYMODULE'), + ('enum', '/usr/lib/python3.5/enum.py', 'PYMODULE'), + ('signal', '/usr/lib/python3.5/signal.py', 'PYMODULE'), + ('contextlib', '/usr/lib/python3.5/contextlib.py', 'PYMODULE'), + ('_threading_local', '/usr/lib/python3.5/_threading_local.py', 'PYMODULE'), + ('threading', '/usr/lib/python3.5/threading.py', 'PYMODULE'), + ('selectors', '/usr/lib/python3.5/selectors.py', 'PYMODULE'), + ('dummy_threading', '/usr/lib/python3.5/dummy_threading.py', 'PYMODULE'), + ('subprocess', '/usr/lib/python3.5/subprocess.py', 'PYMODULE'), + ('_dummy_thread', '/usr/lib/python3.5/_dummy_thread.py', 'PYMODULE'), + ('ctypes.wintypes', '/usr/lib/python3.5/ctypes/wintypes.py', 'PYMODULE'), + ('PyQt5', + '/usr/local/lib/python3.5/dist-packages/PyQt5/__init__.py', + 'PYMODULE'), + ('os', '/usr/lib/python3.5/os.py', 'PYMODULE')], + [('libz.so.1', '/lib/x86_64-linux-gnu/libz.so.1', 'BINARY'), + ('libexpat.so.1', '/lib/x86_64-linux-gnu/libexpat.so.1', 'BINARY'), + ('PyQt5/Qt/plugins/platforms/libqlinuxfb.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/libqlinuxfb.so', + 'BINARY'), + ('PyQt5/Qt/plugins/platforms/libqxcb.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/libqxcb.so', + 'BINARY'), + ('PyQt5/Qt/plugins/platforms/libqvnc.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/libqvnc.so', + 'BINARY'), + ('PyQt5/Qt/plugins/platforms/libqoffscreen.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/libqoffscreen.so', + 'BINARY'), + ('PyQt5/Qt/plugins/iconengines/libqsvgicon.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/iconengines/libqsvgicon.so', + 'BINARY'), + ('PyQt5/Qt/plugins/platforms/libqminimal.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/libqminimal.so', + 'BINARY'), + ('PyQt5/Qt/plugins/imageformats/libqtiff.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/imageformats/libqtiff.so', + 'BINARY'), + ('PyQt5/Qt/plugins/platformthemes/libqgtk3.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platformthemes/libqgtk3.so', + 'BINARY'), + ('PyQt5/Qt/plugins/platforms/libqminimalegl.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/libqminimalegl.so', + 'BINARY'), + ('PyQt5/Qt/plugins/platforms/libqeglfs.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/libqeglfs.so', + 'BINARY'), + ('PyQt5/Qt/plugins/printsupport/libcupsprintersupport.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/printsupport/libcupsprintersupport.so', + 'BINARY'), + ('PyQt5/Qt/plugins/imageformats/libqgif.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/imageformats/libqgif.so', + 'BINARY'), + ('PyQt5/Qt/plugins/imageformats/libqwebp.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/imageformats/libqwebp.so', + 'BINARY'), + ('PyQt5/Qt/plugins/imageformats/libqjpeg.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/imageformats/libqjpeg.so', + 'BINARY'), + ('PyQt5/Qt/plugins/imageformats/libqico.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/imageformats/libqico.so', + 'BINARY'), + ('PyQt5/Qt/plugins/imageformats/libqicns.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/imageformats/libqicns.so', + 'BINARY'), + ('PyQt5/Qt/plugins/imageformats/libqsvg.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/imageformats/libqsvg.so', + 'BINARY'), + ('PyQt5/Qt/plugins/imageformats/libqtga.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/imageformats/libqtga.so', + 'BINARY'), + ('PyQt5/Qt/plugins/imageformats/libqwbmp.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/imageformats/libqwbmp.so', + 'BINARY'), + ('resource', + '/usr/lib/python3.5/lib-dynload/resource.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_ssl', + '/usr/lib/python3.5/lib-dynload/_ssl.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_codecs_hk', + '/usr/lib/python3.5/lib-dynload/_codecs_hk.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_codecs_tw', + '/usr/lib/python3.5/lib-dynload/_codecs_tw.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_codecs_jp', + '/usr/lib/python3.5/lib-dynload/_codecs_jp.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_codecs_cn', + '/usr/lib/python3.5/lib-dynload/_codecs_cn.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_codecs_kr', + '/usr/lib/python3.5/lib-dynload/_codecs_kr.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_codecs_iso2022', + '/usr/lib/python3.5/lib-dynload/_codecs_iso2022.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_multibytecodec', + '/usr/lib/python3.5/lib-dynload/_multibytecodec.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_opcode', + '/usr/lib/python3.5/lib-dynload/_opcode.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('readline', + '/usr/lib/python3.5/lib-dynload/readline.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_ctypes', + '/usr/lib/python3.5/lib-dynload/_ctypes.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('termios', + '/usr/lib/python3.5/lib-dynload/termios.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_hashlib', + '/usr/lib/python3.5/lib-dynload/_hashlib.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_bz2', + '/usr/lib/python3.5/lib-dynload/_bz2.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_lzma', + '/usr/lib/python3.5/lib-dynload/_lzma.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('PyQt5.QtGui', + '/usr/local/lib/python3.5/dist-packages/PyQt5/QtGui.so', + 'EXTENSION'), + ('sip', '/usr/local/lib/python3.5/dist-packages/sip.so', 'EXTENSION'), + ('PyQt5.Qt', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt.so', + 'EXTENSION'), + ('PyQt5.QtPrintSupport', + '/usr/local/lib/python3.5/dist-packages/PyQt5/QtPrintSupport.so', + 'EXTENSION'), + ('PyQt5.QtWidgets', + '/usr/local/lib/python3.5/dist-packages/PyQt5/QtWidgets.so', + 'EXTENSION'), + ('PyQt5.QtCore', + '/usr/local/lib/python3.5/dist-packages/PyQt5/QtCore.so', + 'EXTENSION'), + ('libgcc_s.so.1', '/lib/x86_64-linux-gnu/libgcc_s.so.1', 'BINARY'), + ('libXfixes.so.3', '/usr/lib/x86_64-linux-gnu/libXfixes.so.3', 'BINARY'), + ('libicuuc.so.56', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/../../lib/libicuuc.so.56', + 'BINARY'), + ('libX11-xcb.so.1', '/usr/lib/x86_64-linux-gnu/libX11-xcb.so.1', 'BINARY'), + ('libfreetype.so.6', '/usr/lib/x86_64-linux-gnu/libfreetype.so.6', 'BINARY'), + ('libxcb-sync.so.1', '/usr/lib/x86_64-linux-gnu/libxcb-sync.so.1', 'BINARY'), + ('libxcb-glx.so.0', '/usr/lib/x86_64-linux-gnu/libxcb-glx.so.0', 'BINARY'), + ('libQt5Gui.so.5', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/../../lib/libQt5Gui.so.5', + 'BINARY'), + ('libicui18n.so.56', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/../../lib/libicui18n.so.56', + 'BINARY'), + ('libX11.so.6', '/usr/lib/x86_64-linux-gnu/libX11.so.6', 'BINARY'), + ('libdrm.so.2', '/usr/lib/x86_64-linux-gnu/libdrm.so.2', 'BINARY'), + ('libglapi.so.0', '/usr/lib/x86_64-linux-gnu/libglapi.so.0', 'BINARY'), + ('libxcb-present.so.0', + '/usr/lib/x86_64-linux-gnu/libxcb-present.so.0', + 'BINARY'), + ('libpng12.so.0', '/lib/x86_64-linux-gnu/libpng12.so.0', 'BINARY'), + ('libXext.so.6', '/usr/lib/x86_64-linux-gnu/libXext.so.6', 'BINARY'), + ('libglib-2.0.so.0', '/lib/x86_64-linux-gnu/libglib-2.0.so.0', 'BINARY'), + ('libXau.so.6', '/usr/lib/x86_64-linux-gnu/libXau.so.6', 'BINARY'), + ('libXdamage.so.1', '/usr/lib/x86_64-linux-gnu/libXdamage.so.1', 'BINARY'), + ('libXdmcp.so.6', '/usr/lib/x86_64-linux-gnu/libXdmcp.so.6', 'BINARY'), + ('libQt5Core.so.5', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/../../lib/libQt5Core.so.5', + 'BINARY'), + ('libgthread-2.0.so.0', + '/usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0', + 'BINARY'), + ('libpcre.so.3', '/lib/x86_64-linux-gnu/libpcre.so.3', 'BINARY'), + ('libXxf86vm.so.1', '/usr/lib/x86_64-linux-gnu/libXxf86vm.so.1', 'BINARY'), + ('libfontconfig.so.1', + '/usr/lib/x86_64-linux-gnu/libfontconfig.so.1', + 'BINARY'), + ('libstdc++.so.6', '/usr/lib/x86_64-linux-gnu/libstdc++.so.6', 'BINARY'), + ('libicudata.so.56', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/../../lib/libicudata.so.56', + 'BINARY'), + ('libxshmfence.so.1', + '/usr/lib/x86_64-linux-gnu/libxshmfence.so.1', + 'BINARY'), + ('libdbus-1.so.3', '/lib/x86_64-linux-gnu/libdbus-1.so.3', 'BINARY'), + ('libQt5DBus.so.5', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/../../lib/libQt5DBus.so.5', + 'BINARY'), + ('libQt5XcbQpa.so.5', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/../../lib/libQt5XcbQpa.so.5', + 'BINARY'), + ('libgpg-error.so.0', '/lib/x86_64-linux-gnu/libgpg-error.so.0', 'BINARY'), + ('libgcrypt.so.20', '/lib/x86_64-linux-gnu/libgcrypt.so.20', 'BINARY'), + ('libselinux.so.1', '/lib/x86_64-linux-gnu/libselinux.so.1', 'BINARY'), + ('libsystemd.so.0', '/lib/x86_64-linux-gnu/libsystemd.so.0', 'BINARY'), + ('libXi.so.6', '/usr/lib/x86_64-linux-gnu/libXi.so.6', 'BINARY'), + ('libXrender.so.1', '/usr/lib/x86_64-linux-gnu/libXrender.so.1', 'BINARY'), + ('liblzma.so.5', '/lib/x86_64-linux-gnu/liblzma.so.5', 'BINARY'), + ('libQt5Network.so.5', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/../../lib/libQt5Network.so.5', + 'BINARY'), + ('libQt5Svg.so.5', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/iconengines/../../lib/libQt5Svg.so.5', + 'BINARY'), + ('libQt5Widgets.so.5', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/iconengines/../../lib/libQt5Widgets.so.5', + 'BINARY'), + ('libmircommon.so.7', + '/usr/lib/x86_64-linux-gnu/libmircommon.so.7', + 'BINARY'), + ('libXcomposite.so.1', + '/usr/lib/x86_64-linux-gnu/libXcomposite.so.1', + 'BINARY'), + ('libXrandr.so.2', '/usr/lib/x86_64-linux-gnu/libXrandr.so.2', 'BINARY'), + ('libepoxy.so.0', '/usr/lib/x86_64-linux-gnu/libepoxy.so.0', 'BINARY'), + ('libdatrie.so.1', '/usr/lib/x86_64-linux-gnu/libdatrie.so.1', 'BINARY'), + ('libpangocairo-1.0.so.0', + '/usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0', + 'BINARY'), + ('libprotobuf-lite.so.9', + '/usr/lib/x86_64-linux-gnu/libprotobuf-lite.so.9', + 'BINARY'), + ('libxcb-shm.so.0', '/usr/lib/x86_64-linux-gnu/libxcb-shm.so.0', 'BINARY'), + ('libgraphite2.so.3', + '/usr/lib/x86_64-linux-gnu/libgraphite2.so.3', + 'BINARY'), + ('libmircore.so.1', '/usr/lib/x86_64-linux-gnu/libmircore.so.1', 'BINARY'), + ('libcapnp-0.5.3.so', + '/usr/lib/x86_64-linux-gnu/libcapnp-0.5.3.so', + 'BINARY'), + ('libkj-0.5.3.so', '/usr/lib/x86_64-linux-gnu/libkj-0.5.3.so', 'BINARY'), + ('libatspi.so.0', '/usr/lib/x86_64-linux-gnu/libatspi.so.0', 'BINARY'), + ('libwayland-egl.so.1', + '/usr/lib/x86_64-linux-gnu/libwayland-egl.so.1', + 'BINARY'), + ('libharfbuzz.so.0', '/usr/lib/x86_64-linux-gnu/libharfbuzz.so.0', 'BINARY'), + ('libgdk_pixbuf-2.0.so.0', + '/usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0', + 'BINARY'), + ('libgio-2.0.so.0', '/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0', 'BINARY'), + ('libpixman-1.so.0', '/usr/lib/x86_64-linux-gnu/libpixman-1.so.0', 'BINARY'), + ('libXcursor.so.1', '/usr/lib/x86_64-linux-gnu/libXcursor.so.1', 'BINARY'), + ('libboost_system.so.1.58.0', + '/usr/lib/x86_64-linux-gnu/libboost_system.so.1.58.0', + 'BINARY'), + ('libXinerama.so.1', '/usr/lib/x86_64-linux-gnu/libXinerama.so.1', 'BINARY'), + ('libmirclient.so.9', + '/usr/lib/x86_64-linux-gnu/libmirclient.so.9', + 'BINARY'), + ('libgobject-2.0.so.0', + '/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0', + 'BINARY'), + ('libatk-bridge-2.0.so.0', + '/usr/lib/x86_64-linux-gnu/libatk-bridge-2.0.so.0', + 'BINARY'), + ('libffi.so.6', '/usr/lib/x86_64-linux-gnu/libffi.so.6', 'BINARY'), + ('libatk-1.0.so.0', '/usr/lib/x86_64-linux-gnu/libatk-1.0.so.0', 'BINARY'), + ('libpango-1.0.so.0', + '/usr/lib/x86_64-linux-gnu/libpango-1.0.so.0', + 'BINARY'), + ('libgmodule-2.0.so.0', + '/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0', + 'BINARY'), + ('libgdk-3.so.0', '/usr/lib/x86_64-linux-gnu/libgdk-3.so.0', 'BINARY'), + ('libgtk-3.so.0', '/usr/lib/x86_64-linux-gnu/libgtk-3.so.0', 'BINARY'), + ('libmirprotobuf.so.3', + '/usr/lib/x86_64-linux-gnu/libmirprotobuf.so.3', + 'BINARY'), + ('libwayland-cursor.so.0', + '/usr/lib/x86_64-linux-gnu/libwayland-cursor.so.0', + 'BINARY'), + ('libthai.so.0', '/usr/lib/x86_64-linux-gnu/libthai.so.0', 'BINARY'), + ('libxkbcommon.so.0', + '/usr/lib/x86_64-linux-gnu/libxkbcommon.so.0', + 'BINARY'), + ('libboost_filesystem.so.1.58.0', + '/usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.58.0', + 'BINARY'), + ('libpangoft2-1.0.so.0', + '/usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0', + 'BINARY'), + ('libwayland-client.so.0', + '/usr/lib/x86_64-linux-gnu/libwayland-client.so.0', + 'BINARY'), + ('libcairo-gobject.so.2', + '/usr/lib/x86_64-linux-gnu/libcairo-gobject.so.2', + 'BINARY'), + ('libxcb-render.so.0', + '/usr/lib/x86_64-linux-gnu/libxcb-render.so.0', + 'BINARY'), + ('libcairo.so.2', '/usr/lib/x86_64-linux-gnu/libcairo.so.2', 'BINARY'), + ('libxcb-xfixes.so.0', + '/usr/lib/x86_64-linux-gnu/libxcb-xfixes.so.0', + 'BINARY'), + ('libEGL.so.1', '/usr/lib/x86_64-linux-gnu/mesa-egl/libEGL.so.1', 'BINARY'), + ('libgbm.so.1', '/usr/lib/x86_64-linux-gnu/libgbm.so.1', 'BINARY'), + ('libwayland-server.so.0', + '/usr/lib/x86_64-linux-gnu/libwayland-server.so.0', + 'BINARY'), + ('libnettle.so.6', '/usr/lib/x86_64-linux-gnu/libnettle.so.6', 'BINARY'), + ('libkrb5support.so.0', + '/usr/lib/x86_64-linux-gnu/libkrb5support.so.0', + 'BINARY'), + ('libkeyutils.so.1', '/lib/x86_64-linux-gnu/libkeyutils.so.1', 'BINARY'), + ('libgnutls.so.30', '/usr/lib/x86_64-linux-gnu/libgnutls.so.30', 'BINARY'), + ('libavahi-client.so.3', + '/usr/lib/x86_64-linux-gnu/libavahi-client.so.3', + 'BINARY'), + ('libp11-kit.so.0', '/usr/lib/x86_64-linux-gnu/libp11-kit.so.0', 'BINARY'), + ('libk5crypto.so.3', '/usr/lib/x86_64-linux-gnu/libk5crypto.so.3', 'BINARY'), + ('libkrb5.so.3', '/usr/lib/x86_64-linux-gnu/libkrb5.so.3', 'BINARY'), + ('libgmp.so.10', '/usr/lib/x86_64-linux-gnu/libgmp.so.10', 'BINARY'), + ('libQt5PrintSupport.so.5', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/printsupport/../../lib/libQt5PrintSupport.so.5', + 'BINARY'), + ('libidn.so.11', '/usr/lib/x86_64-linux-gnu/libidn.so.11', 'BINARY'), + ('libhogweed.so.4', '/usr/lib/x86_64-linux-gnu/libhogweed.so.4', 'BINARY'), + ('libgssapi_krb5.so.2', + '/usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2', + 'BINARY'), + ('libavahi-common.so.3', + '/usr/lib/x86_64-linux-gnu/libavahi-common.so.3', + 'BINARY'), + ('libcups.so.2', '/usr/lib/x86_64-linux-gnu/libcups.so.2', 'BINARY'), + ('libcom_err.so.2', '/lib/x86_64-linux-gnu/libcom_err.so.2', 'BINARY'), + ('libtasn1.so.6', '/usr/lib/x86_64-linux-gnu/libtasn1.so.6', 'BINARY'), + ('libcrypto.so.1.0.0', '/lib/x86_64-linux-gnu/libcrypto.so.1.0.0', 'BINARY'), + ('libssl.so.1.0.0', '/lib/x86_64-linux-gnu/libssl.so.1.0.0', 'BINARY'), + ('libreadline.so.6', '/lib/x86_64-linux-gnu/libreadline.so.6', 'BINARY'), + ('libtinfo.so.5', '/lib/x86_64-linux-gnu/libtinfo.so.5', 'BINARY'), + ('libbz2.so.1.0', '/lib/x86_64-linux-gnu/libbz2.so.1.0', 'BINARY'), + ('libpython3.5m.so.1.0', + '/usr/lib/x86_64-linux-gnu/libpython3.5m.so.1.0', + 'BINARY')], + [], + [], + [('base_library.zip', + '/home/perapisar/Temp/mkxp/synglechance/journal/unix/build/journal/base_library.zip', + 'DATA')], + []) diff --git a/journal/unix/build/journal/out00-COLLECT.toc b/journal/unix/build/journal/out00-COLLECT.toc new file mode 100644 index 0000000..bc0ca99 --- /dev/null +++ b/journal/unix/build/journal/out00-COLLECT.toc @@ -0,0 +1,502 @@ +([('_______', + '/home/perapisar/Temp/mkxp/synglechance/journal/unix/build/journal/_______', + 'EXECUTABLE'), + ('libz.so.1', '/lib/x86_64-linux-gnu/libz.so.1', 'BINARY'), + ('libexpat.so.1', '/lib/x86_64-linux-gnu/libexpat.so.1', 'BINARY'), + ('PyQt5/Qt/plugins/platforms/libqlinuxfb.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/libqlinuxfb.so', + 'BINARY'), + ('PyQt5/Qt/plugins/platforms/libqxcb.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/libqxcb.so', + 'BINARY'), + ('PyQt5/Qt/plugins/platforms/libqvnc.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/libqvnc.so', + 'BINARY'), + ('PyQt5/Qt/plugins/platforms/libqoffscreen.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/libqoffscreen.so', + 'BINARY'), + ('PyQt5/Qt/plugins/iconengines/libqsvgicon.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/iconengines/libqsvgicon.so', + 'BINARY'), + ('PyQt5/Qt/plugins/platforms/libqminimal.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/libqminimal.so', + 'BINARY'), + ('PyQt5/Qt/plugins/imageformats/libqtiff.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/imageformats/libqtiff.so', + 'BINARY'), + ('PyQt5/Qt/plugins/platformthemes/libqgtk3.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platformthemes/libqgtk3.so', + 'BINARY'), + ('PyQt5/Qt/plugins/platforms/libqminimalegl.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/libqminimalegl.so', + 'BINARY'), + ('PyQt5/Qt/plugins/platforms/libqeglfs.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/libqeglfs.so', + 'BINARY'), + ('PyQt5/Qt/plugins/printsupport/libcupsprintersupport.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/printsupport/libcupsprintersupport.so', + 'BINARY'), + ('PyQt5/Qt/plugins/imageformats/libqgif.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/imageformats/libqgif.so', + 'BINARY'), + ('PyQt5/Qt/plugins/imageformats/libqwebp.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/imageformats/libqwebp.so', + 'BINARY'), + ('PyQt5/Qt/plugins/imageformats/libqjpeg.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/imageformats/libqjpeg.so', + 'BINARY'), + ('PyQt5/Qt/plugins/imageformats/libqico.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/imageformats/libqico.so', + 'BINARY'), + ('PyQt5/Qt/plugins/imageformats/libqicns.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/imageformats/libqicns.so', + 'BINARY'), + ('PyQt5/Qt/plugins/imageformats/libqsvg.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/imageformats/libqsvg.so', + 'BINARY'), + ('PyQt5/Qt/plugins/imageformats/libqtga.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/imageformats/libqtga.so', + 'BINARY'), + ('PyQt5/Qt/plugins/imageformats/libqwbmp.so', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/imageformats/libqwbmp.so', + 'BINARY'), + ('resource', + '/usr/lib/python3.5/lib-dynload/resource.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_ssl', + '/usr/lib/python3.5/lib-dynload/_ssl.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_codecs_hk', + '/usr/lib/python3.5/lib-dynload/_codecs_hk.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_codecs_tw', + '/usr/lib/python3.5/lib-dynload/_codecs_tw.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_codecs_jp', + '/usr/lib/python3.5/lib-dynload/_codecs_jp.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_codecs_cn', + '/usr/lib/python3.5/lib-dynload/_codecs_cn.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_codecs_kr', + '/usr/lib/python3.5/lib-dynload/_codecs_kr.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_codecs_iso2022', + '/usr/lib/python3.5/lib-dynload/_codecs_iso2022.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_multibytecodec', + '/usr/lib/python3.5/lib-dynload/_multibytecodec.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_opcode', + '/usr/lib/python3.5/lib-dynload/_opcode.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('readline', + '/usr/lib/python3.5/lib-dynload/readline.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_ctypes', + '/usr/lib/python3.5/lib-dynload/_ctypes.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('termios', + '/usr/lib/python3.5/lib-dynload/termios.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_hashlib', + '/usr/lib/python3.5/lib-dynload/_hashlib.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_bz2', + '/usr/lib/python3.5/lib-dynload/_bz2.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('_lzma', + '/usr/lib/python3.5/lib-dynload/_lzma.cpython-35m-x86_64-linux-gnu.so', + 'EXTENSION'), + ('PyQt5.QtGui', + '/usr/local/lib/python3.5/dist-packages/PyQt5/QtGui.so', + 'EXTENSION'), + ('sip', '/usr/local/lib/python3.5/dist-packages/sip.so', 'EXTENSION'), + ('PyQt5.Qt', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt.so', + 'EXTENSION'), + ('PyQt5.QtPrintSupport', + '/usr/local/lib/python3.5/dist-packages/PyQt5/QtPrintSupport.so', + 'EXTENSION'), + ('PyQt5.QtWidgets', + '/usr/local/lib/python3.5/dist-packages/PyQt5/QtWidgets.so', + 'EXTENSION'), + ('PyQt5.QtCore', + '/usr/local/lib/python3.5/dist-packages/PyQt5/QtCore.so', + 'EXTENSION'), + ('libgcc_s.so.1', '/lib/x86_64-linux-gnu/libgcc_s.so.1', 'BINARY'), + ('libXfixes.so.3', '/usr/lib/x86_64-linux-gnu/libXfixes.so.3', 'BINARY'), + ('libicuuc.so.56', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/../../lib/libicuuc.so.56', + 'BINARY'), + ('libX11-xcb.so.1', '/usr/lib/x86_64-linux-gnu/libX11-xcb.so.1', 'BINARY'), + ('libfreetype.so.6', '/usr/lib/x86_64-linux-gnu/libfreetype.so.6', 'BINARY'), + ('libxcb-sync.so.1', '/usr/lib/x86_64-linux-gnu/libxcb-sync.so.1', 'BINARY'), + ('libxcb-glx.so.0', '/usr/lib/x86_64-linux-gnu/libxcb-glx.so.0', 'BINARY'), + ('libQt5Gui.so.5', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/../../lib/libQt5Gui.so.5', + 'BINARY'), + ('libicui18n.so.56', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/../../lib/libicui18n.so.56', + 'BINARY'), + ('libX11.so.6', '/usr/lib/x86_64-linux-gnu/libX11.so.6', 'BINARY'), + ('libdrm.so.2', '/usr/lib/x86_64-linux-gnu/libdrm.so.2', 'BINARY'), + ('libglapi.so.0', '/usr/lib/x86_64-linux-gnu/libglapi.so.0', 'BINARY'), + ('libxcb-present.so.0', + '/usr/lib/x86_64-linux-gnu/libxcb-present.so.0', + 'BINARY'), + ('libpng12.so.0', '/lib/x86_64-linux-gnu/libpng12.so.0', 'BINARY'), + ('libXext.so.6', '/usr/lib/x86_64-linux-gnu/libXext.so.6', 'BINARY'), + ('libglib-2.0.so.0', '/lib/x86_64-linux-gnu/libglib-2.0.so.0', 'BINARY'), + ('libXau.so.6', '/usr/lib/x86_64-linux-gnu/libXau.so.6', 'BINARY'), + ('libXdamage.so.1', '/usr/lib/x86_64-linux-gnu/libXdamage.so.1', 'BINARY'), + ('libXdmcp.so.6', '/usr/lib/x86_64-linux-gnu/libXdmcp.so.6', 'BINARY'), + ('libQt5Core.so.5', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/../../lib/libQt5Core.so.5', + 'BINARY'), + ('libgthread-2.0.so.0', + '/usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0', + 'BINARY'), + ('libpcre.so.3', '/lib/x86_64-linux-gnu/libpcre.so.3', 'BINARY'), + ('libXxf86vm.so.1', '/usr/lib/x86_64-linux-gnu/libXxf86vm.so.1', 'BINARY'), + ('libfontconfig.so.1', + '/usr/lib/x86_64-linux-gnu/libfontconfig.so.1', + 'BINARY'), + ('libstdc++.so.6', '/usr/lib/x86_64-linux-gnu/libstdc++.so.6', 'BINARY'), + ('libicudata.so.56', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/../../lib/libicudata.so.56', + 'BINARY'), + ('libxshmfence.so.1', + '/usr/lib/x86_64-linux-gnu/libxshmfence.so.1', + 'BINARY'), + ('libdbus-1.so.3', '/lib/x86_64-linux-gnu/libdbus-1.so.3', 'BINARY'), + ('libQt5DBus.so.5', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/../../lib/libQt5DBus.so.5', + 'BINARY'), + ('libQt5XcbQpa.so.5', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/../../lib/libQt5XcbQpa.so.5', + 'BINARY'), + ('libgpg-error.so.0', '/lib/x86_64-linux-gnu/libgpg-error.so.0', 'BINARY'), + ('libgcrypt.so.20', '/lib/x86_64-linux-gnu/libgcrypt.so.20', 'BINARY'), + ('libselinux.so.1', '/lib/x86_64-linux-gnu/libselinux.so.1', 'BINARY'), + ('libsystemd.so.0', '/lib/x86_64-linux-gnu/libsystemd.so.0', 'BINARY'), + ('libXi.so.6', '/usr/lib/x86_64-linux-gnu/libXi.so.6', 'BINARY'), + ('libXrender.so.1', '/usr/lib/x86_64-linux-gnu/libXrender.so.1', 'BINARY'), + ('liblzma.so.5', '/lib/x86_64-linux-gnu/liblzma.so.5', 'BINARY'), + ('libQt5Network.so.5', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/platforms/../../lib/libQt5Network.so.5', + 'BINARY'), + ('libQt5Svg.so.5', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/iconengines/../../lib/libQt5Svg.so.5', + 'BINARY'), + ('libQt5Widgets.so.5', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/iconengines/../../lib/libQt5Widgets.so.5', + 'BINARY'), + ('libmircommon.so.7', + '/usr/lib/x86_64-linux-gnu/libmircommon.so.7', + 'BINARY'), + ('libXcomposite.so.1', + '/usr/lib/x86_64-linux-gnu/libXcomposite.so.1', + 'BINARY'), + ('libXrandr.so.2', '/usr/lib/x86_64-linux-gnu/libXrandr.so.2', 'BINARY'), + ('libepoxy.so.0', '/usr/lib/x86_64-linux-gnu/libepoxy.so.0', 'BINARY'), + ('libdatrie.so.1', '/usr/lib/x86_64-linux-gnu/libdatrie.so.1', 'BINARY'), + ('libpangocairo-1.0.so.0', + '/usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0', + 'BINARY'), + ('libprotobuf-lite.so.9', + '/usr/lib/x86_64-linux-gnu/libprotobuf-lite.so.9', + 'BINARY'), + ('libxcb-shm.so.0', '/usr/lib/x86_64-linux-gnu/libxcb-shm.so.0', 'BINARY'), + ('libgraphite2.so.3', + '/usr/lib/x86_64-linux-gnu/libgraphite2.so.3', + 'BINARY'), + ('libmircore.so.1', '/usr/lib/x86_64-linux-gnu/libmircore.so.1', 'BINARY'), + ('libcapnp-0.5.3.so', + '/usr/lib/x86_64-linux-gnu/libcapnp-0.5.3.so', + 'BINARY'), + ('libkj-0.5.3.so', '/usr/lib/x86_64-linux-gnu/libkj-0.5.3.so', 'BINARY'), + ('libatspi.so.0', '/usr/lib/x86_64-linux-gnu/libatspi.so.0', 'BINARY'), + ('libwayland-egl.so.1', + '/usr/lib/x86_64-linux-gnu/libwayland-egl.so.1', + 'BINARY'), + ('libharfbuzz.so.0', '/usr/lib/x86_64-linux-gnu/libharfbuzz.so.0', 'BINARY'), + ('libgdk_pixbuf-2.0.so.0', + '/usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0', + 'BINARY'), + ('libgio-2.0.so.0', '/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0', 'BINARY'), + ('libpixman-1.so.0', '/usr/lib/x86_64-linux-gnu/libpixman-1.so.0', 'BINARY'), + ('libXcursor.so.1', '/usr/lib/x86_64-linux-gnu/libXcursor.so.1', 'BINARY'), + ('libboost_system.so.1.58.0', + '/usr/lib/x86_64-linux-gnu/libboost_system.so.1.58.0', + 'BINARY'), + ('libXinerama.so.1', '/usr/lib/x86_64-linux-gnu/libXinerama.so.1', 'BINARY'), + ('libmirclient.so.9', + '/usr/lib/x86_64-linux-gnu/libmirclient.so.9', + 'BINARY'), + ('libgobject-2.0.so.0', + '/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0', + 'BINARY'), + ('libatk-bridge-2.0.so.0', + '/usr/lib/x86_64-linux-gnu/libatk-bridge-2.0.so.0', + 'BINARY'), + ('libffi.so.6', '/usr/lib/x86_64-linux-gnu/libffi.so.6', 'BINARY'), + ('libatk-1.0.so.0', '/usr/lib/x86_64-linux-gnu/libatk-1.0.so.0', 'BINARY'), + ('libpango-1.0.so.0', + '/usr/lib/x86_64-linux-gnu/libpango-1.0.so.0', + 'BINARY'), + ('libgmodule-2.0.so.0', + '/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0', + 'BINARY'), + ('libgdk-3.so.0', '/usr/lib/x86_64-linux-gnu/libgdk-3.so.0', 'BINARY'), + ('libgtk-3.so.0', '/usr/lib/x86_64-linux-gnu/libgtk-3.so.0', 'BINARY'), + ('libmirprotobuf.so.3', + '/usr/lib/x86_64-linux-gnu/libmirprotobuf.so.3', + 'BINARY'), + ('libwayland-cursor.so.0', + '/usr/lib/x86_64-linux-gnu/libwayland-cursor.so.0', + 'BINARY'), + ('libthai.so.0', '/usr/lib/x86_64-linux-gnu/libthai.so.0', 'BINARY'), + ('libxkbcommon.so.0', + '/usr/lib/x86_64-linux-gnu/libxkbcommon.so.0', + 'BINARY'), + ('libboost_filesystem.so.1.58.0', + '/usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.58.0', + 'BINARY'), + ('libpangoft2-1.0.so.0', + '/usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0', + 'BINARY'), + ('libwayland-client.so.0', + '/usr/lib/x86_64-linux-gnu/libwayland-client.so.0', + 'BINARY'), + ('libcairo-gobject.so.2', + '/usr/lib/x86_64-linux-gnu/libcairo-gobject.so.2', + 'BINARY'), + ('libxcb-render.so.0', + '/usr/lib/x86_64-linux-gnu/libxcb-render.so.0', + 'BINARY'), + ('libcairo.so.2', '/usr/lib/x86_64-linux-gnu/libcairo.so.2', 'BINARY'), + ('libxcb-xfixes.so.0', + '/usr/lib/x86_64-linux-gnu/libxcb-xfixes.so.0', + 'BINARY'), + ('libEGL.so.1', '/usr/lib/x86_64-linux-gnu/mesa-egl/libEGL.so.1', 'BINARY'), + ('libgbm.so.1', '/usr/lib/x86_64-linux-gnu/libgbm.so.1', 'BINARY'), + ('libwayland-server.so.0', + '/usr/lib/x86_64-linux-gnu/libwayland-server.so.0', + 'BINARY'), + ('libnettle.so.6', '/usr/lib/x86_64-linux-gnu/libnettle.so.6', 'BINARY'), + ('libkrb5support.so.0', + '/usr/lib/x86_64-linux-gnu/libkrb5support.so.0', + 'BINARY'), + ('libkeyutils.so.1', '/lib/x86_64-linux-gnu/libkeyutils.so.1', 'BINARY'), + ('libgnutls.so.30', '/usr/lib/x86_64-linux-gnu/libgnutls.so.30', 'BINARY'), + ('libavahi-client.so.3', + '/usr/lib/x86_64-linux-gnu/libavahi-client.so.3', + 'BINARY'), + ('libp11-kit.so.0', '/usr/lib/x86_64-linux-gnu/libp11-kit.so.0', 'BINARY'), + ('libk5crypto.so.3', '/usr/lib/x86_64-linux-gnu/libk5crypto.so.3', 'BINARY'), + ('libkrb5.so.3', '/usr/lib/x86_64-linux-gnu/libkrb5.so.3', 'BINARY'), + ('libgmp.so.10', '/usr/lib/x86_64-linux-gnu/libgmp.so.10', 'BINARY'), + ('libQt5PrintSupport.so.5', + '/usr/local/lib/python3.5/dist-packages/PyQt5/Qt/plugins/printsupport/../../lib/libQt5PrintSupport.so.5', + 'BINARY'), + ('libidn.so.11', '/usr/lib/x86_64-linux-gnu/libidn.so.11', 'BINARY'), + ('libhogweed.so.4', '/usr/lib/x86_64-linux-gnu/libhogweed.so.4', 'BINARY'), + ('libgssapi_krb5.so.2', + '/usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2', + 'BINARY'), + ('libavahi-common.so.3', + '/usr/lib/x86_64-linux-gnu/libavahi-common.so.3', + 'BINARY'), + ('libcups.so.2', '/usr/lib/x86_64-linux-gnu/libcups.so.2', 'BINARY'), + ('libcom_err.so.2', '/lib/x86_64-linux-gnu/libcom_err.so.2', 'BINARY'), + ('libtasn1.so.6', '/usr/lib/x86_64-linux-gnu/libtasn1.so.6', 'BINARY'), + ('libcrypto.so.1.0.0', '/lib/x86_64-linux-gnu/libcrypto.so.1.0.0', 'BINARY'), + ('libssl.so.1.0.0', '/lib/x86_64-linux-gnu/libssl.so.1.0.0', 'BINARY'), + ('libreadline.so.6', '/lib/x86_64-linux-gnu/libreadline.so.6', 'BINARY'), + ('libtinfo.so.5', '/lib/x86_64-linux-gnu/libtinfo.so.5', 'BINARY'), + ('libbz2.so.1.0', '/lib/x86_64-linux-gnu/libbz2.so.1.0', 'BINARY'), + ('libpython3.5m.so.1.0', + '/usr/lib/x86_64-linux-gnu/libpython3.5m.so.1.0', + 'BINARY'), + ('images/t10.png', 'images/t10.png', 'DATA'), + ('images/c7.png', 'images/c7.png', 'DATA'), + ('images/t4.png', 'images/t4.png', 'DATA'), + ('images/KO/t10.png', 'images/KO/t10.png', 'DATA'), + ('images/ZH-CN/t7.png', 'images/ZH-CN/t7.png', 'DATA'), + ('images/ZH-CN/t8.png', 'images/ZH-CN/t8.png', 'DATA'), + ('images/PTBR/t6.png', 'images/PTBR/t6.png', 'DATA'), + ('images/KO/c1.png', 'images/KO/c1.png', 'DATA'), + ('images/ZH-CN/s1.png', 'images/ZH-CN/s1.png', 'DATA'), + ('images/ES/t12.png', 'images/ES/t12.png', 'DATA'), + ('images/PTBR/S4.png', 'images/PTBR/S4.png', 'DATA'), + ('images/KO/t6.png', 'images/KO/t6.png', 'DATA'), + ('images/JA/t1.png', 'images/JA/t1.png', 'DATA'), + ('images/PTBR/t9.png', 'images/PTBR/t9.png', 'DATA'), + ('images/KO/t11.png', 'images/KO/t11.png', 'DATA'), + ('images/ZH-CN/t15.png', 'images/ZH-CN/t15.png', 'DATA'), + ('images/PTBR/t4.png', 'images/PTBR/t4.png', 'DATA'), + ('images/KO/t14.png', 'images/KO/t14.png', 'DATA'), + ('images/ES/S3.png', 'images/ES/S3.png', 'DATA'), + ('images/ES/t10.png', 'images/ES/t10.png', 'DATA'), + ('images/ES/t2.png', 'images/ES/t2.png', 'DATA'), + ('images/JA/save.png', 'images/JA/save.png', 'DATA'), + ('images/PTBR/final.png', 'images/PTBR/final.png', 'DATA'), + ('images/ZH-CN/t4.png', 'images/ZH-CN/t4.png', 'DATA'), + ('images/ZH-CN/t9.png', 'images/ZH-CN/t9.png', 'DATA'), + ('images/JA/t12.png', 'images/JA/t12.png', 'DATA'), + ('images/c6.png', 'images/c6.png', 'DATA'), + ('images/ES/t1.png', 'images/ES/t1.png', 'DATA'), + ('images/JA/s4.png', 'images/JA/s4.png', 'DATA'), + ('images/PTBR/t5.png', 'images/PTBR/t5.png', 'DATA'), + ('images/PTBR/t3.png', 'images/PTBR/t3.png', 'DATA'), + ('images/KO/t4.png', 'images/KO/t4.png', 'DATA'), + ('images/ES/t14.png', 'images/ES/t14.png', 'DATA'), + ('images/ES/t9.png', 'images/ES/t9.png', 'DATA'), + ('images/ES/t5.png', 'images/ES/t5.png', 'DATA'), + ('images/JA/t10.png', 'images/JA/t10.png', 'DATA'), + ('images/ZH-CN/t13.png', 'images/ZH-CN/t13.png', 'DATA'), + ('images/JA/s3.png', 'images/JA/s3.png', 'DATA'), + ('images/t1.png', 'images/t1.png', 'DATA'), + ('images/KO/c3.png', 'images/KO/c3.png', 'DATA'), + ('images/c1.png', 'images/c1.png', 'DATA'), + ('images/ZH-CN/s4.png', 'images/ZH-CN/s4.png', 'DATA'), + ('images/niko1.png', 'images/niko1.png', 'DATA'), + ('images/ZH-CN/s3.png', 'images/ZH-CN/s3.png', 'DATA'), + ('images/ZH-CN/final.png', 'images/ZH-CN/final.png', 'DATA'), + ('images/ES/c6.png', 'images/ES/c6.png', 'DATA'), + ('images/ES/save.png', 'images/ES/save.png', 'DATA'), + ('images/ES/final.png', 'images/ES/final.png', 'DATA'), + ('images/s1.png', 'images/s1.png', 'DATA'), + ('images/PTBR/c6.png', 'images/PTBR/c6.png', 'DATA'), + ('images/save.png', 'images/save.png', 'DATA'), + ('images/PTBR/t13.png', 'images/PTBR/t13.png', 'DATA'), + ('images/PTBR/c2.png', 'images/PTBR/c2.png', 'DATA'), + ('images/KO/t1.png', 'images/KO/t1.png', 'DATA'), + ('images/ZH-CN/save.png', 'images/ZH-CN/save.png', 'DATA'), + ('images/ES/t6.png', 'images/ES/t6.png', 'DATA'), + ('qt.conf', 'qt.conf', 'DATA'), + ('images/PTBR/t14.png', 'images/PTBR/t14.png', 'DATA'), + ('images/KO/t5.png', 'images/KO/t5.png', 'DATA'), + ('images/KO/t7.png', 'images/KO/t7.png', 'DATA'), + ('images/ZH-CN/t6.png', 'images/ZH-CN/t6.png', 'DATA'), + ('images/KO/t16.png', 'images/KO/t16.png', 'DATA'), + ('images/ZH-CN/t14.png', 'images/ZH-CN/t14.png', 'DATA'), + ('images/ZH-CN/t2.png', 'images/ZH-CN/t2.png', 'DATA'), + ('images/JA/c3.png', 'images/JA/c3.png', 'DATA'), + ('images/c2.png', 'images/c2.png', 'DATA'), + ('images/JA/s1.png', 'images/JA/s1.png', 'DATA'), + ('images/KO/save.png', 'images/KO/save.png', 'DATA'), + ('images/KO/c5.png', 'images/KO/c5.png', 'DATA'), + ('images/JA/c1.png', 'images/JA/c1.png', 'DATA'), + ('images/KO/c6.png', 'images/KO/c6.png', 'DATA'), + ('images/ZH-CN/c6.png', 'images/ZH-CN/c6.png', 'DATA'), + ('images/ZH-CN/t1.png', 'images/ZH-CN/t1.png', 'DATA'), + ('images/ES/t16.png', 'images/ES/t16.png', 'DATA'), + ('images/s3.png', 'images/s3.png', 'DATA'), + ('images/ZH-CN/c5.png', 'images/ZH-CN/c5.png', 'DATA'), + ('images/JA/t14.png', 'images/JA/t14.png', 'DATA'), + ('images/KO/c4.png', 'images/KO/c4.png', 'DATA'), + ('images/JA/t11.png', 'images/JA/t11.png', 'DATA'), + ('images/ZH-CN/t12.png', 'images/ZH-CN/t12.png', 'DATA'), + ('images/t6.png', 'images/t6.png', 'DATA'), + ('images/ZH-CN/t11.png', 'images/ZH-CN/t11.png', 'DATA'), + ('images/ES/S4.png', 'images/ES/S4.png', 'DATA'), + ('images/c3.png', 'images/c3.png', 'DATA'), + ('images/ES/c3.png', 'images/ES/c3.png', 'DATA'), + ('images/JA/c5.png', 'images/JA/c5.png', 'DATA'), + ('images/c5.png', 'images/c5.png', 'DATA'), + ('images/PTBR/t1.png', 'images/PTBR/t1.png', 'DATA'), + ('images/KO/s4.png', 'images/KO/s4.png', 'DATA'), + ('images/PTBR/t15.png', 'images/PTBR/t15.png', 'DATA'), + ('images/PTBR/S3.png', 'images/PTBR/S3.png', 'DATA'), + ('images/ZH-CN/t3.png', 'images/ZH-CN/t3.png', 'DATA'), + ('images/s4.png', 'images/s4.png', 'DATA'), + ('images/ES/t13.png', 'images/ES/t13.png', 'DATA'), + ('images/ES/S2.png', 'images/ES/S2.png', 'DATA'), + ('images/JA/s2.png', 'images/JA/s2.png', 'DATA'), + ('images/PTBR/c3.png', 'images/PTBR/c3.png', 'DATA'), + ('images/JA/t6.png', 'images/JA/t6.png', 'DATA'), + ('images/JA/t2.png', 'images/JA/t2.png', 'DATA'), + ('images/PTBR/S2.png', 'images/PTBR/S2.png', 'DATA'), + ('images/ZH-CN/t16.png', 'images/ZH-CN/t16.png', 'DATA'), + ('images/JA/c4.png', 'images/JA/c4.png', 'DATA'), + ('images/ZH-CN/c3.png', 'images/ZH-CN/c3.png', 'DATA'), + ('images/ZH-CN/c1.png', 'images/ZH-CN/c1.png', 'DATA'), + ('images/ES/t3.png', 'images/ES/t3.png', 'DATA'), + ('images/KO/s2.png', 'images/KO/s2.png', 'DATA'), + ('images/JA/c6.png', 'images/JA/c6.png', 'DATA'), + ('images/t11.png', 'images/t11.png', 'DATA'), + ('images/ZH-CN/t5.png', 'images/ZH-CN/t5.png', 'DATA'), + ('images/ES/c4.png', 'images/ES/c4.png', 'DATA'), + ('images/ES/t8.png', 'images/ES/t8.png', 'DATA'), + ('images/KO/t9.png', 'images/KO/t9.png', 'DATA'), + ('images/ES/t11.png', 'images/ES/t11.png', 'DATA'), + ('images/ES/t7.png', 'images/ES/t7.png', 'DATA'), + ('images/JA/t3.png', 'images/JA/t3.png', 'DATA'), + ('images/PTBR/t11.png', 'images/PTBR/t11.png', 'DATA'), + ('images/KO/c2.png', 'images/KO/c2.png', 'DATA'), + ('images/KO/t2.png', 'images/KO/t2.png', 'DATA'), + ('images/PTBR/c5.png', 'images/PTBR/c5.png', 'DATA'), + ('images/ES/c7.png', 'images/ES/c7.png', 'DATA'), + ('images/JA/t15.png', 'images/JA/t15.png', 'DATA'), + ('images/t13.png', 'images/t13.png', 'DATA'), + ('images/KO/t15.png', 'images/KO/t15.png', 'DATA'), + ('images/ZH-CN/c2.png', 'images/ZH-CN/c2.png', 'DATA'), + ('images/JA/t4.png', 'images/JA/t4.png', 'DATA'), + ('images/t14.png', 'images/t14.png', 'DATA'), + ('images/niko3.png', 'images/niko3.png', 'DATA'), + ('images/t2.png', 'images/t2.png', 'DATA'), + ('images/PTBR/t16.png', 'images/PTBR/t16.png', 'DATA'), + ('images/PTBR/t2.png', 'images/PTBR/t2.png', 'DATA'), + ('images/ZH-CN/t10.png', 'images/ZH-CN/t10.png', 'DATA'), + ('images/ZH-CN/c7.png', 'images/ZH-CN/c7.png', 'DATA'), + ('images/JA/t13.png', 'images/JA/t13.png', 'DATA'), + ('images/niko2.png', 'images/niko2.png', 'DATA'), + ('images/KO/t12.png', 'images/KO/t12.png', 'DATA'), + ('images/default.png', 'images/default.png', 'DATA'), + ('images/t12.png', 'images/t12.png', 'DATA'), + ('images/t16.png', 'images/t16.png', 'DATA'), + ('images/t7.png', 'images/t7.png', 'DATA'), + ('images/KO/t3.png', 'images/KO/t3.png', 'DATA'), + ('images/PTBR/t7.png', 'images/PTBR/t7.png', 'DATA'), + ('images/PTBR/c4.png', 'images/PTBR/c4.png', 'DATA'), + ('images/PTBR/c1.png', 'images/PTBR/c1.png', 'DATA'), + ('images/final.png', 'images/final.png', 'DATA'), + ('images/c4.png', 'images/c4.png', 'DATA'), + ('images/PTBR/save.png', 'images/PTBR/save.png', 'DATA'), + ('images/KO/final.png', 'images/KO/final.png', 'DATA'), + ('images/PTBR/c7.png', 'images/PTBR/c7.png', 'DATA'), + ('images/ZH-CN/c4.png', 'images/ZH-CN/c4.png', 'DATA'), + ('images/KO/s1.png', 'images/KO/s1.png', 'DATA'), + ('images/ES/t4.png', 'images/ES/t4.png', 'DATA'), + ('images/JA/t16.png', 'images/JA/t16.png', 'DATA'), + ('images/PTBR/t10.png', 'images/PTBR/t10.png', 'DATA'), + ('images/ES/c5.png', 'images/ES/c5.png', 'DATA'), + ('images/t8.png', 'images/t8.png', 'DATA'), + ('images/PTBR/t8.png', 'images/PTBR/t8.png', 'DATA'), + ('images/KO/s3.png', 'images/KO/s3.png', 'DATA'), + ('images/ZH-CN/s2.png', 'images/ZH-CN/s2.png', 'DATA'), + ('images/t5.png', 'images/t5.png', 'DATA'), + ('images/JA/t8.png', 'images/JA/t8.png', 'DATA'), + ('images/JA/t9.png', 'images/JA/t9.png', 'DATA'), + ('images/t15.png', 'images/t15.png', 'DATA'), + ('images/PTBR/S1.png', 'images/PTBR/S1.png', 'DATA'), + ('images/KO/t8.png', 'images/KO/t8.png', 'DATA'), + ('images/ES/S1.png', 'images/ES/S1.png', 'DATA'), + ('images/JA/t5.png', 'images/JA/t5.png', 'DATA'), + ('images/JA/c7.png', 'images/JA/c7.png', 'DATA'), + ('images/JA/t7.png', 'images/JA/t7.png', 'DATA'), + ('images/KO/t13.png', 'images/KO/t13.png', 'DATA'), + ('images/s2.png', 'images/s2.png', 'DATA'), + ('images/t9.png', 'images/t9.png', 'DATA'), + ('images/t3.png', 'images/t3.png', 'DATA'), + ('images/KO/c7.png', 'images/KO/c7.png', 'DATA'), + ('images/ES/c2.png', 'images/ES/c2.png', 'DATA'), + ('images/JA/final.png', 'images/JA/final.png', 'DATA'), + ('images/JA/c2.png', 'images/JA/c2.png', 'DATA'), + ('images/ES/t15.png', 'images/ES/t15.png', 'DATA'), + ('images/PTBR/t12.png', 'images/PTBR/t12.png', 'DATA'), + ('base_library.zip', + '/home/perapisar/Temp/mkxp/synglechance/journal/unix/build/journal/base_library.zip', + 'DATA')],) diff --git a/journal/unix/build/journal/out00-EXE.toc b/journal/unix/build/journal/out00-EXE.toc new file mode 100644 index 0000000..f32a6e8 --- /dev/null +++ b/journal/unix/build/journal/out00-EXE.toc @@ -0,0 +1,42 @@ +('/home/perapisar/Temp/mkxp/synglechance/journal/unix/build/journal/_______', + False, + False, + True, + None, + None, + False, + False, + None, + True, + '_______.pkg', + [('out00-PYZ.pyz', + '/home/perapisar/Temp/mkxp/synglechance/journal/unix/build/journal/out00-PYZ.pyz', + 'PYZ'), + ('struct', + '/home/perapisar/Temp/mkxp/synglechance/journal/unix/build/journal/localpycos/struct.pyo', + 'PYMODULE'), + ('pyimod01_os_path', + '/home/perapisar/Temp/mkxp/synglechance/journal/unix/build/journal/localpycos/pyimod01_os_path.pyc', + 'PYMODULE'), + ('pyimod02_archive', + '/home/perapisar/Temp/mkxp/synglechance/journal/unix/build/journal/localpycos/pyimod02_archive.pyc', + 'PYMODULE'), + ('pyimod03_importers', + '/home/perapisar/Temp/mkxp/synglechance/journal/unix/build/journal/localpycos/pyimod03_importers.pyc', + 'PYMODULE'), + ('pyiboot01_bootstrap', + '/usr/local/lib/python3.5/dist-packages/PyInstaller/loader/pyiboot01_bootstrap.py', + 'PYSOURCE'), + ('pyi_rth_qt5', + '/usr/local/lib/python3.5/dist-packages/PyInstaller/loader/rthooks/pyi_rth_qt5.py', + 'PYSOURCE'), + ('journal', + '/home/perapisar/Temp/mkxp/synglechance/journal/unix/journal.py', + 'PYSOURCE')], + [], + False, + False, + 1520886225, + [('run', + '/usr/local/lib/python3.5/dist-packages/PyInstaller/bootloader/Linux-64bit/run', + 'EXECUTABLE')]) diff --git a/journal/unix/build/journal/out00-PKG.pkg b/journal/unix/build/journal/out00-PKG.pkg new file mode 100644 index 0000000..54fe0a6 Binary files /dev/null and b/journal/unix/build/journal/out00-PKG.pkg differ diff --git a/journal/unix/build/journal/out00-PKG.toc b/journal/unix/build/journal/out00-PKG.toc new file mode 100644 index 0000000..0855099 --- /dev/null +++ b/journal/unix/build/journal/out00-PKG.toc @@ -0,0 +1,35 @@ +('/home/perapisar/Temp/mkxp/synglechance/journal/unix/build/journal/out00-PKG.pkg', + {'BINARY': 1, + 'DATA': 1, + 'EXECUTABLE': 1, + 'EXTENSION': 1, + 'PYMODULE': 1, + 'PYSOURCE': 1, + 'PYZ': 0}, + [('out00-PYZ.pyz', + '/home/perapisar/Temp/mkxp/synglechance/journal/unix/build/journal/out00-PYZ.pyz', + 'PYZ'), + ('struct', + '/home/perapisar/Temp/mkxp/synglechance/journal/unix/build/journal/localpycos/struct.pyo', + 'PYMODULE'), + ('pyimod01_os_path', + '/home/perapisar/Temp/mkxp/synglechance/journal/unix/build/journal/localpycos/pyimod01_os_path.pyc', + 'PYMODULE'), + ('pyimod02_archive', + '/home/perapisar/Temp/mkxp/synglechance/journal/unix/build/journal/localpycos/pyimod02_archive.pyc', + 'PYMODULE'), + ('pyimod03_importers', + '/home/perapisar/Temp/mkxp/synglechance/journal/unix/build/journal/localpycos/pyimod03_importers.pyc', + 'PYMODULE'), + ('pyiboot01_bootstrap', + '/usr/local/lib/python3.5/dist-packages/PyInstaller/loader/pyiboot01_bootstrap.py', + 'PYSOURCE'), + ('pyi_rth_qt5', + '/usr/local/lib/python3.5/dist-packages/PyInstaller/loader/rthooks/pyi_rth_qt5.py', + 'PYSOURCE'), + ('journal', + '/home/perapisar/Temp/mkxp/synglechance/journal/unix/journal.py', + 'PYSOURCE')], + True, + False, + False) diff --git a/journal/unix/build/journal/out00-PYZ.pyz b/journal/unix/build/journal/out00-PYZ.pyz new file mode 100644 index 0000000..ca43d16 Binary files /dev/null and b/journal/unix/build/journal/out00-PYZ.pyz differ diff --git a/journal/unix/build/journal/out00-PYZ.toc b/journal/unix/build/journal/out00-PYZ.toc new file mode 100644 index 0000000..8c42c96 --- /dev/null +++ b/journal/unix/build/journal/out00-PYZ.toc @@ -0,0 +1,161 @@ +('/home/perapisar/Temp/mkxp/synglechance/journal/unix/build/journal/out00-PYZ.pyz', + [('posixpath', '/usr/lib/python3.5/posixpath.py', 'PYMODULE'), + ('_strptime', '/usr/lib/python3.5/_strptime.py', 'PYMODULE'), + ('datetime', '/usr/lib/python3.5/datetime.py', 'PYMODULE'), + ('stringprep', '/usr/lib/python3.5/stringprep.py', 'PYMODULE'), + ('_compat_pickle', '/usr/lib/python3.5/_compat_pickle.py', 'PYMODULE'), + ('pickle', '/usr/lib/python3.5/pickle.py', 'PYMODULE'), + ('__future__', '/usr/lib/python3.5/__future__.py', 'PYMODULE'), + ('argparse', '/usr/lib/python3.5/argparse.py', 'PYMODULE'), + ('difflib', '/usr/lib/python3.5/difflib.py', 'PYMODULE'), + ('ast', '/usr/lib/python3.5/ast.py', 'PYMODULE'), + ('imp', '/usr/lib/python3.5/imp.py', 'PYMODULE'), + ('inspect', '/usr/lib/python3.5/inspect.py', 'PYMODULE'), + ('cmd', '/usr/lib/python3.5/cmd.py', 'PYMODULE'), + ('bdb', '/usr/lib/python3.5/bdb.py', 'PYMODULE'), + ('opcode', '/usr/lib/python3.5/opcode.py', 'PYMODULE'), + ('dis', '/usr/lib/python3.5/dis.py', 'PYMODULE'), + ('codeop', '/usr/lib/python3.5/codeop.py', 'PYMODULE'), + ('code', '/usr/lib/python3.5/code.py', 'PYMODULE'), + ('glob', '/usr/lib/python3.5/glob.py', 'PYMODULE'), + ('shlex', '/usr/lib/python3.5/shlex.py', 'PYMODULE'), + ('importlib._bootstrap', + '/usr/lib/python3.5/importlib/_bootstrap.py', + 'PYMODULE'), + ('importlib._bootstrap_external', + '/usr/lib/python3.5/importlib/_bootstrap_external.py', + 'PYMODULE'), + ('importlib.machinery', + '/usr/lib/python3.5/importlib/machinery.py', + 'PYMODULE'), + ('importlib.util', '/usr/lib/python3.5/importlib/util.py', 'PYMODULE'), + ('importlib.abc', '/usr/lib/python3.5/importlib/abc.py', 'PYMODULE'), + ('importlib', '/usr/lib/python3.5/importlib/__init__.py', 'PYMODULE'), + ('pkgutil', '/usr/lib/python3.5/pkgutil.py', 'PYMODULE'), + ('ctypes._endian', '/usr/lib/python3.5/ctypes/_endian.py', 'PYMODULE'), + ('ctypes', '/usr/lib/python3.5/ctypes/__init__.py', 'PYMODULE'), + ('xml', '/usr/lib/python3.5/xml/__init__.py', 'PYMODULE'), + ('xml.sax.expatreader', + '/usr/lib/python3.5/xml/sax/expatreader.py', + 'PYMODULE'), + ('xml.sax.saxutils', '/usr/lib/python3.5/xml/sax/saxutils.py', 'PYMODULE'), + ('urllib.request', '/usr/lib/python3.5/urllib/request.py', 'PYMODULE'), + ('getpass', '/usr/lib/python3.5/getpass.py', 'PYMODULE'), + ('nturl2path', '/usr/lib/python3.5/nturl2path.py', 'PYMODULE'), + ('ftplib', '/usr/lib/python3.5/ftplib.py', 'PYMODULE'), + ('netrc', '/usr/lib/python3.5/netrc.py', 'PYMODULE'), + ('http.cookiejar', '/usr/lib/python3.5/http/cookiejar.py', 'PYMODULE'), + ('urllib.response', '/usr/lib/python3.5/urllib/response.py', 'PYMODULE'), + ('urllib.error', '/usr/lib/python3.5/urllib/error.py', 'PYMODULE'), + ('bisect', '/usr/lib/python3.5/bisect.py', 'PYMODULE'), + ('xml.sax', '/usr/lib/python3.5/xml/sax/__init__.py', 'PYMODULE'), + ('xml.sax.handler', '/usr/lib/python3.5/xml/sax/handler.py', 'PYMODULE'), + ('xml.sax._exceptions', + '/usr/lib/python3.5/xml/sax/_exceptions.py', + 'PYMODULE'), + ('xml.sax.xmlreader', '/usr/lib/python3.5/xml/sax/xmlreader.py', 'PYMODULE'), + ('xml.parsers', '/usr/lib/python3.5/xml/parsers/__init__.py', 'PYMODULE'), + ('xml.parsers.expat', '/usr/lib/python3.5/xml/parsers/expat.py', 'PYMODULE'), + ('plistlib', '/usr/lib/python3.5/plistlib.py', 'PYMODULE'), + ('platform', '/usr/lib/python3.5/platform.py', 'PYMODULE'), + ('urllib.parse', '/usr/lib/python3.5/urllib/parse.py', 'PYMODULE'), + ('tempfile', '/usr/lib/python3.5/tempfile.py', 'PYMODULE'), + ('tty', '/usr/lib/python3.5/tty.py', 'PYMODULE'), + ('pydoc_data', '/usr/lib/python3.5/pydoc_data/__init__.py', 'PYMODULE'), + ('pydoc_data.topics', '/usr/lib/python3.5/pydoc_data/topics.py', 'PYMODULE'), + ('textwrap', '/usr/lib/python3.5/textwrap.py', 'PYMODULE'), + ('html.entities', '/usr/lib/python3.5/html/entities.py', 'PYMODULE'), + ('html', '/usr/lib/python3.5/html/__init__.py', 'PYMODULE'), + ('ipaddress', '/usr/lib/python3.5/ipaddress.py', 'PYMODULE'), + ('ssl', '/usr/lib/python3.5/ssl.py', 'PYMODULE'), + ('http.client', '/usr/lib/python3.5/http/client.py', 'PYMODULE'), + ('mimetypes', '/usr/lib/python3.5/mimetypes.py', 'PYMODULE'), + ('socketserver', '/usr/lib/python3.5/socketserver.py', 'PYMODULE'), + ('http', '/usr/lib/python3.5/http/__init__.py', 'PYMODULE'), + ('http.server', '/usr/lib/python3.5/http/server.py', 'PYMODULE'), + ('uu', '/usr/lib/python3.5/uu.py', 'PYMODULE'), + ('quopri', '/usr/lib/python3.5/quopri.py', 'PYMODULE'), + ('email.feedparser', '/usr/lib/python3.5/email/feedparser.py', 'PYMODULE'), + ('email.parser', '/usr/lib/python3.5/email/parser.py', 'PYMODULE'), + ('email', '/usr/lib/python3.5/email/__init__.py', 'PYMODULE'), + ('optparse', '/usr/lib/python3.5/optparse.py', 'PYMODULE'), + ('calendar', '/usr/lib/python3.5/calendar.py', 'PYMODULE'), + ('email._parseaddr', '/usr/lib/python3.5/email/_parseaddr.py', 'PYMODULE'), + ('email.utils', '/usr/lib/python3.5/email/utils.py', 'PYMODULE'), + ('email.errors', '/usr/lib/python3.5/email/errors.py', 'PYMODULE'), + ('email.header', '/usr/lib/python3.5/email/header.py', 'PYMODULE'), + ('email._policybase', '/usr/lib/python3.5/email/_policybase.py', 'PYMODULE'), + ('email.base64mime', '/usr/lib/python3.5/email/base64mime.py', 'PYMODULE'), + ('email.encoders', '/usr/lib/python3.5/email/encoders.py', 'PYMODULE'), + ('email.charset', '/usr/lib/python3.5/email/charset.py', 'PYMODULE'), + ('base64', '/usr/lib/python3.5/base64.py', 'PYMODULE'), + ('email._encoded_words', + '/usr/lib/python3.5/email/_encoded_words.py', + 'PYMODULE'), + ('hashlib', '/usr/lib/python3.5/hashlib.py', 'PYMODULE'), + ('random', '/usr/lib/python3.5/random.py', 'PYMODULE'), + ('email.generator', '/usr/lib/python3.5/email/generator.py', 'PYMODULE'), + ('email.iterators', '/usr/lib/python3.5/email/iterators.py', 'PYMODULE'), + ('urllib', '/usr/lib/python3.5/urllib/__init__.py', 'PYMODULE'), + ('email._header_value_parser', + '/usr/lib/python3.5/email/_header_value_parser.py', + 'PYMODULE'), + ('email.headerregistry', + '/usr/lib/python3.5/email/headerregistry.py', + 'PYMODULE'), + ('email.quoprimime', '/usr/lib/python3.5/email/quoprimime.py', 'PYMODULE'), + ('email.contentmanager', + '/usr/lib/python3.5/email/contentmanager.py', + 'PYMODULE'), + ('email.policy', '/usr/lib/python3.5/email/policy.py', 'PYMODULE'), + ('email.message', '/usr/lib/python3.5/email/message.py', 'PYMODULE'), + ('gzip', '/usr/lib/python3.5/gzip.py', 'PYMODULE'), + ('tarfile', '/usr/lib/python3.5/tarfile.py', 'PYMODULE'), + ('bz2', '/usr/lib/python3.5/bz2.py', 'PYMODULE'), + ('_compression', '/usr/lib/python3.5/_compression.py', 'PYMODULE'), + ('lzma', '/usr/lib/python3.5/lzma.py', 'PYMODULE'), + ('py_compile', '/usr/lib/python3.5/py_compile.py', 'PYMODULE'), + ('zipfile', '/usr/lib/python3.5/zipfile.py', 'PYMODULE'), + ('shutil', '/usr/lib/python3.5/shutil.py', 'PYMODULE'), + ('socket', '/usr/lib/python3.5/socket.py', 'PYMODULE'), + ('webbrowser', '/usr/lib/python3.5/webbrowser.py', 'PYMODULE'), + ('pydoc', '/usr/lib/python3.5/pydoc.py', 'PYMODULE'), + ('copy', '/usr/lib/python3.5/copy.py', 'PYMODULE'), + ('struct', '/usr/lib/python3.5/struct.py', 'PYMODULE'), + ('token', '/usr/lib/python3.5/token.py', 'PYMODULE'), + ('tokenize', '/usr/lib/python3.5/tokenize.py', 'PYMODULE'), + ('gettext', '/usr/lib/python3.5/gettext.py', 'PYMODULE'), + ('getopt', '/usr/lib/python3.5/getopt.py', 'PYMODULE'), + ('pdb', '/usr/lib/python3.5/pdb.py', 'PYMODULE'), + ('unittest.util', '/usr/lib/python3.5/unittest/util.py', 'PYMODULE'), + ('unittest.result', '/usr/lib/python3.5/unittest/result.py', 'PYMODULE'), + ('logging', '/usr/lib/python3.5/logging/__init__.py', 'PYMODULE'), + ('pprint', '/usr/lib/python3.5/pprint.py', 'PYMODULE'), + ('unittest.case', '/usr/lib/python3.5/unittest/case.py', 'PYMODULE'), + ('unittest.suite', '/usr/lib/python3.5/unittest/suite.py', 'PYMODULE'), + ('fnmatch', '/usr/lib/python3.5/fnmatch.py', 'PYMODULE'), + ('unittest.loader', '/usr/lib/python3.5/unittest/loader.py', 'PYMODULE'), + ('unittest.runner', '/usr/lib/python3.5/unittest/runner.py', 'PYMODULE'), + ('unittest.main', '/usr/lib/python3.5/unittest/main.py', 'PYMODULE'), + ('unittest.signals', '/usr/lib/python3.5/unittest/signals.py', 'PYMODULE'), + ('unittest', '/usr/lib/python3.5/unittest/__init__.py', 'PYMODULE'), + ('doctest', '/usr/lib/python3.5/doctest.py', 'PYMODULE'), + ('stat', '/usr/lib/python3.5/stat.py', 'PYMODULE'), + ('genericpath', '/usr/lib/python3.5/genericpath.py', 'PYMODULE'), + ('string', '/usr/lib/python3.5/string.py', 'PYMODULE'), + ('ntpath', '/usr/lib/python3.5/ntpath.py', 'PYMODULE'), + ('warnings', '/usr/lib/python3.5/warnings.py', 'PYMODULE'), + ('enum', '/usr/lib/python3.5/enum.py', 'PYMODULE'), + ('signal', '/usr/lib/python3.5/signal.py', 'PYMODULE'), + ('contextlib', '/usr/lib/python3.5/contextlib.py', 'PYMODULE'), + ('_threading_local', '/usr/lib/python3.5/_threading_local.py', 'PYMODULE'), + ('threading', '/usr/lib/python3.5/threading.py', 'PYMODULE'), + ('selectors', '/usr/lib/python3.5/selectors.py', 'PYMODULE'), + ('dummy_threading', '/usr/lib/python3.5/dummy_threading.py', 'PYMODULE'), + ('subprocess', '/usr/lib/python3.5/subprocess.py', 'PYMODULE'), + ('_dummy_thread', '/usr/lib/python3.5/_dummy_thread.py', 'PYMODULE'), + ('ctypes.wintypes', '/usr/lib/python3.5/ctypes/wintypes.py', 'PYMODULE'), + ('PyQt5', + '/usr/local/lib/python3.5/dist-packages/PyQt5/__init__.py', + 'PYMODULE'), + ('os', '/usr/lib/python3.5/os.py', 'PYMODULE')]) diff --git a/journal/unix/build/journal/warnjournal.txt b/journal/unix/build/journal/warnjournal.txt new file mode 100644 index 0000000..657c69b --- /dev/null +++ b/journal/unix/build/journal/warnjournal.txt @@ -0,0 +1,15 @@ +missing module named 'org.python' - imported by pickle, /home/perapisar/Temp/mkxp/synglechance/journal/unix/journal.py, xml.sax +excluded module named _frozen_importlib - imported by importlib, importlib.abc, /home/perapisar/Temp/mkxp/synglechance/journal/unix/journal.py +missing module named _frozen_importlib_external - imported by importlib._bootstrap, importlib, importlib.abc, /home/perapisar/Temp/mkxp/synglechance/journal/unix/journal.py +missing module named _winreg - imported by platform, /home/perapisar/Temp/mkxp/synglechance/journal/unix/journal.py +missing module named _scproxy - imported by urllib.request +missing module named java - imported by platform, /home/perapisar/Temp/mkxp/synglechance/journal/unix/journal.py +missing module named 'java.lang' - imported by platform, /home/perapisar/Temp/mkxp/synglechance/journal/unix/journal.py, xml.sax._exceptions +missing module named vms_lib - imported by platform, /home/perapisar/Temp/mkxp/synglechance/journal/unix/journal.py +missing module named winreg - imported by platform, mimetypes, /home/perapisar/Temp/mkxp/synglechance/journal/unix/journal.py, urllib.request +missing module named org - imported by copy, /home/perapisar/Temp/mkxp/synglechance/journal/unix/journal.py +missing module named nt - imported by os, ntpath, shutil, /home/perapisar/Temp/mkxp/synglechance/journal/unix/journal.py +missing module named ce - imported by os, /home/perapisar/Temp/mkxp/synglechance/journal/unix/journal.py +missing module named msvcrt - imported by subprocess, /home/perapisar/Temp/mkxp/synglechance/journal/unix/journal.py, getpass +missing module named _winapi - imported by subprocess, /home/perapisar/Temp/mkxp/synglechance/journal/unix/journal.py +missing module named _dummy_threading - imported by dummy_threading, /home/perapisar/Temp/mkxp/synglechance/journal/unix/journal.py diff --git a/journal/unix/build/journal/xref-journal.html b/journal/unix/build/journal/xref-journal.html new file mode 100644 index 0000000..a580b32 --- /dev/null +++ b/journal/unix/build/journal/xref-journal.html @@ -0,0 +1,8474 @@ + + + modulegraph cross reference for journal.py, pyi_rth_qt5.py + + + +

modulegraph cross reference for journal.py, pyi_rth_qt5.py

+ +
+ + journal.py +Script
+imports: + 'java.lang' + • 'org.python' + • PyQt5.QtCore + • PyQt5.QtGui + • PyQt5.QtWidgets + • __future__ + • _ast + • _bootlocale + • _bz2 + • _codecs + • _codecs_cn + • _codecs_hk + • _codecs_iso2022 + • _codecs_jp + • _codecs_kr + • _codecs_tw + • _collections + • _collections_abc + • _compat_pickle + • _compression + • _ctypes + • _datetime + • _dummy_thread + • _dummy_threading + • _frozen_importlib + • _frozen_importlib_external + • _functools + • _hashlib + • _heapq + • _imp + • _io + • _locale + • _lzma + • _md5 + • _multibytecodec + • _opcode + • _operator + • _pickle + • _posixsubprocess + • _random + • _sha1 + • _sha256 + • _sha512 + • _signal + • _socket + • _sre + • _ssl + • _stat + • _string + • _strptime + • _struct + • _thread + • _threading_local + • _warnings + • _weakref + • _weakrefset + • _winapi + • _winreg + • abc + • argparse + • ast + • atexit + • base64 + • bdb + • binascii + • builtins + • bz2 + • calendar + • ce + • cmd + • code + • codecs + • codeop + • collections + • collections.__main__ + • collections.abc + • contextlib + • copy + • copyreg + • ctypes + • ctypes._endian + • ctypes.wintypes + • datetime + • difflib + • dis + • doctest + • dummy_threading + • email + • email._encoded_words + • email._header_value_parser + • email._parseaddr + • email._policybase + • email.base64mime + • email.charset + • email.contentmanager + • email.encoders + • email.errors + • email.feedparser + • email.generator + • email.header + • email.headerregistry + • email.iterators + • email.message + • email.parser + • email.policy + • email.quoprimime + • email.utils + • encodings + • encodings.aliases + • encodings.ascii + • encodings.base64_codec + • encodings.big5 + • encodings.big5hkscs + • encodings.bz2_codec + • encodings.charmap + • encodings.cp037 + • encodings.cp1006 + • encodings.cp1026 + • encodings.cp1125 + • encodings.cp1140 + • encodings.cp1250 + • encodings.cp1251 + • encodings.cp1252 + • encodings.cp1253 + • encodings.cp1254 + • encodings.cp1255 + • encodings.cp1256 + • encodings.cp1257 + • encodings.cp1258 + • encodings.cp273 + • encodings.cp424 + • encodings.cp437 + • encodings.cp500 + • encodings.cp65001 + • encodings.cp720 + • encodings.cp737 + • encodings.cp775 + • encodings.cp850 + • encodings.cp852 + • encodings.cp855 + • encodings.cp856 + • encodings.cp857 + • encodings.cp858 + • encodings.cp860 + • encodings.cp861 + • encodings.cp862 + • encodings.cp863 + • encodings.cp864 + • encodings.cp865 + • encodings.cp866 + • encodings.cp869 + • encodings.cp874 + • encodings.cp875 + • encodings.cp932 + • encodings.cp949 + • encodings.cp950 + • encodings.euc_jis_2004 + • encodings.euc_jisx0213 + • encodings.euc_jp + • encodings.euc_kr + • encodings.gb18030 + • encodings.gb2312 + • encodings.gbk + • encodings.hex_codec + • encodings.hp_roman8 + • encodings.hz + • encodings.idna + • encodings.iso2022_jp + • encodings.iso2022_jp_1 + • encodings.iso2022_jp_2 + • encodings.iso2022_jp_2004 + • encodings.iso2022_jp_3 + • encodings.iso2022_jp_ext + • encodings.iso2022_kr + • encodings.iso8859_1 + • encodings.iso8859_10 + • encodings.iso8859_11 + • encodings.iso8859_13 + • encodings.iso8859_14 + • encodings.iso8859_15 + • encodings.iso8859_16 + • encodings.iso8859_2 + • encodings.iso8859_3 + • encodings.iso8859_4 + • encodings.iso8859_5 + • encodings.iso8859_6 + • encodings.iso8859_7 + • encodings.iso8859_8 + • encodings.iso8859_9 + • encodings.johab + • encodings.koi8_r + • encodings.koi8_t + • encodings.koi8_u + • encodings.kz1048 + • encodings.latin_1 + • encodings.mac_arabic + • encodings.mac_centeuro + • encodings.mac_croatian + • encodings.mac_cyrillic + • encodings.mac_farsi + • encodings.mac_greek + • encodings.mac_iceland + • encodings.mac_latin2 + • encodings.mac_roman + • encodings.mac_romanian + • encodings.mac_turkish + • encodings.mbcs + • encodings.palmos + • encodings.ptcp154 + • encodings.punycode + • encodings.quopri_codec + • encodings.raw_unicode_escape + • encodings.rot_13 + • encodings.shift_jis + • encodings.shift_jis_2004 + • encodings.shift_jisx0213 + • encodings.tis_620 + • encodings.undefined + • encodings.unicode_escape + • encodings.unicode_internal + • encodings.utf_16 + • encodings.utf_16_be + • encodings.utf_16_le + • encodings.utf_32 + • encodings.utf_32_be + • encodings.utf_32_le + • encodings.utf_7 + • encodings.utf_8 + • encodings.utf_8_sig + • encodings.uu_codec + • encodings.zlib_codec + • enum + • errno + • fnmatch + • functools + • gc + • genericpath + • getopt + • gettext + • glob + • grp + • gzip + • hashlib + • heapq + • html + • html.entities + • http + • http.client + • http.server + • imp + • importlib + • importlib._bootstrap + • importlib._bootstrap_external + • importlib.abc + • importlib.machinery + • importlib.util + • inspect + • io + • ipaddress + • itertools + • java + • keyword + • linecache + • locale + • logging + • lzma + • marshal + • math + • mimetypes + • msvcrt + • nt + • ntpath + • opcode + • operator + • optparse + • org + • os + • pdb + • pickle + • pkgutil + • platform + • plistlib + • posix + • posixpath + • posixpath + • pprint + • pwd + • py_compile + • pydoc + • pydoc_data + • pydoc_data.topics + • pyexpat + • pyi_rth_qt5.py + • quopri + • random + • re + • readline + • reprlib + • resource + • select + • selectors + • shlex + • shutil + • signal + • socket + • socketserver + • sre_compile + • sre_constants + • sre_parse + • ssl + • stat + • string + • stringprep + • struct + • subprocess + • sys + • tarfile + • tempfile + • termios + • textwrap + • threading + • time + • token + • tokenize + • traceback + • tty + • types + • unicodedata + • unittest + • unittest.case + • unittest.loader + • unittest.main + • unittest.result + • unittest.runner + • unittest.signals + • unittest.suite + • unittest.util + • urllib + • urllib.parse + • uu + • vms_lib + • warnings + • weakref + • webbrowser + • winreg + • xml + • xml.parsers + • xml.parsers.expat + • zipfile + • zipimport + • zlib + +
+ +
+ +
+ + pyi_rth_qt5.py +Script
+imported by: + journal.py + +
+ +
+ +
+ + 'java.lang' +MissingModule
+imported by: + journal.py + • platform + • xml.sax._exceptions + +
+ +
+ +
+ + 'org.python' +MissingModule
+imported by: + journal.py + • pickle + • xml.sax + +
+ +
+ +
+ + PyQt5 +Package
+imports: + PyQt5.Qt + • sip + +
+
+imported by: + PyQt5.Qt + • PyQt5.QtCore + • PyQt5.QtGui + • PyQt5.QtPrintSupport + • PyQt5.QtWidgets + +
+ +
+ +
+ + PyQt5.Qt /usr/local/lib/python3.5/dist-packages/PyQt5/Qt.so
+imports: + PyQt5 + • PyQt5.QtCore + • PyQt5.QtGui + • PyQt5.QtPrintSupport + • PyQt5.QtWidgets + • sip + +
+
+imported by: + PyQt5 + +
+ +
+ +
+ + PyQt5.QtCore /usr/local/lib/python3.5/dist-packages/PyQt5/QtCore.so
+imports: + PyQt5 + • sip + +
+
+imported by: + PyQt5.Qt + • PyQt5.QtGui + • PyQt5.QtPrintSupport + • PyQt5.QtWidgets + • journal.py + +
+ +
+ +
+ + PyQt5.QtGui /usr/local/lib/python3.5/dist-packages/PyQt5/QtGui.so
+imports: + PyQt5 + • PyQt5.QtCore + • sip + +
+
+imported by: + PyQt5.Qt + • PyQt5.QtPrintSupport + • PyQt5.QtWidgets + • journal.py + +
+ +
+ +
+ + PyQt5.QtPrintSupport /usr/local/lib/python3.5/dist-packages/PyQt5/QtPrintSupport.so
+imports: + PyQt5 + • PyQt5.QtCore + • PyQt5.QtGui + • PyQt5.QtWidgets + • sip + +
+
+imported by: + PyQt5.Qt + +
+ +
+ +
+ + PyQt5.QtWidgets /usr/local/lib/python3.5/dist-packages/PyQt5/QtWidgets.so
+imports: + PyQt5 + • PyQt5.QtCore + • PyQt5.QtGui + • sip + +
+
+imported by: + PyQt5.Qt + • PyQt5.QtPrintSupport + • journal.py + +
+ +
+ +
+ + __future__ +SourceModule
+imported by: + codeop + • doctest + • journal.py + +
+ +
+ +
+ + _ast (builtin module)
+imported by: + ast + • journal.py + +
+ +
+ +
+ + _bisect (builtin module)
+imported by: + bisect + +
+ +
+ +
+ + _bootlocale +SourceModule
+imports: + _locale + • locale + • sys + +
+
+imported by: + journal.py + • locale + +
+ +
+ +
+ + _bz2 /usr/lib/python3.5/lib-dynload/_bz2.cpython-35m-x86_64-linux-gnu.so
+imported by: + bz2 + • journal.py + +
+ +
+ +
+ + _codecs (builtin module)
+imported by: + codecs + • journal.py + +
+ +
+ +
+ + _codecs_cn /usr/lib/python3.5/lib-dynload/_codecs_cn.cpython-35m-x86_64-linux-gnu.so
+imported by: + encodings.gb18030 + • encodings.gb2312 + • encodings.gbk + • encodings.hz + • journal.py + +
+ +
+ +
+ + _codecs_hk /usr/lib/python3.5/lib-dynload/_codecs_hk.cpython-35m-x86_64-linux-gnu.so
+imported by: + encodings.big5hkscs + • journal.py + +
+ +
+ +
+ + _codecs_iso2022 /usr/lib/python3.5/lib-dynload/_codecs_iso2022.cpython-35m-x86_64-linux-gnu.so + +
+ +
+ + _codecs_jp /usr/lib/python3.5/lib-dynload/_codecs_jp.cpython-35m-x86_64-linux-gnu.so + +
+ +
+ + _codecs_kr /usr/lib/python3.5/lib-dynload/_codecs_kr.cpython-35m-x86_64-linux-gnu.so
+imported by: + encodings.cp949 + • encodings.euc_kr + • encodings.johab + • journal.py + +
+ +
+ +
+ + _codecs_tw /usr/lib/python3.5/lib-dynload/_codecs_tw.cpython-35m-x86_64-linux-gnu.so
+imported by: + encodings.big5 + • encodings.cp950 + • journal.py + +
+ +
+ +
+ + _collections (builtin module)
+imported by: + collections + • journal.py + • threading + +
+ +
+ +
+ + _collections_abc +SourceModule
+imports: + abc + • sys + +
+
+imported by: + collections + • collections.abc + • journal.py + • os + • random + +
+ +
+ +
+ + _compat_pickle +SourceModule
+imported by: + _pickle + • journal.py + • pickle + +
+ +
+ +
+ + _compression +SourceModule
+imports: + io + +
+
+imported by: + bz2 + • gzip + • journal.py + • lzma + +
+ +
+ +
+ + _ctypes /usr/lib/python3.5/lib-dynload/_ctypes.cpython-35m-x86_64-linux-gnu.so
+imported by: + ctypes + • journal.py + +
+ +
+ +
+ + _datetime (builtin module)
+imports: + _strptime + • time + +
+
+imported by: + datetime + • journal.py + +
+ +
+ +
+ + _dummy_thread +SourceModule
+imports: + time + • traceback + +
+
+imported by: + _strptime + • dummy_threading + • journal.py + • reprlib + • tempfile + +
+ +
+ +
+ + _dummy_threading +MissingModule
+imported by: + dummy_threading + • journal.py + +
+ +
+ +
+ + _frozen_importlib +ExcludedModule
+imported by: + importlib + • importlib.abc + • journal.py + +
+ +
+ +
+ + _frozen_importlib_external +MissingModule
+imported by: + importlib + • importlib._bootstrap + • importlib.abc + • journal.py + +
+ +
+ +
+ + _functools (builtin module)
+imported by: + functools + • journal.py + +
+ +
+ +
+ + _hashlib /usr/lib/python3.5/lib-dynload/_hashlib.cpython-35m-x86_64-linux-gnu.so
+imported by: + hashlib + • journal.py + +
+ +
+ +
+ + _heapq (builtin module)
+imported by: + heapq + • journal.py + +
+ +
+ +
+ + _imp (builtin module)
+imported by: + imp + • importlib + • importlib.machinery + • journal.py + +
+ +
+ +
+ + _io (builtin module)
+imported by: + io + • journal.py + +
+ +
+ +
+ + _locale (builtin module)
+imported by: + _bootlocale + • journal.py + • locale + • re + +
+ +
+ +
+ + _lzma /usr/lib/python3.5/lib-dynload/_lzma.cpython-35m-x86_64-linux-gnu.so
+imported by: + journal.py + • lzma + +
+ +
+ +
+ + _md5 (builtin module)
+imported by: + hashlib + • journal.py + +
+ +
+ + + +
+ + _opcode /usr/lib/python3.5/lib-dynload/_opcode.cpython-35m-x86_64-linux-gnu.so
+imported by: + journal.py + • opcode + +
+ +
+ +
+ + _operator (builtin module)
+imported by: + journal.py + • operator + +
+ +
+ +
+ + _pickle (builtin module)
+imports: + _compat_pickle + • codecs + • copyreg + +
+
+imported by: + journal.py + • pickle + +
+ +
+ +
+ + _posixsubprocess (builtin module)
+imports: + gc + +
+
+imported by: + journal.py + • subprocess + +
+ +
+ +
+ + _random (builtin module)
+imported by: + journal.py + • random + +
+ +
+ +
+ + _scproxy +MissingModule
+imported by: + urllib.request + +
+ +
+ +
+ + _sha1 (builtin module)
+imported by: + hashlib + • journal.py + +
+ +
+ +
+ + _sha256 (builtin module)
+imported by: + hashlib + • journal.py + +
+ +
+ +
+ + _sha512 (builtin module)
+imported by: + hashlib + • journal.py + +
+ +
+ +
+ + _signal (builtin module)
+imported by: + journal.py + • signal + +
+ +
+ +
+ + _socket (builtin module)
+imported by: + journal.py + • socket + +
+ +
+ +
+ + _sre (builtin module)
+imports: + copy + • re + +
+
+imported by: + journal.py + • sre_compile + • sre_constants + +
+ +
+ +
+ + _ssl /usr/lib/python3.5/lib-dynload/_ssl.cpython-35m-x86_64-linux-gnu.so
+imports: + socket + +
+
+imported by: + journal.py + • ssl + +
+ +
+ +
+ + _stat (builtin module)
+imported by: + journal.py + • stat + +
+ +
+ +
+ + _string (builtin module)
+imported by: + journal.py + • string + +
+ +
+ +
+ + _strptime +SourceModule
+imports: + _dummy_thread + • _thread + • calendar + • datetime + • locale + • re + • time + +
+
+imported by: + _datetime + • datetime + • journal.py + • time + +
+ +
+ +
+ + _struct (builtin module)
+imported by: + journal.py + • struct + +
+ +
+ +
+ + _thread (builtin module)
+imported by: + _strptime + • functools + • journal.py + • reprlib + • tempfile + • threading + +
+ +
+ +
+ + _threading_local +SourceModule
+imports: + contextlib + • threading + • weakref + +
+
+imported by: + journal.py + • threading + +
+ +
+ +
+ + _warnings (builtin module)
+imported by: + journal.py + • warnings + +
+ +
+ +
+ + _weakref (builtin module)
+imported by: + _weakrefset + • collections + • journal.py + • weakref + • xml.sax.expatreader + +
+ +
+ +
+ + _weakrefset +SourceModule
+imports: + _weakref + +
+
+imported by: + abc + • journal.py + • threading + • weakref + +
+ +
+ +
+ + _winapi +MissingModule
+imported by: + journal.py + • subprocess + +
+ +
+ +
+ + _winreg +MissingModule
+imported by: + journal.py + • platform + +
+ +
+ +
+ + abc +SourceModule
+imports: + _weakrefset + +
+
+imported by: + _collections_abc + • email._policybase + • functools + • importlib.abc + • io + • journal.py + • selectors + +
+ +
+ +
+ + argparse +SourceModule
+imports: + collections + • copy + • gettext + • os + • re + • sys + • textwrap + +
+
+imported by: + code + • dis + • doctest + • http.server + • inspect + • journal.py + • pickle + • tarfile + • tokenize + • unittest.main + +
+ +
+ +
+ + ast +SourceModule
+imports: + _ast + • collections + • inspect + +
+
+imported by: + inspect + • journal.py + +
+ +
+ +
+ + atexit (builtin module)
+imported by: + journal.py + • logging + • weakref + +
+ +
+ +
+ + base64 +SourceModule
+imports: + binascii + • getopt + • re + • struct + • sys + • warnings + +
+ + +
+ +
+ + bdb +SourceModule
+imports: + fnmatch + • inspect + • linecache + • os + • reprlib + • sys + +
+
+imported by: + journal.py + • pdb + +
+ +
+ +
+ + binascii (builtin module)
+imported by: + base64 + • email._encoded_words + • email.base64mime + • email.contentmanager + • email.header + • encodings.hex_codec + • encodings.uu_codec + • http.server + • journal.py + • plistlib + • quopri + • uu + • zipfile + +
+ +
+ +
+ + bisect +SourceModule
+imports: + _bisect + +
+
+imported by: + urllib.request + +
+ +
+ +
+ + builtins (builtin module)
+imported by: + bz2 + • codecs + • copy + • doctest + • gettext + • gzip + • inspect + • journal.py + • locale + • lzma + • operator + • pydoc + • reprlib + • subprocess + • tarfile + • tokenize + +
+ +
+ +
+ + bz2 +SourceModule
+imports: + _bz2 + • _compression + • builtins + • dummy_threading + • io + • threading + • warnings + +
+
+imported by: + encodings.bz2_codec + • journal.py + • shutil + • tarfile + • zipfile + +
+ +
+ +
+ + calendar +SourceModule
+imports: + datetime + • locale + • optparse + • sys + +
+
+imported by: + _strptime + • email._parseaddr + • http.cookiejar + • journal.py + • ssl + +
+ +
+ +
+ + ce +MissingModule
+imported by: + journal.py + • os + +
+ +
+ +
+ + cmd +SourceModule
+imports: + readline + • string + • sys + +
+
+imported by: + journal.py + • pdb + +
+ +
+ +
+ + code +SourceModule
+imports: + argparse + • codeop + • readline + • sys + • traceback + +
+
+imported by: + journal.py + • pdb + +
+ +
+ +
+ + codecs +SourceModule
+imports: + _codecs + • builtins + • encodings + • sys + +
+
+imported by: + _pickle + • encodings + • encodings.ascii + • encodings.base64_codec + • encodings.big5 + • encodings.big5hkscs + • encodings.bz2_codec + • encodings.charmap + • encodings.cp037 + • encodings.cp1006 + • encodings.cp1026 + • encodings.cp1125 + • encodings.cp1140 + • encodings.cp1250 + • encodings.cp1251 + • encodings.cp1252 + • encodings.cp1253 + • encodings.cp1254 + • encodings.cp1255 + • encodings.cp1256 + • encodings.cp1257 + • encodings.cp1258 + • encodings.cp273 + • encodings.cp424 + • encodings.cp437 + • encodings.cp500 + • encodings.cp65001 + • encodings.cp720 + • encodings.cp737 + • encodings.cp775 + • encodings.cp850 + • encodings.cp852 + • encodings.cp855 + • encodings.cp856 + • encodings.cp857 + • encodings.cp858 + • encodings.cp860 + • encodings.cp861 + • encodings.cp862 + • encodings.cp863 + • encodings.cp864 + • encodings.cp865 + • encodings.cp866 + • encodings.cp869 + • encodings.cp874 + • encodings.cp875 + • encodings.cp932 + • encodings.cp949 + • encodings.cp950 + • encodings.euc_jis_2004 + • encodings.euc_jisx0213 + • encodings.euc_jp + • encodings.euc_kr + • encodings.gb18030 + • encodings.gb2312 + • encodings.gbk + • encodings.hex_codec + • encodings.hp_roman8 + • encodings.hz + • encodings.idna + • encodings.iso2022_jp + • encodings.iso2022_jp_1 + • encodings.iso2022_jp_2 + • encodings.iso2022_jp_2004 + • encodings.iso2022_jp_3 + • encodings.iso2022_jp_ext + • encodings.iso2022_kr + • encodings.iso8859_1 + • encodings.iso8859_10 + • encodings.iso8859_11 + • encodings.iso8859_13 + • encodings.iso8859_14 + • encodings.iso8859_15 + • encodings.iso8859_16 + • encodings.iso8859_2 + • encodings.iso8859_3 + • encodings.iso8859_4 + • encodings.iso8859_5 + • encodings.iso8859_6 + • encodings.iso8859_7 + • encodings.iso8859_8 + • encodings.iso8859_9 + • encodings.johab + • encodings.koi8_r + • encodings.koi8_t + • encodings.koi8_u + • encodings.kz1048 + • encodings.latin_1 + • encodings.mac_arabic + • encodings.mac_centeuro + • encodings.mac_croatian + • encodings.mac_cyrillic + • encodings.mac_farsi + • encodings.mac_greek + • encodings.mac_iceland + • encodings.mac_latin2 + • encodings.mac_roman + • encodings.mac_romanian + • encodings.mac_turkish + • encodings.mbcs + • encodings.palmos + • encodings.ptcp154 + • encodings.punycode + • encodings.quopri_codec + • encodings.raw_unicode_escape + • encodings.rot_13 + • encodings.shift_jis + • encodings.shift_jis_2004 + • encodings.shift_jisx0213 + • encodings.tis_620 + • encodings.undefined + • encodings.unicode_escape + • encodings.unicode_internal + • encodings.utf_16 + • encodings.utf_16_be + • encodings.utf_16_le + • encodings.utf_32 + • encodings.utf_32_be + • encodings.utf_32_le + • encodings.utf_7 + • encodings.utf_8 + • encodings.utf_8_sig + • encodings.uu_codec + • encodings.zlib_codec + • journal.py + • pickle + • plistlib + • tokenize + • xml.sax.saxutils + +
+ +
+ +
+ + codeop +SourceModule
+imports: + __future__ + +
+
+imported by: + code + • journal.py + +
+ +
+ +
+ + collections +Package
+imports: + _collections + • _collections_abc + • _weakref + • copy + • heapq + • itertools + • keyword + • operator + • reprlib + • sys + • warnings + +
+
+imported by: + argparse + • ast + • collections.__main__ + • collections.abc + • contextlib + • difflib + • dis + • doctest + • email._header_value_parser + • email.feedparser + • enum + • functools + • http.client + • inspect + • journal.py + • locale + • logging + • platform + • pprint + • pydoc + • selectors + • shlex + • shutil + • ssl + • string + • threading + • tokenize + • traceback + • unittest.case + • unittest.util + • urllib.parse + • urllib.request + • weakref + +
+ +
+ +
+ + collections.__main__ +SourceModule
+imports: + collections + • doctest + • pickle + +
+
+imported by: + journal.py + +
+ +
+ +
+ + collections.abc +SourceModule
+imports: + _collections_abc + • collections + +
+
+imported by: + inspect + • journal.py + • types + +
+ +
+ +
+ + contextlib +SourceModule
+imports: + collections + • functools + • sys + +
+
+imported by: + _threading_local + • getpass + • importlib.util + • journal.py + • plistlib + • unittest.case + • urllib.request + +
+ +
+ +
+ + copy +SourceModule
+imports: + builtins + • copyreg + • org + • types + • weakref + +
+
+imported by: + _sre + • argparse + • collections + • email.generator + • gettext + • http.cookiejar + • http.server + • journal.py + • tarfile + • weakref + • webbrowser + +
+ +
+ +
+ + copyreg +SourceModule
+imported by: + _pickle + • copy + • journal.py + • pickle + • re + +
+ +
+ +
+ + ctypes +Package
+imports: + _ctypes + • ctypes._endian + • os + • struct + • sys + +
+
+imported by: + ctypes._endian + • ctypes.wintypes + • journal.py + • platform + +
+ +
+ +
+ + ctypes._endian +SourceModule
+imports: + ctypes + • sys + +
+
+imported by: + ctypes + • journal.py + +
+ +
+ +
+ + ctypes.wintypes +SourceModule
+imports: + ctypes + +
+
+imported by: + journal.py + • platform + +
+ +
+ +
+ + datetime +SourceModule
+imports: + _datetime + • _strptime + • math + • time + +
+
+imported by: + _strptime + • calendar + • email.utils + • http.cookiejar + • journal.py + • plistlib + +
+ +
+ +
+ + difflib +SourceModule
+imports: + collections + • difflib + • doctest + • heapq + • re + +
+
+imported by: + difflib + • doctest + • journal.py + • unittest.case + +
+ +
+ +
+ + dis +SourceModule
+imports: + argparse + • collections + • io + • opcode + • sys + • types + +
+
+imported by: + inspect + • journal.py + • pdb + +
+ +
+ +
+ + doctest +SourceModule
+imports: + __future__ + • argparse + • builtins + • collections + • difflib + • inspect + • io + • linecache + • os + • pdb + • re + • sys + • traceback + • unittest + +
+
+imported by: + collections.__main__ + • difflib + • heapq + • journal.py + • pickle + +
+ +
+ +
+ + dummy_threading +SourceModule
+imports: + _dummy_thread + • _dummy_threading + • sys + • threading + +
+
+imported by: + bz2 + • http.cookiejar + • journal.py + • socketserver + • subprocess + • zipfile + +
+ +
+ + + +
+ + email._encoded_words +SourceModule
+imports: + base64 + • binascii + • email + • email.errors + • functools + • re + • string + +
+
+imported by: + email._header_value_parser + • email.message + • journal.py + +
+ +
+ +
+ + email._header_value_parser +SourceModule
+imports: + collections + • email + • email._encoded_words + • email.errors + • email.utils + • operator + • re + • string + • urllib + +
+
+imported by: + email + • email.headerregistry + • journal.py + +
+ +
+ +
+ + email._parseaddr +SourceModule
+imports: + calendar + • email + • time + +
+
+imported by: + email.utils + • journal.py + +
+ +
+ +
+ + email._policybase +SourceModule
+imports: + abc + • email + • email.charset + • email.header + • email.utils + +
+
+imported by: + email.feedparser + • email.message + • email.parser + • email.policy + • journal.py + +
+ +
+ +
+ + email.base64mime +SourceModule
+imports: + base64 + • binascii + • email + +
+
+imported by: + email.charset + • email.header + • journal.py + +
+ +
+ +
+ + email.charset +SourceModule
+imports: + email + • email.base64mime + • email.encoders + • email.errors + • email.quoprimime + • functools + +
+
+imported by: + email._policybase + • email.contentmanager + • email.header + • email.message + • email.utils + • journal.py + +
+ +
+ +
+ + email.contentmanager +SourceModule
+imports: + binascii + • email + • email.charset + • email.errors + • email.message + • email.quoprimime + +
+
+imported by: + email.policy + • journal.py + +
+ +
+ +
+ + email.encoders +SourceModule
+imports: + base64 + • email + • quopri + +
+
+imported by: + email.charset + • journal.py + +
+ +
+ +
+ + email.errors +SourceModule
+imports: + email + +
+ + +
+ +
+ + email.feedparser +SourceModule
+imports: + collections + • email + • email._policybase + • email.errors + • email.message + • re + +
+
+imported by: + email.parser + • journal.py + +
+ +
+ +
+ + email.generator +SourceModule
+imports: + copy + • email + • email.utils + • io + • random + • re + • sys + • time + +
+
+imported by: + email.message + • journal.py + +
+ +
+ +
+ + email.header +SourceModule
+imports: + binascii + • email + • email.base64mime + • email.charset + • email.errors + • email.quoprimime + • re + +
+
+imported by: + email + • email._policybase + • journal.py + +
+ +
+ +
+ + email.headerregistry +SourceModule
+imports: + email + • email._header_value_parser + • email.errors + • email.utils + • types + +
+
+imported by: + email.policy + • journal.py + +
+ +
+ +
+ + email.iterators +SourceModule
+imports: + email + • io + • sys + +
+
+imported by: + email.message + • journal.py + +
+ +
+ +
+ + email.message +SourceModule
+imports: + email + • email._encoded_words + • email._policybase + • email.charset + • email.errors + • email.generator + • email.iterators + • email.policy + • email.utils + • io + • quopri + • re + • uu + • warnings + +
+
+imported by: + email + • email.contentmanager + • email.feedparser + • http.client + • journal.py + • pydoc + +
+ +
+ +
+ + email.parser +SourceModule
+imports: + email + • email._policybase + • email.feedparser + • io + +
+
+imported by: + email + • http.client + • journal.py + +
+ +
+ +
+ + email.policy +SourceModule +
+imported by: + email.message + • journal.py + +
+ +
+ +
+ + email.quoprimime +SourceModule
+imports: + email + • re + • string + +
+
+imported by: + email.charset + • email.contentmanager + • email.header + • journal.py + +
+ +
+ +
+ + email.utils +SourceModule
+imports: + datetime + • email + • email._parseaddr + • email.charset + • os + • random + • re + • socket + • time + • urllib.parse + +
+ + +
+ +
+ + encodings +Package
+imports: + codecs + • encodings + • encodings.aliases + • encodings.ascii + • encodings.base64_codec + • encodings.big5 + • encodings.big5hkscs + • encodings.bz2_codec + • encodings.charmap + • encodings.cp037 + • encodings.cp1006 + • encodings.cp1026 + • encodings.cp1125 + • encodings.cp1140 + • encodings.cp1250 + • encodings.cp1251 + • encodings.cp1252 + • encodings.cp1253 + • encodings.cp1254 + • encodings.cp1255 + • encodings.cp1256 + • encodings.cp1257 + • encodings.cp1258 + • encodings.cp273 + • encodings.cp424 + • encodings.cp437 + • encodings.cp500 + • encodings.cp65001 + • encodings.cp720 + • encodings.cp737 + • encodings.cp775 + • encodings.cp850 + • encodings.cp852 + • encodings.cp855 + • encodings.cp856 + • encodings.cp857 + • encodings.cp858 + • encodings.cp860 + • encodings.cp861 + • encodings.cp862 + • encodings.cp863 + • encodings.cp864 + • encodings.cp865 + • encodings.cp866 + • encodings.cp869 + • encodings.cp874 + • encodings.cp875 + • encodings.cp932 + • encodings.cp949 + • encodings.cp950 + • encodings.euc_jis_2004 + • encodings.euc_jisx0213 + • encodings.euc_jp + • encodings.euc_kr + • encodings.gb18030 + • encodings.gb2312 + • encodings.gbk + • encodings.hex_codec + • encodings.hp_roman8 + • encodings.hz + • encodings.idna + • encodings.iso2022_jp + • encodings.iso2022_jp_1 + • encodings.iso2022_jp_2 + • encodings.iso2022_jp_2004 + • encodings.iso2022_jp_3 + • encodings.iso2022_jp_ext + • encodings.iso2022_kr + • encodings.iso8859_1 + • encodings.iso8859_10 + • encodings.iso8859_11 + • encodings.iso8859_13 + • encodings.iso8859_14 + • encodings.iso8859_15 + • encodings.iso8859_16 + • encodings.iso8859_2 + • encodings.iso8859_3 + • encodings.iso8859_4 + • encodings.iso8859_5 + • encodings.iso8859_6 + • encodings.iso8859_7 + • encodings.iso8859_8 + • encodings.iso8859_9 + • encodings.johab + • encodings.koi8_r + • encodings.koi8_t + • encodings.koi8_u + • encodings.kz1048 + • encodings.latin_1 + • encodings.mac_arabic + • encodings.mac_centeuro + • encodings.mac_croatian + • encodings.mac_cyrillic + • encodings.mac_farsi + • encodings.mac_greek + • encodings.mac_iceland + • encodings.mac_latin2 + • encodings.mac_roman + • encodings.mac_romanian + • encodings.mac_turkish + • encodings.mbcs + • encodings.palmos + • encodings.ptcp154 + • encodings.punycode + • encodings.quopri_codec + • encodings.raw_unicode_escape + • encodings.rot_13 + • encodings.shift_jis + • encodings.shift_jis_2004 + • encodings.shift_jisx0213 + • encodings.tis_620 + • encodings.undefined + • encodings.unicode_escape + • encodings.unicode_internal + • encodings.utf_16 + • encodings.utf_16_be + • encodings.utf_16_le + • encodings.utf_32 + • encodings.utf_32_be + • encodings.utf_32_le + • encodings.utf_7 + • encodings.utf_8 + • encodings.utf_8_sig + • encodings.uu_codec + • encodings.zlib_codec + +
+
+imported by: + codecs + • encodings + • encodings.aliases + • encodings.ascii + • encodings.base64_codec + • encodings.big5 + • encodings.big5hkscs + • encodings.bz2_codec + • encodings.charmap + • encodings.cp037 + • encodings.cp1006 + • encodings.cp1026 + • encodings.cp1125 + • encodings.cp1140 + • encodings.cp1250 + • encodings.cp1251 + • encodings.cp1252 + • encodings.cp1253 + • encodings.cp1254 + • encodings.cp1255 + • encodings.cp1256 + • encodings.cp1257 + • encodings.cp1258 + • encodings.cp273 + • encodings.cp424 + • encodings.cp437 + • encodings.cp500 + • encodings.cp65001 + • encodings.cp720 + • encodings.cp737 + • encodings.cp775 + • encodings.cp850 + • encodings.cp852 + • encodings.cp855 + • encodings.cp856 + • encodings.cp857 + • encodings.cp858 + • encodings.cp860 + • encodings.cp861 + • encodings.cp862 + • encodings.cp863 + • encodings.cp864 + • encodings.cp865 + • encodings.cp866 + • encodings.cp869 + • encodings.cp874 + • encodings.cp875 + • encodings.cp932 + • encodings.cp949 + • encodings.cp950 + • encodings.euc_jis_2004 + • encodings.euc_jisx0213 + • encodings.euc_jp + • encodings.euc_kr + • encodings.gb18030 + • encodings.gb2312 + • encodings.gbk + • encodings.hex_codec + • encodings.hp_roman8 + • encodings.hz + • encodings.idna + • encodings.iso2022_jp + • encodings.iso2022_jp_1 + • encodings.iso2022_jp_2 + • encodings.iso2022_jp_2004 + • encodings.iso2022_jp_3 + • encodings.iso2022_jp_ext + • encodings.iso2022_kr + • encodings.iso8859_1 + • encodings.iso8859_10 + • encodings.iso8859_11 + • encodings.iso8859_13 + • encodings.iso8859_14 + • encodings.iso8859_15 + • encodings.iso8859_16 + • encodings.iso8859_2 + • encodings.iso8859_3 + • encodings.iso8859_4 + • encodings.iso8859_5 + • encodings.iso8859_6 + • encodings.iso8859_7 + • encodings.iso8859_8 + • encodings.iso8859_9 + • encodings.johab + • encodings.koi8_r + • encodings.koi8_t + • encodings.koi8_u + • encodings.kz1048 + • encodings.latin_1 + • encodings.mac_arabic + • encodings.mac_centeuro + • encodings.mac_croatian + • encodings.mac_cyrillic + • encodings.mac_farsi + • encodings.mac_greek + • encodings.mac_iceland + • encodings.mac_latin2 + • encodings.mac_roman + • encodings.mac_romanian + • encodings.mac_turkish + • encodings.mbcs + • encodings.palmos + • encodings.ptcp154 + • encodings.punycode + • encodings.quopri_codec + • encodings.raw_unicode_escape + • encodings.rot_13 + • encodings.shift_jis + • encodings.shift_jis_2004 + • encodings.shift_jisx0213 + • encodings.tis_620 + • encodings.undefined + • encodings.unicode_escape + • encodings.unicode_internal + • encodings.utf_16 + • encodings.utf_16_be + • encodings.utf_16_le + • encodings.utf_32 + • encodings.utf_32_be + • encodings.utf_32_le + • encodings.utf_7 + • encodings.utf_8 + • encodings.utf_8_sig + • encodings.uu_codec + • encodings.zlib_codec + • journal.py + • locale + +
+ +
+ +
+ + encodings.aliases +SourceModule
+imports: + encodings + +
+
+imported by: + encodings + • journal.py + • locale + +
+ +
+ +
+ + encodings.ascii +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.base64_codec +SourceModule
+imports: + base64 + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.big5 +SourceModule
+imports: + _codecs_tw + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.big5hkscs +SourceModule
+imports: + _codecs_hk + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.bz2_codec +SourceModule
+imports: + bz2 + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.charmap +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp037 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp1006 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp1026 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp1125 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp1140 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp1250 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp1251 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp1252 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp1253 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp1254 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp1255 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp1256 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp1257 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp1258 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp273 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp424 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp437 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp500 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp65001 +SourceModule
+imports: + codecs + • encodings + • functools + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp720 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp737 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp775 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp850 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp852 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp855 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp856 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp857 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp858 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp860 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp861 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp862 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp863 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp864 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp865 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp866 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp869 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp874 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp875 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp932 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp949 +SourceModule
+imports: + _codecs_kr + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.cp950 +SourceModule
+imports: + _codecs_tw + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.euc_jis_2004 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.euc_jisx0213 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.euc_jp +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.euc_kr +SourceModule
+imports: + _codecs_kr + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.gb18030 +SourceModule
+imports: + _codecs_cn + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.gb2312 +SourceModule
+imports: + _codecs_cn + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.gbk +SourceModule
+imports: + _codecs_cn + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.hex_codec +SourceModule
+imports: + binascii + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.hp_roman8 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.hz +SourceModule
+imports: + _codecs_cn + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.idna +SourceModule
+imports: + codecs + • encodings + • re + • stringprep + • unicodedata + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso2022_jp +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso2022_jp_1 +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso2022_jp_2 +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso2022_jp_2004 +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso2022_jp_3 +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso2022_jp_ext +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso2022_kr +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso8859_1 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso8859_10 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso8859_11 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso8859_13 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso8859_14 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso8859_15 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso8859_16 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso8859_2 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso8859_3 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso8859_4 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso8859_5 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso8859_6 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso8859_7 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso8859_8 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.iso8859_9 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.johab +SourceModule
+imports: + _codecs_kr + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.koi8_r +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.koi8_t +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.koi8_u +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.kz1048 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.latin_1 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.mac_arabic +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.mac_centeuro +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.mac_croatian +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.mac_cyrillic +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.mac_farsi +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.mac_greek +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.mac_iceland +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.mac_latin2 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.mac_roman +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.mac_romanian +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.mac_turkish +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.mbcs +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.palmos +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.ptcp154 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.punycode +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.quopri_codec +SourceModule
+imports: + codecs + • encodings + • io + • quopri + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.raw_unicode_escape +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.rot_13 +SourceModule
+imports: + codecs + • encodings + • sys + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.shift_jis +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.shift_jis_2004 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.shift_jisx0213 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.tis_620 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.undefined +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.unicode_escape +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.unicode_internal +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.utf_16 +SourceModule
+imports: + codecs + • encodings + • sys + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.utf_16_be +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.utf_16_le +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.utf_32 +SourceModule
+imports: + codecs + • encodings + • sys + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.utf_32_be +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.utf_32_le +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.utf_7 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.utf_8 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.utf_8_sig +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.uu_codec +SourceModule
+imports: + binascii + • codecs + • encodings + • io + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + encodings.zlib_codec +SourceModule
+imports: + codecs + • encodings + • zlib + +
+
+imported by: + encodings + • journal.py + +
+ +
+ +
+ + enum +SourceModule
+imports: + collections + • sys + • types + +
+
+imported by: + http + • inspect + • journal.py + • plistlib + • signal + • socket + • ssl + +
+ +
+ +
+ + errno (builtin module)
+imported by: + gettext + • gzip + • journal.py + • os + • shutil + • socket + • socketserver + • ssl + • subprocess + • tempfile + +
+ +
+ +
+ + fnmatch +SourceModule
+imports: + functools + • os + • posixpath + • re + +
+
+imported by: + bdb + • glob + • journal.py + • shutil + • unittest.loader + • urllib.request + +
+ +
+ +
+ + ftplib +SourceModule
+imports: + netrc + • os + • re + • socket + • ssl + • sys + • warnings + +
+
+imported by: + urllib.request + +
+ +
+ +
+ + functools +SourceModule
+imports: + _functools + • _thread + • abc + • collections + • types + • weakref + +
+
+imported by: + contextlib + • email._encoded_words + • email.charset + • encodings.cp65001 + • fnmatch + • importlib.util + • inspect + • ipaddress + • journal.py + • linecache + • locale + • operator + • pkgutil + • signal + • tempfile + • types + • unittest.case + • unittest.loader + • unittest.result + • unittest.signals + +
+ +
+ +
+ + gc (builtin module)
+imports: + time + +
+
+imported by: + _posixsubprocess + • journal.py + • weakref + +
+ +
+ +
+ + genericpath +SourceModule
+imports: + os + • stat + +
+
+imported by: + journal.py + • ntpath + • posixpath + +
+ +
+ +
+ + getopt +SourceModule
+imports: + gettext + • os + • sys + +
+
+imported by: + base64 + • journal.py + • mimetypes + • pdb + • pydoc + • quopri + • webbrowser + +
+ +
+ +
+ + getpass +SourceModule
+imports: + contextlib + • io + • msvcrt + • os + • pwd + • sys + • termios + • warnings + +
+
+imported by: + urllib.request + +
+ +
+ +
+ + gettext +SourceModule
+imports: + builtins + • copy + • errno + • io + • locale + • os + • re + • struct + • sys + • token + • tokenize + +
+
+imported by: + argparse + • getopt + • journal.py + • optparse + +
+ +
+ +
+ + glob +SourceModule
+imports: + fnmatch + • os + • re + +
+
+imported by: + journal.py + • pdb + • webbrowser + +
+ +
+ +
+ + grp (builtin module)
+imported by: + journal.py + • shutil + • tarfile + +
+ +
+ +
+ + gzip +SourceModule
+imports: + _compression + • builtins + • errno + • io + • os + • struct + • sys + • time + • warnings + • zlib + +
+
+imported by: + journal.py + • tarfile + +
+ +
+ +
+ + hashlib +SourceModule
+imports: + _hashlib + • _md5 + • _sha1 + • _sha256 + • _sha512 + • logging + +
+
+imported by: + journal.py + • random + • urllib.request + +
+ +
+ +
+ + heapq +SourceModule
+imports: + _heapq + • doctest + +
+
+imported by: + collections + • difflib + • journal.py + +
+ +
+ +
+ + html +Package
+imports: + html.entities + • re + +
+
+imported by: + html.entities + • http.server + • journal.py + +
+ +
+ +
+ + html.entities +SourceModule
+imports: + html + +
+
+imported by: + html + • journal.py + +
+ +
+ +
+ + http +Package
+imports: + enum + +
+
+imported by: + http.client + • http.cookiejar + • http.server + • journal.py + +
+ +
+ +
+ + http.client +SourceModule
+imports: + collections + • email.message + • email.parser + • http + • io + • os + • re + • socket + • ssl + • urllib.parse + +
+
+imported by: + http.cookiejar + • http.server + • journal.py + • urllib.request + +
+ +
+ +
+ + http.cookiejar +SourceModule
+imports: + calendar + • copy + • datetime + • dummy_threading + • http + • http.client + • io + • logging + • re + • threading + • time + • traceback + • urllib.parse + • urllib.request + • warnings + +
+
+imported by: + urllib.request + +
+ +
+ +
+ + http.server +SourceModule
+imports: + argparse + • base64 + • binascii + • copy + • html + • http + • http.client + • io + • mimetypes + • os + • posixpath + • pwd + • select + • shutil + • socket + • socketserver + • subprocess + • sys + • time + • urllib.parse + +
+
+imported by: + journal.py + • pydoc + +
+ +
+ +
+ + imp +SourceModule
+imports: + _imp + • importlib + • importlib._bootstrap + • importlib._bootstrap_external + • importlib.machinery + • importlib.util + • os + • sys + • tokenize + • types + • warnings + +
+
+imported by: + inspect + • journal.py + +
+ +
+ + + +
+ + importlib._bootstrap +SourceModule
+imports: + _frozen_importlib_external + • importlib + +
+
+imported by: + imp + • importlib + • importlib.abc + • importlib.machinery + • importlib.util + • journal.py + • pydoc + +
+ +
+ +
+ + importlib._bootstrap_external +SourceModule
+imports: + importlib + • tokenize + +
+
+imported by: + imp + • importlib + • importlib.abc + • importlib.machinery + • importlib.util + • journal.py + • py_compile + • pydoc + +
+ +
+ +
+ + importlib.abc +SourceModule +
+imported by: + importlib + • importlib.util + • journal.py + +
+ +
+ +
+ + importlib.machinery +SourceModule +
+imported by: + imp + • importlib.abc + • inspect + • journal.py + • pkgutil + • py_compile + • pydoc + +
+ +
+ +
+ + importlib.util +SourceModule
+imports: + contextlib + • functools + • importlib + • importlib._bootstrap + • importlib._bootstrap_external + • importlib.abc + • sys + • types + • warnings + +
+
+imported by: + imp + • importlib + • journal.py + • pkgutil + • py_compile + • pydoc + • zipfile + +
+ +
+ +
+ + inspect +SourceModule
+imports: + argparse + • ast + • builtins + • collections + • collections.abc + • dis + • enum + • functools + • imp + • importlib + • importlib.machinery + • itertools + • linecache + • operator + • os + • re + • sys + • token + • tokenize + • types + • warnings + +
+
+imported by: + ast + • bdb + • doctest + • journal.py + • pdb + • pkgutil + • pydoc + +
+ +
+ +
+ + io +SourceModule
+imports: + _io + • abc + +
+
+imported by: + _compression + • bz2 + • dis + • doctest + • email.generator + • email.iterators + • email.message + • email.parser + • encodings.quopri_codec + • encodings.uu_codec + • getpass + • gettext + • gzip + • http.client + • http.cookiejar + • http.server + • journal.py + • logging + • lzma + • os + • pickle + • plistlib + • pprint + • pydoc + • quopri + • shlex + • socket + • socketserver + • subprocess + • tarfile + • tempfile + • tokenize + • unittest.result + • urllib.request + • xml.sax + • xml.sax.saxutils + • zipfile + +
+ +
+ +
+ + ipaddress +SourceModule
+imports: + functools + +
+
+imported by: + journal.py + • ssl + +
+ +
+ +
+ + itertools (builtin module)
+imported by: + collections + • inspect + • journal.py + • pickle + • plistlib + • reprlib + • threading + • tokenize + • traceback + • weakref + +
+ +
+ +
+ + java +MissingModule
+imported by: + journal.py + • platform + +
+ +
+ +
+ + keyword +SourceModule
+imports: + re + • sys + +
+
+imported by: + collections + • journal.py + +
+ +
+ +
+ + linecache +SourceModule
+imports: + functools + • os + • sys + • tokenize + +
+
+imported by: + bdb + • doctest + • inspect + • journal.py + • pdb + • traceback + • warnings + +
+ +
+ +
+ + locale +SourceModule
+imports: + _bootlocale + • _locale + • builtins + • collections + • encodings + • encodings.aliases + • functools + • os + • re + • sys + +
+
+imported by: + _bootlocale + • _strptime + • calendar + • gettext + • journal.py + +
+ +
+ +
+ + logging +Package
+imports: + atexit + • collections + • io + • os + • string + • sys + • threading + • time + • traceback + • warnings + • weakref + +
+
+imported by: + hashlib + • http.cookiejar + • journal.py + • unittest.case + +
+ +
+ +
+ + lzma +SourceModule
+imports: + _compression + • _lzma + • builtins + • io + +
+
+imported by: + journal.py + • shutil + • tarfile + • zipfile + +
+ +
+ +
+ + marshal (builtin module)
+imported by: + journal.py + • pkgutil + +
+ +
+ +
+ + math (builtin module)
+imported by: + datetime + • journal.py + • random + • selectors + +
+ +
+ +
+ + mimetypes +SourceModule
+imports: + getopt + • os + • posixpath + • sys + • urllib.parse + • winreg + +
+
+imported by: + http.server + • journal.py + • urllib.request + +
+ +
+ +
+ + msvcrt +MissingModule
+imported by: + getpass + • journal.py + • subprocess + +
+ +
+ +
+ + netrc +SourceModule
+imports: + os + • pwd + • shlex + • stat + +
+
+imported by: + ftplib + +
+ +
+ +
+ + nt +MissingModule
+imported by: + journal.py + • ntpath + • os + • shutil + +
+ +
+ +
+ + ntpath +SourceModule
+imports: + genericpath + • nt + • os + • stat + • string + • sys + • warnings + +
+
+imported by: + journal.py + • os + +
+ +
+ +
+ + nturl2path +SourceModule
+imports: + string + • urllib.parse + +
+
+imported by: + urllib.request + +
+ +
+ +
+ + opcode +SourceModule
+imports: + _opcode + +
+
+imported by: + dis + • journal.py + +
+ +
+ +
+ + operator +SourceModule
+imports: + _operator + • builtins + • functools + +
+
+imported by: + collections + • email._header_value_parser + • inspect + • journal.py + +
+ +
+ +
+ + optparse +SourceModule
+imports: + gettext + • os + • sys + • textwrap + +
+
+imported by: + calendar + • journal.py + • uu + +
+ +
+ +
+ + org +MissingModule
+imported by: + copy + • journal.py + +
+ +
+ +
+ + os +SourceModule
+imports: + _collections_abc + • ce + • errno + • io + • nt + • ntpath + • posix + • posixpath + • posixpath + • stat + • subprocess + • sys + • warnings + +
+
+imported by: + argparse + • bdb + • ctypes + • doctest + • email.utils + • fnmatch + • ftplib + • genericpath + • getopt + • getpass + • gettext + • glob + • gzip + • http.client + • http.server + • imp + • inspect + • journal.py + • linecache + • locale + • logging + • mimetypes + • netrc + • ntpath + • optparse + • pdb + • pkgutil + • platform + • plistlib + • posixpath + • posixpath + • py_compile + • pydoc + • random + • shlex + • shutil + • socket + • socketserver + • ssl + • subprocess + • tarfile + • tempfile + • unittest.loader + • unittest.main + • urllib.request + • uu + • webbrowser + • xml.sax + • xml.sax.saxutils + • zipfile + +
+ +
+ +
+ + pdb +SourceModule
+imports: + bdb + • cmd + • code + • dis + • getopt + • glob + • inspect + • linecache + • os + • pdb + • pprint + • pydoc + • re + • readline + • shlex + • signal + • sys + • traceback + +
+
+imported by: + doctest + • journal.py + • pdb + +
+ +
+ +
+ + pickle +SourceModule
+imports: + 'org.python' + • _compat_pickle + • _pickle + • argparse + • codecs + • copyreg + • doctest + • io + • itertools + • pprint + • re + • struct + • sys + • types + +
+
+imported by: + collections.__main__ + • journal.py + +
+ +
+ +
+ + pkgutil +SourceModule
+imports: + functools + • importlib + • importlib.machinery + • importlib.util + • inspect + • marshal + • os + • posixpath + • sys + • types + • warnings + • zipimport + +
+
+imported by: + journal.py + • pydoc + +
+ +
+ +
+ + platform +SourceModule
+imports: + 'java.lang' + • _winreg + • collections + • ctypes + • ctypes.wintypes + • java + • os + • plistlib + • re + • socket + • struct + • subprocess + • sys + • vms_lib + • warnings + • winreg + +
+
+imported by: + journal.py + • pydoc + +
+ +
+ +
+ + plistlib +SourceModule
+imports: + binascii + • codecs + • contextlib + • datetime + • enum + • io + • itertools + • os + • re + • struct + • warnings + • xml.parsers.expat + +
+
+imported by: + journal.py + • platform + +
+ +
+ +
+ + posix (builtin module)
+imports: + resource + +
+
+imported by: + journal.py + • os + +
+ +
+ +
+ + posixpath +AliasNode
+imports: + os + • posixpath + +
+
+imported by: + journal.py + • os + • pkgutil + • py_compile + • unittest + • unittest.util + +
+ +
+ +
+ + posixpath +SourceModule
+imports: + genericpath + • os + • pwd + • re + • stat + • sys + +
+
+imported by: + fnmatch + • http.server + • journal.py + • mimetypes + • os + • posixpath + • urllib.request + +
+ +
+ +
+ + pprint +SourceModule
+imports: + collections + • io + • re + • sys + • time + • types + +
+
+imported by: + journal.py + • pdb + • pickle + • unittest.case + +
+ +
+ +
+ + pwd (builtin module)
+imported by: + getpass + • http.server + • journal.py + • netrc + • posixpath + • shutil + • tarfile + • webbrowser + +
+ +
+ +
+ + py_compile +SourceModule
+imports: + importlib._bootstrap_external + • importlib.machinery + • importlib.util + • os + • posixpath + • sys + • traceback + +
+
+imported by: + journal.py + • zipfile + +
+ +
+ +
+ + pydoc +SourceModule
+imports: + builtins + • collections + • email.message + • getopt + • http.server + • importlib._bootstrap + • importlib._bootstrap_external + • importlib.machinery + • importlib.util + • inspect + • io + • os + • pkgutil + • platform + • pydoc_data.topics + • re + • reprlib + • select + • subprocess + • sys + • tempfile + • textwrap + • threading + • time + • tokenize + • traceback + • tty + • urllib.parse + • warnings + • webbrowser + +
+
+imported by: + journal.py + • pdb + +
+ +
+ +
+ + pydoc_data +Package
+imported by: + journal.py + • pydoc_data.topics + +
+ +
+ +
+ + pydoc_data.topics +SourceModule
+imports: + pydoc_data + +
+
+imported by: + journal.py + • pydoc + +
+ +
+ +
+ + pyexpat (builtin module)
+imported by: + journal.py + • xml.parsers.expat + +
+ +
+ +
+ + quopri +SourceModule
+imports: + binascii + • getopt + • io + • sys + +
+
+imported by: + email.encoders + • email.message + • encodings.quopri_codec + • journal.py + +
+ +
+ +
+ + random +SourceModule
+imports: + _collections_abc + • _random + • hashlib + • math + • os + • time + • types + • warnings + +
+
+imported by: + email.generator + • email.utils + • journal.py + • tempfile + +
+ +
+ +
+ + re +SourceModule
+imports: + _locale + • copyreg + • sre_compile + • sre_constants + • sre_parse + • sys + +
+
+imported by: + _sre + • _strptime + • argparse + • base64 + • difflib + • doctest + • email._encoded_words + • email._header_value_parser + • email.feedparser + • email.generator + • email.header + • email.message + • email.quoprimime + • email.utils + • encodings.idna + • fnmatch + • ftplib + • gettext + • glob + • html + • http.client + • http.cookiejar + • inspect + • journal.py + • keyword + • locale + • pdb + • pickle + • platform + • plistlib + • posixpath + • pprint + • pydoc + • shlex + • ssl + • string + • tarfile + • textwrap + • token + • tokenize + • unittest.case + • unittest.loader + • urllib.parse + • urllib.request + • warnings + • zipfile + +
+ +
+ +
+ + readline /usr/lib/python3.5/lib-dynload/readline.cpython-35m-x86_64-linux-gnu.so
+imported by: + cmd + • code + • journal.py + • pdb + +
+ +
+ +
+ + reprlib +SourceModule
+imports: + _dummy_thread + • _thread + • builtins + • itertools + +
+
+imported by: + bdb + • collections + • journal.py + • pydoc + +
+ +
+ +
+ + resource /usr/lib/python3.5/lib-dynload/resource.cpython-35m-x86_64-linux-gnu.so
+imported by: + journal.py + • posix + +
+ +
+ +
+ + select (builtin module)
+imported by: + http.server + • journal.py + • pydoc + • selectors + • subprocess + +
+ +
+ +
+ + selectors +SourceModule
+imports: + abc + • collections + • math + • select + • sys + +
+
+imported by: + journal.py + • socket + • socketserver + • subprocess + +
+ +
+ +
+ + shlex +SourceModule
+imports: + collections + • io + • os + • re + • sys + +
+
+imported by: + journal.py + • netrc + • pdb + • webbrowser + +
+ +
+ +
+ + shutil +SourceModule
+imports: + bz2 + • collections + • errno + • fnmatch + • grp + • lzma + • nt + • os + • pwd + • stat + • sys + • tarfile + • zipfile + +
+
+imported by: + http.server + • journal.py + • tarfile + • tempfile + • webbrowser + • zipfile + +
+ +
+ +
+ + signal +SourceModule
+imports: + _signal + • enum + • functools + +
+
+imported by: + journal.py + • pdb + • subprocess + • unittest.signals + +
+ +
+ +
+ + sip /usr/local/lib/python3.5/dist-packages/sip.so
+imported by: + PyQt5 + • PyQt5.Qt + • PyQt5.QtCore + • PyQt5.QtGui + • PyQt5.QtPrintSupport + • PyQt5.QtWidgets + +
+ +
+ +
+ + socket +SourceModule
+imports: + _socket + • enum + • errno + • io + • os + • selectors + • sys + +
+
+imported by: + _ssl + • email.utils + • ftplib + • http.client + • http.server + • journal.py + • platform + • socketserver + • ssl + • urllib.request + • webbrowser + +
+ +
+ +
+ + socketserver +SourceModule
+imports: + dummy_threading + • errno + • io + • os + • selectors + • socket + • threading + • time + • traceback + +
+
+imported by: + http.server + • journal.py + +
+ +
+ +
+ + sre_compile +SourceModule
+imports: + _sre + • sre_constants + • sre_parse + +
+
+imported by: + journal.py + • re + +
+ +
+ +
+ + sre_constants +SourceModule
+imports: + _sre + +
+
+imported by: + journal.py + • re + • sre_compile + • sre_parse + +
+ +
+ +
+ + sre_parse +SourceModule
+imports: + sre_constants + • warnings + +
+
+imported by: + journal.py + • re + • sre_compile + +
+ +
+ +
+ + ssl +SourceModule
+imports: + _ssl + • base64 + • calendar + • collections + • enum + • errno + • ipaddress + • os + • re + • socket + • sys + • textwrap + • time + • warnings + +
+
+imported by: + ftplib + • http.client + • journal.py + • urllib.request + +
+ +
+ +
+ + stat +SourceModule
+imports: + _stat + +
+
+imported by: + genericpath + • journal.py + • netrc + • ntpath + • os + • posixpath + • shutil + • tarfile + • tempfile + • zipfile + +
+ +
+ +
+ + string +SourceModule
+imports: + _string + • collections + • re + • warnings + +
+
+imported by: + cmd + • email._encoded_words + • email._header_value_parser + • email.quoprimime + • journal.py + • logging + • ntpath + • nturl2path + • urllib.request + +
+ +
+ +
+ + stringprep +SourceModule
+imports: + unicodedata + +
+
+imported by: + encodings.idna + • journal.py + +
+ +
+ +
+ + struct +SourceModule
+imports: + _struct + +
+
+imported by: + base64 + • ctypes + • gettext + • gzip + • journal.py + • pickle + • platform + • plistlib + • tarfile + • zipfile + +
+ +
+ +
+ + subprocess +SourceModule
+imports: + _posixsubprocess + • _winapi + • builtins + • dummy_threading + • errno + • io + • msvcrt + • os + • select + • selectors + • signal + • sys + • threading + • time + • warnings + +
+
+imported by: + http.server + • journal.py + • os + • platform + • pydoc + • webbrowser + +
+ +
+ +
+ + sys (builtin module)
+imported by: + _bootlocale + • _collections_abc + • argparse + • base64 + • bdb + • calendar + • cmd + • code + • codecs + • collections + • contextlib + • ctypes + • ctypes._endian + • dis + • doctest + • dummy_threading + • email.generator + • email.iterators + • encodings.rot_13 + • encodings.utf_16 + • encodings.utf_32 + • enum + • ftplib + • getopt + • getpass + • gettext + • gzip + • http.server + • imp + • importlib + • importlib.util + • inspect + • journal.py + • keyword + • linecache + • locale + • logging + • mimetypes + • ntpath + • optparse + • os + • pdb + • pickle + • pkgutil + • platform + • posixpath + • pprint + • py_compile + • pydoc + • quopri + • re + • selectors + • shlex + • shutil + • socket + • ssl + • subprocess + • tarfile + • tempfile + • threading + • token + • tokenize + • traceback + • types + • unittest.case + • unittest.loader + • unittest.main + • unittest.result + • unittest.runner + • unittest.suite + • urllib.parse + • urllib.request + • uu + • warnings + • weakref + • webbrowser + • xml.parsers.expat + • xml.sax + • xml.sax._exceptions + • xml.sax.expatreader + • xml.sax.saxutils + • zipfile + +
+ +
+ +
+ + tarfile +SourceModule
+imports: + argparse + • builtins + • bz2 + • copy + • grp + • gzip + • io + • lzma + • os + • pwd + • re + • shutil + • stat + • struct + • sys + • time + • warnings + • zlib + +
+
+imported by: + journal.py + • shutil + +
+ +
+ +
+ + tempfile +SourceModule
+imports: + _dummy_thread + • _thread + • errno + • functools + • io + • os + • random + • shutil + • stat + • sys + • warnings + • weakref + +
+
+imported by: + journal.py + • pydoc + • urllib.request + • urllib.response + • webbrowser + +
+ +
+ +
+ + termios /usr/lib/python3.5/lib-dynload/termios.cpython-35m-x86_64-linux-gnu.so
+imported by: + getpass + • journal.py + • tty + +
+ +
+ +
+ + textwrap +SourceModule
+imports: + re + +
+
+imported by: + argparse + • journal.py + • optparse + • pydoc + • ssl + • zipfile + +
+ +
+ +
+ + threading +SourceModule
+imports: + _collections + • _thread + • _threading_local + • _weakrefset + • collections + • itertools + • sys + • time + • traceback + +
+
+imported by: + _threading_local + • bz2 + • dummy_threading + • http.cookiejar + • journal.py + • logging + • pydoc + • socketserver + • subprocess + • zipfile + +
+ +
+ +
+ + time (builtin module)
+imports: + _strptime + +
+
+imported by: + _datetime + • _dummy_thread + • _strptime + • datetime + • email._parseaddr + • email.generator + • email.utils + • gc + • gzip + • http.cookiejar + • http.server + • journal.py + • logging + • pprint + • pydoc + • random + • socketserver + • ssl + • subprocess + • tarfile + • threading + • unittest.runner + • urllib.request + • zipfile + +
+ +
+ +
+ + token +SourceModule
+imports: + re + • sys + +
+
+imported by: + gettext + • inspect + • journal.py + • tokenize + +
+ +
+ +
+ + tokenize +SourceModule
+imports: + argparse + • builtins + • codecs + • collections + • io + • itertools + • re + • sys + • token + +
+
+imported by: + gettext + • imp + • importlib._bootstrap_external + • inspect + • journal.py + • linecache + • pydoc + +
+ +
+ +
+ + traceback +SourceModule
+imports: + collections + • itertools + • linecache + • sys + +
+
+imported by: + _dummy_thread + • code + • doctest + • http.cookiejar + • journal.py + • logging + • pdb + • py_compile + • pydoc + • socketserver + • threading + • unittest.case + • unittest.loader + • unittest.result + +
+ +
+ +
+ + tty +SourceModule
+imports: + termios + +
+
+imported by: + journal.py + • pydoc + +
+ +
+ +
+ + types +SourceModule
+imports: + collections.abc + • functools + • sys + +
+
+imported by: + copy + • dis + • email.headerregistry + • enum + • functools + • imp + • importlib + • importlib.util + • inspect + • journal.py + • pickle + • pkgutil + • pprint + • random + • unittest.loader + +
+ +
+ +
+ + unicodedata (builtin module)
+imported by: + encodings.idna + • journal.py + • stringprep + +
+ +
+ +
+ + unittest +Package + + +
+ +
+ + unittest.case +SourceModule
+imports: + collections + • contextlib + • difflib + • functools + • logging + • pprint + • re + • sys + • traceback + • unittest + • unittest.result + • unittest.util + • warnings + +
+
+imported by: + journal.py + • unittest + • unittest.loader + • unittest.suite + +
+ +
+ +
+ + unittest.loader +SourceModule
+imports: + fnmatch + • functools + • os + • re + • sys + • traceback + • types + • unittest + • unittest.case + • unittest.suite + • unittest.util + • warnings + +
+
+imported by: + journal.py + • unittest + • unittest.main + +
+ +
+ +
+ + unittest.main +SourceModule
+imports: + argparse + • os + • sys + • unittest + • unittest.loader + • unittest.runner + • unittest.signals + +
+
+imported by: + journal.py + • unittest + +
+ +
+ +
+ + unittest.result +SourceModule
+imports: + functools + • io + • sys + • traceback + • unittest + • unittest.util + +
+
+imported by: + journal.py + • unittest + • unittest.case + • unittest.runner + +
+ +
+ +
+ + unittest.runner +SourceModule
+imports: + sys + • time + • unittest + • unittest.result + • unittest.signals + • warnings + +
+
+imported by: + journal.py + • unittest + • unittest.main + +
+ +
+ +
+ + unittest.signals +SourceModule
+imports: + functools + • signal + • unittest + • weakref + +
+
+imported by: + journal.py + • unittest + • unittest.main + • unittest.runner + +
+ +
+ +
+ + unittest.suite +SourceModule
+imports: + sys + • unittest + • unittest.case + • unittest.util + +
+
+imported by: + journal.py + • unittest + • unittest.loader + +
+ +
+ +
+ + unittest.util +SourceModule
+imports: + collections + • posixpath + • unittest + +
+
+imported by: + journal.py + • unittest + • unittest.case + • unittest.loader + • unittest.result + • unittest.suite + +
+ +
+ +
+ + urllib +Package + +
+ +
+ + urllib.error +SourceModule
+imports: + urllib + • urllib.response + +
+
+imported by: + urllib.request + +
+ +
+ +
+ + urllib.parse +SourceModule
+imports: + collections + • re + • sys + • urllib + +
+
+imported by: + email.utils + • http.client + • http.cookiejar + • http.server + • journal.py + • mimetypes + • nturl2path + • pydoc + • urllib.request + • xml.sax.saxutils + +
+ +
+ +
+ + urllib.request +SourceModule
+imports: + _scproxy + • base64 + • bisect + • collections + • contextlib + • email + • email.utils + • fnmatch + • ftplib + • getpass + • hashlib + • http.client + • http.cookiejar + • io + • mimetypes + • nturl2path + • os + • posixpath + • re + • socket + • ssl + • string + • sys + • tempfile + • time + • urllib + • urllib.error + • urllib.parse + • urllib.response + • warnings + • winreg + +
+
+imported by: + http.cookiejar + • xml.sax.saxutils + +
+ +
+ +
+ + urllib.response +SourceModule
+imports: + tempfile + • urllib + +
+
+imported by: + urllib.error + • urllib.request + +
+ +
+ +
+ + uu +SourceModule
+imports: + binascii + • optparse + • os + • sys + +
+
+imported by: + email.message + • journal.py + +
+ +
+ +
+ + vms_lib +MissingModule
+imported by: + journal.py + • platform + +
+ +
+ +
+ + warnings +SourceModule
+imports: + _warnings + • linecache + • re + • sys + +
+
+imported by: + base64 + • bz2 + • collections + • email.message + • ftplib + • getpass + • gzip + • http.cookiejar + • imp + • importlib + • importlib.util + • inspect + • journal.py + • logging + • ntpath + • os + • pkgutil + • platform + • plistlib + • pydoc + • random + • sre_parse + • ssl + • string + • subprocess + • tarfile + • tempfile + • unittest.case + • unittest.loader + • unittest.runner + • urllib.request + • zipfile + +
+ +
+ +
+ + weakref +SourceModule
+imports: + _weakref + • _weakrefset + • atexit + • collections + • copy + • gc + • itertools + • sys + +
+
+imported by: + _threading_local + • copy + • functools + • journal.py + • logging + • tempfile + • unittest.signals + • xml.sax.expatreader + +
+ +
+ +
+ + webbrowser +SourceModule
+imports: + copy + • getopt + • glob + • os + • pwd + • shlex + • shutil + • socket + • subprocess + • sys + • tempfile + +
+
+imported by: + journal.py + • pydoc + +
+ +
+ +
+ + winreg +MissingModule
+imported by: + journal.py + • mimetypes + • platform + • urllib.request + +
+ +
+ +
+ + xml +Package
+imports: + xml.sax.expatreader + • xml.sax.xmlreader + +
+
+imported by: + journal.py + • xml.parsers + • xml.sax + +
+ +
+ +
+ + xml.parsers +Package
+imports: + xml + +
+
+imported by: + journal.py + • xml.parsers.expat + • xml.sax.expatreader + +
+ +
+ +
+ + xml.parsers.expat +SourceModule
+imports: + pyexpat + • sys + • xml.parsers + +
+
+imported by: + journal.py + • plistlib + • xml.sax.expatreader + +
+ +
+ +
+ + xml.sax +Package
+imports: + 'org.python' + • io + • os + • sys + • xml + • xml.sax + • xml.sax._exceptions + • xml.sax.expatreader + • xml.sax.handler + • xml.sax.saxutils + • xml.sax.xmlreader + +
+ + +
+ +
+ + xml.sax._exceptions +SourceModule
+imports: + 'java.lang' + • sys + • xml.sax + +
+
+imported by: + xml.sax + • xml.sax.expatreader + • xml.sax.xmlreader + +
+ +
+ +
+ + xml.sax.expatreader +SourceModule
+imports: + _weakref + • sys + • weakref + • xml.parsers + • xml.parsers.expat + • xml.sax + • xml.sax._exceptions + • xml.sax.handler + • xml.sax.saxutils + • xml.sax.xmlreader + +
+
+imported by: + xml + • xml.sax + +
+ +
+ +
+ + xml.sax.handler +SourceModule
+imports: + xml.sax + +
+
+imported by: + xml.sax + • xml.sax.expatreader + • xml.sax.saxutils + • xml.sax.xmlreader + +
+ +
+ +
+ + xml.sax.saxutils +SourceModule
+imports: + codecs + • io + • os + • sys + • urllib.parse + • urllib.request + • xml.sax + • xml.sax.handler + • xml.sax.xmlreader + +
+
+imported by: + xml.sax + • xml.sax.expatreader + • xml.sax.xmlreader + +
+ +
+ +
+ + xml.sax.xmlreader +SourceModule
+imports: + xml.sax + • xml.sax._exceptions + • xml.sax.handler + • xml.sax.saxutils + +
+
+imported by: + xml + • xml.sax + • xml.sax.expatreader + • xml.sax.saxutils + +
+ +
+ +
+ + zipfile +SourceModule
+imports: + binascii + • bz2 + • dummy_threading + • importlib.util + • io + • lzma + • os + • py_compile + • re + • shutil + • stat + • struct + • sys + • textwrap + • threading + • time + • warnings + • zlib + +
+
+imported by: + journal.py + • shutil + +
+ +
+ +
+ + zipimport (builtin module)
+imports: + zlib + +
+
+imported by: + journal.py + • pkgutil + +
+ +
+ +
+ + zlib (builtin module)
+imported by: + encodings.zlib_codec + • gzip + • journal.py + • tarfile + • zipfile + • zipimport + +
+ +
+ + + diff --git a/journal/unix/dist/_______/PyQt5.Qt.so b/journal/unix/dist/_______/PyQt5.Qt.so new file mode 100755 index 0000000..49bf79d Binary files /dev/null and b/journal/unix/dist/_______/PyQt5.Qt.so differ diff --git a/journal/unix/dist/_______/PyQt5.QtCore.so b/journal/unix/dist/_______/PyQt5.QtCore.so new file mode 100755 index 0000000..a1974fa Binary files /dev/null and b/journal/unix/dist/_______/PyQt5.QtCore.so differ diff --git a/journal/unix/dist/_______/PyQt5.QtGui.so b/journal/unix/dist/_______/PyQt5.QtGui.so new file mode 100755 index 0000000..c1dc35e Binary files /dev/null and b/journal/unix/dist/_______/PyQt5.QtGui.so differ diff --git a/journal/unix/dist/_______/PyQt5.QtPrintSupport.so b/journal/unix/dist/_______/PyQt5.QtPrintSupport.so new file mode 100755 index 0000000..3146530 Binary files /dev/null and b/journal/unix/dist/_______/PyQt5.QtPrintSupport.so differ diff --git a/journal/unix/dist/_______/PyQt5.QtWidgets.so b/journal/unix/dist/_______/PyQt5.QtWidgets.so new file mode 100755 index 0000000..d2749c8 Binary files /dev/null and b/journal/unix/dist/_______/PyQt5.QtWidgets.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/iconengines/libqsvgicon.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/iconengines/libqsvgicon.so new file mode 100755 index 0000000..01f9daa Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/iconengines/libqsvgicon.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqgif.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqgif.so new file mode 100755 index 0000000..3917e0d Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqgif.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqicns.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqicns.so new file mode 100755 index 0000000..e1a0e14 Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqicns.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqico.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqico.so new file mode 100755 index 0000000..11546ed Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqico.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqjpeg.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqjpeg.so new file mode 100755 index 0000000..cb088cd Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqjpeg.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqsvg.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqsvg.so new file mode 100755 index 0000000..8f1db3b Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqsvg.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqtga.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqtga.so new file mode 100755 index 0000000..42040a5 Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqtga.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqtiff.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqtiff.so new file mode 100755 index 0000000..ceaae0b Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqtiff.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqwbmp.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqwbmp.so new file mode 100755 index 0000000..2ed6a60 Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqwbmp.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqwebp.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqwebp.so new file mode 100755 index 0000000..c41a065 Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/imageformats/libqwebp.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqeglfs.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqeglfs.so new file mode 100755 index 0000000..6b0b4c5 Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqeglfs.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqlinuxfb.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqlinuxfb.so new file mode 100755 index 0000000..b399624 Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqlinuxfb.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqminimal.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqminimal.so new file mode 100755 index 0000000..12e4e1c Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqminimal.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqminimalegl.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqminimalegl.so new file mode 100755 index 0000000..9b20dc6 Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqminimalegl.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqoffscreen.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqoffscreen.so new file mode 100755 index 0000000..1aa70fd Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqoffscreen.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqvnc.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqvnc.so new file mode 100755 index 0000000..4adc7ae Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqvnc.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqxcb.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqxcb.so new file mode 100755 index 0000000..701a923 Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/platforms/libqxcb.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/platformthemes/libqgtk3.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/platformthemes/libqgtk3.so new file mode 100755 index 0000000..3154879 Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/platformthemes/libqgtk3.so differ diff --git a/journal/unix/dist/_______/PyQt5/Qt/plugins/printsupport/libcupsprintersupport.so b/journal/unix/dist/_______/PyQt5/Qt/plugins/printsupport/libcupsprintersupport.so new file mode 100755 index 0000000..0409b57 Binary files /dev/null and b/journal/unix/dist/_______/PyQt5/Qt/plugins/printsupport/libcupsprintersupport.so differ diff --git a/journal/unix/dist/_______/_______ b/journal/unix/dist/_______/_______ new file mode 100755 index 0000000..7cca9b5 Binary files /dev/null and b/journal/unix/dist/_______/_______ differ diff --git a/journal/unix/dist/_______/_bz2.so b/journal/unix/dist/_______/_bz2.so new file mode 100755 index 0000000..80fae55 Binary files /dev/null and b/journal/unix/dist/_______/_bz2.so differ diff --git a/journal/unix/dist/_______/_codecs_cn.so b/journal/unix/dist/_______/_codecs_cn.so new file mode 100755 index 0000000..4cf8447 Binary files /dev/null and b/journal/unix/dist/_______/_codecs_cn.so differ diff --git a/journal/unix/dist/_______/_codecs_hk.so b/journal/unix/dist/_______/_codecs_hk.so new file mode 100755 index 0000000..a178ded Binary files /dev/null and b/journal/unix/dist/_______/_codecs_hk.so differ diff --git a/journal/unix/dist/_______/_codecs_iso2022.so b/journal/unix/dist/_______/_codecs_iso2022.so new file mode 100755 index 0000000..2c88d6f Binary files /dev/null and b/journal/unix/dist/_______/_codecs_iso2022.so differ diff --git a/journal/unix/dist/_______/_codecs_jp.so b/journal/unix/dist/_______/_codecs_jp.so new file mode 100755 index 0000000..0c41c1b Binary files /dev/null and b/journal/unix/dist/_______/_codecs_jp.so differ diff --git a/journal/unix/dist/_______/_codecs_kr.so b/journal/unix/dist/_______/_codecs_kr.so new file mode 100755 index 0000000..d77a58a Binary files /dev/null and b/journal/unix/dist/_______/_codecs_kr.so differ diff --git a/journal/unix/dist/_______/_codecs_tw.so b/journal/unix/dist/_______/_codecs_tw.so new file mode 100755 index 0000000..51798b4 Binary files /dev/null and b/journal/unix/dist/_______/_codecs_tw.so differ diff --git a/journal/unix/dist/_______/_ctypes.so b/journal/unix/dist/_______/_ctypes.so new file mode 100755 index 0000000..ca743f7 Binary files /dev/null and b/journal/unix/dist/_______/_ctypes.so differ diff --git a/journal/unix/dist/_______/_hashlib.so b/journal/unix/dist/_______/_hashlib.so new file mode 100755 index 0000000..350747f Binary files /dev/null and b/journal/unix/dist/_______/_hashlib.so differ diff --git a/journal/unix/dist/_______/_lzma.so b/journal/unix/dist/_______/_lzma.so new file mode 100755 index 0000000..3b7318c Binary files /dev/null and b/journal/unix/dist/_______/_lzma.so differ diff --git a/journal/unix/dist/_______/_multibytecodec.so b/journal/unix/dist/_______/_multibytecodec.so new file mode 100755 index 0000000..92e5a45 Binary files /dev/null and b/journal/unix/dist/_______/_multibytecodec.so differ diff --git a/journal/unix/dist/_______/_opcode.so b/journal/unix/dist/_______/_opcode.so new file mode 100755 index 0000000..f76b3e0 Binary files /dev/null and b/journal/unix/dist/_______/_opcode.so differ diff --git a/journal/unix/dist/_______/_ssl.so b/journal/unix/dist/_______/_ssl.so new file mode 100755 index 0000000..2866c4c Binary files /dev/null and b/journal/unix/dist/_______/_ssl.so differ diff --git a/journal/unix/dist/_______/base_library.zip b/journal/unix/dist/_______/base_library.zip new file mode 100644 index 0000000..145e15c Binary files /dev/null and b/journal/unix/dist/_______/base_library.zip differ diff --git a/journal/unix/dist/_______/images/ES/S1.png b/journal/unix/dist/_______/images/ES/S1.png new file mode 100644 index 0000000..eccf1a6 Binary files /dev/null and b/journal/unix/dist/_______/images/ES/S1.png differ diff --git a/journal/unix/dist/_______/images/ES/S2.png b/journal/unix/dist/_______/images/ES/S2.png new file mode 100644 index 0000000..4cbb5e2 Binary files /dev/null and b/journal/unix/dist/_______/images/ES/S2.png differ diff --git a/journal/unix/dist/_______/images/ES/S3.png b/journal/unix/dist/_______/images/ES/S3.png new file mode 100644 index 0000000..70bf2c8 Binary files /dev/null and b/journal/unix/dist/_______/images/ES/S3.png differ diff --git a/journal/unix/dist/_______/images/ES/S4.png b/journal/unix/dist/_______/images/ES/S4.png new file mode 100644 index 0000000..c364ea3 Binary files /dev/null and b/journal/unix/dist/_______/images/ES/S4.png differ diff --git a/journal/unix/dist/_______/images/ES/c2.png b/journal/unix/dist/_______/images/ES/c2.png new file mode 100644 index 0000000..9ce0e9b Binary files /dev/null and b/journal/unix/dist/_______/images/ES/c2.png differ diff --git a/journal/unix/dist/_______/images/ES/c3.png b/journal/unix/dist/_______/images/ES/c3.png new file mode 100644 index 0000000..f651534 Binary files /dev/null and b/journal/unix/dist/_______/images/ES/c3.png differ diff --git a/journal/unix/dist/_______/images/ES/c4.png b/journal/unix/dist/_______/images/ES/c4.png new file mode 100644 index 0000000..0a2cf19 Binary files /dev/null and b/journal/unix/dist/_______/images/ES/c4.png differ diff --git a/journal/unix/dist/_______/images/ES/c5.png b/journal/unix/dist/_______/images/ES/c5.png new file mode 100644 index 0000000..892174f Binary files /dev/null and b/journal/unix/dist/_______/images/ES/c5.png differ diff --git a/journal/unix/dist/_______/images/ES/c6.png b/journal/unix/dist/_______/images/ES/c6.png new file mode 100644 index 0000000..550bf60 Binary files /dev/null and b/journal/unix/dist/_______/images/ES/c6.png differ diff --git a/journal/unix/dist/_______/images/ES/c7.png b/journal/unix/dist/_______/images/ES/c7.png new file mode 100644 index 0000000..c19b866 Binary files /dev/null and b/journal/unix/dist/_______/images/ES/c7.png differ diff --git a/journal/unix/dist/_______/images/ES/final.png b/journal/unix/dist/_______/images/ES/final.png new file mode 100644 index 0000000..094a62b Binary files /dev/null and b/journal/unix/dist/_______/images/ES/final.png differ diff --git a/journal/unix/dist/_______/images/ES/save.png b/journal/unix/dist/_______/images/ES/save.png new file mode 100644 index 0000000..4245651 Binary files /dev/null and b/journal/unix/dist/_______/images/ES/save.png differ diff --git a/journal/unix/dist/_______/images/ES/t1.png b/journal/unix/dist/_______/images/ES/t1.png new file mode 100644 index 0000000..a7cec40 Binary files /dev/null and b/journal/unix/dist/_______/images/ES/t1.png differ diff --git a/journal/unix/dist/_______/images/ES/t10.png b/journal/unix/dist/_______/images/ES/t10.png new file mode 100644 index 0000000..3ab3039 Binary files /dev/null and b/journal/unix/dist/_______/images/ES/t10.png differ diff --git a/journal/unix/dist/_______/images/ES/t11.png b/journal/unix/dist/_______/images/ES/t11.png new file mode 100644 index 0000000..8262d08 Binary files /dev/null and b/journal/unix/dist/_______/images/ES/t11.png differ diff --git a/journal/unix/dist/_______/images/ES/t12.png b/journal/unix/dist/_______/images/ES/t12.png new file mode 100644 index 0000000..28764cb Binary files /dev/null and b/journal/unix/dist/_______/images/ES/t12.png differ diff --git a/journal/unix/dist/_______/images/ES/t13.png b/journal/unix/dist/_______/images/ES/t13.png new file mode 100644 index 0000000..2128be7 Binary files /dev/null and b/journal/unix/dist/_______/images/ES/t13.png differ diff --git a/journal/unix/dist/_______/images/ES/t14.png b/journal/unix/dist/_______/images/ES/t14.png new file mode 100644 index 0000000..f35a76a Binary files /dev/null and b/journal/unix/dist/_______/images/ES/t14.png differ diff --git a/journal/unix/dist/_______/images/ES/t15.png b/journal/unix/dist/_______/images/ES/t15.png new file mode 100644 index 0000000..560337e Binary files /dev/null and b/journal/unix/dist/_______/images/ES/t15.png differ diff --git a/journal/unix/dist/_______/images/ES/t16.png b/journal/unix/dist/_______/images/ES/t16.png new file mode 100644 index 0000000..f5d9394 Binary files /dev/null and b/journal/unix/dist/_______/images/ES/t16.png differ diff --git a/journal/unix/dist/_______/images/ES/t2.png b/journal/unix/dist/_______/images/ES/t2.png new file mode 100644 index 0000000..56fa18d Binary files /dev/null and b/journal/unix/dist/_______/images/ES/t2.png differ diff --git a/journal/unix/dist/_______/images/ES/t3.png b/journal/unix/dist/_______/images/ES/t3.png new file mode 100644 index 0000000..452acca Binary files /dev/null and b/journal/unix/dist/_______/images/ES/t3.png differ diff --git a/journal/unix/dist/_______/images/ES/t4.png b/journal/unix/dist/_______/images/ES/t4.png new file mode 100644 index 0000000..6b6dcaa Binary files /dev/null and b/journal/unix/dist/_______/images/ES/t4.png differ diff --git a/journal/unix/dist/_______/images/ES/t5.png b/journal/unix/dist/_______/images/ES/t5.png new file mode 100644 index 0000000..be486b1 Binary files /dev/null and b/journal/unix/dist/_______/images/ES/t5.png differ diff --git a/journal/unix/dist/_______/images/ES/t6.png b/journal/unix/dist/_______/images/ES/t6.png new file mode 100644 index 0000000..e96533e Binary files /dev/null and b/journal/unix/dist/_______/images/ES/t6.png differ diff --git a/journal/unix/dist/_______/images/ES/t7.png b/journal/unix/dist/_______/images/ES/t7.png new file mode 100644 index 0000000..4c02b97 Binary files /dev/null and b/journal/unix/dist/_______/images/ES/t7.png differ diff --git a/journal/unix/dist/_______/images/ES/t8.png b/journal/unix/dist/_______/images/ES/t8.png new file mode 100644 index 0000000..e2b344c Binary files /dev/null and b/journal/unix/dist/_______/images/ES/t8.png differ diff --git a/journal/unix/dist/_______/images/ES/t9.png b/journal/unix/dist/_______/images/ES/t9.png new file mode 100644 index 0000000..94d1d06 Binary files /dev/null and b/journal/unix/dist/_______/images/ES/t9.png differ diff --git a/journal/unix/dist/_______/images/JA/c1.png b/journal/unix/dist/_______/images/JA/c1.png new file mode 100644 index 0000000..ba37667 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/c1.png differ diff --git a/journal/unix/dist/_______/images/JA/c2.png b/journal/unix/dist/_______/images/JA/c2.png new file mode 100644 index 0000000..3168a04 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/c2.png differ diff --git a/journal/unix/dist/_______/images/JA/c3.png b/journal/unix/dist/_______/images/JA/c3.png new file mode 100644 index 0000000..149e9ca Binary files /dev/null and b/journal/unix/dist/_______/images/JA/c3.png differ diff --git a/journal/unix/dist/_______/images/JA/c4.png b/journal/unix/dist/_______/images/JA/c4.png new file mode 100644 index 0000000..ab7828e Binary files /dev/null and b/journal/unix/dist/_______/images/JA/c4.png differ diff --git a/journal/unix/dist/_______/images/JA/c5.png b/journal/unix/dist/_______/images/JA/c5.png new file mode 100644 index 0000000..5bace85 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/c5.png differ diff --git a/journal/unix/dist/_______/images/JA/c6.png b/journal/unix/dist/_______/images/JA/c6.png new file mode 100644 index 0000000..539d034 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/c6.png differ diff --git a/journal/unix/dist/_______/images/JA/c7.png b/journal/unix/dist/_______/images/JA/c7.png new file mode 100644 index 0000000..7495ba5 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/c7.png differ diff --git a/journal/unix/dist/_______/images/JA/final.png b/journal/unix/dist/_______/images/JA/final.png new file mode 100644 index 0000000..2f36835 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/final.png differ diff --git a/journal/unix/dist/_______/images/JA/s1.png b/journal/unix/dist/_______/images/JA/s1.png new file mode 100644 index 0000000..6d4f454 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/s1.png differ diff --git a/journal/unix/dist/_______/images/JA/s2.png b/journal/unix/dist/_______/images/JA/s2.png new file mode 100644 index 0000000..12d4aff Binary files /dev/null and b/journal/unix/dist/_______/images/JA/s2.png differ diff --git a/journal/unix/dist/_______/images/JA/s3.png b/journal/unix/dist/_______/images/JA/s3.png new file mode 100644 index 0000000..82392bf Binary files /dev/null and b/journal/unix/dist/_______/images/JA/s3.png differ diff --git a/journal/unix/dist/_______/images/JA/s4.png b/journal/unix/dist/_______/images/JA/s4.png new file mode 100644 index 0000000..0507cac Binary files /dev/null and b/journal/unix/dist/_______/images/JA/s4.png differ diff --git a/journal/unix/dist/_______/images/JA/save.png b/journal/unix/dist/_______/images/JA/save.png new file mode 100644 index 0000000..b24f4c1 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/save.png differ diff --git a/journal/unix/dist/_______/images/JA/t1.png b/journal/unix/dist/_______/images/JA/t1.png new file mode 100644 index 0000000..6fe347b Binary files /dev/null and b/journal/unix/dist/_______/images/JA/t1.png differ diff --git a/journal/unix/dist/_______/images/JA/t10.png b/journal/unix/dist/_______/images/JA/t10.png new file mode 100644 index 0000000..163af33 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/t10.png differ diff --git a/journal/unix/dist/_______/images/JA/t11.png b/journal/unix/dist/_______/images/JA/t11.png new file mode 100644 index 0000000..d058bac Binary files /dev/null and b/journal/unix/dist/_______/images/JA/t11.png differ diff --git a/journal/unix/dist/_______/images/JA/t12.png b/journal/unix/dist/_______/images/JA/t12.png new file mode 100644 index 0000000..90e5891 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/t12.png differ diff --git a/journal/unix/dist/_______/images/JA/t13.png b/journal/unix/dist/_______/images/JA/t13.png new file mode 100644 index 0000000..f2f42d7 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/t13.png differ diff --git a/journal/unix/dist/_______/images/JA/t14.png b/journal/unix/dist/_______/images/JA/t14.png new file mode 100644 index 0000000..de80759 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/t14.png differ diff --git a/journal/unix/dist/_______/images/JA/t15.png b/journal/unix/dist/_______/images/JA/t15.png new file mode 100644 index 0000000..fcccf25 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/t15.png differ diff --git a/journal/unix/dist/_______/images/JA/t16.png b/journal/unix/dist/_______/images/JA/t16.png new file mode 100644 index 0000000..49963a2 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/t16.png differ diff --git a/journal/unix/dist/_______/images/JA/t2.png b/journal/unix/dist/_______/images/JA/t2.png new file mode 100644 index 0000000..6e57836 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/t2.png differ diff --git a/journal/unix/dist/_______/images/JA/t3.png b/journal/unix/dist/_______/images/JA/t3.png new file mode 100644 index 0000000..d77af25 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/t3.png differ diff --git a/journal/unix/dist/_______/images/JA/t4.png b/journal/unix/dist/_______/images/JA/t4.png new file mode 100644 index 0000000..d951a24 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/t4.png differ diff --git a/journal/unix/dist/_______/images/JA/t5.png b/journal/unix/dist/_______/images/JA/t5.png new file mode 100644 index 0000000..f446457 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/t5.png differ diff --git a/journal/unix/dist/_______/images/JA/t6.png b/journal/unix/dist/_______/images/JA/t6.png new file mode 100644 index 0000000..38e01eb Binary files /dev/null and b/journal/unix/dist/_______/images/JA/t6.png differ diff --git a/journal/unix/dist/_______/images/JA/t7.png b/journal/unix/dist/_______/images/JA/t7.png new file mode 100644 index 0000000..d7cbb53 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/t7.png differ diff --git a/journal/unix/dist/_______/images/JA/t8.png b/journal/unix/dist/_______/images/JA/t8.png new file mode 100644 index 0000000..0e03077 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/t8.png differ diff --git a/journal/unix/dist/_______/images/JA/t9.png b/journal/unix/dist/_______/images/JA/t9.png new file mode 100644 index 0000000..2b51e13 Binary files /dev/null and b/journal/unix/dist/_______/images/JA/t9.png differ diff --git a/journal/unix/dist/_______/images/KO/c1.png b/journal/unix/dist/_______/images/KO/c1.png new file mode 100644 index 0000000..1bde3ac Binary files /dev/null and b/journal/unix/dist/_______/images/KO/c1.png differ diff --git a/journal/unix/dist/_______/images/KO/c2.png b/journal/unix/dist/_______/images/KO/c2.png new file mode 100644 index 0000000..68288c2 Binary files /dev/null and b/journal/unix/dist/_______/images/KO/c2.png differ diff --git a/journal/unix/dist/_______/images/KO/c3.png b/journal/unix/dist/_______/images/KO/c3.png new file mode 100644 index 0000000..bbf25bb Binary files /dev/null and b/journal/unix/dist/_______/images/KO/c3.png differ diff --git a/journal/unix/dist/_______/images/KO/c4.png b/journal/unix/dist/_______/images/KO/c4.png new file mode 100644 index 0000000..30092ff Binary files /dev/null and b/journal/unix/dist/_______/images/KO/c4.png differ diff --git a/journal/unix/dist/_______/images/KO/c5.png b/journal/unix/dist/_______/images/KO/c5.png new file mode 100644 index 0000000..7b22b04 Binary files /dev/null and b/journal/unix/dist/_______/images/KO/c5.png differ diff --git a/journal/unix/dist/_______/images/KO/c6.png b/journal/unix/dist/_______/images/KO/c6.png new file mode 100644 index 0000000..4e3289e Binary files /dev/null and b/journal/unix/dist/_______/images/KO/c6.png differ diff --git a/journal/unix/dist/_______/images/KO/c7.png b/journal/unix/dist/_______/images/KO/c7.png new file mode 100644 index 0000000..5df2080 Binary files /dev/null and b/journal/unix/dist/_______/images/KO/c7.png differ diff --git a/journal/unix/dist/_______/images/KO/final.png b/journal/unix/dist/_______/images/KO/final.png new file mode 100644 index 0000000..849a4b2 Binary files /dev/null and b/journal/unix/dist/_______/images/KO/final.png differ diff --git a/journal/unix/dist/_______/images/KO/s1.png b/journal/unix/dist/_______/images/KO/s1.png new file mode 100644 index 0000000..a00408a Binary files /dev/null and b/journal/unix/dist/_______/images/KO/s1.png differ diff --git a/journal/unix/dist/_______/images/KO/s2.png b/journal/unix/dist/_______/images/KO/s2.png new file mode 100644 index 0000000..d89bce8 Binary files /dev/null and b/journal/unix/dist/_______/images/KO/s2.png differ diff --git a/journal/unix/dist/_______/images/KO/s3.png b/journal/unix/dist/_______/images/KO/s3.png new file mode 100644 index 0000000..d22e8a8 Binary files /dev/null and b/journal/unix/dist/_______/images/KO/s3.png differ diff --git a/journal/unix/dist/_______/images/KO/s4.png b/journal/unix/dist/_______/images/KO/s4.png new file mode 100644 index 0000000..a6592ae Binary files /dev/null and b/journal/unix/dist/_______/images/KO/s4.png differ diff --git a/journal/unix/dist/_______/images/KO/save.png b/journal/unix/dist/_______/images/KO/save.png new file mode 100644 index 0000000..d43b584 Binary files /dev/null and b/journal/unix/dist/_______/images/KO/save.png differ diff --git a/journal/unix/dist/_______/images/KO/t1.png b/journal/unix/dist/_______/images/KO/t1.png new file mode 100644 index 0000000..ef7c1b2 Binary files /dev/null and b/journal/unix/dist/_______/images/KO/t1.png differ diff --git a/journal/unix/dist/_______/images/KO/t10.png b/journal/unix/dist/_______/images/KO/t10.png new file mode 100644 index 0000000..f09d1bb Binary files /dev/null and b/journal/unix/dist/_______/images/KO/t10.png differ diff --git a/journal/unix/dist/_______/images/KO/t11.png b/journal/unix/dist/_______/images/KO/t11.png new file mode 100644 index 0000000..45721b3 Binary files /dev/null and b/journal/unix/dist/_______/images/KO/t11.png differ diff --git a/journal/unix/dist/_______/images/KO/t12.png b/journal/unix/dist/_______/images/KO/t12.png new file mode 100644 index 0000000..1e526da Binary files /dev/null and b/journal/unix/dist/_______/images/KO/t12.png differ diff --git a/journal/unix/dist/_______/images/KO/t13.png b/journal/unix/dist/_______/images/KO/t13.png new file mode 100644 index 0000000..3b74832 Binary files /dev/null and b/journal/unix/dist/_______/images/KO/t13.png differ diff --git a/journal/unix/dist/_______/images/KO/t14.png b/journal/unix/dist/_______/images/KO/t14.png new file mode 100644 index 0000000..41fe25b Binary files /dev/null and b/journal/unix/dist/_______/images/KO/t14.png differ diff --git a/journal/unix/dist/_______/images/KO/t15.png b/journal/unix/dist/_______/images/KO/t15.png new file mode 100644 index 0000000..3049bfc Binary files /dev/null and b/journal/unix/dist/_______/images/KO/t15.png differ diff --git a/journal/unix/dist/_______/images/KO/t16.png b/journal/unix/dist/_______/images/KO/t16.png new file mode 100644 index 0000000..4e48c53 Binary files /dev/null and b/journal/unix/dist/_______/images/KO/t16.png differ diff --git a/journal/unix/dist/_______/images/KO/t2.png b/journal/unix/dist/_______/images/KO/t2.png new file mode 100644 index 0000000..c591e6a Binary files /dev/null and b/journal/unix/dist/_______/images/KO/t2.png differ diff --git a/journal/unix/dist/_______/images/KO/t3.png b/journal/unix/dist/_______/images/KO/t3.png new file mode 100644 index 0000000..42b6abe Binary files /dev/null and b/journal/unix/dist/_______/images/KO/t3.png differ diff --git a/journal/unix/dist/_______/images/KO/t4.png b/journal/unix/dist/_______/images/KO/t4.png new file mode 100644 index 0000000..0fe1fbc Binary files /dev/null and b/journal/unix/dist/_______/images/KO/t4.png differ diff --git a/journal/unix/dist/_______/images/KO/t5.png b/journal/unix/dist/_______/images/KO/t5.png new file mode 100644 index 0000000..27c2937 Binary files /dev/null and b/journal/unix/dist/_______/images/KO/t5.png differ diff --git a/journal/unix/dist/_______/images/KO/t6.png b/journal/unix/dist/_______/images/KO/t6.png new file mode 100644 index 0000000..232a7c1 Binary files /dev/null and b/journal/unix/dist/_______/images/KO/t6.png differ diff --git a/journal/unix/dist/_______/images/KO/t7.png b/journal/unix/dist/_______/images/KO/t7.png new file mode 100644 index 0000000..4835b7f Binary files /dev/null and b/journal/unix/dist/_______/images/KO/t7.png differ diff --git a/journal/unix/dist/_______/images/KO/t8.png b/journal/unix/dist/_______/images/KO/t8.png new file mode 100644 index 0000000..0cad96c Binary files /dev/null and b/journal/unix/dist/_______/images/KO/t8.png differ diff --git a/journal/unix/dist/_______/images/KO/t9.png b/journal/unix/dist/_______/images/KO/t9.png new file mode 100644 index 0000000..6543c51 Binary files /dev/null and b/journal/unix/dist/_______/images/KO/t9.png differ diff --git a/journal/unix/dist/_______/images/PTBR/S1.png b/journal/unix/dist/_______/images/PTBR/S1.png new file mode 100644 index 0000000..1a96f86 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/S1.png differ diff --git a/journal/unix/dist/_______/images/PTBR/S2.png b/journal/unix/dist/_______/images/PTBR/S2.png new file mode 100644 index 0000000..7d11b86 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/S2.png differ diff --git a/journal/unix/dist/_______/images/PTBR/S3.png b/journal/unix/dist/_______/images/PTBR/S3.png new file mode 100644 index 0000000..24a28bd Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/S3.png differ diff --git a/journal/unix/dist/_______/images/PTBR/S4.png b/journal/unix/dist/_______/images/PTBR/S4.png new file mode 100644 index 0000000..d6a0018 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/S4.png differ diff --git a/journal/unix/dist/_______/images/PTBR/c1.png b/journal/unix/dist/_______/images/PTBR/c1.png new file mode 100644 index 0000000..d8826a7 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/c1.png differ diff --git a/journal/unix/dist/_______/images/PTBR/c2.png b/journal/unix/dist/_______/images/PTBR/c2.png new file mode 100644 index 0000000..2593ca0 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/c2.png differ diff --git a/journal/unix/dist/_______/images/PTBR/c3.png b/journal/unix/dist/_______/images/PTBR/c3.png new file mode 100644 index 0000000..0caac17 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/c3.png differ diff --git a/journal/unix/dist/_______/images/PTBR/c4.png b/journal/unix/dist/_______/images/PTBR/c4.png new file mode 100644 index 0000000..9ee337a Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/c4.png differ diff --git a/journal/unix/dist/_______/images/PTBR/c5.png b/journal/unix/dist/_______/images/PTBR/c5.png new file mode 100644 index 0000000..059cde2 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/c5.png differ diff --git a/journal/unix/dist/_______/images/PTBR/c6.png b/journal/unix/dist/_______/images/PTBR/c6.png new file mode 100644 index 0000000..097d3df Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/c6.png differ diff --git a/journal/unix/dist/_______/images/PTBR/c7.png b/journal/unix/dist/_______/images/PTBR/c7.png new file mode 100644 index 0000000..e13bfc8 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/c7.png differ diff --git a/journal/unix/dist/_______/images/PTBR/final.png b/journal/unix/dist/_______/images/PTBR/final.png new file mode 100644 index 0000000..b63b803 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/final.png differ diff --git a/journal/unix/dist/_______/images/PTBR/save.png b/journal/unix/dist/_______/images/PTBR/save.png new file mode 100644 index 0000000..1117f86 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/save.png differ diff --git a/journal/unix/dist/_______/images/PTBR/t1.png b/journal/unix/dist/_______/images/PTBR/t1.png new file mode 100644 index 0000000..8737bd9 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/t1.png differ diff --git a/journal/unix/dist/_______/images/PTBR/t10.png b/journal/unix/dist/_______/images/PTBR/t10.png new file mode 100644 index 0000000..5b9f7e7 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/t10.png differ diff --git a/journal/unix/dist/_______/images/PTBR/t11.png b/journal/unix/dist/_______/images/PTBR/t11.png new file mode 100644 index 0000000..e124608 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/t11.png differ diff --git a/journal/unix/dist/_______/images/PTBR/t12.png b/journal/unix/dist/_______/images/PTBR/t12.png new file mode 100644 index 0000000..da11c86 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/t12.png differ diff --git a/journal/unix/dist/_______/images/PTBR/t13.png b/journal/unix/dist/_______/images/PTBR/t13.png new file mode 100644 index 0000000..6f328fb Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/t13.png differ diff --git a/journal/unix/dist/_______/images/PTBR/t14.png b/journal/unix/dist/_______/images/PTBR/t14.png new file mode 100644 index 0000000..20453d7 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/t14.png differ diff --git a/journal/unix/dist/_______/images/PTBR/t15.png b/journal/unix/dist/_______/images/PTBR/t15.png new file mode 100644 index 0000000..80bce65 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/t15.png differ diff --git a/journal/unix/dist/_______/images/PTBR/t16.png b/journal/unix/dist/_______/images/PTBR/t16.png new file mode 100644 index 0000000..39b7dff Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/t16.png differ diff --git a/journal/unix/dist/_______/images/PTBR/t2.png b/journal/unix/dist/_______/images/PTBR/t2.png new file mode 100644 index 0000000..2a480ca Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/t2.png differ diff --git a/journal/unix/dist/_______/images/PTBR/t3.png b/journal/unix/dist/_______/images/PTBR/t3.png new file mode 100644 index 0000000..eb60abd Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/t3.png differ diff --git a/journal/unix/dist/_______/images/PTBR/t4.png b/journal/unix/dist/_______/images/PTBR/t4.png new file mode 100644 index 0000000..2583544 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/t4.png differ diff --git a/journal/unix/dist/_______/images/PTBR/t5.png b/journal/unix/dist/_______/images/PTBR/t5.png new file mode 100644 index 0000000..0c979a1 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/t5.png differ diff --git a/journal/unix/dist/_______/images/PTBR/t6.png b/journal/unix/dist/_______/images/PTBR/t6.png new file mode 100644 index 0000000..a085568 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/t6.png differ diff --git a/journal/unix/dist/_______/images/PTBR/t7.png b/journal/unix/dist/_______/images/PTBR/t7.png new file mode 100644 index 0000000..8fa6a69 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/t7.png differ diff --git a/journal/unix/dist/_______/images/PTBR/t8.png b/journal/unix/dist/_______/images/PTBR/t8.png new file mode 100644 index 0000000..f152934 Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/t8.png differ diff --git a/journal/unix/dist/_______/images/PTBR/t9.png b/journal/unix/dist/_______/images/PTBR/t9.png new file mode 100644 index 0000000..3d6e70d Binary files /dev/null and b/journal/unix/dist/_______/images/PTBR/t9.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/c1.png b/journal/unix/dist/_______/images/ZH-CN/c1.png new file mode 100644 index 0000000..4ac6946 Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/c1.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/c2.png b/journal/unix/dist/_______/images/ZH-CN/c2.png new file mode 100644 index 0000000..0e7f0ec Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/c2.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/c3.png b/journal/unix/dist/_______/images/ZH-CN/c3.png new file mode 100644 index 0000000..c741853 Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/c3.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/c4.png b/journal/unix/dist/_______/images/ZH-CN/c4.png new file mode 100644 index 0000000..a5e9f79 Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/c4.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/c5.png b/journal/unix/dist/_______/images/ZH-CN/c5.png new file mode 100644 index 0000000..3a5f184 Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/c5.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/c6.png b/journal/unix/dist/_______/images/ZH-CN/c6.png new file mode 100644 index 0000000..e79f3ba Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/c6.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/c7.png b/journal/unix/dist/_______/images/ZH-CN/c7.png new file mode 100644 index 0000000..21833b3 Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/c7.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/final.png b/journal/unix/dist/_______/images/ZH-CN/final.png new file mode 100644 index 0000000..ca09c5c Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/final.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/s1.png b/journal/unix/dist/_______/images/ZH-CN/s1.png new file mode 100644 index 0000000..9392523 Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/s1.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/s2.png b/journal/unix/dist/_______/images/ZH-CN/s2.png new file mode 100644 index 0000000..1cbe449 Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/s2.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/s3.png b/journal/unix/dist/_______/images/ZH-CN/s3.png new file mode 100644 index 0000000..5b8fb9e Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/s3.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/s4.png b/journal/unix/dist/_______/images/ZH-CN/s4.png new file mode 100644 index 0000000..378cf84 Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/s4.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/save.png b/journal/unix/dist/_______/images/ZH-CN/save.png new file mode 100644 index 0000000..29a6695 Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/save.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/t1.png b/journal/unix/dist/_______/images/ZH-CN/t1.png new file mode 100644 index 0000000..ae941be Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/t1.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/t10.png b/journal/unix/dist/_______/images/ZH-CN/t10.png new file mode 100644 index 0000000..0510c38 Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/t10.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/t11.png b/journal/unix/dist/_______/images/ZH-CN/t11.png new file mode 100644 index 0000000..a202aed Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/t11.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/t12.png b/journal/unix/dist/_______/images/ZH-CN/t12.png new file mode 100644 index 0000000..eb1e4e9 Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/t12.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/t13.png b/journal/unix/dist/_______/images/ZH-CN/t13.png new file mode 100644 index 0000000..000904e Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/t13.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/t14.png b/journal/unix/dist/_______/images/ZH-CN/t14.png new file mode 100644 index 0000000..f188e0e Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/t14.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/t15.png b/journal/unix/dist/_______/images/ZH-CN/t15.png new file mode 100644 index 0000000..7014e2f Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/t15.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/t16.png b/journal/unix/dist/_______/images/ZH-CN/t16.png new file mode 100644 index 0000000..426442e Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/t16.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/t2.png b/journal/unix/dist/_______/images/ZH-CN/t2.png new file mode 100644 index 0000000..b0da7d0 Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/t2.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/t3.png b/journal/unix/dist/_______/images/ZH-CN/t3.png new file mode 100644 index 0000000..869f735 Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/t3.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/t4.png b/journal/unix/dist/_______/images/ZH-CN/t4.png new file mode 100644 index 0000000..cdefef1 Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/t4.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/t5.png b/journal/unix/dist/_______/images/ZH-CN/t5.png new file mode 100644 index 0000000..baa12fe Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/t5.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/t6.png b/journal/unix/dist/_______/images/ZH-CN/t6.png new file mode 100644 index 0000000..1b38411 Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/t6.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/t7.png b/journal/unix/dist/_______/images/ZH-CN/t7.png new file mode 100644 index 0000000..bdf1fe4 Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/t7.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/t8.png b/journal/unix/dist/_______/images/ZH-CN/t8.png new file mode 100644 index 0000000..15933da Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/t8.png differ diff --git a/journal/unix/dist/_______/images/ZH-CN/t9.png b/journal/unix/dist/_______/images/ZH-CN/t9.png new file mode 100644 index 0000000..05a8d85 Binary files /dev/null and b/journal/unix/dist/_______/images/ZH-CN/t9.png differ diff --git a/journal/unix/dist/_______/images/c1.png b/journal/unix/dist/_______/images/c1.png new file mode 100644 index 0000000..73378b3 Binary files /dev/null and b/journal/unix/dist/_______/images/c1.png differ diff --git a/journal/unix/dist/_______/images/c2.png b/journal/unix/dist/_______/images/c2.png new file mode 100644 index 0000000..e92e3b9 Binary files /dev/null and b/journal/unix/dist/_______/images/c2.png differ diff --git a/journal/unix/dist/_______/images/c3.png b/journal/unix/dist/_______/images/c3.png new file mode 100644 index 0000000..7ea7359 Binary files /dev/null and b/journal/unix/dist/_______/images/c3.png differ diff --git a/journal/unix/dist/_______/images/c4.png b/journal/unix/dist/_______/images/c4.png new file mode 100644 index 0000000..7701fa7 Binary files /dev/null and b/journal/unix/dist/_______/images/c4.png differ diff --git a/journal/unix/dist/_______/images/c5.png b/journal/unix/dist/_______/images/c5.png new file mode 100644 index 0000000..9b6e97e Binary files /dev/null and b/journal/unix/dist/_______/images/c5.png differ diff --git a/journal/unix/dist/_______/images/c6.png b/journal/unix/dist/_______/images/c6.png new file mode 100644 index 0000000..84ca6cd Binary files /dev/null and b/journal/unix/dist/_______/images/c6.png differ diff --git a/journal/unix/dist/_______/images/c7.png b/journal/unix/dist/_______/images/c7.png new file mode 100644 index 0000000..70276f0 Binary files /dev/null and b/journal/unix/dist/_______/images/c7.png differ diff --git a/journal/unix/dist/_______/images/default.png b/journal/unix/dist/_______/images/default.png new file mode 100644 index 0000000..969a0ba Binary files /dev/null and b/journal/unix/dist/_______/images/default.png differ diff --git a/journal/unix/dist/_______/images/final.png b/journal/unix/dist/_______/images/final.png new file mode 100644 index 0000000..2bff856 Binary files /dev/null and b/journal/unix/dist/_______/images/final.png differ diff --git a/journal/unix/dist/_______/images/niko1.png b/journal/unix/dist/_______/images/niko1.png new file mode 100644 index 0000000..88e77f1 Binary files /dev/null and b/journal/unix/dist/_______/images/niko1.png differ diff --git a/journal/unix/dist/_______/images/niko2.png b/journal/unix/dist/_______/images/niko2.png new file mode 100644 index 0000000..51a06ba Binary files /dev/null and b/journal/unix/dist/_______/images/niko2.png differ diff --git a/journal/unix/dist/_______/images/niko3.png b/journal/unix/dist/_______/images/niko3.png new file mode 100644 index 0000000..4918cc7 Binary files /dev/null and b/journal/unix/dist/_______/images/niko3.png differ diff --git a/journal/unix/dist/_______/images/s1.png b/journal/unix/dist/_______/images/s1.png new file mode 100644 index 0000000..ca4c2ff Binary files /dev/null and b/journal/unix/dist/_______/images/s1.png differ diff --git a/journal/unix/dist/_______/images/s2.png b/journal/unix/dist/_______/images/s2.png new file mode 100644 index 0000000..657e3d0 Binary files /dev/null and b/journal/unix/dist/_______/images/s2.png differ diff --git a/journal/unix/dist/_______/images/s3.png b/journal/unix/dist/_______/images/s3.png new file mode 100644 index 0000000..8f414e5 Binary files /dev/null and b/journal/unix/dist/_______/images/s3.png differ diff --git a/journal/unix/dist/_______/images/s4.png b/journal/unix/dist/_______/images/s4.png new file mode 100644 index 0000000..976282a Binary files /dev/null and b/journal/unix/dist/_______/images/s4.png differ diff --git a/journal/unix/dist/_______/images/save.png b/journal/unix/dist/_______/images/save.png new file mode 100644 index 0000000..8af419f Binary files /dev/null and b/journal/unix/dist/_______/images/save.png differ diff --git a/journal/unix/dist/_______/images/t1.png b/journal/unix/dist/_______/images/t1.png new file mode 100644 index 0000000..434805d Binary files /dev/null and b/journal/unix/dist/_______/images/t1.png differ diff --git a/journal/unix/dist/_______/images/t10.png b/journal/unix/dist/_______/images/t10.png new file mode 100644 index 0000000..799a2c1 Binary files /dev/null and b/journal/unix/dist/_______/images/t10.png differ diff --git a/journal/unix/dist/_______/images/t11.png b/journal/unix/dist/_______/images/t11.png new file mode 100644 index 0000000..c04697b Binary files /dev/null and b/journal/unix/dist/_______/images/t11.png differ diff --git a/journal/unix/dist/_______/images/t12.png b/journal/unix/dist/_______/images/t12.png new file mode 100644 index 0000000..3922d6c Binary files /dev/null and b/journal/unix/dist/_______/images/t12.png differ diff --git a/journal/unix/dist/_______/images/t13.png b/journal/unix/dist/_______/images/t13.png new file mode 100644 index 0000000..1b8a648 Binary files /dev/null and b/journal/unix/dist/_______/images/t13.png differ diff --git a/journal/unix/dist/_______/images/t14.png b/journal/unix/dist/_______/images/t14.png new file mode 100644 index 0000000..fd8f509 Binary files /dev/null and b/journal/unix/dist/_______/images/t14.png differ diff --git a/journal/unix/dist/_______/images/t15.png b/journal/unix/dist/_______/images/t15.png new file mode 100644 index 0000000..d2fe53f Binary files /dev/null and b/journal/unix/dist/_______/images/t15.png differ diff --git a/journal/unix/dist/_______/images/t16.png b/journal/unix/dist/_______/images/t16.png new file mode 100644 index 0000000..6da6dcc Binary files /dev/null and b/journal/unix/dist/_______/images/t16.png differ diff --git a/journal/unix/dist/_______/images/t2.png b/journal/unix/dist/_______/images/t2.png new file mode 100644 index 0000000..b6d5928 Binary files /dev/null and b/journal/unix/dist/_______/images/t2.png differ diff --git a/journal/unix/dist/_______/images/t3.png b/journal/unix/dist/_______/images/t3.png new file mode 100644 index 0000000..8093e84 Binary files /dev/null and b/journal/unix/dist/_______/images/t3.png differ diff --git a/journal/unix/dist/_______/images/t4.png b/journal/unix/dist/_______/images/t4.png new file mode 100644 index 0000000..a10b584 Binary files /dev/null and b/journal/unix/dist/_______/images/t4.png differ diff --git a/journal/unix/dist/_______/images/t5.png b/journal/unix/dist/_______/images/t5.png new file mode 100644 index 0000000..e36a18c Binary files /dev/null and b/journal/unix/dist/_______/images/t5.png differ diff --git a/journal/unix/dist/_______/images/t6.png b/journal/unix/dist/_______/images/t6.png new file mode 100644 index 0000000..45b16b9 Binary files /dev/null and b/journal/unix/dist/_______/images/t6.png differ diff --git a/journal/unix/dist/_______/images/t7.png b/journal/unix/dist/_______/images/t7.png new file mode 100644 index 0000000..f5c73e7 Binary files /dev/null and b/journal/unix/dist/_______/images/t7.png differ diff --git a/journal/unix/dist/_______/images/t8.png b/journal/unix/dist/_______/images/t8.png new file mode 100644 index 0000000..fabf931 Binary files /dev/null and b/journal/unix/dist/_______/images/t8.png differ diff --git a/journal/unix/dist/_______/images/t9.png b/journal/unix/dist/_______/images/t9.png new file mode 100644 index 0000000..b3c369a Binary files /dev/null and b/journal/unix/dist/_______/images/t9.png differ diff --git a/journal/unix/dist/_______/libEGL.so.1 b/journal/unix/dist/_______/libEGL.so.1 new file mode 100755 index 0000000..380b063 Binary files /dev/null and b/journal/unix/dist/_______/libEGL.so.1 differ diff --git a/journal/unix/dist/_______/libQt5Core.so.5 b/journal/unix/dist/_______/libQt5Core.so.5 new file mode 100755 index 0000000..7bcd701 Binary files /dev/null and b/journal/unix/dist/_______/libQt5Core.so.5 differ diff --git a/journal/unix/dist/_______/libQt5DBus.so.5 b/journal/unix/dist/_______/libQt5DBus.so.5 new file mode 100755 index 0000000..4bf6a3a Binary files /dev/null and b/journal/unix/dist/_______/libQt5DBus.so.5 differ diff --git a/journal/unix/dist/_______/libQt5Gui.so.5 b/journal/unix/dist/_______/libQt5Gui.so.5 new file mode 100755 index 0000000..b02e6a6 Binary files /dev/null and b/journal/unix/dist/_______/libQt5Gui.so.5 differ diff --git a/journal/unix/dist/_______/libQt5Network.so.5 b/journal/unix/dist/_______/libQt5Network.so.5 new file mode 100755 index 0000000..d8bb804 Binary files /dev/null and b/journal/unix/dist/_______/libQt5Network.so.5 differ diff --git a/journal/unix/dist/_______/libQt5PrintSupport.so.5 b/journal/unix/dist/_______/libQt5PrintSupport.so.5 new file mode 100755 index 0000000..fa65a89 Binary files /dev/null and b/journal/unix/dist/_______/libQt5PrintSupport.so.5 differ diff --git a/journal/unix/dist/_______/libQt5Svg.so.5 b/journal/unix/dist/_______/libQt5Svg.so.5 new file mode 100755 index 0000000..f5ff4a6 Binary files /dev/null and b/journal/unix/dist/_______/libQt5Svg.so.5 differ diff --git a/journal/unix/dist/_______/libQt5Widgets.so.5 b/journal/unix/dist/_______/libQt5Widgets.so.5 new file mode 100755 index 0000000..79a041a Binary files /dev/null and b/journal/unix/dist/_______/libQt5Widgets.so.5 differ diff --git a/journal/unix/dist/_______/libQt5XcbQpa.so.5 b/journal/unix/dist/_______/libQt5XcbQpa.so.5 new file mode 100755 index 0000000..ce304e0 Binary files /dev/null and b/journal/unix/dist/_______/libQt5XcbQpa.so.5 differ diff --git a/journal/unix/dist/_______/libX11-xcb.so.1 b/journal/unix/dist/_______/libX11-xcb.so.1 new file mode 100755 index 0000000..9f5c7c6 Binary files /dev/null and b/journal/unix/dist/_______/libX11-xcb.so.1 differ diff --git a/journal/unix/dist/_______/libX11.so.6 b/journal/unix/dist/_______/libX11.so.6 new file mode 100755 index 0000000..01101f7 Binary files /dev/null and b/journal/unix/dist/_______/libX11.so.6 differ diff --git a/journal/unix/dist/_______/libXau.so.6 b/journal/unix/dist/_______/libXau.so.6 new file mode 100755 index 0000000..b107c57 Binary files /dev/null and b/journal/unix/dist/_______/libXau.so.6 differ diff --git a/journal/unix/dist/_______/libXcomposite.so.1 b/journal/unix/dist/_______/libXcomposite.so.1 new file mode 100755 index 0000000..52452c6 Binary files /dev/null and b/journal/unix/dist/_______/libXcomposite.so.1 differ diff --git a/journal/unix/dist/_______/libXcursor.so.1 b/journal/unix/dist/_______/libXcursor.so.1 new file mode 100755 index 0000000..1487f4a Binary files /dev/null and b/journal/unix/dist/_______/libXcursor.so.1 differ diff --git a/journal/unix/dist/_______/libXdamage.so.1 b/journal/unix/dist/_______/libXdamage.so.1 new file mode 100755 index 0000000..66070da Binary files /dev/null and b/journal/unix/dist/_______/libXdamage.so.1 differ diff --git a/journal/unix/dist/_______/libXdmcp.so.6 b/journal/unix/dist/_______/libXdmcp.so.6 new file mode 100755 index 0000000..9d1e19f Binary files /dev/null and b/journal/unix/dist/_______/libXdmcp.so.6 differ diff --git a/journal/unix/dist/_______/libXext.so.6 b/journal/unix/dist/_______/libXext.so.6 new file mode 100755 index 0000000..2815049 Binary files /dev/null and b/journal/unix/dist/_______/libXext.so.6 differ diff --git a/journal/unix/dist/_______/libXfixes.so.3 b/journal/unix/dist/_______/libXfixes.so.3 new file mode 100755 index 0000000..345262a Binary files /dev/null and b/journal/unix/dist/_______/libXfixes.so.3 differ diff --git a/journal/unix/dist/_______/libXi.so.6 b/journal/unix/dist/_______/libXi.so.6 new file mode 100755 index 0000000..2c716bf Binary files /dev/null and b/journal/unix/dist/_______/libXi.so.6 differ diff --git a/journal/unix/dist/_______/libXinerama.so.1 b/journal/unix/dist/_______/libXinerama.so.1 new file mode 100755 index 0000000..6a285f8 Binary files /dev/null and b/journal/unix/dist/_______/libXinerama.so.1 differ diff --git a/journal/unix/dist/_______/libXrandr.so.2 b/journal/unix/dist/_______/libXrandr.so.2 new file mode 100755 index 0000000..43f1951 Binary files /dev/null and b/journal/unix/dist/_______/libXrandr.so.2 differ diff --git a/journal/unix/dist/_______/libXrender.so.1 b/journal/unix/dist/_______/libXrender.so.1 new file mode 100755 index 0000000..344f392 Binary files /dev/null and b/journal/unix/dist/_______/libXrender.so.1 differ diff --git a/journal/unix/dist/_______/libXxf86vm.so.1 b/journal/unix/dist/_______/libXxf86vm.so.1 new file mode 100755 index 0000000..3eeaf75 Binary files /dev/null and b/journal/unix/dist/_______/libXxf86vm.so.1 differ diff --git a/journal/unix/dist/_______/libatk-1.0.so.0 b/journal/unix/dist/_______/libatk-1.0.so.0 new file mode 100755 index 0000000..947d0b4 Binary files /dev/null and b/journal/unix/dist/_______/libatk-1.0.so.0 differ diff --git a/journal/unix/dist/_______/libatk-bridge-2.0.so.0 b/journal/unix/dist/_______/libatk-bridge-2.0.so.0 new file mode 100755 index 0000000..cd871e0 Binary files /dev/null and b/journal/unix/dist/_______/libatk-bridge-2.0.so.0 differ diff --git a/journal/unix/dist/_______/libatspi.so.0 b/journal/unix/dist/_______/libatspi.so.0 new file mode 100755 index 0000000..dd9cf70 Binary files /dev/null and b/journal/unix/dist/_______/libatspi.so.0 differ diff --git a/journal/unix/dist/_______/libavahi-client.so.3 b/journal/unix/dist/_______/libavahi-client.so.3 new file mode 100755 index 0000000..7ad90b0 Binary files /dev/null and b/journal/unix/dist/_______/libavahi-client.so.3 differ diff --git a/journal/unix/dist/_______/libavahi-common.so.3 b/journal/unix/dist/_______/libavahi-common.so.3 new file mode 100755 index 0000000..091a685 Binary files /dev/null and b/journal/unix/dist/_______/libavahi-common.so.3 differ diff --git a/journal/unix/dist/_______/libboost_filesystem.so.1.58.0 b/journal/unix/dist/_______/libboost_filesystem.so.1.58.0 new file mode 100755 index 0000000..7522586 Binary files /dev/null and b/journal/unix/dist/_______/libboost_filesystem.so.1.58.0 differ diff --git a/journal/unix/dist/_______/libboost_system.so.1.58.0 b/journal/unix/dist/_______/libboost_system.so.1.58.0 new file mode 100755 index 0000000..b7f809d Binary files /dev/null and b/journal/unix/dist/_______/libboost_system.so.1.58.0 differ diff --git a/journal/unix/dist/_______/libbz2.so.1.0 b/journal/unix/dist/_______/libbz2.so.1.0 new file mode 100755 index 0000000..2754181 Binary files /dev/null and b/journal/unix/dist/_______/libbz2.so.1.0 differ diff --git a/journal/unix/dist/_______/libcairo-gobject.so.2 b/journal/unix/dist/_______/libcairo-gobject.so.2 new file mode 100755 index 0000000..2b3efb6 Binary files /dev/null and b/journal/unix/dist/_______/libcairo-gobject.so.2 differ diff --git a/journal/unix/dist/_______/libcairo.so.2 b/journal/unix/dist/_______/libcairo.so.2 new file mode 100755 index 0000000..00f2c51 Binary files /dev/null and b/journal/unix/dist/_______/libcairo.so.2 differ diff --git a/journal/unix/dist/_______/libcapnp-0.5.3.so b/journal/unix/dist/_______/libcapnp-0.5.3.so new file mode 100755 index 0000000..5fc2c68 Binary files /dev/null and b/journal/unix/dist/_______/libcapnp-0.5.3.so differ diff --git a/journal/unix/dist/_______/libcom_err.so.2 b/journal/unix/dist/_______/libcom_err.so.2 new file mode 100755 index 0000000..570597f Binary files /dev/null and b/journal/unix/dist/_______/libcom_err.so.2 differ diff --git a/journal/unix/dist/_______/libcrypto.so.1.0.0 b/journal/unix/dist/_______/libcrypto.so.1.0.0 new file mode 100755 index 0000000..2af162b Binary files /dev/null and b/journal/unix/dist/_______/libcrypto.so.1.0.0 differ diff --git a/journal/unix/dist/_______/libcups.so.2 b/journal/unix/dist/_______/libcups.so.2 new file mode 100755 index 0000000..24c56a0 Binary files /dev/null and b/journal/unix/dist/_______/libcups.so.2 differ diff --git a/journal/unix/dist/_______/libdatrie.so.1 b/journal/unix/dist/_______/libdatrie.so.1 new file mode 100755 index 0000000..46ddc5e Binary files /dev/null and b/journal/unix/dist/_______/libdatrie.so.1 differ diff --git a/journal/unix/dist/_______/libdbus-1.so.3 b/journal/unix/dist/_______/libdbus-1.so.3 new file mode 100755 index 0000000..b921d8c Binary files /dev/null and b/journal/unix/dist/_______/libdbus-1.so.3 differ diff --git a/journal/unix/dist/_______/libdrm.so.2 b/journal/unix/dist/_______/libdrm.so.2 new file mode 100755 index 0000000..7bb3cf1 Binary files /dev/null and b/journal/unix/dist/_______/libdrm.so.2 differ diff --git a/journal/unix/dist/_______/libepoxy.so.0 b/journal/unix/dist/_______/libepoxy.so.0 new file mode 100755 index 0000000..356d2bb Binary files /dev/null and b/journal/unix/dist/_______/libepoxy.so.0 differ diff --git a/journal/unix/dist/_______/libexpat.so.1 b/journal/unix/dist/_______/libexpat.so.1 new file mode 100755 index 0000000..07bc064 Binary files /dev/null and b/journal/unix/dist/_______/libexpat.so.1 differ diff --git a/journal/unix/dist/_______/libffi.so.6 b/journal/unix/dist/_______/libffi.so.6 new file mode 100755 index 0000000..9720a46 Binary files /dev/null and b/journal/unix/dist/_______/libffi.so.6 differ diff --git a/journal/unix/dist/_______/libfontconfig.so.1 b/journal/unix/dist/_______/libfontconfig.so.1 new file mode 100755 index 0000000..b0a8e56 Binary files /dev/null and b/journal/unix/dist/_______/libfontconfig.so.1 differ diff --git a/journal/unix/dist/_______/libfreetype.so.6 b/journal/unix/dist/_______/libfreetype.so.6 new file mode 100755 index 0000000..8ef26d3 Binary files /dev/null and b/journal/unix/dist/_______/libfreetype.so.6 differ diff --git a/journal/unix/dist/_______/libgbm.so.1 b/journal/unix/dist/_______/libgbm.so.1 new file mode 100755 index 0000000..553afd6 Binary files /dev/null and b/journal/unix/dist/_______/libgbm.so.1 differ diff --git a/journal/unix/dist/_______/libgcc_s.so.1 b/journal/unix/dist/_______/libgcc_s.so.1 new file mode 100755 index 0000000..c80093f Binary files /dev/null and b/journal/unix/dist/_______/libgcc_s.so.1 differ diff --git a/journal/unix/dist/_______/libgcrypt.so.20 b/journal/unix/dist/_______/libgcrypt.so.20 new file mode 100755 index 0000000..bf7ba28 Binary files /dev/null and b/journal/unix/dist/_______/libgcrypt.so.20 differ diff --git a/journal/unix/dist/_______/libgdk-3.so.0 b/journal/unix/dist/_______/libgdk-3.so.0 new file mode 100755 index 0000000..c749f06 Binary files /dev/null and b/journal/unix/dist/_______/libgdk-3.so.0 differ diff --git a/journal/unix/dist/_______/libgdk_pixbuf-2.0.so.0 b/journal/unix/dist/_______/libgdk_pixbuf-2.0.so.0 new file mode 100755 index 0000000..8f79ce8 Binary files /dev/null and b/journal/unix/dist/_______/libgdk_pixbuf-2.0.so.0 differ diff --git a/journal/unix/dist/_______/libgio-2.0.so.0 b/journal/unix/dist/_______/libgio-2.0.so.0 new file mode 100755 index 0000000..a9396ce Binary files /dev/null and b/journal/unix/dist/_______/libgio-2.0.so.0 differ diff --git a/journal/unix/dist/_______/libglapi.so.0 b/journal/unix/dist/_______/libglapi.so.0 new file mode 100755 index 0000000..0f17b3b Binary files /dev/null and b/journal/unix/dist/_______/libglapi.so.0 differ diff --git a/journal/unix/dist/_______/libglib-2.0.so.0 b/journal/unix/dist/_______/libglib-2.0.so.0 new file mode 100755 index 0000000..804d30f Binary files /dev/null and b/journal/unix/dist/_______/libglib-2.0.so.0 differ diff --git a/journal/unix/dist/_______/libgmodule-2.0.so.0 b/journal/unix/dist/_______/libgmodule-2.0.so.0 new file mode 100755 index 0000000..bed7209 Binary files /dev/null and b/journal/unix/dist/_______/libgmodule-2.0.so.0 differ diff --git a/journal/unix/dist/_______/libgmp.so.10 b/journal/unix/dist/_______/libgmp.so.10 new file mode 100755 index 0000000..8c2c8b3 Binary files /dev/null and b/journal/unix/dist/_______/libgmp.so.10 differ diff --git a/journal/unix/dist/_______/libgnutls.so.30 b/journal/unix/dist/_______/libgnutls.so.30 new file mode 100755 index 0000000..690ef98 Binary files /dev/null and b/journal/unix/dist/_______/libgnutls.so.30 differ diff --git a/journal/unix/dist/_______/libgobject-2.0.so.0 b/journal/unix/dist/_______/libgobject-2.0.so.0 new file mode 100755 index 0000000..950100f Binary files /dev/null and b/journal/unix/dist/_______/libgobject-2.0.so.0 differ diff --git a/journal/unix/dist/_______/libgpg-error.so.0 b/journal/unix/dist/_______/libgpg-error.so.0 new file mode 100755 index 0000000..c84e005 Binary files /dev/null and b/journal/unix/dist/_______/libgpg-error.so.0 differ diff --git a/journal/unix/dist/_______/libgraphite2.so.3 b/journal/unix/dist/_______/libgraphite2.so.3 new file mode 100755 index 0000000..c03906d Binary files /dev/null and b/journal/unix/dist/_______/libgraphite2.so.3 differ diff --git a/journal/unix/dist/_______/libgssapi_krb5.so.2 b/journal/unix/dist/_______/libgssapi_krb5.so.2 new file mode 100755 index 0000000..970c51f Binary files /dev/null and b/journal/unix/dist/_______/libgssapi_krb5.so.2 differ diff --git a/journal/unix/dist/_______/libgthread-2.0.so.0 b/journal/unix/dist/_______/libgthread-2.0.so.0 new file mode 100755 index 0000000..9a335c7 Binary files /dev/null and b/journal/unix/dist/_______/libgthread-2.0.so.0 differ diff --git a/journal/unix/dist/_______/libgtk-3.so.0 b/journal/unix/dist/_______/libgtk-3.so.0 new file mode 100755 index 0000000..7c1f45b Binary files /dev/null and b/journal/unix/dist/_______/libgtk-3.so.0 differ diff --git a/journal/unix/dist/_______/libharfbuzz.so.0 b/journal/unix/dist/_______/libharfbuzz.so.0 new file mode 100755 index 0000000..95ad765 Binary files /dev/null and b/journal/unix/dist/_______/libharfbuzz.so.0 differ diff --git a/journal/unix/dist/_______/libhogweed.so.4 b/journal/unix/dist/_______/libhogweed.so.4 new file mode 100755 index 0000000..d7964f5 Binary files /dev/null and b/journal/unix/dist/_______/libhogweed.so.4 differ diff --git a/journal/unix/dist/_______/libicudata.so.56 b/journal/unix/dist/_______/libicudata.so.56 new file mode 100755 index 0000000..ce251d8 Binary files /dev/null and b/journal/unix/dist/_______/libicudata.so.56 differ diff --git a/journal/unix/dist/_______/libicui18n.so.56 b/journal/unix/dist/_______/libicui18n.so.56 new file mode 100755 index 0000000..a95c22d Binary files /dev/null and b/journal/unix/dist/_______/libicui18n.so.56 differ diff --git a/journal/unix/dist/_______/libicuuc.so.56 b/journal/unix/dist/_______/libicuuc.so.56 new file mode 100755 index 0000000..7b4e4ac Binary files /dev/null and b/journal/unix/dist/_______/libicuuc.so.56 differ diff --git a/journal/unix/dist/_______/libidn.so.11 b/journal/unix/dist/_______/libidn.so.11 new file mode 100755 index 0000000..5dee58c Binary files /dev/null and b/journal/unix/dist/_______/libidn.so.11 differ diff --git a/journal/unix/dist/_______/libk5crypto.so.3 b/journal/unix/dist/_______/libk5crypto.so.3 new file mode 100755 index 0000000..b268fdc Binary files /dev/null and b/journal/unix/dist/_______/libk5crypto.so.3 differ diff --git a/journal/unix/dist/_______/libkeyutils.so.1 b/journal/unix/dist/_______/libkeyutils.so.1 new file mode 100755 index 0000000..bb4a3d9 Binary files /dev/null and b/journal/unix/dist/_______/libkeyutils.so.1 differ diff --git a/journal/unix/dist/_______/libkj-0.5.3.so b/journal/unix/dist/_______/libkj-0.5.3.so new file mode 100755 index 0000000..33c8afe Binary files /dev/null and b/journal/unix/dist/_______/libkj-0.5.3.so differ diff --git a/journal/unix/dist/_______/libkrb5.so.3 b/journal/unix/dist/_______/libkrb5.so.3 new file mode 100755 index 0000000..1b330cf Binary files /dev/null and b/journal/unix/dist/_______/libkrb5.so.3 differ diff --git a/journal/unix/dist/_______/libkrb5support.so.0 b/journal/unix/dist/_______/libkrb5support.so.0 new file mode 100755 index 0000000..7999bd4 Binary files /dev/null and b/journal/unix/dist/_______/libkrb5support.so.0 differ diff --git a/journal/unix/dist/_______/liblzma.so.5 b/journal/unix/dist/_______/liblzma.so.5 new file mode 100755 index 0000000..5a87332 Binary files /dev/null and b/journal/unix/dist/_______/liblzma.so.5 differ diff --git a/journal/unix/dist/_______/libmirclient.so.9 b/journal/unix/dist/_______/libmirclient.so.9 new file mode 100755 index 0000000..1f670db Binary files /dev/null and b/journal/unix/dist/_______/libmirclient.so.9 differ diff --git a/journal/unix/dist/_______/libmircommon.so.7 b/journal/unix/dist/_______/libmircommon.so.7 new file mode 100755 index 0000000..62e8fd3 Binary files /dev/null and b/journal/unix/dist/_______/libmircommon.so.7 differ diff --git a/journal/unix/dist/_______/libmircore.so.1 b/journal/unix/dist/_______/libmircore.so.1 new file mode 100755 index 0000000..3761c18 Binary files /dev/null and b/journal/unix/dist/_______/libmircore.so.1 differ diff --git a/journal/unix/dist/_______/libmirprotobuf.so.3 b/journal/unix/dist/_______/libmirprotobuf.so.3 new file mode 100755 index 0000000..5f8cf5c Binary files /dev/null and b/journal/unix/dist/_______/libmirprotobuf.so.3 differ diff --git a/journal/unix/dist/_______/libnettle.so.6 b/journal/unix/dist/_______/libnettle.so.6 new file mode 100755 index 0000000..3c98f7f Binary files /dev/null and b/journal/unix/dist/_______/libnettle.so.6 differ diff --git a/journal/unix/dist/_______/libp11-kit.so.0 b/journal/unix/dist/_______/libp11-kit.so.0 new file mode 100755 index 0000000..bef60ad Binary files /dev/null and b/journal/unix/dist/_______/libp11-kit.so.0 differ diff --git a/journal/unix/dist/_______/libpango-1.0.so.0 b/journal/unix/dist/_______/libpango-1.0.so.0 new file mode 100755 index 0000000..627bb51 Binary files /dev/null and b/journal/unix/dist/_______/libpango-1.0.so.0 differ diff --git a/journal/unix/dist/_______/libpangocairo-1.0.so.0 b/journal/unix/dist/_______/libpangocairo-1.0.so.0 new file mode 100755 index 0000000..905b0d2 Binary files /dev/null and b/journal/unix/dist/_______/libpangocairo-1.0.so.0 differ diff --git a/journal/unix/dist/_______/libpangoft2-1.0.so.0 b/journal/unix/dist/_______/libpangoft2-1.0.so.0 new file mode 100755 index 0000000..88b718d Binary files /dev/null and b/journal/unix/dist/_______/libpangoft2-1.0.so.0 differ diff --git a/journal/unix/dist/_______/libpcre.so.3 b/journal/unix/dist/_______/libpcre.so.3 new file mode 100755 index 0000000..a3f9945 Binary files /dev/null and b/journal/unix/dist/_______/libpcre.so.3 differ diff --git a/journal/unix/dist/_______/libpixman-1.so.0 b/journal/unix/dist/_______/libpixman-1.so.0 new file mode 100755 index 0000000..a14b2bd Binary files /dev/null and b/journal/unix/dist/_______/libpixman-1.so.0 differ diff --git a/journal/unix/dist/_______/libpng12.so.0 b/journal/unix/dist/_______/libpng12.so.0 new file mode 100755 index 0000000..791a2f1 Binary files /dev/null and b/journal/unix/dist/_______/libpng12.so.0 differ diff --git a/journal/unix/dist/_______/libprotobuf-lite.so.9 b/journal/unix/dist/_______/libprotobuf-lite.so.9 new file mode 100755 index 0000000..81475c9 Binary files /dev/null and b/journal/unix/dist/_______/libprotobuf-lite.so.9 differ diff --git a/journal/unix/dist/_______/libpython3.5m.so.1.0 b/journal/unix/dist/_______/libpython3.5m.so.1.0 new file mode 100755 index 0000000..138ced7 Binary files /dev/null and b/journal/unix/dist/_______/libpython3.5m.so.1.0 differ diff --git a/journal/unix/dist/_______/libreadline.so.6 b/journal/unix/dist/_______/libreadline.so.6 new file mode 100755 index 0000000..8a1db0e Binary files /dev/null and b/journal/unix/dist/_______/libreadline.so.6 differ diff --git a/journal/unix/dist/_______/libselinux.so.1 b/journal/unix/dist/_______/libselinux.so.1 new file mode 100755 index 0000000..d63752a Binary files /dev/null and b/journal/unix/dist/_______/libselinux.so.1 differ diff --git a/journal/unix/dist/_______/libssl.so.1.0.0 b/journal/unix/dist/_______/libssl.so.1.0.0 new file mode 100755 index 0000000..a4eceb7 Binary files /dev/null and b/journal/unix/dist/_______/libssl.so.1.0.0 differ diff --git a/journal/unix/dist/_______/libstdc++.so.6 b/journal/unix/dist/_______/libstdc++.so.6 new file mode 100755 index 0000000..36f51ff Binary files /dev/null and b/journal/unix/dist/_______/libstdc++.so.6 differ diff --git a/journal/unix/dist/_______/libsystemd.so.0 b/journal/unix/dist/_______/libsystemd.so.0 new file mode 100755 index 0000000..4a01d01 Binary files /dev/null and b/journal/unix/dist/_______/libsystemd.so.0 differ diff --git a/journal/unix/dist/_______/libtasn1.so.6 b/journal/unix/dist/_______/libtasn1.so.6 new file mode 100755 index 0000000..c932bd9 Binary files /dev/null and b/journal/unix/dist/_______/libtasn1.so.6 differ diff --git a/journal/unix/dist/_______/libthai.so.0 b/journal/unix/dist/_______/libthai.so.0 new file mode 100755 index 0000000..fddfd47 Binary files /dev/null and b/journal/unix/dist/_______/libthai.so.0 differ diff --git a/journal/unix/dist/_______/libtinfo.so.5 b/journal/unix/dist/_______/libtinfo.so.5 new file mode 100755 index 0000000..0ab0498 Binary files /dev/null and b/journal/unix/dist/_______/libtinfo.so.5 differ diff --git a/journal/unix/dist/_______/libwayland-client.so.0 b/journal/unix/dist/_______/libwayland-client.so.0 new file mode 100755 index 0000000..5a810dd Binary files /dev/null and b/journal/unix/dist/_______/libwayland-client.so.0 differ diff --git a/journal/unix/dist/_______/libwayland-cursor.so.0 b/journal/unix/dist/_______/libwayland-cursor.so.0 new file mode 100755 index 0000000..bba1627 Binary files /dev/null and b/journal/unix/dist/_______/libwayland-cursor.so.0 differ diff --git a/journal/unix/dist/_______/libwayland-egl.so.1 b/journal/unix/dist/_______/libwayland-egl.so.1 new file mode 100755 index 0000000..8839642 Binary files /dev/null and b/journal/unix/dist/_______/libwayland-egl.so.1 differ diff --git a/journal/unix/dist/_______/libwayland-server.so.0 b/journal/unix/dist/_______/libwayland-server.so.0 new file mode 100755 index 0000000..5e0d5df Binary files /dev/null and b/journal/unix/dist/_______/libwayland-server.so.0 differ diff --git a/journal/unix/dist/_______/libxcb-glx.so.0 b/journal/unix/dist/_______/libxcb-glx.so.0 new file mode 100755 index 0000000..3b40010 Binary files /dev/null and b/journal/unix/dist/_______/libxcb-glx.so.0 differ diff --git a/journal/unix/dist/_______/libxcb-present.so.0 b/journal/unix/dist/_______/libxcb-present.so.0 new file mode 100755 index 0000000..62ad77c Binary files /dev/null and b/journal/unix/dist/_______/libxcb-present.so.0 differ diff --git a/journal/unix/dist/_______/libxcb-render.so.0 b/journal/unix/dist/_______/libxcb-render.so.0 new file mode 100755 index 0000000..febce49 Binary files /dev/null and b/journal/unix/dist/_______/libxcb-render.so.0 differ diff --git a/journal/unix/dist/_______/libxcb-shm.so.0 b/journal/unix/dist/_______/libxcb-shm.so.0 new file mode 100755 index 0000000..bf98ef1 Binary files /dev/null and b/journal/unix/dist/_______/libxcb-shm.so.0 differ diff --git a/journal/unix/dist/_______/libxcb-sync.so.1 b/journal/unix/dist/_______/libxcb-sync.so.1 new file mode 100755 index 0000000..777c902 Binary files /dev/null and b/journal/unix/dist/_______/libxcb-sync.so.1 differ diff --git a/journal/unix/dist/_______/libxcb-xfixes.so.0 b/journal/unix/dist/_______/libxcb-xfixes.so.0 new file mode 100755 index 0000000..7356ce4 Binary files /dev/null and b/journal/unix/dist/_______/libxcb-xfixes.so.0 differ diff --git a/journal/unix/dist/_______/libxkbcommon.so.0 b/journal/unix/dist/_______/libxkbcommon.so.0 new file mode 100755 index 0000000..0acdeca Binary files /dev/null and b/journal/unix/dist/_______/libxkbcommon.so.0 differ diff --git a/journal/unix/dist/_______/libxshmfence.so.1 b/journal/unix/dist/_______/libxshmfence.so.1 new file mode 100755 index 0000000..e97b586 Binary files /dev/null and b/journal/unix/dist/_______/libxshmfence.so.1 differ diff --git a/journal/unix/dist/_______/libz.so.1 b/journal/unix/dist/_______/libz.so.1 new file mode 100755 index 0000000..d78352d Binary files /dev/null and b/journal/unix/dist/_______/libz.so.1 differ diff --git a/journal/unix/dist/_______/qt.conf b/journal/unix/dist/_______/qt.conf new file mode 100644 index 0000000..f26805b --- /dev/null +++ b/journal/unix/dist/_______/qt.conf @@ -0,0 +1,2 @@ +[Paths] +Plugins = "./MacOS/PyQt5/Qt/plugins" \ No newline at end of file diff --git a/journal/unix/dist/_______/readline.so b/journal/unix/dist/_______/readline.so new file mode 100755 index 0000000..ecfcc49 Binary files /dev/null and b/journal/unix/dist/_______/readline.so differ diff --git a/journal/unix/dist/_______/resource.so b/journal/unix/dist/_______/resource.so new file mode 100755 index 0000000..3478070 Binary files /dev/null and b/journal/unix/dist/_______/resource.so differ diff --git a/journal/unix/dist/_______/sip.so b/journal/unix/dist/_______/sip.so new file mode 100755 index 0000000..34a0f9f Binary files /dev/null and b/journal/unix/dist/_______/sip.so differ diff --git a/journal/unix/dist/_______/termios.so b/journal/unix/dist/_______/termios.so new file mode 100755 index 0000000..1e8f355 Binary files /dev/null and b/journal/unix/dist/_______/termios.so differ diff --git a/mkxp.pro b/mkxp.pro index 2bac4bf..ecb3513 100644 --- a/mkxp.pro +++ b/mkxp.pro @@ -47,9 +47,9 @@ unix { SOURCES += src/mac-desktop.mm } !macx: { - PKGCONFIG += giomm-2.4 + QMAKE_CXXFLAGS += -g + PKGCONFIG += giomm-2.4 gtk+-3.0 gdk-3.0 libxfconf-0 INCLUDEPATH += /usr/include/AL /usr/local/include/AL - SOURCES += src/xdg-user-dir-lookup.c LIBS += -lX11 } } diff --git a/src/eventthread.cpp b/src/eventthread.cpp index 1af1864..63bbf76 100644 --- a/src/eventthread.cpp +++ b/src/eventthread.cpp @@ -277,7 +277,7 @@ void EventThread::process(RGSSThreadData &rtData) #ifdef __APPLE__ case SDL_WINDOWEVENT_MOVED: - if (event.window.data1 && event.window.data2) + if (shState != NULL && event.window.data1 && event.window.data2) shState->oneshot().setWindowPos(event.window.data1, event.window.data2); break; #endif @@ -586,11 +586,11 @@ int EventThread::eventFilter(void *data, SDL_Event *event) Debug() << "SDL_APP_LOWMEMORY"; return 0; - /* Workaround for Windows pausing on drag */ + /* Workaround for Windows pausing on drag */ case SDL_WINDOWEVENT: if (event->window.event == SDL_WINDOWEVENT_MOVED) { - if (shState->rgssVersion > 0) + if (shState != NULL && shState->rgssVersion > 0) { shState->oneshot().setWindowPos(event->window.data1, event->window.data2); shState->graphics().update(false); diff --git a/src/oneshot.cpp b/src/oneshot.cpp index 65e9521..2d2d347 100644 --- a/src/oneshot.cpp +++ b/src/oneshot.cpp @@ -33,185 +33,11 @@ #define OS_OSX #else #define OS_LINUX - - class GtkWidget; - - typedef enum - { - GTK_MESSAGE_INFO, - GTK_MESSAGE_WARNING, - GTK_MESSAGE_QUESTION, - GTK_MESSAGE_ERROR - } GtkMessageType; - - typedef enum - { - GTK_BUTTONS_NONE, - GTK_BUTTONS_OK, - GTK_BUTTONS_CLOSE, - GTK_BUTTONS_CANCEL, - GTK_BUTTONS_YES_NO, - GTK_BUTTONS_OK_CANCEL - } GtkButtonsType; - - typedef enum - { - GTK_RESPONSE_NONE = -1, - GTK_RESPONSE_REJECT = -2, - GTK_RESPONSE_ACCEPT = -3, - GTK_RESPONSE_DELETE_EVENT = -4, - GTK_RESPONSE_OK = -5, - GTK_RESPONSE_CANCEL = -6, - GTK_RESPONSE_CLOSE = -7, - GTK_RESPONSE_YES = -8, - GTK_RESPONSE_NO = -9, - GTK_RESPONSE_APPLY = -10, - GTK_RESPONSE_HELP = -11 - } GtkResponseType; - - /** - * xdg_user_dir_lookup_with_fallback: - * @type: a string specifying the type of directory - * @fallback: value to use if the directory isn't specified by the user - * @returns: a newly allocated absolute pathname - * - * Looks up a XDG user directory of the specified type. - * Example of types are "DESKTOP" and "DOWNLOAD". - * - * In case the user hasn't specified any directory for the specified - * type the value returned is @fallback. - * - * The return value is newly allocated and must be freed with - * free(). The return value is never NULL if @fallback != NULL, unless - * out of memory. - **/ - static char * - xdg_user_dir_lookup_with_fallback (const char *type, const char *fallback) - { - FILE *file; - char *home_dir, *config_home, *config_file; - char buffer[512]; - char *user_dir; - char *p, *d; - int len; - int relative; - - home_dir = getenv ("HOME"); - - if (home_dir == NULL) - goto error; - - config_home = getenv ("XDG_CONFIG_HOME"); - if (config_home == NULL || config_home[0] == 0) - { - config_file = (char*) malloc (strlen (home_dir) + strlen ("/.config/user-dirs.dirs") + 1); - if (config_file == NULL) - goto error; - - strcpy (config_file, home_dir); - strcat (config_file, "/.config/user-dirs.dirs"); - } - else - { - config_file = (char*) malloc (strlen (config_home) + strlen ("/user-dirs.dirs") + 1); - if (config_file == NULL) - goto error; - - strcpy (config_file, config_home); - strcat (config_file, "/user-dirs.dirs"); - } - - file = fopen (config_file, "r"); - free (config_file); - if (file == NULL) - goto error; - - user_dir = NULL; - while (fgets (buffer, sizeof (buffer), file)) - { - /* Remove newline at end */ - len = strlen (buffer); - if (len > 0 && buffer[len-1] == '\n') - buffer[len-1] = 0; - - p = buffer; - while (*p == ' ' || *p == '\t') - p++; - - if (strncmp (p, "XDG_", 4) != 0) - continue; - p += 4; - if (strncmp (p, type, strlen (type)) != 0) - continue; - p += strlen (type); - if (strncmp (p, "_DIR", 4) != 0) - continue; - p += 4; - - while (*p == ' ' || *p == '\t') - p++; - - if (*p != '=') - continue; - p++; - - while (*p == ' ' || *p == '\t') - p++; - - if (*p != '"') - continue; - p++; - - relative = 0; - if (strncmp (p, "$HOME/", 6) == 0) - { - p += 6; - relative = 1; - } - else if (*p != '/') - continue; - - if (relative) - { - user_dir = (char*) malloc (strlen (home_dir) + 1 + strlen (p) + 1); - if (user_dir == NULL) - goto error2; - - strcpy (user_dir, home_dir); - strcat (user_dir, "/"); - } - else - { - user_dir = (char*) malloc (strlen (p) + 1); - if (user_dir == NULL) - goto error2; - - *user_dir = 0; - } - - d = user_dir + strlen (user_dir); - while (*p && *p != '"') - { - if ((*p == '\\') && (*(p+1) != 0)) - p++; - *d++ = *p++; - } - *d = 0; - } - error2: - fclose (file); - - if (user_dir) - return user_dir; - - error: - if (fallback) - return strdup (fallback); - return NULL; - } + #include + #include #endif #else - #error "Operating system not detected." + #error "Operating system not detected." #endif #define DEF_SCREEN_W 640 @@ -219,10 +45,10 @@ struct OneshotPrivate { - //Main SDL window + // Main SDL window SDL_Window *window; - //String data + // String data std::string lang; std::string userName; std::string savePath; @@ -230,49 +56,32 @@ struct OneshotPrivate std::string gamePath; std::string journal; - //Dialog text + // Dialog text std::string txtYes; std::string txtNo; bool exiting; bool allowExit; - //Alpha texture data for portions of window obscured by screen edges + // Alpha texture data for portions of window obscured by screen edges int winX, winY; SDL_mutex *winMutex; bool winPosChanged; std::vector obscuredMap; bool obscuredCleared; - #if defined OS_LINUX - //GTK+ - void *libgtk; - void (*gtk_init)(int *argc, char ***argv); - GtkWidget *(*gtk_message_dialog_new)(void *parent, int flags, GtkMessageType type, GtkButtonsType buttons, const char *message_format, ...); - void (*gtk_window_set_title)(GtkWidget *window, const char *title); - GtkResponseType (*gtk_dialog_run)(GtkWidget *dialog); - void (*gtk_widget_destroy)(GtkWidget *widget); - void (*gtk_main_quit)(); - void (*gtk_main)(); - unsigned int (*gdk_threads_add_idle)(int (*function)(void *data), void *data); + std::string desktopEnv; #endif OneshotPrivate() : window(0), winMutex(SDL_CreateMutex()) -#if defined OS_LINUX - ,libgtk(0) -#endif { } ~OneshotPrivate() { SDL_DestroyMutex(winMutex); -#ifdef OS_LINUX - if (libgtk) - dlclose(libgtk); -#endif } }; @@ -280,53 +89,51 @@ struct OneshotPrivate #if defined OS_LINUX struct linux_DialogData { - //Input - OneshotPrivate *p; + // Input int type; const char *body; const char *title; - //Output + // Output bool result; }; static int linux_dialog(void *rawData) { linux_DialogData *data = reinterpret_cast(rawData); - OneshotPrivate *p = data->p; - //Determine correct flags + // Determine correct flags GtkMessageType gtktype; GtkButtonsType gtkbuttons = GTK_BUTTONS_OK; switch (data->type) { - case Oneshot::MSG_INFO: - gtktype = GTK_MESSAGE_INFO; - break; - case Oneshot::MSG_YESNO: - gtktype = GTK_MESSAGE_QUESTION; - gtkbuttons = GTK_BUTTONS_YES_NO; - break; - case Oneshot::MSG_WARN: - gtktype = GTK_MESSAGE_WARNING; - break; - case Oneshot::MSG_ERR: - gtktype = GTK_MESSAGE_ERROR; - break; - default: - p->gtk_main_quit(); - return 0; + case Oneshot::MSG_INFO: + gtktype = GTK_MESSAGE_INFO; + break; + case Oneshot::MSG_YESNO: + gtktype = GTK_MESSAGE_QUESTION; + gtkbuttons = GTK_BUTTONS_YES_NO; + break; + case Oneshot::MSG_WARN: + gtktype = GTK_MESSAGE_WARNING; + break; + case Oneshot::MSG_ERR: + gtktype = GTK_MESSAGE_ERROR; + break; + default: + gtk_main_quit(); + return 0; } - //Display dialog and get result - GtkWidget *dialog = p->gtk_message_dialog_new(0, 0, gtktype, gtkbuttons, data->body); - p->gtk_window_set_title(dialog, data->title); - int result = p->gtk_dialog_run(dialog); - p->gtk_widget_destroy(dialog); + // Display dialog and get result + GtkWidget *dialog = gtk_message_dialog_new(NULL, GTK_DIALOG_MODAL, gtktype, gtkbuttons, data->body); + gtk_window_set_title(GTK_WINDOW(dialog), data->title); + int result = gtk_dialog_run(GTK_DIALOG(dialog)); + gtk_widget_destroy(dialog); - //Interpret result and return + // Interpret result and return data->result = (result == GTK_RESPONSE_OK || result == GTK_RESPONSE_YES); - p->gtk_main_quit(); + gtk_main_quit(); return 0; } #elif defined OS_W32 @@ -366,130 +173,6 @@ static WCHAR *w32_toWide(const char *str) } #endif -LTexture::LTexture() { - //Initialize - mTexture = NULL; - mWidth = 0; - mHeight = 0; -} - -LTexture::~LTexture() { - //Deallocate - free(); -} - -bool LTexture::loadFromFile(std::string path, SDL_Renderer *gRenderer) { - //Get rid of preexisting texture - free(); - - //The final texture - SDL_Texture *newTexture = NULL; - - //Load image at specified path - SDL_Surface *loadedSurface = IMG_Load(path.c_str()); - if (loadedSurface == NULL) { - printf("Unable to load image %s! SDL_image Error: %s\n", path.c_str(), IMG_GetError()); - } else { - //Color key image - SDL_SetColorKey(loadedSurface, SDL_TRUE, SDL_MapRGB(loadedSurface->format, 0, 0xFF, 0xFF)); - - //Create texture from surface pixels - newTexture = SDL_CreateTextureFromSurface(gRenderer, loadedSurface); - if (newTexture == NULL) { - printf("Unable to create texture from %s! SDL Error: %s\n", path.c_str(), SDL_GetError()); - } else { - //Get image dimensions - mWidth = loadedSurface->w; - mHeight = loadedSurface->h; - } - - //Get rid of old loaded surface - SDL_FreeSurface(loadedSurface); - } - - //Return success - mTexture = newTexture; - return mTexture != NULL; -} - -#ifdef _SDL_TTF_H -bool LTexture::loadFromRenderedText(std::string textureText, SDL_Color textColor, SDL_Renderer *gRenderer, TTF_Font *gFont) { - //Get rid of preexisting texture - free(); - - //Render text surface - SDL_Surface *textSurface = TTF_RenderText_Solid(gFont, textureText.c_str(), textColor); - if (textSurface != NULL) { - //Create texture from surface pixels - mTexture = SDL_CreateTextureFromSurface(gRenderer, textSurface); - if (mTexture == NULL) { - printf("Unable to create texture from rendered text! SDL Error: %s\n", SDL_GetError()); - } else { - //Get image dimensions - mWidth = textSurface->w; - mHeight = textSurface->h; - } - - //Get rid of old surface - SDL_FreeSurface(textSurface); - } else { - printf("Unable to render text surface! SDL_ttf Error: %s\n", TTF_GetError()); - } - - - //Return success - return mTexture != NULL; -} -#endif - -void LTexture::free() { - //Free texture if it exists - if (mTexture != NULL) { - SDL_DestroyTexture(mTexture); - mTexture = NULL; - mWidth = 0; - mHeight = 0; - } -} - -void LTexture::setColor(Uint8 red, Uint8 green, Uint8 blue) { - //Modulate texture rgb - SDL_SetTextureColorMod(mTexture, red, green, blue); -} - -void LTexture::setBlendMode(SDL_BlendMode blending) { - //Set blending function - SDL_SetTextureBlendMode(mTexture, blending); -} - -void LTexture::setAlpha(Uint8 alpha) { - //Modulate texture alpha - SDL_SetTextureAlphaMod(mTexture, alpha); -} - -void LTexture::render(SDL_Renderer *gRenderer, int x, int y, SDL_Rect *clip, double angle, SDL_Point *center, - SDL_RendererFlip flip) { - //Set rendering space and render to screen - SDL_Rect renderQuad = {x, y, mWidth, mHeight }; - - //Set clip rendering dimensions - if (clip != NULL) { - renderQuad.w = clip->w; - renderQuad.h = clip->h; - } - - //Render to screen - SDL_RenderCopyEx(gRenderer, mTexture, clip, &renderQuad, angle, center, flip); -} - -int LTexture::getWidth() { - return mWidth; -} - -int LTexture::getHeight() { - return mHeight; -} - Oneshot::Oneshot(RGSSThreadData &threadData) : threadData(threadData) { @@ -540,20 +223,20 @@ Oneshot::Oneshot(RGSSThreadData &threadData) : } } - //Get documents path + // Get documents path WCHAR path[MAX_PATH]; SHGetFolderPath(NULL, CSIDL_PERSONAL, NULL, 0, path); p->docsPath = w32_fromWide(path); p->gamePath = p->docsPath+"\\My Games"; p->journal = "_______.exe"; #else - //Get language code + // Get language code const char *lc_all = getenv("LC_ALL"); const char *lang = getenv("LANG"); const char *code = (lc_all ? lc_all : lang); if (code) { - //find first dot, copy language code + // find first dot, copy language code int end = 0; for (; code[end] && code[end] != '.'; ++end) {} p->lang = std::string(code, end); @@ -561,7 +244,7 @@ Oneshot::Oneshot(RGSSThreadData &threadData) : else p->lang = "en"; - //Get user's name + // Get user's name #ifdef OS_OSX struct passwd *pwd = getpwuid(geteuid()); #elif defined OS_LINUX @@ -569,8 +252,8 @@ Oneshot::Oneshot(RGSSThreadData &threadData) : #endif if (pwd) { - if (pwd->pw_gecos && pwd->pw_gecos[0] && pwd->pw_gecos[0] != ',') - { + if (pwd->pw_gecos && pwd->pw_gecos[0] && pwd->pw_gecos[0] != ',') + { //Get the user's full name int comma = 0; for (; pwd->pw_gecos[comma] && pwd->pw_gecos[comma] != ','; ++comma) {} @@ -580,7 +263,7 @@ Oneshot::Oneshot(RGSSThreadData &threadData) : p->userName = pwd->pw_name; } - //Get documents path + // Get documents path std::string path = std::string(getenv("HOME")) + std::string("/Documents"); //xdg_user_dir_lookup_with_fallback("Documents", getenv("HOME")); p->docsPath = path.c_str(); p->gamePath = path.c_str(); @@ -591,56 +274,21 @@ Oneshot::Oneshot(RGSSThreadData &threadData) : #endif #endif - /********** - * MSGBOX - **********/ -#ifdef OS_LINUX -#define LOAD_FUNC(name) *reinterpret_cast(&p->name) = dlsym(p->libgtk, #name) - //Attempt to link to gtk (prefer gtk2 over gtk3 until I can figure that message box icon out) - static const char *gtklibs[] = - { - "libgtk-x11-2.0.so", - "libgtk-3.0.so", - }; - - for (size_t i = 0; i < ARRAY_SIZE(gtklibs); ++i) - { - if (!(p->libgtk = dlopen("libgtk-x11-2.0.so", RTLD_NOW))) - p->libgtk = dlopen("libgtk-3.0.so", RTLD_NOW); - if (p->libgtk) - { - //Load functions - LOAD_FUNC(gtk_init); - LOAD_FUNC(gtk_message_dialog_new); - LOAD_FUNC(gtk_window_set_title); - LOAD_FUNC(gtk_dialog_run); - LOAD_FUNC(gtk_widget_destroy); - LOAD_FUNC(gtk_main_quit); - LOAD_FUNC(gtk_main); - LOAD_FUNC(gdk_threads_add_idle); - - if (p->gtk_init - && p->gtk_message_dialog_new - && p->gtk_window_set_title - && p->gtk_dialog_run - && p->gtk_widget_destroy - && p->gtk_main_quit - && p->gtk_main - && p->gdk_threads_add_idle) - { - p->gtk_init(0, 0); - } - else - { - dlclose(p->libgtk); - p->libgtk = 0; - } - } - if (p->libgtk) - break; +#ifdef __linux__ + std::string desktop(getenv("XDG_CURRENT_DESKTOP")); + std::transform(desktop.begin(), desktop.end(), desktop.begin(), ::tolower); + if ( + desktop.find("cinnamon") != std::string::npos || + desktop.find("gnome") != std::string::npos || + desktop.find("unity") != std::string::npos + ) { + p->desktopEnv = "gnome"; + gtk_init(0, 0); + } else if (desktop.find("xfce") != std::string::npos) { + p->desktopEnv = "xfce"; } -#undef LOAD_FUNC #endif + /******** * MISC ********/ @@ -809,51 +457,13 @@ bool Oneshot::msgbox(int type, const char *body, const char *title) { if (!title) title = ""; -#if 0 - //Get native window handle - SDL_SysWMinfo wminfo; - SDL_version version; - SDL_VERSION(&version); - wminfo.version = version; - SDL_GetWindowWMInfo(p->window, &wminfo); - HWND hwnd = wminfo.info.win.window; - - //Construct flags - UINT flags = 0; - switch (type) - { - case MSG_INFO: - flags = MB_ICONINFORMATION; - break; - case MSG_YESNO: - flags = MB_ICONQUESTION | MB_YESNO; - break; - case MSG_WARN: - flags = MB_ICONWARNING; - break; - case MSG_ERR: - flags = MB_ICONERROR; - break; - } - - //Create message box - WCHAR *wbody = w32_toWide(body); - WCHAR *wtitle = w32_toWide(title); - int result = MessageBoxW(N, wbody, wtitle, flags); - delete [] title; - delete [] body; - - //Interpret result - return (result == IDOK || result == IDYES); -#else #if defined OS_LINUX - if (p->libgtk) - { - linux_DialogData data = {p, type, body, title, 0}; - p->gdk_threads_add_idle(linux_dialog, &data); - p->gtk_main(); - return data.result; - } + if (p->desktopEnv == "gnome") { + linux_DialogData data = {type, body, title, 0}; + gdk_threads_add_idle(linux_dialog, &data); + gtk_main(); + return data.result; + } #endif //SDL message box @@ -890,7 +500,7 @@ bool Oneshot::msgbox(int type, const char *body, const char *title) data.flags = SDL_MESSAGEBOX_WARNING; #ifdef OS_W32 sound = SND_ALIAS_SYSTEMEXCLAMATION; - #endif +#endif break; case MSG_ERR: data.flags = SDL_MESSAGEBOX_WARNING; @@ -923,31 +533,9 @@ bool Oneshot::msgbox(int type, const char *body, const char *title) int button; SDL_ShowMessageBox(&data, &button); return button ? true : false; -#endif } std::string Oneshot::textinput(const char* prompt, int char_limit, const char* fontName) { - // SDL_Color textColor = {0xFF, 0xFF, 0xFF, 0xFF}; //Set text color as black - // SDL_Renderer *gRenderer = SDL_CreateRenderer(threadData.window, -1, SDL_RENDERER_ACCELERATED | SDL_RENDERER_PRESENTVSYNC); - // // SDL_SetRenderDrawColor(gRenderer, 0xFF, 0xFF, 0xFF, 0xFF); - // LTexture gPromptTextTexture; - // LTexture gInputTextTexture; - - // //Open the font - // TTF_Font *gFont = TTF_OpenFont("VL-Gothic-Regular.ttf", 18); // XXX Implement font changing - // if (gFont == NULL) { - // printf("Failed to load lazy font! SDL_ttf Error: %s\n", TTF_GetError()); - // // success = false; - // } else { - // //Render the prompt - // if (!gPromptTextTexture.loadFromRenderedText(prompt, textColor, gRenderer, gFont)) { - // printf("Failed to render prompt text!\n"); - // // success = false; - // } - // } - - // gInputTextTexture.loadFromRenderedText(threadData.inputText.c_str(), textColor, gRenderer, gFont); - std::vector *fontNames = new std::vector(); fontNames->push_back(fontName); fontNames->push_back("VL Gothic"); @@ -967,31 +555,16 @@ std::string Oneshot::textinput(const char* prompt, int char_limit, const char* f threadData.inputText.clear(); SDL_StartTextInput(); - //Main loop + // Main loop while (threadData.acceptingTextInput) { if (inputTextPrev != threadData.inputText) { inputBmp->clear(); inputBmp->drawText(DEF_SCREEN_W / 2, DEF_SCREEN_H / 2, DEF_SCREEN_W, DEF_SCREEN_H, threadData.inputText.c_str(), 1); inputTextPrev = threadData.inputText; - // if (threadData.inputText.length() > 0) gInputTextTexture.loadFromRenderedText(threadData.inputText.c_str(), textColor, gRenderer, gFont); - // else gInputTextTexture.loadFromRenderedText(" ", textColor, gRenderer, gFont); } - - // //Clear screen - // // SDL_SetRenderDrawColor(gRenderer, 0xFF, 0xFF, 0xFF, 0xFF); - // SDL_RenderClear(gRenderer); - - // //Render text textures - // gPromptTextTexture.render(gRenderer, (DEF_SCREEN_W - gPromptTextTexture.getWidth()) / 2, - // (DEF_SCREEN_H / 2) - gPromptTextTexture.getHeight()); - // gInputTextTexture.render(gRenderer, (DEF_SCREEN_W - gInputTextTexture.getWidth()) / 2, - // (DEF_SCREEN_H / 2)); - - // //Update screen - // SDL_RenderPresent(gRenderer); } - //Disable text input + // Disable text input SDL_StopTextInput(); // //Free loaded images diff --git a/src/oneshot.h b/src/oneshot.h index 98a25d6..bc40a9a 100644 --- a/src/oneshot.h +++ b/src/oneshot.h @@ -11,52 +11,6 @@ struct OneshotPrivate; struct RGSSThreadData; -//Texture wrapper class -class LTexture { - public: - //Initializes variables - LTexture(); - - //Deallocates memory - ~LTexture(); - - //Loads image at specified path - bool loadFromFile(std::string path, SDL_Renderer *gRenderer); - - #ifdef _SDL_TTF_H - //Creates image from font string - bool loadFromRenderedText(std::string textureText, SDL_Color textColor, SDL_Renderer *gRenderer, TTF_Font *gFont); - #endif - - //Deallocates texture - void free(); - - //Set color modulation - void setColor(Uint8 red, Uint8 green, Uint8 blue); - - //Set blending - void setBlendMode(SDL_BlendMode blending); - - //Set alpha modulation - void setAlpha(Uint8 alpha); - - //Renders texture at given point - void render(SDL_Renderer *gRenderer, int x, int y, SDL_Rect *clip = NULL, double angle = 0.0, SDL_Point *center = NULL, - SDL_RendererFlip flip = SDL_FLIP_NONE); - - //Gets image dimensions - int getWidth(); - int getHeight(); - - private: - //The actual hardware texture - SDL_Texture *mTexture; - - //Image dimensions - int mWidth; - int mHeight; -}; - class Oneshot { public: @@ -120,6 +74,10 @@ public: //Dirty flag for obscured texture bool obscuredDirty; +#ifdef __linux__ + std::string desktopEnv; +#endif + private: OneshotPrivate *p; RGSSThreadData &threadData; diff --git a/src/xdg-user-dir-lookup.c b/src/xdg-user-dir-lookup.c deleted file mode 100644 index 5c6c90d..0000000 --- a/src/xdg-user-dir-lookup.c +++ /dev/null @@ -1,232 +0,0 @@ -/* - This file is not licenced under the GPL like the rest of the code. - Its is under the MIT license, to encourage reuse by cut-and-paste. - - Copyright (c) 2007 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. -*/ - -#include -#include -#include - -/** - * xdg_user_dir_lookup_with_fallback: - * @type: a string specifying the type of directory - * @fallback: value to use if the directory isn't specified by the user - * @returns: a newly allocated absolute pathname - * - * Looks up a XDG user directory of the specified type. - * Example of types are "DESKTOP" and "DOWNLOAD". - * - * In case the user hasn't specified any directory for the specified - * type the value returned is @fallback. - * - * The return value is newly allocated and must be freed with - * free(). The return value is never NULL if @fallback != NULL, unless - * out of memory. - **/ -static char * -xdg_user_dir_lookup_with_fallback (const char *type, const char *fallback) -{ - FILE *file; - char *home_dir, *config_home, *config_file; - char buffer[512]; - char *user_dir; - char *p, *d; - int len; - int relative; - - home_dir = getenv ("HOME"); - - if (home_dir == NULL) - goto error; - - config_home = getenv ("XDG_CONFIG_HOME"); - if (config_home == NULL || config_home[0] == 0) - { - config_file = (char*) malloc (strlen (home_dir) + strlen ("/.config/user-dirs.dirs") + 1); - if (config_file == NULL) - goto error; - - strcpy (config_file, home_dir); - strcat (config_file, "/.config/user-dirs.dirs"); - } - else - { - config_file = (char*) malloc (strlen (config_home) + strlen ("/user-dirs.dirs") + 1); - if (config_file == NULL) - goto error; - - strcpy (config_file, config_home); - strcat (config_file, "/user-dirs.dirs"); - } - - file = fopen (config_file, "r"); - free (config_file); - if (file == NULL) - goto error; - - user_dir = NULL; - while (fgets (buffer, sizeof (buffer), file)) - { - /* Remove newline at end */ - len = strlen (buffer); - if (len > 0 && buffer[len-1] == '\n') - buffer[len-1] = 0; - - p = buffer; - while (*p == ' ' || *p == '\t') - p++; - - if (strncmp (p, "XDG_", 4) != 0) - continue; - p += 4; - if (strncmp (p, type, strlen (type)) != 0) - continue; - p += strlen (type); - if (strncmp (p, "_DIR", 4) != 0) - continue; - p += 4; - - while (*p == ' ' || *p == '\t') - p++; - - if (*p != '=') - continue; - p++; - - while (*p == ' ' || *p == '\t') - p++; - - if (*p != '"') - continue; - p++; - - relative = 0; - if (strncmp (p, "$HOME/", 6) == 0) - { - p += 6; - relative = 1; - } - else if (*p != '/') - continue; - - if (relative) - { - user_dir = (char*) malloc (strlen (home_dir) + 1 + strlen (p) + 1); - if (user_dir == NULL) - goto error2; - - strcpy (user_dir, home_dir); - strcat (user_dir, "/"); - } - else - { - user_dir = (char*) malloc (strlen (p) + 1); - if (user_dir == NULL) - goto error2; - - *user_dir = 0; - } - - d = user_dir + strlen (user_dir); - while (*p && *p != '"') - { - if ((*p == '\\') && (*(p+1) != 0)) - p++; - *d++ = *p++; - } - *d = 0; - } -error2: - fclose (file); - - if (user_dir) - return user_dir; - - error: - if (fallback) - return strdup (fallback); - return NULL; -} - -/** - * xdg_user_dir_lookup: - * @type: a string specifying the type of directory - * @returns: a newly allocated absolute pathname - * - * Looks up a XDG user directory of the specified type. - * Example of types are "DESKTOP" and "DOWNLOAD". - * - * The return value is always != NULL (unless out of memory), - * and if a directory - * for the type is not specified by the user the default - * is the home directory. Except for DESKTOP which defaults - * to ~/Desktop. - * - * The return value is newly allocated and must be freed with - * free(). - **/ -static char * -xdg_user_dir_lookup (const char *type) -{ - char *dir, *home_dir, *user_dir; - - dir = xdg_user_dir_lookup_with_fallback (type, NULL); - if (dir != NULL) - return dir; - - home_dir = getenv ("HOME"); - - if (home_dir == NULL) - return strdup ("/tmp"); - - /* Special case desktop for historical compatibility */ - if (strcmp (type, "DESKTOP") == 0) - { - user_dir = (char*) malloc (strlen (home_dir) + strlen ("/Desktop") + 1); - if (user_dir == NULL) - return NULL; - - strcpy (user_dir, home_dir); - strcat (user_dir, "/Desktop"); - return user_dir; - } - - return strdup (home_dir); -} - -#ifdef STANDALONE_XDG_USER_DIR_LOOKUP -int -main (int argc, char *argv[]) -{ - if (argc != 2) - { - fprintf (stderr, "Usage %s \n", argv[0]); - exit (1); - } - - printf ("%s\n", xdg_user_dir_lookup (argv[1])); - return 0; -} -#endif