summaryrefslogtreecommitdiff
path: root/examples
Commit message (Collapse)AuthorAgeFilesLines
* Replace all `os.system` usage with `subprocess.call`Peter Law2022-06-231-2/+3
| | | | | | | | | | | | | This aims to fix intermittent build failures on some platforms (most notably Debian Bullseye) which appear to be due to the use of `os.system` from background threads. The exact nature of the issue is unclear, however moving to `subprocess.call` appears to fix it. Fixes https://github.com/unbit/uwsgi/issues/2447. While there's more that could be done here to modernise these calls, this aims to be a minimal change which introduces subprocess without much intrusion.
* update welcome.py, welcome3.py examplesDaniel Holth2020-06-062-48/+98
|
* Remove redundant default open mode 'r' from Python codeJon Dufresne2018-01-021-1/+1
| | | | | | | | | | | | In Python, open() opens files in read mode ('r') by default. Specifying it is unnecessary and simply adds noise. It is Pythonic to instead rely on this default value. See https://docs.python.org/3/library/functions.html#open > mode is an optional string that specifies the mode in which the file > is opened. It defaults to 'r' which means open for reading in text > mode.
* Fix a few typos.Chris Faulkner2017-10-131-1/+1
|
* Spelling fixesVille Skyttä2015-11-091-1/+1
|
* misc: Eliminate blind exceptsJakub Stasiak2015-10-292-10/+7
| | | | | | | | | | The motivation is explained in 89b3840ab5fe2560a0801f6318dfdc54696bb1fd. * Where I was fairly certain what exception is expected I replaced "except:" with "except SomeConcreteClass:" (or otherwise simplified the code) * Where I wasn't sure what exaclty is being expected I just put "except Exception:" to at least skip the "special" exceptions
* Tidy with flake8Curtis2015-04-1117-151/+169
|
* fixed scripts/tests making use of dynamic optionsUnbit2013-12-263-31/+0
|
* another mjpeg fixRoberto De Ioris2013-12-011-2/+2
|
* improved mjpeg exampleUnbit2013-11-301-3/+3
|
* ported mjpeg stream to newer osxRoberto De Ioris2013-11-281-4/+3
|
* fixed #99Unbit2013-09-195-0/+83
|
* more cleanupUnbit2013-09-195-0/+321
|
* mv againRoberto De Ioris2013-08-061-0/+22
|
* another series of mvRoberto De Ioris2013-08-062-0/+49
|
* moved example filesRoberto De Ioris2013-08-061-0/+36
|
* Add example configuration and XSL stylesheetGuido Berhoerster2013-07-202-0/+163
|
* another tests cleanupUnbit2013-06-151-0/+11
|
* support for lua ordered arrays in configurationsUnbit2013-03-282-0/+10
|
* added config.lua exampleUnbit2013-03-281-0/+7
|
* completeted the CoroAE plugin, added timers to the PSGI pluginUnbit2013-02-241-0/+77
|
* another cleanup [2]Roberto De Ioris2012-12-286-0/+174
|
* another cleanupRoberto De Ioris2012-12-286-0/+54
|
* moved uwsgirouter*.py to examplesRoberto De Ioris2012-12-285-0/+134
|
* moved config files example to examples/ dirroberto@quantal642012-07-0914-0/+313
--HG-- rename : debug.ini => examples/debug.ini rename : fibers.yml => examples/fibers.yml rename : heavytest.ini => examples/heavytest.ini rename : logic.ini => examples/logic.ini rename : mega.xml => examples/mega.xml rename : multi.ini => examples/multi.ini rename : multi.xml => examples/multi.xml rename : protected.ini => examples/protected.ini rename : sites.xml => examples/sites.xml rename : uwsgi.xml => examples/uwsgi.xml rename : welcome.ini => examples/welcome.ini rename : werkzeug.yml => examples/werkzeug.yml rename : werkzeug_strict.yml => examples/werkzeug_strict.yml rename : zmqgevent.ini => examples/zmqgevent.ini