summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorStephen Martin <lockwood@opperline.com>2018-09-17 13:49:04 -0700
committerStephen Martin <lockwood@opperline.com>2018-09-17 13:49:04 -0700
commit28e688f1a41215cb6167f8e53de017ddb82b552f (patch)
tree5059546f20ad72990e1fa1a66fa9bcff96d41daa /docs/narr
parentdfd0697dca6b0431b7d8398d93169c57be5b316b (diff)
downloadpyramid-28e688f1a41215cb6167f8e53de017ddb82b552f.tar.gz
pyramid-28e688f1a41215cb6167f8e53de017ddb82b552f.tar.bz2
pyramid-28e688f1a41215cb6167f8e53de017ddb82b552f.zip
name change
Diffstat (limited to 'docs/narr')
-rw-r--r--docs/narr/cookiecutters.rst4
-rw-r--r--docs/narr/project.rst14
2 files changed, 9 insertions, 9 deletions
diff --git a/docs/narr/cookiecutters.rst b/docs/narr/cookiecutters.rst
index aea118e2c..4af7b8df0 100644
--- a/docs/narr/cookiecutters.rst
+++ b/docs/narr/cookiecutters.rst
@@ -16,11 +16,11 @@ Pyramid cookiecutters
A :term:`cookiecutter` is a command-line utility that creates projects from :ref:`cookiecutters <cookiecutter:readme>` (project templates), e.g., creating a Python package project from a Python package project template.
-The unified cookiecutter ``pyramid-cookiecutter-theonecc`` merged features from the three previous cookiecutters which are now deprecated.
+The unified cookiecutter ``pyramid-cookiecutter-starter`` merged features from the three previous cookiecutters which are now deprecated.
The Pyramid cookiecutter has replaced the now deprecated Pyramid scaffolds, and should be used going forward and can be found here:
-* `pyramid-cookiecutter-theonecc <https://github.com/Pylons/pyramid-cookiecutter-theonecc>`_
+* `pyramid-cookiecutter-starter <https://github.com/Pylons/pyramid-cookiecutter-starter>`_
.. seealso::
diff --git a/docs/narr/project.rst b/docs/narr/project.rst
index e0d511fba..5560b02c0 100644
--- a/docs/narr/project.rst
+++ b/docs/narr/project.rst
@@ -28,7 +28,7 @@ This cookiecutter is rendered using the ``cookiecutter`` command that you may in
.. index::
single: cookiecutters
- single: pyramid-cookiecutter-theonecc
+ single: pyramid-cookiecutter-starter
.. _additional_cookiecutters:
@@ -43,7 +43,7 @@ The Pyramid cookiecutter released under the Pylons Project offers the following
- the mechanism of mapping URLs to code (:term:`URL dispatch` or :term:`traversal`)
-* `pyramid-cookiecutter-theonecc <https://github.com/Pylons/pyramid-cookiecutter-theonecc>`_
+* `pyramid-cookiecutter-starter <https://github.com/Pylons/pyramid-cookiecutter-starter>`_
All configuration options offer a choice of templating language.
@@ -83,13 +83,13 @@ On all platforms, generate a project using cookiecutter.
.. code-block:: bash
- cookiecutter gh:Pylons/pyramid-cookiecutter-theonecc --checkout master
+ cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout master
If prompted for the first item, accept the default ``yes`` by hitting return.
.. code-block:: text
- You've cloned ~/.cookiecutters/pyramid-cookiecutter-theonecc before.
+ You've cloned ~/.cookiecutters/pyramid-cookiecutter-starter before.
Is it okay to delete and re-clone it? [yes]: yes
project_name [Pyramid Scaffold]: myproject
repo_name [myproject]: myproject
@@ -265,7 +265,7 @@ Here's sample output from a test run on Unix:
..
2 passed in 0.47 seconds
-The tests themselves are found in the ``tests.py`` module in your ``cookiecutter``-generated project. Within a project generated by the ``pyramid-cookiecutter-theonecc`` cookiecutter, only two sample tests exist.
+The tests themselves are found in the ``tests.py`` module in your ``cookiecutter``-generated project. Within a project generated by the ``pyramid-cookiecutter-starter`` cookiecutter, only two sample tests exist.
.. note::
@@ -437,7 +437,7 @@ browser like what is displayed in the following image:
.. image:: project.png
This is the page shown by default when you visit an unmodified ``cookiecutter``
-generated ``pyramid-cookiecutter-theonecc`` application in a browser.
+generated ``pyramid-cookiecutter-starter`` application in a browser.
.. index::
single: debug toolbar
@@ -518,7 +518,7 @@ this:
The Project Structure
---------------------
-The ``pyramid-cookiecutter-theonecc`` cookiecutter generated a :term:`project` (named ``myproject``),
+The ``pyramid-cookiecutter-starter`` cookiecutter generated a :term:`project` (named ``myproject``),
which contains a Python :term:`package`. The package is *also* named
``myproject``; the cookiecutter generates a project which
contains a package that shares its name.