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
blurdev/resource/img/remove.png
DELETED
|
Binary file
|
blurdev/resource/img/reset.png
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
blurdev/resource/img/save.png
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
blurdev/resource/img/tool.png
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
blurdev/resource/img/trash.png
DELETED
|
Binary file
|
blurdev/resource/img/trax.png
DELETED
|
Binary file
|
blurdev/resource/img/tree.png
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
blurdev/resource/img/warning.png
DELETED
|
Binary file
|
|
Binary file
|
blurdev/resource/sdk/blurdev.sdk
DELETED
blurdev/resource/settings.ini
DELETED
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
[Default]
|
|
2
|
-
bdev_cmd_python = $BDEV_APP_PYTHON "%(filepath)s"
|
|
3
|
-
bdev_cmd_web = firefox %(filepath)s
|
|
4
|
-
bdev_studio_name = Blur
|
|
5
|
-
bdev_user_guide_url = https://wiki.blur.com/Tools/%s
|
|
6
|
-
bdev_default_author_email = beta@blur.com
|
|
7
|
-
bdev_use_log_class = trax.api.uselog
|
|
8
|
-
bdev_pdb_skip = blurdev.gui.*
|
|
9
|
-
bdev_trax_on_dcc_startup = true
|
|
10
|
-
bdev_error_email = The Pipe<thePipe+{hash}@blur.com>
|
|
11
|
-
bdev_path_replacements=\\source\production,/mnt/source;\\source\source,/mnt/dev;\\source.blur.com\production,/mnt/source;\\source.blur.com\source,/mnt/dev
|
|
12
|
-
bdev_disable_tool_usage_log = false
|
|
13
|
-
bdev_find_in_files_exts = *.*,*.py;*.pyw,*.nsi;*.nsh,*.h;*.cpp,*.cs,*.ui,*.ms,*.mel,*.mu,*.html;*.xml;*.js,*.py;*.pyw;*.ms;*.mel,*.py;*.pyw;*.ms;*.mel;*.h;*.cpp,*.py;*.pyw;*.nsi;*.nsh,*.py;*.pyw;*.nsi;*.nsh;*.ms;*.mel;*.h;*.cpp,*.py;*.pyw;*.ms;*.mel;*.h;*.cpp;*.html;*.xml;*.js;*.ui;*.mu
|
|
14
|
-
bdev_find_in_files_exclude = ,([\\/]\.svn[\\/]?)$,([\\/]\.svn[\\/]?|\.git)$,([\\/]\.svn[\\/]?|\.git|\.pyc)$
|
|
15
|
-
|
|
16
|
-
[Windows]
|
|
17
|
-
bdev_cmd_shell_execfile = "%(filepath)s"
|
|
18
|
-
bdev_cmd_shell_debug = "%(filepath)s"
|
|
19
|
-
bdev_cmd_shell_exec = "%(command)s"
|
|
20
|
-
bdev_cmd_shell_browse = "%(filepath)s"
|
|
21
|
-
bdev_app_zip = $BDEV_PATH_BLUR/assburner/zip.exe
|
|
22
|
-
bdev_cmd_browse = open "%(filepath)s"
|
|
23
|
-
bdev_path_temp = c:/temp
|
|
24
|
-
bdev_cmd_execfile = "%(filepath)s"
|
|
25
|
-
bdev_app_classmaker = $BDEV_PATH_BLUR/classmaker/classmaker.exe
|
|
26
|
-
bdev_app_imageeditor = photoshop
|
|
27
|
-
bdev_path_prefs_shared = \\SNAKE\user\config\%(username)s\userprefs
|
|
28
|
-
bdev_path_project = $BDEV_PATH_BLUR/dev
|
|
29
|
-
bdev_designerplug_blur = $BLURLIBSPATH/designer_plugins.xml,$BLURLIBSPATH
|
|
30
|
-
bdev_app_qdesigner = c:/Windows/System32/blur64/designer.exe
|
|
31
|
-
bdev_path_blur = c:/blur
|
|
32
|
-
bdev_app_qassistant = $BDEV_PATH_BLUR/common/assistant.exe
|
|
33
|
-
bdev_app_python = c:/python27/python.exe
|
|
34
|
-
bdev_path_prefs = %appdata%\blur\userprefs
|
|
35
|
-
bdev_designerplug_trax = $TRAXDEVPATH/trax/definitions/designer_plugins.xml,$TRAXDEVPATH
|
|
36
|
-
bdev_templ_log_file_loc = c:\temp\blurdevTemp.log
|
|
37
|
-
bdev_admin_usernames = brendana,mikeh
|
|
38
|
-
bdev_environment_override_filepath = \\source\source\dev\share_all\studio_override.xml
|
|
39
|
-
bdev_default_config_ini = c:/blur/config.ini
|
|
40
|
-
bdev_config_ini_backup = \\source\production\bin\blur\config.ini
|
|
41
|
-
bdev_master_tools_env_config = %(filepath)s\tools_environments.json
|
|
42
|
-
bdev_splashscreen_source_dir = \\source\source\dev\share_all\splash
|
|
43
|
-
bdev_path_resources=\\snake\production\library
|
|
44
|
-
bdev_resources_cache = c:\blur\cache
|
|
45
|
-
|
|
46
|
-
[Windows Offline]
|
|
47
|
-
bdev_path_prefs_shared = %APPDATA%/blur/userprefs
|
|
48
|
-
bdev_environment_override_filepath = %APPDATA%/blur/studio_override.xml
|
|
49
|
-
bdev_config_ini_backup = %BDEV_PATH_RESOURCES%/config_backup.ini
|
|
50
|
-
bdev_disable_tool_usage_log = True
|
|
51
|
-
bdev_master_tools_env_config = %(filepath)s\tools_environments_offline.xml
|
|
52
|
-
bdev_splashscreen_source_dir = %BDEV_PATH_BLUR%/splash
|
|
53
|
-
bdev_path_resources = %BDEV_PATH_BLUR%/resource
|
|
54
|
-
bdev_cache_resources = false
|
|
55
|
-
|
|
56
|
-
[Linux]
|
|
57
|
-
bdev_cmd_shell_exec = gnome-terminal -x bash -c "%(command)s && echo Press enter to close && read"
|
|
58
|
-
bdev_cmd_shell_browse = gnome-terminal --working-directory %(filepath)s
|
|
59
|
-
bdev_cmd_shell_debug = gnome-terminal -x bash -c "%(filepath)s && echo Press enter to close && read"
|
|
60
|
-
bdev_cmd_shell_execfile = bash --rcfile %(filepath)s
|
|
61
|
-
bdev_path_temp = /tmp/
|
|
62
|
-
bdev_path_blur = $HOME/.blur
|
|
63
|
-
bdev_cmd_execfile = xdg-open "%(filepath)s"
|
|
64
|
-
bdev_path_prefs_shared = $BDEV_PATH_PREFS
|
|
65
|
-
bdev_path_project = $BDEV_PATH_BLUR/projects
|
|
66
|
-
bdev_app_qassistant = /usr/local/Trolltech/Qt-4.5.3/bin/assistant
|
|
67
|
-
bdev_app_python = python2.7
|
|
68
|
-
bdev_app_imageeditor = gimp
|
|
69
|
-
bdev_path_prefs = $BDEV_PATH_BLUR/userprefs
|
|
70
|
-
bdev_cmd_browse = nemo %(filepath)s
|
|
71
|
-
bdev_app_qdesigner = /usr/local/Trolltech/Qt-4.5.3/bin/designer
|
|
72
|
-
bdev_templ_log_file_loc = /tmp/blurdevTemp.log
|
|
73
|
-
bdev_master_tools_env_config = %(filepath)s/tools_environments_linux.xml
|
|
74
|
-
bdev_include_trax = /blur/python/apps
|
|
75
|
-
bdev_splashscreen_source_dir = /mnt/dev/dev/share_all/splash
|
|
76
|
-
bdev_path_resources=/mnt/production/library
|
|
77
|
-
bdev_resources_cache = $HOME/.blur/cache
|
|
78
|
-
|
|
79
|
-
[Linux Offline]
|
|
80
|
-
bdev_splashscreen_source_dir = $HOME/.blur/splash
|
|
81
|
-
bdev_path_resources = $HOME/.blur/library
|
|
82
|
-
bdev_cache_resources = false
|
|
Binary file
|
|
Binary file
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
QMainWindow, QDialog, QWidget {
|
|
2
|
-
background-color: rgb(171,168,168);
|
|
3
|
-
color: rgb(40,40,40);
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
QMainWindow:disabled, QDialog:disabled, QWidget:disabled {
|
|
7
|
-
color: rgb(100, 100, 100);
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
QMenu {
|
|
11
|
-
border-style: solid;
|
|
12
|
-
border-color: rgb(80,80,80);
|
|
13
|
-
border-width: 1px;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
QMenu:unchecked {
|
|
17
|
-
background-color: none;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
QMenu:checked {
|
|
21
|
-
background-color: none;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
QMenu:selected {
|
|
25
|
-
background-color: none;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
QListView, QTableView, QTreeView, QLineEdit, QTextEdit, QPlainTextEdit, QAbstractSpinBox, QComboBox:editable {
|
|
29
|
-
background-color: rgb(181,178,178);
|
|
30
|
-
alternate-background-color: rgb(171,168,168);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
QPushButton:checked, QPushButton:pressed, QToolButton:checked, QToolButton:pressed {
|
|
34
|
-
background-color: rgb(120,120,120);
|
|
35
|
-
}
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
DocumentEditor {
|
|
2
|
-
qproperty-pyMarginsForegroundColor: rgb(202, 202, 202);
|
|
3
|
-
qproperty-pyMarginsBackgroundColor: rgb(70, 70, 73);
|
|
4
|
-
qproperty-pySelectionBackgroundColor: rgb(90, 90, 93);
|
|
5
|
-
qproperty-pySelectionForegroundColor: rgb(240, 240, 240);
|
|
6
|
-
qproperty-pyCaretBackgroundColor: rgb(70, 70, 73);
|
|
7
|
-
qproperty-pyCaretForegroundColor: rgb(255, 255, 255);
|
|
8
|
-
qproperty-pyMatchedBraceBackgroundColor: rgb(60, 60, 63);
|
|
9
|
-
qproperty-pyMatchedBraceForegroundColor: rgb(240, 240, 240);
|
|
10
|
-
qproperty-pyUnmatchedBraceBackgroundColor: rgb(70, 70, 73);
|
|
11
|
-
qproperty-pyUnmatchedBraceForegroundColor: rgb(200, 180, 180);
|
|
12
|
-
qproperty-pyEdgeColor: rgb(100, 45, 45);
|
|
13
|
-
|
|
14
|
-
qproperty-pyIndentationGuidesBackgroundColor: rgb(70, 70, 73);
|
|
15
|
-
qproperty-pyIndentationGuidesForegroundColor: rgb(102, 153, 204);
|
|
16
|
-
qproperty-pyMarkerBackgroundColor: rgb(45, 255, 45);
|
|
17
|
-
qproperty-pyMarkerForegroundColor: rgb(200, 0, 200);
|
|
18
|
-
qproperty-foldMarginsBackgroundColor: rgb(60, 60, 63);
|
|
19
|
-
qproperty-foldMarginsForegroundColor: rgb(60, 60, 63);
|
|
20
|
-
qproperty-braceBadForeground: rgb(255, 255, 255);
|
|
21
|
-
qproperty-braceBadBackground: rgb(100, 60, 60);
|
|
22
|
-
|
|
23
|
-
qproperty-colorDefault: rgb(102, 153, 204);
|
|
24
|
-
qproperty-colorComment: rgb(153, 153, 153);
|
|
25
|
-
qproperty-colorNumber: rgb(249, 145, 87);
|
|
26
|
-
qproperty-colorString: rgb(153, 204, 153);
|
|
27
|
-
qproperty-colorKeyword: rgb(204, 153, 204);
|
|
28
|
-
qproperty-colorTripleQuotedString: rgb(220, 204, 153);
|
|
29
|
-
qproperty-colorMethod: rgb(255, 204, 102);
|
|
30
|
-
qproperty-colorFunction: rgb(132, 203, 255);
|
|
31
|
-
qproperty-colorOperator: rgb(204, 204, 204);
|
|
32
|
-
qproperty-colorIdentifier: rgb(102, 153, 204);
|
|
33
|
-
qproperty-colorCommentBlock: rgb(117, 113, 94);
|
|
34
|
-
qproperty-colorUnclosedString: rgb(255, 255, 255);
|
|
35
|
-
qproperty-colorSmartHighlight: rgb(255, 255, 255);
|
|
36
|
-
qproperty-colorDecorator: rgb(240, 100, 102);
|
|
37
|
-
qproperty-paperDefault: rgb(70, 70, 73);
|
|
38
|
-
qproperty-paperComment: rgb(70, 70, 73);
|
|
39
|
-
qproperty-paperNumber: rgb(70, 70, 73);
|
|
40
|
-
qproperty-paperString: rgb(70, 70, 73);
|
|
41
|
-
qproperty-paperKeyword: rgb(70, 70, 73);
|
|
42
|
-
qproperty-paperTripleQuotedString: rgb(70, 70, 73);
|
|
43
|
-
qproperty-paperMethod: rgb(70, 70, 73);
|
|
44
|
-
qproperty-paperFunction: rgb(70, 70, 73);
|
|
45
|
-
qproperty-paperOperator: rgb(70, 70, 73);
|
|
46
|
-
qproperty-paperIdentifier: rgb(70, 70, 73);
|
|
47
|
-
qproperty-paperCommentBlock: rgb(70, 70, 73);
|
|
48
|
-
qproperty-paperUnclosedString: rgb(100, 60, 60);
|
|
49
|
-
qproperty-paperSmartHighlight: rgba(75, 180, 0, 25);
|
|
50
|
-
qproperty-paperDecorator: rgb(70, 70, 73);
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
QToolButton[toolTip="Next"], QToolButton[toolTip="Step"], QSpinBox#uiPdbExecuteCountDDL {
|
|
55
|
-
/* Give the pdb buttons that respect the uiPdbExecuteCountDDL a different color */
|
|
56
|
-
background-color: rgb(210,200,160);
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
ConsoleEdit {
|
|
60
|
-
color: rgb(255, 255, 255);
|
|
61
|
-
background-color: rgb(70, 70, 73);
|
|
62
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
#--------------------------------------------------------------------------------
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# [author::initials] [date]
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
class Logger:
|
|
2
|
-
def __init__( self, stdhandle, logfile, _print = True ):
|
|
3
|
-
self._stdhandle = stdhandle
|
|
4
|
-
self._logfile = logfile
|
|
5
|
-
self._print = _print
|
|
6
|
-
# clear the log file
|
|
7
|
-
open(logfile, 'w').close()
|
|
8
|
-
|
|
9
|
-
def flush( self ):
|
|
10
|
-
self._stdhandle.flush()
|
|
11
|
-
|
|
12
|
-
def write( self, msg ):
|
|
13
|
-
f = open( self._logfile, 'a' )
|
|
14
|
-
f.write( msg )
|
|
15
|
-
f.close()
|
|
16
|
-
if self._print:
|
|
17
|
-
self._stdhandle.write( msg )
|
|
18
|
-
|
|
19
|
-
import sys, datetime
|
|
20
|
-
sys.stderr = Logger( sys.stderr, r'[log_file_loc]', False )
|
|
21
|
-
sys.stdout = Logger( sys.stdout, r'[log_file_loc]', False )
|
|
22
|
-
print('--------- Date: %s Version: %s ---------' % (datetime.datetime.today(), sys.version))
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{! '.'.join( [ i for i in ('[package]', '[module]') if i ] ) !}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from PyQt4.QtCore import *
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from PyQt4.QtGui import *
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# TESTING NOTE: Remove this before commiting, its for testing only
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# END TESTING NOTE -----------------------------------------------
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Built-in",
|
|
3
|
-
"read_only": true,
|
|
4
|
-
"included": [
|
|
5
|
-
{
|
|
6
|
-
"name": "Machine",
|
|
7
|
-
"filename": "c:\\blur\\common\\user_environments.xml"
|
|
8
|
-
},
|
|
9
|
-
{
|
|
10
|
-
"name": "Studiowide",
|
|
11
|
-
"filename": "\\\\source.blur.com\\source\\dev\\share_all\\studio_environments.xml"
|
|
12
|
-
}
|
|
13
|
-
],
|
|
14
|
-
"environments": [
|
|
15
|
-
{
|
|
16
|
-
"name": "Release",
|
|
17
|
-
"path": "\\\\source.blur.com\\production\\release\\lib\\python2.7\\site-packages",
|
|
18
|
-
"email": "errors@blur.com",
|
|
19
|
-
"description": "This is the environment you should be using most of the time. It features the code that is meant to be used by artists.",
|
|
20
|
-
"legacy": "",
|
|
21
|
-
"dev": false,
|
|
22
|
-
"default": true,
|
|
23
|
-
"offline": false,
|
|
24
|
-
"autoupdate": false,
|
|
25
|
-
"timeout": "",
|
|
26
|
-
"keychain": "",
|
|
27
|
-
"project": ""
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"name": "Release Candidate",
|
|
31
|
-
"path": "\\\\source.blur.com\\production\\release\\lib\\python2.7\\site-packages",
|
|
32
|
-
"email": "errors@blur.com",
|
|
33
|
-
"description": "Very similar to Release but is exposing code that we plan to release soon.",
|
|
34
|
-
"legacy": "",
|
|
35
|
-
"dev": false,
|
|
36
|
-
"default": false,
|
|
37
|
-
"offline": false,
|
|
38
|
-
"autoupdate": false,
|
|
39
|
-
"timeout": "",
|
|
40
|
-
"keychain": "",
|
|
41
|
-
"project": ""
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"name": "Pre-Release",
|
|
45
|
-
"path": "\\\\source.blur.com\\production\\pre\\lib\\python2.7\\site-packages",
|
|
46
|
-
"email": "errors@blur.com",
|
|
47
|
-
"description": "The latest code. Reserved to users who want to beta test newer features.",
|
|
48
|
-
"legacy": "",
|
|
49
|
-
"dev": false,
|
|
50
|
-
"default": false,
|
|
51
|
-
"offline": false,
|
|
52
|
-
"autoupdate": false,
|
|
53
|
-
"timeout": "",
|
|
54
|
-
"keychain": "",
|
|
55
|
-
"project": ""
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"name": "Delayed",
|
|
59
|
-
"path": "\\\\source.blur.com\\production\\delayed\\lib\\python2.7\\site-packages",
|
|
60
|
-
"email": "errors@blur.com",
|
|
61
|
-
"description": "Updated each day to match the Release environment from one week ago. You can switch to this environment if you are experiencing issues with Release.",
|
|
62
|
-
"legacy": "",
|
|
63
|
-
"dev": false,
|
|
64
|
-
"default": false,
|
|
65
|
-
"offline": false,
|
|
66
|
-
"autoupdate": false,
|
|
67
|
-
"timeout": "",
|
|
68
|
-
"keychain": "",
|
|
69
|
-
"project": ""
|
|
70
|
-
}
|
|
71
|
-
]
|
|
72
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<?xml version='1.0'?>
|
|
2
|
-
<tools_environments version="1.0" name="Built-in">
|
|
3
|
-
<!-- load local user environments -->
|
|
4
|
-
<include loc="c:/blur/common/user_environments.xml" name="Machine"/>
|
|
5
|
-
<include loc="//source/source/dev/share_all/studio_environments.xml" name="Studiowide"/>
|
|
6
|
-
<!-- load studio standard environments -->
|
|
7
|
-
<environment default="True" emailOnError="errors@blur.com" description="This is the environment you should be using most of the time. It features the code that is meant to be used by artists." loc="\\source\production\release\lib\python2.7\site-packages" name="Release"/>
|
|
8
|
-
<environment emailOnError="errors@blur.com" description="Very similar to Release but is exposing code that we plan to release soon." loc="\\source\production\rc\lib\python2.7\site-packages" name="Release Candidate"/>
|
|
9
|
-
<environment emailOnError="errors@blur.com" description="The latest code. Reserved to users who want to beta test newer features." loc="\\source\production\pre\lib\python2.7\site-packages" name="Pre-Release"/>
|
|
10
|
-
<environment emailOnError="errors@blur.com" description="Updated each day to match the Release environment from one week ago. You can switch to this environment if you are experiencing issues with Release." loc="\\source\production\delayed\lib\python2.7\site-packages" name="Delayed"/>
|
|
11
|
-
</tools_environments>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<?xml version='1.0'?>
|
|
2
|
-
<tools_environments version="1.0" name="Builtin">
|
|
3
|
-
<!-- load local user environments -->
|
|
4
|
-
<include loc="~/.blur/user_environments.xml"/>
|
|
5
|
-
<include loc="/mnt/dev/dev/share_all/studio_environments_linux.xml"/>
|
|
6
|
-
<!-- load studio standard environments -->
|
|
7
|
-
<environment default="True" emailOnError="errors@blur.com" description="This is the environment you should be using most of the time. It features the code that is meant to be used by artists." loc="/mnt/source/release/lib/python2.7/site-packages" name="Release"/>
|
|
8
|
-
<environment emailOnError="errors@blur.com" description="Very similar to Release but is exposing code that we plan to release soon." loc="/mnt/source/rc/lib/python2.7/site-packages" name="Release Candidate"/>
|
|
9
|
-
<environment emailOnError="errors@blur.com" description="The latest code. Reserved to users who want to beta test newer features." loc="/mnt/source/pre/lib/python2.7/site-packages" name="Pre-Release"/>
|
|
10
|
-
<environment emailOnError="errors@blur.com" description="Updated each day to match the Release environment from one week ago. You can switch to this environment if you are experiencing issues with Release." loc="/mnt/source/delayed/lib/python2.7/site-packages" name="Delayed"/>
|
|
11
|
-
</tools_environments>
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
<?xml version='1.0'?>
|
|
2
|
-
<tools_environments version="1.0" name="Built-in">
|
|
3
|
-
<!-- load local user environments -->
|
|
4
|
-
<include loc="c:/blur/common/user_environments.xml"/>
|
|
5
|
-
<!-- load studio standard environments -->
|
|
6
|
-
<environment default="True" loc="c:/blur/dev/offline/lib/site-packages" name="Blur Offline" offline="True" legacyName="Offline"/>
|
|
7
|
-
</tools_environments>
|
blurdev/runtimes/__init__.py
DELETED
blurdev/runtimes/logger.py
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
from __future__ import absolute_import
|
|
2
|
-
import os
|
|
3
|
-
import sys
|
|
4
|
-
from argparse import ArgumentParser
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
def main():
|
|
8
|
-
# register the blurdev import location
|
|
9
|
-
|
|
10
|
-
blurdevpath = os.path.abspath(os.path.join(os.path.dirname(__file__), '../../'))
|
|
11
|
-
if blurdevpath not in sys.path:
|
|
12
|
-
sys.path.insert(0, blurdevpath)
|
|
13
|
-
|
|
14
|
-
# When blurdev is imported, it will set the ApplicationName to match this.
|
|
15
|
-
os.environ['BDEV_APPLICATION_NAME'] = 'PythonLogger'
|
|
16
|
-
|
|
17
|
-
# launch the editor
|
|
18
|
-
import blurdev
|
|
19
|
-
|
|
20
|
-
parser = ArgumentParser()
|
|
21
|
-
parser.add_argument(
|
|
22
|
-
'-w',
|
|
23
|
-
'--runWorkbox',
|
|
24
|
-
action="store_true",
|
|
25
|
-
help='After the logger is shown, run the current workbox text.',
|
|
26
|
-
)
|
|
27
|
-
args = parser.parse_args()
|
|
28
|
-
|
|
29
|
-
if args.runWorkbox:
|
|
30
|
-
kwargs = {'runWorkbox': True}
|
|
31
|
-
else:
|
|
32
|
-
kwargs = None
|
|
33
|
-
|
|
34
|
-
from blurdev.gui.loggerwindow import LoggerWindow
|
|
35
|
-
|
|
36
|
-
# Set the app user model id here not in the LoggerWindow.__init__ so
|
|
37
|
-
# if a external treegrunt tool calls setAppUserModelID then adds the
|
|
38
|
-
# logger it won't change the id to PythonLogger.
|
|
39
|
-
blurdev.setAppUserModelID('PythonLogger')
|
|
40
|
-
blurdev.launch(LoggerWindow.instance, coreName='logger', kwargs=kwargs)
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
if __name__ == '__main__':
|
|
44
|
-
main()
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
from __future__ import print_function
|
|
2
|
-
from __future__ import absolute_import
|
|
3
|
-
|
|
4
|
-
# Import the base classes used to make most Delayables
|
|
5
|
-
from .base import Delayable, RangeDelayable, SearchDelayable # noqa: F401
|
|
6
|
-
|
|
7
|
-
# TODO: Make these imports a plugin based system of some sort.
|
|
8
|
-
from . import smart_highlight # noqa: F401
|
|
9
|
-
from . import spell_check # noqa: F401
|