Matthew X. Economou
Matthew X. Economou
## Code Version master (v3.4.8) ## Expected Behavior I should be able to host SATOSA at any valid URL path, e.g., setting **BASE** to `https://federation.example.com/satosa`. Likewise, the following values of...
I want to be able to open my Python projects in Emacs and automatically set up a virtual environment—but just for project-related buffers! To accomplish that, I've enabled the pyvenv...
Formulas iterating over dictionaries should use the `items()` method instead of `iteritems()` because the latter method has been [removed from Python 3](https://docs.python.org/3/library/2to3.html#2to3fixer-dict). While the `items()` method in Python 2 uses...
Formulas iterating over dictionaries should use the `items()` method instead of `iteritems()` because the latter method has been [removed from Python 3](https://docs.python.org/3/library/2to3.html#2to3fixer-dict). While the `items()` method in Python 2 uses...
When overwriting the existing salt-minion configuration, the Windows installer does not delete `c:\salt\conf\pki\minion\minion_master.pub`. This breaks changes to the master IP or hostname when the new master has a different key...
[Flask 2.3.0](https://flask.palletsprojects.com/en/3.0.x/changes/#version-2-3-0) deprecated its Markup class in favor of of MarkupSafe. This causes an import error when using Flask-FomanticUI with newer Flask releases. Fixes juniors90/Flask-FomanticUI#3
With the latest version of Flask installed (e.g., version 3.0.3), Python signals an import error when importing Flask-FomanticUI: ``` src/app.py:24: in from flask_fomanticui import FomanticUI .venv/lib/python3.11/site-packages/flask_fomanticui/__init__.py:35: in from .core import...