summaryrefslogtreecommitdiff
path: root/docs/glossary.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-11-21 14:12:47 -0800
committerSteve Piercy <web@stevepiercy.com>2018-11-21 14:12:47 -0800
commit28f24e7592fc5a7fd28874e9a350f80674583471 (patch)
tree02e402ea6276267ac33884e505ad74a31e70bee9 /docs/glossary.rst
parent403fd94b39954a1587f2236f8a3ddd2514e8ecb0 (diff)
parent57c9362fb214e926f535961f3a78c54e0cce15ba (diff)
downloadpyramid-28f24e7592fc5a7fd28874e9a350f80674583471.tar.gz
pyramid-28f24e7592fc5a7fd28874e9a350f80674583471.tar.bz2
pyramid-28f24e7592fc5a7fd28874e9a350f80674583471.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'docs/glossary.rst')
-rw-r--r--docs/glossary.rst12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
index f42b298df..7f396dc7d 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -1207,3 +1207,15 @@ Glossary
route prefix
A route prefix is a path prefix that is prepended to any routes that are configured while it is active.
A route prefix can be set via :meth:`pyramid.config.Configurator.include` or :meth:`pyramid.config.Configurator.route_prefix_context`.
+
+ commit
+ An operation applied to a :term:`configurator`.
+ A commit checks for conflicts in :term:`configuration declaration`\s, and if none are found applies all pending :term:`action`\s.
+ It is possible, although not necessarily recommended, to invoke :term:`commit`\s using :meth:`pyramid.config.Configurator.commit` to :ref:`manually resolve <manually_resolving_conflicts>` configuration conflicts.
+
+ settings
+ Settings control the runtime behavior of a Pyramid application.
+ They are the aggregation of configuration file declarations, process environment values, other additions generated by Pyramid or its add-ons and :term:`tween`\s, and values produced by your own code.
+ Settings are collected at application startup.
+ They can affect all the components which make up the the application.
+ Pyramid itself, any tweens or Pyramid add-ons used, and :ref:`your own code may reference <deployment_settings>` and act on settings.