From 5dea08fcd02ccbbd364dc3c6c09f5b9e78a3e152 Mon Sep 17 00:00:00 2001 From: philomat Date: Sun, 21 Aug 2011 22:13:24 -0400 Subject: [PATCH] Finalizing docs for release --- docs/conf.py | 4 ++-- docs/overview.rst | 2 +- readme.md | 2 +- user_profiles/forms.py | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index c8b6601..696cb99 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,9 +53,9 @@ # built documents. # # The short X.Y version. -version = '1.0.0' +version = '0.1.0' # The full version, including alpha/beta/rc tags. -release = '1.0.0' +release = '0.1.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/overview.rst b/docs/overview.rst index b5501ab..47c4259 100644 --- a/docs/overview.rst +++ b/docs/overview.rst @@ -13,7 +13,7 @@ Given the appropriate configuration, you can implement various login/signup paradigms: * Sign up with username and email / confirm email address / proceed to log in - with generated password (NOT IMPLEMENTED) + with generated password (*not implemented*) * Sign up with email and password / confirm email address / proceed to log in * Sign up with email and password / proceed to log in / confirm email address later to use advanced features diff --git a/readme.md b/readme.md index 3c10f72..0b7e288 100644 --- a/readme.md +++ b/readme.md @@ -13,7 +13,7 @@ Given the appropriate configuration, you can implement various login/signup paradigms: * Sign up with username and email – confirm email address – proceed to log in - with generated password *NOT IMPLEMENTED* + with generated password (*not implemented*) * Sign up with email and password – confirm email address – proceed to log in * Sign up with email and password – proceed to log in – confirm email address later to use advanced features diff --git a/user_profiles/forms.py b/user_profiles/forms.py index 0e360f2..64a0b70 100644 --- a/user_profiles/forms.py +++ b/user_profiles/forms.py @@ -75,8 +75,8 @@ def save(self, commit=True): # TODO not working -- maybe inheritance is not the way to do it class SignupWithProfileForm(SignupForm, ProfileForm): """ - NOT IMPLEMENTED. Signup form requiring users to fill in their full profile - during signup. + (*not implemented*) Signup form requiring users to fill in their full + profile during signup. """ class Meta: