]> source.dussan.org Git - gitea.git/log
gitea.git
9 years agoForgot to i18n "Primary"
Peter Smit [Mon, 22 Dec 2014 07:41:29 +0000 (09:41 +0200)]
Forgot to i18n "Primary"

9 years agoCreate English locale keys for multiple e-mails feature
Peter Smit [Mon, 22 Dec 2014 07:11:30 +0000 (09:11 +0200)]
Create English locale keys for multiple e-mails feature

Also, change all current 'emails' to 'e-mails'.
Still todo: some CSS for the user/settings/email page, but that is not my specialty

9 years agoMerge pull request #767 from phsmit/fix_email_query
无闻 [Sun, 21 Dec 2014 07:23:36 +0000 (02:23 -0500)]
Merge pull request #767 from phsmit/fix_email_query

Fix for wrong email query

9 years agoFix for wrong email query
Peter Smit [Sun, 21 Dec 2014 07:16:56 +0000 (09:16 +0200)]
Fix for wrong email query

Changing EmailAdress.OwnerId to EmailAddress.Uid should have accompanied this change

9 years agoMerge pull request #766 from phsmit/correct_from
无闻 [Sun, 21 Dec 2014 06:55:28 +0000 (01:55 -0500)]
Merge pull request #766 from phsmit/correct_from

Correct usage of FROM in email creation

9 years agomirror fix and update
Unknwon [Sun, 21 Dec 2014 03:51:16 +0000 (22:51 -0500)]
mirror fix and update

9 years agoMerge pull request #755 from phsmit/multiple_emails
无闻 [Sun, 21 Dec 2014 03:47:05 +0000 (22:47 -0500)]
Merge pull request #755 from phsmit/multiple_emails

Multiple emails

9 years agoSmall fixes to multiple_emails feature
Peter [Sat, 20 Dec 2014 07:26:51 +0000 (09:26 +0200)]
Small fixes to multiple_emails feature

9 years agoMerge pull request #764 from phsmit/fix_mailer
无闻 [Fri, 19 Dec 2014 22:20:13 +0000 (17:20 -0500)]
Merge pull request #764 from phsmit/fix_mailer

Remove standard mailer port lines

9 years agoParse the from string to extract the email address
Peter [Fri, 19 Dec 2014 21:06:03 +0000 (23:06 +0200)]
Parse the from string to extract the email address

9 years agoRemove unused "User" member of Message Struct and fix bounce address
Peter [Fri, 19 Dec 2014 20:48:21 +0000 (22:48 +0200)]
Remove unused "User" member of Message Struct and fix bounce address

The User member of a message is not needed anymore.

The from that is send to the server, should always be the "system" from. This is also called the Bounce address http://en.wikipedia.org/wiki/Bounce_address

9 years agoChange from header in email, fixes #765
Peter [Fri, 19 Dec 2014 20:33:17 +0000 (22:33 +0200)]
Change from header in email, fixes #765

9 years agoRemove standard mailer port lines
Peter [Fri, 19 Dec 2014 20:00:11 +0000 (22:00 +0200)]
Remove standard mailer port lines

This lines got committed by accident. They do actually nothing, as SplitHostPort will give an error if port is not given.

9 years agoupdate locale and mirror code format
Unknwon [Fri, 19 Dec 2014 05:24:17 +0000 (00:24 -0500)]
update locale and mirror code format

9 years agoMerge pull request #762 from phsmit/crammd5
无闻 [Thu, 18 Dec 2014 21:49:11 +0000 (16:49 -0500)]
Merge pull request #762 from phsmit/crammd5

Crammd5

9 years agoMerge pull request #761 from phsmit/mailer_rewritten
无闻 [Thu, 18 Dec 2014 21:37:24 +0000 (16:37 -0500)]
Merge pull request #761 from phsmit/mailer_rewritten

Rewrite of SendMail function

9 years agoPrefer CRAM-MD5 over PLAIN authentication
Peter [Thu, 18 Dec 2014 12:15:13 +0000 (14:15 +0200)]
Prefer CRAM-MD5 over PLAIN authentication

9 years agoAdd option to use CRAM-MD5 as authentication method in the mailer
Peter [Thu, 18 Dec 2014 11:58:18 +0000 (13:58 +0200)]
Add option to use CRAM-MD5 as authentication method in the mailer

9 years agoRewrite of SendMail function
Peter [Thu, 18 Dec 2014 11:34:30 +0000 (13:34 +0200)]
Rewrite of SendMail function

The SendMail function is rewritten and has the following new functionality:
 - It is optional to skip verification of keys. The config option SKIP_VERIFY is added
 - If the port is 465, or ending on 465, the TLS(/SSL) connection is started first.

9 years agowork on #754
Unknwon [Thu, 18 Dec 2014 08:37:31 +0000 (03:37 -0500)]
work on #754

9 years agowork on #754
Unknwon [Thu, 18 Dec 2014 08:26:09 +0000 (03:26 -0500)]
work on #754

9 years agowork on #756
Unknwon [Thu, 18 Dec 2014 04:04:05 +0000 (23:04 -0500)]
work on #756

9 years agoFinish method for having multiple emails/user.
Peter [Wed, 17 Dec 2014 15:42:54 +0000 (17:42 +0200)]
Finish method for having multiple emails/user.

All basics are implemented. Missing are the right (localized) strings
and the page markup could have a look at by a frontend guy.

9 years agoTemplate for email activation email
Peter [Wed, 17 Dec 2014 15:42:31 +0000 (17:42 +0200)]
Template for email activation email

9 years agoMethod for activating email addresses through verification email
Peter [Wed, 17 Dec 2014 15:41:49 +0000 (17:41 +0200)]
Method for activating email addresses through verification email

9 years agoAdd function to the model for email address management (add/delete/activate)
Peter [Wed, 17 Dec 2014 15:40:10 +0000 (17:40 +0200)]
Add function to the model for email address management (add/delete/activate)

9 years agoAdd alternative email addresses to the model
Peter Smit [Wed, 17 Dec 2014 08:26:19 +0000 (10:26 +0200)]
Add alternative email addresses to the model

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.

9 years agofix #751
Unknwon [Wed, 17 Dec 2014 01:47:10 +0000 (20:47 -0500)]
fix #751

9 years agofix #741
Unknwon [Tue, 16 Dec 2014 07:28:57 +0000 (02:28 -0500)]
fix #741

9 years agofix binding api broken
Unknwon [Mon, 15 Dec 2014 06:49:59 +0000 (01:49 -0500)]
fix binding api broken

9 years agoupdate locale
Unknwon [Mon, 15 Dec 2014 03:47:09 +0000 (22:47 -0500)]
update locale

9 years agoprepare for 0.5.9
Unknwon [Sun, 14 Dec 2014 01:32:30 +0000 (20:32 -0500)]
prepare for 0.5.9

9 years agoupdate gopmfile
Unknwon [Sun, 14 Dec 2014 01:26:04 +0000 (20:26 -0500)]
update gopmfile

9 years agoupdate locales
Unknwon [Sun, 14 Dec 2014 01:06:50 +0000 (20:06 -0500)]
update locales

9 years agomodes/repo: incorrect SSH clone URL for #742
Unknwon [Sat, 13 Dec 2014 21:46:00 +0000 (16:46 -0500)]
modes/repo: incorrect SSH clone URL for #742

9 years agoapi: able to create repo and fix #726
Unknwon [Sat, 13 Dec 2014 01:30:32 +0000 (20:30 -0500)]
api: able to create repo and fix #726

- POST /user/repos
- POST /org/:org/repos

9 years agofix #735
Unknwon [Fri, 12 Dec 2014 06:29:36 +0000 (01:29 -0500)]
fix #735

9 years agomirror code clean
Unknwon [Thu, 11 Dec 2014 23:55:09 +0000 (18:55 -0500)]
mirror code clean

9 years agoMerge pull request #731 from cryptix/dev
无闻 [Thu, 11 Dec 2014 23:32:49 +0000 (18:32 -0500)]
Merge pull request #731 from cryptix/dev

