Custom Query (1174 matches)
Results (220 - 222 of 1174)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #304 | FIXED | forgot password seems to translate "" | ||
| Description |
The /auth/forgot_password/verify/ URL seems to translate the empty string somewhere, somehow. |
|||
| #305 | FIXED | Getting unwarranted exceptions (from CSRF code) when crawled by GoogleBot & friends | ||
| Description |
Errors are like so: Error - <type 'exceptions.AttributeError'>: 'BaseResponse' object has no attribute 'vary' URL: http://mediagoblin.com/tag/barcelona/atom/ File '/srv/mediagoblin.com/lib/python2.6/site-packages/Paste-1.7.5.1-py2.6.egg/paste/exceptions/errormiddleware.py', line 144 in __call__ app_iter = self.application(environ, sr_checker) File '/srv/mediagoblin.com/lib/python2.6/site-packages/Beaker-1.6.1-py2.6.egg/beaker/middleware.py', line 155 in __call__ return self.wrap_app(environ, session_start_response) File '/srv/mediagoblin.com/src/mediagoblin/mediagoblin/app.py', line 175 in __call__ m.process_response(request, response) File '/srv/mediagoblin.com/src/mediagoblin/mediagoblin/middleware/csrf.py', line 101 in process_response response.vary = (response.vary or []) + ['Cookie'] AttributeError: 'BaseResponse' object has no attribute 'vary' It looks like there is no response.vary, which is what is causing this error... |
|||
| #306 | FIXED | wiki @font-face links incorrectly | ||
| Description |
The style on the wiki:
@font-face {
font-family: 'Lato';
font-style: italic;
font-weight: 700;
src: local('Lato Bold Italic'), local('Lato-BoldItalic'), url(http://wiki.mediagoblin.org/skins/mediagoblin/fonts/Lato-BoldItalic.ttf?2011-11-02T15:46:40Z) format('truetype');
}
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 400;
src: local('Lato Regular'), local('Lato-Regular'), url('fonts/Lato-Regular.woff') format('truetype');
}
The last line should probably be:
src: local('Lato Regular'), local('Lato-Regular'), url('http://wiki.mediagoblin.org/skins/mediagoblin/fonts/Lato-Regular.woff') format('truetype');
Right now all browsers show the wrong font, because noone can get the Lato-regular one. However, it does look worse in Opera, because Opera chooses to display the italic font instead of the bold, whilst the other browsers bolds everything. Well, looks crappy in all of them, but you can see it's wrong easier in Opera ;-) |
|||
