+ 'confirm' section for confirmation dialogues
+ implemented delete functionality * fixed several instances of 'must be an instance of unicode, not str'
This commit is contained in:
parent
a8327519eb
commit
08750772ea
@ -44,11 +44,12 @@ def register(request):
|
|||||||
|
|
||||||
if request.method == 'POST' and register_form.validate():
|
if request.method == 'POST' and register_form.validate():
|
||||||
# TODO: Make sure the user doesn't exist already
|
# TODO: Make sure the user doesn't exist already
|
||||||
|
username = unicode(request.POST['username'].lower())
|
||||||
|
email = unicode(request.POST['email'].lower())
|
||||||
users_with_username = request.db.User.find(
|
users_with_username = request.db.User.find(
|
||||||
{'username': request.POST['username'].lower()}).count()
|
{'username': username}).count()
|
||||||
users_with_email = request.db.User.find(
|
users_with_email = request.db.User.find(
|
||||||
{'email': request.POST['email'].lower()}).count()
|
{'email': email}).count()
|
||||||
|
|
||||||
extra_validation_passes = True
|
extra_validation_passes = True
|
||||||
|
|
||||||
@ -64,8 +65,8 @@ def register(request):
|
|||||||
if extra_validation_passes:
|
if extra_validation_passes:
|
||||||
# Create the user
|
# Create the user
|
||||||
user = request.db.User()
|
user = request.db.User()
|
||||||
user['username'] = request.POST['username'].lower()
|
user['username'] = username
|
||||||
user['email'] = request.POST['email'].lower()
|
user['email'] = email
|
||||||
user['pw_hash'] = auth_lib.bcrypt_gen_password_hash(
|
user['pw_hash'] = auth_lib.bcrypt_gen_password_hash(
|
||||||
request.POST['password'])
|
request.POST['password'])
|
||||||
user.save(validate=True)
|
user.save(validate=True)
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
# You should have received a copy of the GNU Affero General Public License
|
# You should have received a copy of the GNU Affero General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import uuid
|
||||||
|
|
||||||
from webob import exc
|
from webob import exc
|
||||||
from string import split
|
from string import split
|
||||||
@ -53,15 +54,17 @@ def edit_media(request, media):
|
|||||||
form.slug.errors.append(
|
form.slug.errors.append(
|
||||||
_(u'An entry with that slug already exists for this user.'))
|
_(u'An entry with that slug already exists for this user.'))
|
||||||
else:
|
else:
|
||||||
media['title'] = request.POST['title']
|
media['title'] = unicode(request.POST['title'])
|
||||||
media['description'] = request.POST.get('description')
|
media['description'] = unicode(request.POST.get('description'))
|
||||||
media['tags'] = convert_to_tag_list_of_dicts(
|
media['tags'] = convert_to_tag_list_of_dicts(
|
||||||
request.POST.get('tags'))
|
request.POST.get('tags'))
|
||||||
|
|
||||||
media['description_html'] = cleaned_markdown_conversion(
|
media['description_html'] = cleaned_markdown_conversion(
|
||||||
media['description'])
|
media['description'])
|
||||||
|
|
||||||
media['slug'] = request.POST['slug']
|
media['slug'] = unicode(request.POST['slug'])
|
||||||
|
task_id = unicode(uuid.uuid4())
|
||||||
|
media['queued_task_id'] = task_id
|
||||||
media.save()
|
media.save()
|
||||||
|
|
||||||
return redirect(request, "mediagoblin.user_pages.media_home",
|
return redirect(request, "mediagoblin.user_pages.media_home",
|
||||||
@ -102,8 +105,8 @@ def edit_profile(request):
|
|||||||
bio = user.get('bio'))
|
bio = user.get('bio'))
|
||||||
|
|
||||||
if request.method == 'POST' and form.validate():
|
if request.method == 'POST' and form.validate():
|
||||||
user['url'] = request.POST['url']
|
user['url'] = unicode(request.POST['url'])
|
||||||
user['bio'] = request.POST['bio']
|
user['bio'] = unicode(request.POST['bio'])
|
||||||
|
|
||||||
user['bio_html'] = cleaned_markdown_conversion(user['bio'])
|
user['bio_html'] = cleaned_markdown_conversion(user['bio'])
|
||||||
|
|
||||||
|
@ -21,6 +21,7 @@ from mediagoblin.submit.routing import submit_routes
|
|||||||
from mediagoblin.user_pages.routing import user_routes
|
from mediagoblin.user_pages.routing import user_routes
|
||||||
from mediagoblin.edit.routing import edit_routes
|
from mediagoblin.edit.routing import edit_routes
|
||||||
from mediagoblin.listings.routing import tag_routes
|
from mediagoblin.listings.routing import tag_routes
|
||||||
|
from mediagoblin.confirm.routing import confirm_routes
|
||||||
|
|
||||||
|
|
||||||
def get_mapper():
|
def get_mapper():
|
||||||
@ -36,5 +37,6 @@ def get_mapper():
|
|||||||
mapping.extend(user_routes, '/u')
|
mapping.extend(user_routes, '/u')
|
||||||
mapping.extend(edit_routes, '/edit')
|
mapping.extend(edit_routes, '/edit')
|
||||||
mapping.extend(tag_routes, '/tag')
|
mapping.extend(tag_routes, '/tag')
|
||||||
|
mapping.extend(confirm_routes, '/confirm')
|
||||||
|
|
||||||
return mapping
|
return mapping
|
||||||
|
@ -55,10 +55,10 @@ def submit_start(request):
|
|||||||
entry = request.db.MediaEntry()
|
entry = request.db.MediaEntry()
|
||||||
entry['_id'] = ObjectId()
|
entry['_id'] = ObjectId()
|
||||||
entry['title'] = (
|
entry['title'] = (
|
||||||
request.POST['title']
|
unicode(request.POST['title'])
|
||||||
or unicode(splitext(filename)[0]))
|
or unicode(splitext(filename)[0]))
|
||||||
|
|
||||||
entry['description'] = request.POST.get('description')
|
entry['description'] = unicode(request.POST.get('description'))
|
||||||
entry['description_html'] = cleaned_markdown_conversion(
|
entry['description_html'] = cleaned_markdown_conversion(
|
||||||
entry['description'])
|
entry['description'])
|
||||||
|
|
||||||
|
@ -127,8 +127,11 @@
|
|||||||
class="media_icon" />edit</a>
|
class="media_icon" />edit</a>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<img src="{{ request.staticdirect('/images/icon_delete.png') }}"
|
<a href="{{ request.urlgen('mediagoblin.confirm.confirm_delete',
|
||||||
class="media_icon" />{% trans %}delete{% endtrans %}
|
user= media.uploader().username,
|
||||||
|
media= media._id) }}"
|
||||||
|
><img src="{{ request.staticdirect('/images/icon_delete.png') }}"
|
||||||
|
class="media_icon" />{% trans %}delete{% endtrans %}</a>
|
||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
@ -29,6 +29,8 @@ user_routes = [
|
|||||||
controller="mediagoblin.user_pages.views:media_home"),
|
controller="mediagoblin.user_pages.views:media_home"),
|
||||||
Route('mediagoblin.edit.edit_media', "/{user}/m/{media}/edit/",
|
Route('mediagoblin.edit.edit_media', "/{user}/m/{media}/edit/",
|
||||||
controller="mediagoblin.edit.views:edit_media"),
|
controller="mediagoblin.edit.views:edit_media"),
|
||||||
|
Route('mediagoblin.confirm.confirm_delete', "/{user}/m/{media}/confirm/",
|
||||||
|
controller="mediagoblin.confirm.views:confirm_delete"),
|
||||||
Route('mediagoblin.user_pages.atom_feed', '/{user}/atom/',
|
Route('mediagoblin.user_pages.atom_feed', '/{user}/atom/',
|
||||||
controller="mediagoblin.user_pages.views:atom_feed"),
|
controller="mediagoblin.user_pages.views:atom_feed"),
|
||||||
Route('mediagoblin.user_pages.media_post_comment',
|
Route('mediagoblin.user_pages.media_post_comment',
|
||||||
|
@ -129,7 +129,7 @@ def media_post_comment(request):
|
|||||||
comment = request.db.MediaComment()
|
comment = request.db.MediaComment()
|
||||||
comment['media_entry'] = ObjectId(request.matchdict['media'])
|
comment['media_entry'] = ObjectId(request.matchdict['media'])
|
||||||
comment['author'] = request.user['_id']
|
comment['author'] = request.user['_id']
|
||||||
comment['content'] = request.POST['comment_content']
|
comment['content'] = unicode(request.POST['comment_content'])
|
||||||
|
|
||||||
comment['content_html'] = cleaned_markdown_conversion(comment['content'])
|
comment['content_html'] = cleaned_markdown_conversion(comment['content'])
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user