From 0fb2e4c84859d9d31fe2170df3f9d51e36a3f3c0 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Fri, 1 Jul 2011 00:52:06 +0200 Subject: [PATCH] More invalid doc fixing --- docs/upgrading.rst | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/upgrading.rst b/docs/upgrading.rst index 1d91596d95..df084e5136 100644 --- a/docs/upgrading.rst +++ b/docs/upgrading.rst @@ -189,10 +189,12 @@ to upgrade. What changed? some unnecessary leading dots in your code if you're not using modules. - Blueprints do not automatically provide static folders. They will - still export templates from a folder called `templates` next to their - location however. If you want to continue serving static files you - need to tell the constructor explicitly the path to the static folder - (which can be relative to the blueprint's module path). + also no longer automatically export templates from a folder called + `templates` next to their location however but it can be enabled from + the constructor. Same with static files: if you want to continue + serving static files you need to tell the constructor explicitly the + path to the static folder (which can be relative to the blueprint's + module path). - Rendering templates was simplified. Now the blueprints can provide template folders which are added to a general template searchpath. This means that you need to add another subfolder with the blueprint's