Custom Query (1174 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (31 - 33 of 1174)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Ticket Resolution Summary Owner Reporter
#156 FIXED Use wtforms.render_divs(form) again Caleb Davis Elrond
Description

Due to some reasons, the call to render_divs(form) was turned into individual calls to wtforms_util.render_field_div(form.field).

It is currently believed, that this is unnecessary.

The idea is to

  • Use the normal whole form based render_to_multiple_divs macro again
  • Make sure the ordering of fields in the rendered html stays the same (reorder fields in the individual */forms.py instead)

Some special considerations for textareas might be needed, get in touch with cwebber concerning this part.

#194 FIXED email validation assumes user is logged in Caleb Davis Caleb Davis
Description

When the user clicks their email validation link, a userid and a token are sent in the querystring. However, in line 160 of mediagoblin/auth/views.py, we are redirecting according to the 'username' session variable.

If the user is not logged in, the following traceback ensues:

----------------------------------------
Exception happened during processing of request from ('50.15.244.85', 2850)
Traceback (most recent call last):
  File "/home/ubuntu/src/mediagoblin/eggs/Paste-1.7.5.1-py2.6.egg/paste/httpserver.py", line 1068, in process_request_in_thread
    self.finish_request(request, client_address)
  File "/usr/lib/python2.6/SocketServer.py", line 320, in finish_request
    self.RequestHandlerClass(request, client_address, self)
  File "/usr/lib/python2.6/SocketServer.py", line 615, in __init__
    self.handle()
  File "/home/ubuntu/src/mediagoblin/eggs/Paste-1.7.5.1-py2.6.egg/paste/httpserver.py", line 442, in handle
    BaseHTTPRequestHandler.handle(self)
  File "/usr/lib/python2.6/BaseHTTPServer.py", line 329, in handle
    self.handle_one_request()
  File "/home/ubuntu/src/mediagoblin/eggs/Paste-1.7.5.1-py2.6.egg/paste/httpserver.py", line 437, in handle_one_request
    self.wsgi_execute()
  File "/home/ubuntu/src/mediagoblin/eggs/Paste-1.7.5.1-py2.6.egg/paste/httpserver.py", line 287, in wsgi_execute
    self.wsgi_start_response)
  File "/home/ubuntu/src/mediagoblin/eggs/Paste-1.7.5.1-py2.6.egg/paste/urlmap.py", line 203, in __call__
    return app(environ, start_response)
  File "/home/ubuntu/src/mediagoblin/eggs/Beaker-1.5.4-py2.6.egg/beaker/middleware.py", line 152, in __call__
    return self.wrap_app(environ, session_start_response)
  File "/home/ubuntu/src/mediagoblin/mediagoblin/app.py", line 141, in __call__
    return controller(request)(environ, start_response)
  File "/home/ubuntu/src/mediagoblin/mediagoblin/auth/views.py", line 160, in verify_email
    user=request.user['username'])
TypeError: 'NoneType' object is unsubscriptable
----------------------------------------
#208 FIXED If there are no next and previous media, the navigation buttons should not appear Caleb Davis Jef van Schendel
Description

Speaks for itself. If you only have one piece of media for whatever reason, the navigation still shows up. But both of the buttons are disabled, so they may just as well be gone completely.

I have no idea how hard this is to do though.

Attached is a screenshot.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.