├── .gitignore ├── INSTALL.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── bootstrap-LICENSE.txt ├── freecad └── extman │ ├── __init__.py │ ├── gui │ ├── __init__.py │ ├── browser.py │ ├── controller.py │ ├── router.py │ └── webview.py │ ├── init_gui.py │ ├── protocol │ ├── __init__.py │ ├── dependencies.py │ ├── fcwiki.py │ ├── flags.py │ ├── framagit.py │ ├── git.py │ ├── github.py │ ├── http.py │ ├── install.py │ ├── macro_parser.py │ ├── manifest.py │ └── zip.py │ ├── resources │ ├── data │ │ ├── flags.json │ │ └── sources.json │ ├── docs │ │ ├── ExtMan_Screenshot1.png │ │ ├── core-classes.png │ │ ├── core-classes.txt │ │ ├── gui-cycle.png │ │ ├── gui-cycle.txt │ │ └── workbenches.png │ ├── html │ │ ├── cloud │ │ │ ├── index.html │ │ │ ├── install.html │ │ │ ├── package_card.html │ │ │ ├── package_row.html │ │ │ ├── packages.html │ │ │ └── sources.html │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── extman.css │ │ ├── img │ │ │ ├── bootstrap │ │ │ │ ├── grid.svg │ │ │ │ ├── list.svg │ │ │ │ └── pencil.svg │ │ │ ├── flag_obsolete.svg │ │ │ ├── flag_py2only.svg │ │ │ ├── freecad.svg │ │ │ ├── freecad_cloud.svg │ │ │ ├── git.svg │ │ │ ├── macro_run.svg │ │ │ ├── package.svg │ │ │ ├── package_community.svg │ │ │ ├── package_core.svg │ │ │ ├── package_greyed.svg │ │ │ ├── package_install.svg │ │ │ ├── package_installed.svg │ │ │ ├── package_macro.svg │ │ │ ├── package_macro_badge.svg │ │ │ ├── package_mod.svg │ │ │ ├── package_source.svg │ │ │ ├── package_update.svg │ │ │ ├── package_workbench.svg │ │ │ ├── source_cloud.svg │ │ │ ├── source_cloud_fcwiki.svg │ │ │ ├── source_cloud_github.svg │ │ │ ├── source_installed.svg │ │ │ ├── wiki.svg │ │ │ └── workbench.svg │ │ ├── index.html │ │ ├── installed │ │ │ ├── package_card.html │ │ │ ├── package_row.html │ │ │ └── packages.html │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ ├── extman.js │ │ │ ├── extman_base.js │ │ │ ├── jquery.slim.min.js │ │ │ ├── marked.min.js │ │ │ └── popper.min.js │ ├── icons │ │ └── ExtManWorkbench.svg │ └── translations │ │ ├── ExtMan.qm │ │ └── ExtMan.ts │ ├── sources │ ├── __init__.py │ ├── source_cloud.py │ └── source_installed.py │ ├── template │ ├── __init__.py │ ├── html.py │ ├── html_cache.py │ ├── html_components.py │ └── html_utils.py │ └── utils │ ├── __init__.py │ ├── cache.py │ ├── cache_basic.py │ ├── preferences.py │ ├── pyutils.py │ └── worker.py ├── jquery-LICENSE.txt ├── manifest.ini ├── marked-LICENSE.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include freecad/extman/resources * 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/bootstrap-LICENSE.txt -------------------------------------------------------------------------------- /freecad/extman/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/__init__.py -------------------------------------------------------------------------------- /freecad/extman/gui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/gui/__init__.py -------------------------------------------------------------------------------- /freecad/extman/gui/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/gui/browser.py -------------------------------------------------------------------------------- /freecad/extman/gui/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/gui/controller.py -------------------------------------------------------------------------------- /freecad/extman/gui/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/gui/router.py -------------------------------------------------------------------------------- /freecad/extman/gui/webview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/gui/webview.py -------------------------------------------------------------------------------- /freecad/extman/init_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/init_gui.py -------------------------------------------------------------------------------- /freecad/extman/protocol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/protocol/__init__.py -------------------------------------------------------------------------------- /freecad/extman/protocol/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/protocol/dependencies.py -------------------------------------------------------------------------------- /freecad/extman/protocol/fcwiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/protocol/fcwiki.py -------------------------------------------------------------------------------- /freecad/extman/protocol/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/protocol/flags.py -------------------------------------------------------------------------------- /freecad/extman/protocol/framagit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/protocol/framagit.py -------------------------------------------------------------------------------- /freecad/extman/protocol/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/protocol/git.py -------------------------------------------------------------------------------- /freecad/extman/protocol/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/protocol/github.py -------------------------------------------------------------------------------- /freecad/extman/protocol/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/protocol/http.py -------------------------------------------------------------------------------- /freecad/extman/protocol/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/protocol/install.py -------------------------------------------------------------------------------- /freecad/extman/protocol/macro_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/protocol/macro_parser.py -------------------------------------------------------------------------------- /freecad/extman/protocol/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/protocol/manifest.py -------------------------------------------------------------------------------- /freecad/extman/protocol/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/protocol/zip.py -------------------------------------------------------------------------------- /freecad/extman/resources/data/flags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/data/flags.json -------------------------------------------------------------------------------- /freecad/extman/resources/data/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/data/sources.json -------------------------------------------------------------------------------- /freecad/extman/resources/docs/ExtMan_Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/docs/ExtMan_Screenshot1.png -------------------------------------------------------------------------------- /freecad/extman/resources/docs/core-classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/docs/core-classes.png -------------------------------------------------------------------------------- /freecad/extman/resources/docs/core-classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/docs/core-classes.txt -------------------------------------------------------------------------------- /freecad/extman/resources/docs/gui-cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/docs/gui-cycle.png -------------------------------------------------------------------------------- /freecad/extman/resources/docs/gui-cycle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/docs/gui-cycle.txt -------------------------------------------------------------------------------- /freecad/extman/resources/docs/workbenches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/docs/workbenches.png -------------------------------------------------------------------------------- /freecad/extman/resources/html/cloud/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/cloud/index.html -------------------------------------------------------------------------------- /freecad/extman/resources/html/cloud/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/cloud/install.html -------------------------------------------------------------------------------- /freecad/extman/resources/html/cloud/package_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/cloud/package_card.html -------------------------------------------------------------------------------- /freecad/extman/resources/html/cloud/package_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/cloud/package_row.html -------------------------------------------------------------------------------- /freecad/extman/resources/html/cloud/packages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/cloud/packages.html -------------------------------------------------------------------------------- /freecad/extman/resources/html/cloud/sources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/cloud/sources.html -------------------------------------------------------------------------------- /freecad/extman/resources/html/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/css/bootstrap.min.css -------------------------------------------------------------------------------- /freecad/extman/resources/html/css/extman.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/css/extman.css -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/bootstrap/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/bootstrap/grid.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/bootstrap/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/bootstrap/list.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/bootstrap/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/bootstrap/pencil.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/flag_obsolete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/flag_obsolete.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/flag_py2only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/flag_py2only.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/freecad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/freecad.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/freecad_cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/freecad_cloud.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/git.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/macro_run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/macro_run.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/package.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/package_community.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/package_community.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/package_core.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/package_core.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/package_greyed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/package_greyed.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/package_install.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/package_install.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/package_installed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/package_installed.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/package_macro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/package_macro.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/package_macro_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/package_macro_badge.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/package_mod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/package_mod.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/package_source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/package_source.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/package_update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/package_update.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/package_workbench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/package_workbench.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/source_cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/source_cloud.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/source_cloud_fcwiki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/source_cloud_fcwiki.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/source_cloud_github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/source_cloud_github.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/source_installed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/source_installed.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/wiki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/wiki.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/img/workbench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/img/workbench.svg -------------------------------------------------------------------------------- /freecad/extman/resources/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/index.html -------------------------------------------------------------------------------- /freecad/extman/resources/html/installed/package_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/installed/package_card.html -------------------------------------------------------------------------------- /freecad/extman/resources/html/installed/package_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/installed/package_row.html -------------------------------------------------------------------------------- /freecad/extman/resources/html/installed/packages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/installed/packages.html -------------------------------------------------------------------------------- /freecad/extman/resources/html/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/js/bootstrap.min.js -------------------------------------------------------------------------------- /freecad/extman/resources/html/js/extman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/js/extman.js -------------------------------------------------------------------------------- /freecad/extman/resources/html/js/extman_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/js/extman_base.js -------------------------------------------------------------------------------- /freecad/extman/resources/html/js/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/js/jquery.slim.min.js -------------------------------------------------------------------------------- /freecad/extman/resources/html/js/marked.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/js/marked.min.js -------------------------------------------------------------------------------- /freecad/extman/resources/html/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/html/js/popper.min.js -------------------------------------------------------------------------------- /freecad/extman/resources/icons/ExtManWorkbench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/icons/ExtManWorkbench.svg -------------------------------------------------------------------------------- /freecad/extman/resources/translations/ExtMan.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/translations/ExtMan.qm -------------------------------------------------------------------------------- /freecad/extman/resources/translations/ExtMan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/resources/translations/ExtMan.ts -------------------------------------------------------------------------------- /freecad/extman/sources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/sources/__init__.py -------------------------------------------------------------------------------- /freecad/extman/sources/source_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/sources/source_cloud.py -------------------------------------------------------------------------------- /freecad/extman/sources/source_installed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/sources/source_installed.py -------------------------------------------------------------------------------- /freecad/extman/template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/template/__init__.py -------------------------------------------------------------------------------- /freecad/extman/template/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/template/html.py -------------------------------------------------------------------------------- /freecad/extman/template/html_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/template/html_cache.py -------------------------------------------------------------------------------- /freecad/extman/template/html_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/template/html_components.py -------------------------------------------------------------------------------- /freecad/extman/template/html_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/template/html_utils.py -------------------------------------------------------------------------------- /freecad/extman/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/utils/__init__.py -------------------------------------------------------------------------------- /freecad/extman/utils/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/utils/cache.py -------------------------------------------------------------------------------- /freecad/extman/utils/cache_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/utils/cache_basic.py -------------------------------------------------------------------------------- /freecad/extman/utils/preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/utils/preferences.py -------------------------------------------------------------------------------- /freecad/extman/utils/pyutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/utils/pyutils.py -------------------------------------------------------------------------------- /freecad/extman/utils/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/freecad/extman/utils/worker.py -------------------------------------------------------------------------------- /jquery-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/jquery-LICENSE.txt -------------------------------------------------------------------------------- /manifest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/manifest.ini -------------------------------------------------------------------------------- /marked-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/marked-LICENSE.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/FreeCAD_ExtMan/HEAD/setup.py --------------------------------------------------------------------------------