summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/scaffolding.rst5
-rw-r--r--docs/quick_tutorial/authentication.rst3
-rw-r--r--docs/quick_tutorial/authorization.rst3
-rw-r--r--docs/quick_tutorial/more_view_classes.rst2
4 files changed, 9 insertions, 4 deletions
diff --git a/docs/narr/scaffolding.rst b/docs/narr/scaffolding.rst
index f924d0d62..4fcdeb537 100644
--- a/docs/narr/scaffolding.rst
+++ b/docs/narr/scaffolding.rst
@@ -57,6 +57,11 @@ As you create files and directories within the template directory, note that:
have that string replaced with the value of the ``var`` variable provided
to the scaffold.
+- Files that start with a dot (e.g., ``.env``) are ignored and will not be
+ copied over to the destination directory. If you want to include a file with
+ a leading dot then you must replace the dot with ``+dot+`` (e.g.,
+ ``+dot+env``).
+
Otherwise, files and directories which live in the template directory will be
copied directly without modification to the ``pcreate`` output location.
diff --git a/docs/quick_tutorial/authentication.rst b/docs/quick_tutorial/authentication.rst
index a4ab83c45..7fd8173d4 100644
--- a/docs/quick_tutorial/authentication.rst
+++ b/docs/quick_tutorial/authentication.rst
@@ -123,9 +123,6 @@ Extra Credit
#. Can I use a database behind my ``groupfinder`` to look up principals?
-#. Do I have to put a ``renderer`` in my ``@forbidden_view_config``
- decorator?
-
#. Once I am logged in, does any user-centric information get jammed
onto each request? Use ``import pdb; pdb.set_trace()`` to answer
this.
diff --git a/docs/quick_tutorial/authorization.rst b/docs/quick_tutorial/authorization.rst
index 08df15a28..855043f7f 100644
--- a/docs/quick_tutorial/authorization.rst
+++ b/docs/quick_tutorial/authorization.rst
@@ -101,6 +101,9 @@ by decorating the view with ``@forbidden_view_config``.
Extra Credit
============
+#. Do I have to put a ``renderer`` in my ``@forbidden_view_config``
+ decorator?
+
#. Perhaps you would like the experience of not having enough permissions
(forbidden) to be richer. How could you change this?
diff --git a/docs/quick_tutorial/more_view_classes.rst b/docs/quick_tutorial/more_view_classes.rst
index c06fb0f15..afbb7cc3a 100644
--- a/docs/quick_tutorial/more_view_classes.rst
+++ b/docs/quick_tutorial/more_view_classes.rst
@@ -47,7 +47,7 @@ Objectives
- Dispatch one route/URL to multiple views based on request data
-- Share stated and logic between views and templates via the view class
+- Share states and logic between views and templates via the view class
Steps
=====