The normal go get protocol is to show the go-import meta tag when ?go-get=1 is appended to the url. This commit implements that behaviour and cleans the go-get option from the repository settings page.
strings via locale
try to add action
ajax comment form loading
code review backend
new css & comments view
little ajax form loading fix
fix plus for commit line
return pre tag. This is bad? but so on
js changes
tmpl fixes
js fixes
new js
new html
trash for development
more trash for development
new comments style
comments is really works
fix plus
validation with i18n and line num fixes
Migration for commit comments
Commit comment markdown support
js fixes and new button
fix migration and cancel btn
locale
Code-wise: the fixing-part of the code now doesn't reference the issue any more, because this is done by the referencing-part of the code, which is called just before.
Fixes#462, #668, #732.
The previous behavior was to set default values only if user.name was
not set, but to always set it for both. This only sets a value if there
wasn't one; this fixes cases where someone has a user.name but no
user.email (see included Dockerfile) or someone has a user.email but no
user.name (before the email would have been over-written).
A new struct is created named EmailAddress that contains alternative
email addresses for users. Also the email related methods; IsEmailUsed
and GetUserByEmail are updated.
DeleteUser deletes the extra email addresses and DeleteInactivateUsers
also deletes inactive accounts. This could be factored out, but should
do it for now.