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
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
GNU LESSER GENERAL PUBLIC LICENSE
|
|
2
|
+
Version 3, 29 June 2007
|
|
3
|
+
|
|
4
|
+
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
|
5
|
+
Everyone is permitted to copy and distribute verbatim copies
|
|
6
|
+
of this license document, but changing it is not allowed.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
This version of the GNU Lesser General Public License incorporates
|
|
10
|
+
the terms and conditions of version 3 of the GNU General Public
|
|
11
|
+
License, supplemented by the additional permissions listed below.
|
|
12
|
+
|
|
13
|
+
0. Additional Definitions.
|
|
14
|
+
|
|
15
|
+
As used herein, "this License" refers to version 3 of the GNU Lesser
|
|
16
|
+
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
|
17
|
+
General Public License.
|
|
18
|
+
|
|
19
|
+
"The Library" refers to a covered work governed by this License,
|
|
20
|
+
other than an Application or a Combined Work as defined below.
|
|
21
|
+
|
|
22
|
+
An "Application" is any work that makes use of an interface provided
|
|
23
|
+
by the Library, but which is not otherwise based on the Library.
|
|
24
|
+
Defining a subclass of a class defined by the Library is deemed a mode
|
|
25
|
+
of using an interface provided by the Library.
|
|
26
|
+
|
|
27
|
+
A "Combined Work" is a work produced by combining or linking an
|
|
28
|
+
Application with the Library. The particular version of the Library
|
|
29
|
+
with which the Combined Work was made is also called the "Linked
|
|
30
|
+
Version".
|
|
31
|
+
|
|
32
|
+
The "Minimal Corresponding Source" for a Combined Work means the
|
|
33
|
+
Corresponding Source for the Combined Work, excluding any source code
|
|
34
|
+
for portions of the Combined Work that, considered in isolation, are
|
|
35
|
+
based on the Application, and not on the Linked Version.
|
|
36
|
+
|
|
37
|
+
The "Corresponding Application Code" for a Combined Work means the
|
|
38
|
+
object code and/or source code for the Application, including any data
|
|
39
|
+
and utility programs needed for reproducing the Combined Work from the
|
|
40
|
+
Application, but excluding the System Libraries of the Combined Work.
|
|
41
|
+
|
|
42
|
+
1. Exception to Section 3 of the GNU GPL.
|
|
43
|
+
|
|
44
|
+
You may convey a covered work under sections 3 and 4 of this License
|
|
45
|
+
without being bound by section 3 of the GNU GPL.
|
|
46
|
+
|
|
47
|
+
2. Conveying Modified Versions.
|
|
48
|
+
|
|
49
|
+
If you modify a copy of the Library, and, in your modifications, a
|
|
50
|
+
facility refers to a function or data to be supplied by an Application
|
|
51
|
+
that uses the facility (other than as an argument passed when the
|
|
52
|
+
facility is invoked), then you may convey a copy of the modified
|
|
53
|
+
version:
|
|
54
|
+
|
|
55
|
+
a) under this License, provided that you make a good faith effort to
|
|
56
|
+
ensure that, in the event an Application does not supply the
|
|
57
|
+
function or data, the facility still operates, and performs
|
|
58
|
+
whatever part of its purpose remains meaningful, or
|
|
59
|
+
|
|
60
|
+
b) under the GNU GPL, with none of the additional permissions of
|
|
61
|
+
this License applicable to that copy.
|
|
62
|
+
|
|
63
|
+
3. Object Code Incorporating Material from Library Header Files.
|
|
64
|
+
|
|
65
|
+
The object code form of an Application may incorporate material from
|
|
66
|
+
a header file that is part of the Library. You may convey such object
|
|
67
|
+
code under terms of your choice, provided that, if the incorporated
|
|
68
|
+
material is not limited to numerical parameters, data structure
|
|
69
|
+
layouts and accessors, or small macros, inline functions and templates
|
|
70
|
+
(ten or fewer lines in length), you do both of the following:
|
|
71
|
+
|
|
72
|
+
a) Give prominent notice with each copy of the object code that the
|
|
73
|
+
Library is used in it and that the Library and its use are
|
|
74
|
+
covered by this License.
|
|
75
|
+
|
|
76
|
+
b) Accompany the object code with a copy of the GNU GPL and this license
|
|
77
|
+
document.
|
|
78
|
+
|
|
79
|
+
4. Combined Works.
|
|
80
|
+
|
|
81
|
+
You may convey a Combined Work under terms of your choice that,
|
|
82
|
+
taken together, effectively do not restrict modification of the
|
|
83
|
+
portions of the Library contained in the Combined Work and reverse
|
|
84
|
+
engineering for debugging such modifications, if you also do each of
|
|
85
|
+
the following:
|
|
86
|
+
|
|
87
|
+
a) Give prominent notice with each copy of the Combined Work that
|
|
88
|
+
the Library is used in it and that the Library and its use are
|
|
89
|
+
covered by this License.
|
|
90
|
+
|
|
91
|
+
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
|
92
|
+
document.
|
|
93
|
+
|
|
94
|
+
c) For a Combined Work that displays copyright notices during
|
|
95
|
+
execution, include the copyright notice for the Library among
|
|
96
|
+
these notices, as well as a reference directing the user to the
|
|
97
|
+
copies of the GNU GPL and this license document.
|
|
98
|
+
|
|
99
|
+
d) Do one of the following:
|
|
100
|
+
|
|
101
|
+
0) Convey the Minimal Corresponding Source under the terms of this
|
|
102
|
+
License, and the Corresponding Application Code in a form
|
|
103
|
+
suitable for, and under terms that permit, the user to
|
|
104
|
+
recombine or relink the Application with a modified version of
|
|
105
|
+
the Linked Version to produce a modified Combined Work, in the
|
|
106
|
+
manner specified by section 6 of the GNU GPL for conveying
|
|
107
|
+
Corresponding Source.
|
|
108
|
+
|
|
109
|
+
1) Use a suitable shared library mechanism for linking with the
|
|
110
|
+
Library. A suitable mechanism is one that (a) uses at run time
|
|
111
|
+
a copy of the Library already present on the user's computer
|
|
112
|
+
system, and (b) will operate properly with a modified version
|
|
113
|
+
of the Library that is interface-compatible with the Linked
|
|
114
|
+
Version.
|
|
115
|
+
|
|
116
|
+
e) Provide Installation Information, but only if you would otherwise
|
|
117
|
+
be required to provide such information under section 6 of the
|
|
118
|
+
GNU GPL, and only to the extent that such information is
|
|
119
|
+
necessary to install and execute a modified version of the
|
|
120
|
+
Combined Work produced by recombining or relinking the
|
|
121
|
+
Application with a modified version of the Linked Version. (If
|
|
122
|
+
you use option 4d0, the Installation Information must accompany
|
|
123
|
+
the Minimal Corresponding Source and Corresponding Application
|
|
124
|
+
Code. If you use option 4d1, you must provide the Installation
|
|
125
|
+
Information in the manner specified by section 6 of the GNU GPL
|
|
126
|
+
for conveying Corresponding Source.)
|
|
127
|
+
|
|
128
|
+
5. Combined Libraries.
|
|
129
|
+
|
|
130
|
+
You may place library facilities that are a work based on the
|
|
131
|
+
Library side by side in a single library together with other library
|
|
132
|
+
facilities that are not Applications and are not covered by this
|
|
133
|
+
License, and convey such a combined library under terms of your
|
|
134
|
+
choice, if you do both of the following:
|
|
135
|
+
|
|
136
|
+
a) Accompany the combined library with a copy of the same work based
|
|
137
|
+
on the Library, uncombined with any other library facilities,
|
|
138
|
+
conveyed under the terms of this License.
|
|
139
|
+
|
|
140
|
+
b) Give prominent notice with the combined library that part of it
|
|
141
|
+
is a work based on the Library, and explaining where to find the
|
|
142
|
+
accompanying uncombined form of the same work.
|
|
143
|
+
|
|
144
|
+
6. Revised Versions of the GNU Lesser General Public License.
|
|
145
|
+
|
|
146
|
+
The Free Software Foundation may publish revised and/or new versions
|
|
147
|
+
of the GNU Lesser General Public License from time to time. Such new
|
|
148
|
+
versions will be similar in spirit to the present version, but may
|
|
149
|
+
differ in detail to address new problems or concerns.
|
|
150
|
+
|
|
151
|
+
Each version is given a distinguishing version number. If the
|
|
152
|
+
Library as you received it specifies that a certain numbered version
|
|
153
|
+
of the GNU Lesser General Public License "or any later version"
|
|
154
|
+
applies to it, you have the option of following the terms and
|
|
155
|
+
conditions either of that published version or of any later version
|
|
156
|
+
published by the Free Software Foundation. If the Library as you
|
|
157
|
+
received it does not specify a version number of the GNU Lesser
|
|
158
|
+
General Public License, you may choose any version of the GNU Lesser
|
|
159
|
+
General Public License ever published by the Free Software Foundation.
|
|
160
|
+
|
|
161
|
+
If the Library as you received it specifies that a proxy can decide
|
|
162
|
+
whether future versions of the GNU Lesser General Public License shall
|
|
163
|
+
apply, that proxy's public statement of acceptance of any version is
|
|
164
|
+
permanent authorization for you to choose that version for the
|
|
165
|
+
Library.
|
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: PrEditor
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A python REPL and Editor and console based on Qt.
|
|
5
|
+
Home-page: https://github.com/blurstudio/PrEditor.git
|
|
6
|
+
Author: Blur Studio
|
|
7
|
+
Author-email: opensource@blur.com
|
|
8
|
+
License: LGPL-3.0
|
|
9
|
+
Platform: any
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python
|
|
15
|
+
Classifier: Programming Language :: Python :: 2
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
18
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
19
|
+
Requires-Python: !=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
License-File: LICENSE
|
|
22
|
+
Requires-Dist: Qt.py
|
|
23
|
+
Requires-Dist: configparser >=4.0.2
|
|
24
|
+
Requires-Dist: future >=0.18.2
|
|
25
|
+
Requires-Dist: python-redmine >=2.1.1
|
|
26
|
+
Requires-Dist: signalslot >=0.1.2
|
|
27
|
+
Requires-Dist: importlib-metadata >=4.8.3 ; python_version >= "3.6"
|
|
28
|
+
Provides-Extra: cli
|
|
29
|
+
Requires-Dist: click >=7.1.2 ; extra == 'cli'
|
|
30
|
+
Requires-Dist: click-default-group ; extra == 'cli'
|
|
31
|
+
Provides-Extra: dev
|
|
32
|
+
Requires-Dist: black ; extra == 'dev'
|
|
33
|
+
Requires-Dist: covdefaults ; extra == 'dev'
|
|
34
|
+
Requires-Dist: coverage ; extra == 'dev'
|
|
35
|
+
Requires-Dist: flake8 ; extra == 'dev'
|
|
36
|
+
Requires-Dist: flake8-bugbear ; extra == 'dev'
|
|
37
|
+
Requires-Dist: pep8-naming ; extra == 'dev'
|
|
38
|
+
Requires-Dist: pytest ; extra == 'dev'
|
|
39
|
+
Requires-Dist: tox ; extra == 'dev'
|
|
40
|
+
Provides-Extra: shortcut
|
|
41
|
+
Requires-Dist: casement >=0.1.0 ; (platform_system == "Windows") and extra == 'shortcut'
|
|
42
|
+
|
|
43
|
+
# PrEditor
|
|
44
|
+
|
|
45
|
+
A python REPL, editor and console based on Qt. It allows you to interact
|
|
46
|
+
directly with the current python session and write/run complex code in workbox's.
|
|
47
|
+
It also has an interface for configuring python logging.
|
|
48
|
+
|
|
49
|
+
# Use and Features
|
|
50
|
+
|
|
51
|
+

