在好例子网,分享、交流、成长!
您当前所在位置:首页Python 开发实例Python语言基础 → eric6 python的好工具

eric6 python的好工具

Python语言基础

下载此实例
  • 开发语言:Python
  • 实例大小:20.11M
  • 下载次数:3
  • 浏览次数:22
  • 发布时间:2023-05-04
  • 实例类别:Python语言基础
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:2
 相关标签: python python py IC 工具

实例介绍

【实例简介】eric6  python的好工具
eric6-17.10 安装前提 先装好 python 再装 pyqt 在解压后运行 install.py即可

【实例截图】

from clipboard

【核心代码】
文件清单
└── eric6-17.10
    ├── changelog
    ├── eric
    │   ├── APIs
    │   │   ├── Python
    │   │   │   ├── zope-2.10.7.api
    │   │   │   ├── zope-2.11.2.api
    │   │   │   └── zope-3.3.1.api
    │   │   ├── Python3
    │   │   │   ├── eric6.api
    │   │   │   ├── eric6.bas
    │   │   │   ├── PyQt4.bas
    │   │   │   ├── PyQt5.bas
    │   │   │   └── QScintilla2.bas
    │   │   ├── QSS
    │   │   │   └── qss.api
    │   │   └── Ruby
    │   │       ├── Ruby-1.8.7.api
    │   │       ├── Ruby-1.8.7.bas
    │   │       ├── Ruby-1.9.1.api
    │   │       └── Ruby-1.9.1.bas
    │   ├── changelog
    │   ├── cleanupSource.py
    │   ├── CodeTemplates
    │   │   ├── impl_pyqt5.py2.tmpl
    │   │   ├── impl_pyqt5.py.tmpl
    │   │   ├── impl_pyqt.py2.tmpl
    │   │   ├── impl_pyqt.py.tmpl
    │   │   ├── impl_pyside.py2.tmpl
    │   │   └── impl_pyside.py.tmpl
    │   ├── compileUiFiles.py
    │   ├── Cooperation
    │   │   ├── ChatWidget.py
    │   │   ├── ChatWidget.ui
    │   │   ├── Connection.py
    │   │   ├── CooperationClient.py
    │   │   ├── CooperationServer.py
    │   │   └── __init__.py
    │   ├── CSSs
    │   │   ├── blue.css
    │   │   └── default.css
    │   ├── DataViews
    │   │   ├── CodeMetricsDialog.py
    │   │   ├── CodeMetricsDialog.ui
    │   │   ├── CodeMetrics.py
    │   │   ├── __init__.py
    │   │   ├── PyCoverageDialog.py
    │   │   ├── PyCoverageDialog.ui
    │   │   ├── PyProfileDialog.py
    │   │   └── PyProfileDialog.ui
    │   ├── DebugClients
    │   │   ├── __init__.py
    │   │   └── Python
    │   │       ├── AsyncFile.py
    │   │       ├── BreakpointWatch.py
    │   │       ├── coverage
    │   │       │   ├── annotate.py
    │   │       │   ├── backunittest.py
    │   │       │   ├── backward.py
    │   │       │   ├── bytecode.py
    │   │       │   ├── cmdline.py
    │   │       │   ├── collector.py
    │   │       │   ├── config.py
    │   │       │   ├── control.py
    │   │       │   ├── data.py
    │   │       │   ├── debug.py
    │   │       │   ├── doc
    │   │       │   │   ├── AUTHORS.txt
    │   │       │   │   ├── CHANGES.rst
    │   │       │   │   ├── LICENSE.txt
    │   │       │   │   └── README.rst
    │   │       │   ├── env.py
    │   │       │   ├── execfile.py
    │   │       │   ├── files.py
    │   │       │   ├── html.py
    │   │       │   ├── __init__.py
    │   │       │   ├── __main__.py
    │   │       │   ├── misc.py
    │   │       │   ├── monkey.py
    │   │       │   ├── parser.py
    │   │       │   ├── phystokens.py
    │   │       │   ├── pickle2json.py
    │   │       │   ├── plugin.py
    │   │       │   ├── plugin_support.py
    │   │       │   ├── python.py
    │   │       │   ├── pytracer.py
    │   │       │   ├── report.py
    │   │       │   ├── results.py
    │   │       │   ├── summary.py
    │   │       │   ├── templite.py
    │   │       │   ├── test_helpers.py
    │   │       │   ├── version.py
    │   │       │   └── xmlreport.py
    │   │       ├── DCTestResult.py
    │   │       ├── DebugBase.py
    │   │       ├── DebugClientBase.py
    │   │       ├── DebugClientCapabilities.py
    │   │       ├── DebugClient.py
    │   │       ├── DebugConfig.py
    │   │       ├── DebugUtilities.py
    │   │       ├── DebugVariables.py
    │   │       ├── eric6dbgstub.py
    │   │       ├── FlexCompleter.py
    │   │       ├── getpass.py
    │   │       ├── __init__.py
    │   │       ├── PyProfile.py
    │   │       └── ThreadExtension.py
    │   ├── Debugger
    │   │   ├── BreakPointModel.py
    │   │   ├── BreakPointViewer.py
    │   │   ├── CallStackViewer.py
    │   │   ├── CallTraceViewer.py
    │   │   ├── CallTraceViewer.ui
    │   │   ├── Config.py
    │   │   ├── DebugClientCapabilities.py
    │   │   ├── DebuggerInterfaceNone.py
    │   │   ├── DebuggerInterfacePython.py
    │   │   ├── DebugServer.py
    │   │   ├── DebugUI.py
    │   │   ├── DebugViewer.py
    │   │   ├── EditBreakpointDialog.py
    │   │   ├── EditBreakpointDialog.ui
    │   │   ├── EditWatchpointDialog.py
    │   │   ├── EditWatchpointDialog.ui
    │   │   ├── ExceptionLogger.py
    │   │   ├── ExceptionsFilterDialog.py
    │   │   ├── ExceptionsFilterDialog.ui
    │   │   ├── __init__.py
    │   │   ├── StartCoverageDialog.ui
    │   │   ├── StartDebugDialog.ui
    │   │   ├── StartDialog.py
    │   │   ├── StartHistoryEditDialog.py
    │   │   ├── StartHistoryEditDialog.ui
    │   │   ├── StartProfileDialog.ui
    │   │   ├── StartRunDialog.ui
    │   │   ├── VariableDetailDialog.py
    │   │   ├── VariableDetailDialog.ui
    │   │   ├── VariablesFilterDialog.py
    │   │   ├── VariablesFilterDialog.ui
    │   │   ├── VariablesViewer.py
    │   │   ├── WatchPointModel.py
    │   │   └── WatchPointViewer.py
    │   ├── default.e4k
    │   ├── default_Mac.e4k
    │   ├── DesignerTemplates
    │   │   ├── dialog4.tmpl
    │   │   ├── dialogbuttonboxbottom4.tmpl
    │   │   ├── dialogbuttonboxright4.tmpl
    │   │   ├── dialogbuttonsbottom4.tmpl
    │   │   ├── dialogbuttonsbottomcenter4.tmpl
    │   │   ├── dialogbuttonsright4.tmpl
    │   │   ├── mainwindow4.tmpl
    │   │   ├── qdockwidget4.tmpl
    │   │   ├── qframe4.tmpl
    │   │   ├── qgroupbox4.tmpl
    │   │   ├── qmdiarea4.tmpl
    │   │   ├── qscrollarea4.tmpl
    │   │   ├── qstackedwidget4.tmpl
    │   │   ├── qtabwidget4.tmpl
    │   │   ├── qtoolbox4.tmpl
    │   │   ├── widget4.tmpl
    │   │   ├── wizard4.tmpl
    │   │   └── wizardpage4.tmpl
    │   ├── Dictionaries
    │   │   ├── excludes.dic
    │   │   └── words.dic
    │   ├── Documentation
    │   │   ├── eric6-plugin.odt
    │   │   ├── eric6-plugin.pdf
    │   │   ├── Help
    │   │   │   ├── source.qch
    │   │   │   └── source.qhp
    │   │   ├── mod_python.odt
    │   │   ├── mod_python.pdf
    │   │   └── Source
    │   │       ├── eric6.cleanupSource.html
    │   │       ├── eric6.compileUiFiles.html
    │   │       ├── eric6.Cooperation.ChatWidget.html
    │   │       ├── eric6.Cooperation.Connection.html
    │   │       ├── eric6.Cooperation.CooperationClient.html
    │   │       ├── eric6.Cooperation.CooperationServer.html
    │   │       ├── eric6.DataViews.CodeMetricsDialog.html
    │   │       ├── eric6.DataViews.CodeMetrics.html
    │   │       ├── eric6.DataViews.PyCoverageDialog.html
    │   │       ├── eric6.DataViews.PyProfileDialog.html
    │   │       ├── eric6.DebugClients.Python.AsyncFile.html
    │   │       ├── eric6.DebugClients.Python.BreakpointWatch.html
    │   │       ├── eric6.DebugClients.Python.DCTestResult.html
    │   │       ├── eric6.DebugClients.Python.DebugBase.html
    │   │       ├── eric6.DebugClients.Python.DebugClientBase.html
    │   │       ├── eric6.DebugClients.Python.DebugClientCapabilities.html
    │   │       ├── eric6.DebugClients.Python.DebugClient.html
    │   │       ├── eric6.DebugClients.Python.DebugConfig.html
    │   │       ├── eric6.DebugClients.Python.DebugUtilities.html
    │   │       ├── eric6.DebugClients.Python.DebugVariables.html
    │   │       ├── eric6.DebugClients.Python.eric6dbgstub.html
    │   │       ├── eric6.DebugClients.Python.FlexCompleter.html
    │   │       ├── eric6.DebugClients.Python.getpass.html
    │   │       ├── eric6.DebugClients.Python.PyProfile.html
    │   │       ├── eric6.DebugClients.Python.ThreadExtension.html
    │   │       ├── eric6.Debugger.BreakPointModel.html
    │   │       ├── eric6.Debugger.BreakPointViewer.html
    │   │       ├── eric6.Debugger.CallStackViewer.html
    │   │       ├── eric6.Debugger.CallTraceViewer.html
    │   │       ├── eric6.Debugger.Config.html
    │   │       ├── eric6.Debugger.DebugClientCapabilities.html
    │   │       ├── eric6.Debugger.DebuggerInterfaceNone.html
    │   │       ├── eric6.Debugger.DebuggerInterfacePython.html
    │   │       ├── eric6.Debugger.DebugServer.html
    │   │       ├── eric6.Debugger.DebugUI.html
    │   │       ├── eric6.Debugger.DebugViewer.html
    │   │       ├── eric6.Debugger.EditBreakpointDialog.html
    │   │       ├── eric6.Debugger.EditWatchpointDialog.html
    │   │       ├── eric6.Debugger.ExceptionLogger.html
    │   │       ├── eric6.Debugger.ExceptionsFilterDialog.html
    │   │       ├── eric6.Debugger.StartDialog.html
    │   │       ├── eric6.Debugger.StartHistoryEditDialog.html
    │   │       ├── eric6.Debugger.VariableDetailDialog.html
    │   │       ├── eric6.Debugger.VariablesFilterDialog.html
    │   │       ├── eric6.Debugger.VariablesViewer.html
    │   │       ├── eric6.Debugger.WatchPointModel.html
    │   │       ├── eric6.Debugger.WatchPointViewer.html
    │   │       ├── eric6.DocumentationTools.APIGenerator.html
    │   │       ├── eric6.DocumentationTools.Config.html
    │   │       ├── eric6.DocumentationTools.IndexGenerator.html
    │   │       ├── eric6.DocumentationTools.ModuleDocumentor.html
    │   │       ├── eric6.DocumentationTools.QtHelpGenerator.html
    │   │       ├── eric6.DocumentationTools.TemplatesListsStyleCSS.html
    │   │       ├── eric6.DocumentationTools.TemplatesListsStyle.html
    │   │       ├── eric6.E5Graphics.E5ArrowItem.html
    │   │       ├── eric6.E5Graphics.E5GraphicsView.html
    │   │       ├── eric6.E5Gui.E5Action.html
    │   │       ├── eric6.E5Gui.E5AnimatedWidget.html
    │   │       ├── eric6.E5Gui.E5Application.html
    │   │       ├── eric6.E5Gui.E5ClickableLabel.html
    │   │       ├── eric6.E5Gui.E5ComboBox.html
    │   │       ├── eric6.E5Gui.E5Completers.html
    │   │       ├── eric6.E5Gui.E5ErrorMessageFilterDialog.html
    │   │       ├── eric6.E5Gui.E5ErrorMessage.html
    │   │       ├── eric6.E5Gui.E5FileDialog.html
    │   │       ├── eric6.E5Gui.E5GenericDiffHighlighter.html
    │   │       ├── eric6.E5Gui.E5Led.html
    │   │       ├── eric6.E5Gui.E5LineEditButton.html
    │   │       ├── eric6.E5Gui.E5LineEdit.html
    │   │       ├── eric6.E5Gui.E5ListSelectionDialog.html
    │   │       ├── eric6.E5Gui.E5ListView.html
    │   │       ├── eric6.E5Gui.E5MainWindow.html
    │   │       ├── eric6.E5Gui.E5MapWidget.html
    │   │       ├── eric6.E5Gui.E5MessageBox.html
    │   │       ├── eric6.E5Gui.E5ModelMenu.html
    │   │       ├── eric6.E5Gui.E5ModelToolBar.html
    │   │       ├── eric6.E5Gui.E5PassivePopup.html
    │   │       ├── eric6.E5Gui.E5PasswordMeter.html
    │   │       ├── eric6.E5Gui.E5PathPicker.html
    │   │       ├── eric6.E5Gui.E5ProgressDialog.html
    │   │       ├── eric6.E5Gui.E5SideBar.html
    │   │       ├── eric6.E5Gui.E5SimpleHelpDialog.html
    │   │       ├── eric6.E5Gui.E5SingleApplication.html
    │   │       ├── eric6.E5Gui.E5SqueezeLabels.html
    │   │       ├── eric6.E5Gui.E5StringListEditWidget.html
    │   │       ├── eric6.E5Gui.E5TableView.html
    │   │       ├── eric6.E5Gui.E5TabWidget.html
    │   │       ├── eric6.E5Gui.E5TextEditSearchWidget.html
    │   │       ├── eric6.E5Gui.E5TextSpinBox.html
    │   │       ├── eric6.E5Gui.E5ToolBarDialog.html
    │   │       ├── eric6.E5Gui.E5ToolBarManager.html
    │   │       ├── eric6.E5Gui.E5ToolBox.html
    │   │       ├── eric6.E5Gui.E5ToolButton.html
    │   │       ├── eric6.E5Gui.E5TreeSortFilterProxyModel.html
    │   │       ├── eric6.E5Gui.E5TreeView.html
    │   │       ├── eric6.E5Gui.E5TreeWidget.html
    │   │       ├── eric6.E5Gui.E5ZoomWidget.html
    │   │       ├── eric6.E5Network.E5Ftp.html
    │   │       ├── eric6.E5Network.E5GoogleMail.html
    │   │       ├── eric6.E5Network.E5NetworkHeaderDetailsDialog.html
    │   │       ├── eric6.E5Network.E5NetworkIcon.html
    │   │       ├── eric6.E5Network.E5NetworkMonitor.html
    │   │       ├── eric6.E5Network.E5NetworkProxyFactory.html
    │   │       ├── eric6.E5Network.E5RFC6266.html
    │   │       ├── eric6.E5Network.E5SslCertificatesDialog.html
    │   │       ├── eric6.E5Network.E5SslCertificatesInfoDialog.html
    │   │       ├── eric6.E5Network.E5SslCertificatesInfoWidget.html
    │   │       ├── eric6.E5Network.E5SslErrorHandler.html
    │   │       ├── eric6.E5Network.E5SslInfoWidget.html
    │   │       ├── eric6.E5Network.E5SslUtilities.html
    │   │       ├── eric6.E5Network.E5TldExtractor.html
    │   │       ├── eric6.E5Network.E5UrlInfo.html
    │   │       ├── eric6.E5Network.E5XmlRpcClient.html
    │   │       ├── eric6.E5Network.__init__.html
    │   │       ├── eric6.E5XML.Config.html
    │   │       ├── eric6.E5XML.DebuggerPropertiesReader.html
    │   │       ├── eric6.E5XML.DebuggerPropertiesWriter.html
    │   │       ├── eric6.E5XML.HighlightingStylesReader.html
    │   │       ├── eric6.E5XML.HighlightingStylesWriter.html
    │   │       ├── eric6.E5XML.MultiProjectReader.html
    │   │       ├── eric6.E5XML.MultiProjectWriter.html
    │   │       ├── eric6.E5XML.PluginRepositoryReader.html
    │   │       ├── eric6.E5XML.ProjectReader.html
    │   │       ├── eric6.E5XML.ProjectWriter.html
    │   │       ├── eric6.E5XML.SessionReader.html
    │   │       ├── eric6.E5XML.SessionWriter.html
    │   │       ├── eric6.E5XML.ShortcutsReader.html
    │   │       ├── eric6.E5XML.ShortcutsWriter.html
    │   │       ├── eric6.E5XML.SpellCheckDictionariesReader.html
    │   │       ├── eric6.E5XML.TasksReader.html
    │   │       ├── eric6.E5XML.TasksWriter.html
    │   │       ├── eric6.E5XML.TemplatesReader.html
    │   │       ├── eric6.E5XML.TemplatesWriter.html
    │   │       ├── eric6.E5XML.UserProjectReader.html
    │   │       ├── eric6.E5XML.UserProjectWriter.html
    │   │       ├── eric6.E5XML.XMLStreamReaderBase.html
    │   │       ├── eric6.E5XML.XMLStreamWriterBase.html
    │   │       ├── eric6.eric6_api.html
    │   │       ├── eric6.eric6_browser.html
    │   │       ├── eric6.eric6_compare.html
    │   │       ├── eric6.eric6config.html
    │   │       ├── eric6.eric6_configure.html
    │   │       ├── eric6.eric6_diff.html
    │   │       ├── eric6.eric6_doc.html
    │   │       ├── eric6.eric6_editor.html
    │   │       ├── eric6.eric6_hexeditor.html
    │   │       ├── eric6.eric6.html
    │   │       ├── eric6.eric6_iconeditor.html
    │   │       ├── eric6.eric6_plugininstall.html
    │   │       ├── eric6.eric6_pluginrepository.html
    │   │       ├── eric6.eric6_pluginuninstall.html
    │   │       ├── eric6.eric6_qregexp.html
    │   │       ├── eric6.eric6_qregularexpression.html
    │   │       ├── eric6.eric6_re.html
    │   │       ├── eric6.eric6_shell.html
    │   │       ├── eric6.eric6_snap.html
    │   │       ├── eric6.eric6_sqlbrowser.html
    │   │       ├── eric6.eric6_tray.html
    │   │       ├── eric6.eric6_trpreviewer.html
    │   │       ├── eric6.eric6_uipreviewer.html
    │   │       ├── eric6.eric6_unittest.html
    │   │       ├── eric6.eric6_webbrowser.html
    │   │       ├── eric6.Globals.AppInfo.html
    │   │       ├── eric6.Globals.compatibility_fixes.html
    │   │       ├── eric6.Globals.E5ConfigParser.html
    │   │       ├── eric6.Globals.__init__.html
    │   │       ├── eric6.Graphics.ApplicationDiagramBuilder.html
    │   │       ├── eric6.Graphics.AssociationItem.html
    │   │       ├── eric6.Graphics.ClassItem.html
    │   │       ├── eric6.Graphics.GraphicsUtilities.html
    │   │       ├── eric6.Graphics.ImportsDiagramBuilder.html
    │   │       ├── eric6.Graphics.ModuleItem.html
    │   │       ├── eric6.Graphics.PackageDiagramBuilder.html
    │   │       ├── eric6.Graphics.PackageItem.html
    │   │       ├── eric6.Graphics.PixmapDiagram.html
    │   │       ├── eric6.Graphics.SvgDiagram.html
    │   │       ├── eric6.Graphics.UMLClassDiagramBuilder.html
    │   │       ├── eric6.Graphics.UMLDiagramBuilder.html
    │   │       ├── eric6.Graphics.UMLDialog.html
    │   │       ├── eric6.Graphics.UMLGraphicsView.html
    │   │       ├── eric6.Graphics.UMLItem.html
    │   │       ├── eric6.Graphics.UMLSceneSizeDialog.html
    │   │       ├── eric6.Helpviewer.AdBlock.AdBlockAccessHandler.html
    │   │       ├── eric6.Helpviewer.AdBlock.AdBlockBlockedNetworkReply.html
    │   │       ├── eric6.Helpviewer.AdBlock.AdBlockDialog.html
    │   │       ├── eric6.Helpviewer.AdBlock.AdBlockExceptionsDialog.html
    │   │       ├── eric6.Helpviewer.AdBlock.AdBlockIcon.html
    │   │       ├── eric6.Helpviewer.AdBlock.AdBlockManager.html
    │   │       ├── eric6.Helpviewer.AdBlock.AdBlockNetwork.html
    │   │       ├── eric6.Helpviewer.AdBlock.AdBlockPage.html
    │   │       ├── eric6.Helpviewer.AdBlock.AdBlockRule.html
    │   │       ├── eric6.Helpviewer.AdBlock.AdBlockSubscription.html
    │   │       ├── eric6.Helpviewer.AdBlock.AdBlockTreeWidget.html
    │   │       ├── eric6.Helpviewer.Bookmarks.AddBookmarkDialog.html
    │   │       ├── eric6.Helpviewer.Bookmarks.BookmarkNode.html
    │   │       ├── eric6.Helpviewer.Bookmarks.BookmarkPropertiesDialog.html
    │   │       ├── eric6.Helpviewer.Bookmarks.BookmarksDialog.html
    │   │       ├── eric6.Helpviewer.Bookmarks.BookmarksImportDialog.html
    │   │       ├── eric6.Helpviewer.Bookmarks.BookmarksImporters.BookmarksImporter.html
    │   │       ├── eric6.Helpviewer.Bookmarks.BookmarksImporters.ChromeImporter.html
    │   │       ├── eric6.Helpviewer.Bookmarks.BookmarksImporters.FirefoxImporter.html
    │   │       ├── eric6.Helpviewer.Bookmarks.BookmarksImporters.HtmlImporter.html
    │   │       ├── eric6.Helpviewer.Bookmarks.BookmarksImporters.IExplorerImporter.html
    │   │       ├── eric6.Helpviewer.Bookmarks.BookmarksImporters.__init__.html
    │   │       ├── eric6.Helpviewer.Bookmarks.BookmarksImporters.OperaImporter.html
    │   │       ├── eric6.Helpviewer.Bookmarks.BookmarksImporters.SafariImporter.html
    │   │       ├── eric6.Helpviewer.Bookmarks.BookmarksImporters.XbelImporter.html
    │   │       ├── eric6.Helpviewer.Bookmarks.BookmarksManager.html
    │   │       ├── eric6.Helpviewer.Bookmarks.BookmarksMenu.html
    │   │       ├── eric6.Helpviewer.Bookmarks.BookmarksModel.html
    │   │       ├── eric6.Helpviewer.Bookmarks.BookmarksToolBar.html
    │   │       ├── eric6.Helpviewer.Bookmarks.NsHtmlReader.html
    │   │       ├── eric6.Helpviewer.Bookmarks.NsHtmlWriter.html
    │   │       ├── eric6.Helpviewer.Bookmarks.XbelReader.html
    │   │       ├── eric6.Helpviewer.Bookmarks.XbelWriter.html
    │   │       ├── eric6.Helpviewer.ClosedTabsManager.html
    │   │       ├── eric6.Helpviewer.CookieJar.CookieDetailsDialog.html
    │   │       ├── eric6.Helpviewer.CookieJar.CookieExceptionsModel.html
    │   │       ├── eric6.Helpviewer.CookieJar.CookieJar.html
    │   │       ├── eric6.Helpviewer.CookieJar.CookieModel.html
    │   │       ├── eric6.Helpviewer.CookieJar.CookiesConfigurationDialog.html
    │   │       ├── eric6.Helpviewer.CookieJar.CookiesDialog.html
    │   │       ├── eric6.Helpviewer.CookieJar.CookiesExceptionsDialog.html
    │   │       ├── eric6.Helpviewer.Download.DownloadAskActionDialog.html
    │   │       ├── eric6.Helpviewer.Download.DownloadItem.html
    │   │       ├── eric6.Helpviewer.Download.DownloadManager.html
    │   │       ├── eric6.Helpviewer.Download.DownloadModel.html
    │   │       ├── eric6.Helpviewer.Download.DownloadUtilities.html
    │   │       ├── eric6.Helpviewer.FeaturePermissions.FeaturePermissionBar.html
    │   │       ├── eric6.Helpviewer.FeaturePermissions.FeaturePermissionManager.html
    │   │       ├── eric6.Helpviewer.FeaturePermissions.FeaturePermissionsDialog.html
    │   │       ├── eric6.Helpviewer.Feeds.FeedEditDialog.html
    │   │       ├── eric6.Helpviewer.Feeds.FeedsDialog.html
    │   │       ├── eric6.Helpviewer.Feeds.FeedsManager.html
    │   │       ├── eric6.Helpviewer.FlashCookieManager.FlashCookie.html
    │   │       ├── eric6.Helpviewer.FlashCookieManager.FlashCookieManagerDialog.html
    │   │       ├── eric6.Helpviewer.FlashCookieManager.FlashCookieManager.html
    │   │       ├── eric6.Helpviewer.FlashCookieManager.FlashCookieNotification.html
    │   │       ├── eric6.Helpviewer.FlashCookieManager.FlashCookieReader.html
    │   │       ├── eric6.Helpviewer.FlashCookieManager.FlashCookieUtilities.html
    │   │       ├── eric6.Helpviewer.GreaseMonkey.GreaseMonkeyAddScriptDialog.html
    │   │       ├── eric6.Helpviewer.GreaseMonkey.GreaseMonkeyConfiguration.GreaseMonkeyConfigurationDialog.html
    │   │       ├── eric6.Helpviewer.GreaseMonkey.GreaseMonkeyConfiguration.GreaseMonkeyConfigurationListDelegate.html
    │   │       ├── eric6.Helpviewer.GreaseMonkey.GreaseMonkeyConfiguration.GreaseMonkeyConfigurationListWidget.html
    │   │       ├── eric6.Helpviewer.GreaseMonkey.GreaseMonkeyConfiguration.GreaseMonkeyConfigurationScriptInfoDialog.html
    │   │       ├── eric6.Helpviewer.GreaseMonkey.GreaseMonkeyDownloader.html
    │   │       ├── eric6.Helpviewer.GreaseMonkey.GreaseMonkeyJavaScript.html
    │   │       ├── eric6.Helpviewer.GreaseMonkey.GreaseMonkeyManager.html
    │   │       ├── eric6.Helpviewer.GreaseMonkey.GreaseMonkeyScript.html
    │   │       ├── eric6.Helpviewer.GreaseMonkey.GreaseMonkeyUrlMatcher.html
    │   │       ├── eric6.Helpviewer.HelpBrowserWV.html
    │   │       ├── eric6.Helpviewer.HelpClearPrivateDataDialog.html
    │   │       ├── eric6.Helpviewer.HelpDocsInstaller.html
    │   │       ├── eric6.Helpviewer.HelpIndexWidget.html
    │   │       ├── eric6.Helpviewer.HelpInspector.html
    │   │       ├── eric6.Helpviewer.HelpLanguagesDialog.html
    │   │       ├── eric6.Helpviewer.HelpSearchWidget.html
    │   │       ├── eric6.Helpviewer.HelpSnap.html
    │   │       ├── eric6.Helpviewer.HelpTabBar.html
    │   │       ├── eric6.Helpviewer.HelpTabWidget.html
    │   │       ├── eric6.Helpviewer.HelpTocWidget.html
    │   │       ├── eric6.Helpviewer.HelpTopicDialog.html
    │   │       ├── eric6.Helpviewer.HelpUtilities.html
    │   │       ├── eric6.Helpviewer.HelpWebSearchWidget.html
    │   │       ├── eric6.Helpviewer.HelpWindow.html
    │   │       ├── eric6.Helpviewer.History.HistoryCompleter.html
    │   │       ├── eric6.Helpviewer.History.HistoryDialog.html
    │   │       ├── eric6.Helpviewer.History.HistoryFilterModel.html
    │   │       ├── eric6.Helpviewer.History.HistoryManager.html
    │   │       ├── eric6.Helpviewer.History.HistoryMenu.html
    │   │       ├── eric6.Helpviewer.History.HistoryModel.html
    │   │       ├── eric6.Helpviewer.History.HistoryTreeModel.html
    │   │       ├── eric6.Helpviewer.JavaScriptResources.html
    │   │       ├── eric6.Helpviewer.Network.AboutAccessHandler.html
    │   │       ├── eric6.Helpviewer.Network.EmptyNetworkReply.html
    │   │       ├── eric6.Helpviewer.Network.EricAccessHandler.html
    │   │       ├── eric6.Helpviewer.Network.FileAccessHandler.html
    │   │       ├── eric6.Helpviewer.Network.FileReply.html
    │   │       ├── eric6.Helpviewer.Network.FollowRedirectReply.html
    │   │       ├── eric6.Helpviewer.Network.FtpAccessHandler.html
    │   │       ├── eric6.Helpviewer.Network.FtpReply.html
    │   │       ├── eric6.Helpviewer.Network.NetworkAccessManager.html
    │   │       ├── eric6.Helpviewer.Network.NetworkAccessManagerProxy.html
    │   │       ├── eric6.Helpviewer.Network.NetworkDiskCache.html
    │   │       ├── eric6.Helpviewer.Network.NetworkProtocolUnknownErrorReply.html
    │   │       ├── eric6.Helpviewer.Network.NetworkReply.html
    │   │       ├── eric6.Helpviewer.Network.NoCacheHostsDialog.html
    │   │       ├── eric6.Helpviewer.Network.QtHelpAccessHandler.html
    │   │       ├── eric6.Helpviewer.Network.SchemeAccessHandler.html
    │   │       ├── eric6.Helpviewer.Network.SendRefererWhitelistDialog.html
    │   │       ├── eric6.Helpviewer.OfflineStorage.OfflineStorageConfigDialog.html
    │   │       ├── eric6.Helpviewer.OfflineStorage.WebDatabasesDialog.html
    │   │       ├── eric6.Helpviewer.OfflineStorage.WebDatabasesModel.html
    │   │       ├── eric6.Helpviewer.OpenSearch.OpenSearchDialog.html
    │   │       ├── eric6.Helpviewer.OpenSearch.OpenSearchEditDialog.html
    │   │       ├── eric6.Helpviewer.OpenSearch.OpenSearchEngineAction.html
    │   │       ├── eric6.Helpviewer.OpenSearch.OpenSearchEngine.html
    │   │       ├── eric6.Helpviewer.OpenSearch.OpenSearchEngineModel.html
    │   │       ├── eric6.Helpviewer.OpenSearch.OpenSearchManager.html
    │   │       ├── eric6.Helpviewer.OpenSearch.OpenSearchReader.html
    │   │       ├── eric6.Helpviewer.OpenSearch.OpenSearchWriter.html
    │   │       ├── eric6.Helpviewer.PageScreenDialog.html
    │   │       ├── eric6.Helpviewer.Passwords.LoginForm.html
    │   │       ├── eric6.Helpviewer.Passwords.PasswordManager.html
    │   │       ├── eric6.Helpviewer.Passwords.PasswordModel.html
    │   │       ├── eric6.Helpviewer.Passwords.PasswordReader.html
    │   │       ├── eric6.Helpviewer.Passwords.PasswordsDialog.html
    │   │       ├── eric6.Helpviewer.Passwords.PasswordWriter.html
    │   │       ├── eric6.Helpviewer.PersonalInformationManager.PersonalDataDialog.html
    │   │       ├── eric6.Helpviewer.PersonalInformationManager.PersonalInformationManager.html
    │   │       ├── eric6.Helpviewer.QtHelpDocumentationDialog.html
    │   │       ├── eric6.Helpviewer.QtHelpDocumentationSelectionDialog.html
    │   │       ├── eric6.Helpviewer.QtHelpFiltersDialog.html
    │   │       ├── eric6.Helpviewer.SearchWidget.html
    │   │       ├── eric6.Helpviewer.SiteInfo.SiteInfoDialog.html
    │   │       ├── eric6.Helpviewer.SpeedDial.Page.html
    │   │       ├── eric6.Helpviewer.SpeedDial.PageThumbnailer.html
    │   │       ├── eric6.Helpviewer.SpeedDial.SpeedDial.html
    │   │       ├── eric6.Helpviewer.SpeedDial.SpeedDialReader.html
    │   │       ├── eric6.Helpviewer.SpeedDial.SpeedDialWriter.html
    │   │       ├── eric6.Helpviewer.Sync.DirectorySyncHandler.html
    │   │       ├── eric6.Helpviewer.Sync.FtpSyncHandler.html
    │   │       ├── eric6.Helpviewer.Sync.SyncAssistantDialog.html
    │   │       ├── eric6.Helpviewer.Sync.SyncCheckPage.html
    │   │       ├── eric6.Helpviewer.Sync.SyncDataPage.html
    │   │       ├── eric6.Helpviewer.Sync.SyncDirectorySettingsPage.html
    │   │       ├── eric6.Helpviewer.Sync.SyncEncryptionPage.html
    │   │       ├── eric6.Helpviewer.Sync.SyncFtpSettingsPage.html
    │   │       ├── eric6.Helpviewer.Sync.SyncGlobals.html
    │   │       ├── eric6.Helpviewer.Sync.SyncHandler.html
    │   │       ├── eric6.Helpviewer.Sync.SyncHostTypePage.html
    │   │       ├── eric6.Helpviewer.Sync.SyncManager.html
    │   │       ├── eric6.Helpviewer.UrlBar.BookmarkActionSelectionDialog.html
    │   │       ├── eric6.Helpviewer.UrlBar.BookmarkInfoDialog.html
    │   │       ├── eric6.Helpviewer.UrlBar.FavIconLabel.html
    │   │       ├── eric6.Helpviewer.UrlBar.SslLabel.html
    │   │       ├── eric6.Helpviewer.UrlBar.StackedUrlBar.html
    │   │       ├── eric6.Helpviewer.UrlBar.UrlBar.html
    │   │       ├── eric6.Helpviewer.UserAgent.UserAgentManager.html
    │   │       ├── eric6.Helpviewer.UserAgent.UserAgentMenu.html
    │   │       ├── eric6.Helpviewer.UserAgent.UserAgentModel.html
    │   │       ├── eric6.Helpviewer.UserAgent.UserAgentReader.html
    │   │       ├── eric6.Helpviewer.UserAgent.UserAgentsDialog.html
    │   │       ├── eric6.Helpviewer.UserAgent.UserAgentWriter.html
    │   │       ├── eric6.Helpviewer.VirusTotal.VirusTotalApi.html
    │   │       ├── eric6.Helpviewer.VirusTotal.VirusTotalDomainReportDialog.html
    │   │       ├── eric6.Helpviewer.VirusTotal.VirusTotalIpReportDialog.html
    │   │       ├── eric6.Helpviewer.VirusTotal.VirusTotalWhoisDialog.html
    │   │       ├── eric6.Helpviewer.WebPlugins.ClickToFlash.ClickToFlash.html
    │   │       ├── eric6.Helpviewer.WebPlugins.ClickToFlash.ClickToFlashPlugin.html
    │   │       ├── eric6.Helpviewer.WebPlugins.ClickToFlash.ClickToFlashWhitelistDialog.html
    │   │       ├── eric6.Helpviewer.WebPlugins.WebPluginFactory.html
    │   │       ├── eric6.Helpviewer.WebPlugins.WebPluginInterface.html
    │   │       ├── eric6.Helpviewer.ZoomManager.ZoomManager.html
    │   │       ├── eric6.Helpviewer.ZoomManager.ZoomValuesDialog.html
    │   │       ├── eric6.Helpviewer.ZoomManager.ZoomValuesModel.html
    │   │       ├── eric6.HexEdit.HexEditChunks.html
    │   │       ├── eric6.HexEdit.HexEditGotoWidget.html
    │   │       ├── eric6.HexEdit.HexEditMainWindow.html
    │   │       ├── eric6.HexEdit.HexEditSearchReplaceWidget.html
    │   │       ├── eric6.HexEdit.HexEditUndoStack.html
    │   │       ├── eric6.HexEdit.HexEditWidget.html
    │   │       ├── eric6.IconEditor.IconEditorGrid.html
    │   │       ├── eric6.IconEditor.IconEditorPalette.html
    │   │       ├── eric6.IconEditor.IconEditorWindow.html
    │   │       ├── eric6.IconEditor.IconSizeDialog.html
    │   │       ├── eric6.install-debugclients.html
    │   │       ├── eric6.install.html
    │   │       ├── eric6.install-i18n.html
    │   │       ├── eric6.MultiProject.AddProjectDialog.html
    │   │       ├── eric6.MultiProject.MultiProjectBrowser.html
    │   │       ├── eric6.MultiProject.MultiProject.html
    │   │       ├── eric6.MultiProject.PropertiesDialog.html
    │   │       ├── eric6.Network.IRC.IrcChannelEditDialog.html
    │   │       ├── eric6.Network.IRC.IrcChannelWidget.html
    │   │       ├── eric6.Network.IRC.IrcIdentitiesEditDialog.html
    │   │       ├── eric6.Network.IRC.IrcMessageEdit.html
    │   │       ├── eric6.Network.IRC.IrcNetworkEditDialog.html
    │   │       ├── eric6.Network.IRC.IrcNetworkListDialog.html
    │   │       ├── eric6.Network.IRC.IrcNetworkManager.html
    │   │       ├── eric6.Network.IRC.IrcNetworkWidget.html
    │   │       ├── eric6.Network.IRC.IrcServerEditDialog.html
    │   │       ├── eric6.Network.IRC.IrcUtilities.html
    │   │       ├── eric6.Network.IRC.IrcWidget.html
    │   │       ├── eric6.patch_modpython.html
    │   │       ├── eric6.PluginManager.PluginDetailsDialog.html
    │   │       ├── eric6.PluginManager.PluginExceptions.html
    │   │       ├── eric6.PluginManager.PluginInfoDialog.html
    │   │       ├── eric6.PluginManager.PluginInstallDialog.html
    │   │       ├── eric6.PluginManager.PluginManager.html
    │   │       ├── eric6.PluginManager.PluginRepositoryDialog.html
    │   │       ├── eric6.PluginManager.PluginUninstallDialog.html
    │   │       ├── eric6.Plugins.AboutPlugin.AboutDialog.html
    │   │       ├── eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleAddBuiltinIgnoreDialog.html
    │   │       ├── eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleCheckerDialog.html
    │   │       ├── eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleChecker.html
    │   │       ├── eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleCodeSelectionDialog.html
    │   │       ├── eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleFixer.html
    │   │       ├── eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleStatisticsDialog.html
    │   │       ├── eric6.Plugins.CheckerPlugins.CodeStyleChecker.ComplexityChecker.html
    │   │       ├── eric6.Plugins.CheckerPlugins.CodeStyleChecker.DocStyleChecker.html
    │   │       ├── eric6.Plugins.CheckerPlugins.CodeStyleChecker.mccabe.html
    │   │       ├── eric6.Plugins.CheckerPlugins.CodeStyleChecker.MiscellaneousChecker.html
    │   │       ├── eric6.Plugins.CheckerPlugins.CodeStyleChecker.NamingStyleChecker.html
    │   │       ├── eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.html
    │   │       ├── eric6.Plugins.CheckerPlugins.CodeStyleChecker.translations.html
    │   │       ├── eric6.Plugins.CheckerPlugins.SyntaxChecker.jsCheckSyntax.html
    │   │       ├── eric6.Plugins.CheckerPlugins.SyntaxChecker.SyntaxCheckerDialog.html
    │   │       ├── eric6.Plugins.CheckerPlugins.SyntaxChecker.SyntaxCheck.html
    │   │       ├── eric6.Plugins.CheckerPlugins.SyntaxChecker.SyntaxCheckService.html
    │   │       ├── eric6.Plugins.CheckerPlugins.Tabnanny.TabnannyDialog.html
    │   │       ├── eric6.Plugins.CheckerPlugins.Tabnanny.Tabnanny.html
    │   │       ├── eric6.Plugins.DocumentationPlugins.Ericapi.EricapiConfigDialog.html
    │   │       ├── eric6.Plugins.DocumentationPlugins.Ericapi.EricapiExecDialog.html
    │   │       ├── eric6.Plugins.DocumentationPlugins.Ericdoc.EricdocConfigDialog.html
    │   │       ├── eric6.Plugins.DocumentationPlugins.Ericdoc.EricdocExecDialog.html
    │   │       ├── eric6.Plugins.PluginAbout.html
    │   │       ├── eric6.Plugins.PluginCodeStyleChecker.html
    │   │       ├── eric6.Plugins.PluginEricapi.html
    │   │       ├── eric6.Plugins.PluginEricdoc.html
    │   │       ├── eric6.Plugins.PluginSyntaxChecker.html
    │   │       ├── eric6.Plugins.PluginTabnanny.html
    │   │       ├── eric6.Plugins.PluginVcsMercurial.html
    │   │       ├── eric6.Plugins.PluginVcsPySvn.html
    │   │       ├── eric6.Plugins.PluginVcsSubversion.html
    │   │       ├── eric6.Plugins.PluginVmListspace.html
    │   │       ├── eric6.Plugins.PluginVmTabview.html
    │   │       ├── eric6.Plugins.PluginWizardE5MessageBox.html
    │   │       ├── eric6.Plugins.PluginWizardPyRegExp.html
    │   │       ├── eric6.Plugins.PluginWizardQColorDialog.html
    │   │       ├── eric6.Plugins.PluginWizardQFileDialog.html
    │   │       ├── eric6.Plugins.PluginWizardQFontDialog.html
    │   │       ├── eric6.Plugins.PluginWizardQInputDialog.html
    │   │       ├── eric6.Plugins.PluginWizardQMessageBox.html
    │   │       ├── eric6.Plugins.PluginWizardQRegExp.html
    │   │       ├── eric6.Plugins.PluginWizardQRegularExpression.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.Config.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.ConfigurationPage.MercurialPage.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.FetchExtension.fetch.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.FetchExtension.HgFetchDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.FetchExtension.ProjectHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.GpgExtension.gpg.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.GpgExtension.HgGpgSignaturesDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.GpgExtension.HgGpgSignDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.GpgExtension.ProjectHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgAddSubrepositoryDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgAnnotateDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgArchiveDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgBackoutDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgBookmarkDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgBookmarkRenameDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgBookmarksInOutDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgBookmarksListDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgBranchInputDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgBundleDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgClient.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgClientPromptDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgCommandDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgCommitDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgConflictsListDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgCopyDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgDiffDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgDiffGenerator.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgDiffHighlighter.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgExportDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgExtension.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgExtensionProjectBrowserHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgExtensionProjectHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgGraftDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.hg.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgImportDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgLogBrowserDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgMergeDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgNewProjectOptionsDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgOptionsDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgPhaseDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgRemoveSubrepositoriesDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgRepoConfigDataDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgRevisionSelectionDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgRevisionsSelectionDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgServeDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgStatusDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgStatusMonitorThread.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgSummaryDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgTagBranchListDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgTagDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgUserConfigDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgUserConfigHostFingerprintDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgUserConfigHostMinimumProtocolDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HgUtilities.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HisteditExtension.HgHisteditCommitEditor.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HisteditExtension.HgHisteditConfigDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HisteditExtension.HgHisteditEditor.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HisteditExtension.HgHisteditPlanEditor.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HisteditExtension.histedit.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.HisteditExtension.ProjectHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.LargefilesExtension.__init__.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.LargefilesExtension.largefiles.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.LargefilesExtension.LfConvertDataDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.LargefilesExtension.LfRevisionsInputDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.LargefilesExtension.ProjectBrowserHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.LargefilesExtension.ProjectHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.ProjectBrowserHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.ProjectHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.PurgeExtension.HgPurgeListDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.PurgeExtension.ProjectHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.PurgeExtension.purge.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.HgQueuesDefineGuardsDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.HgQueuesFoldDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.HgQueuesGuardsSelectionDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.HgQueuesHeaderDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.HgQueuesListAllGuardsDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.HgQueuesListDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.HgQueuesListGuardsDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.HgQueuesNewPatchDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.HgQueuesQueueManagementDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.HgQueuesRenamePatchDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.ProjectHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.queues.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.RebaseExtension.HgRebaseDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.RebaseExtension.ProjectHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.RebaseExtension.rebase.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.ShelveExtension.HgShelveBrowserDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.ShelveExtension.HgShelveDataDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.ShelveExtension.HgShelvesSelectionDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.ShelveExtension.HgUnshelveDataDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.ShelveExtension.ProjectBrowserHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.ShelveExtension.ProjectHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.ShelveExtension.shelve.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.StripExtension.HgStripDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.StripExtension.ProjectHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsMercurial.StripExtension.strip.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.Config.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.ConfigurationPage.SubversionPage.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.ProjectBrowserHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.ProjectHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.subversion.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnBlameDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnChangeListsDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnCommandDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnCommitDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnConst.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnCopyDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnDialogMixin.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnDiffDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnDiffHighlighter.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnInfoDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnLogBrowserDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnLoginDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnMergeDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnNewProjectOptionsDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnOptionsDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnPropDelDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnPropListDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnPropSetDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnRelocateDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnRepoBrowserDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnRevisionSelectionDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnStatusDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnStatusMonitorThread.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnSwitchDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnTagBranchListDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnTagDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnUrlSelectionDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsPySvn.SvnUtilities.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.Config.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.ConfigurationPage.SubversionPage.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.ProjectBrowserHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.ProjectHelper.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.subversion.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnBlameDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnChangeListsDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnCommandDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnCommitDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnCopyDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnDiffDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnDiffHighlighter.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnLogBrowserDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnMergeDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnNewProjectOptionsDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnOptionsDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnPropListDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnPropSetDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnRelocateDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnRepoBrowserDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnRevisionSelectionDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnStatusDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnStatusMonitorThread.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnSwitchDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnTagBranchListDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnTagDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnUrlSelectionDialog.html
    │   │       ├── eric6.Plugins.VcsPlugins.vcsSubversion.SvnUtilities.html
    │   │       ├── eric6.Plugins.ViewManagerPlugins.Listspace.Listspace.html
    │   │       ├── eric6.Plugins.ViewManagerPlugins.Tabview.Tabview.html
    │   │       ├── eric6.Plugins.WizardPlugins.ColorDialogWizard.ColorDialogWizardDialog.html
    │   │       ├── eric6.Plugins.WizardPlugins.E5MessageBoxWizard.E5MessageBoxWizardDialog.html
    │   │       ├── eric6.Plugins.WizardPlugins.FileDialogWizard.FileDialogWizardDialog.html
    │   │       ├── eric6.Plugins.WizardPlugins.FontDialogWizard.FontDialogWizardDialog.html
    │   │       ├── eric6.Plugins.WizardPlugins.InputDialogWizard.InputDialogWizardDialog.html
    │   │       ├── eric6.Plugins.WizardPlugins.MessageBoxWizard.MessageBoxWizardDialog.html
    │   │       ├── eric6.Plugins.WizardPlugins.PyRegExpWizard.PyRegExpWizardCharactersDialog.html
    │   │       ├── eric6.Plugins.WizardPlugins.PyRegExpWizard.PyRegExpWizardDialog.html
    │   │       ├── eric6.Plugins.WizardPlugins.PyRegExpWizard.PyRegExpWizardRepeatDialog.html
    │   │       ├── eric6.Plugins.WizardPlugins.QRegExpWizard.QRegExpWizardCharactersDialog.html
    │   │       ├── eric6.Plugins.WizardPlugins.QRegExpWizard.QRegExpWizardDialog.html
    │   │       ├── eric6.Plugins.WizardPlugins.QRegExpWizard.QRegExpWizardRepeatDialog.html
    │   │       ├── eric6.Plugins.WizardPlugins.QRegularExpressionWizard.QRegularExpressionWizardCharactersDialog.html
    │   │       ├── eric6.Plugins.WizardPlugins.QRegularExpressionWizard.QRegularExpressionWizardDialog.html
    │   │       ├── eric6.Plugins.WizardPlugins.QRegularExpressionWizard.QRegularExpressionWizardRepeatDialog.html
    │   │       ├── eric6.Plugins.WizardPlugins.QRegularExpressionWizard.QRegularExpressionWizardServer.html
    │   │       ├── eric6.Preferences.ConfigurationDialog.html
    │   │       ├── eric6.Preferences.ConfigurationPages.ApplicationPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.ConfigurationPageBase.html
    │   │       ├── eric6.Preferences.ConfigurationPages.CooperationPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.CorbaPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.DebuggerGeneralPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.DebuggerPython3Page.html
    │   │       ├── eric6.Preferences.ConfigurationPages.DebuggerPythonPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.DiffColoursPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EditorAPIsPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EditorAutocompletionPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EditorAutocompletionQScintillaPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EditorCalltipsPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EditorCalltipsQScintillaPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EditorExportersPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EditorFilePage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EditorGeneralPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EditorHighlightersPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EditorHighlightingStylesPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EditorKeywordsPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EditorMouseClickHandlerPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EditorPropertiesPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EditorSearchPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EditorSpellCheckingPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EditorStylesPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EditorSyntaxPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EditorTypingPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.EmailPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.GraphicsPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.HelpAppearancePage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.HelpDocumentationPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.HelpFlashCookieManagerPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.HelpInterfacePage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.HelpViewersPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.HelpVirusTotalPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.HelpWebBrowserPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.HexEditorPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.IconsPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.IconsPreviewDialog.html
    │   │       ├── eric6.Preferences.ConfigurationPages.InterfacePage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.IrcPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.LogViewerPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.MasterPasswordEntryDialog.html
    │   │       ├── eric6.Preferences.ConfigurationPages.MimeTypesPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.MultiProjectPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.NetworkPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.NotificationsPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.PluginManagerPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.PrinterPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.ProjectBrowserPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.ProjectPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.PythonPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.QtPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.SecurityPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.ShellPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.TasksPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.TemplatesPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.TrayStarterPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.VcsPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.ViewmanagerPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.WebBrowserAppearancePage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.WebBrowserPage.html
    │   │       ├── eric6.Preferences.ConfigurationPages.WebBrowserSpellCheckingPage.html
    │   │       ├── eric6.Preferences.__init__.html
    │   │       ├── eric6.Preferences.MouseClickDialog.html
    │   │       ├── eric6.Preferences.PreferencesLexer.html
    │   │       ├── eric6.Preferences.ProgramsDialog.html
    │   │       ├── eric6.Preferences.ShortcutDialog.html
    │   │       ├── eric6.Preferences.ShortcutsDialog.html
    │   │       ├── eric6.Preferences.Shortcuts.html
    │   │       ├── eric6.Preferences.ToolConfigurationDialog.html
    │   │       ├── eric6.Preferences.ToolGroupConfigurationDialog.html
    │   │       ├── eric6.Preferences.ViewProfileDialog.html
    │   │       ├── eric6.Project.AddDirectoryDialog.html
    │   │       ├── eric6.Project.AddFileDialog.html
    │   │       ├── eric6.Project.AddFoundFilesDialog.html
    │   │       ├── eric6.Project.AddLanguageDialog.html
    │   │       ├── eric6.Project.CreateDialogCodeDialog.html
    │   │       ├── eric6.Project.DebuggerPropertiesDialog.html
    │   │       ├── eric6.Project.FiletypeAssociationDialog.html
    │   │       ├── eric6.Project.LexerAssociationDialog.html
    │   │       ├── eric6.Project.NewDialogClassDialog.html
    │   │       ├── eric6.Project.NewPythonPackageDialog.html
    │   │       ├── eric6.Project.ProjectBaseBrowser.html
    │   │       ├── eric6.Project.ProjectBrowserFlags.html
    │   │       ├── eric6.Project.ProjectBrowser.html
    │   │       ├── eric6.Project.ProjectBrowserModel.html
    │   │       ├── eric6.Project.ProjectBrowserSortFilterProxyModel.html
    │   │       ├── eric6.Project.ProjectFormsBrowser.html
    │   │       ├── eric6.Project.Project.html
    │   │       ├── eric6.Project.ProjectInterfacesBrowser.html
    │   │       ├── eric6.Project.ProjectOthersBrowser.html
    │   │       ├── eric6.Project.ProjectResourcesBrowser.html
    │   │       ├── eric6.Project.ProjectSourcesBrowser.html
    │   │       ├── eric6.Project.ProjectTranslationsBrowser.html
    │   │       ├── eric6.Project.PropertiesDialog.html
    │   │       ├── eric6.Project.QuickFindFileDialog.html
    │   │       ├── eric6.Project.SpellingPropertiesDialog.html
    │   │       ├── eric6.Project.TranslationPropertiesDialog.html
    │   │       ├── eric6.Project.UserPropertiesDialog.html
    │   │       ├── eric6.PyUnit.UnittestDialog.html
    │   │       ├── eric6.QScintilla.APIsManager.html
    │   │       ├── eric6.QScintilla.EditorAssembly.html
    │   │       ├── eric6.QScintilla.EditorButtonsWidget.html
    │   │       ├── eric6.QScintilla.Editor.html
    │   │       ├── eric6.QScintilla.EditorMarkerMap.html
    │   │       ├── eric6.QScintilla.Exporters.ExporterBase.html
    │   │       ├── eric6.QScintilla.Exporters.ExporterHTML.html
    │   │       ├── eric6.QScintilla.Exporters.ExporterODT.html
    │   │       ├── eric6.QScintilla.Exporters.ExporterPDF.html
    │   │       ├── eric6.QScintilla.Exporters.ExporterRTF.html
    │   │       ├── eric6.QScintilla.Exporters.ExporterTEX.html
    │   │       ├── eric6.QScintilla.Exporters.__init__.html
    │   │       ├── eric6.QScintilla.GotoDialog.html
    │   │       ├── eric6.QScintilla.KeySequenceTranslator.html
    │   │       ├── eric6.QScintilla.Lexers.__init__.html
    │   │       ├── eric6.QScintilla.Lexers.LexerBash.html
    │   │       ├── eric6.QScintilla.Lexers.LexerBatch.html
    │   │       ├── eric6.QScintilla.Lexers.LexerCMake.html
    │   │       ├── eric6.QScintilla.Lexers.LexerCoffeeScript.html
    │   │       ├── eric6.QScintilla.Lexers.LexerContainer.html
    │   │       ├── eric6.QScintilla.Lexers.LexerCPP.html
    │   │       ├── eric6.QScintilla.Lexers.LexerCSharp.html
    │   │       ├── eric6.QScintilla.Lexers.LexerCSS.html
    │   │       ├── eric6.QScintilla.Lexers.LexerD.html
    │   │       ├── eric6.QScintilla.Lexers.LexerDiff.html
    │   │       ├── eric6.QScintilla.Lexers.LexerFortran77.html
    │   │       ├── eric6.QScintilla.Lexers.LexerFortran.html
    │   │       ├── eric6.QScintilla.Lexers.Lexer.html
    │   │       ├── eric6.QScintilla.Lexers.LexerHTML.html
    │   │       ├── eric6.QScintilla.Lexers.LexerIDL.html
    │   │       ├── eric6.QScintilla.Lexers.LexerJava.html
    │   │       ├── eric6.QScintilla.Lexers.LexerJavaScript.html
    │   │       ├── eric6.QScintilla.Lexers.LexerJSON.html
    │   │       ├── eric6.QScintilla.Lexers.LexerLua.html
    │   │       ├── eric6.QScintilla.Lexers.LexerMakefile.html
    │   │       ├── eric6.QScintilla.Lexers.LexerMarkdown.html
    │   │       ├── eric6.QScintilla.Lexers.LexerMatlab.html
    │   │       ├── eric6.QScintilla.Lexers.LexerOctave.html
    │   │       ├── eric6.QScintilla.Lexers.LexerPascal.html
    │   │       ├── eric6.QScintilla.Lexers.LexerPerl.html
    │   │       ├── eric6.QScintilla.Lexers.LexerPO.html
    │   │       ├── eric6.QScintilla.Lexers.LexerPostScript.html
    │   │       ├── eric6.QScintilla.Lexers.LexerPOV.html
    │   │       ├── eric6.QScintilla.Lexers.LexerProperties.html
    │   │       ├── eric6.QScintilla.Lexers.LexerPygments.html
    │   │       ├── eric6.QScintilla.Lexers.LexerPython.html
    │   │       ├── eric6.QScintilla.Lexers.LexerQSS.html
    │   │       ├── eric6.QScintilla.Lexers.LexerRuby.html
    │   │       ├── eric6.QScintilla.Lexers.LexerSQL.html
    │   │       ├── eric6.QScintilla.Lexers.LexerTCL.html
    │   │       ├── eric6.QScintilla.Lexers.LexerTeX.html
    │   │       ├── eric6.QScintilla.Lexers.LexerVHDL.html
    │   │       ├── eric6.QScintilla.Lexers.LexerXML.html
    │   │       ├── eric6.QScintilla.Lexers.LexerYAML.html
    │   │       ├── eric6.QScintilla.MarkupProviders.HtmlProvider.html
    │   │       ├── eric6.QScintilla.MarkupProviders.HyperlinkMarkupDialog.html
    │   │       ├── eric6.QScintilla.MarkupProviders.ImageMarkupDialog.html
    │   │       ├── eric6.QScintilla.MarkupProviders.__init__.html
    │   │       ├── eric6.QScintilla.MarkupProviders.MarkdownProvider.html
    │   │       ├── eric6.QScintilla.MarkupProviders.MarkupBase.html
    │   │       ├── eric6.QScintilla.MarkupProviders.RestructuredTextProvider.html
    │   │       ├── eric6.QScintilla.MiniEditor.html
    │   │       ├── eric6.QScintilla.Printer.html
    │   │       ├── eric6.QScintilla.QsciScintillaCompat.html
    │   │       ├── eric6.QScintilla.SearchReplaceWidget.html
    │   │       ├── eric6.QScintilla.ShellHistoryDialog.html
    │   │       ├── eric6.QScintilla.Shell.html
    │   │       ├── eric6.QScintilla.ShellWindow.html
    │   │       ├── eric6.QScintilla.SortOptionsDialog.html
    │   │       ├── eric6.QScintilla.SpellChecker.html
    │   │       ├── eric6.QScintilla.SpellCheckingDialog.html
    │   │       ├── eric6.QScintilla.SpellingDictionaryEditDialog.html
    │   │       ├── eric6.QScintilla.TypingCompleters.CompleterBase.html
    │   │       ├── eric6.QScintilla.TypingCompleters.CompleterPython.html
    │   │       ├── eric6.QScintilla.TypingCompleters.CompleterRuby.html
    │   │       ├── eric6.QScintilla.TypingCompleters.__init__.html
    │   │       ├── eric6.QScintilla.ZoomDialog.html
    │   │       ├── eric6.Snapshot.SnapshotFreehandGrabber.html
    │   │       ├── eric6.Snapshot.SnapshotPreview.html
    │   │       ├── eric6.Snapshot.SnapshotRegionGrabber.html
    │   │       ├── eric6.Snapshot.SnapshotTimer.html
    │   │       ├── eric6.Snapshot.SnapWidget.html
    │   │       ├── eric6.SqlBrowser.SqlBrowser.html
    │   │       ├── eric6.SqlBrowser.SqlBrowserWidget.html
    │   │       ├── eric6.SqlBrowser.SqlConnectionDialog.html
    │   │       ├── eric6.SqlBrowser.SqlConnectionWidget.html
    │   │       ├── eric6.Tasks.TaskFilterConfigDialog.html
    │   │       ├── eric6.Tasks.TaskFilter.html
    │   │       ├── eric6.Tasks.Task.html
    │   │       ├── eric6.Tasks.TaskPropertiesDialog.html
    │   │       ├── eric6.Tasks.TaskViewer.html
    │   │       ├── eric6.Templates.TemplateMultipleVariablesDialog.html
    │   │       ├── eric6.Templates.TemplatePropertiesDialog.html
    │   │       ├── eric6.Templates.TemplateSingleVariableDialog.html
    │   │       ├── eric6.Templates.TemplateViewer.html
    │   │       ├── eric6.Toolbox.PyQt4ImportHook.html
    │   │       ├── eric6.Toolbox.SingleApplication.html
    │   │       ├── eric6.Toolbox.Startup.html
    │   │       ├── eric6.Tools.TrayStarter.html
    │   │       ├── eric6.Tools.TRPreviewer.html
    │   │       ├── eric6.Tools.TRSingleApplication.html
    │   │       ├── eric6.Tools.UIPreviewer.html
    │   │       ├── eric6.UI.AuthenticationDialog.html
    │   │       ├── eric6.UI.Browser.html
    │   │       ├── eric6.UI.BrowserModel.html
    │   │       ├── eric6.UI.BrowserSortFilterProxyModel.html
    │   │       ├── eric6.UI.ClearPrivateDataDialog.html
    │   │       ├── eric6.UI.CompareDialog.html
    │   │       ├── eric6.UI.Config.html
    │   │       ├── eric6.UI.DeleteFilesConfirmationDialog.html
    │   │       ├── eric6.UI.DiffDialog.html
    │   │       ├── eric6.UI.DiffHighlighter.html
    │   │       ├── eric6.UI.EmailDialog.html
    │   │       ├── eric6.UI.ErrorLogDialog.html
    │   │       ├── eric6.UI.FindFileDialog.html
    │   │       ├── eric6.UI.FindFileNameDialog.html
    │   │       ├── eric6.UI.Info.html
    │   │       ├── eric6.UI.LogView.html
    │   │       ├── eric6.UI.NotificationWidget.html
    │   │       ├── eric6.UI.NumbersWidget.html
    │   │       ├── eric6.UI.PixmapCache.html
    │   │       ├── eric6.UI.Previewer.html
    │   │       ├── eric6.UI.Previewers.PreviewerHTML.html
    │   │       ├── eric6.UI.Previewers.PreviewerQSS.html
    │   │       ├── eric6.UI.SearchWidget.html
    │   │       ├── eric6.UI.SplashScreen.html
    │   │       ├── eric6.UI.SymbolsWidget.html
    │   │       ├── eric6.UI.UserInterface.html
    │   │       ├── eric6.uninstall-debugclients.html
    │   │       ├── eric6.uninstall.html
    │   │       ├── eric6.Utilities.AutoSaver.html
    │   │       ├── eric6.Utilities.BackgroundClient.html
    │   │       ├── eric6.Utilities.BackgroundService.html
    │   │       ├── eric6.Utilities.binplistlib.html
    │   │       ├── eric6.Utilities.ClassBrowsers.ClbrBaseClasses.html
    │   │       ├── eric6.Utilities.ClassBrowsers.idlclbr.html
    │   │       ├── eric6.Utilities.ClassBrowsers.__init__.html
    │   │       ├── eric6.Utilities.ClassBrowsers.jsclbr.html
    │   │       ├── eric6.Utilities.ClassBrowsers.pyclbr.html
    │   │       ├── eric6.Utilities.ClassBrowsers.rbclbr.html
    │   │       ├── eric6.Utilities.crypto.__init__.html
    │   │       ├── eric6.Utilities.crypto.py3AES.html
    │   │       ├── eric6.Utilities.crypto.py3PBKDF2.html
    │   │       ├── eric6.Utilities.FtpUtilities.html
    │   │       ├── eric6.Utilities.__init__.html
    │   │       ├── eric6.Utilities.MimeTypes.html
    │   │       ├── eric6.Utilities.ModuleParser.html
    │   │       ├── eric6.Utilities.MouseUtilities.html
    │   │       ├── eric6.Utilities.PasswordChecker.html
    │   │       ├── eric6.Utilities.PySideImporter.html
    │   │       ├── eric6.Utilities.uic.html
    │   │       ├── eric6.VCS.CommandOptionsDialog.html
    │   │       ├── eric6.VCS.__init__.html
    │   │       ├── eric6.VCS.ProjectBrowserHelper.html
    │   │       ├── eric6.VCS.ProjectHelper.html
    │   │       ├── eric6.VCS.RepositoryInfoDialog.html
    │   │       ├── eric6.VCS.StatusMonitorLed.html
    │   │       ├── eric6.VCS.StatusMonitorThread.html
    │   │       ├── eric6.VCS.VersionControl.html
    │   │       ├── eric6.ViewManager.BookmarkedFilesDialog.html
    │   │       ├── eric6.ViewManager.__init__.html
    │   │       ├── eric6.ViewManager.ViewManager.html
    │   │       ├── eric6.WebBrowser.AdBlock.AdBlockDialog.html
    │   │       ├── eric6.WebBrowser.AdBlock.AdBlockExceptionsDialog.html
    │   │       ├── eric6.WebBrowser.AdBlock.AdBlockIcon.html
    │   │       ├── eric6.WebBrowser.AdBlock.AdBlockManager.html
    │   │       ├── eric6.WebBrowser.AdBlock.AdBlockPage.html
    │   │       ├── eric6.WebBrowser.AdBlock.AdBlockRule.html
    │   │       ├── eric6.WebBrowser.AdBlock.AdBlockSubscription.html
    │   │       ├── eric6.WebBrowser.AdBlock.AdBlockTreeWidget.html
    │   │       ├── eric6.WebBrowser.AdBlock.AdBlockUrlInterceptor.html
    │   │       ├── eric6.WebBrowser.AutoScroll.AutoScroller.html
    │   │       ├── eric6.WebBrowser.AutoScroll.FrameScroller.html
    │   │       ├── eric6.WebBrowser.Bookmarks.AddBookmarkDialog.html
    │   │       ├── eric6.WebBrowser.Bookmarks.BookmarkNode.html
    │   │       ├── eric6.WebBrowser.Bookmarks.BookmarkPropertiesDialog.html
    │   │       ├── eric6.WebBrowser.Bookmarks.BookmarksDialog.html
    │   │       ├── eric6.WebBrowser.Bookmarks.BookmarksImportDialog.html
    │   │       ├── eric6.WebBrowser.Bookmarks.BookmarksImporters.BookmarksImporter.html
    │   │       ├── eric6.WebBrowser.Bookmarks.BookmarksImporters.ChromeImporter.html
    │   │       ├── eric6.WebBrowser.Bookmarks.BookmarksImporters.FirefoxImporter.html
    │   │       ├── eric6.WebBrowser.Bookmarks.BookmarksImporters.HtmlImporter.html
    │   │       ├── eric6.WebBrowser.Bookmarks.BookmarksImporters.IExplorerImporter.html
    │   │       ├── eric6.WebBrowser.Bookmarks.BookmarksImporters.__init__.html
    │   │       ├── eric6.WebBrowser.Bookmarks.BookmarksImporters.OperaImporter.html
    │   │       ├── eric6.WebBrowser.Bookmarks.BookmarksImporters.SafariImporter.html
    │   │       ├── eric6.WebBrowser.Bookmarks.BookmarksImporters.XbelImporter.html
    │   │       ├── eric6.WebBrowser.Bookmarks.BookmarksManager.html
    │   │       ├── eric6.WebBrowser.Bookmarks.BookmarksMenu.html
    │   │       ├── eric6.WebBrowser.Bookmarks.BookmarksModel.html
    │   │       ├── eric6.WebBrowser.Bookmarks.BookmarksToolBar.html
    │   │       ├── eric6.WebBrowser.Bookmarks.NsHtmlReader.html
    │   │       ├── eric6.WebBrowser.Bookmarks.NsHtmlWriter.html
    │   │       ├── eric6.WebBrowser.Bookmarks.XbelReader.html
    │   │       ├── eric6.WebBrowser.Bookmarks.XbelWriter.html
    │   │       ├── eric6.WebBrowser.ClosedTabsManager.html
    │   │       ├── eric6.WebBrowser.CookieJar.CookieExceptionsModel.html
    │   │       ├── eric6.WebBrowser.CookieJar.CookieJar.html
    │   │       ├── eric6.WebBrowser.CookieJar.CookiesConfigurationDialog.html
    │   │       ├── eric6.WebBrowser.CookieJar.CookiesDialog.html
    │   │       ├── eric6.WebBrowser.CookieJar.CookiesExceptionsDialog.html
    │   │       ├── eric6.WebBrowser.Download.DownloadAskActionDialog.html
    │   │       ├── eric6.WebBrowser.Download.DownloadItem.html
    │   │       ├── eric6.WebBrowser.Download.DownloadManager.html
    │   │       ├── eric6.WebBrowser.Download.DownloadModel.html
    │   │       ├── eric6.WebBrowser.Download.DownloadUtilities.html
    │   │       ├── eric6.WebBrowser.FeaturePermissions.FeaturePermissionBar.html
    │   │       ├── eric6.WebBrowser.FeaturePermissions.FeaturePermissionManager.html
    │   │       ├── eric6.WebBrowser.FeaturePermissions.FeaturePermissionsDialog.html
    │   │       ├── eric6.WebBrowser.Feeds.FeedEditDialog.html
    │   │       ├── eric6.WebBrowser.Feeds.FeedsDialog.html
    │   │       ├── eric6.WebBrowser.Feeds.FeedsManager.html
    │   │       ├── eric6.WebBrowser.FlashCookieManager.FlashCookie.html
    │   │       ├── eric6.WebBrowser.FlashCookieManager.FlashCookieManagerDialog.html
    │   │       ├── eric6.WebBrowser.FlashCookieManager.FlashCookieManager.html
    │   │       ├── eric6.WebBrowser.FlashCookieManager.FlashCookieNotification.html
    │   │       ├── eric6.WebBrowser.FlashCookieManager.FlashCookieReader.html
    │   │       ├── eric6.WebBrowser.FlashCookieManager.FlashCookieUtilities.html
    │   │       ├── eric6.WebBrowser.GreaseMonkey.GreaseMonkeyAddScriptDialog.html
    │   │       ├── eric6.WebBrowser.GreaseMonkey.GreaseMonkeyConfiguration.GreaseMonkeyConfigurationDialog.html
    │   │       ├── eric6.WebBrowser.GreaseMonkey.GreaseMonkeyConfiguration.GreaseMonkeyConfigurationListDelegate.html
    │   │       ├── eric6.WebBrowser.GreaseMonkey.GreaseMonkeyConfiguration.GreaseMonkeyConfigurationListWidget.html
    │   │       ├── eric6.WebBrowser.GreaseMonkey.GreaseMonkeyConfiguration.GreaseMonkeyConfigurationScriptInfoDialog.html
    │   │       ├── eric6.WebBrowser.GreaseMonkey.GreaseMonkeyDownloader.html
    │   │       ├── eric6.WebBrowser.GreaseMonkey.GreaseMonkeyJavaScript.html
    │   │       ├── eric6.WebBrowser.GreaseMonkey.GreaseMonkeyManager.html
    │   │       ├── eric6.WebBrowser.GreaseMonkey.GreaseMonkeyScript.html
    │   │       ├── eric6.WebBrowser.History.HistoryCompleter.html
    │   │       ├── eric6.WebBrowser.History.HistoryDialog.html
    │   │       ├── eric6.WebBrowser.History.HistoryFilterModel.html
    │   │       ├── eric6.WebBrowser.History.HistoryManager.html
    │   │       ├── eric6.WebBrowser.History.HistoryMenu.html
    │   │       ├── eric6.WebBrowser.History.HistoryModel.html
    │   │       ├── eric6.WebBrowser.History.HistoryTreeModel.html
    │   │       ├── eric6.WebBrowser.ImageSearch.ImageSearchEngine.html
    │   │       ├── eric6.WebBrowser.JavaScript.ExternalJsObject.html
    │   │       ├── eric6.WebBrowser.JavaScript.PasswordManagerJsObject.html
    │   │       ├── eric6.WebBrowser.JavaScript.StartPageJsObject.html
    │   │       ├── eric6.WebBrowser.Navigation.NavigationBar.html
    │   │       ├── eric6.WebBrowser.Navigation.NavigationContainer.html
    │   │       ├── eric6.WebBrowser.Navigation.ReloadStopButton.html
    │   │       ├── eric6.WebBrowser.Network.EricSchemeHandler.html
    │   │       ├── eric6.WebBrowser.Network.NetworkManager.html
    │   │       ├── eric6.WebBrowser.Network.NetworkUrlInterceptor.html
    │   │       ├── eric6.WebBrowser.Network.QtHelpSchemeHandler.html
    │   │       ├── eric6.WebBrowser.Network.SendRefererWhitelistDialog.html
    │   │       ├── eric6.WebBrowser.Network.SslErrorExceptionsDialog.html
    │   │       ├── eric6.WebBrowser.Network.UrlInterceptor.html
    │   │       ├── eric6.WebBrowser.OpenSearch.OpenSearchDialog.html
    │   │       ├── eric6.WebBrowser.OpenSearch.OpenSearchEditDialog.html
    │   │       ├── eric6.WebBrowser.OpenSearch.OpenSearchEngineAction.html
    │   │       ├── eric6.WebBrowser.OpenSearch.OpenSearchEngine.html
    │   │       ├── eric6.WebBrowser.OpenSearch.OpenSearchEngineModel.html
    │   │       ├── eric6.WebBrowser.OpenSearch.OpenSearchManager.html
    │   │       ├── eric6.WebBrowser.OpenSearch.OpenSearchReader.html
    │   │       ├── eric6.WebBrowser.OpenSearch.OpenSearchWriter.html
    │   │       ├── eric6.WebBrowser.PageScreenDialog.html
    │   │       ├── eric6.WebBrowser.Passwords.LoginForm.html
    │   │       ├── eric6.WebBrowser.Passwords.PasswordManager.html
    │   │       ├── eric6.WebBrowser.Passwords.PasswordModel.html
    │   │       ├── eric6.WebBrowser.Passwords.PasswordReader.html
    │   │       ├── eric6.WebBrowser.Passwords.PasswordsDialog.html
    │   │       ├── eric6.WebBrowser.Passwords.PasswordWriter.html
    │   │       ├── eric6.WebBrowser.PersonalInformationManager.PersonalDataDialog.html
    │   │       ├── eric6.WebBrowser.PersonalInformationManager.PersonalInformationManager.html
    │   │       ├── eric6.WebBrowser.QtHelp.HelpDocsInstaller.html
    │   │       ├── eric6.WebBrowser.QtHelp.HelpIndexWidget.html
    │   │       ├── eric6.WebBrowser.QtHelp.HelpSearchWidget.html
    │   │       ├── eric6.WebBrowser.QtHelp.HelpTocWidget.html
    │   │       ├── eric6.WebBrowser.QtHelp.HelpTopicDialog.html
    │   │       ├── eric6.WebBrowser.QtHelp.QtHelpDocumentationDialog.html
    │   │       ├── eric6.WebBrowser.QtHelp.QtHelpDocumentationSelectionDialog.html
    │   │       ├── eric6.WebBrowser.QtHelp.QtHelpFiltersDialog.html
    │   │       ├── eric6.WebBrowser.SafeBrowsing.__init__.html
    │   │       ├── eric6.WebBrowser.SafeBrowsing.SafeBrowsingAPIClient.html
    │   │       ├── eric6.WebBrowser.SafeBrowsing.SafeBrowsingCache.html
    │   │       ├── eric6.WebBrowser.SafeBrowsing.SafeBrowsingDialog.html
    │   │       ├── eric6.WebBrowser.SafeBrowsing.SafeBrowsingInfoWidget.html
    │   │       ├── eric6.WebBrowser.SafeBrowsing.SafeBrowsingLabel.html
    │   │       ├── eric6.WebBrowser.SafeBrowsing.SafeBrowsingManager.html
    │   │       ├── eric6.WebBrowser.SafeBrowsing.SafeBrowsingUrl.html
    │   │       ├── eric6.WebBrowser.SafeBrowsing.SafeBrowsingUtilities.html
    │   │       ├── eric6.WebBrowser.SearchWidget.html
    │   │       ├── eric6.WebBrowser.Session.SessionManagerDialog.html
    │   │       ├── eric6.WebBrowser.Session.SessionManager.html
    │   │       ├── eric6.WebBrowser.SiteInfo.SiteInfoDialog.html
    │   │       ├── eric6.WebBrowser.SpeedDial.Page.html
    │   │       ├── eric6.WebBrowser.SpeedDial.PageThumbnailer.html
    │   │       ├── eric6.WebBrowser.SpeedDial.SpeedDial.html
    │   │       ├── eric6.WebBrowser.SpeedDial.SpeedDialReader.html
    │   │       ├── eric6.WebBrowser.SpeedDial.SpeedDialWriter.html
    │   │       ├── eric6.WebBrowser.SpellCheck.ManageDictionariesDialog.html
    │   │       ├── eric6.WebBrowser.StatusBar.ImagesIcon.html
    │   │       ├── eric6.WebBrowser.StatusBar.JavaScriptIcon.html
    │   │       ├── eric6.WebBrowser.StatusBar.JavaScriptSettingsDialog.html
    │   │       ├── eric6.WebBrowser.StatusBar.StatusBarIcon.html
    │   │       ├── eric6.WebBrowser.Sync.DirectorySyncHandler.html
    │   │       ├── eric6.WebBrowser.Sync.FtpSyncHandler.html
    │   │       ├── eric6.WebBrowser.Sync.SyncAssistantDialog.html
    │   │       ├── eric6.WebBrowser.Sync.SyncCheckPage.html
    │   │       ├── eric6.WebBrowser.Sync.SyncDataPage.html
    │   │       ├── eric6.WebBrowser.Sync.SyncDirectorySettingsPage.html
    │   │       ├── eric6.WebBrowser.Sync.SyncEncryptionPage.html
    │   │       ├── eric6.WebBrowser.Sync.SyncFtpSettingsPage.html
    │   │       ├── eric6.WebBrowser.Sync.SyncGlobals.html
    │   │       ├── eric6.WebBrowser.Sync.SyncHandler.html
    │   │       ├── eric6.WebBrowser.Sync.SyncHostTypePage.html
    │   │       ├── eric6.WebBrowser.Sync.SyncManager.html
    │   │       ├── eric6.WebBrowser.TabManager.TabManagerWidget.html
    │   │       ├── eric6.WebBrowser.Tools.DelayedFileWatcher.html
    │   │       ├── eric6.WebBrowser.Tools.FilePrinter.html
    │   │       ├── eric6.WebBrowser.Tools.PrintToPdfDialog.html
    │   │       ├── eric6.WebBrowser.Tools.Scripts.html
    │   │       ├── eric6.WebBrowser.Tools.WebBrowserTools.html
    │   │       ├── eric6.WebBrowser.Tools.WebHitTestResult.html
    │   │       ├── eric6.WebBrowser.Tools.WebIconDialog.html
    │   │       ├── eric6.WebBrowser.Tools.WebIconLoader.html
    │   │       ├── eric6.WebBrowser.Tools.WebIconProvider.html
    │   │       ├── eric6.WebBrowser.UrlBar.BookmarkActionSelectionDialog.html
    │   │       ├── eric6.WebBrowser.UrlBar.BookmarkInfoDialog.html
    │   │       ├── eric6.WebBrowser.UrlBar.FavIconLabel.html
    │   │       ├── eric6.WebBrowser.UrlBar.StackedUrlBar.html
    │   │       ├── eric6.WebBrowser.UrlBar.UrlBar.html
    │   │       ├── eric6.WebBrowser.UserAgent.UserAgentManager.html
    │   │       ├── eric6.WebBrowser.UserAgent.UserAgentMenu.html
    │   │       ├── eric6.WebBrowser.UserAgent.UserAgentModel.html
    │   │       ├── eric6.WebBrowser.UserAgent.UserAgentReader.html
    │   │       ├── eric6.WebBrowser.UserAgent.UserAgentsDialog.html
    │   │       ├── eric6.WebBrowser.UserAgent.UserAgentWriter.html
    │   │       ├── eric6.WebBrowser.VirusTotal.VirusTotalApi.html
    │   │       ├── eric6.WebBrowser.VirusTotal.VirusTotalDomainReportDialog.html
    │   │       ├── eric6.WebBrowser.VirusTotal.VirusTotalIpReportDialog.html
    │   │       ├── eric6.WebBrowser.VirusTotal.VirusTotalWhoisDialog.html
    │   │       ├── eric6.WebBrowser.WebBrowserClearPrivateDataDialog.html
    │   │       ├── eric6.WebBrowser.WebBrowserJavaScriptConsole.html
    │   │       ├── eric6.WebBrowser.WebBrowserLanguagesDialog.html
    │   │       ├── eric6.WebBrowser.WebBrowserPage.html
    │   │       ├── eric6.WebBrowser.WebBrowserSnap.html
    │   │       ├── eric6.WebBrowser.WebBrowserTabBar.html
    │   │       ├── eric6.WebBrowser.WebBrowserTabWidget.html
    │   │       ├── eric6.WebBrowser.WebBrowserView.html
    │   │       ├── eric6.WebBrowser.WebBrowserWebSearchWidget.html
    │   │       ├── eric6.WebBrowser.WebBrowserWindow.html
    │   │       ├── eric6.WebBrowser.WebInspector.html
    │   │       ├── eric6.WebBrowser.ZoomManager.ZoomManager.html
    │   │       ├── eric6.WebBrowser.ZoomManager.ZoomValuesDialog.html
    │   │       ├── eric6.WebBrowser.ZoomManager.ZoomValuesModel.html
    │   │       ├── index-eric6.Cooperation.html
    │   │       ├── index-eric6.DataViews.html
    │   │       ├── index-eric6.DebugClients.html
    │   │       ├── index-eric6.DebugClients.Python.html
    │   │       ├── index-eric6.Debugger.html
    │   │       ├── index-eric6.DocumentationTools.html
    │   │       ├── index-eric6.E5Graphics.html
    │   │       ├── index-eric6.E5Gui.html
    │   │       ├── index-eric6.E5Network.data.html
    │   │       ├── index-eric6.E5Network.html
    │   │       ├── index-eric6.E5XML.html
    │   │       ├── index-eric6.Globals.html
    │   │       ├── index-eric6.Graphics.html
    │   │       ├── index-eric6.Helpviewer.AdBlock.html
    │   │       ├── index-eric6.Helpviewer.Bookmarks.BookmarksImporters.html
    │   │       ├── index-eric6.Helpviewer.Bookmarks.html
    │   │       ├── index-eric6.Helpviewer.CookieJar.html
    │   │       ├── index-eric6.Helpviewer.data.html
    │   │       ├── index-eric6.Helpviewer.Download.html
    │   │       ├── index-eric6.Helpviewer.FeaturePermissions.html
    │   │       ├── index-eric6.Helpviewer.Feeds.html
    │   │       ├── index-eric6.Helpviewer.FlashCookieManager.html
    │   │       ├── index-eric6.Helpviewer.GreaseMonkey.GreaseMonkeyConfiguration.html
    │   │       ├── index-eric6.Helpviewer.GreaseMonkey.html
    │   │       ├── index-eric6.Helpviewer.History.html
    │   │       ├── index-eric6.Helpviewer.html
    │   │       ├── index-eric6.Helpviewer.Network.html
    │   │       ├── index-eric6.Helpviewer.OfflineStorage.html
    │   │       ├── index-eric6.Helpviewer.OpenSearch.DefaultSearchEngines.html
    │   │       ├── index-eric6.Helpviewer.OpenSearch.html
    │   │       ├── index-eric6.Helpviewer.Passwords.html
    │   │       ├── index-eric6.Helpviewer.PersonalInformationManager.html
    │   │       ├── index-eric6.Helpviewer.SiteInfo.html
    │   │       ├── index-eric6.Helpviewer.SpeedDial.html
    │   │       ├── index-eric6.Helpviewer.Sync.html
    │   │       ├── index-eric6.Helpviewer.UrlBar.html
    │   │       ├── index-eric6.Helpviewer.UserAgent.html
    │   │       ├── index-eric6.Helpviewer.VirusTotal.html
    │   │       ├── index-eric6.Helpviewer.WebPlugins.ClickToFlash.html
    │   │       ├── index-eric6.Helpviewer.WebPlugins.html
    │   │       ├── index-eric6.Helpviewer.ZoomManager.html
    │   │       ├── index-eric6.HexEdit.html
    │   │       ├── index-eric6.html
    │   │       ├── index-eric6.IconEditor.cursors.html
    │   │       ├── index-eric6.IconEditor.html
    │   │       ├── index-eric6.MultiProject.html
    │   │       ├── index-eric6.Network.html
    │   │       ├── index-eric6.Network.IRC.html
    │   │       ├── index-eric6.PluginManager.html
    │   │       ├── index-eric6.Plugins.AboutPlugin.html
    │   │       ├── index-eric6.Plugins.CheckerPlugins.CodeStyleChecker.html
    │   │       ├── index-eric6.Plugins.CheckerPlugins.html
    │   │       ├── index-eric6.Plugins.CheckerPlugins.SyntaxChecker.html
    │   │       ├── index-eric6.Plugins.CheckerPlugins.Tabnanny.html
    │   │       ├── index-eric6.Plugins.DocumentationPlugins.Ericapi.html
    │   │       ├── index-eric6.Plugins.DocumentationPlugins.Ericdoc.html
    │   │       ├── index-eric6.Plugins.DocumentationPlugins.html
    │   │       ├── index-eric6.Plugins.html
    │   │       ├── index-eric6.Plugins.VcsPlugins.html
    │   │       ├── index-eric6.Plugins.VcsPlugins.vcsMercurial.ConfigurationPage.html
    │   │       ├── index-eric6.Plugins.VcsPlugins.vcsMercurial.FetchExtension.html
    │   │       ├── index-eric6.Plugins.VcsPlugins.vcsMercurial.GpgExtension.html
    │   │       ├── index-eric6.Plugins.VcsPlugins.vcsMercurial.HisteditExtension.html
    │   │       ├── index-eric6.Plugins.VcsPlugins.vcsMercurial.html
    │   │       ├── index-eric6.Plugins.VcsPlugins.vcsMercurial.LargefilesExtension.html
    │   │       ├── index-eric6.Plugins.VcsPlugins.vcsMercurial.PurgeExtension.html
    │   │       ├── index-eric6.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.html
    │   │       ├── index-eric6.Plugins.VcsPlugins.vcsMercurial.RebaseExtension.html
    │   │       ├── index-eric6.Plugins.VcsPlugins.vcsMercurial.ShelveExtension.html
    │   │       ├── index-eric6.Plugins.VcsPlugins.vcsMercurial.StripExtension.html
    │   │       ├── index-eric6.Plugins.VcsPlugins.vcsPySvn.ConfigurationPage.html
    │   │       ├── index-eric6.Plugins.VcsPlugins.vcsPySvn.html
    │   │       ├── index-eric6.Plugins.VcsPlugins.vcsSubversion.ConfigurationPage.html
    │   │       ├── index-eric6.Plugins.VcsPlugins.vcsSubversion.html
    │   │       ├── index-eric6.Plugins.ViewManagerPlugins.html
    │   │       ├── index-eric6.Plugins.ViewManagerPlugins.Listspace.html
    │   │       ├── index-eric6.Plugins.ViewManagerPlugins.Tabview.html
    │   │       ├── index-eric6.Plugins.WizardPlugins.ColorDialogWizard.html
    │   │       ├── index-eric6.Plugins.WizardPlugins.E5MessageBoxWizard.html
    │   │       ├── index-eric6.Plugins.WizardPlugins.FileDialogWizard.html
    │   │       ├── index-eric6.Plugins.WizardPlugins.FontDialogWizard.html
    │   │       ├── index-eric6.Plugins.WizardPlugins.html
    │   │       ├── index-eric6.Plugins.WizardPlugins.InputDialogWizard.html
    │   │       ├── index-eric6.Plugins.WizardPlugins.MessageBoxWizard.html
    │   │       ├── index-eric6.Plugins.WizardPlugins.PyRegExpWizard.html
    │   │       ├── index-eric6.Plugins.WizardPlugins.QRegExpWizard.html
    │   │       ├── index-eric6.Plugins.WizardPlugins.QRegularExpressionWizard.html
    │   │       ├── index-eric6.Preferences.ConfigurationPages.html
    │   │       ├── index-eric6.Preferences.html
    │   │       ├── index-eric6.Project.html
    │   │       ├── index-eric6.PyUnit.html
    │   │       ├── index-eric6.QScintilla.Exporters.html
    │   │       ├── index-eric6.QScintilla.html
    │   │       ├── index-eric6.QScintilla.Lexers.html
    │   │       ├── index-eric6.QScintilla.MarkupProviders.html
    │   │       ├── index-eric6.QScintilla.TypingCompleters.html
    │   │       ├── index-eric6.Snapshot.html
    │   │       ├── index-eric6.SqlBrowser.html
    │   │       ├── index-eric6.Tasks.html
    │   │       ├── index-eric6.Templates.html
    │   │       ├── index-eric6.Toolbox.html
    │   │       ├── index-eric6.Tools.html
    │   │       ├── index-eric6.UI.html
    │   │       ├── index-eric6.UI.Previewers.html
    │   │       ├── index-eric6.Utilities.ClassBrowsers.html
    │   │       ├── index-eric6.Utilities.crypto.html
    │   │       ├── index-eric6.Utilities.html
    │   │       ├── index-eric6.VCS.html
    │   │       ├── index-eric6.ViewManager.html
    │   │       ├── index-eric6.WebBrowser.AdBlock.html
    │   │       ├── index-eric6.WebBrowser.AutoScroll.html
    │   │       ├── index-eric6.WebBrowser.Bookmarks.BookmarksImporters.html
    │   │       ├── index-eric6.WebBrowser.Bookmarks.html
    │   │       ├── index-eric6.WebBrowser.CookieJar.html
    │   │       ├── index-eric6.WebBrowser.data.html
    │   │       ├── index-eric6.WebBrowser.Download.html
    │   │       ├── index-eric6.WebBrowser.FeaturePermissions.html
    │   │       ├── index-eric6.WebBrowser.Feeds.html
    │   │       ├── index-eric6.WebBrowser.FlashCookieManager.html
    │   │       ├── index-eric6.WebBrowser.GreaseMonkey.GreaseMonkeyConfiguration.html
    │   │       ├── index-eric6.WebBrowser.GreaseMonkey.html
    │   │       ├── index-eric6.WebBrowser.History.html
    │   │       ├── index-eric6.WebBrowser.html
    │   │       ├── index-eric6.WebBrowser.ImageSearch.html
    │   │       ├── index-eric6.WebBrowser.JavaScript.html
    │   │       ├── index-eric6.WebBrowser.Navigation.html
    │   │       ├── index-eric6.WebBrowser.Network.html
    │   │       ├── index-eric6.WebBrowser.OpenSearch.DefaultSearchEngines.html
    │   │       ├── index-eric6.WebBrowser.OpenSearch.html
    │   │       ├── index-eric6.WebBrowser.Passwords.html
    │   │       ├── index-eric6.WebBrowser.PersonalInformationManager.html
    │   │       ├── index-eric6.WebBrowser.QtHelp.html
    │   │       ├── index-eric6.WebBrowser.SafeBrowsing.html
    │   │       ├── index-eric6.WebBrowser.Session.html
    │   │       ├── index-eric6.WebBrowser.SiteInfo.html
    │   │       ├── index-eric6.WebBrowser.SpeedDial.html
    │   │       ├── index-eric6.WebBrowser.SpellCheck.html
    │   │       ├── index-eric6.WebBrowser.StatusBar.html
    │   │       ├── index-eric6.WebBrowser.Sync.html
    │   │       ├── index-eric6.WebBrowser.TabManager.html
    │   │       ├── index-eric6.WebBrowser.Tools.html
    │   │       ├── index-eric6.WebBrowser.UrlBar.html
    │   │       ├── index-eric6.WebBrowser.UserAgent.html
    │   │       ├── index-eric6.WebBrowser.VirusTotal.html
    │   │       ├── index-eric6.WebBrowser.ZoomManager.html
    │   │       └── index.html
    │   ├── DocumentationTools
    │   │   ├── APIGenerator.py
    │   │   ├── Config.py
    │   │   ├── IndexGenerator.py
    │   │   ├── __init__.py
    │   │   ├── ModuleDocumentor.py
    │   │   ├── QtHelpGenerator.py
    │   │   ├── TemplatesListsStyleCSS.py
    │   │   └── TemplatesListsStyle.py
    │   ├── DTDs
    │   │   ├── Basic-4.0.dtd
    │   │   ├── Basic-5.0.dtd
    │   │   ├── DebuggerProperties-3.9.dtd
    │   │   ├── HighlightingStyles-4.3.dtd
    │   │   ├── MultiProject-4.2.dtd
    │   │   ├── MultiProject-5.0.dtd
    │   │   ├── MultiProject-5.1.dtd
    │   │   ├── PluginRepository-4.1.dtd
    │   │   ├── PluginRepository-4.2.dtd
    │   │   ├── Project-4.6.dtd
    │   │   ├── Project-5.0.dtd
    │   │   ├── Project-5.1.dtd
    │   │   ├── Session-4.3.dtd
    │   │   ├── Session-4.4.dtd
    │   │   ├── Session-5.0.dtd
    │   │   ├── Shortcuts-3.6.dtd
    │   │   ├── Tasks-4.2.dtd
    │   │   ├── Tasks-5.0.dtd
    │   │   ├── Tasks-5.1.dtd
    │   │   ├── Tasks-6.0.dtd
    │   │   ├── Templates-4.0.dtd
    │   │   └── UserProject-4.0.dtd
    │   ├── E5Graphics
    │   │   ├── E5ArrowItem.py
    │   │   ├── E5GraphicsView.py
    │   │   └── __init__.py
    │   ├── E5Gui
    │   │   ├── E5Action.py
    │   │   ├── E5AnimatedWidget.py
    │   │   ├── E5Application.py
    │   │   ├── E5ClickableLabel.py
    │   │   ├── E5ComboBox.py
    │   │   ├── E5Completers.py
    │   │   ├── E5ErrorMessageFilterDialog.py
    │   │   ├── E5ErrorMessageFilterDialog.ui
    │   │   ├── E5ErrorMessage.py
    │   │   ├── E5FileDialog.py
    │   │   ├── E5GenericDiffHighlighter.py
    │   │   ├── E5Led.py
    │   │   ├── E5LineEditButton.py
    │   │   ├── E5LineEdit.py
    │   │   ├── E5ListSelectionDialog.py
    │   │   ├── E5ListSelectionDialog.ui
    │   │   ├── E5ListView.py
    │   │   ├── E5MainWindow.py
    │   │   ├── E5MapWidget.py
    │   │   ├── E5MessageBox.py
    │   │   ├── E5ModelMenu.py
    │   │   ├── E5ModelToolBar.py
    │   │   ├── E5PassivePopup.py
    │   │   ├── E5PasswordMeter.py
    │   │   ├── E5PathPicker.py
    │   │   ├── E5ProgressDialog.py
    │   │   ├── E5SideBar.py
    │   │   ├── E5SimpleHelpDialog.py
    │   │   ├── E5SimpleHelpDialog.ui
    │   │   ├── E5SingleApplication.py
    │   │   ├── E5SqueezeLabels.py
    │   │   ├── E5StringListEditWidget.py
    │   │   ├── E5StringListEditWidget.ui
    │   │   ├── E5TableView.py
    │   │   ├── E5TabWidget.py
    │   │   ├── E5TextEditSearchWidget.py
    │   │   ├── E5TextEditSearchWidget.ui
    │   │   ├── E5TextSpinBox.py
    │   │   ├── E5ToolBarDialog.py
    │   │   ├── E5ToolBarDialog.ui
    │   │   ├── E5ToolBarManager.py
    │   │   ├── E5ToolBox.py
    │   │   ├── E5ToolButton.py
    │   │   ├── E5TreeSortFilterProxyModel.py
    │   │   ├── E5TreeView.py
    │   │   ├── E5TreeWidget.py
    │   │   ├── E5ZoomWidget.py
    │   │   ├── E5ZoomWidget.ui
    │   │   └── __init__.py
    │   ├── E5Network
    │   │   ├── data
    │   │   │   ├── effective_tld_names.dat
    │   │   │   ├── __init__.py
    │   │   │   ├── test_psl.txt
    │   │   │   ├── tld.qrc
    │   │   │   └── tld_rc.py
    │   │   ├── E5Ftp.py
    │   │   ├── E5GoogleMail.py
    │   │   ├── E5NetworkHeaderDetailsDialog.py
    │   │   ├── E5NetworkHeaderDetailsDialog.ui
    │   │   ├── E5NetworkIcon.py
    │   │   ├── E5NetworkMonitor.py
    │   │   ├── E5NetworkMonitor.ui
    │   │   ├── E5NetworkProxyFactory.py
    │   │   ├── E5RFC6266.py
    │   │   ├── E5SslCertificatesDialog.py
    │   │   ├── E5SslCertificatesDialog.ui
    │   │   ├── E5SslCertificatesInfoDialog.py
    │   │   ├── E5SslCertificatesInfoDialog.ui
    │   │   ├── E5SslCertificatesInfoWidget.py
    │   │   ├── E5SslCertificatesInfoWidget.ui
    │   │   ├── E5SslErrorHandler.py
    │   │   ├── E5SslInfoWidget.py
    │   │   ├── E5SslUtilities.py
    │   │   ├── E5TldExtractor.py
    │   │   ├── E5UrlInfo.py
    │   │   ├── E5XmlRpcClient.py
    │   │   └── __init__.py
    │   ├── E5XML
    │   │   ├── Config.py
    │   │   ├── DebuggerPropertiesReader.py
    │   │   ├── DebuggerPropertiesWriter.py
    │   │   ├── HighlightingStylesReader.py
    │   │   ├── HighlightingStylesWriter.py
    │   │   ├── __init__.py
    │   │   ├── MultiProjectReader.py
    │   │   ├── MultiProjectWriter.py
    │   │   ├── PluginRepositoryReader.py
    │   │   ├── ProjectReader.py
    │   │   ├── ProjectWriter.py
    │   │   ├── SessionReader.py
    │   │   ├── SessionWriter.py
    │   │   ├── ShortcutsReader.py
    │   │   ├── ShortcutsWriter.py
    │   │   ├── SpellCheckDictionariesReader.py
    │   │   ├── TasksReader.py
    │   │   ├── TasksWriter.py
    │   │   ├── TemplatesReader.py
    │   │   ├── TemplatesWriter.py
    │   │   ├── UserProjectReader.py
    │   │   ├── UserProjectWriter.py
    │   │   ├── XMLStreamReaderBase.py
    │   │   └── XMLStreamWriterBase.py
    │   ├── eric6_api.py
    │   ├── eric6.appdata.xml
    │   ├── eric6_browser.desktop
    │   ├── eric6_browser.py
    │   ├── eric6_browser.pyw
    │   ├── eric6_compare.py
    │   ├── eric6_compare.pyw
    │   ├── eric6config.linux
    │   ├── eric6_configure.py
    │   ├── eric6_configure.pyw
    │   ├── eric6.desktop
    │   ├── eric6_diff.py
    │   ├── eric6_diff.pyw
    │   ├── eric6_doc.py
    │   ├── eric6.e4p
    │   ├── eric6_editor.py
    │   ├── eric6_editor.pyw
    │   ├── eric6_hexeditor.py
    │   ├── eric6_hexeditor.pyw
    │   ├── eric6_iconeditor.py
    │   ├── eric6_iconeditor.pyw
    │   ├── eric6_plugininstall.py
    │   ├── eric6_plugininstall.pyw
    │   ├── eric6_pluginrepository.py
    │   ├── eric6_pluginrepository.pyw
    │   ├── eric6_pluginuninstall.py
    │   ├── eric6_pluginuninstall.pyw
    │   ├── eric6.py
    │   ├── eric6.pyw
    │   ├── eric6_qregexp.py
    │   ├── eric6_qregexp.pyw
    │   ├── eric6_qregularexpression.py
    │   ├── eric6_qregularexpression.pyw
    │   ├── eric6_re.py
    │   ├── eric6_re.pyw
    │   ├── eric6_shell.py
    │   ├── eric6_snap.py
    │   ├── eric6_snap.pyw
    │   ├── eric6_sqlbrowser.py
    │   ├── eric6_sqlbrowser.pyw
    │   ├── eric6_tray.py
    │   ├── eric6_tray.pyw
    │   ├── eric6_trpreviewer.py
    │   ├── eric6_trpreviewer.pyw
    │   ├── eric6_uipreviewer.py
    │   ├── eric6_uipreviewer.pyw
    │   ├── eric6_unittest.py
    │   ├── eric6_unittest.pyw
    │   ├── eric6_webbrowser.desktop
    │   ├── eric6_webbrowser.py
    │   ├── eric6_webbrowser.pyw
    │   ├── Examples
    │   │   ├── hallo.py
    │   │   ├── modpython_dbg.py
    │   │   ├── modpython.py
    │   │   └── rhallo.py
    │   ├── Globals
    │   │   ├── AppInfo.py
    │   │   ├── compatibility_fixes.py
    │   │   ├── E5ConfigParser.py
    │   │   └── __init__.py
    │   ├── Graphics
    │   │   ├── ApplicationDiagramBuilder.py
    │   │   ├── AssociationItem.py
    │   │   ├── ClassItem.py
    │   │   ├── GraphicsUtilities.py
    │   │   ├── ImportsDiagramBuilder.py
    │   │   ├── __init__.py
    │   │   ├── ModuleItem.py
    │   │   ├── PackageDiagramBuilder.py
    │   │   ├── PackageItem.py
    │   │   ├── PixmapDiagram.py
    │   │   ├── SvgDiagram.py
    │   │   ├── UMLClassDiagramBuilder.py
    │   │   ├── UMLDiagramBuilder.py
    │   │   ├── UMLDialog.py
    │   │   ├── UMLGraphicsView.py
    │   │   ├── UMLItem.py
    │   │   ├── UMLSceneSizeDialog.py
    │   │   └── UMLSceneSizeDialog.ui
    │   ├── Helpviewer
    │   │   ├── AdBlock
    │   │   │   ├── AdBlockAccessHandler.py
    │   │   │   ├── AdBlockBlockedNetworkReply.py
    │   │   │   ├── AdBlockDialog.py
    │   │   │   ├── AdBlockDialog.ui
    │   │   │   ├── AdBlockExceptionsDialog.py
    │   │   │   ├── AdBlockExceptionsDialog.ui
    │   │   │   ├── AdBlockIcon.py
    │   │   │   ├── AdBlockManager.py
    │   │   │   ├── AdBlockNetwork.py
    │   │   │   ├── AdBlockPage.py
    │   │   │   ├── AdBlockRule.py
    │   │   │   ├── AdBlockSubscription.py
    │   │   │   ├── AdBlockTreeWidget.py
    │   │   │   └── __init__.py
    │   │   ├── Bookmarks
    │   │   │   ├── AddBookmarkDialog.py
    │   │   │   ├── AddBookmarkDialog.ui
    │   │   │   ├── BookmarkNode.py
    │   │   │   ├── BookmarkPropertiesDialog.py
    │   │   │   ├── BookmarkPropertiesDialog.ui
    │   │   │   ├── BookmarksDialog.py
    │   │   │   ├── BookmarksDialog.ui
    │   │   │   ├── BookmarksImportDialog.py
    │   │   │   ├── BookmarksImportDialog.ui
    │   │   │   ├── BookmarksImporters
    │   │   │   │   ├── BookmarksImporter.py
    │   │   │   │   ├── ChromeImporter.py
    │   │   │   │   ├── FirefoxImporter.py
    │   │   │   │   ├── HtmlImporter.py
    │   │   │   │   ├── IExplorerImporter.py
    │   │   │   │   ├── __init__.py
    │   │   │   │   ├── OperaImporter.py
    │   │   │   │   ├── SafariImporter.py
    │   │   │   │   └── XbelImporter.py
    │   │   │   ├── BookmarksManager.py
    │   │   │   ├── BookmarksMenu.py
    │   │   │   ├── BookmarksModel.py
    │   │   │   ├── BookmarksToolBar.py
    │   │   │   ├── DefaultBookmarks.qrc
    │   │   │   ├── DefaultBookmarks_rc.py
    │   │   │   ├── DefaultBookmarks.xbel
    │   │   │   ├── __init__.py
    │   │   │   ├── NsHtmlReader.py
    │   │   │   ├── NsHtmlWriter.py
    │   │   │   ├── XbelReader.py
    │   │   │   └── XbelWriter.py
    │   │   ├── ClosedTabsManager.py
    │   │   ├── CookieJar
    │   │   │   ├── CookieDetailsDialog.py
    │   │   │   ├── CookieDetailsDialog.ui
    │   │   │   ├── CookieExceptionsModel.py
    │   │   │   ├── CookieJar.py
    │   │   │   ├── CookieModel.py
    │   │   │   ├── CookiesConfigurationDialog.py
    │   │   │   ├── CookiesConfigurationDialog.ui
    │   │   │   ├── CookiesDialog.py
    │   │   │   ├── CookiesDialog.ui
    │   │   │   ├── CookiesExceptionsDialog.py
    │   │   │   ├── CookiesExceptionsDialog.ui
    │   │   │   └── __init__.py
    │   │   ├── data
    │   │   │   ├── html
    │   │   │   │   ├── adblockPage.html
    │   │   │   │   ├── notFoundPage.html
    │   │   │   │   ├── speeddialPage.html
    │   │   │   │   └── startPage.html
    │   │   │   ├── html.qrc
    │   │   │   ├── html_rc.py
    │   │   │   ├── icons
    │   │   │   │   ├── adBlockPlus16.png
    │   │   │   │   ├── adBlockPlus64.png
    │   │   │   │   ├── box-border-small.png
    │   │   │   │   ├── brokenPage.png
    │   │   │   │   ├── close.png
    │   │   │   │   ├── edit.png
    │   │   │   │   ├── ericWeb16.png
    │   │   │   │   ├── ericWeb32.png
    │   │   │   │   ├── loading.gif
    │   │   │   │   ├── plus.png
    │   │   │   │   ├── reload.png
    │   │   │   │   └── setting.png
    │   │   │   ├── icons.qrc
    │   │   │   ├── icons_rc.py
    │   │   │   ├── __init__.py
    │   │   │   ├── javascript
    │   │   │   │   ├── jquery.js
    │   │   │   │   └── jquery-ui.js
    │   │   │   ├── javascript.qrc
    │   │   │   └── javascript_rc.py
    │   │   ├── Download
    │   │   │   ├── DownloadAskActionDialog.py
    │   │   │   ├── DownloadAskActionDialog.ui
    │   │   │   ├── DownloadItem.py
    │   │   │   ├── DownloadItem.ui
    │   │   │   ├── DownloadManager.py
    │   │   │   ├── DownloadManager.ui
    │   │   │   ├── DownloadModel.py
    │   │   │   ├── DownloadUtilities.py
    │   │   │   └── __init__.py
    │   │   ├── FeaturePermissions
    │   │   │   ├── FeaturePermissionBar.py
    │   │   │   ├── FeaturePermissionManager.py
    │   │   │   ├── FeaturePermissionsDialog.py
    │   │   │   ├── FeaturePermissionsDialog.ui
    │   │   │   └── __init__.py
    │   │   ├── Feeds
    │   │   │   ├── FeedEditDialog.py
    │   │   │   ├── FeedEditDialog.ui
    │   │   │   ├── FeedsDialog.py
    │   │   │   ├── FeedsDialog.ui
    │   │   │   ├── FeedsManager.py
    │   │   │   ├── FeedsManager.ui
    │   │   │   └── __init__.py
    │   │   ├── FlashCookieManager
    │   │   │   ├── FlashCookieManagerDialog.py
    │   │   │   ├── FlashCookieManagerDialog.ui
    │   │   │   ├── FlashCookieManager.py
    │   │   │   ├── FlashCookieNotification.py
    │   │   │   ├── FlashCookie.py
    │   │   │   ├── FlashCookieReader.py
    │   │   │   ├── FlashCookieUtilities.py
    │   │   │   └── __init__.py
    │   │   ├── GreaseMonkey
    │   │   │   ├── GreaseMonkeyAddScriptDialog.py
    │   │   │   ├── GreaseMonkeyAddScriptDialog.ui
    │   │   │   ├── GreaseMonkeyConfiguration
    │   │   │   │   ├── GreaseMonkeyConfigurationDialog.py
    │   │   │   │   ├── GreaseMonkeyConfigurationDialog.ui
    │   │   │   │   ├── GreaseMonkeyConfigurationListDelegate.py
    │   │   │   │   ├── GreaseMonkeyConfigurationListWidget.py
    │   │   │   │   ├── GreaseMonkeyConfigurationScriptInfoDialog.py
    │   │   │   │   ├── GreaseMonkeyConfigurationScriptInfoDialog.ui
    │   │   │   │   └── __init__.py
    │   │   │   ├── GreaseMonkeyDownloader.py
    │   │   │   ├── GreaseMonkeyJavaScript.py
    │   │   │   ├── GreaseMonkeyManager.py
    │   │   │   ├── GreaseMonkeyScript.py
    │   │   │   ├── GreaseMonkeyUrlMatcher.py
    │   │   │   └── __init__.py
    │   │   ├── HelpBrowserWV.py
    │   │   ├── HelpClearPrivateDataDialog.py
    │   │   ├── HelpClearPrivateDataDialog.ui
    │   │   ├── HelpDocsInstaller.py
    │   │   ├── HelpIndexWidget.py
    │   │   ├── HelpInspector.py
    │   │   ├── HelpLanguagesDialog.py
    │   │   ├── HelpLanguagesDialog.ui
    │   │   ├── HelpSearchWidget.py
    │   │   ├── HelpSnap.py
    │   │   ├── HelpTabBar.py
    │   │   ├── HelpTabWidget.py
    │   │   ├── HelpTocWidget.py
    │   │   ├── HelpTopicDialog.py
    │   │   ├── HelpTopicDialog.ui
    │   │   ├── HelpUtilities.py
    │   │   ├── HelpWebSearchWidget.py
    │   │   ├── HelpWindow.py
    │   │   ├── History
    │   │   │   ├── HistoryCompleter.py
    │   │   │   ├── HistoryDialog.py
    │   │   │   ├── HistoryDialog.ui
    │   │   │   ├── HistoryFilterModel.py
    │   │   │   ├── HistoryManager.py
    │   │   │   ├── HistoryMenu.py
    │   │   │   ├── HistoryModel.py
    │   │   │   ├── HistoryTreeModel.py
    │   │   │   └── __init__.py
    │   │   ├── __init__.py
    │   │   ├── JavaScriptResources.py
    │   │   ├── Network
    │   │   │   ├── AboutAccessHandler.py
    │   │   │   ├── EmptyNetworkReply.py
    │   │   │   ├── EricAccessHandler.py
    │   │   │   ├── FileAccessHandler.py
    │   │   │   ├── FileReply.py
    │   │   │   ├── FollowRedirectReply.py
    │   │   │   ├── FtpAccessHandler.py
    │   │   │   ├── FtpReply.py
    │   │   │   ├── __init__.py
    │   │   │   ├── NetworkAccessManagerProxy.py
    │   │   │   ├── NetworkAccessManager.py
    │   │   │   ├── NetworkDiskCache.py
    │   │   │   ├── NetworkProtocolUnknownErrorReply.py
    │   │   │   ├── NetworkReply.py
    │   │   │   ├── NoCacheHostsDialog.py
    │   │   │   ├── NoCacheHostsDialog.ui
    │   │   │   ├── QtHelpAccessHandler.py
    │   │   │   ├── SchemeAccessHandler.py
    │   │   │   ├── SendRefererWhitelistDialog.py
    │   │   │   └── SendRefererWhitelistDialog.ui
    │   │   ├── OfflineStorage
    │   │   │   ├── __init__.py
    │   │   │   ├── OfflineStorageConfigDialog.py
    │   │   │   ├── OfflineStorageConfigDialog.ui
    │   │   │   ├── WebDatabasesDialog.py
    │   │   │   ├── WebDatabasesDialog.ui
    │   │   │   └── WebDatabasesModel.py
    │   │   ├── OpenSearch
    │   │   │   ├── DefaultSearchEngines
    │   │   │   │   ├── Amazoncom.xml
    │   │   │   │   ├── Bing.xml
    │   │   │   │   ├── DeEn_Beolingus.xml
    │   │   │   │   ├── DefaultSearchEngines.qrc
    │   │   │   │   ├── DefaultSearchEngines_rc.py
    │   │   │   │   ├── DuckDuckGo.xml
    │   │   │   │   ├── Facebook.xml
    │   │   │   │   ├── Google_Im_Feeling_Lucky.xml
    │   │   │   │   ├── Google.xml
    │   │   │   │   ├── __init__.py
    │   │   │   │   ├── LEO_DeuEng.xml
    │   │   │   │   ├── LinuxMagazin.xml
    │   │   │   │   ├── Reddit.xml
    │   │   │   │   ├── Wikia_en.xml
    │   │   │   │   ├── Wikia.xml
    │   │   │   │   ├── Wikipedia.xml
    │   │   │   │   ├── Wiktionary.xml
    │   │   │   │   ├── Yahoo.xml
    │   │   │   │   └── YouTube.xml
    │   │   │   ├── __init__.py
    │   │   │   ├── OpenSearchDialog.py
    │   │   │   ├── OpenSearchDialog.ui
    │   │   │   ├── OpenSearchEditDialog.py
    │   │   │   ├── OpenSearchEditDialog.ui
    │   │   │   ├── OpenSearchEngineAction.py
    │   │   │   ├── OpenSearchEngineModel.py
    │   │   │   ├── OpenSearchEngine.py
    │   │   │   ├── OpenSearchManager.py
    │   │   │   ├── OpenSearchReader.py
    │   │   │   └── OpenSearchWriter.py
    │   │   ├── PageScreenDialog.py
    │   │   ├── PageScreenDialog.ui
    │   │   ├── Passwords
    │   │   │   ├── __init__.py
    │   │   │   ├── LoginForm.py
    │   │   │   ├── PasswordManager.py
    │   │   │   ├── PasswordModel.py
    │   │   │   ├── PasswordReader.py
    │   │   │   ├── PasswordsDialog.py
    │   │   │   ├── PasswordsDialog.ui
    │   │   │   └── PasswordWriter.py
    │   │   ├── PersonalInformationManager
    │   │   │   ├── __init__.py
    │   │   │   ├── PersonalDataDialog.py
    │   │   │   ├── PersonalDataDialog.ui
    │   │   │   └── PersonalInformationManager.py
    │   │   ├── QtHelpDocumentationDialog.py
    │   │   ├── QtHelpDocumentationDialog.ui
    │   │   ├── QtHelpDocumentationSelectionDialog.py
    │   │   ├── QtHelpDocumentationSelectionDialog.ui
    │   │   ├── QtHelpFiltersDialog.py
    │   │   ├── QtHelpFiltersDialog.ui
    │   │   ├── SearchWidget.py
    │   │   ├── SearchWidget.ui
    │   │   ├── SiteInfo
    │   │   │   ├── __init__.py
    │   │   │   ├── SiteInfoDialog.py
    │   │   │   ├── SiteInfoDialog.ui
    │   │   │   └── SiteInfoNoSslDialog.ui
    │   │   ├── SpeedDial
    │   │   │   ├── __init__.py
    │   │   │   ├── Page.py
    │   │   │   ├── PageThumbnailer.py
    │   │   │   ├── SpeedDial.py
    │   │   │   ├── SpeedDialReader.py
    │   │   │   └── SpeedDialWriter.py
    │   │   ├── Sync
    │   │   │   ├── DirectorySyncHandler.py
    │   │   │   ├── FtpSyncHandler.py
    │   │   │   ├── __init__.py
    │   │   │   ├── SyncAssistantDialog.py
    │   │   │   ├── SyncCheckPage.py
    │   │   │   ├── SyncCheckPage.ui
    │   │   │   ├── SyncDataPage.py
    │   │   │   ├── SyncDataPage.ui
    │   │   │   ├── SyncDirectorySettingsPage.py
    │   │   │   ├── SyncDirectorySettingsPage.ui
    │   │   │   ├── SyncEncryptionPage.py
    │   │   │   ├── SyncEncryptionPage.ui
    │   │   │   ├── SyncFtpSettingsPage.py
    │   │   │   ├── SyncFtpSettingsPage.ui
    │   │   │   ├── SyncGlobals.py
    │   │   │   ├── SyncHandler.py
    │   │   │   ├── SyncHostTypePage.py
    │   │   │   ├── SyncHostTypePage.ui
    │   │   │   └── SyncManager.py
    │   │   ├── UrlBar
    │   │   │   ├── BookmarkActionSelectionDialog.py
    │   │   │   ├── BookmarkActionSelectionDialog.ui
    │   │   │   ├── BookmarkInfoDialog.py
    │   │   │   ├── BookmarkInfoDialog.ui
    │   │   │   ├── FavIconLabel.py
    │   │   │   ├── __init__.py
    │   │   │   ├── SslLabel.py
    │   │   │   ├── StackedUrlBar.py
    │   │   │   └── UrlBar.py
    │   │   ├── UserAgent
    │   │   │   ├── __init__.py
    │   │   │   ├── UserAgentDefaults.qrc
    │   │   │   ├── UserAgentDefaults_rc.py
    │   │   │   ├── UserAgentDefaults.xml
    │   │   │   ├── UserAgentManager.py
    │   │   │   ├── UserAgentMenu.py
    │   │   │   ├── UserAgentModel.py
    │   │   │   ├── UserAgentReader.py
    │   │   │   ├── UserAgentsDialog.py
    │   │   │   ├── UserAgentsDialog.ui
    │   │   │   └── UserAgentWriter.py
    │   │   ├── VirusTotal
    │   │   │   ├── __init__.py
    │   │   │   ├── VirusTotalApi.py
    │   │   │   ├── VirusTotalDomainReportDialog.py
    │   │   │   ├── VirusTotalDomainReportDialog.ui
    │   │   │   ├── VirusTotalIpReportDialog.py
    │   │   │   ├── VirusTotalIpReportDialog.ui
    │   │   │   ├── VirusTotalWhoisDialog.py
    │   │   │   └── VirusTotalWhoisDialog.ui
    │   │   ├── WebPlugins
    │   │   │   ├── ClickToFlash
    │   │   │   │   ├── ClickToFlashPlugin.py
    │   │   │   │   ├── ClickToFlash.py
    │   │   │   │   ├── ClickToFlash.ui
    │   │   │   │   ├── ClickToFlashWhitelistDialog.py
    │   │   │   │   ├── ClickToFlashWhitelistDialog.ui
    │   │   │   │   └── __init__.py
    │   │   │   ├── __init__.py
    │   │   │   ├── WebPluginFactory.py
    │   │   │   └── WebPluginInterface.py
    │   │   └── ZoomManager
    │   │       ├── __init__.py
    │   │       ├── ZoomManager.py
    │   │       ├── ZoomValuesDialog.py
    │   │       ├── ZoomValuesDialog.ui
    │   │       └── ZoomValuesModel.py
    │   ├── HexEdit
    │   │   ├── HexEditChunks.py
    │   │   ├── HexEditGotoWidget.py
    │   │   ├── HexEditGotoWidget.ui
    │   │   ├── HexEditMainWindow.py
    │   │   ├── HexEditReplaceWidget.ui
    │   │   ├── HexEditSearchReplaceWidget.py
    │   │   ├── HexEditSearchWidget.ui
    │   │   ├── HexEditUndoStack.py
    │   │   ├── HexEditWidget.py
    │   │   └── __init__.py
    │   ├── i18n
    │   │   ├── eric6_cs.qm
    │   │   ├── eric6_cs.ts
    │   │   ├── eric6_de.qm
    │   │   ├── eric6_de.ts
    │   │   ├── eric6_empty.ts
    │   │   ├── eric6_en.qm
    │   │   ├── eric6_en.ts
    │   │   ├── eric6_es.qm
    │   │   ├── eric6_es.ts
    │   │   ├── eric6_fr.qm
    │   │   ├── eric6_fr.ts
    │   │   ├── eric6_it.qm
    │   │   ├── eric6_it.ts
    │   │   ├── eric6_pt.qm
    │   │   ├── eric6_pt.ts
    │   │   ├── eric6_ru.qm
    │   │   ├── eric6_ru.ts
    │   │   ├── eric6_tr.qm
    │   │   ├── eric6_tr.ts
    │   │   ├── eric6_zh_CN.qm
    │   │   └── eric6_zh_CN.ts
    │   ├── IconEditor
    │   │   ├── cursors
    │   │   │   ├── aim-cursor.xpm
    │   │   │   ├── colorpicker-cursor.xpm
    │   │   │   ├── cursors.qrc
    │   │   │   ├── cursors_rc.py
    │   │   │   ├── eraser-cursor.xpm
    │   │   │   ├── fill-cursor.xpm
    │   │   │   ├── __init__.py
    │   │   │   └── paintbrush-cursor.xpm
    │   │   ├── IconEditorGrid.py
    │   │   ├── IconEditorPalette.py
    │   │   ├── IconEditorWindow.py
    │   │   ├── IconSizeDialog.py
    │   │   ├── IconSizeDialog.ui
    │   │   └── __init__.py
    │   ├── icons
    │   │   └── default
    │   │       ├── 1downarrow.png
    │   │       ├── 1leftarrow.png
    │   │       ├── 1rightarrow.png
    │   │       ├── 1uparrow.png
    │   │       ├── 2downarrow.png
    │   │       ├── 2leftarrow.png
    │   │       ├── 2rightarrow.png
    │   │       ├── 2uparrow.png
    │   │       ├── actionsToolButton.png
    │   │       ├── adBlockAction.png
    │   │       ├── adBlockPlus16.png
    │   │       ├── adBlockPlus48.png
    │   │       ├── adBlockPlusDisabled16.png
    │   │       ├── adBlockPlusDisabled.png
    │   │       ├── adBlockPlusGreen16.png
    │   │       ├── adBlockPlusGreen48.png
    │   │       ├── adBlockPlusGreen.png
    │   │       ├── adBlockPlus.png
    │   │       ├── addBookmark.png
    │   │       ├── altn.png
    │   │       ├── anychar.png
    │   │       ├── atomicgroup.png
    │   │       ├── attribute_class.png
    │   │       ├── attribute.png
    │   │       ├── attribute_private.png
    │   │       ├── attribute_protected.png
    │   │       ├── attributes_class.png
    │   │       ├── attributes.png
    │   │       ├── audiocapture.png
    │   │       ├── audioMuted.png
    │   │       ├── audioPlaying.png
    │   │       ├── audio-video.png
    │   │       ├── audioVolumeHigh.png
    │   │       ├── audioVolumeMuted.png
    │   │       ├── autoHideOff.png
    │   │       ├── autoHideOn.png
    │   │       ├── autospellchecking.png
    │   │       ├── back.png
    │   │       ├── begline.png
    │   │       ├── bookmark16.png
    │   │       ├── bookmark22.png
    │   │       ├── bookmark32.png
    │   │       ├── bookmarkNext.png
    │   │       ├── bookmarkPrevious.png
    │   │       ├── bookmarkToggle.png
    │   │       ├── breakDisabled.png
    │   │       ├── break.png
    │   │       ├── breakpointNext.png
    │   │       ├── breakpointPrevious.png
    │   │       ├── breakpoints.png
    │   │       ├── breakpointToggle.png
    │   │       ├── browser.png
    │   │       ├── callReturn.png
    │   │       ├── callTrace.png
    │   │       ├── callTraceStart.png
    │   │       ├── callTraceStop.png
    │   │       ├── cameraPhoto.png
    │   │       ├── camera.png
    │   │       ├── cBreak.png
    │   │       ├── cBreakpointToggle.png
    │   │       ├── certificateDelete.png
    │   │       ├── certificateExport.png
    │   │       ├── certificateImport.png
    │   │       ├── certificates.png
    │   │       ├── changeNext.png
    │   │       ├── changePrev.png
    │   │       ├── changesetSignList.png
    │   │       ├── changesetSign.png
    │   │       ├── changesetSignVerify.png
    │   │       ├── characters.png
    │   │       ├── chatBanKickUser.png
    │   │       ├── chatBanUser.png
    │   │       ├── chatKickUser.png
    │   │       ├── chatUser1.png
    │   │       ├── chatUser2.png
    │   │       ├── chatUser3.png
    │   │       ├── chatUser4.png
    │   │       ├── chatUser5.png
    │   │       ├── chatUser6.png
    │   │       ├── chatUser.png
    │   │       ├── chrome.png
    │   │       ├── chromium.png
    │   │       ├── class.png
    │   │       ├── class_private.png
    │   │       ├── class_protected.png
    │   │       ├── clearLeft.png
    │   │       ├── clearPrivateData.png
    │   │       ├── clearRight.png
    │   │       ├── close.png
    │   │       ├── colorPicker.png
    │   │       ├── comment.png
    │   │       ├── compareFiles.png
    │   │       ├── configureExport.png
    │   │       ├── configureImport.png
    │   │       ├── configure.png
    │   │       ├── configureShortcuts.png
    │   │       ├── configureViewProfiles.png
    │   │       ├── continue.png
    │   │       ├── continueToCursor.png
    │   │       ├── cookie.png
    │   │       ├── cooperation48.png
    │   │       ├── cooperation.png
    │   │       ├── corba48.png
    │   │       ├── coverageProject.png
    │   │       ├── coverageScript.png
    │   │       ├── currentLineMarker.png
    │   │       ├── databaseConnection.png
    │   │       ├── debug48.png
    │   │       ├── debugProject.png
    │   │       ├── debugScript.png
    │   │       ├── debugViewer.png
    │   │       ├── defaultIcon.png
    │   │       ├── deleteBookmark.png
    │   │       ├── deleteShape.png
    │   │       ├── designer48.png
    │   │       ├── designer4.png
    │   │       ├── diffFiles.png
    │   │       ├── dirClosed.png
    │   │       ├── dirOpen.png
    │   │       ├── docstringError.png
    │   │       ├── documentFind.png
    │   │       ├── documentNewView.png
    │   │       ├── download.png
    │   │       ├── drawBrush.png
    │   │       ├── drawCircleFilled.png
    │   │       ├── drawCircle.png
    │   │       ├── drawEllipseFilled.png
    │   │       ├── drawEllipse.png
    │   │       ├── drawEraser.png
    │   │       ├── drawFill.png
    │   │       ├── drawLine.png
    │   │       ├── drawRectangleFilled.png
    │   │       ├── drawRectangle.png
    │   │       ├── editBookmarks.png
    │   │       ├── editComment.png
    │   │       ├── editCopy.png
    │   │       ├── editCut.png
    │   │       ├── editDelete.png
    │   │       ├── editIndent.png
    │   │       ├── editor.png
    │   │       ├── editPaste.png
    │   │       ├── edit.png
    │   │       ├── editRedo.png
    │   │       ├── editRename.png
    │   │       ├── editReplaceAll.png
    │   │       ├── editReplace.png
    │   │       ├── editReplaceSearch.png
    │   │       ├── editSelectAll.png
    │   │       ├── editSmartIndent.png
    │   │       ├── editToggleComment.png
    │   │       ├── editUncomment.png
    │   │       ├── editUndo.png
    │   │       ├── editUnindent.png
    │   │       ├── empty.png
    │   │       ├── endline.png
    │   │       ├── enum.png
    │   │       ├── eolLinux.png
    │   │       ├── eolMac.png
    │   │       ├── eolWindows.png
    │   │       ├── eric256.png
    │   │       ├── eric_2.png
    │   │       ├── eric.png
    │   │       ├── ericSnap48.png
    │   │       ├── ericSnap.png
    │   │       ├── erict-bwi.png
    │   │       ├── erict-bw.png
    │   │       ├── erict-hc.png
    │   │       ├── erict.png
    │   │       ├── ericWeb48.png
    │   │       ├── ericWeb.png
    │   │       ├── errorLineMarker.png
    │   │       ├── exceptions.png
    │   │       ├── exit.png
    │   │       ├── exportShortcuts.png
    │   │       ├── featurePermission.png
    │   │       ├── fileDeleteList.png
    │   │       ├── fileDelete.png
    │   │       ├── fileDesigner.png
    │   │       ├── fileD.png
    │   │       ├── fileIDL.png
    │   │       ├── fileJavascript.png
    │   │       ├── fileLinguist2.png
    │   │       ├── fileLinguist.png
    │   │       ├── fileMisc.png
    │   │       ├── fileModified.png
    │   │       ├── fileMultiProject.png
    │   │       ├── filePixmap.png
    │   │       ├── fileProject.png
    │   │       ├── filePython2.png
    │   │       ├── filePython.png
    │   │       ├── fileResource.png
    │   │       ├── fileRuby.png
    │   │       ├── fileSaveAll.png
    │   │       ├── fileSaveAs.png
    │   │       ├── fileSaveCopy.png
    │   │       ├── fileSavePixmap.png
    │   │       ├── fileSave.png
    │   │       ├── fileSaveProject.png
    │   │       ├── fileSaveVisiblePixmap.png
    │   │       ├── fileShortcuts.png
    │   │       ├── fileSvg.png
    │   │       ├── findClear.png
    │   │       ├── findNext.png
    │   │       ├── find.png
    │   │       ├── findPrev.png
    │   │       ├── findWordNext.png
    │   │       ├── findWordPrev.png
    │   │       ├── firefox.png
    │   │       ├── flag.png
    │   │       ├── flashBlock48.png
    │   │       ├── flashBlock-authorware.png
    │   │       ├── flashBlock-director.png
    │   │       ├── flashBlock-flash.png
    │   │       ├── flashBlock-freehand.png
    │   │       ├── flashBlock-java.png
    │   │       ├── flashBlock.png
    │   │       ├── flashBlock-silverlight.png
    │   │       ├── flashCookie128.png
    │   │       ├── flashCookie16.png
    │   │       ├── flashCookie48.png
    │   │       ├── flashCookie.png
    │   │       ├── formatTextBold.png
    │   │       ├── formatTextBulletedList.png
    │   │       ├── formatTextCodeBlock.png
    │   │       ├── formatTextHeader1.png
    │   │       ├── formatTextHeader2.png
    │   │       ├── formatTextHeader3.png
    │   │       ├── formatTextHeader.png
    │   │       ├── formatTextHorizontalLine.png
    │   │       ├── formatTextHyperlink.png
    │   │       ├── formatTextImage.png
    │   │       ├── formatTextInlineCode.png
    │   │       ├── formatTextItalic.png
    │   │       ├── formatTextNumberedList.png
    │   │       ├── formatTextQuote.png
    │   │       ├── formatTextStrikethrough.png
    │   │       ├── forward.png
    │   │       ├── geolocation.png
    │   │       ├── globalVariables.png
    │   │       ├── google.png
    │   │       ├── gotoBrace.png
    │   │       ├── gotoLastEditPosition.png
    │   │       ├── goto.png
    │   │       ├── grayscale.png
    │   │       ├── greaseMonkey48.png
    │   │       ├── greaseMonkey.png
    │   │       ├── greaseMonkeyScript.png
    │   │       ├── greaseMonkeyTrash.png
    │   │       ├── grid.png
    │   │       ├── group.png
    │   │       ├── helpAbout.png
    │   │       ├── helpAboutQt.png
    │   │       ├── help.png
    │   │       ├── hexEditor.png
    │   │       ├── historyClear.png
    │   │       ├── history.png
    │   │       ├── home.png
    │   │       ├── html.png
    │   │       ├── iconEditor.png
    │   │       ├── icons.png
    │   │       ├── importedModule.png
    │   │       ├── importedName.png
    │   │       ├── importShortcuts.png
    │   │       ├── imports.png
    │   │       ├── incomingBookmark.png
    │   │       ├── internet_explorer.png
    │   │       ├── irc128.png
    │   │       ├── irc48.png
    │   │       ├── ircAdmin.png
    │   │       ├── ircAway.png
    │   │       ├── ircCloseChannel.png
    │   │       ├── ircConfigure.png
    │   │       ├── ircConnect.png
    │   │       ├── ircDisconnect.png
    │   │       ├── ircEditTopic.png
    │   │       ├── ircHalfop.png
    │   │       ├── ircJoinChannel.png
    │   │       ├── ircNormal.png
    │   │       ├── ircOp.png
    │   │       ├── ircOwner.png
    │   │       ├── irc.png
    │   │       ├── ircUserAway.png
    │   │       ├── ircUserPresent.png
    │   │       ├── ircVoice.png
    │   │       ├── issueFixable.png
    │   │       ├── issueFixed.png
    │   │       ├── konqueror.png
    │   │       ├── languages
    │   │       │   ├── lexerBash.png
    │   │       │   ├── lexerBatch.png
    │   │       │   ├── lexerCMake.png
    │   │       │   ├── lexerCoffeeScript.png
    │   │       │   ├── lexerCPP.png
    │   │       │   ├── lexerCsharp.png
    │   │       │   ├── lexerCSS.png
    │   │       │   ├── lexerDiff.png
    │   │       │   ├── lexerD.png
    │   │       │   ├── lexerFortran.png
    │   │       │   ├── lexerGettext.png
    │   │       │   ├── lexerHTML.png
    │   │       │   ├── lexerIDL.png
    │   │       │   ├── lexerJava.png
    │   │       │   ├── lexerJavaScript.png
    │   │       │   ├── lexerJSON.png
    │   │       │   ├── lexerLua.png
    │   │       │   ├── lexerMakefile.png
    │   │       │   ├── lexerMarkdown.png
    │   │       │   ├── lexerMatlab.png
    │   │       │   ├── lexerOctave.png
    │   │       │   ├── lexerPascal.png
    │   │       │   ├── lexerPerl.png
    │   │       │   ├── lexerPHP.png
    │   │       │   ├── lexerPostscript.png
    │   │       │   ├── lexerPOV.png
    │   │       │   ├── lexerProperties.png
    │   │       │   ├── lexerPython3.png
    │   │       │   ├── lexerPython.png
    │   │       │   ├── lexerRuby.png
    │   │       │   ├── lexerSQL.png
    │   │       │   ├── lexerTCL.png
    │   │       │   ├── lexerTeX.png
    │   │       │   ├── lexerVHDL.png
    │   │       │   ├── lexerXML.png
    │   │       │   ├── lexerYAML.png
    │   │       │   └── readme.txt
    │   │       ├── LICENSE.oxygen
    │   │       ├── linguist48.png
    │   │       ├── linguist4.png
    │   │       ├── listBookmarks.png
    │   │       ├── loading.png
    │   │       ├── localVariables.png
    │   │       ├── logViewer.png
    │   │       ├── logViewer_r.png
    │   │       ├── mailSend.png
    │   │       ├── masterProject.png
    │   │       ├── mediaPlaybackPause.png
    │   │       ├── mediaPlaybackStart.png
    │   │       ├── method_class.png
    │   │       ├── method.png
    │   │       ├── method_private.png
    │   │       ├── method_protected.png
    │   │       ├── method_static.png
    │   │       ├── minus.png
    │   │       ├── module.png
    │   │       ├── mouse.png
    │   │       ├── moveBookmark.png
    │   │       ├── moveInstructionPointer.png
    │   │       ├── multiProjectClose.png
    │   │       ├── multiProjectNew.png
    │   │       ├── multiProjectOpen.png
    │   │       ├── multiProjectProps.png
    │   │       ├── multiProjectSaveAs.png
    │   │       ├── multiProjectSave.png
    │   │       ├── multiProjectViewer.png
    │   │       ├── namedgroup.png
    │   │       ├── namedreference.png
    │   │       ├── namingError.png
    │   │       ├── neglookahead.png
    │   │       ├── neglookbehind.png
    │   │       ├── network-offline.png
    │   │       ├── network-online.png
    │   │       ├── network-server.png
    │   │       ├── new.png
    │   │       ├── newWindow.png
    │   │       ├── nongroup.png
    │   │       ├── nonwordboundary.png
    │   │       ├── notcoveredNext.png
    │   │       ├── notcovered.png
    │   │       ├── notcoveredPrev.png
    │   │       ├── notification48.png
    │   │       ├── notification.png
    │   │       ├── numbers.png
    │   │       ├── openNewTab.png
    │   │       ├── open.png
    │   │       ├── openQM.png
    │   │       ├── openUI.png
    │   │       ├── opera.png
    │   │       ├── outgoingBookmark.png
    │   │       ├── passwords.png
    │   │       ├── pause.png
    │   │       ├── pim48.png
    │   │       ├── pim.png
    │   │       ├── plugin48.png
    │   │       ├── pluginArchive48.png
    │   │       ├── pluginArchiveList.png
    │   │       ├── pluginArchive.png
    │   │       ├── pluginArchiveSnapshot.png
    │   │       ├── pluginInstall.png
    │   │       ├── plugin.png
    │   │       ├── pluginRepository.png
    │   │       ├── pluginUninstall.png
    │   │       ├── plus.png
    │   │       ├── poslookahead.png
    │   │       ├── poslookbehind.png
    │   │       ├── preferences-api.png
    │   │       ├── preferences-application.png
    │   │       ├── preferences-autocompletion.png
    │   │       ├── preferences-calltips.png
    │   │       ├── preferences-colours.png
    │   │       ├── preferences-cooperation.png
    │   │       ├── preferences-debugger.png
    │   │       ├── preferences-editor.png
    │   │       ├── preferences-exporters.png
    │   │       ├── preferences-filehandling.png
    │   │       ├── preferences-general.png
    │   │       ├── preferences-graphics.png
    │   │       ├── preferences-helpdocumentation.png
    │   │       ├── preferences-help.png
    │   │       ├── preferences-helpviewers.png
    │   │       ├── preferences-highlighter-association.png
    │   │       ├── preferences-highlighting-styles.png
    │   │       ├── preferences-html5.png
    │   │       ├── preferences-icons.png
    │   │       ├── preferences-interface.png
    │   │       ├── preferences-keywords.png
    │   │       ├── preferences-logviewer.png
    │   │       ├── preferences-mail_generic.png
    │   │       ├── preferences-mimetypes.png
    │   │       ├── preferences-mouse-click-handler.png
    │   │       ├── preferences-multiproject.png
    │   │       ├── preferences-network.png
    │   │       ├── preferences-notifications.png
    │   │       ├── preferences-orbit.png
    │   │       ├── preferences-pluginmanager.png
    │   │       ├── preferences-printer.png
    │   │       ├── preferences-project.png
    │   │       ├── preferences-properties.png
    │   │       ├── preferences-pyDebugger.png
    │   │       ├── preferences-python.png
    │   │       ├── preferences-qtlogo.png
    │   │       ├── preferences-rbDebugger.png
    │   │       ├── preferences-search.png
    │   │       ├── preferences-security.png
    │   │       ├── preferences-shell.png
    │   │       ├── preferences-spellchecking.png
    │   │       ├── preferences-styles.png
    │   │       ├── preferences-template.png
    │   │       ├── preferences-typing.png
    │   │       ├── preferences-vcs.png
    │   │       ├── preferences-viewmanager.png
    │   │       ├── previewer.png
    │   │       ├── printPdf.png
    │   │       ├── print.png
    │   │       ├── printPreview.png
    │   │       ├── privateBrowsing.png
    │   │       ├── privateMode.png
    │   │       ├── profileProject.png
    │   │       ├── profileScript.png
    │   │       ├── projectClose.png
    │   │       ├── projectFind.png
    │   │       ├── projectForms.png
    │   │       ├── projectInterfaces.png
    │   │       ├── projectNew.png
    │   │       ├── projectOpen.png
    │   │       ├── projectOthers.png
    │   │       ├── projectProps.png
    │   │       ├── projectResources.png
    │   │       ├── projectSaveAs.png
    │   │       ├── projectSave.png
    │   │       ├── projectSourcesJavaScript.png
    │   │       ├── projectSources.png
    │   │       ├── projectSourcesPyMixed.png
    │   │       ├── projectSourcesPy.png
    │   │       ├── projectSourcesRbMixed.png
    │   │       ├── projectSourcesRb.png
    │   │       ├── projectTranslations.png
    │   │       ├── projectUserProps.png
    │   │       ├── projectViewer.png
    │   │       ├── pullBookmark.png
    │   │       ├── pushBookmark.png
    │   │       ├── qscintilla.png
    │   │       ├── qthelp.png
    │   │       ├── quickFindExtend.png
    │   │       ├── quickFindNext.png
    │   │       ├── quickFindPrev.png
    │   │       ├── relayout.png
    │   │       ├── reload.png
    │   │       ├── remsplitHorizontal.png
    │   │       ├── remsplitVertical.png
    │   │       ├── renameBookmark.png
    │   │       ├── repeat.png
    │   │       ├── rescan.png
    │   │       ├── resizeColumns.png
    │   │       ├── resourcesCompiler48.png
    │   │       ├── restartDelete.png
    │   │       ├── restart.png
    │   │       ├── rss16.png
    │   │       ├── rss22.png
    │   │       ├── rss48.png
    │   │       ├── runProject.png
    │   │       ├── runScript.png
    │   │       ├── safari.png
    │   │       ├── safeBrowsing48.png
    │   │       ├── safeBrowsing.png
    │   │       ├── sceneHeightDec.png
    │   │       ├── sceneHeightInc.png
    │   │       ├── sceneSize.png
    │   │       ├── sceneWidthDec.png
    │   │       ├── sceneWidthInc.png
    │   │       ├── screenCapture.png
    │   │       ├── scrollAll.png
    │   │       ├── scrollHorizontal.png
    │   │       ├── scrollVertical.png
    │   │       ├── securityHigh32.png
    │   │       ├── securityLow32.png
    │   │       ├── securityMedium32.png
    │   │       ├── selectCircle.png
    │   │       ├── select.png
    │   │       ├── selectRectangle.png
    │   │       ├── shapesAlignBottom.png
    │   │       ├── shapesAlignHCenter.png
    │   │       ├── shapesAlignLeft.png
    │   │       ├── shapesAlignRight.png
    │   │       ├── shapesAlignTop.png
    │   │       ├── shapesAlignVCenter.png
    │   │       ├── sharedEditCancel.png
    │   │       ├── sharedEditConnected.png
    │   │       ├── sharedEditDisconnected.png
    │   │       ├── sharedEditSend.png
    │   │       ├── sharedEditStart.png
    │   │       ├── shell.png
    │   │       ├── shell_r.png
    │   │       ├── showPassword.png
    │   │       ├── showPrograms.png
    │   │       ├── siteinfo-databases.png
    │   │       ├── siteinfo-general.png
    │   │       ├── siteinfo-media.png
    │   │       ├── siteinfo-security.png
    │   │       ├── spellchecking48.png
    │   │       ├── spellchecking.png
    │   │       ├── splitHorizontal.png
    │   │       ├── splitVertical.png
    │   │       ├── sqlBrowser.png
    │   │       ├── stepOut.png
    │   │       ├── stepOver.png
    │   │       ├── step.png
    │   │       ├── stepQuit.png
    │   │       ├── stopLoading.png
    │   │       ├── stopScript.png
    │   │       ├── superMenu.png
    │   │       ├── symbols.png
    │   │       ├── symlink.png
    │   │       ├── syncCompleted.png
    │   │       ├── syncFailed.png
    │   │       ├── syncNo.png
    │   │       ├── sync.png
    │   │       ├── syncToc.png
    │   │       ├── syntaxError22.png
    │   │       ├── syntaxErrorGoto.png
    │   │       ├── syntaxError.png
    │   │       ├── tabCloseOther.png
    │   │       ├── tabClose.png
    │   │       ├── tabDuplicate.png
    │   │       ├── tabManager.png
    │   │       ├── tabNew.png
    │   │       ├── taskCompleted.png
    │   │       ├── taskFixme.png
    │   │       ├── taskNext.png
    │   │       ├── taskNote.png
    │   │       ├── task.png
    │   │       ├── taskPrev.png
    │   │       ├── taskPrioHigh.png
    │   │       ├── taskPrioLow.png
    │   │       ├── taskPriority.png
    │   │       ├── task_r.png
    │   │       ├── taskTodo.png
    │   │       ├── taskWarning.png
    │   │       ├── tBreak.png
    │   │       ├── tCBreak.png
    │   │       ├── templateViewer.png
    │   │       ├── terminal.png
    │   │       ├── textencoding.png
    │   │       ├── tineye.png
    │   │       ├── toolbarsConfigure.png
    │   │       ├── toolsConfigure.png
    │   │       ├── transformResize.png
    │   │       ├── translate.png
    │   │       ├── trash.png
    │   │       ├── trPreviewer.png
    │   │       ├── uiPreviewer.png
    │   │       ├── unhighlight.png
    │   │       ├── unittest.png
    │   │       ├── unittestProject.png
    │   │       ├── unittestRerunFailed.png
    │   │       ├── unittestRestart.png
    │   │       ├── unittestScript.png
    │   │       ├── updateLocal.png
    │   │       ├── updateRemote.png
    │   │       ├── up.png
    │   │       ├── vcsAdd.png
    │   │       ├── vcsAddRemove.png
    │   │       ├── vcsApplyChangegroup.png
    │   │       ├── vcsBranch.png
    │   │       ├── vcsChangeLists.png
    │   │       ├── vcsCheckout.png
    │   │       ├── vcsCommit.png
    │   │       ├── vcsCreateChangegroup.png
    │   │       ├── vcsDiff.png
    │   │       ├── vcsEditHistory.png
    │   │       ├── vcsExportPatch.png
    │   │       ├── vcsExport.png
    │   │       ├── vcsGraft.png
    │   │       ├── vcsImportPatch.png
    │   │       ├── vcsLock.png
    │   │       ├── vcsLogin.png
    │   │       ├── vcsLogout.png
    │   │       ├── vcsLog.png
    │   │       ├── vcsMerge.png
    │   │       ├── vcsPreviewChangegroup.png
    │   │       ├── vcsRebase.png
    │   │       ├── vcsRemove.png
    │   │       ├── vcsRepoBrowser.png
    │   │       ├── vcsRepo.png
    │   │       ├── vcsRevert.png
    │   │       ├── vcsSbsDiff.png
    │   │       ├── vcsStatus.png
    │   │       ├── vcsSummary.png
    │   │       ├── vcsSwitch.png
    │   │       ├── vcsTagGlobal.png
    │   │       ├── vcsTagLocal.png
    │   │       ├── vcsTag.png
    │   │       ├── vcsTransplant.png
    │   │       ├── vcsUnlock.png
    │   │       ├── vcsUpdate.png
    │   │       ├── viewProfileDebug.png
    │   │       ├── viewProfileEdit.png
    │   │       ├── virustotal.png
    │   │       ├── w3.png
    │   │       ├── warning22.png
    │   │       ├── warningNext.png
    │   │       ├── warning.png
    │   │       ├── warningPrev.png
    │   │       ├── watchpoints.png
    │   │       ├── webInspector.png
    │   │       ├── webSearch.png
    │   │       ├── whatsThis.png
    │   │       ├── wikipedia.png
    │   │       ├── windowFullscreen.png
    │   │       ├── windowRestore.png
    │   │       ├── wordboundary.png
    │   │       ├── xbel.png
    │   │       ├── yahoo.png
    │   │       ├── yandex.png
    │   │       ├── zoomIn.png
    │   │       ├── zoomOut.png
    │   │       ├── zoomReset.png
    │   │       └── zoomTo.png
    │   ├── __init__.py
    │   ├── install-debugclients.py
    │   ├── install-i18n.py
    │   ├── install.py
    │   ├── LICENSE.GPL3
    │   ├── MultiProject
    │   │   ├── AddProjectDialog.py
    │   │   ├── AddProjectDialog.ui
    │   │   ├── __init__.py
    │   │   ├── MultiProjectBrowser.py
    │   │   ├── MultiProject.py
    │   │   ├── PropertiesDialog.py
    │   │   └── PropertiesDialog.ui
    │   ├── Network
    │   │   ├── __init__.py
    │   │   └── IRC
    │   │       ├── __init__.py
    │   │       ├── IrcChannelEditDialog.py
    │   │       ├── IrcChannelEditDialog.ui
    │   │       ├── IrcChannelWidget.py
    │   │       ├── IrcChannelWidget.ui
    │   │       ├── IrcIdentitiesEditDialog.py
    │   │       ├── IrcIdentitiesEditDialog.ui
    │   │       ├── IrcMessageEdit.py
    │   │       ├── IrcNetworkEditDialog.py
    │   │       ├── IrcNetworkEditDialog.ui
    │   │       ├── IrcNetworkListDialog.py
    │   │       ├── IrcNetworkListDialog.ui
    │   │       ├── IrcNetworkManager.py
    │   │       ├── IrcNetworkWidget.py
    │   │       ├── IrcNetworkWidget.ui
    │   │       ├── IrcServerEditDialog.py
    │   │       ├── IrcServerEditDialog.ui
    │   │       ├── IrcUtilities.py
    │   │       ├── IrcWidget.py
    │   │       └── IrcWidget.ui
    │   ├── patch_modpython.py
    │   ├── pixmaps
    │   │   ├── aboutEric_2.png
    │   │   ├── aboutEric.png
    │   │   ├── eric_1.icns
    │   │   ├── eric_1.ico
    │   │   ├── eric_2.icns
    │   │   ├── eric_2.ico
    │   │   ├── eric_3.icns
    │   │   ├── eric_3.ico
    │   │   ├── eric6.ico
    │   │   ├── eric.png
    │   │   ├── eric_small.png
    │   │   ├── ericSplash.png
    │   │   ├── ericWeb48.ico
    │   │   └── loading.gif
    │   ├── PluginManager
    │   │   ├── __init__.py
    │   │   ├── PluginDetailsDialog.py
    │   │   ├── PluginDetailsDialog.ui
    │   │   ├── PluginExceptions.py
    │   │   ├── PluginInfoDialog.py
    │   │   ├── PluginInfoDialog.ui
    │   │   ├── PluginInstallDialog.py
    │   │   ├── PluginInstallDialog.ui
    │   │   ├── PluginManager.py
    │   │   ├── PluginRepositoryDialog.py
    │   │   ├── PluginRepositoryDialog.ui
    │   │   ├── PluginUninstallDialog.py
    │   │   └── PluginUninstallDialog.ui
    │   ├── Plugins
    │   │   ├── AboutPlugin
    │   │   │   ├── AboutDialog.py
    │   │   │   ├── AboutDialog.ui
    │   │   │   └── __init__.py
    │   │   ├── CheckerPlugins
    │   │   │   ├── CodeStyleChecker
    │   │   │   │   ├── CodeStyleAddBuiltinIgnoreDialog.py
    │   │   │   │   ├── CodeStyleAddBuiltinIgnoreDialog.ui
    │   │   │   │   ├── CodeStyleCheckerDialog.py
    │   │   │   │   ├── CodeStyleCheckerDialog.ui
    │   │   │   │   ├── CodeStyleChecker.py
    │   │   │   │   ├── CodeStyleCodeSelectionDialog.py
    │   │   │   │   ├── CodeStyleCodeSelectionDialog.ui
    │   │   │   │   ├── CodeStyleFixer.py
    │   │   │   │   ├── CodeStyleStatisticsDialog.py
    │   │   │   │   ├── CodeStyleStatisticsDialog.ui
    │   │   │   │   ├── ComplexityChecker.py
    │   │   │   │   ├── DocStyleChecker.py
    │   │   │   │   ├── __init__.py
    │   │   │   │   ├── mccabe.py
    │   │   │   │   ├── MiscellaneousChecker.py
    │   │   │   │   ├── NamingStyleChecker.py
    │   │   │   │   ├── pycodestyle.py
    │   │   │   │   └── translations.py
    │   │   │   ├── __init__.py
    │   │   │   ├── SyntaxChecker
    │   │   │   │   ├── __init__.py
    │   │   │   │   ├── jsCheckSyntax.py
    │   │   │   │   ├── pyflakes
    │   │   │   │   │   ├── checker.py
    │   │   │   │   │   ├── __init__.py
    │   │   │   │   │   ├── messages.py
    │   │   │   │   │   └── translations.py
    │   │   │   │   ├── SyntaxCheckerDialog.py
    │   │   │   │   ├── SyntaxCheckerDialog.ui
    │   │   │   │   ├── SyntaxCheck.py
    │   │   │   │   └── SyntaxCheckService.py
    │   │   │   └── Tabnanny
    │   │   │       ├── __init__.py
    │   │   │       ├── TabnannyDialog.py
    │   │   │       ├── TabnannyDialog.ui
    │   │   │       └── Tabnanny.py
    │   │   ├── DocumentationPlugins
    │   │   │   ├── Ericapi
    │   │   │   │   ├── EricapiConfigDialog.py
    │   │   │   │   ├── EricapiConfigDialog.ui
    │   │   │   │   ├── EricapiExecDialog.py
    │   │   │   │   ├── EricapiExecDialog.ui
    │   │   │   │   └── __init__.py
    │   │   │   ├── Ericdoc
    │   │   │   │   ├── EricdocConfigDialog.py
    │   │   │   │   ├── EricdocConfigDialog.ui
    │   │   │   │   ├── EricdocExecDialog.py
    │   │   │   │   ├── EricdocExecDialog.ui
    │   │   │   │   └── __init__.py
    │   │   │   └── __init__.py
    │   │   ├── __init__.py
    │   │   ├── PluginAbout.py
    │   │   ├── PluginCodeStyleChecker.py
    │   │   ├── PluginEricapi.py
    │   │   ├── PluginEricdoc.py
    │   │   ├── PluginSyntaxChecker.py
    │   │   ├── PluginTabnanny.py
    │   │   ├── PluginVcsMercurial.py
    │   │   ├── PluginVcsPySvn.py
    │   │   ├── PluginVcsSubversion.py
    │   │   ├── PluginVmListspace.py
    │   │   ├── PluginVmTabview.py
    │   │   ├── PluginWizardE5MessageBox.py
    │   │   ├── PluginWizardPyRegExp.py
    │   │   ├── PluginWizardQColorDialog.py
    │   │   ├── PluginWizardQFileDialog.py
    │   │   ├── PluginWizardQFontDialog.py
    │   │   ├── PluginWizardQInputDialog.py
    │   │   ├── PluginWizardQMessageBox.py
    │   │   ├── PluginWizardQRegExp.py
    │   │   ├── PluginWizardQRegularExpression.py
    │   │   ├── VcsPlugins
    │   │   │   ├── __init__.py
    │   │   │   ├── vcsMercurial
    │   │   │   │   ├── Config.py
    │   │   │   │   ├── ConfigurationPage
    │   │   │   │   │   ├── __init__.py
    │   │   │   │   │   ├── MercurialPage.py
    │   │   │   │   │   └── MercurialPage.ui
    │   │   │   │   ├── FetchExtension
    │   │   │   │   │   ├── fetch.py
    │   │   │   │   │   ├── HgFetchDialog.py
    │   │   │   │   │   ├── HgFetchDialog.ui
    │   │   │   │   │   ├── __init__.py
    │   │   │   │   │   └── ProjectHelper.py
    │   │   │   │   ├── GpgExtension
    │   │   │   │   │   ├── gpg.py
    │   │   │   │   │   ├── HgGpgSignaturesDialog.py
    │   │   │   │   │   ├── HgGpgSignaturesDialog.ui
    │   │   │   │   │   ├── HgGpgSignDialog.py
    │   │   │   │   │   ├── HgGpgSignDialog.ui
    │   │   │   │   │   ├── __init__.py
    │   │   │   │   │   └── ProjectHelper.py
    │   │   │   │   ├── HgAddSubrepositoryDialog.py
    │   │   │   │   ├── HgAddSubrepositoryDialog.ui
    │   │   │   │   ├── HgAnnotateDialog.py
    │   │   │   │   ├── HgAnnotateDialog.ui
    │   │   │   │   ├── HgArchiveDialog.py
    │   │   │   │   ├── HgArchiveDialog.ui
    │   │   │   │   ├── HgBackoutDialog.py
    │   │   │   │   ├── HgBackoutDialog.ui
    │   │   │   │   ├── HgBookmarkDialog.py
    │   │   │   │   ├── HgBookmarkDialog.ui
    │   │   │   │   ├── HgBookmarkRenameDialog.py
    │   │   │   │   ├── HgBookmarkRenameDialog.ui
    │   │   │   │   ├── HgBookmarksInOutDialog.py
    │   │   │   │   ├── HgBookmarksInOutDialog.ui
    │   │   │   │   ├── HgBookmarksListDialog.py
    │   │   │   │   ├── HgBookmarksListDialog.ui
    │   │   │   │   ├── HgBranchInputDialog.py
    │   │   │   │   ├── HgBranchInputDialog.ui
    │   │   │   │   ├── HgBundleDialog.py
    │   │   │   │   ├── HgBundleDialog.ui
    │   │   │   │   ├── HgClientPromptDialog.py
    │   │   │   │   ├── HgClientPromptDialog.ui
    │   │   │   │   ├── HgClient.py
    │   │   │   │   ├── HgCommandDialog.py
    │   │   │   │   ├── HgCommandDialog.ui
    │   │   │   │   ├── HgCommitDialog.py
    │   │   │   │   ├── HgCommitDialog.ui
    │   │   │   │   ├── HgConflictsListDialog.py
    │   │   │   │   ├── HgConflictsListDialog.ui
    │   │   │   │   ├── HgCopyDialog.py
    │   │   │   │   ├── HgCopyDialog.ui
    │   │   │   │   ├── HgDialog.py
    │   │   │   │   ├── HgDialog.ui
    │   │   │   │   ├── HgDiffDialog.py
    │   │   │   │   ├── HgDiffDialog.ui
    │   │   │   │   ├── HgDiffGenerator.py
    │   │   │   │   ├── HgDiffHighlighter.py
    │   │   │   │   ├── HgExportDialog.py
    │   │   │   │   ├── HgExportDialog.ui
    │   │   │   │   ├── HgExtensionProjectBrowserHelper.py
    │   │   │   │   ├── HgExtensionProjectHelper.py
    │   │   │   │   ├── HgExtension.py
    │   │   │   │   ├── HgGraftDialog.py
    │   │   │   │   ├── HgGraftDialog.ui
    │   │   │   │   ├── HgImportDialog.py
    │   │   │   │   ├── HgImportDialog.ui
    │   │   │   │   ├── HgLogBrowserDialog.py
    │   │   │   │   ├── HgLogBrowserDialog.ui
    │   │   │   │   ├── HgMergeDialog.py
    │   │   │   │   ├── HgMergeDialog.ui
    │   │   │   │   ├── HgMultiRevisionSelectionDialog.ui
    │   │   │   │   ├── HgNewProjectOptionsDialog.py
    │   │   │   │   ├── HgNewProjectOptionsDialog.ui
    │   │   │   │   ├── HgOptionsDialog.py
    │   │   │   │   ├── HgOptionsDialog.ui
    │   │   │   │   ├── HgPhaseDialog.py
    │   │   │   │   ├── HgPhaseDialog.ui
    │   │   │   │   ├── hg.py
    │   │   │   │   ├── HgRemoveSubrepositoriesDialog.py
    │   │   │   │   ├── HgRemoveSubrepositoriesDialog.ui
    │   │   │   │   ├── HgRepoConfigDataDialog.py
    │   │   │   │   ├── HgRepoConfigDataDialog.ui
    │   │   │   │   ├── HgRevisionSelectionDialog.py
    │   │   │   │   ├── HgRevisionSelectionDialog.ui
    │   │   │   │   ├── HgRevisionsSelectionDialog.py
    │   │   │   │   ├── HgRevisionsSelectionDialog.ui
    │   │   │   │   ├── HgServeDialog.py
    │   │   │   │   ├── HgStatusDialog.py
    │   │   │   │   ├── HgStatusDialog.ui
    │   │   │   │   ├── HgStatusMonitorThread.py
    │   │   │   │   ├── HgSummaryDialog.py
    │   │   │   │   ├── HgSummaryDialog.ui
    │   │   │   │   ├── HgTagBranchListDialog.py
    │   │   │   │   ├── HgTagBranchListDialog.ui
    │   │   │   │   ├── HgTagDialog.py
    │   │   │   │   ├── HgTagDialog.ui
    │   │   │   │   ├── HgUserConfigDialog.py
    │   │   │   │   ├── HgUserConfigDialog.ui
    │   │   │   │   ├── HgUserConfigHostFingerprintDialog.py
    │   │   │   │   ├── HgUserConfigHostFingerprintDialog.ui
    │   │   │   │   ├── HgUserConfigHostMinimumProtocolDialog.py
    │   │   │   │   ├── HgUserConfigHostMinimumProtocolDialog.ui
    │   │   │   │   ├── HgUtilities.py
    │   │   │   │   ├── HisteditExtension
    │   │   │   │   │   ├── HgHisteditCommitEditor.py
    │   │   │   │   │   ├── HgHisteditCommitEditor.ui
    │   │   │   │   │   ├── HgHisteditConfigDialog.py
    │   │   │   │   │   ├── HgHisteditConfigDialog.ui
    │   │   │   │   │   ├── HgHisteditEditor.py
    │   │   │   │   │   ├── HgHisteditPlanEditor.py
    │   │   │   │   │   ├── HgHisteditPlanEditor.ui
    │   │   │   │   │   ├── histedit.py
    │   │   │   │   │   ├── __init__.py
    │   │   │   │   │   └── ProjectHelper.py
    │   │   │   │   ├── icons
    │   │   │   │   │   ├── mercurial.png
    │   │   │   │   │   ├── preferences-mercurial.png
    │   │   │   │   │   ├── startServer.png
    │   │   │   │   │   └── stopServer.png
    │   │   │   │   ├── __init__.py
    │   │   │   │   ├── LargefilesExtension
    │   │   │   │   │   ├── __init__.py
    │   │   │   │   │   ├── largefiles.py
    │   │   │   │   │   ├── LfConvertDataDialog.py
    │   │   │   │   │   ├── LfConvertDataDialog.ui
    │   │   │   │   │   ├── LfRevisionsInputDialog.py
    │   │   │   │   │   ├── LfRevisionsInputDialog.ui
    │   │   │   │   │   ├── ProjectBrowserHelper.py
    │   │   │   │   │   └── ProjectHelper.py
    │   │   │   │   ├── ProjectBrowserHelper.py
    │   │   │   │   ├── ProjectHelper.py
    │   │   │   │   ├── PurgeExtension
    │   │   │   │   │   ├── HgPurgeListDialog.py
    │   │   │   │   │   ├── HgPurgeListDialog.ui
    │   │   │   │   │   ├── __init__.py
    │   │   │   │   │   ├── ProjectHelper.py
    │   │   │   │   │   └── purge.py
    │   │   │   │   ├── QueuesExtension
    │   │   │   │   │   ├── HgQueuesDefineGuardsDialog.py
    │   │   │   │   │   ├── HgQueuesDefineGuardsDialog.ui
    │   │   │   │   │   ├── HgQueuesFoldDialog.py
    │   │   │   │   │   ├── HgQueuesFoldDialog.ui
    │   │   │   │   │   ├── HgQueuesGuardsSelectionDialog.py
    │   │   │   │   │   ├── HgQueuesGuardsSelectionDialog.ui
    │   │   │   │   │   ├── HgQueuesHeaderDialog.py
    │   │   │   │   │   ├── HgQueuesHeaderDialog.ui
    │   │   │   │   │   ├── HgQueuesListAllGuardsDialog.py
    │   │   │   │   │   ├── HgQueuesListAllGuardsDialog.ui
    │   │   │   │   │   ├── HgQueuesListDialog.py
    │   │   │   │   │   ├── HgQueuesListDialog.ui
    │   │   │   │   │   ├── HgQueuesListGuardsDialog.py
    │   │   │   │   │   ├── HgQueuesListGuardsDialog.ui
    │   │   │   │   │   ├── HgQueuesNewPatchDialog.py
    │   │   │   │   │   ├── HgQueuesNewPatchDialog.ui
    │   │   │   │   │   ├── HgQueuesQueueManagementDialog.py
    │   │   │   │   │   ├── HgQueuesQueueManagementDialog.ui
    │   │   │   │   │   ├── HgQueuesRenamePatchDialog.py
    │   │   │   │   │   ├── HgQueuesRenamePatchDialog.ui
    │   │   │   │   │   ├── __init__.py
    │   │   │   │   │   ├── ProjectHelper.py
    │   │   │   │   │   └── queues.py
    │   │   │   │   ├── RebaseExtension
    │   │   │   │   │   ├── HgRebaseDialog.py
    │   │   │   │   │   ├── HgRebaseDialog.ui
    │   │   │   │   │   ├── __init__.py
    │   │   │   │   │   ├── ProjectHelper.py
    │   │   │   │   │   └── rebase.py
    │   │   │   │   ├── ShelveExtension
    │   │   │   │   │   ├── HgShelveBrowserDialog.py
    │   │   │   │   │   ├── HgShelveBrowserDialog.ui
    │   │   │   │   │   ├── HgShelveDataDialog.py
    │   │   │   │   │   ├── HgShelveDataDialog.ui
    │   │   │   │   │   ├── HgShelvesSelectionDialog.py
    │   │   │   │   │   ├── HgShelvesSelectionDialog.ui
    │   │   │   │   │   ├── HgUnshelveDataDialog.py
    │   │   │   │   │   ├── HgUnshelveDataDialog.ui
    │   │   │   │   │   ├── __init__.py
    │   │   │   │   │   ├── ProjectBrowserHelper.py
    │   │   │   │   │   ├── ProjectHelper.py
    │   │   │   │   │   └── shelve.py
    │   │   │   │   ├── StripExtension
    │   │   │   │   │   ├── HgStripDialog.py
    │   │   │   │   │   ├── HgStripDialog.ui
    │   │   │   │   │   ├── __init__.py
    │   │   │   │   │   ├── ProjectHelper.py
    │   │   │   │   │   └── strip.py
    │   │   │   │   └── templates
    │   │   │   │       └── logBrowserBookmarkPhase.tmpl
    │   │   │   ├── vcsPySvn
    │   │   │   │   ├── Config.py
    │   │   │   │   ├── ConfigurationPage
    │   │   │   │   │   ├── __init__.py
    │   │   │   │   │   ├── SubversionPage.py
    │   │   │   │   │   └── SubversionPage.ui
    │   │   │   │   ├── icons
    │   │   │   │   │   ├── preferences-subversion.png
    │   │   │   │   │   └── pysvn.png
    │   │   │   │   ├── __init__.py
    │   │   │   │   ├── ProjectBrowserHelper.py
    │   │   │   │   ├── ProjectHelper.py
    │   │   │   │   ├── subversion.py
    │   │   │   │   ├── SvnBlameDialog.py
    │   │   │   │   ├── SvnBlameDialog.ui
    │   │   │   │   ├── SvnChangeListsDialog.py
    │   │   │   │   ├── SvnChangeListsDialog.ui
    │   │   │   │   ├── SvnCommandDialog.py
    │   │   │   │   ├── SvnCommandDialog.ui
    │   │   │   │   ├── SvnCommitDialog.py
    │   │   │   │   ├── SvnCommitDialog.ui
    │   │   │   │   ├── SvnConst.py
    │   │   │   │   ├── SvnCopyDialog.py
    │   │   │   │   ├── SvnCopyDialog.ui
    │   │   │   │   ├── SvnDialogMixin.py
    │   │   │   │   ├── SvnDialog.py
    │   │   │   │   ├── SvnDialog.ui
    │   │   │   │   ├── SvnDiffDialog.py
    │   │   │   │   ├── SvnDiffDialog.ui
    │   │   │   │   ├── SvnDiffHighlighter.py
    │   │   │   │   ├── SvnInfoDialog.py
    │   │   │   │   ├── SvnLogBrowserDialog.py
    │   │   │   │   ├── SvnLogBrowserDialog.ui
    │   │   │   │   ├── SvnLoginDialog.py
    │   │   │   │   ├── SvnLoginDialog.ui
    │   │   │   │   ├── SvnMergeDialog.py
    │   │   │   │   ├── SvnMergeDialog.ui
    │   │   │   │   ├── SvnNewProjectOptionsDialog.py
    │   │   │   │   ├── SvnNewProjectOptionsDialog.ui
    │   │   │   │   ├── SvnOptionsDialog.py
    │   │   │   │   ├── SvnOptionsDialog.ui
    │   │   │   │   ├── SvnPropDelDialog.py
    │   │   │   │   ├── SvnPropDelDialog.ui
    │   │   │   │   ├── SvnPropListDialog.py
    │   │   │   │   ├── SvnPropListDialog.ui
    │   │   │   │   ├── SvnPropSetDialog.py
    │   │   │   │   ├── SvnPropSetDialog.ui
    │   │   │   │   ├── SvnRelocateDialog.py
    │   │   │   │   ├── SvnRelocateDialog.ui
    │   │   │   │   ├── SvnRepoBrowserDialog.py
    │   │   │   │   ├── SvnRepoBrowserDialog.ui
    │   │   │   │   ├── SvnRevisionSelectionDialog.py
    │   │   │   │   ├── SvnRevisionSelectionDialog.ui
    │   │   │   │   ├── SvnStatusDialog.py
    │   │   │   │   ├── SvnStatusDialog.ui
    │   │   │   │   ├── SvnStatusMonitorThread.py
    │   │   │   │   ├── SvnSwitchDialog.py
    │   │   │   │   ├── SvnSwitchDialog.ui
    │   │   │   │   ├── SvnTagBranchListDialog.py
    │   │   │   │   ├── SvnTagBranchListDialog.ui
    │   │   │   │   ├── SvnTagDialog.py
    │   │   │   │   ├── SvnTagDialog.ui
    │   │   │   │   ├── SvnUrlSelectionDialog.py
    │   │   │   │   ├── SvnUrlSelectionDialog.ui
    │   │   │   │   └── SvnUtilities.py
    │   │   │   └── vcsSubversion
    │   │   │       ├── Config.py
    │   │   │       ├── ConfigurationPage
    │   │   │       │   ├── __init__.py
    │   │   │       │   ├── SubversionPage.py
    │   │   │       │   └── SubversionPage.ui
    │   │   │       ├── icons
    │   │   │       │   ├── preferences-subversion.png
    │   │   │       │   └── subversion.png
    │   │   │       ├── __init__.py
    │   │   │       ├── ProjectBrowserHelper.py
    │   │   │       ├── ProjectHelper.py
    │   │   │       ├── subversion.py
    │   │   │       ├── SvnBlameDialog.py
    │   │   │       ├── SvnBlameDialog.ui
    │   │   │       ├── SvnChangeListsDialog.py
    │   │   │       ├── SvnChangeListsDialog.ui
    │   │   │       ├── SvnCommandDialog.py
    │   │   │       ├── SvnCommandDialog.ui
    │   │   │       ├── SvnCommitDialog.py
    │   │   │       ├── SvnCommitDialog.ui
    │   │   │       ├── SvnCopyDialog.py
    │   │   │       ├── SvnCopyDialog.ui
    │   │   │       ├── SvnDialog.py
    │   │   │       ├── SvnDialog.ui
    │   │   │       ├── SvnDiffDialog.py
    │   │   │       ├── SvnDiffDialog.ui
    │   │   │       ├── SvnDiffHighlighter.py
    │   │   │       ├── SvnLogBrowserDialog.py
    │   │   │       ├── SvnLogBrowserDialog.ui
    │   │   │       ├── SvnMergeDialog.py
    │   │   │       ├── SvnMergeDialog.ui
    │   │   │       ├── SvnNewProjectOptionsDialog.py
    │   │   │       ├── SvnNewProjectOptionsDialog.ui
    │   │   │       ├── SvnOptionsDialog.py
    │   │   │       ├── SvnOptionsDialog.ui
    │   │   │       ├── SvnPropListDialog.py
    │   │   │       ├── SvnPropListDialog.ui
    │   │   │       ├── SvnPropSetDialog.py
    │   │   │       ├── SvnPropSetDialog.ui
    │   │   │       ├── SvnRelocateDialog.py
    │   │   │       ├── SvnRelocateDialog.ui
    │   │   │       ├── SvnRepoBrowserDialog.py
    │   │   │       ├── SvnRepoBrowserDialog.ui
    │   │   │       ├── SvnRevisionSelectionDialog.py
    │   │   │       ├── SvnRevisionSelectionDialog.ui
    │   │   │       ├── SvnStatusDialog.py
    │   │   │       ├── SvnStatusDialog.ui
    │   │   │       ├── SvnStatusMonitorThread.py
    │   │   │       ├── SvnSwitchDialog.py
    │   │   │       ├── SvnSwitchDialog.ui
    │   │   │       ├── SvnTagBranchListDialog.py
    │   │   │       ├── SvnTagBranchListDialog.ui
    │   │   │       ├── SvnTagDialog.py
    │   │   │       ├── SvnTagDialog.ui
    │   │   │       ├── SvnUrlSelectionDialog.py
    │   │   │       ├── SvnUrlSelectionDialog.ui
    │   │   │       └── SvnUtilities.py
    │   │   ├── ViewManagerPlugins
    │   │   │   ├── __init__.py
    │   │   │   ├── Listspace
    │   │   │   │   ├── __init__.py
    │   │   │   │   ├── Listspace.py
    │   │   │   │   └── preview.png
    │   │   │   └── Tabview
    │   │   │       ├── __init__.py
    │   │   │       ├── preview.png
    │   │   │       └── Tabview.py
    │   │   └── WizardPlugins
    │   │       ├── ColorDialogWizard
    │   │       │   ├── ColorDialogWizardDialog.py
    │   │       │   ├── ColorDialogWizardDialog.ui
    │   │       │   └── __init__.py
    │   │       ├── E5MessageBoxWizard
    │   │       │   ├── E5MessageBoxWizardDialog.py
    │   │       │   ├── E5MessageBoxWizardDialog.ui
    │   │       │   └── __init__.py
    │   │       ├── FileDialogWizard
    │   │       │   ├── FileDialogWizardDialog.py
    │   │       │   ├── FileDialogWizardDialog.ui
    │   │       │   └── __init__.py
    │   │       ├── FontDialogWizard
    │   │       │   ├── FontDialogWizardDialog.py
    │   │       │   ├── FontDialogWizardDialog.ui
    │   │       │   └── __init__.py
    │   │       ├── __init__.py
    │   │       ├── InputDialogWizard
    │   │       │   ├── __init__.py
    │   │       │   ├── InputDialogWizardDialog.py
    │   │       │   └── InputDialogWizardDialog.ui
    │   │       ├── MessageBoxWizard
    │   │       │   ├── __init__.py
    │   │       │   ├── MessageBoxWizardDialog.py
    │   │       │   └── MessageBoxWizardDialog.ui
    │   │       ├── PyRegExpWizard
    │   │       │   ├── __init__.py
    │   │       │   ├── PyRegExpWizardCharactersDialog.py
    │   │       │   ├── PyRegExpWizardCharactersDialog.ui
    │   │       │   ├── PyRegExpWizardDialog.py
    │   │       │   ├── PyRegExpWizardDialog.ui
    │   │       │   ├── PyRegExpWizardRepeatDialog.py
    │   │       │   └── PyRegExpWizardRepeatDialog.ui
    │   │       ├── QRegExpWizard
    │   │       │   ├── __init__.py
    │   │       │   ├── QRegExpWizardCharactersDialog.py
    │   │       │   ├── QRegExpWizardCharactersDialog.ui
    │   │       │   ├── QRegExpWizardDialog.py
    │   │       │   ├── QRegExpWizardDialog.ui
    │   │       │   ├── QRegExpWizardRepeatDialog.py
    │   │       │   └── QRegExpWizardRepeatDialog.ui
    │   │       └── QRegularExpressionWizard
    │   │           ├── __init__.py
    │   │           ├── QRegularExpressionWizardCharactersDialog.py
    │   │           ├── QRegularExpressionWizardCharactersDialog.ui
    │   │           ├── QRegularExpressionWizardDialog.py
    │   │           ├── QRegularExpressionWizardDialog.ui
    │   │           ├── QRegularExpressionWizardRepeatDialog.py
    │   │           ├── QRegularExpressionWizardRepeatDialog.ui
    │   │           └── QRegularExpressionWizardServer.py
    │   ├── Preferences
    │   │   ├── ConfigurationDialog.py
    │   │   ├── ConfigurationPages
    │   │   │   ├── ApplicationPage.py
    │   │   │   ├── ApplicationPage.ui
    │   │   │   ├── ConfigurationPageBase.py
    │   │   │   ├── CooperationPage.py
    │   │   │   ├── CooperationPage.ui
    │   │   │   ├── CorbaPage.py
    │   │   │   ├── CorbaPage.ui
    │   │   │   ├── DebuggerGeneralPage.py
    │   │   │   ├── DebuggerGeneralPage.ui
    │   │   │   ├── DebuggerPython3Page.py
    │   │   │   ├── DebuggerPython3Page.ui
    │   │   │   ├── DebuggerPythonPage.py
    │   │   │   ├── DebuggerPythonPage.ui
    │   │   │   ├── DiffColoursPage.py
    │   │   │   ├── DiffColoursPage.ui
    │   │   │   ├── EditorAPIsPage.py
    │   │   │   ├── EditorAPIsPage.ui
    │   │   │   ├── EditorAutocompletionPage.py
    │   │   │   ├── EditorAutocompletionPage.ui
    │   │   │   ├── EditorAutocompletionQScintillaPage.py
    │   │   │   ├── EditorAutocompletionQScintillaPage.ui
    │   │   │   ├── EditorCalltipsPage.py
    │   │   │   ├── EditorCalltipsPage.ui
    │   │   │   ├── EditorCalltipsQScintillaPage.py
    │   │   │   ├── EditorCalltipsQScintillaPage.ui
    │   │   │   ├── EditorExportersPage.py
    │   │   │   ├── EditorExportersPage.ui
    │   │   │   ├── EditorFilePage.py
    │   │   │   ├── EditorFilePage.ui
    │   │   │   ├── EditorGeneralPage.py
    │   │   │   ├── EditorGeneralPage.ui
    │   │   │   ├── EditorHighlightersPage.py
    │   │   │   ├── EditorHighlightersPage.ui
    │   │   │   ├── EditorHighlightingStylesPage.py
    │   │   │   ├── EditorHighlightingStylesPage.ui
    │   │   │   ├── EditorKeywordsPage.py
    │   │   │   ├── EditorKeywordsPage.ui
    │   │   │   ├── EditorMouseClickHandlerPage.py
    │   │   │   ├── EditorMouseClickHandlerPage.ui
    │   │   │   ├── EditorPropertiesPage.py
    │   │   │   ├── EditorPropertiesPage.ui
    │   │   │   ├── EditorSearchPage.py
    │   │   │   ├── EditorSearchPage.ui
    │   │   │   ├── EditorSpellCheckingPage.py
    │   │   │   ├── EditorSpellCheckingPage.ui
    │   │   │   ├── EditorStylesPage.py
    │   │   │   ├── EditorStylesPage.ui
    │   │   │   ├── EditorSyntaxPage.py
    │   │   │   ├── EditorSyntaxPage.ui
    │   │   │   ├── EditorTypingPage.py
    │   │   │   ├── EditorTypingPage.ui
    │   │   │   ├── EmailPage.py
    │   │   │   ├── EmailPage.ui
    │   │   │   ├── GraphicsPage.py
    │   │   │   ├── GraphicsPage.ui
    │   │   │   ├── HelpAppearancePage.py
    │   │   │   ├── HelpAppearancePage.ui
    │   │   │   ├── HelpDocumentationPage.py
    │   │   │   ├── HelpDocumentationPage.ui
    │   │   │   ├── HelpFlashCookieManagerPage.py
    │   │   │   ├── HelpFlashCookieManagerPage.ui
    │   │   │   ├── HelpInterfacePage.py
    │   │   │   ├── HelpInterfacePage.ui
    │   │   │   ├── HelpViewersPage.py
    │   │   │   ├── HelpViewersPage.ui
    │   │   │   ├── HelpVirusTotalPage.py
    │   │   │   ├── HelpVirusTotalPage.ui
    │   │   │   ├── HelpWebBrowserPage.py
    │   │   │   ├── HelpWebBrowserPage.ui
    │   │   │   ├── HexEditorPage.py
    │   │   │   ├── HexEditorPage.ui
    │   │   │   ├── IconsPage.py
    │   │   │   ├── IconsPage.ui
    │   │   │   ├── IconsPreviewDialog.py
    │   │   │   ├── IconsPreviewDialog.ui
    │   │   │   ├── __init__.py
    │   │   │   ├── InterfacePage.py
    │   │   │   ├── InterfacePage.ui
    │   │   │   ├── IrcPage.py
    │   │   │   ├── IrcPage.ui
    │   │   │   ├── LogViewerPage.py
    │   │   │   ├── LogViewerPage.ui
    │   │   │   ├── MasterPasswordEntryDialog.py
    │   │   │   ├── MasterPasswordEntryDialog.ui
    │   │   │   ├── MimeTypesPage.py
    │   │   │   ├── MimeTypesPage.ui
    │   │   │   ├── MultiProjectPage.py
    │   │   │   ├── MultiProjectPage.ui
    │   │   │   ├── NetworkPage.py
    │   │   │   ├── NetworkPage.ui
    │   │   │   ├── NotificationsPage.py
    │   │   │   ├── NotificationsPage.ui
    │   │   │   ├── PluginManagerPage.py
    │   │   │   ├── PluginManagerPage.ui
    │   │   │   ├── PrinterPage.py
    │   │   │   ├── PrinterPage.ui
    │   │   │   ├── ProjectBrowserPage.py
    │   │   │   ├── ProjectBrowserPage.ui
    │   │   │   ├── ProjectPage.py
    │   │   │   ├── ProjectPage.ui
    │   │   │   ├── PythonPage.py
    │   │   │   ├── PythonPage.ui
    │   │   │   ├── QtPage.py
    │   │   │   ├── QtPage.ui
    │   │   │   ├── SecurityPage.py
    │   │   │   ├── SecurityPage.ui
    │   │   │   ├── ShellPage.py
    │   │   │   ├── ShellPage.ui
    │   │   │   ├── TasksPage.py
    │   │   │   ├── TasksPage.ui
    │   │   │   ├── TemplatesPage.py
    │   │   │   ├── TemplatesPage.ui
    │   │   │   ├── TrayStarterPage.py
    │   │   │   ├── TrayStarterPage.ui
    │   │   │   ├── VcsPage.py
    │   │   │   ├── VcsPage.ui
    │   │   │   ├── ViewmanagerPage.py
    │   │   │   ├── ViewmanagerPage.ui
    │   │   │   ├── WebBrowserAppearancePage.py
    │   │   │   ├── WebBrowserAppearancePage.ui
    │   │   │   ├── WebBrowserPage.py
    │   │   │   ├── WebBrowserPage.ui
    │   │   │   ├── WebBrowserSpellCheckingPage.py
    │   │   │   └── WebBrowserSpellCheckingPage.ui
    │   │   ├── __init__.py
    │   │   ├── MouseClickDialog.py
    │   │   ├── MouseClickDialog.ui
    │   │   ├── PreferencesLexer.py
    │   │   ├── ProgramsDialog.py
    │   │   ├── ProgramsDialog.ui
    │   │   ├── ShortcutDialog.py
    │   │   ├── ShortcutDialog.ui
    │   │   ├── ShortcutsDialog.py
    │   │   ├── ShortcutsDialog.ui
    │   │   ├── Shortcuts.py
    │   │   ├── ToolConfigurationDialog.py
    │   │   ├── ToolConfigurationDialog.ui
    │   │   ├── ToolGroupConfigurationDialog.py
    │   │   ├── ToolGroupConfigurationDialog.ui
    │   │   ├── ViewProfileDialog.py
    │   │   ├── ViewProfileSidebarsDialog.ui
    │   │   └── ViewProfileToolboxesDialog.ui
    │   ├── Project
    │   │   ├── AddDirectoryDialog.py
    │   │   ├── AddDirectoryDialog.ui
    │   │   ├── AddFileDialog.py
    │   │   ├── AddFileDialog.ui
    │   │   ├── AddFoundFilesDialog.py
    │   │   ├── AddFoundFilesDialog.ui
    │   │   ├── AddLanguageDialog.py
    │   │   ├── AddLanguageDialog.ui
    │   │   ├── CreateDialogCodeDialog.py
    │   │   ├── CreateDialogCodeDialog.ui
    │   │   ├── DebuggerPropertiesDialog.py
    │   │   ├── DebuggerPropertiesDialog.ui
    │   │   ├── FiletypeAssociationDialog.py
    │   │   ├── FiletypeAssociationDialog.ui
    │   │   ├── __init__.py
    │   │   ├── LexerAssociationDialog.py
    │   │   ├── LexerAssociationDialog.ui
    │   │   ├── NewDialogClassDialog.py
    │   │   ├── NewDialogClassDialog.ui
    │   │   ├── NewPythonPackageDialog.py
    │   │   ├── NewPythonPackageDialog.ui
    │   │   ├── ProjectBaseBrowser.py
    │   │   ├── ProjectBrowserFlags.py
    │   │   ├── ProjectBrowserModel.py
    │   │   ├── ProjectBrowser.py
    │   │   ├── ProjectBrowserSortFilterProxyModel.py
    │   │   ├── ProjectFormsBrowser.py
    │   │   ├── ProjectInterfacesBrowser.py
    │   │   ├── ProjectOthersBrowser.py
    │   │   ├── Project.py
    │   │   ├── ProjectResourcesBrowser.py
    │   │   ├── ProjectSourcesBrowser.py
    │   │   ├── ProjectTranslationsBrowser.py
    │   │   ├── PropertiesDialog.py
    │   │   ├── PropertiesDialog.ui
    │   │   ├── QuickFindFileDialog.py
    │   │   ├── QuickFindFile.ui
    │   │   ├── SpellingPropertiesDialog.py
    │   │   ├── SpellingPropertiesDialog.ui
    │   │   ├── TranslationPropertiesDialog.py
    │   │   ├── TranslationPropertiesDialog.ui
    │   │   ├── UserPropertiesDialog.py
    │   │   └── UserPropertiesDialog.ui
    │   ├── pylint.rc
    │   ├── PyUnit
    │   │   ├── __init__.py
    │   │   ├── UnittestDialog.py
    │   │   ├── UnittestDialog.ui
    │   │   └── UnittestStacktraceDialog.ui
    │   ├── QScintilla
    │   │   ├── APIsManager.py
    │   │   ├── EditorAssembly.py
    │   │   ├── EditorButtonsWidget.py
    │   │   ├── EditorMarkerMap.py
    │   │   ├── Editor.py
    │   │   ├── Exporters
    │   │   │   ├── ExporterBase.py
    │   │   │   ├── ExporterHTML.py
    │   │   │   ├── ExporterODT.py
    │   │   │   ├── ExporterPDF.py
    │   │   │   ├── ExporterRTF.py
    │   │   │   ├── ExporterTEX.py
    │   │   │   └── __init__.py
    │   │   ├── GotoDialog.py
    │   │   ├── GotoDialog.ui
    │   │   ├── __init__.py
    │   │   ├── KeySequenceTranslator.py
    │   │   ├── Lexers
    │   │   │   ├── __init__.py
    │   │   │   ├── LexerBash.py
    │   │   │   ├── LexerBatch.py
    │   │   │   ├── LexerCMake.py
    │   │   │   ├── LexerCoffeeScript.py
    │   │   │   ├── LexerContainer.py
    │   │   │   ├── LexerCPP.py
    │   │   │   ├── LexerCSharp.py
    │   │   │   ├── LexerCSS.py
    │   │   │   ├── LexerDiff.py
    │   │   │   ├── LexerD.py
    │   │   │   ├── LexerFortran77.py
    │   │   │   ├── LexerFortran.py
    │   │   │   ├── LexerHTML.py
    │   │   │   ├── LexerIDL.py
    │   │   │   ├── LexerJava.py
    │   │   │   ├── LexerJavaScript.py
    │   │   │   ├── LexerJSON.py
    │   │   │   ├── LexerLua.py
    │   │   │   ├── LexerMakefile.py
    │   │   │   ├── LexerMarkdown.py
    │   │   │   ├── LexerMatlab.py
    │   │   │   ├── LexerOctave.py
    │   │   │   ├── LexerPascal.py
    │   │   │   ├── LexerPerl.py
    │   │   │   ├── LexerPO.py
    │   │   │   ├── LexerPostScript.py
    │   │   │   ├── LexerPOV.py
    │   │   │   ├── LexerProperties.py
    │   │   │   ├── Lexer.py
    │   │   │   ├── LexerPygments.py
    │   │   │   ├── LexerPython.py
    │   │   │   ├── LexerQSS.py
    │   │   │   ├── LexerRuby.py
    │   │   │   ├── LexerSQL.py
    │   │   │   ├── LexerTCL.py
    │   │   │   ├── LexerTeX.py
    │   │   │   ├── LexerVHDL.py
    │   │   │   ├── LexerXML.py
    │   │   │   └── LexerYAML.py
    │   │   ├── MarkupProviders
    │   │   │   ├── HtmlProvider.py
    │   │   │   ├── HyperlinkMarkupDialog.py
    │   │   │   ├── HyperlinkMarkupDialog.ui
    │   │   │   ├── ImageMarkupDialog.py
    │   │   │   ├── ImageMarkupDialog.ui
    │   │   │   ├── __init__.py
    │   │   │   ├── MarkdownProvider.py
    │   │   │   ├── MarkupBase.py
    │   │   │   └── RestructuredTextProvider.py
    │   │   ├── MiniEditor.py
    │   │   ├── Printer.py
    │   │   ├── QsciScintillaCompat.py
    │   │   ├── ReplaceWidget.ui
    │   │   ├── SearchReplaceWidget.py
    │   │   ├── SearchWidget.ui
    │   │   ├── ShellHistoryDialog.py
    │   │   ├── ShellHistoryDialog.ui
    │   │   ├── Shell.py
    │   │   ├── ShellWindow.py
    │   │   ├── SortOptionsDialog.py
    │   │   ├── SortOptionsDialog.ui
    │   │   ├── SpellChecker.py
    │   │   ├── SpellCheckingDialog.py
    │   │   ├── SpellCheckingDialog.ui
    │   │   ├── SpellingDictionaryEditDialog.py
    │   │   ├── SpellingDictionaryEditDialog.ui
    │   │   ├── TypingCompleters
    │   │   │   ├── CompleterBase.py
    │   │   │   ├── CompleterPython.py
    │   │   │   ├── CompleterRuby.py
    │   │   │   └── __init__.py
    │   │   ├── ZoomDialog.py
    │   │   └── ZoomDialog.ui
    │   ├── README-eric6-doc.rst
    │   ├── README-i18n.rst
    │   ├── README-MacOSX.rst
    │   ├── README-passive-debugging.rst
    │   ├── README.rst
    │   ├── Snapshot
    │   │   ├── __init__.py
    │   │   ├── SnapshotFreehandGrabber.py
    │   │   ├── SnapshotPreview.py
    │   │   ├── SnapshotRegionGrabber.py
    │   │   ├── SnapshotTimer.py
    │   │   ├── SnapWidget.py
    │   │   └── SnapWidget.ui
    │   ├── SqlBrowser
    │   │   ├── __init__.py
    │   │   ├── SqlBrowser.py
    │   │   ├── SqlBrowserWidget.py
    │   │   ├── SqlBrowserWidget.ui
    │   │   ├── SqlConnectionDialog.py
    │   │   ├── SqlConnectionDialog.ui
    │   │   └── SqlConnectionWidget.py
    │   ├── Styles
    │   │   ├── No_Single_Click_Activation.qss
    │   │   └── Pure_Technology_Dark.qss
    │   ├── Tasks
    │   │   ├── __init__.py
    │   │   ├── TaskFilterConfigDialog.py
    │   │   ├── TaskFilterConfigDialog.ui
    │   │   ├── TaskFilter.py
    │   │   ├── TaskPropertiesDialog.py
    │   │   ├── TaskPropertiesDialog.ui
    │   │   ├── Task.py
    │   │   └── TaskViewer.py
    │   ├── Templates
    │   │   ├── __init__.py
    │   │   ├── TemplateMultipleVariablesDialog.py
    │   │   ├── TemplatePropertiesDialog.py
    │   │   ├── TemplatePropertiesDialog.ui
    │   │   ├── TemplateSingleVariableDialog.py
    │   │   ├── TemplateSingleVariableDialog.ui
    │   │   └── TemplateViewer.py
    │   ├── THANKS
    │   ├── ThirdParty
    │   │   ├── CharDet
    │   │   │   ├── chardet
    │   │   │   │   ├── big5freq.py
    │   │   │   │   ├── big5prober.py
    │   │   │   │   ├── chardistribution.py
    │   │   │   │   ├── charsetgroupprober.py
    │   │   │   │   ├── charsetprober.py
    │   │   │   │   ├── cli
    │   │   │   │   │   ├── chardetect.py
    │   │   │   │   │   └── __init__.py
    │   │   │   │   ├── codingstatemachine.py
    │   │   │   │   ├── compat.py
    │   │   │   │   ├── cp949prober.py
    │   │   │   │   ├── enums.py
    │   │   │   │   ├── escprober.py
    │   │   │   │   ├── escsm.py
    │   │   │   │   ├── eucjpprober.py
    │   │   │   │   ├── euckrfreq.py
    │   │   │   │   ├── euckrprober.py
    │   │   │   │   ├── euctwfreq.py
    │   │   │   │   ├── euctwprober.py
    │   │   │   │   ├── gb2312freq.py
    │   │   │   │   ├── gb2312prober.py
    │   │   │   │   ├── hebrewprober.py
    │   │   │   │   ├── __init__.py
    │   │   │   │   ├── jisfreq.py
    │   │   │   │   ├── jpcntx.py
    │   │   │   │   ├── langbulgarianmodel.py
    │   │   │   │   ├── langcyrillicmodel.py
    │   │   │   │   ├── langgreekmodel.py
    │   │   │   │   ├── langhebrewmodel.py
    │   │   │   │   ├── langhungarianmodel.py
    │   │   │   │   ├── langthaimodel.py
    │   │   │   │   ├── langturkishmodel.py
    │   │   │   │   ├── latin1prober.py
    │   │   │   │   ├── mbcharsetprober.py
    │   │   │   │   ├── mbcsgroupprober.py
    │   │   │   │   ├── mbcssm.py
    │   │   │   │   ├── sbcharsetprober.py
    │   │   │   │   ├── sbcsgroupprober.py
    │   │   │   │   ├── sjisprober.py
    │   │   │   │   ├── universaldetector.py
    │   │   │   │   ├── utf8prober.py
    │   │   │   │   └── version.py
    │   │   │   ├── __init__.py
    │   │   │   ├── LICENSE
    │   │   │   └── README.rst
    │   │   ├── enum
    │   │   │   ├── __init__.py
    │   │   │   └── LICENSE
    │   │   ├── __init__.py
    │   │   ├── Jasy
    │   │   │   ├── __init__.py
    │   │   │   └── jasy
    │   │   │       ├── core
    │   │   │       │   ├── Console.py
    │   │   │       │   └── __init__.py
    │   │   │       ├── __init__.py
    │   │   │       ├── js
    │   │   │       │   ├── api
    │   │   │       │   │   ├── Comment.py
    │   │   │       │   │   ├── __init__.py
    │   │   │       │   │   └── Text.py
    │   │   │       │   ├── __init__.py
    │   │   │       │   ├── parse
    │   │   │       │   │   ├── __init__.py
    │   │   │       │   │   ├── Node.py
    │   │   │       │   │   ├── Parser.py
    │   │   │       │   │   └── VanillaBuilder.py
    │   │   │       │   ├── tokenize
    │   │   │       │   │   ├── __init__.py
    │   │   │       │   │   ├── Lang.py
    │   │   │       │   │   └── Tokenizer.py
    │   │   │       │   └── util
    │   │   │       │       └── __init__.py
    │   │   │       ├── license.md
    │   │   │       └── parse
    │   │   │           ├── AbstractNode.py
    │   │   │           └── __init__.py
    │   │   ├── Pygments
    │   │   │   ├── __init__.py
    │   │   │   └── pygments
    │   │   │       ├── AUTHORS
    │   │   │       ├── CHANGES
    │   │   │       ├── cmdline.py
    │   │   │       ├── console.py
    │   │   │       ├── filter.py
    │   │   │       ├── filters
    │   │   │       │   └── __init__.py
    │   │   │       ├── formatter.py
    │   │   │       ├── formatters
    │   │   │       │   ├── bbcode.py
    │   │   │       │   ├── html.py
    │   │   │       │   ├── img.py
    │   │   │       │   ├── __init__.py
    │   │   │       │   ├── irc.py
    │   │   │       │   ├── latex.py
    │   │   │       │   ├── _mapping.py
    │   │   │       │   ├── other.py
    │   │   │       │   ├── rtf.py
    │   │   │       │   ├── svg.py
    │   │   │       │   ├── terminal256.py
    │   │   │       │   └── terminal.py
    │   │   │       ├── __init__.py
    │   │   │       ├── lexer.py
    │   │   │       ├── lexers
    │   │   │       │   ├── actionscript.py
    │   │   │       │   ├── agile.py
    │   │   │       │   ├── algebra.py
    │   │   │       │   ├── ambient.py
    │   │   │       │   ├── ampl.py
    │   │   │       │   ├── apl.py
    │   │   │       │   ├── archetype.py
    │   │   │       │   ├── asm.py
    │   │   │       │   ├── _asy_builtins.py
    │   │   │       │   ├── automation.py
    │   │   │       │   ├── basic.py
    │   │   │       │   ├── bibtex.py
    │   │   │       │   ├── business.py
    │   │   │       │   ├── capnproto.py
    │   │   │       │   ├── c_cpp.py
    │   │   │       │   ├── chapel.py
    │   │   │       │   ├── _cl_builtins.py
    │   │   │       │   ├── clean.py
    │   │   │       │   ├── c_like.py
    │   │   │       │   ├── _cocoa_builtins.py
    │   │   │       │   ├── compiled.py
    │   │   │       │   ├── configs.py
    │   │   │       │   ├── console.py
    │   │   │       │   ├── crystal.py
    │   │   │       │   ├── _csound_builtins.py
    │   │   │       │   ├── csound.py
    │   │   │       │   ├── css.py
    │   │   │       │   ├── dalvik.py
    │   │   │       │   ├── data.py
    │   │   │       │   ├── diff.py
    │   │   │       │   ├── dotnet.py
    │   │   │       │   ├── d.py
    │   │   │       │   ├── dsls.py
    │   │   │       │   ├── dylan.py
    │   │   │       │   ├── ecl.py
    │   │   │       │   ├── eiffel.py
    │   │   │       │   ├── elm.py
    │   │   │       │   ├── erlang.py
    │   │   │       │   ├── esoteric.py
    │   │   │       │   ├── ezhil.py
    │   │   │       │   ├── factor.py
    │   │   │       │   ├── fantom.py
    │   │   │       │   ├── felix.py
    │   │   │       │   ├── forth.py
    │   │   │       │   ├── fortran.py
    │   │   │       │   ├── foxpro.py
    │   │   │       │   ├── functional.py
    │   │   │       │   ├── go.py
    │   │   │       │   ├── grammar_notation.py
    │   │   │       │   ├── graphics.py
    │   │   │       │   ├── graph.py
    │   │   │       │   ├── haskell.py
    │   │   │       │   ├── haxe.py
    │   │   │       │   ├── hdl.py
    │   │   │       │   ├── hexdump.py
    │   │   │       │   ├── html.py
    │   │   │       │   ├── idl.py
    │   │   │       │   ├── igor.py
    │   │   │       │   ├── inferno.py
    │   │   │       │   ├── __init__.py
    │   │   │       │   ├── installers.py
    │   │   │       │   ├── int_fiction.py
    │   │   │       │   ├── iolang.py
    │   │   │       │   ├── javascript.py
    │   │   │       │   ├── j.py
    │   │   │       │   ├── julia.py
    │   │   │       │   ├── jvm.py
    │   │   │       │   ├── _lasso_builtins.py
    │   │   │       │   ├── lisp.py
    │   │   │       │   ├── _lua_builtins.py
    │   │   │       │   ├── make.py
    │   │   │       │   ├── _mapping.py
    │   │   │       │   ├── markup.py
    │   │   │       │   ├── math.py
    │   │   │       │   ├── matlab.py
    │   │   │       │   ├── ml.py
    │   │   │       │   ├── modeling.py
    │   │   │       │   ├── modula2.py
    │   │   │       │   ├── monte.py
    │   │   │       │   ├── _mql_builtins.py
    │   │   │       │   ├── ncl.py
    │   │   │       │   ├── nimrod.py
    │   │   │       │   ├── nit.py
    │   │   │       │   ├── nix.py
    │   │   │       │   ├── oberon.py
    │   │   │       │   ├── objective.py
    │   │   │       │   ├── ooc.py
    │   │   │       │   ├── _openedge_builtins.py
    │   │   │       │   ├── other.py
    │   │   │       │   ├── parasail.py
    │   │   │       │   ├── parsers.py
    │   │   │       │   ├── pascal.py
    │   │   │       │   ├── pawn.py
    │   │   │       │   ├── perl.py
    │   │   │       │   ├── _php_builtins.py
    │   │   │       │   ├── php.py
    │   │   │       │   ├── _postgres_builtins.py
    │   │   │       │   ├── praat.py
    │   │   │       │   ├── prolog.py
    │   │   │       │   ├── python.py
    │   │   │       │   ├── qvt.py
    │   │   │       │   ├── rdf.py
    │   │   │       │   ├── rebol.py
    │   │   │       │   ├── resource.py
    │   │   │       │   ├── rnc.py
    │   │   │       │   ├── roboconf.py
    │   │   │       │   ├── robotframework.py
    │   │   │       │   ├── r.py
    │   │   │       │   ├── ruby.py
    │   │   │       │   ├── rust.py
    │   │   │       │   ├── sas.py
    │   │   │       │   ├── _scilab_builtins.py
    │   │   │       │   ├── scripting.py
    │   │   │       │   ├── shell.py
    │   │   │       │   ├── smalltalk.py
    │   │   │       │   ├── smv.py
    │   │   │       │   ├── snobol.py
    │   │   │       │   ├── _sourcemod_builtins.py
    │   │   │       │   ├── special.py
    │   │   │       │   ├── sql.py
    │   │   │       │   ├── _stan_builtins.py
    │   │   │       │   ├── _stata_builtins.py
    │   │   │       │   ├── stata.py
    │   │   │       │   ├── supercollider.py
    │   │   │       │   ├── tcl.py
    │   │   │       │   ├── templates.py
    │   │   │       │   ├── testing.py
    │   │   │       │   ├── textedit.py
    │   │   │       │   ├── textfmts.py
    │   │   │       │   ├── text.py
    │   │   │       │   ├── theorem.py
    │   │   │       │   ├── trafficscript.py
    │   │   │       │   ├── _tsql_builtins.py
    │   │   │       │   ├── typoscript.py
    │   │   │       │   ├── urbi.py
    │   │   │       │   ├── varnish.py
    │   │   │       │   ├── verification.py
    │   │   │       │   ├── _vim_builtins.py
    │   │   │       │   ├── webmisc.py
    │   │   │       │   ├── web.py
    │   │   │       │   ├── whiley.py
    │   │   │       │   └── x10.py
    │   │   │       ├── LICENSE
    │   │   │       ├── modeline.py
    │   │   │       ├── PKG-INFO
    │   │   │       ├── plugin.py
    │   │   │       ├── regexopt.py
    │   │   │       ├── scanner.py
    │   │   │       ├── sphinxext.py
    │   │   │       ├── style.py
    │   │   │       ├── styles
    │   │   │       │   ├── abap.py
    │   │   │       │   ├── algol_nu.py
    │   │   │       │   ├── algol.py
    │   │   │       │   ├── arduino.py
    │   │   │       │   ├── autumn.py
    │   │   │       │   ├── borland.py
    │   │   │       │   ├── bw.py
    │   │   │       │   ├── colorful.py
    │   │   │       │   ├── default.py
    │   │   │       │   ├── emacs.py
    │   │   │       │   ├── friendly.py
    │   │   │       │   ├── fruity.py
    │   │   │       │   ├── igor.py
    │   │   │       │   ├── __init__.py
    │   │   │       │   ├── lovelace.py
    │   │   │       │   ├── manni.py
    │   │   │       │   ├── monokai.py
    │   │   │       │   ├── murphy.py
    │   │   │       │   ├── native.py
    │   │   │       │   ├── paraiso_dark.py
    │   │   │       │   ├── paraiso_light.py
    │   │   │       │   ├── pastie.py
    │   │   │       │   ├── perldoc.py
    │   │   │       │   ├── rainbow_dash.py
    │   │   │       │   ├── rrt.py
    │   │   │       │   ├── sas.py
    │   │   │       │   ├── stata.py
    │   │   │       │   ├── tango.py
    │   │   │       │   ├── trac.py
    │   │   │       │   ├── vim.py
    │   │   │       │   ├── vs.py
    │   │   │       │   └── xcode.py
    │   │   │       ├── token.py
    │   │   │       ├── unistring.py
    │   │   │       └── util.py
    │   │   └── Send2Trash
    │   │       ├── __init__.py
    │   │       ├── LICENSE
    │   │       └── send2trash
    │   │           ├── compat.py
    │   │           ├── __init__.py
    │   │           ├── plat_gio.py
    │   │           ├── plat_osx.py
    │   │           ├── plat_other.py
    │   │           └── plat_win.py
    │   ├── Toolbox
    │   │   ├── __init__.py
    │   │   ├── PyQt4ImportHook.py
    │   │   ├── SingleApplication.py
    │   │   └── Startup.py
    │   ├── Tools
    │   │   ├── __init__.py
    │   │   ├── TrayStarter.py
    │   │   ├── TRPreviewer.py
    │   │   ├── TRSingleApplication.py
    │   │   └── UIPreviewer.py
    │   ├── UI
    │   │   ├── AuthenticationDialog.py
    │   │   ├── AuthenticationDialog.ui
    │   │   ├── BrowserModel.py
    │   │   ├── Browser.py
    │   │   ├── BrowserSortFilterProxyModel.py
    │   │   ├── ClearPrivateDataDialog.py
    │   │   ├── ClearPrivateDataDialog.ui
    │   │   ├── CompareDialog.py
    │   │   ├── CompareDialog.ui
    │   │   ├── Config.py
    │   │   ├── DeleteFilesConfirmationDialog.py
    │   │   ├── DeleteFilesConfirmationDialog.ui
    │   │   ├── DiffDialog.py
    │   │   ├── DiffDialog.ui
    │   │   ├── DiffHighlighter.py
    │   │   ├── EmailDialog.py
    │   │   ├── EmailDialog.ui
    │   │   ├── ErrorLogDialog.py
    │   │   ├── ErrorLogDialog.ui
    │   │   ├── FindFileDialog.py
    │   │   ├── FindFileDialog.ui
    │   │   ├── FindFileNameDialog.py
    │   │   ├── FindFileNameDialog.ui
    │   │   ├── Info.py
    │   │   ├── __init__.py
    │   │   ├── LogView.py
    │   │   ├── NotificationWidget.py
    │   │   ├── NotificationWidget.ui
    │   │   ├── NumbersWidget.py
    │   │   ├── NumbersWidget.ui
    │   │   ├── PixmapCache.py
    │   │   ├── Previewer.py
    │   │   ├── Previewers
    │   │   │   ├── __init__.py
    │   │   │   ├── PreviewerHTML.py
    │   │   │   ├── PreviewerQSS.py
    │   │   │   └── PreviewerQSS.ui
    │   │   ├── SearchWidgetLine.ui
    │   │   ├── SearchWidget.py
    │   │   ├── SearchWidget.ui
    │   │   ├── SplashScreen.py
    │   │   ├── SymbolsWidget.py
    │   │   ├── SymbolsWidget.ui
    │   │   └── UserInterface.py
    │   ├── uninstall-debugclients.py
    │   ├── uninstall.py
    │   ├── Utilities
    │   │   ├── AutoSaver.py
    │   │   ├── BackgroundClient.py
    │   │   ├── BackgroundService.py
    │   │   ├── binplistlib.py
    │   │   ├── ClassBrowsers
    │   │   │   ├── ClbrBaseClasses.py
    │   │   │   ├── idlclbr.py
    │   │   │   ├── __init__.py
    │   │   │   ├── jsclbr.py
    │   │   │   ├── pyclbr.py
    │   │   │   └── rbclbr.py
    │   │   ├── crypto
    │   │   │   ├── __init__.py
    │   │   │   ├── py3AES.py
    │   │   │   └── py3PBKDF2.py
    │   │   ├── FtpUtilities.py
    │   │   ├── __init__.py
    │   │   ├── MimeTypes.py
    │   │   ├── ModuleParser.py
    │   │   ├── MouseUtilities.py
    │   │   ├── PasswordChecker.py
    │   │   ├── PySideImporter.py
    │   │   └── uic.py
    │   ├── VCS
    │   │   ├── CommandOptionsDialog.py
    │   │   ├── CommandOptionsDialog.ui
    │   │   ├── __init__.py
    │   │   ├── ProjectBrowserHelper.py
    │   │   ├── ProjectHelper.py
    │   │   ├── RepositoryInfoDialog.py
    │   │   ├── RepositoryInfoDialog.ui
    │   │   ├── StatusMonitorLed.py
    │   │   ├── StatusMonitorThread.py
    │   │   └── VersionControl.py
    │   ├── ViewManager
    │   │   ├── BookmarkedFilesDialog.py
    │   │   ├── BookmarkedFilesDialog.ui
    │   │   ├── __init__.py
    │   │   └── ViewManager.py
    │   └── WebBrowser
    │       ├── AdBlock
    │       │   ├── AdBlockDialog.py
    │       │   ├── AdBlockDialog.ui
    │       │   ├── AdBlockExceptionsDialog.py
    │       │   ├── AdBlockExceptionsDialog.ui
    │       │   ├── AdBlockIcon.py
    │       │   ├── AdBlockManager.py
    │       │   ├── AdBlockPage.py
    │       │   ├── AdBlockRule.py
    │       │   ├── AdBlockSubscription.py
    │       │   ├── AdBlockTreeWidget.py
    │       │   ├── AdBlockUrlInterceptor.py
    │       │   └── __init__.py
    │       ├── AutoScroll
    │       │   ├── AutoScroller.py
    │       │   ├── FrameScroller.py
    │       │   └── __init__.py
    │       ├── Bookmarks
    │       │   ├── AddBookmarkDialog.py
    │       │   ├── AddBookmarkDialog.ui
    │       │   ├── BookmarkNode.py
    │       │   ├── BookmarkPropertiesDialog.py
    │       │   ├── BookmarkPropertiesDialog.ui
    │       │   ├── BookmarksDialog.py
    │       │   ├── BookmarksDialog.ui
    │       │   ├── BookmarksImportDialog.py
    │       │   ├── BookmarksImportDialog.ui
    │       │   ├── BookmarksImporters
    │       │   │   ├── BookmarksImporter.py
    │       │   │   ├── ChromeImporter.py
    │       │   │   ├── FirefoxImporter.py
    │       │   │   ├── HtmlImporter.py
    │       │   │   ├── IExplorerImporter.py
    │       │   │   ├── __init__.py
    │       │   │   ├── OperaImporter.py
    │       │   │   ├── SafariImporter.py
    │       │   │   └── XbelImporter.py
    │       │   ├── BookmarksManager.py
    │       │   ├── BookmarksMenu.py
    │       │   ├── BookmarksModel.py
    │       │   ├── BookmarksToolBar.py
    │       │   ├── DefaultBookmarks.qrc
    │       │   ├── DefaultBookmarks_rc.py
    │       │   ├── DefaultBookmarks.xbel
    │       │   ├── __init__.py
    │       │   ├── NsHtmlReader.py
    │       │   ├── NsHtmlWriter.py
    │       │   ├── XbelReader.py
    │       │   └── XbelWriter.py
    │       ├── ClosedTabsManager.py
    │       ├── CookieJar
    │       │   ├── CookieDetailsDialog.ui
    │       │   ├── CookieExceptionsModel.py
    │       │   ├── CookieJar.py
    │       │   ├── CookiesConfigurationDialog.py
    │       │   ├── CookiesConfigurationDialog.ui
    │       │   ├── CookiesDialog.py
    │       │   ├── CookiesDialog.ui
    │       │   ├── CookiesExceptionsDialog.py
    │       │   ├── CookiesExceptionsDialog.ui
    │       │   └── __init__.py
    │       ├── data
    │       │   ├── html
    │       │   │   ├── adblockPage.html
    │       │   │   ├── authenticationErrorPage.html
    │       │   │   ├── speeddialPage.html
    │       │   │   ├── startPage.html
    │       │   │   └── tabCrashPage.html
    │       │   ├── html.qrc
    │       │   ├── html_rc.py
    │       │   ├── icons
    │       │   │   ├── adBlockPlus16.png
    │       │   │   ├── adBlockPlus64.png
    │       │   │   ├── box-border-small.png
    │       │   │   ├── brokenPage.png
    │       │   │   ├── close.png
    │       │   │   ├── edit.png
    │       │   │   ├── ericWeb16.png
    │       │   │   ├── ericWeb32.png
    │       │   │   ├── loading.gif
    │       │   │   ├── plus.png
    │       │   │   ├── reload.png
    │       │   │   └── setting.png
    │       │   ├── icons.qrc
    │       │   ├── icons_rc.py
    │       │   ├── __init__.py
    │       │   ├── javascript
    │       │   │   ├── jquery.js
    │       │   │   ├── jquery-ui.js
    │       │   │   └── qwebchannel.js
    │       │   ├── javascript.qrc
    │       │   └── javascript_rc.py
    │       ├── Download
    │       │   ├── DownloadAskActionDialog.py
    │       │   ├── DownloadAskActionDialog.ui
    │       │   ├── DownloadItem.py
    │       │   ├── DownloadItem.ui
    │       │   ├── DownloadManager.py
    │       │   ├── DownloadManager.ui
    │       │   ├── DownloadModel.py
    │       │   ├── DownloadUtilities.py
    │       │   └── __init__.py
    │       ├── FeaturePermissions
    │       │   ├── FeaturePermissionBar.py
    │       │   ├── FeaturePermissionManager.py
    │       │   ├── FeaturePermissionsDialog.py
    │       │   ├── FeaturePermissionsDialog.ui
    │       │   └── __init__.py
    │       ├── Feeds
    │       │   ├── FeedEditDialog.py
    │       │   ├── FeedEditDialog.ui
    │       │   ├── FeedsDialog.py
    │       │   ├── FeedsDialog.ui
    │       │   ├── FeedsManager.py
    │       │   ├── FeedsManager.ui
    │       │   └── __init__.py
    │       ├── FlashCookieManager
    │       │   ├── FlashCookieManagerDialog.py
    │       │   ├── FlashCookieManagerDialog.ui
    │       │   ├── FlashCookieManager.py
    │       │   ├── FlashCookieNotification.py
    │       │   ├── FlashCookie.py
    │       │   ├── FlashCookieReader.py
    │       │   ├── FlashCookieUtilities.py
    │       │   └── __init__.py
    │       ├── GreaseMonkey
    │       │   ├── GreaseMonkeyAddScriptDialog.py
    │       │   ├── GreaseMonkeyAddScriptDialog.ui
    │       │   ├── GreaseMonkeyConfiguration
    │       │   │   ├── GreaseMonkeyConfigurationDialog.py
    │       │   │   ├── GreaseMonkeyConfigurationDialog.ui
    │       │   │   ├── GreaseMonkeyConfigurationListDelegate.py
    │       │   │   ├── GreaseMonkeyConfigurationListWidget.py
    │       │   │   ├── GreaseMonkeyConfigurationScriptInfoDialog.py
    │       │   │   ├── GreaseMonkeyConfigurationScriptInfoDialog.ui
    │       │   │   └── __init__.py
    │       │   ├── GreaseMonkeyDownloader.py
    │       │   ├── GreaseMonkeyJavaScript.py
    │       │   ├── GreaseMonkeyManager.py
    │       │   ├── GreaseMonkeyScript.py
    │       │   └── __init__.py
    │       ├── History
    │       │   ├── HistoryCompleter.py
    │       │   ├── HistoryDialog.py
    │       │   ├── HistoryDialog.ui
    │       │   ├── HistoryFilterModel.py
    │       │   ├── HistoryManager.py
    │       │   ├── HistoryMenu.py
    │       │   ├── HistoryModel.py
    │       │   ├── HistoryTreeModel.py
    │       │   └── __init__.py
    │       ├── ImageSearch
    │       │   ├── ImageSearchEngine.py
    │       │   └── __init__.py
    │       ├── __init__.py
    │       ├── JavaScript
    │       │   ├── ExternalJsObject.py
    │       │   ├── __init__.py
    │       │   ├── PasswordManagerJsObject.py
    │       │   └── StartPageJsObject.py
    │       ├── Navigation
    │       │   ├── __init__.py
    │       │   ├── NavigationBar.py
    │       │   ├── NavigationContainer.py
    │       │   └── ReloadStopButton.py
    │       ├── Network
    │       │   ├── EricSchemeHandler.py
    │       │   ├── __init__.py
    │       │   ├── NetworkManager.py
    │       │   ├── NetworkUrlInterceptor.py
    │       │   ├── QtHelpSchemeHandler.py
    │       │   ├── SendRefererWhitelistDialog.py
    │       │   ├── SendRefererWhitelistDialog.ui
    │       │   ├── SslErrorExceptionsDialog.py
    │       │   ├── SslErrorExceptionsDialog.ui
    │       │   └── UrlInterceptor.py
    │       ├── OpenSearch
    │       │   ├── DefaultSearchEngines
    │       │   │   ├── Amazoncom.xml
    │       │   │   ├── Bing.xml
    │       │   │   ├── DeEn_Beolingus.xml
    │       │   │   ├── DefaultSearchEngines.qrc
    │       │   │   ├── DefaultSearchEngines_rc.py
    │       │   │   ├── DuckDuckGo.xml
    │       │   │   ├── Facebook.xml
    │       │   │   ├── Google_Im_Feeling_Lucky.xml
    │       │   │   ├── Google.xml
    │       │   │   ├── __init__.py
    │       │   │   ├── LEO_DeuEng.xml
    │       │   │   ├── LinuxMagazin.xml
    │       │   │   ├── Reddit.xml
    │       │   │   ├── Wikia_en.xml
    │       │   │   ├── Wikia.xml
    │       │   │   ├── Wikipedia.xml
    │       │   │   ├── Wiktionary.xml
    │       │   │   ├── Yahoo.xml
    │       │   │   └── YouTube.xml
    │       │   ├── __init__.py
    │       │   ├── OpenSearchDialog.py
    │       │   ├── OpenSearchDialog.ui
    │       │   ├── OpenSearchEditDialog.py
    │       │   ├── OpenSearchEditDialog.ui
    │       │   ├── OpenSearchEngineAction.py
    │       │   ├── OpenSearchEngineModel.py
    │       │   ├── OpenSearchEngine.py
    │       │   ├── OpenSearchManager.py
    │       │   ├── OpenSearchReader.py
    │       │   └── OpenSearchWriter.py
    │       ├── PageScreenDialog.py
    │       ├── PageScreenDialog.ui
    │       ├── Passwords
    │       │   ├── __init__.py
    │       │   ├── LoginForm.py
    │       │   ├── PasswordManager.py
    │       │   ├── PasswordModel.py
    │       │   ├── PasswordReader.py
    │       │   ├── PasswordsDialog.py
    │       │   ├── PasswordsDialog.ui
    │       │   └── PasswordWriter.py
    │       ├── PersonalInformationManager
    │       │   ├── __init__.py
    │       │   ├── PersonalDataDialog.py
    │       │   ├── PersonalDataDialog.ui
    │       │   └── PersonalInformationManager.py
    │       ├── QtHelp
    │       │   ├── HelpDocsInstaller.py
    │       │   ├── HelpIndexWidget.py
    │       │   ├── HelpSearchWidget.py
    │       │   ├── HelpTocWidget.py
    │       │   ├── HelpTopicDialog.py
    │       │   ├── HelpTopicDialog.ui
    │       │   ├── __init__.py
    │       │   ├── QtHelpDocumentationDialog.py
    │       │   ├── QtHelpDocumentationDialog.ui
    │       │   ├── QtHelpDocumentationSelectionDialog.py
    │       │   ├── QtHelpDocumentationSelectionDialog.ui
    │       │   ├── QtHelpFiltersDialog.py
    │       │   └── QtHelpFiltersDialog.ui
    │       ├── SafeBrowsing
    │       │   ├── __init__.py
    │       │   ├── SafeBrowsingAPIClient.py
    │       │   ├── SafeBrowsingCache.py
    │       │   ├── SafeBrowsingDialog.py
    │       │   ├── SafeBrowsingDialog.ui
    │       │   ├── SafeBrowsingInfoWidget.py
    │       │   ├── SafeBrowsingLabel.py
    │       │   ├── SafeBrowsingManager.py
    │       │   ├── SafeBrowsingUrl.py
    │       │   └── SafeBrowsingUtilities.py
    │       ├── SearchWidget.py
    │       ├── SearchWidget.ui
    │       ├── Session
    │       │   ├── __init__.py
    │       │   ├── SessionManagerDialog.py
    │       │   ├── SessionManagerDialog.ui
    │       │   └── SessionManager.py
    │       ├── SiteInfo
    │       │   ├── __init__.py
    │       │   ├── SiteInfoDialog.py
    │       │   └── SiteInfoDialog.ui
    │       ├── SpeedDial
    │       │   ├── __init__.py
    │       │   ├── Page.py
    │       │   ├── PageThumbnailer.py
    │       │   ├── SpeedDial.py
    │       │   ├── SpeedDialReader.py
    │       │   └── SpeedDialWriter.py
    │       ├── SpellCheck
    │       │   ├── __init__.py
    │       │   ├── ManageDictionariesDialog.py
    │       │   └── ManageDictionariesDialog.ui
    │       ├── StatusBar
    │       │   ├── ImagesIcon.py
    │       │   ├── __init__.py
    │       │   ├── JavaScriptIcon.py
    │       │   ├── JavaScriptSettingsDialog.py
    │       │   ├── JavaScriptSettingsDialog.ui
    │       │   └── StatusBarIcon.py
    │       ├── Sync
    │       │   ├── DirectorySyncHandler.py
    │       │   ├── FtpSyncHandler.py
    │       │   ├── __init__.py
    │       │   ├── SyncAssistantDialog.py
    │       │   ├── SyncCheckPage.py
    │       │   ├── SyncCheckPage.ui
    │       │   ├── SyncDataPage.py
    │       │   ├── SyncDataPage.ui
    │       │   ├── SyncDirectorySettingsPage.py
    │       │   ├── SyncDirectorySettingsPage.ui
    │       │   ├── SyncEncryptionPage.py
    │       │   ├── SyncEncryptionPage.ui
    │       │   ├── SyncFtpSettingsPage.py
    │       │   ├── SyncFtpSettingsPage.ui
    │       │   ├── SyncGlobals.py
    │       │   ├── SyncHandler.py
    │       │   ├── SyncHostTypePage.py
    │       │   ├── SyncHostTypePage.ui
    │       │   └── SyncManager.py
    │       ├── TabManager
    │       │   ├── __init__.py
    │       │   └── TabManagerWidget.py
    │       ├── Tools
    │       │   ├── DelayedFileWatcher.py
    │       │   ├── FilePrinter.py
    │       │   ├── __init__.py
    │       │   ├── PrintToPdfDialog.py
    │       │   ├── PrintToPdfDialog.ui
    │       │   ├── Scripts.py
    │       │   ├── WebBrowserTools.py
    │       │   ├── WebHitTestResult.py
    │       │   ├── WebIconDialog.py
    │       │   ├── WebIconDialog.ui
    │       │   ├── WebIconLoader.py
    │       │   └── WebIconProvider.py
    │       ├── UrlBar
    │       │   ├── BookmarkActionSelectionDialog.py
    │       │   ├── BookmarkActionSelectionDialog.ui
    │       │   ├── BookmarkInfoDialog.py
    │       │   ├── BookmarkInfoDialog.ui
    │       │   ├── FavIconLabel.py
    │       │   ├── __init__.py
    │       │   ├── StackedUrlBar.py
    │       │   └── UrlBar.py
    │       ├── UserAgent
    │       │   ├── __init__.py
    │       │   ├── UserAgentDefaults.qrc
    │       │   ├── UserAgentDefaults_rc.py
    │       │   ├── UserAgentDefaults.xml
    │       │   ├── UserAgentManager.py
    │       │   ├── UserAgentMenu.py
    │       │   ├── UserAgentModel.py
    │       │   ├── UserAgentReader.py
    │       │   ├── UserAgentsDialog.py
    │       │   ├── UserAgentsDialog.ui
    │       │   └── UserAgentWriter.py
    │       ├── VirusTotal
    │       │   ├── __init__.py
    │       │   ├── VirusTotalApi.py
    │       │   ├── VirusTotalDomainReportDialog.py
    │       │   ├── VirusTotalDomainReportDialog.ui
    │       │   ├── VirusTotalIpReportDialog.py
    │       │   ├── VirusTotalIpReportDialog.ui
    │       │   ├── VirusTotalWhoisDialog.py
    │       │   └── VirusTotalWhoisDialog.ui
    │       ├── WebBrowserClearPrivateDataDialog.py
    │       ├── WebBrowserClearPrivateDataDialog.ui
    │       ├── WebBrowserJavaScriptConsole.py
    │       ├── WebBrowserLanguagesDialog.py
    │       ├── WebBrowserLanguagesDialog.ui
    │       ├── WebBrowserPage.py
    │       ├── WebBrowserSnap.py
    │       ├── WebBrowserTabBar.py
    │       ├── WebBrowserTabWidget.py
    │       ├── WebBrowserView.py
    │       ├── WebBrowserWebSearchWidget.py
    │       ├── WebBrowserWindow.py
    │       ├── WebInspector.py
    │       └── ZoomManager
    │           ├── __init__.py
    │           ├── ZoomManager.py
    │           ├── ZoomValuesDialog.py
    │           ├── ZoomValuesDialog.ui
    │           └── ZoomValuesModel.py
    ├── install-debugclients.py
    ├── install-i18n.py
    ├── install.py
    ├── LICENSE.GPL3
    ├── patch_modpython.py
    ├── README-i18n.rst
    ├── README.rst
    ├── THANKS
    ├── uninstall-debugclients.py
    └── uninstall.py

201 directories, 4058 files

标签: python python py IC 工具

实例下载地址

eric6 python的好工具

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警