├── .gitignore ├── CHANGELOG.md ├── COPYING ├── LICENSE ├── README.md ├── app.py ├── pugdebug ├── __init__.py ├── debugger.py ├── gui │ ├── __init__.py │ ├── breakpoints.py │ ├── document.py │ ├── documents.py │ ├── expressions.py │ ├── file_browser.py │ ├── forms.py │ ├── main_window.py │ ├── projects.py │ ├── search.py │ ├── settings.py │ ├── stacktraces.py │ ├── statusbar.py │ └── variables.py ├── message_parser.py ├── models │ ├── __init__.py │ ├── document.py │ ├── documents.py │ ├── file_browser.py │ ├── file_search.py │ ├── projects.py │ └── settings.py ├── pugdebug.py ├── server.py ├── syntaxer.py └── tests │ ├── __init__.py │ ├── _files │ └── superglobals.xml │ └── test_message_parser.py ├── requirements.txt └── setup.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/app.py -------------------------------------------------------------------------------- /pugdebug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pugdebug/debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/debugger.py -------------------------------------------------------------------------------- /pugdebug/gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pugdebug/gui/breakpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/gui/breakpoints.py -------------------------------------------------------------------------------- /pugdebug/gui/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/gui/document.py -------------------------------------------------------------------------------- /pugdebug/gui/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/gui/documents.py -------------------------------------------------------------------------------- /pugdebug/gui/expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/gui/expressions.py -------------------------------------------------------------------------------- /pugdebug/gui/file_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/gui/file_browser.py -------------------------------------------------------------------------------- /pugdebug/gui/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/gui/forms.py -------------------------------------------------------------------------------- /pugdebug/gui/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/gui/main_window.py -------------------------------------------------------------------------------- /pugdebug/gui/projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/gui/projects.py -------------------------------------------------------------------------------- /pugdebug/gui/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/gui/search.py -------------------------------------------------------------------------------- /pugdebug/gui/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/gui/settings.py -------------------------------------------------------------------------------- /pugdebug/gui/stacktraces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/gui/stacktraces.py -------------------------------------------------------------------------------- /pugdebug/gui/statusbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/gui/statusbar.py -------------------------------------------------------------------------------- /pugdebug/gui/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/gui/variables.py -------------------------------------------------------------------------------- /pugdebug/message_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/message_parser.py -------------------------------------------------------------------------------- /pugdebug/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pugdebug/models/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/models/document.py -------------------------------------------------------------------------------- /pugdebug/models/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/models/documents.py -------------------------------------------------------------------------------- /pugdebug/models/file_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/models/file_browser.py -------------------------------------------------------------------------------- /pugdebug/models/file_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/models/file_search.py -------------------------------------------------------------------------------- /pugdebug/models/projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/models/projects.py -------------------------------------------------------------------------------- /pugdebug/models/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/models/settings.py -------------------------------------------------------------------------------- /pugdebug/pugdebug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/pugdebug.py -------------------------------------------------------------------------------- /pugdebug/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/server.py -------------------------------------------------------------------------------- /pugdebug/syntaxer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/syntaxer.py -------------------------------------------------------------------------------- /pugdebug/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pugdebug/tests/_files/superglobals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/tests/_files/superglobals.xml -------------------------------------------------------------------------------- /pugdebug/tests/test_message_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/pugdebug/tests/test_message_parser.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertbasic/pugdebug/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude=pugdebug/tests,env/ 3 | ignore=E402 4 | --------------------------------------------------------------------------------