Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
Choose a Base Repository
Pylons/waitress
BenAllums/waitress
Flimm/waitress
ImaduddinAMajid/waitress
Inventorum/waitress
JAVTAMVI/waitress
JasonOldWoo/waitress
Kaemka/waitress
Kerydwen/waitress
LuciferJack/waitress
Menhirs-Screeps/waitress
Natim/waitress
NotBobTheBuilder/waitress
Preston-Landers/waitress
SixiemeEtage/waitress
ajmitch/waitress
aktiur/waitress
alexanderlukanin13/waitress
anthrax3/waitress
aodag/waitress
aragilar/waitress
atorkhov/waitress
baijum/waitress
bertjwregeer/waitress
bostrick/waitress
bwarren2/waitress
carriercomm/waitress
caseylitton/waitress
csingley/waitress
dalavanmanphonsy/waitress
dbaty/waitress
defnull/waitress
domruf/waitress
dude0815/waitress
e42s/waitress
ehsan-keshavarzian/waitress
eli-collins/waitress
ericatkin/waitress
ewdurbin/waitress
frankdarcy/waitress
gjo/waitress
grf123/waitress
hathawsh/waitress
j4mie/waitress
jenniemanphonsy/waitress
jmwhitfi/waitress
jor123/waitress
jorgeelas/waitress
k0s/waitress
kaymccormick/waitress
kevinelong/waitress
kpinc/waitress
levigross/waitress
lifuzu/waitress
lordjabez/waitress
madjar/waitress
malor/waitress
marcinkuzminski/waitress
mgedmin/waitress
mikeckennedy/waitress
mindchasers/waitress
mjstephan/waitress
msabramo/waitress
olt/waitress
pomarec/waitress
python-oz/waitress
rcoor/waitress
rmiyashiro/waitress
robertlagrant/waitress
rsiemens/waitress
saschagottfried/waitress
sephialife/waitress
sheepcat/waitress
sideffect0/waitress
stevepiercy/waitress
tarekziade/waitress
tshepang/waitress
vinitkumar/waitress
wwitzel3/waitress
xetch/waitress
yuzhougit/waitress
Nothing to show
Choose a Head Repository
Pylons/waitress
BenAllums/waitress
Flimm/waitress
ImaduddinAMajid/waitress
Inventorum/waitress
JAVTAMVI/waitress
JasonOldWoo/waitress
Kaemka/waitress
Kerydwen/waitress
LuciferJack/waitress
Menhirs-Screeps/waitress
Natim/waitress
NotBobTheBuilder/waitress
Preston-Landers/waitress
SixiemeEtage/waitress
ajmitch/waitress
aktiur/waitress
alexanderlukanin13/waitress
anthrax3/waitress
aodag/waitress
aragilar/waitress
atorkhov/waitress
baijum/waitress
bertjwregeer/waitress
bostrick/waitress
bwarren2/waitress
carriercomm/waitress
caseylitton/waitress
csingley/waitress
dalavanmanphonsy/waitress
dbaty/waitress
defnull/waitress
domruf/waitress
dude0815/waitress
e42s/waitress
ehsan-keshavarzian/waitress
eli-collins/waitress
ericatkin/waitress
ewdurbin/waitress
frankdarcy/waitress
gjo/waitress
grf123/waitress
hathawsh/waitress
j4mie/waitress
jenniemanphonsy/waitress
jmwhitfi/waitress
jor123/waitress
jorgeelas/waitress
k0s/waitress
kaymccormick/waitress
kevinelong/waitress
kpinc/waitress
levigross/waitress
lifuzu/waitress
lordjabez/waitress
madjar/waitress
malor/waitress
marcinkuzminski/waitress
mgedmin/waitress
mikeckennedy/waitress
mindchasers/waitress
mjstephan/waitress
msabramo/waitress
olt/waitress
pomarec/waitress
python-oz/waitress
rcoor/waitress
rmiyashiro/waitress
robertlagrant/waitress
rsiemens/waitress
saschagottfried/waitress
sephialife/waitress
sheepcat/waitress
sideffect0/waitress
stevepiercy/waitress
tarekziade/waitress
tshepang/waitress
vinitkumar/waitress
wwitzel3/waitress
xetch/waitress
yuzhougit/waitress
Nothing to show
  • 1 commit
  • 1 file changed
  • 0 commit comments
  • 1 contributor
Commits on Sep 22, 2018
Add versionchanged to asyncore entry.
Add wasyncore entry.
Rewrap for clear, consistent indentation.
Showing with 29 additions and 22 deletions.
  1. +29 −22 docs/glossary.rst
View
@@ -4,25 +4,32 @@ Glossary
========
.. glossary::
:sorted:
PasteDeploy
A system for configuration of WSGI web components in declarative
``.ini`` format. See https://web.archive.org/web/20161029233359/http://pythonpaste.org/deploy/.
asyncore
A Python standard library module for asynchronous communications. See :mod:`asyncore`.
middleware
*Middleware* is a :term:`WSGI` concept. It is a WSGI component
that acts both as a server and an application. Interesting uses
for middleware exist, such as caching, content-transport
encoding, and other functions. See `WSGI.org <https://wsgi.readthedocs.io/en/latest/>`_
or `PyPI <https://pypi.org/search/?c=Topic+%3A%3A+Internet+%3A%3A+WWW%2FHTTP+%3A%3A+WSGI+%3A%3A+Middleware>`_ to find middleware for your
application.
WSGI
`Web Server Gateway Interface <https://wsgi.readthedocs.io/en/latest/>`_. This is a
Python standard for connecting web applications to web servers,
similar to the concept of Java Servlets. Waitress requires
that your application be served as a WSGI application.
:sorted:
PasteDeploy
A system for configuration of WSGI web components in declarative ``.ini`` format.
See https://web.archive.org/web/20161029233359/http://pythonpaste.org/deploy/.
asyncore
A Python standard library module for asynchronous communications. See :mod:`asyncore`.
.. versionchanged:: 1.2.0
Waitress has now "vendored" asyncore into itself as ``waitress.wasyncore``.
This is to cope with the eventuality that asyncore will be removed from the Python standard library in Python 3.8 or so.
middleware
*Middleware* is a :term:`WSGI` concept.
It is a WSGI component that acts both as a server and an application.
Interesting uses for middleware exist, such as caching, content-transport encoding, and other functions.
See `WSGI.org <https://wsgi.readthedocs.io/en/latest/>`_ or `PyPI <https://pypi.org/search/?c=Topic+%3A%3A+Internet+%3A%3A+WWW%2FHTTP+%3A%3A+WSGI+%3A%3A+Middleware>`_ to find middleware for your application.
WSGI
`Web Server Gateway Interface <https://wsgi.readthedocs.io/en/latest/>`_.
This is a Python standard for connecting web applications to web servers, similar to the concept of Java Servlets.
Waitress requires that your application be served as a WSGI application.
wasyncore
.. versionchanged:: 1.2.0
Waitress has now "vendored" :term:`asyncore` into itself as ``waitress.wasyncore``.
This is to cope with the eventuality that ``asyncore`` will be removed from the Python standard library in Python 3.8 or so.

No commit comments for this range