summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/glossary.rst11
-rw-r--r--docs/narr/commandline.rst2
-rw-r--r--docs/pscripts/pcreate.rst9
-rw-r--r--docs/tutorials/wiki/NOTE-relocatable.txt7
4 files changed, 5 insertions, 24 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
index e5566a229..4668efe6d 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -1005,15 +1005,6 @@ Glossary
:term:`cookiecutter`. For more information, see
https://docs.pylonsproject.org/projects/pyramid_debugtoolbar/en/latest/.
- scaffold
- A project template that generates some of the major parts of a Pyramid
- application and helps users to quickly get started writing larger
- applications. Scaffolds are usually used via the ``pcreate`` command.
-
- .. deprecated:: 1.8
-
- .. seealso:: See also :term:`cookiecutter`.
-
pyramid_exclog
A package which logs Pyramid application exception (error) information
to a standard Python logger. This add-on is most useful when
@@ -1162,8 +1153,6 @@ Glossary
``pyramid-cookiecutter-alchemy`` and ``pyramid-cookiecutter-zodb`` are no longer supported.
Use ``pyramid-cookiecutter-starter`` going forward.
- .. seealso:: See also :term:`scaffold`.
-
coverage
A measurement of code coverage, usually expressed as a percentage of which lines of code have been executed over which lines are executable, typically run during test execution.
diff --git a/docs/narr/commandline.rst b/docs/narr/commandline.rst
index 7af6bba43..b571a7d7b 100644
--- a/docs/narr/commandline.rst
+++ b/docs/narr/commandline.rst
@@ -1131,6 +1131,6 @@ start with either ``foo`` or ``bar``:
reload_assets False
prevent_http_cache False
-Pyramid's ``pserve``, ``pcreate``, ``pshell``, ``prequest``, ``ptweens``, and
+Pyramid's ``pserve``, ``pshell``, ``prequest``, ``ptweens``, and
other ``p*`` scripts are implemented as console scripts. When you invoke one
of those, you are using a console script.
diff --git a/docs/pscripts/pcreate.rst b/docs/pscripts/pcreate.rst
deleted file mode 100644
index e2c45626a..000000000
--- a/docs/pscripts/pcreate.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-.. index::
- single: pcreate; --help
-
-.. _pcreate_script:
-
-.. autoprogram:: pyramid.scripts.pcreate:PCreateCommand.parser
- :prog: pcreate
-
-.. seealso:: :ref:`creating_a_project` and :ref:`running-pscripts`.
diff --git a/docs/tutorials/wiki/NOTE-relocatable.txt b/docs/tutorials/wiki/NOTE-relocatable.txt
index e942caba8..c3f30af51 100644
--- a/docs/tutorials/wiki/NOTE-relocatable.txt
+++ b/docs/tutorials/wiki/NOTE-relocatable.txt
@@ -1,6 +1,7 @@
We specifically use relative package references where possible so this demo
-works even if the user names their package (in the '$VENV/bin/pcreate -s
-zodb ...' step) something other than 'tutorial'.
+works even if the user names their package (in the
+'cookiecutter gh:Pylons/pyramid-cookiecutter-starter' step) something other
+than 'tutorial'.
Specifically:
@@ -9,5 +10,5 @@ Specifically:
page templates.
Direct uses of the package name, like in __init__.py 'config.scan()'
-statements, are already adjusted by the paster/pcreate, so we don't have to
+statements, are already adjusted by the cookiecutter, so we don't have to
worry about them.