Custom Query (1173 matches)
Results (133 - 135 of 1173)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#5019 | cant-reproduce | make fails without pybabel | ||
Description |
Trying to compile a fresh install of latest master results in an error if pybabel isn't installed on the system. (mediagoblin-0.8.0) ~/mediagoblin-0.8.0 $ make ./devtools/compile_translations.sh ./devtools/compile_translations.sh: line 40: pybabel: command not found Makefile:118: recipe for target 'i18n' failed make: *** [i18n] Error 127 |
|||
#18 | fixed | make better sphinx templates | ||
Description |
We use Sphinx to build the documentation. We need a better set of templates so: 1. our docs look like our docs 2. our docs don't look like everyone else's docs 3. we can tweak the look-and-feel to make our docs more readable and usable We should at least do a first pass of this for 0.0.1. The templates are Jinja2 templates. It's possible we might be fine with just adjusting the CSS. |
|||
#938 | fixed | lowercasify username on login request | ||
Description |
When a user registers, the chosen username is lowercased before being stored to the database. When a user attempts to log in, the supplied username is passed through as it was typed, which may contain uppercase letters. A user who registered his or her name using uppercase letters may not realize that the username was lowercased internally and may continue trying to log in with uppercase letters. After a failed login attempt with uppercase letters, the login form helpfully displays the username lowercased. However, it still may not be clear to the end user that he or she needs to log in with that lowercased username. |