PrEditor 0.0.0.dev1__py2.py3-none-any.whl → 0.1.0__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of PrEditor might be problematic. Click here for more details.
- PrEditor-0.1.0.dist-info/LICENSE +165 -0
- PrEditor-0.1.0.dist-info/METADATA +212 -0
- PrEditor-0.1.0.dist-info/RECORD +149 -0
- {PrEditor-0.0.0.dev1.dist-info → PrEditor-0.1.0.dist-info}/WHEEL +1 -1
- PrEditor-0.1.0.dist-info/entry_points.txt +18 -0
- PrEditor-0.1.0.dist-info/top_level.txt +1 -0
- preditor/__init__.py +301 -0
- {blurdev → preditor}/__main__.py +13 -13
- preditor/about_module.py +166 -0
- preditor/cli.py +192 -0
- {blurdev → preditor}/contexts.py +119 -119
- preditor/cores/core.py +65 -0
- preditor/dccs/maya/PrEditor_maya.mod +2 -0
- preditor/dccs/maya/plug-ins/PrEditor_maya.py +108 -0
- preditor/debug.py +294 -0
- blurdev/scintilla/delayable_engine.py → preditor/delayable_engine/__init__.py +310 -299
- blurdev/scintilla/delayables/base.py → preditor/delayable_engine/delayables.py +85 -85
- {blurdev → preditor}/enum.py +728 -1003
- {blurdev → preditor}/gui/__init__.py +84 -125
- preditor/gui/app.py +159 -0
- {blurdev → preditor}/gui/codehighlighter.py +209 -219
- {blurdev → preditor}/gui/completer.py +226 -236
- {blurdev → preditor}/gui/console.py +801 -858
- {blurdev → preditor}/gui/dialog.py +200 -216
- preditor/gui/drag_tab_bar.py +190 -0
- preditor/gui/editor_chooser.py +57 -0
- {blurdev → preditor}/gui/errordialog.py +100 -97
- preditor/gui/fuzzy_search/fuzzy_search.py +93 -0
- preditor/gui/group_tab_widget/__init__.py +319 -0
- preditor/gui/group_tab_widget/grouped_tab_menu.py +35 -0
- preditor/gui/group_tab_widget/grouped_tab_models.py +108 -0
- preditor/gui/group_tab_widget/grouped_tab_widget.py +75 -0
- preditor/gui/group_tab_widget/one_tab_widget.py +54 -0
- preditor/gui/level_buttons.py +349 -0
- {blurdev → preditor}/gui/logger_window_handler.py +46 -45
- {blurdev → preditor}/gui/loggerwindow.py +1205 -1417
- {blurdev → preditor}/gui/newtabwidget.py +69 -68
- {blurdev → preditor}/gui/redmine_login_dialog.py +63 -61
- {blurdev → preditor}/gui/set_text_editor_path_dialog.py +59 -57
- preditor/gui/ui/editor_chooser.ui +93 -0
- {blurdev → preditor}/gui/ui/errordialog.ui +81 -81
- {blurdev → preditor}/gui/ui/loggerwindow.ui +1030 -864
- {blurdev → preditor}/gui/ui/redmine_login_dialog.ui +124 -124
- {blurdev → preditor}/gui/ui/set_text_editor_path_dialog.ui +149 -149
- {blurdev → preditor}/gui/window.py +183 -199
- preditor/gui/workbox_mixin.py +357 -0
- preditor/gui/workbox_text_edit.py +117 -0
- preditor/gui/workboxwidget.py +276 -0
- preditor/logging_config.py +52 -0
- preditor/osystem.py +401 -0
- preditor/plugins.py +65 -0
- preditor/prefs.py +74 -0
- {blurdev → preditor}/resource/environment_variables.html +26 -38
- {blurdev → preditor}/resource/error_mail.html +85 -85
- {blurdev → preditor}/resource/error_mail_inline.html +41 -41
- preditor/resource/img/README.md +7 -0
- preditor/resource/img/arrow_forward.png +0 -0
- preditor/resource/img/check-bold.png +0 -0
- preditor/resource/img/chevron-down.png +0 -0
- preditor/resource/img/chevron-up.png +0 -0
- preditor/resource/img/close-thick.png +0 -0
- preditor/resource/img/comment-edit.png +0 -0
- preditor/resource/img/content-copy.png +0 -0
- preditor/resource/img/content-cut.png +0 -0
- preditor/resource/img/content-duplicate.png +0 -0
- preditor/resource/img/content-paste.png +0 -0
- preditor/resource/img/content-save.png +0 -0
- preditor/resource/img/debug_disabled.png +0 -0
- preditor/resource/img/eye-check.png +0 -0
- preditor/resource/img/file-plus.png +0 -0
- preditor/resource/img/file-remove.png +0 -0
- preditor/resource/img/format-align-left.png +0 -0
- preditor/resource/img/format-letter-case-lower.png +0 -0
- preditor/resource/img/format-letter-case-upper.png +0 -0
- preditor/resource/img/information.png +0 -0
- preditor/resource/img/logging_critical.png +0 -0
- preditor/resource/img/logging_custom.png +0 -0
- preditor/resource/img/logging_debug.png +0 -0
- preditor/resource/img/logging_error.png +0 -0
- preditor/resource/img/logging_info.png +0 -0
- preditor/resource/img/logging_not_set.png +0 -0
- preditor/resource/img/logging_warning.png +0 -0
- preditor/resource/img/marker.png +0 -0
- preditor/resource/img/play.png +0 -0
- preditor/resource/img/playlist-play.png +0 -0
- preditor/resource/img/plus-minus-variant.png +0 -0
- preditor/resource/img/preditor.ico +0 -0
- preditor/resource/img/preditor.png +0 -0
- preditor/resource/img/preditor.psd +0 -0
- preditor/resource/img/preditor.svg +44 -0
- preditor/resource/img/restart.svg +1 -0
- preditor/resource/img/skip-forward-outline.png +0 -0
- preditor/resource/img/skip-next-outline.png +0 -0
- preditor/resource/img/skip-next.png +0 -0
- preditor/resource/img/skip-previous.png +0 -0
- preditor/resource/img/subdirectory-arrow-right.png +0 -0
- preditor/resource/img/text-search-variant.png +0 -0
- {blurdev → preditor}/resource/lang/python.json +30 -30
- preditor/resource/settings.ini +25 -0
- {blurdev/resource/stylesheet/logger → preditor/resource/stylesheet}/Bright.css +56 -61
- {blurdev → preditor}/resource/stylesheet/Dark.css +190 -132
- {blurdev → preditor}/scintilla/__init__.py +22 -28
- preditor/scintilla/delayables/__init__.py +11 -0
- {blurdev → preditor}/scintilla/delayables/smart_highlight.py +94 -93
- {blurdev → preditor}/scintilla/delayables/spell_check.py +173 -172
- {blurdev → preditor}/scintilla/documenteditor.py +2039 -2115
- {blurdev → preditor}/scintilla/finddialog.py +68 -81
- {blurdev → preditor}/scintilla/lang/__init__.py +80 -93
- {blurdev → preditor}/scintilla/lang/config/bash.ini +15 -15
- {blurdev → preditor}/scintilla/lang/config/batch.ini +14 -14
- {blurdev → preditor}/scintilla/lang/config/cpp.ini +19 -19
- {blurdev → preditor}/scintilla/lang/config/css.ini +19 -19
- {blurdev → preditor}/scintilla/lang/config/eyeonscript.ini +17 -17
- {blurdev → preditor}/scintilla/lang/config/html.ini +21 -21
- {blurdev → preditor}/scintilla/lang/config/javascript.ini +24 -24
- {blurdev → preditor}/scintilla/lang/config/lua.ini +16 -16
- {blurdev → preditor}/scintilla/lang/config/maxscript.ini +20 -20
- {blurdev → preditor}/scintilla/lang/config/mel.ini +18 -18
- {blurdev → preditor}/scintilla/lang/config/mu.ini +22 -22
- {blurdev → preditor}/scintilla/lang/config/nsi.ini +5 -5
- {blurdev → preditor}/scintilla/lang/config/perl.ini +19 -19
- {blurdev → preditor}/scintilla/lang/config/puppet.ini +19 -19
- {blurdev → preditor}/scintilla/lang/config/python.ini +28 -28
- {blurdev → preditor}/scintilla/lang/config/ruby.ini +19 -19
- {blurdev → preditor}/scintilla/lang/config/sql.ini +7 -7
- {blurdev → preditor}/scintilla/lang/config/xml.ini +21 -21
- {blurdev → preditor}/scintilla/lang/config/yaml.ini +18 -18
- {blurdev → preditor}/scintilla/lang/language.py +240 -250
- preditor/scintilla/lexers/__init__.py +0 -0
- {blurdev → preditor}/scintilla/lexers/cpplexer.py +21 -30
- {blurdev → preditor}/scintilla/lexers/javascriptlexer.py +25 -34
- {blurdev → preditor}/scintilla/lexers/maxscriptlexer.py +234 -253
- {blurdev → preditor}/scintilla/lexers/mellexer.py +368 -376
- {blurdev → preditor}/scintilla/lexers/mulexer.py +32 -41
- {blurdev → preditor}/scintilla/lexers/pythonlexer.py +41 -50
- {blurdev → preditor}/scintilla/ui/finddialog.ui +160 -160
- preditor/settings.py +71 -0
- preditor/stream/__init__.py +80 -0
- preditor/stream/director.py +56 -0
- preditor/stream/manager.py +74 -0
- preditor/streamhandler_helper.py +46 -0
- preditor/utils/__init__.py +0 -0
- preditor/utils/cute.py +30 -0
- preditor/utils/stylesheets.py +54 -0
- {blurdev → preditor}/version.py +5 -5
- preditor/weakref.py +363 -0
- PrEditor-0.0.0.dev1.dist-info/METADATA +0 -51
- PrEditor-0.0.0.dev1.dist-info/RECORD +0 -279
- PrEditor-0.0.0.dev1.dist-info/top_level.txt +0 -1
- blurdev/__init__.py +0 -356
- blurdev/cores/__init__.py +0 -98
- blurdev/cores/application.py +0 -26
- blurdev/cores/core.py +0 -634
- blurdev/debug.py +0 -593
- blurdev/external.py +0 -391
- blurdev/gui/level_buttons.py +0 -585
- blurdev/gui/workboxwidget.py +0 -205
- blurdev/logger.py +0 -238
- blurdev/osystem.py +0 -813
- blurdev/prefs.py +0 -33
- blurdev/protocols/__init__.py +0 -71
- blurdev/protocols/write_std_output_handler.py +0 -83
- blurdev/resource/designer_plugins.xml +0 -9
- blurdev/resource/error_email_old.html +0 -41
- blurdev/resource/img/add.png +0 -0
- blurdev/resource/img/ajax-loader.gif +0 -0
- blurdev/resource/img/application.png +0 -0
- blurdev/resource/img/applications.png +0 -0
- blurdev/resource/img/assburner.png +0 -0
- blurdev/resource/img/assfreezer.png +0 -0
- blurdev/resource/img/bar.gif +0 -0
- blurdev/resource/img/blank.png +0 -0
- blurdev/resource/img/blurdev.png +0 -0
- blurdev/resource/img/calendar_disabled.png +0 -0
- blurdev/resource/img/calendar_enabled.png +0 -0
- blurdev/resource/img/cancel.png +0 -0
- blurdev/resource/img/custom.png +0 -0
- blurdev/resource/img/debug_high.png +0 -0
- blurdev/resource/img/debug_low.png +0 -0
- blurdev/resource/img/debug_mid.png +0 -0
- blurdev/resource/img/debug_off.png +0 -0
- blurdev/resource/img/django.png +0 -0
- blurdev/resource/img/doc.png +0 -0
- blurdev/resource/img/edit.png +0 -0
- blurdev/resource/img/elemental.png +0 -0
- blurdev/resource/img/explore.png +0 -0
- blurdev/resource/img/favorite.png +0 -0
- blurdev/resource/img/file.png +0 -0
- blurdev/resource/img/folder.png +0 -0
- blurdev/resource/img/ide/add.png +0 -0
- blurdev/resource/img/ide/add_note.png +0 -0
- blurdev/resource/img/ide/arrow_down.png +0 -0
- blurdev/resource/img/ide/arrow_up.png +0 -0
- blurdev/resource/img/ide/check.png +0 -0
- blurdev/resource/img/ide/class.png +0 -0
- blurdev/resource/img/ide/clean.png +0 -0
- blurdev/resource/img/ide/clearlog.png +0 -0
- blurdev/resource/img/ide/close.png +0 -0
- blurdev/resource/img/ide/comment_add.png +0 -0
- blurdev/resource/img/ide/comment_remove.png +0 -0
- blurdev/resource/img/ide/comment_toggle.png +0 -0
- blurdev/resource/img/ide/console.png +0 -0
- blurdev/resource/img/ide/copy.png +0 -0
- blurdev/resource/img/ide/copylstrip.png +0 -0
- blurdev/resource/img/ide/cut.png +0 -0
- blurdev/resource/img/ide/edit.png +0 -0
- blurdev/resource/img/ide/find.png +0 -0
- blurdev/resource/img/ide/find_replace.png +0 -0
- blurdev/resource/img/ide/findnext.png +0 -0
- blurdev/resource/img/ide/findprev.png +0 -0
- blurdev/resource/img/ide/folder_find.png +0 -0
- blurdev/resource/img/ide/function.png +0 -0
- blurdev/resource/img/ide/git-bash.png +0 -0
- blurdev/resource/img/ide/git-gui.png +0 -0
- blurdev/resource/img/ide/gitk.png +0 -0
- blurdev/resource/img/ide/goto.png +0 -0
- blurdev/resource/img/ide/goto_def.png +0 -0
- blurdev/resource/img/ide/help.png +0 -0
- blurdev/resource/img/ide/highlighter.png +0 -0
- blurdev/resource/img/ide/lowercase.png +0 -0
- blurdev/resource/img/ide/newfile.png +0 -0
- blurdev/resource/img/ide/newfolder.png +0 -0
- blurdev/resource/img/ide/newproject.png +0 -0
- blurdev/resource/img/ide/newwizard.png +0 -0
- blurdev/resource/img/ide/open.png +0 -0
- blurdev/resource/img/ide/paste.png +0 -0
- blurdev/resource/img/ide/pdb_continue.png +0 -0
- blurdev/resource/img/ide/pdb_down.png +0 -0
- blurdev/resource/img/ide/pdb_next.png +0 -0
- blurdev/resource/img/ide/pdb_step.png +0 -0
- blurdev/resource/img/ide/pdb_up.png +0 -0
- blurdev/resource/img/ide/plus_minus.png +0 -0
- blurdev/resource/img/ide/preferences.png +0 -0
- blurdev/resource/img/ide/project_find.png +0 -0
- blurdev/resource/img/ide/python.png +0 -0
- blurdev/resource/img/ide/pyular.png +0 -0
- blurdev/resource/img/ide/qt.png +0 -0
- blurdev/resource/img/ide/quit.png +0 -0
- blurdev/resource/img/ide/redo.png +0 -0
- blurdev/resource/img/ide/refresh.png +0 -0
- blurdev/resource/img/ide/remove.png +0 -0
- blurdev/resource/img/ide/ruler.png +0 -0
- blurdev/resource/img/ide/run.png +0 -0
- blurdev/resource/img/ide/runall.png +0 -0
- blurdev/resource/img/ide/runallclear.png +0 -0
- blurdev/resource/img/ide/runselected.png +0 -0
- blurdev/resource/img/ide/runselectedclear.png +0 -0
- blurdev/resource/img/ide/save.png +0 -0
- blurdev/resource/img/ide/saveas.png +0 -0
- blurdev/resource/img/ide/sdk.png +0 -0
- blurdev/resource/img/ide/separator.png +0 -0
- blurdev/resource/img/ide/tabbed.png +0 -0
- blurdev/resource/img/ide/tile.png +0 -0
- blurdev/resource/img/ide/toolbar.png +0 -0
- blurdev/resource/img/ide/undo.png +0 -0
- blurdev/resource/img/ide/uppercase.png +0 -0
- blurdev/resource/img/ide/view_as.png +0 -0
- blurdev/resource/img/ide/windowed.png +0 -0
- blurdev/resource/img/ide.ico +0 -0
- blurdev/resource/img/ide.png +0 -0
- blurdev/resource/img/ide48.png +0 -0
- blurdev/resource/img/info.png +0 -0
- blurdev/resource/img/legacy tool.png +0 -0
- blurdev/resource/img/library.png +0 -0
- blurdev/resource/img/logger/about.png +0 -0
- blurdev/resource/img/logger/arrow_forward.png +0 -0
- blurdev/resource/img/logger/clear.png +0 -0
- blurdev/resource/img/logger/close.png +0 -0
- blurdev/resource/img/logger/debug_disabled.png +0 -0
- blurdev/resource/img/logger/debug_high.png +0 -0
- blurdev/resource/img/logger/debug_low.png +0 -0
- blurdev/resource/img/logger/debug_mid.png +0 -0
- blurdev/resource/img/logger/down.png +0 -0
- blurdev/resource/img/logger/find.png +0 -0
- blurdev/resource/img/logger/logging_critical.png +0 -0
- blurdev/resource/img/logger/logging_debug.png +0 -0
- blurdev/resource/img/logger/logging_error.png +0 -0
- blurdev/resource/img/logger/logging_info.png +0 -0
- blurdev/resource/img/logger/logging_not_set.png +0 -0
- blurdev/resource/img/logger/logging_warning.png +0 -0
- blurdev/resource/img/logger/next.png +0 -0
- blurdev/resource/img/logger/play.png +0 -0
- blurdev/resource/img/logger/playlist_play.png +0 -0
- blurdev/resource/img/logger/previous.png +0 -0
- blurdev/resource/img/logger/return.png +0 -0
- blurdev/resource/img/logger/save.png +0 -0
- blurdev/resource/img/logger/subdirectory_arrow_right.png +0 -0
- blurdev/resource/img/logger/up.png +0 -0
- blurdev/resource/img/lovebar.png +0 -0
- blurdev/resource/img/new.png +0 -0
- blurdev/resource/img/new_selected.png +0 -0
- blurdev/resource/img/node.png +0 -0
- blurdev/resource/img/ok.png +0 -0
- blurdev/resource/img/options.png +0 -0
- blurdev/resource/img/packages.png +0 -0
- blurdev/resource/img/preview/add.png +0 -0
- blurdev/resource/img/preview/brush.png +0 -0
- blurdev/resource/img/preview/delete.png +0 -0
- blurdev/resource/img/preview/delte.png +0 -0
- blurdev/resource/img/preview/fill.png +0 -0
- blurdev/resource/img/preview/layers.png +0 -0
- blurdev/resource/img/preview/media.png +0 -0
- blurdev/resource/img/preview/navigate.png +0 -0
- blurdev/resource/img/preview/pencil.png +0 -0
- blurdev/resource/img/preview/select.png +0 -0
- blurdev/resource/img/preview/type.png +0 -0
- blurdev/resource/img/preview/visible.png +0 -0
- blurdev/resource/img/project.png +0 -0
- blurdev/resource/img/python_logger.ico +0 -0
- blurdev/resource/img/python_logger.png +0 -0
- blurdev/resource/img/refresh.png +0 -0
- blurdev/resource/img/remove.png +0 -0
- blurdev/resource/img/reset.png +0 -0
- blurdev/resource/img/richtext/font_bold.png +0 -0
- blurdev/resource/img/richtext/font_italic.png +0 -0
- blurdev/resource/img/richtext/link_image.png +0 -0
- blurdev/resource/img/richtext/spell_check.png +0 -0
- blurdev/resource/img/richtext/unordered_list.png +0 -0
- blurdev/resource/img/save.png +0 -0
- blurdev/resource/img/savesettings.png +0 -0
- blurdev/resource/img/settings.png +0 -0
- blurdev/resource/img/tool.png +0 -0
- blurdev/resource/img/toolbarHandleHorizontal.png +0 -0
- blurdev/resource/img/toolbarHandleVertical.png +0 -0
- blurdev/resource/img/trash.png +0 -0
- blurdev/resource/img/trax.png +0 -0
- blurdev/resource/img/tree.png +0 -0
- blurdev/resource/img/treegrunt.ico +0 -0
- blurdev/resource/img/treegrunt.png +0 -0
- blurdev/resource/img/treegruntedit.png +0 -0
- blurdev/resource/img/user interface.png +0 -0
- blurdev/resource/img/warning.png +0 -0
- blurdev/resource/img/watermark.png +0 -0
- blurdev/resource/sdk/blurdev.sdk +0 -3
- blurdev/resource/settings.ini +0 -82
- blurdev/resource/softimage/BlurApplication.dll +0 -0
- blurdev/resource/softimage/BlurApplication64.dll +0 -0
- blurdev/resource/stylesheet/Carbon.css +0 -35
- blurdev/resource/stylesheet/logger/Dark.css +0 -62
- blurdev/resource/templ/py_comment.templ +0 -1
- blurdev/resource/templ/py_debug_raise_error.templ +0 -7
- blurdev/resource/templ/py_doc_string.templ +0 -10
- blurdev/resource/templ/py_header.templ +0 -9
- blurdev/resource/templ/py_line_comment.templ +0 -1
- blurdev/resource/templ/py_log_to_file.templ +0 -22
- blurdev/resource/templ/py_module_path.templ +0 -1
- blurdev/resource/templ/py_pyqt_core.templ +0 -1
- blurdev/resource/templ/py_pyqt_gui.templ +0 -1
- blurdev/resource/templ/py_splashscreen.templ +0 -6
- blurdev/resource/templ/py_testing_note.templ +0 -1
- blurdev/resource/templ/py_testing_note_end.templ +0 -1
- blurdev/resource/tools_environments.json +0 -72
- blurdev/resource/tools_environments.xml +0 -11
- blurdev/resource/tools_environments_linux.xml +0 -11
- blurdev/resource/tools_environments_offline.xml +0 -7
- blurdev/runtimes/__init__.py +0 -2
- blurdev/runtimes/logger.py +0 -44
- blurdev/scintilla/delayables/__init__.py +0 -9
- blurdev/settings.py +0 -312
- blurdev/utils/error.py +0 -389
- {blurdev/scintilla/lexers → preditor/cores}/__init__.py +0 -0
- {blurdev/utils → preditor/gui/fuzzy_search}/__init__.py +0 -0
- {blurdev → preditor}/resource/img/warning-big.png +0 -0
|
@@ -1,85 +1,85 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<style>
|
|
5
|
-
body {
|
|
6
|
-
font-family: Verdana, sans-serif;
|
|
7
|
-
font-size: 12px;
|
|
8
|
-
color: #484848;
|
|
9
|
-
background: white;
|
|
10
|
-
}
|
|
11
|
-
p {
|
|
12
|
-
margin: 0;
|
|
13
|
-
padding: 0;
|
|
14
|
-
}
|
|
15
|
-
h1, h2, h3 {
|
|
16
|
-
font-family: "Trebuchet MS", Verdana, sans-serif;
|
|
17
|
-
margin: 0 0 10px 0;
|
|
18
|
-
padding: 0;
|
|
19
|
-
}
|
|
20
|
-
h1 {
|
|
21
|
-
font-size: 16px;
|
|
22
|
-
}
|
|
23
|
-
h2 {
|
|
24
|
-
font-size: 15px;
|
|
25
|
-
}
|
|
26
|
-
h3 {
|
|
27
|
-
font-size: 14px;
|
|
28
|
-
}
|
|
29
|
-
ul {
|
|
30
|
-
margin: 0 0 10px 10px;
|
|
31
|
-
padding: 0;
|
|
32
|
-
list-style: none;
|
|
33
|
-
}
|
|
34
|
-
li {
|
|
35
|
-
margin: 0;
|
|
36
|
-
padding: 0;
|
|
37
|
-
}
|
|
38
|
-
.information, .traceback, .error_report, .footer {
|
|
39
|
-
margin: 0;
|
|
40
|
-
padding: 0;
|
|
41
|
-
}
|
|
42
|
-
.footer {
|
|
43
|
-
border-top: solid black 1px;
|
|
44
|
-
padding: 10px 0 0 0;
|
|
45
|
-
}
|
|
46
|
-
</style>
|
|
47
|
-
</head>
|
|
48
|
-
<body>
|
|
49
|
-
<h1>{{ subject }}</h1>
|
|
50
|
-
<div class="information">
|
|
51
|
-
<h2>Debug Information</h2>
|
|
52
|
-
|
|
53
|
-
{% for label, section_dict in info_dict.items() %}
|
|
54
|
-
<h3>{{ label }}</h3>
|
|
55
|
-
<ul>
|
|
56
|
-
{% for key, value in section_dict.items() %}
|
|
57
|
-
<li><span style="font-weight:bold">{{ key }}:</span> {{ value }}</li>
|
|
58
|
-
{% endfor %}
|
|
59
|
-
</ul>
|
|
60
|
-
{% endfor %}
|
|
61
|
-
|
|
62
|
-
</div>
|
|
63
|
-
<div class="traceback">
|
|
64
|
-
<h2>Trackback</h2>
|
|
65
|
-
{{ highlight_code(traceback) }}
|
|
66
|
-
</div>
|
|
67
|
-
|
|
68
|
-
{% if error_report %}
|
|
69
|
-
<div class="error_report">
|
|
70
|
-
<h2>Error Reports</h2>
|
|
71
|
-
|
|
72
|
-
{% for title, report in error_report %}
|
|
73
|
-
<h3>{{ title }}</h3>
|
|
74
|
-
{{ highlight_code(report) }}
|
|
75
|
-
{% endfor %}
|
|
76
|
-
</div>
|
|
77
|
-
{% endif %}
|
|
78
|
-
|
|
79
|
-
<div class="footer">
|
|
80
|
-
<p class="send_time">{{ send_time }}</p>
|
|
81
|
-
<p>You received this notification because you have either subscribed to it, or are involved in it.</p>
|
|
82
|
-
<p>To change your notification preferences, go into trax and change your options settings.</p>
|
|
83
|
-
</div>
|
|
84
|
-
</body>
|
|
85
|
-
</html>
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<style>
|
|
5
|
+
body {
|
|
6
|
+
font-family: Verdana, sans-serif;
|
|
7
|
+
font-size: 12px;
|
|
8
|
+
color: #484848;
|
|
9
|
+
background: white;
|
|
10
|
+
}
|
|
11
|
+
p {
|
|
12
|
+
margin: 0;
|
|
13
|
+
padding: 0;
|
|
14
|
+
}
|
|
15
|
+
h1, h2, h3 {
|
|
16
|
+
font-family: "Trebuchet MS", Verdana, sans-serif;
|
|
17
|
+
margin: 0 0 10px 0;
|
|
18
|
+
padding: 0;
|
|
19
|
+
}
|
|
20
|
+
h1 {
|
|
21
|
+
font-size: 16px;
|
|
22
|
+
}
|
|
23
|
+
h2 {
|
|
24
|
+
font-size: 15px;
|
|
25
|
+
}
|
|
26
|
+
h3 {
|
|
27
|
+
font-size: 14px;
|
|
28
|
+
}
|
|
29
|
+
ul {
|
|
30
|
+
margin: 0 0 10px 10px;
|
|
31
|
+
padding: 0;
|
|
32
|
+
list-style: none;
|
|
33
|
+
}
|
|
34
|
+
li {
|
|
35
|
+
margin: 0;
|
|
36
|
+
padding: 0;
|
|
37
|
+
}
|
|
38
|
+
.information, .traceback, .error_report, .footer {
|
|
39
|
+
margin: 0;
|
|
40
|
+
padding: 0;
|
|
41
|
+
}
|
|
42
|
+
.footer {
|
|
43
|
+
border-top: solid black 1px;
|
|
44
|
+
padding: 10px 0 0 0;
|
|
45
|
+
}
|
|
46
|
+
</style>
|
|
47
|
+
</head>
|
|
48
|
+
<body>
|
|
49
|
+
<h1>{{ subject }}</h1>
|
|
50
|
+
<div class="information">
|
|
51
|
+
<h2>Debug Information</h2>
|
|
52
|
+
|
|
53
|
+
{% for label, section_dict in info_dict.items() %}
|
|
54
|
+
<h3>{{ label }}</h3>
|
|
55
|
+
<ul>
|
|
56
|
+
{% for key, value in section_dict.items() %}
|
|
57
|
+
<li><span style="font-weight:bold">{{ key }}:</span> {{ value }}</li>
|
|
58
|
+
{% endfor %}
|
|
59
|
+
</ul>
|
|
60
|
+
{% endfor %}
|
|
61
|
+
|
|
62
|
+
</div>
|
|
63
|
+
<div class="traceback">
|
|
64
|
+
<h2>Trackback</h2>
|
|
65
|
+
{{ highlight_code(traceback) }}
|
|
66
|
+
</div>
|
|
67
|
+
|
|
68
|
+
{% if error_report %}
|
|
69
|
+
<div class="error_report">
|
|
70
|
+
<h2>Error Reports</h2>
|
|
71
|
+
|
|
72
|
+
{% for title, report in error_report %}
|
|
73
|
+
<h3>{{ title }}</h3>
|
|
74
|
+
{{ highlight_code(report) }}
|
|
75
|
+
{% endfor %}
|
|
76
|
+
</div>
|
|
77
|
+
{% endif %}
|
|
78
|
+
|
|
79
|
+
<div class="footer">
|
|
80
|
+
<p class="send_time">{{ send_time }}</p>
|
|
81
|
+
<p>You received this notification because you have either subscribed to it, or are involved in it.</p>
|
|
82
|
+
<p>To change your notification preferences, go into trax and change your options settings.</p>
|
|
83
|
+
</div>
|
|
84
|
+
</body>
|
|
85
|
+
</html>
|
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
<!-- AUTOGENERATED FROM 'error_mail.html' (see: https://inliner.cm/) -->
|
|
2
|
-
<!DOCTYPE html>
|
|
3
|
-
<html lang="en">
|
|
4
|
-
<body style="font-family:Verdana, sans-serif;font-size:12px;color:#484848;background-color:white;background-image:none;background-repeat:repeat;background-position:top left;background-attachment:scroll;" >
|
|
5
|
-
<h1 style="font-family:'Trebuchet MS', Verdana, sans-serif;margin-top:0;margin-bottom:10px;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;font-size:16px;" >{{ subject }}</h1>
|
|
6
|
-
<div class="information" style="margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" >
|
|
7
|
-
<h2 style="font-family:'Trebuchet MS', Verdana, sans-serif;margin-top:0;margin-bottom:10px;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;font-size:15px;" >Debug Information</h2>
|
|
8
|
-
|
|
9
|
-
{% for label, section_dict in info_dict.items() %}
|
|
10
|
-
<h3 style="font-family:'Trebuchet MS', Verdana, sans-serif;margin-top:0;margin-bottom:10px;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;font-size:14px;" >{{ label }}</h3>
|
|
11
|
-
<ul style="margin-top:0;margin-bottom:10px;margin-right:0;margin-left:10px;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;list-style-type:none;list-style-position:outside;list-style-image:none;" >
|
|
12
|
-
{% for key, value in section_dict.items() %}
|
|
13
|
-
<li style="margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" ><span style="font-weight:bold;" >{{ key }}:</span> {{ value }}</li>
|
|
14
|
-
{% endfor %}
|
|
15
|
-
</ul>
|
|
16
|
-
{% endfor %}
|
|
17
|
-
|
|
18
|
-
</div>
|
|
19
|
-
<div class="traceback" style="margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" >
|
|
20
|
-
<h2 style="font-family:'Trebuchet MS', Verdana, sans-serif;margin-top:0;margin-bottom:10px;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;font-size:15px;" >Trackback</h2>
|
|
21
|
-
{{ highlight_code(traceback) }}
|
|
22
|
-
</div>
|
|
23
|
-
|
|
24
|
-
{% if error_report %}
|
|
25
|
-
<div class="error_report" style="margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" >
|
|
26
|
-
<h2 style="font-family:'Trebuchet MS', Verdana, sans-serif;margin-top:0;margin-bottom:10px;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;font-size:15px;" >Error Reports</h2>
|
|
27
|
-
|
|
28
|
-
{% for title, report in error_report %}
|
|
29
|
-
<h3 style="font-family:'Trebuchet MS', Verdana, sans-serif;margin-top:0;margin-bottom:10px;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;font-size:14px;" >{{ title }}</h3>
|
|
30
|
-
{{ highlight_code(report) }}
|
|
31
|
-
{% endfor %}
|
|
32
|
-
</div>
|
|
33
|
-
{% endif %}
|
|
34
|
-
|
|
35
|
-
<div class="footer" style="margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;border-top-width:1px;border-top-style:solid;border-top-color:black;padding-top:10px;padding-bottom:0;padding-right:0;padding-left:0;" >
|
|
36
|
-
<p class="send_time" style="margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" >{{ send_time }}</p>
|
|
37
|
-
<p style="margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" >You received this notification because you have either subscribed to it, or are involved in it.</p>
|
|
38
|
-
<p style="margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" >To change your notification preferences, go into trax and change your options settings.</p>
|
|
39
|
-
</div>
|
|
40
|
-
</body>
|
|
41
|
-
</html>
|
|
1
|
+
<!-- AUTOGENERATED FROM 'error_mail.html' (see: https://inliner.cm/) -->
|
|
2
|
+
<!DOCTYPE html>
|
|
3
|
+
<html lang="en">
|
|
4
|
+
<body style="font-family:Verdana, sans-serif;font-size:12px;color:#484848;background-color:white;background-image:none;background-repeat:repeat;background-position:top left;background-attachment:scroll;" >
|
|
5
|
+
<h1 style="font-family:'Trebuchet MS', Verdana, sans-serif;margin-top:0;margin-bottom:10px;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;font-size:16px;" >{{ subject }}</h1>
|
|
6
|
+
<div class="information" style="margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" >
|
|
7
|
+
<h2 style="font-family:'Trebuchet MS', Verdana, sans-serif;margin-top:0;margin-bottom:10px;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;font-size:15px;" >Debug Information</h2>
|
|
8
|
+
|
|
9
|
+
{% for label, section_dict in info_dict.items() %}
|
|
10
|
+
<h3 style="font-family:'Trebuchet MS', Verdana, sans-serif;margin-top:0;margin-bottom:10px;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;font-size:14px;" >{{ label }}</h3>
|
|
11
|
+
<ul style="margin-top:0;margin-bottom:10px;margin-right:0;margin-left:10px;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;list-style-type:none;list-style-position:outside;list-style-image:none;" >
|
|
12
|
+
{% for key, value in section_dict.items() %}
|
|
13
|
+
<li style="margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" ><span style="font-weight:bold;" >{{ key }}:</span> {{ value }}</li>
|
|
14
|
+
{% endfor %}
|
|
15
|
+
</ul>
|
|
16
|
+
{% endfor %}
|
|
17
|
+
|
|
18
|
+
</div>
|
|
19
|
+
<div class="traceback" style="margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" >
|
|
20
|
+
<h2 style="font-family:'Trebuchet MS', Verdana, sans-serif;margin-top:0;margin-bottom:10px;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;font-size:15px;" >Trackback</h2>
|
|
21
|
+
{{ highlight_code(traceback) }}
|
|
22
|
+
</div>
|
|
23
|
+
|
|
24
|
+
{% if error_report %}
|
|
25
|
+
<div class="error_report" style="margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" >
|
|
26
|
+
<h2 style="font-family:'Trebuchet MS', Verdana, sans-serif;margin-top:0;margin-bottom:10px;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;font-size:15px;" >Error Reports</h2>
|
|
27
|
+
|
|
28
|
+
{% for title, report in error_report %}
|
|
29
|
+
<h3 style="font-family:'Trebuchet MS', Verdana, sans-serif;margin-top:0;margin-bottom:10px;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;font-size:14px;" >{{ title }}</h3>
|
|
30
|
+
{{ highlight_code(report) }}
|
|
31
|
+
{% endfor %}
|
|
32
|
+
</div>
|
|
33
|
+
{% endif %}
|
|
34
|
+
|
|
35
|
+
<div class="footer" style="margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;border-top-width:1px;border-top-style:solid;border-top-color:black;padding-top:10px;padding-bottom:0;padding-right:0;padding-left:0;" >
|
|
36
|
+
<p class="send_time" style="margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" >{{ send_time }}</p>
|
|
37
|
+
<p style="margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" >You received this notification because you have either subscribed to it, or are involved in it.</p>
|
|
38
|
+
<p style="margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" >To change your notification preferences, go into trax and change your options settings.</p>
|
|
39
|
+
</div>
|
|
40
|
+
</body>
|
|
41
|
+
</html>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Preditor icon build from these source images
|
|
2
|
+
|
|
3
|
+
* Predator Icon: https://icon-icons.com/icon/predator/54149
|
|
4
|
+
* Pencil Icon: https://icon-icons.com/icon/pencil/73779
|
|
5
|
+
Converted to multi-resolution icon using: https://convertico.com/svg-to-ico/
|
|
6
|
+
|
|
7
|
+
Most other icons downloaded from https://materialdesignicons.com/.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="512" height="512">
|
|
2
|
+
<title>Predator_icon-icons</title>
|
|
3
|
+
<style>
|
|
4
|
+
.s0 { fill: #7986cb }
|
|
5
|
+
.s1 { fill: #9fa8da }
|
|
6
|
+
.s2 { fill: #3949ab }
|
|
7
|
+
.s3 { fill: #607d8b }
|
|
8
|
+
.s4 { fill: #1a237e }
|
|
9
|
+
.s5 { fill: #c5cae9 }
|
|
10
|
+
.s6 { fill: #ffaec3 }
|
|
11
|
+
.s7 { fill: #ff9db2 }
|
|
12
|
+
.s8 { fill: #f18da2 }
|
|
13
|
+
.s9 { fill: #eef1f6 }
|
|
14
|
+
.s10 { fill: #594667 }
|
|
15
|
+
.s11 { fill: #ffdf97 }
|
|
16
|
+
</style>
|
|
17
|
+
<g id="Preditor">
|
|
18
|
+
<path id="Layer" class="s0" d="m125.9 284.8l25.5-110.4h209.2l25.5 110.4c4.7 23.2-8.1 46.5-30.2 53.5l-99.9 33.7-99.9-33.7c-22.1-7-36.1-30.3-30.2-53.5z"/>
|
|
19
|
+
<path id="Layer" class="s1" d="m314.1 372c0 12.7-10.5 23.2-23.2 23.2h-69.8c-12.7 0-23.2-10.5-23.2-23.2v-81.4l34.9-34.8h46.4l34.9 34.8z"/>
|
|
20
|
+
<g id="Layer">
|
|
21
|
+
<path id="Layer" class="s2" d="m511.6 337.1c0 7-4.6 11.6-11.6 11.6-7 0-11.6-4.6-11.6-11.6 0-224.3-94.1-275.4-133.6-287 39.5 27.9 110.4 101.1 110.4 268.4v53.5c0 6.9-4.7 11.6-11.7 11.6-6.9 0-11.6-4.7-11.6-11.6v-53.5c0-209.2-116.2-259.1-119.7-261.4-6.9-2.4-9.3-9.3-6.9-15.2 1.1-4.6 5.8-6.9 10.4-6.9 0-7 5.8-11.6 11.6-11.6 7 0 174.3 8.1 174.3 313.7z"/>
|
|
22
|
+
<path id="Layer" class="s2" d="m419.8 313.9v92.9c0 7-4.6 11.6-11.6 11.6-7 0-11.6-4.6-11.6-11.6v-92.9c0-183.6-86-233.6-87.1-233.6-5.9-3.5-8.2-10.5-4.7-16.3 2.3-5.8 9.3-8.1 15.1-4.6 3.5 2.3 98.8 55.8 99.9 254.5z"/>
|
|
23
|
+
<path id="Layer" class="s2" d="m70.1 318.5v53.5c0 6.9-4.7 11.6-11.6 11.6-7 0-11.7-4.7-11.7-11.6v-53.5c0-168.5 72.1-241.7 111.6-268.4-40.7 10.4-134.8 59.2-134.8 287 0 7-4.6 11.6-11.6 11.6-7 0-11.6-4.6-11.6-11.6 0-305.6 167.3-313.7 174.3-313.7 5.8 0 11.6 4.6 11.6 11.6 4.6 0 9.3 2.3 11.6 6.9 2.3 5.9-1.2 12.8-7 15.2-4.6 2.3-120.8 52.2-120.8 261.4z"/>
|
|
24
|
+
<path id="Layer" class="s2" d="m208.4 64c3.4 5.8 1.1 12.8-4.7 16.3-1.2 0-87.1 50-87.1 233.6v92.9c0 7-4.7 11.6-11.7 11.6-6.9 0-11.6-4.6-11.6-11.6v-92.9c0-198.7 95.3-252.2 98.8-254.5 5.8-2.3 12.8-1.2 16.3 4.6z"/>
|
|
25
|
+
</g>
|
|
26
|
+
<path id="Layer" class="s3" d="m128.2 186z"/>
|
|
27
|
+
<path id="Layer" class="s3" d="m128.2 174.4v11.6z"/>
|
|
28
|
+
<path id="Layer" class="s3" d="m81.7 93.1z"/>
|
|
29
|
+
<path id="Layer" class="s4" d="m350.1 196.5c0 0 7 26.7-7 44.1-30.2 39.6-63.9 15.2-68.5 10.5-4.7-4.6-7-19.7-7-19.7 51.1-9.3 82.5-34.9 82.5-34.9z"/>
|
|
30
|
+
<path id="Layer" class="s4" d="m243.2 230.2c0 0-2.3 15.1-7 19.7-4.6 5.9-38.3 29.1-68.5-10.4-14-17.4-7-44.2-7-44.2 0 0 32.6 26.8 82.5 34.9z"/>
|
|
31
|
+
<path id="Layer" class="s1" d="m256 232.5c-77.1 0-139.4-51.9-139.4-116.2 0-64.2 62.3-116.2 139.4-116.2 77.1 0 139.4 52 139.4 116.2 0 64.3-62.3 116.2-139.4 116.2z"/>
|
|
32
|
+
<path id="Layer" class="s0" d="m256 193c-64.3 0-116.2-40.5-116.2-90.6 0-50.2 51.9-90.7 116.2-90.7 64.3 0 116.2 40.5 116.2 90.7 0 50.1-51.9 90.6-116.2 90.6z"/>
|
|
33
|
+
<path id="Layer" class="s5" d="m258.3 155.8c-51.4 0-92.9-32.2-92.9-72 0-39.9 41.5-72.1 92.9-72.1 51.4 0 93 32.2 93 72.1 0 39.8-41.6 72-93 72z"/>
|
|
34
|
+
</g>
|
|
35
|
+
<g id="Pencil">
|
|
36
|
+
<path id="Layer" class="s6" d="m158.6 470l196.6-34.8c-3 3.2-4.6 7.1-3.9 11.5 0.2 2.2 1.3 4.2 2.7 5.8l-192.5 34.1z"/>
|
|
37
|
+
<path id="Layer" class="s7" d="m154.9 449.1l196.6-34.8c-3 3.2-4.6 7.1-3.9 11.5 0.8 4.3 3.7 7.5 7.6 9.4l-196.6 34.8z"/>
|
|
38
|
+
<path id="Layer" class="s8" d="m152.2 432.3l192.5-34.1c-1.1 2.3-1.2 4.3-0.8 6.7 0.8 4.3 3.7 7.5 7.6 9.4l-196.6 34.8z"/>
|
|
39
|
+
<path id="Layer" class="s9" d="m138.7 434.9l13.3-2.3 9.6 54.1-13.3 2.3z"/>
|
|
40
|
+
<path id="Layer" class="s10" d="m148.2 488.9l-27 4.8c-6.4 1.2-12.8-2.6-13.7-8.1l-6-33.5c-0.9-5.5 3.7-11.3 10.1-12.4l27.1-4.8z"/>
|
|
41
|
+
<path id="Layer" class="s11" d="m393 417.7c0.4 2.4 1.3 4.7 3 6.4l-42.2 28.6c-1.4-1.5-2.2-3.4-2.7-5.8-0.7-4.3 0.9-8.3 3.9-11.5-3.9-1.9-6.8-5-7.6-9.4-0.7-4.3 0.9-8.3 3.9-11.5-3.9-1.9-6.8-5.1-7.6-9.4-0.4-2.4-0.1-4.6 0.8-6.6l49.2 12.2c-0.8 2.4-1.1 4.7-0.7 7z"/>
|
|
42
|
+
<path id="Layer" class="s10" d="m410 414.7l-14 9.4c-1.5-1.9-2.6-4-3-6.4-0.4-2.3-0.4-4.8 0.7-7z"/>
|
|
43
|
+
</g>
|
|
44
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12,4C14.1,4 16.1,4.8 17.6,6.3C20.7,9.4 20.7,14.5 17.6,17.6C15.8,19.5 13.3,20.2 10.9,19.9L11.4,17.9C13.1,18.1 14.9,17.5 16.2,16.2C18.5,13.9 18.5,10.1 16.2,7.7C15.1,6.6 13.5,6 12,6V10.6L7,5.6L12,0.6V4M6.3,17.6C3.7,15 3.3,11 5.1,7.9L6.6,9.4C5.5,11.6 5.9,14.4 7.8,16.2C8.3,16.7 8.9,17.1 9.6,17.4L9,19.4C8,19 7.1,18.4 6.3,17.6Z" /></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
{
|
|
2
|
-
"language": "Python",
|
|
3
|
-
"ext": ".py;.pys;.pyw",
|
|
4
|
-
"comments": [
|
|
5
|
-
"#(?!Result: )[^\\n]*"
|
|
6
|
-
],
|
|
7
|
-
"strings": [
|
|
8
|
-
"'",
|
|
9
|
-
"\""
|
|
10
|
-
],
|
|
11
|
-
"keywords": [
|
|
12
|
-
"class",
|
|
13
|
-
"def",
|
|
14
|
-
"elif",
|
|
15
|
-
"else",
|
|
16
|
-
"except",
|
|
17
|
-
"False",
|
|
18
|
-
"for",
|
|
19
|
-
"from",
|
|
20
|
-
"if",
|
|
21
|
-
"import",
|
|
22
|
-
"in",
|
|
23
|
-
"pass",
|
|
24
|
-
"print",
|
|
25
|
-
"self",
|
|
26
|
-
"True",
|
|
27
|
-
"try",
|
|
28
|
-
"while"
|
|
29
|
-
]
|
|
30
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"language": "Python",
|
|
3
|
+
"ext": ".py;.pys;.pyw",
|
|
4
|
+
"comments": [
|
|
5
|
+
"#(?!Result: )[^\\n]*"
|
|
6
|
+
],
|
|
7
|
+
"strings": [
|
|
8
|
+
"'",
|
|
9
|
+
"\""
|
|
10
|
+
],
|
|
11
|
+
"keywords": [
|
|
12
|
+
"class",
|
|
13
|
+
"def",
|
|
14
|
+
"elif",
|
|
15
|
+
"else",
|
|
16
|
+
"except",
|
|
17
|
+
"False",
|
|
18
|
+
"for",
|
|
19
|
+
"from",
|
|
20
|
+
"if",
|
|
21
|
+
"import",
|
|
22
|
+
"in",
|
|
23
|
+
"pass",
|
|
24
|
+
"print",
|
|
25
|
+
"self",
|
|
26
|
+
"True",
|
|
27
|
+
"try",
|
|
28
|
+
"while"
|
|
29
|
+
]
|
|
30
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[Default]
|
|
2
|
+
bdev_error_email = The Pipe<thePipe+{hash}@blur.com>
|
|
3
|
+
|
|
4
|
+
[Windows]
|
|
5
|
+
bdev_cmd_shell_execfile = "%(filepath)s"
|
|
6
|
+
bdev_cmd_shell_debug = "%(filepath)s"
|
|
7
|
+
bdev_cmd_shell_exec = "%(command)s"
|
|
8
|
+
bdev_cmd_browse = open "%(filepath)s"
|
|
9
|
+
bdev_path_temp = c:/temp
|
|
10
|
+
bdev_path_prefs_shared = \\SNAKE\user\config\%(username)s\userprefs
|
|
11
|
+
bdev_path_blur = c:/blur
|
|
12
|
+
bdev_path_prefs = %appdata%\blur\userprefs
|
|
13
|
+
|
|
14
|
+
[Windows Offline]
|
|
15
|
+
bdev_path_prefs_shared = %APPDATA%/blur/userprefs
|
|
16
|
+
|
|
17
|
+
[Linux]
|
|
18
|
+
bdev_cmd_shell_exec = gnome-terminal -x bash -c "%(command)s && echo Press enter to close && read"
|
|
19
|
+
bdev_cmd_shell_debug = gnome-terminal -x bash -c "%(filepath)s && echo Press enter to close && read"
|
|
20
|
+
bdev_cmd_shell_execfile = bash --rcfile %(filepath)s
|
|
21
|
+
bdev_path_temp = /tmp/
|
|
22
|
+
bdev_path_blur = $HOME/.blur
|
|
23
|
+
bdev_path_prefs_shared = $BDEV_PATH_PREFS
|
|
24
|
+
bdev_path_prefs = $BDEV_PATH_BLUR/userprefs
|
|
25
|
+
bdev_cmd_browse = nemo %(filepath)s
|
|
@@ -1,61 +1,56 @@
|
|
|
1
|
-
DocumentEditor {
|
|
2
|
-
qproperty-pyMarginsForegroundColor: "black";
|
|
3
|
-
qproperty-pyMarginsBackgroundColor: rgb(224, 224, 224);
|
|
4
|
-
qproperty-pySelectionBackgroundColor: rgb(192, 192, 192);
|
|
5
|
-
qproperty-pySelectionForegroundColor: "black";
|
|
6
|
-
qproperty-pyCaretBackgroundColor: "white";
|
|
7
|
-
qproperty-pyCaretForegroundColor: "black";
|
|
8
|
-
qproperty-pyMatchedBraceBackgroundColor: rgb(100, 225, 100);
|
|
9
|
-
qproperty-pyMatchedBraceForegroundColor: "black";
|
|
10
|
-
qproperty-pyUnmatchedBraceBackgroundColor: "white";
|
|
11
|
-
qproperty-pyUnmatchedBraceForegroundColor: "blue";
|
|
12
|
-
qproperty-pyEdgeColor: rgb(100, 45, 45);
|
|
13
|
-
|
|
14
|
-
qproperty-pyIndentationGuidesBackgroundColor: "white";
|
|
15
|
-
qproperty-pyIndentationGuidesForegroundColor : "black";
|
|
16
|
-
qproperty-pyMarkerBackgroundColor: "white";
|
|
17
|
-
qproperty-pyMarkerForegroundColor: "black";
|
|
18
|
-
qproperty-foldMarginsBackgroundColor: rgb(224, 224, 224);
|
|
19
|
-
qproperty-foldMarginsForegroundColor: "white";
|
|
20
|
-
qproperty-braceBadForeground: "black";
|
|
21
|
-
qproperty-braceBadBackground: rgb(250, 100, 100);
|
|
22
|
-
|
|
23
|
-
qproperty-colorDefault: "black";
|
|
24
|
-
qproperty-colorComment: rgb(0, 127, 0);
|
|
25
|
-
qproperty-colorNumber: rgb(0, 127, 127);
|
|
26
|
-
qproperty-colorString: rgb(127, 0, 127);
|
|
27
|
-
qproperty-colorKeyword: rgb(0, 0, 127);
|
|
28
|
-
qproperty-colorTripleQuotedString: rgb(127, 0, 0);
|
|
29
|
-
qproperty-colorMethod: rgb(0, 0, 255);
|
|
30
|
-
qproperty-colorFunction: rgb(0, 127, 127);
|
|
31
|
-
qproperty-colorOperator: "black";
|
|
32
|
-
qproperty-colorIdentifier: "black";
|
|
33
|
-
qproperty-colorCommentBlock: rgb(127, 127, 127);
|
|
34
|
-
qproperty-colorUnclosedString: "black";
|
|
35
|
-
qproperty-colorSmartHighlight: rgb(64, 112, 144);
|
|
36
|
-
qproperty-colorDecorator: rgb(128, 80, 0);
|
|
37
|
-
qproperty-paperDefault: "white";
|
|
38
|
-
qproperty-paperComment: "white";
|
|
39
|
-
qproperty-paperNumber: "white";
|
|
40
|
-
qproperty-paperString: "white";
|
|
41
|
-
qproperty-paperKeyword: "white";
|
|
42
|
-
qproperty-paperTripleQuotedString: "white";
|
|
43
|
-
qproperty-paperMethod: "white";
|
|
44
|
-
qproperty-paperFunction: "white";
|
|
45
|
-
qproperty-paperOperator: "white";
|
|
46
|
-
qproperty-paperIdentifier: "white";
|
|
47
|
-
qproperty-paperCommentBlock: "white";
|
|
48
|
-
qproperty-paperUnclosedString: rgb(224, 192, 224);
|
|
49
|
-
qproperty-paperSmartHighlight: rgba(155, 255, 155, 75);
|
|
50
|
-
qproperty-paperDecorator: "white";
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
background-color: rgb(
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
ConsoleEdit{
|
|
59
|
-
color: rgb(0,0,0);
|
|
60
|
-
background-color: rgb(255,255,255);
|
|
61
|
-
}
|
|
1
|
+
DocumentEditor {
|
|
2
|
+
qproperty-pyMarginsForegroundColor: "black";
|
|
3
|
+
qproperty-pyMarginsBackgroundColor: rgb(224, 224, 224);
|
|
4
|
+
qproperty-pySelectionBackgroundColor: rgb(192, 192, 192);
|
|
5
|
+
qproperty-pySelectionForegroundColor: "black";
|
|
6
|
+
qproperty-pyCaretBackgroundColor: "white";
|
|
7
|
+
qproperty-pyCaretForegroundColor: "black";
|
|
8
|
+
qproperty-pyMatchedBraceBackgroundColor: rgb(100, 225, 100);
|
|
9
|
+
qproperty-pyMatchedBraceForegroundColor: "black";
|
|
10
|
+
qproperty-pyUnmatchedBraceBackgroundColor: "white";
|
|
11
|
+
qproperty-pyUnmatchedBraceForegroundColor: "blue";
|
|
12
|
+
qproperty-pyEdgeColor: rgb(100, 45, 45);
|
|
13
|
+
|
|
14
|
+
qproperty-pyIndentationGuidesBackgroundColor: "white";
|
|
15
|
+
qproperty-pyIndentationGuidesForegroundColor : "black";
|
|
16
|
+
qproperty-pyMarkerBackgroundColor: "white";
|
|
17
|
+
qproperty-pyMarkerForegroundColor: "black";
|
|
18
|
+
qproperty-foldMarginsBackgroundColor: rgb(224, 224, 224);
|
|
19
|
+
qproperty-foldMarginsForegroundColor: "white";
|
|
20
|
+
qproperty-braceBadForeground: "black";
|
|
21
|
+
qproperty-braceBadBackground: rgb(250, 100, 100);
|
|
22
|
+
|
|
23
|
+
qproperty-colorDefault: "black";
|
|
24
|
+
qproperty-colorComment: rgb(0, 127, 0);
|
|
25
|
+
qproperty-colorNumber: rgb(0, 127, 127);
|
|
26
|
+
qproperty-colorString: rgb(127, 0, 127);
|
|
27
|
+
qproperty-colorKeyword: rgb(0, 0, 127);
|
|
28
|
+
qproperty-colorTripleQuotedString: rgb(127, 0, 0);
|
|
29
|
+
qproperty-colorMethod: rgb(0, 0, 255);
|
|
30
|
+
qproperty-colorFunction: rgb(0, 127, 127);
|
|
31
|
+
qproperty-colorOperator: "black";
|
|
32
|
+
qproperty-colorIdentifier: "black";
|
|
33
|
+
qproperty-colorCommentBlock: rgb(127, 127, 127);
|
|
34
|
+
qproperty-colorUnclosedString: "black";
|
|
35
|
+
qproperty-colorSmartHighlight: rgb(64, 112, 144);
|
|
36
|
+
qproperty-colorDecorator: rgb(128, 80, 0);
|
|
37
|
+
qproperty-paperDefault: "white";
|
|
38
|
+
qproperty-paperComment: "white";
|
|
39
|
+
qproperty-paperNumber: "white";
|
|
40
|
+
qproperty-paperString: "white";
|
|
41
|
+
qproperty-paperKeyword: "white";
|
|
42
|
+
qproperty-paperTripleQuotedString: "white";
|
|
43
|
+
qproperty-paperMethod: "white";
|
|
44
|
+
qproperty-paperFunction: "white";
|
|
45
|
+
qproperty-paperOperator: "white";
|
|
46
|
+
qproperty-paperIdentifier: "white";
|
|
47
|
+
qproperty-paperCommentBlock: "white";
|
|
48
|
+
qproperty-paperUnclosedString: rgb(224, 192, 224);
|
|
49
|
+
qproperty-paperSmartHighlight: rgba(155, 255, 155, 75);
|
|
50
|
+
qproperty-paperDecorator: "white";
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
ConsolePrEdit{
|
|
54
|
+
color: rgb(0,0,0);
|
|
55
|
+
background-color: rgb(255,255,255);
|
|
56
|
+
}
|