stefaneidelloth
stefaneidelloth
The generic "model not found error" can have many different origins. For example, for me the issue was that another extension screwed up the JavaScript part by adapting the requirejs...
The conflict is caused by: sphinx 6.2.1 depends on docutils=0.18.1 myst-parser 2.0.0 depends on docutils=0.16 sphinx-rtd-theme 1.0.0 depends on docutils
> @stefaneidelloth if you can run sphinx-rtd-theme in version 1.2.x, you shouldn't have that version conflict as it supports docutils 0.18.x. Thank you for the hint. Following seems to be...
The appearance of the chart seems to be "hard coded" in JavaScript: https://github.com/projectmesa/mesa-geo/blob/master/mesa_geo/visualization/templates/js/ChartModule.js `chart.data.labels.push(control.tick);` The global variable "control" and the tick values are defined in https://github.com/projectmesa/mesa-geo/blob/f5dc628c3674c7faa42c3a4d2053d6cc69f6fa5e/mesa_geo/visualization/templates/js/runcontrol.js var control = new...
No, see for example https://github.com/ngduc/react-tabulator/issues/238 I try to use Tabulator directly. However, that also causes some issues: https://stackoverflow.com/questions/74692822/how-to-use-third-party-libraries-with-react-functional-components
GoldenLayout introduced braking changes and never completed/updated the documentation web page. In order to get a bundle that can be used without webpack you need to: * clone https://github.com/golden-layout/golden-layout.git *...
As a workaround I added following line in my code `os.path.sep = os.sep # fixes tornado issue`
I agree that the content of requirements.txt should be moved to pyproject.toml Either as an extra section or with a way to specify both, non-pinned and pinned versions for a...
Thank you. As an alternative I found the FileDialog helpers. https://jupyterlab.readthedocs.io/en/stable/developer/ui_helpers.html ``` var { FileDialog } = require('@jupyterlab/filebrowser'); var { IDocumentManager } = require ('@jupyterlab/docmanager'); ``` ... ``` async browseFilePath(initialDirectory,...
Got it working using my own links. (Replace http://**myserver** with your server if you want to use this example) ``` ## Macro name: adoc ## Macro title: AsciiDoc Markup with...