Add missing parameter description to docstring of soc.views.models.base module methods.
Patch by: Pawel Solyga
Review by: to-be-reviewed
--- a/app/soc/views/models/base.py Sat Jan 24 12:47:21 2009 +0000
+++ b/app/soc/views/models/base.py Sat Jan 24 12:50:59 2009 +0000
@@ -92,6 +92,7 @@
Args:
request: the standard Django HTTP request object
+ access_type : the name of the access type which should be checked
page_name: the page name displayed in templates as page and header title
params: a dict with params for this View
kwargs: the Key Fields for the specified entity
@@ -146,6 +147,7 @@
Args:
request: the standard Django HTTP request object
+ access_type : the name of the access type which should be checked
page_name: the page name displayed in templates as page and header title
params: a dict with params for this View
kwargs: the Key Fields for the specified entity
@@ -194,6 +196,7 @@
Args:
request: the standard Django HTTP request object
+ access_type : the name of the access type which should be checked
page_name: the page name displayed in templates as page and header title
params: a dict with params for this View
kwargs: not used for create()
@@ -244,6 +247,7 @@
Args:
request: the standard Django HTTP request object
+ access_type : the name of the access type which should be checked
page_name: the page name displayed in templates as page and header title
params: a dict with params for this View
kwargs: The Key Fields for the specified entity
@@ -406,6 +410,7 @@
Args:
request: the standard Django HTTP request object
+ access_type : the name of the access type which should be checked
page_name: the page name displayed in templates as page and header title
params: a dict with params for this View
filter: a dict for the properties that the entities should have
@@ -460,6 +465,7 @@
Args:
request: the standard Django HTTP request object
+ access_type : the name of the access type which should be checked
page_name: the page name displayed in templates as page and header title
params: a dict with params for this View
kwargs: The Key Fields for the specified entity
@@ -555,6 +561,7 @@
Args:
request: the standard Django HTTP request object
+ access_type : the name of the access type which should be checked
page_name: the page name displayed in templates as page and header title
params: a dict with params for this View
"""