From 3bd9cdce94f0afe840f3ac1ef00bd9681b415aaf Mon Sep 17 00:00:00 2001 From: boreq Date: Sun, 31 Aug 2014 18:07:26 +0200 Subject: [PATCH] Added full_path to the Request object documentation. --- docs/api.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/api.rst b/docs/api.rst index 0df1a1f3..81543026 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -86,6 +86,7 @@ Incoming Request Data The current request method (``POST``, ``GET`` etc.) .. attribute:: path + .. attribute:: full_path .. attribute:: script_root .. attribute:: url .. attribute:: base_url @@ -105,6 +106,7 @@ Incoming Request Data ============= ====================================================== `path` ``/page.html`` + `full_path` ``/page.html?x=y`` `script_root` ``/myapplication`` `base_url` ``http://www.example.com/myapplication/page.html`` `url` ``http://www.example.com/myapplication/page.html?x=y``