Check to see if the name the user entered is valid.
If it is, create the object. If not, tell the user why.
Methods
|
|
check
handleInvalid
handleValid
|
|
check
|
check (
self,
request,
name,
)
Check to see if the name the user typed is a valid object name.
|
|
handleInvalid
|
handleInvalid (
self,
request,
name,
)
The user has entered an invalid project name.
|
|
handleValid
|
handleValid (
self,
request,
name,
)
The user has entered a valid project name and chosen to create the project.
Get a reference to the parent folder, create a new Project instance, and
pickle it.
|
|