increase minimum version for HTTPS to TLS 1.0 (POODLE, fixes #730)

9 years agoincrease minimum version vor HTTPS to TLS 1.0 (POODLE, fixes #730)
Henry [Thu, 11 Dec 2014 10:14:41 +0000 (11:14 +0100)]
increase minimum version vor HTTPS to TLS 1.0 (POODLE, fixes #730)

9 years agofix git clone error when repo has upper case name
codeskyblue [Thu, 11 Dec 2014 07:57:32 +0000 (15:57 +0800)]
fix git clone error when repo has upper case name

9 years agomirror fix on release JS
Unknwon [Wed, 10 Dec 2014 21:41:49 +0000 (16:41 -0500)]
mirror fix on release JS

9 years agoFinish new UI for release page
Unknwon [Wed, 10 Dec 2014 21:37:54 +0000 (16:37 -0500)]
Finish new UI for release page

9 years agofix #703
Unknwon [Wed, 10 Dec 2014 12:00:11 +0000 (07:00 -0500)]
fix #703

9 years agofix compile error
Unknwon [Wed, 10 Dec 2014 10:10:26 +0000 (05:10 -0500)]
fix compile error

9 years agoMerge pull request #727 from Mageti/master
无闻 [Wed, 10 Dec 2014 10:03:50 +0000 (05:03 -0500)]
Merge pull request #727 from Mageti/master

Correction for #723

9 years agoremove unused code in BasicAuthDecode
Mageti [Wed, 10 Dec 2014 10:01:17 +0000 (11:01 +0100)]
remove unused code in BasicAuthDecode

9 years agoCorrection for #723
Mageti [Wed, 10 Dec 2014 09:51:51 +0000 (10:51 +0100)]
Correction for #723

Correction for #723
Bug was : decode failed if the password contains ```:```

9 years agofix #711
Unknwon [Tue, 9 Dec 2014 07:18:25 +0000 (02:18 -0500)]
fix #711

9 years agonew language
Unknwon [Mon, 8 Dec 2014 00:27:49 +0000 (19:27 -0500)]
new language

9 years agoMerge pull request #720 from Alukardd/dev
无闻 [Sun, 7 Dec 2014 21:05:55 +0000 (16:05 -0500)]
Merge pull request #720 from Alukardd/dev

Allow send mail without authentication if SMTP server allow this

9 years agoadd label-create ui elements
fuxiaohei [Sun, 7 Dec 2014 13:29:37 +0000 (21:29 +0800)]
add label-create ui elements

9 years agoAllow send mail without authentication if SMTP server allow this
Alukardd [Sun, 7 Dec 2014 13:07:48 +0000 (16:07 +0300)]
Allow send mail without authentication if SMTP server allow this

9 years agoMerge pull request #718 from jbcrail/fix-comment-spelling
无闻 [Sun, 7 Dec 2014 02:01:00 +0000 (21:01 -0500)]
Merge pull request #718 from jbcrail/fix-comment-spelling

Fix spelling errors in comments.

9 years agoFix spelling errors in comments.
Joseph Crail [Sun, 7 Dec 2014 01:22:48 +0000 (20:22 -0500)]
Fix spelling errors in comments.

9 years agoupload locales
Unknwon [Fri, 5 Dec 2014 23:27:59 +0000 (18:27 -0500)]
upload locales

9 years agowork on #672
Unknwon [Fri, 5 Dec 2014 23:08:09 +0000 (18:08 -0500)]
work on #672

9 years agofix #165
Unknwon [Fri, 5 Dec 2014 22:54:57 +0000 (17:54 -0500)]
fix #165

9 years agoMerge pull request #716 from ErebusBat/master
无闻 [Fri, 5 Dec 2014 21:20:34 +0000 (16:20 -0500)]
Merge pull request #716 from ErebusBat/master

Fix Gravatar images in web view (like commit listing)

9 years agoMerge pull request #712 from Dennis-Smurf/enhancement-issuelink-in-commit
无闻 [Fri, 5 Dec 2014 21:15:43 +0000 (16:15 -0500)]
Merge pull request #712 from Dennis-Smurf/enhancement-issuelink-in-commit

Added issue link rendering in commit messages

9 years agoFix Gravatar images in web view (like commit listing)
Andrew Burns [Fri, 5 Dec 2014 18:02:59 +0000 (11:02 -0700)]
Fix Gravatar images in web view (like commit listing)

Related to #700

In the original bug report it was referencing only the sytem avatar images for setup users (like in the header); however the problem also persists with things like commit history.

This commit fixes the `tool.AvatarLink` function so that it also uses the already existing `avatar.HashEmail` function.

I also refactored the `tool.AvatarLink` method some to make the control flow more apparent and adhere better to DRY (there were multiple calls to the `EncodeMd5` function that the `HashEmail` function call replaced, now there is only one.)

9 years agoHashEmail function should also remove spaces
Andrew Burns [Fri, 5 Dec 2014 17:58:49 +0000 (10:58 -0700)]
HashEmail function should also remove spaces

According to the [Gravatar API](https://en.gravatar.com/site/implement/hash/) whitespace should also be removed from the email, it was not doing this previously.

9 years agoAdded issue link rendering in commit messages
dennis-smurf [Fri, 5 Dec 2014 10:02:52 +0000 (11:02 +0100)]
Added issue link rendering in commit messages

9 years agofix #706 and other mirror improve
Unknwon [Fri, 5 Dec 2014 04:07:51 +0000 (23:07 -0500)]
fix #706 and other mirror improve

9 years agoMerge pull request #709 from TonyTsangHK/dev
无闻 [Fri, 5 Dec 2014 03:36:54 +0000 (22:36 -0500)]
Merge pull request #709 from TonyTsangHK/dev

Display multi-line commit message on commit diff page.

9 years agoDisplay multi-line commit message on commit diff page.
Tony Tsang [Fri, 5 Dec 2014 02:33:22 +0000 (10:33 +0800)]
Display multi-line commit message on commit diff page.

9 years agoMerge pull request #708 from ErebusBat/master
无闻 [Thu, 4 Dec 2014 23:33:10 +0000 (18:33 -0500)]
Merge pull request #708 from ErebusBat/master

Use the avatar.HashEmail function instead of hashing email directly.

9 years agoadd issue list filter ui
fuxiaohei [Thu, 4 Dec 2014 15:22:16 +0000 (23:22 +0800)]
add issue list filter ui

9 years agoUse the avatar.HashEmail function instead of hashing email directly. Fixes #700
Andrew Burns [Wed, 3 Dec 2014 23:19:35 +0000 (16:19 -0700)]
Use the avatar.HashEmail function instead of hashing email directly.  Fixes #700

9 years agoMerge pull request #696 from deiwin/update/user-api-to-include-full-name
无闻 [Tue, 2 Dec 2014 15:27:24 +0000 (10:27 -0500)]
Merge pull request #696 from deiwin/update/user-api-to-include-full-name

add full name to found users' list on the UI

9 years agoadd full name to found users' list
Deiwin Sarjas [Tue, 2 Dec 2014 14:55:52 +0000 (16:55 +0200)]
add full name to found users' list

9 years agoMerge pull request #694 from deiwin/update/user-api-to-include-full-name
无闻 [Tue, 2 Dec 2014 12:50:05 +0000 (07:50 -0500)]
Merge pull request #694 from deiwin/update/user-api-to-include-full-name

update user api search results to include the full name

9 years agoMerge pull request #695 from CBiX/dev
无闻 [Tue, 2 Dec 2014 12:47:13 +0000 (07:47 -0500)]
Merge pull request #695 from CBiX/dev

fixed code view line height for firefox

9 years agofixed code view line height for firefox
Florian Hülsmann [Tue, 2 Dec 2014 10:31:57 +0000 (11:31 +0100)]
fixed code view line height for firefox

9 years agoupdate user api search results to include the full name
Deiwin Sarjas [Tue, 2 Dec 2014 09:43:51 +0000 (11:43 +0200)]
update user api search results to include the full name

Is fully backwards compatible
Fixes #677

9 years agoMerge pull request #690 from Dennis-Smurf/feature-sha1-markdown-pattern
无闻 [Mon, 1 Dec 2014 16:35:18 +0000 (11:35 -0500)]
Merge pull request #690 from Dennis-Smurf/feature-sha1-markdown-pattern

Addded sha1 pattern in markdown for current repository

9 years agoAddded sha1 pattern in markdown for current repository
dennis-smurf [Sun, 30 Nov 2014 22:30:21 +0000 (23:30 +0100)]
Addded sha1 pattern in markdown for current repository

9 years agomirror fix
Unknwon [Sun, 30 Nov 2014 23:35:05 +0000 (18:35 -0500)]
mirror fix

9 years agofix #676
Unknwon [Sun, 30 Nov 2014 23:29:16 +0000 (18:29 -0500)]
fix #676

9 years agofix #687
Unknwon [Sun, 30 Nov 2014 15:55:26 +0000 (10:55 -0500)]
fix #687

9 years agoMerge branch 'dev' of github.com:gogits/gogs into dev
Unknwon [Sun, 30 Nov 2014 07:26:33 +0000 (02:26 -0500)]
Merge branch 'dev' of github.com:gogits/gogs into dev

9 years agofix #580
Unknwon [Sun, 30 Nov 2014 07:26:29 +0000 (02:26 -0500)]
fix #580

9 years agoMerge pull request #686 from willglynn/cert_stub_exit_code
无闻 [Sun, 30 Nov 2014 06:38:35 +0000 (01:38 -0500)]
Merge pull request #686 from willglynn/cert_stub_exit_code

Cert command stub should return a non-zero exit code

9 years agoCert command stub should return a non-zero exit code
Will Glynn [Sun, 30 Nov 2014 03:52:59 +0000 (21:52 -0600)]
Cert command stub should return a non-zero exit code

9 years agosafe check
Unknwon [Sat, 29 Nov 2014 02:54:49 +0000 (21:54 -0500)]
safe check

9 years agomirror fix on oauth2
Unknwon [Sat, 29 Nov 2014 02:38:35 +0000 (21:38 -0500)]
mirror fix on oauth2

9 years agofix oauth2
Unknwon [Sat, 29 Nov 2014 02:20:13 +0000 (21:20 -0500)]
fix oauth2

9 years agoMerge pull request #683 from jcracknell/admin-repos-cols
无闻 [Fri, 28 Nov 2014 20:28:08 +0000 (15:28 -0500)]
Merge pull request #683 from jcracknell/admin-repos-cols

Fix swapped issue/star columns in /admin/repos

9 years agoMerge pull request #682 from jcracknell/user-links
无闻 [Fri, 28 Nov 2014 20:22:56 +0000 (15:22 -0500)]
Merge pull request #682 from jcracknell/user-links

Fix user links

9 years agoFix swapped issue/star columns in /admin/repos
James Cracknell [Fri, 28 Nov 2014 19:40:02 +0000 (12:40 -0700)]
Fix swapped issue/star columns in /admin/repos

9 years agoFix user links
James Cracknell [Fri, 28 Nov 2014 18:53:00 +0000 (11:53 -0700)]
Fix user links

9 years agoMerge branch 'dev' of github.com:gogits/gogs into dev
Unknwon [Fri, 28 Nov 2014 02:36:20 +0000 (21:36 -0500)]
Merge branch 'dev' of github.com:gogits/gogs into dev

9 years agofix #675
Unknwon [Fri, 28 Nov 2014 02:36:12 +0000 (21:36 -0500)]
fix #675

9 years agoMerge pull request #674 from jcracknell/pfx-export
无闻 [Thu, 27 Nov 2014 21:56:55 +0000 (16:56 -0500)]
Merge pull request #674 from jcracknell/pfx-export

Added comments documenting how to export SSL keys from .pfx

9 years agoAdded comments documenting how to export SSL keys from .pfx
James Cracknell [Thu, 27 Nov 2014 21:42:06 +0000 (14:42 -0700)]
Added comments documenting how to export SSL keys from .pfx

9 years agofix #664
Unknwon [Wed, 26 Nov 2014 04:05:43 +0000 (23:05 -0500)]
fix #664

9 years agofix #659
Unknwon [Wed, 26 Nov 2014 03:48:04 +0000 (22:48 -0500)]
fix #659

9 years agoFix #543
Unknwon [Mon, 24 Nov 2014 23:47:59 +0000 (18:47 -0500)]
Fix #543

9 years agoupdate milestone page design
fuxiaohei [Mon, 24 Nov 2014 15:13:42 +0000 (23:13 +0800)]
update milestone page design

9 years agoMerge branch 'dev' of github.com:gogits/gogs into dev
Unknwon [Mon, 24 Nov 2014 14:54:22 +0000 (09:54 -0500)]
Merge branch 'dev' of github.com:gogits/gogs into dev