|
|
52
|
+
|
|
53
|
+
* **Console:** The top section is a python REPL allowing you to run code like you
|
|
54
|
+
are in the python interactive shell. However, you can't use code
|
|
55
|
+
blocks([...](https://docs.python.org/3/glossary.html#term-...)), use the workbox instead.
|
|
56
|
+
* Python's stdout and stderr are written here including exceptions.
|
|
57
|
+
* If the cursor is at the very end of the last line, and that line starts with
|
|
58
|
+
a prompt (`>>> ` this includes 1 space) the code is executed when you press return.
|
|
59
|
+
Pressing return on any other prompt line copies that line to the end ready to
|
|
60
|
+
execute.
|
|
61
|
+
* Pressing `Ctrl + Up/Down` will cycle through previous command history.
|
|
62
|
+
* The console is a text edit and you can edit any of the text so you can fix
|
|
63
|
+
your mistakes as you make them
|
|
64
|
+
* **Workbox:** The workbox is a place to write complex multi-line code. The contents
|
|
65
|
+
of all workboxes are saved when PrEditor is closed or pressing `Ctrl + S`.
|
|
66
|
+
* Workboxes are grouped into tabs of workboxes. You can drag and drop
|
|
67
|
+
individual workboxes between groups and re-order them.
|
|
68
|
+
* `Ctrl + Return` runs all code inside of the current workbox.
|
|
69
|
+
* `Shift + Return` or the `Number-pad Return` executes the selected text or
|
|
70
|
+
the line the cursor is on.
|
|
71
|
+
* `run_workbox("group/tab")` This command is added allowing you to run the
|
|
72
|
+
contents of a workbox. Pass the name of the group and workbox tabs separated
|
|
73
|
+
by a forward slash.
|
|
74
|
+
* **Logging Level button:** Tools for managing python loggers.
|
|
75
|
+
* This button shows all known python loggers and lets you view/change their
|
|
76
|
+
logging levels.
|
|
77
|
+
* You can install logging handlers that have had PrEditor plugins written for them.
|
|
78
|
+
* Known python logger levels are saved and restored.
|
|
79
|
+
* All code is run in `__main__`. In code you can add objects to it for inspection in PrEditor.
|
|
80
|
+
* `Ctrl + Shift + PgUp/PgDown` changes focus between the console and workbox.
|
|
81
|
+
* `Ctrl + Alt + Shift + PgUp/PgDown` changes focus and copies the current prompt
|
|
82
|
+
line of the console, or the current line of the workbox to the other.
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
# Examples
|
|
86
|
+
|
|
87
|
+
See [examples](examples) for more complete examples of using PrEditor.
|
|
88
|
+
|
|
89
|
+
For simple standalone applications that only exist for the life of the main window
|
|
90
|
+
you can simply call `connect_preditor` in your class `__init__` and optionally add
|
|
91
|
+
the created QAction into your GUI's menu. All `sys.stdout` and `sys.stderr` output
|
|
92
|
+
written after `connect_preditor` is called, will be shown in the PrEditor window
|
|
93
|
+
if it shown. If a exception is raised, and PrEditor is not visible, the user will
|
|
94
|
+
be notified and can easily show PrEditor.
|
|
95
|
+
```py
|
|
96
|
+
import preditor
|
|
97
|
+
|
|
98
|
+
# Create a keyboard shortcut(F2) to launch PrEditor and start capturing sys.stdout
|
|
99
|
+
# and sys.stderr writes. The name argument makes this instance use it for prefs
|
|
100
|
+
action = preditor.connect_preditor(window, name="Example")
|
|
101
|
+
|
|
102
|
+
# Add the newly created action to a menu
|
|
103
|
+
window.menuBar().actions()[0].menu.addAction(action)
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
Steps for initialization of a more complex application where you don't have
|
|
107
|
+
control over the initialization of the Gui(like Maya).
|
|
108
|
+
See [examples/add_to_app.py](examples/add_to_app.py) for a simple implementation.
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
```py
|
|
112
|
+
# Step 1: Capture sys.stdout and sys.stderr output to a buffer as early as
|
|
113
|
+
# possible without creating the gui. Add this code to a plugin that gets loaded
|
|
114
|
+
# as early as possible. This can even be run before the gui is created.
|
|
115
|
+
import preditor
|
|
116
|
+
# The name "maya" specifies the core_name that will be used to load/save prefs.
|
|
117
|
+
preditor.configure("maya")
|
|
118
|
+
|
|
119
|
+
# Step 2: Add a way for the user to trigger calling launch to show the PrEditor
|
|
120
|
+
# gui. This is the first time the PrEditor GUI is initialized.
|
|
121
|
+
preditor.launch()
|
|
122
|
+
|
|
123
|
+
# Step 3: When closing the application, calling this will ensure that the
|
|
124
|
+
# current PrEditor gui's state is saved. It's safe and fast to call this even
|
|
125
|
+
# if the gui was never created.
|
|
126
|
+
preditor.shutdown()
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
# Installing
|
|
130
|
+
|
|
131
|
+
`pip install preditor`
|
|
132
|
+
|
|
133
|
+
## Installing Qt
|
|
134
|
+
|
|
135
|
+
PrEditor is built on Qt, but uses [Qt.py](https://github.com/mottosso/Qt.py) so
|
|
136
|
+
you can choose to use PySide2 or PyQt5. We have elected to not directly depend
|
|
137
|
+
on either of these packages as if you want to use PrEditor inside of a an existing
|
|
138
|
+
application like Maya or Houdini, they already come with PySide2 installed. If
|
|
139
|
+
you are using it externally, add them to your pip install command.
|
|
140
|
+
|
|
141
|
+
- PySide2: `pip install preditor PySide2`
|
|
142
|
+
- PyQt5: `pip install preditor PyQt5`
|
|
143
|
+
|
|
144
|
+
## Cli
|
|
145
|
+
|
|
146
|
+
PrEditor is intended to be installed inside existing applications like Maya,
|
|
147
|
+
Houdini, Nuke etc, so it doesn't make sense to require installing packages like
|
|
148
|
+
click for those installs. If you are setting up a system wide install and want
|
|
149
|
+
to use the cli interface, you will need to install the cli optional dependencies.
|
|
150
|
+
|
|
151
|
+
`pip install preditor[cli]`
|
|
152
|
+
|
|
153
|
+
### Creating shortcuts
|
|
154
|
+
|
|
155
|
+
If you want to be able to create desktop shortcuts from the cli to launch
|
|
156
|
+
PrEditor, you will also need to include the `shortcut` dependencies. Currently
|
|
157
|
+
this is only useful for windows.
|
|
158
|
+
|
|
159
|
+
- `pip install preditor[cli,shortcut]`
|
|
160
|
+
|
|
161
|
+
## QScintilla workbox
|
|
162
|
+
|
|
163
|
+
The more mature QScintilla workbox requires a few extra dependencies that must
|
|
164
|
+
be passed manually. It hasn't been added to `extras_require` because we plan to
|
|
165
|
+
split it into its own pip module due to it requiring PyQt5 which is a little hard
|
|
166
|
+
to get working inside of DCC's that ship with PySide2 by default. Here is the
|
|
167
|
+
python 3 pip install command(For python 2 you will need to compile QScintilla
|
|
168
|
+
yourself.)
|
|
169
|
+
|
|
170
|
+
- `pip install preditor PyQt5, QScintilla>=2.11.4 aspell-python-py3`
|
|
171
|
+
|
|
172
|
+
The aspell-python-py3 requirement is optional to enable spell check.
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
# DCC Integration
|
|
176
|
+
|
|
177
|
+
## Maya
|
|
178
|
+
|
|
179
|
+
PrEditor is pre-setup to use as a Maya module. To use it, create a virtualenv
|
|
180
|
+
with the same python as maya, or install it using mayapy.
|
|
181
|
+
|
|
182
|
+
```
|
|
183
|
+
virtualenv venv_preditor
|
|
184
|
+
venv_preditor\Scripts\activate
|
|
185
|
+
pip install PrEditor
|
|
186
|
+
set MAYA_MODULE_PATH=c:\path\to\venv_preditor\Lib\site-packages\preditor\dccs
|
|
187
|
+
```
|
|
188
|
+
Note: Due to how maya .mod files works if you are using development installs you
|
|
189
|
+
can't use pip editable installs. This is due to the relative path used
|
|
190
|
+
`PYTHONPATH +:= ../..` in `PrEditor_maya.mod`. You can modify that to use a hard
|
|
191
|
+
coded file path for testing, or add a second .mod file to add the virtualenv's
|
|
192
|
+
`site-packages` file path as a hard coded file path.
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
# Plugins
|
|
196
|
+
|
|
197
|
+
PrEditor is can be extended using entry point plugins defined by other pip packages.
|
|
198
|
+
|
|
199
|
+
* `preditor.plug.about_module`: Used to add information about various packages
|
|
200
|
+
like version and install location to the output of `preditor.about_preditor()`.
|
|
201
|
+
This is what generates the text shown by Help menu -> About PrEditor. See
|
|
202
|
+
sub-classes of `AboutModule` in `preditor.about_module` and how those are
|
|
203
|
+
added in [setup.cfg](setup.cfg).
|
|
204
|
+
|
|
205
|
+
* `preditor.plug.editors`: Used to add new workbox editors to PrEditor. See
|
|
206
|
+
[workbox_text_edit.py](preditor/gui/workbox_text_edit.py) for an example of
|
|
207
|
+
implementing a workbox. See [workbox_mixin.py](preditor/gui/workbox_mixin.py)
|
|
208
|
+
for the full interface to implement all features of an editor.
|
|
209
|
+
|
|
210
|
+
* `preditor.plug.logging_handlers`: Used to add custom python logging handlers
|
|
211
|
+
to the LoggingLevelButton's handlers sub-menus. This allows you to install a
|
|
212
|
+
handler instance on a specific logging object.
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
preditor/__init__.py,sha256=JlIK0Gp7g7DsKbyt1c5PMD9-3EyeE7q7wv1sJmhrlYc,10585
|
|
2
|
+
preditor/__main__.py,sha256=boRVSmxX6eF8EkzbePtCZbzdcaPseqVae4RPPLp3U1A,449
|
|
3
|
+
preditor/about_module.py,sha256=KIvCxZrMLhm5TR6lYskM4Y9VctJ0QtSQD5Nu8Ip1CGY,5267
|
|
4
|
+
preditor/cli.py,sha256=kyVr0V43KYSMLIEWXH54CA0ByFmPcpbFF-8cli6PVow,5300
|
|
5
|
+
preditor/contexts.py,sha256=xxRbOFORsvlG___EuSiKuT1aiKJvnkFojFZFZE0HPNk,5147
|
|
6
|
+
preditor/debug.py,sha256=xcOslCByK7nSebh5DR6m-uC6uV9tuJBZu-JAAPBl8aA,9515
|
|
7
|
+
preditor/enum.py,sha256=snG5V259dH9SI1kwBqZeZdhat36F1iAmIjYErosnDUg,23489
|
|
8
|
+
preditor/logging_config.py,sha256=aCqBhnHhcTigpR7neVEPbx4Vc_3ADpiqaBQ7uOd4qRQ,1462
|
|
9
|
+
preditor/osystem.py,sha256=vRr-WaIzYEO38tJeyHMOlAyrvGaWGBuiyaPx0X9JfZ4,13682
|
|
10
|
+
preditor/plugins.py,sha256=W3DfdDEE5DtEXOXioEyIe4tuIVV1V-RLcV8LoZJWpWU,1916
|
|
11
|
+
preditor/prefs.py,sha256=BPtSsdv2yuiRpIaqEml9fxlVYKHNfqQ77hp5YIQRDBg,2172
|
|
12
|
+
preditor/settings.py,sha256=DV9_DbJorEnhdIvW15E7h7PswlQUsy0UlA8bXUYN0og,2206
|
|
13
|
+
preditor/streamhandler_helper.py,sha256=kiU6T9WqJ3JKTTKCa7IUU8brwK7zO5UUpEzLhEfKe44,1788
|
|
14
|
+
preditor/version.py,sha256=xwUxqNB1me5mfO6PXPXd-gWwNTAl_-Idf0ktsITBEpU,142
|
|
15
|
+
preditor/weakref.py,sha256=b--KomFAHcMWr3DEAIN2j3XxRhjDWKw0WABXyn1nxDg,12177
|
|
16
|
+
preditor/cores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
+
preditor/cores/core.py,sha256=ZXB4bts05DMQtc-dtkk81chIWNqYXImMuWCYuUHwLdA,2389
|
|
18
|
+
preditor/dccs/maya/PrEditor_maya.mod,sha256=XTZsiqpSj7AjiB0SOZJct06mk1cLivV7sWIZmg1HoFo,46
|
|
19
|
+
preditor/dccs/maya/plug-ins/PrEditor_maya.py,sha256=7D5MZb9c0-5Nfz4JVG4X2GecQJWUHE7XEtVZuKH_kWM,3855
|
|
20
|
+
preditor/delayable_engine/__init__.py,sha256=7GNnc2996zCzBtkB3U9Ic0EcXToVYrlewSMq8hlWNl0,11491
|
|
21
|
+
preditor/delayable_engine/delayables.py,sha256=GWxv4iTcqFeo7703SMrtotKx4cfq1ujJMNdpmtawPqc,2708
|
|
22
|
+
preditor/gui/__init__.py,sha256=vie2aDVpGjrDYxK1H2pTVIgFjIk6B8nNf6rWNwCVJ3Y,3132
|
|
23
|
+
preditor/gui/app.py,sha256=RRiaDpUdWYoVkCFThMfsSSFG63jRt7LKx2QOx8lSdK4,5810
|
|
24
|
+
preditor/gui/codehighlighter.py,sha256=fYrEi2qzKmZcTOCv3qRymGAqC7z4bRzO9IGa6cn-LF4,7199
|
|
25
|
+
preditor/gui/completer.py,sha256=T6fl_4xGVjVtGNuR6ajD1ngjEhrKR6tZ9zPJDYoKn8E,7379
|
|
26
|
+
preditor/gui/console.py,sha256=_5v4Vh_04wz1oqaxnZ8Rp818x3igz6Tumgo3-T7TCnA,30759
|
|
27
|
+
preditor/gui/dialog.py,sha256=Vw8Wflb2P3TngO8b-2suWP6JKHBVHdbGgYiRDKzYRlQ,7488
|
|
28
|
+
preditor/gui/drag_tab_bar.py,sha256=5J-BSKQzS6_WuYxxGqmnUJr6AriTAvwfVK7Q3p7knrM,7933
|
|
29
|
+
preditor/gui/editor_chooser.py,sha256=v82SPuxPgai3XiRWi9ypT0aRkbV6_IrbfBoAljM9pRY,1986
|
|
30
|
+
preditor/gui/errordialog.py,sha256=FZzSykNtqgTZ-CKEsLFXfcw_k8zwx7g_aMaHbpnq2xI,3110
|
|
31
|
+
preditor/gui/level_buttons.py,sha256=yPFIWKc0bgKLrP2XHyBqNuvvTnXZqGdtN_p27jSb1Og,11925
|
|
32
|
+
preditor/gui/logger_window_handler.py,sha256=VTNhaoFUnConE3NHj9KaDZlVoifix8xCbCuN5Ozjz0M,1482
|
|
33
|
+
preditor/gui/loggerwindow.py,sha256=o0CBcKBeNV0ZV9o_3g_Bk12LGhDZfS6FgsVGi9j3v5o,46366
|
|
34
|
+
preditor/gui/newtabwidget.py,sha256=5aCWn9xAl5h1oZACqVuEsOAbzKTS2RegrLI41gROC8A,1971
|
|
35
|
+
preditor/gui/redmine_login_dialog.py,sha256=cMPBuecSZD5yjycNkMwHa1AbdwgGoyHvX8anIvWjEFo,1893
|
|
36
|
+
preditor/gui/set_text_editor_path_dialog.py,sha256=6mbHAXEVQhaWyg0N67f54aZpd5fp6puGWzeM0tPepiU,2251
|
|
37
|
+
preditor/gui/window.py,sha256=bZAEKQDM6V4aew1nlSTPyq_tG-_IoSvyXHcZxrdFMaE,6924
|
|
38
|
+
preditor/gui/workbox_mixin.py,sha256=4tUiOWRFc0tEOAAo9BDD3idlkfO6t4VCuL4tklYNnTY,12543
|
|
39
|
+
preditor/gui/workbox_text_edit.py,sha256=fJY7eo1bpMyzLri5DfdVb2vad9znJjBvzLkY34T8gb4,3678
|
|
40
|
+
preditor/gui/workboxwidget.py,sha256=1uGSPZv3GxmOAIsA4oTaiPUHl003Yp6IA_rXanIToC4,8966
|
|
41
|
+
preditor/gui/fuzzy_search/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
|
+
preditor/gui/fuzzy_search/fuzzy_search.py,sha256=6npanW6aLmG_ezdHmpsKN7p2zwck_Qq6YUy9duCNN8Q,3595
|
|
43
|
+
preditor/gui/group_tab_widget/__init__.py,sha256=KpQKkX_FyFQLy2UtBQcLoMuj0eRA7E_2-KXrTwPqA9k,12530
|
|
44
|
+
preditor/gui/group_tab_widget/grouped_tab_menu.py,sha256=lopd3mjHJIE_5xLdlZL0ghuBzsYo36vO1OZE6L6tqbI,1288
|
|
45
|
+
preditor/gui/group_tab_widget/grouped_tab_models.py,sha256=zlmbcv3JAC5BzjKpm4CM7Hobibm1T_3GjaPoWIQbXiQ,3970
|
|
46
|
+
preditor/gui/group_tab_widget/grouped_tab_widget.py,sha256=EwzYVqhJaBaYS9tdd4FXUl-PxjplWtOi7f0t99De_bw,2803
|
|
47
|
+
preditor/gui/group_tab_widget/one_tab_widget.py,sha256=PdZAXjmV9oTHakh8aFYRlLnfwcoT459vQWVKgpZZx4Y,1971
|
|
48
|
+
preditor/gui/ui/editor_chooser.ui,sha256=cYSVHK0A4-zst6JyDkrBZK9qcAontbhV4Mmnw5ps72E,2736
|
|
49
|
+
preditor/gui/ui/errordialog.ui,sha256=H1wJJVU1t7kbnYkzGtGa8SBVpKjesJG_0imdBkJaEUY,2034
|
|
50
|
+
preditor/gui/ui/loggerwindow.ui,sha256=gHtU5ZyEyPXaLTCf1eNpu24L-61e0KEXZ18SWOj_C0w,29088
|
|
51
|
+
preditor/gui/ui/redmine_login_dialog.ui,sha256=PmGuJWvBcSDLya5UblFj5brwDH9VL2fJEveH-r5-nJ8,2911
|
|
52
|
+
preditor/gui/ui/set_text_editor_path_dialog.ui,sha256=QoSorDlyfUoNSrHQRP1Yrls5az4TyUsTQw_qYOe_Ljc,4004
|
|
53
|
+
preditor/resource/environment_variables.html,sha256=-uWicgOkour-sxtY-crrjMiLMyJzAzshwUXKqSm6TmI,3134
|
|
54
|
+
preditor/resource/error_mail.html,sha256=oCzynF3QSHi_Xg1wlmU5M5u1Q05mp7QV0ZtQ4e8KQDA,2400
|
|
55
|
+
preditor/resource/error_mail_inline.html,sha256=ceZ8HReyTirMOX-xNgVB9kMO8QhpbHI4-WObFeOG9KY,4014
|
|
56
|
+
preditor/resource/settings.ini,sha256=JhPumV7SzlRTZG3Fs1dxPokat3bthfZPw84lJ7E9zPQ,893
|
|
57
|
+
preditor/resource/img/README.md,sha256=Opxd7axkbUhMvxRcTLLlB95z7Iuu6dITNKP-jvCs_Pc,309
|
|
58
|
+
preditor/resource/img/arrow_forward.png,sha256=41jN4EuemyaZtJ1vcynlAvCGRPJmq3NYq1HeWBGRbko,426
|
|
59
|
+
preditor/resource/img/check-bold.png,sha256=FLu28U1BTyUaljouxEGaoHXhG2z4OzvL57MfMSwAnSI,500
|
|
60
|
+
preditor/resource/img/chevron-down.png,sha256=4GNzTPW-q4LR_3tHj1ymlHsRymVma9J_N1eUvNboTJw,451
|
|
61
|
+
preditor/resource/img/chevron-up.png,sha256=ldNfpkqmW_EkugjxjJGGZLKvBhn8YQ8F6xyp-_T09-M,427
|
|
62
|
+
preditor/resource/img/close-thick.png,sha256=RDtR-m7A8sOUjlixX8Up14FAJ-vx7GxscZiMIkL37gs,543
|
|
63
|
+
preditor/resource/img/comment-edit.png,sha256=lh8vFwBRT8k4caF5hWfXeO7V198aiZDzY3TVo9FAibc,680
|
|
64
|
+
preditor/resource/img/content-copy.png,sha256=HWX_3y7gFYu3uaPBMtdqtUIC1jfHN2yP5HxHltpV7BA,492
|
|
65
|
+
preditor/resource/img/content-cut.png,sha256=uljaz_Q8BOvdcGDNvmhkurBZwxoSfbIo05yOnDUpe24,756
|
|
66
|
+
preditor/resource/img/content-duplicate.png,sha256=ou41vXqV3YKNMCwXJrGqYyafd8t3qe9It-YHJA4PYNU,572
|
|
67
|
+
preditor/resource/img/content-paste.png,sha256=TiZmBdJ9myTbjmjySXCuDiF_IB2sdaN05RMFO3vKymU,537
|
|
68
|
+
preditor/resource/img/content-save.png,sha256=q0nTRbq_AaqQHKnWNhfVTnMYlMISd5X7o5AG_aw07SE,573
|
|
69
|
+
preditor/resource/img/debug_disabled.png,sha256=bZ1dFi39QNRbXqQ85llmHbRMR-FGYLryRYfr0bDokrQ,207
|
|
70
|
+
preditor/resource/img/eye-check.png,sha256=tsAVRaL4LREpIT9HefEntQ458zGzEcSBieCcU0eGhXg,968
|
|
71
|
+
preditor/resource/img/file-plus.png,sha256=dvm1hKUMGGeUD7-ngBjVbMeMoFQwOZgJvpWARazcbTo,577
|
|
72
|
+
preditor/resource/img/file-remove.png,sha256=pnJVe9EBzvpMq8G7ikY_DXXDhM9e2m2pJtPTZz3zO_k,690
|
|
73
|
+
preditor/resource/img/format-align-left.png,sha256=y2ixRoDurohX5E5ddxr4tVib_bczRRT7DN9CBDhDmcw,331
|
|
74
|
+
preditor/resource/img/format-letter-case-lower.png,sha256=CkqlY2HABrGLyCEkDC8CPI4To873uNysB-f5PUK1gJA,978
|
|
75
|
+
preditor/resource/img/format-letter-case-upper.png,sha256=NECM28lYBHhnQ_GgKvgli2xbCbiVylNyfWY7VVNpSXw,977
|
|
76
|
+
preditor/resource/img/information.png,sha256=vb_-kGXq2T_zeAJlrt5FJGSK8WUFYstzQl8WuMSfs5I,778
|
|
77
|
+
preditor/resource/img/logging_critical.png,sha256=lj4U6l8iRcgmWZWxdaJALvWn_KQELiqY936ZkPlRWJU,151
|
|
78
|
+
preditor/resource/img/logging_custom.png,sha256=zmVRkBX2CVjqD8QdnRKxv7Jss1114bhBt6vpDVkxxdo,297
|
|
79
|
+
preditor/resource/img/logging_debug.png,sha256=1dTtIiPSn5BcAjKs-o5Z8EY0GvNN3MmUJROMMO5CaYc,151
|
|
80
|
+
preditor/resource/img/logging_error.png,sha256=iFCjyDbTub5-McVNPbyRnNgL2UTgUSRX-LEyO3qdPMg,151
|
|
81
|
+
preditor/resource/img/logging_info.png,sha256=KyV71eXTyjks8h5wu4xOBWhV-YVpBHgPp3Rj4KEuTws,151
|
|
82
|
+
preditor/resource/img/logging_not_set.png,sha256=aFp_jOIbLHcdgeNTRMt93trtZWul0uQeV6KmSI9dhRk,151
|
|
83
|
+
preditor/resource/img/logging_warning.png,sha256=de_PP_OZ8VNxhO4UqmlA0eVKQG1oWMa6XCp4P7XROfE,151
|
|
84
|
+
preditor/resource/img/marker.png,sha256=-HKjoNnAXUALmN4R2Qot8V3Gr01l5ulOS1H0-Eh9fGk,655
|
|
85
|
+
preditor/resource/img/play.png,sha256=WDU5whfyVtyNwXmUqkfhcR2xdwBaXN9L8VhxgE4EoOo,502
|
|
86
|
+
preditor/resource/img/playlist-play.png,sha256=DAz-PkqLtOKVgcxSQtP2bQbKHe5ebUKrJc36L_n1ItI,422
|
|
87
|
+
preditor/resource/img/plus-minus-variant.png,sha256=jN7AKN1OUL3kTfvSdkDXpxVRUKCMXd9belaHbdWCMAg,677
|
|
88
|
+
preditor/resource/img/preditor.ico,sha256=HjJbjJ3MYBmw5pFmkY2hEaomK-zPO7LJsOgGgALQN2c,144374
|
|
89
|
+
preditor/resource/img/preditor.png,sha256=y-AdFUy_zDnkylDe8kX1BTfwZS_TIgmEBqrHhx_IhWE,32788
|
|
90
|
+
preditor/resource/img/preditor.psd,sha256=SZgadVDuDAzlUcg6ymlfAL7uw_JzLb1PsmkSAoSazv0,200136
|
|
91
|
+
preditor/resource/img/preditor.svg,sha256=MRsRxcZw3HSJ4ZRDA3XMLytJX34QPJVIAET4lG613KU,3804
|
|
92
|
+
preditor/resource/img/restart.svg,sha256=v3CFD1bROBch5n8vSQAzQqQc-bzvL_YwkD0JAhn4fuc,403
|
|
93
|
+
preditor/resource/img/skip-forward-outline.png,sha256=5PAOknMYBZcuzskG8OO_QGAjLvA8g9M08MgjTvxfDrM,475
|
|
94
|
+
preditor/resource/img/skip-next-outline.png,sha256=FUTDclE-U4nF5JhjvX-31QTwfv5pKgaX4UziY6UUioU,478
|
|
95
|
+
preditor/resource/img/skip-next.png,sha256=q9V896VWgwatGShqSL7Ebv8sia3Q2XwBv5Y4KaZA60o,446
|
|
96
|
+
preditor/resource/img/skip-previous.png,sha256=ixJHaTPWnyD98aDv_VFuWepcRAHpnTQFYycOufTva5M,469
|
|
97
|
+
preditor/resource/img/subdirectory-arrow-right.png,sha256=PXmp15L0nBHgq_YJlG4WLd_eA2nZk_fHue9yzUpJQm4,456
|
|
98
|
+
preditor/resource/img/text-search-variant.png,sha256=98uwrqOgxmraS1DJ8kJskr9_J7cF3e-niwVuBDqYinA,718
|
|
99
|
+
preditor/resource/img/warning-big.png,sha256=z5QKX3DNLo_UDRKdjwtELbXL_JLf2zOwhkMPnIeu3vw,1065
|
|
100
|
+
preditor/resource/lang/python.json,sha256=CXiQh0jcgd-OCrM-s9IF7s4o-g5WRA4vDaAyTRAxAQo,316
|
|
101
|
+
preditor/resource/stylesheet/Bright.css,sha256=wxzpkhcOC9GzALb0NYAMASnZmXEe9urZBniHNImwTc4,2186
|
|
102
|
+
preditor/resource/stylesheet/Dark.css,sha256=l3n9Z89JNlVDWKDtMTlipQkSSVPSJXbKd0tOMWnx7PQ,5085
|
|
103
|
+
preditor/scintilla/__init__.py,sha256=AoUc-fcp2D3F10FDFsp_ZzUr4zioDH0mvdubSF7sRG0,523
|
|
104
|
+
preditor/scintilla/documenteditor.py,sha256=_dt4J1DcmGPbtujqXsaSz0Li00T6I9IEduaVKMRAQl0,77900
|
|
105
|
+
preditor/scintilla/finddialog.py,sha256=vcYPj74LbCy4KXdh0eJyOb8i31pJKgOZitKpgW4zhBM,2346
|
|
106
|
+
preditor/scintilla/delayables/__init__.py,sha256=lj9tMc3IL2QeaN858Ixt_n7clJngbKqG2sk66vIcFcQ,275
|
|
107
|
+
preditor/scintilla/delayables/smart_highlight.py,sha256=JRwGp-pVwx75zJ5NoJ8UuBg4-jK4eQfgD4eM4ZfDbGI,3502
|
|
108
|
+
preditor/scintilla/delayables/spell_check.py,sha256=56XQp5rB_W6PaHkV-p6kYrlBcD0WIdenn287i95lnwE,6901
|
|
109
|
+
preditor/scintilla/lang/__init__.py,sha256=db0L84UKwXoiv_5PR3wFcywzbBo5a7SuZIz04S17nIM,1705
|
|
110
|
+
preditor/scintilla/lang/language.py,sha256=GC8ASEcvRuo6pwTwe8usN5p_gA1UJ9RUsgmN9bOjh8I,6919
|
|
111
|
+
preditor/scintilla/lang/config/bash.ini,sha256=dtvJOl5HKQo4JMpqoZ3ZcujAyk0qYa61hWYVpp6uzZw,152
|
|
112
|
+
preditor/scintilla/lang/config/batch.ini,sha256=n0gQR47Zs5L9Hb1lkdJ7s2_4bqR7LwXcuCc2uOX4wpA,154
|
|
113
|
+
preditor/scintilla/lang/config/cpp.ini,sha256=un8AiviOrYDrrPJYDSlBjjctWVr4OkSFjLZ5A43DYKU,263
|
|
114
|
+
preditor/scintilla/lang/config/css.ini,sha256=HiVhTHMZSQSPKHbHXMI5ugQNMoJ5t0SnCYDURBd4O3o,215
|
|
115
|
+
preditor/scintilla/lang/config/eyeonscript.ini,sha256=_0J5Svwf0lvWCnaXeRZ_wk9aD_UwC-njK6F8kJOFS0M,223
|
|
116
|
+
preditor/scintilla/lang/config/html.ini,sha256=FM9ernqI9t7XolJnZ2w3n4CBBlrDmIyOXDXQQKnjR6s,437
|
|
117
|
+
preditor/scintilla/lang/config/javascript.ini,sha256=UwBTp2QifcMOAtevF6E0S2AU8DAjHKN4LlVzSCbrkMA,467
|
|
118
|
+
preditor/scintilla/lang/config/lua.ini,sha256=26NE-G5QHi3Mfc41d6pTaRyoGwDFux8HITnOe5y9bxU,169
|
|
119
|
+
preditor/scintilla/lang/config/maxscript.ini,sha256=t2TziHJpggwh78Hlh9fLp6XiFtyCtQejmxv2woFeifQ,368
|
|
120
|
+
preditor/scintilla/lang/config/mel.ini,sha256=VSl6no0olUBr6wIWdX5zUl7DTtytS9rQ1kJ6J0QLbR0,246
|
|
121
|
+
preditor/scintilla/lang/config/mu.ini,sha256=PPwzbROmBpM5BrAvCUVVaJZXJIBONvtV4422CNoPYaw,361
|
|
122
|
+
preditor/scintilla/lang/config/nsi.ini,sha256=8OR0xoW7Oo8JsuO-x_Pgr2ub2FOhf5OBFrm90toT4n8,259
|
|
123
|
+
preditor/scintilla/lang/config/perl.ini,sha256=Qke5rkHFRGvDmIMLpH_KL12VEQ9xttmXWpxsNEQ-MiY,212
|
|
124
|
+
preditor/scintilla/lang/config/puppet.ini,sha256=ABJuceYqutptN1DevP_3GW4aeoI3CcNGRQg889E-dgU,212
|
|
125
|
+
preditor/scintilla/lang/config/python.ini,sha256=Tz86xWNoki3wTW6mIptrGLNmXohrc1Y9Ts_NL1R58Ow,472
|
|
126
|
+
preditor/scintilla/lang/config/ruby.ini,sha256=JwxiiuPfSqLX5FPT1GXY4OK-Axsg640lXx9WUN1fOTo,211
|
|
127
|
+
preditor/scintilla/lang/config/sql.ini,sha256=TrRCliEmJvAlBXyKniJQdtKjfdPnBV-ywqTQct678vE,78
|
|
128
|
+
preditor/scintilla/lang/config/xml.ini,sha256=xEhjIazrQhlEb19fff-mgkftK8cJW9DGcFnZwzTfbjA,469
|
|
129
|
+
preditor/scintilla/lang/config/yaml.ini,sha256=rdFvgxQ7_L3kxqd5TwCAG4YFA75hBi8buVLGDZLaKwg,222
|
|
130
|
+
preditor/scintilla/lexers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
|
+
preditor/scintilla/lexers/cpplexer.py,sha256=5tVNlwVwAFZNmx8ri4WvJgkAyVvTCInNqZgfKXUKyfE,702
|
|
132
|
+
preditor/scintilla/lexers/javascriptlexer.py,sha256=eyeT3FD_8q3hiVfyQ-uv56M0uWe76Ws-qDS32CGO6ug,853
|
|
133
|
+
preditor/scintilla/lexers/maxscriptlexer.py,sha256=bS0-A7X09MbTJ-oAXZRDS3MdAa6kG94aEBIZIj6rjSs,8456
|
|
134
|
+
preditor/scintilla/lexers/mellexer.py,sha256=Jp8i7UOBqQR0VQ88jZFtgwGM0KX0NxTbr3vYLeBWfkk,26506
|
|
135
|
+
preditor/scintilla/lexers/mulexer.py,sha256=Y2FVp6ZJ9CgLIuIvItOzXMMRemuToID66dpBn1qqTwA,976
|
|
136
|
+
preditor/scintilla/lexers/pythonlexer.py,sha256=WgL74RQGvGgsdAL-l2ioOMybqRw7M0GG-SxmzXsW4xw,1682
|
|
137
|
+
preditor/scintilla/ui/finddialog.ui,sha256=CEXouVKqVCDOfMBciK-89OmsGe2Kr6XdMbSPiffp0PA,4048
|
|
138
|
+
preditor/stream/__init__.py,sha256=SxILA3U3W8aNfVBd_oJ4-WXkA214cl1zGLSCelFx5QU,2682
|
|
139
|
+
preditor/stream/director.py,sha256=ymay-JYrw96MwLiR7DoFJ9af3BhTODJSoEPNnkivOuE,1915
|
|
140
|
+
preditor/stream/manager.py,sha256=NP4lf6hd5L_Ui-9Ws66gVEk6ZL8YqF7BxOzUsdrh3v0,2811
|
|
141
|
+
preditor/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
142
|
+
preditor/utils/cute.py,sha256=LfF8gXMAkkQAdo4mm6J9aVkDLwWZbE6prQ0moDbtCys,1045
|
|
143
|
+
preditor/utils/stylesheets.py,sha256=EVWZNq3WnaRiyUPoYMKQo_dLEwbRyKu26b03I1JDA-s,1622
|
|
144
|
+
PrEditor-0.1.0.dist-info/LICENSE,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
|
|
145
|
+
PrEditor-0.1.0.dist-info/METADATA,sha256=Xor6RHAfzmJVlVeqPqQq9XEpDukJJPeTwFmXuDDhWKc,9277
|
|
146
|
+
PrEditor-0.1.0.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
|
|
147
|
+
PrEditor-0.1.0.dist-info/entry_points.txt,sha256=mpe0HFD_oIEBNPTJNyUEbmMV6Ivrp4EuYyZ34C5d_PU,519
|
|
148
|
+
PrEditor-0.1.0.dist-info/top_level.txt,sha256=iX1_mrUOky_BQr2oG0l_MbEUYF6idyjiWSzu9z3irIw,9
|
|
149
|
+
PrEditor-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[console_scripts]
|
|
2
|
+
preditor = preditor.cli:cli
|
|
3
|
+
|
|
4
|
+
[gui_scripts]
|
|
5
|
+
preditorw = preditor.cli:cli
|
|
6
|
+
|
|
7
|
+
[preditor.plug.about_module]
|
|
8
|
+
Exe = preditor.about_module:AboutExe
|
|
9
|
+
PrEditor = preditor.about_module:AboutPreditor
|
|
10
|
+
Python = preditor.about_module:AboutPython
|
|
11
|
+
Qt = preditor.about_module:AboutQt
|
|
12
|
+
|
|
13
|
+
[preditor.plug.editors]
|
|
14
|
+
QScintilla = preditor.gui.workboxwidget:WorkboxWidget
|
|
15
|
+
TextEdit = preditor.gui.workbox_text_edit:WorkboxTextEdit
|
|
16
|
+
|
|
17
|
+
[preditor.plug.logging_handlers]
|
|
18
|
+
PrEditor = preditor.gui.logger_window_handler:LoggerWindowHandler
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
preditor
|