Browse Source

fix gofmt error

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
for-closed-social
Bo-Yi Wu 7 years ago
committed by Kim "BKC" Carlbäcker
parent
commit
6510e57758
7 changed files with 27 additions and 28 deletions
  1. +8
    -8
      models/git_diff_test.go
  2. +2
    -2
      models/issue.go
  3. +9
    -9
      models/models.go
  4. +1
    -1
      modules/lfs/content_store.go
  5. +2
    -3
      modules/mailer/mailer.go
  6. +1
    -1
      routers/repo/http.go
  7. +4
    -4
      routers/repo/issue.go

+ 8
- 8
models/git_diff_test.go View File

@ -20,16 +20,16 @@ func assertLineEqual(t *testing.T, d1 *DiffLine, d2 *DiffLine) {
func TestDiffToHTML(t *testing.T) {
assertEqual(t, "+foo <span class=\"added-code\">bar</span> biz", diffToHTML([]dmp.Diff{
dmp.Diff{dmp.DiffEqual, "foo "},
dmp.Diff{dmp.DiffInsert, "bar"},
dmp.Diff{dmp.DiffDelete, " baz"},
dmp.Diff{dmp.DiffEqual, " biz"},
{dmp.DiffEqual, "foo "},
{dmp.DiffInsert, "bar"},
{dmp.DiffDelete, " baz"},
{dmp.DiffEqual, " biz"},
}, DiffLineAdd))
assertEqual(t, "-foo <span class=\"removed-code\">bar</span> biz", diffToHTML([]dmp.Diff{
dmp.Diff{dmp.DiffEqual, "foo "},
dmp.Diff{dmp.DiffDelete, "bar"},
dmp.Diff{dmp.DiffInsert, " baz"},
dmp.Diff{dmp.DiffEqual, " biz"},
{dmp.DiffEqual, "foo "},
{dmp.DiffDelete, "bar"},
{dmp.DiffInsert, " baz"},
{dmp.DiffEqual, " biz"},
}, DiffLineDel))
}

+ 2
- 2
models/issue.go View File

@ -1202,8 +1202,8 @@ func GetIssueStats(opts *IssueStatsOptions) *IssueStats {
if opts.MentionedID > 0 {
sess.Join("INNER", "issue_user", "issue.id = issue_user.issue_id").
And("issue_user.uid = ?", opts.MentionedID).
And("issue_user.is_mentioned = ?", true)
And("issue_user.uid = ?", opts.MentionedID).
And("issue_user.is_mentioned = ?", true)
}
return sess

+ 9
- 9
models/models.go View File

@ -156,15 +156,15 @@ func parsePostgreSQLHostPort(info string) (string, string) {
func parseMSSQLHostPort(info string) (string, string) {
host, port := "127.0.0.1", "1433"
if strings.Contains(info, ":") {
host = strings.Split(info, ":")[0]
port = strings.Split(info, ":")[1]
} else if strings.Contains(info, ",") {
host = strings.Split(info, ",")[0]
port = strings.TrimSpace(strings.Split(info, ",")[1])
} else if len(info) > 0 {
host = info
}
if strings.Contains(info, ":") {
host = strings.Split(info, ":")[0]
port = strings.Split(info, ":")[1]
} else if strings.Contains(info, ",") {
host = strings.Split(info, ",")[0]
port = strings.TrimSpace(strings.Split(info, ",")[1])
} else if len(info) > 0 {
host = info
}
return host, port
}

+ 1
- 1
modules/lfs/content_store.go View File

@ -90,5 +90,5 @@ func transformKey(key string) string {
return key
}
return filepath.Join(key[0:2], key[2:4], key[4:len(key)])
return filepath.Join(key[0:2], key[2:4], key[4:])
}

+ 2
- 3
modules/mailer/mailer.go View File

@ -220,12 +220,12 @@ func (s *sendmailSender) Send(from string, to []string, msg io.WriterTo) error {
return err
}
_,err = msg.WriteTo(pipe)
_, err = msg.WriteTo(pipe)
// we MUST close the pipe or sendmail will hang waiting for more of the message
// Also we should wait on our sendmail command even if something fails
closeError = pipe.Close()
waitError = cmd.Wait()
waitError = cmd.Wait()
if err != nil {
return err
} else if closeError != nil {
@ -263,7 +263,6 @@ func NewContext() {
return
}
if setting.MailService.UseSendmail {
Sender = &sendmailSender{}
} else {

+ 1
- 1
routers/repo/http.go View File

@ -94,7 +94,7 @@ func HTTP(ctx *context.Context) {
ctx.HandleText(401, "reverse proxy login error, got error while running GetUserByName")
return
}
}else{
} else {
authHead := ctx.Req.Header.Get("Authorization")
if len(authHead) == 0 {
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=\".\"")

+ 4
- 4
routers/repo/issue.go View File

@ -132,10 +132,10 @@ func Issues(ctx *context.Context) {
}
var (
assigneeID = ctx.QueryInt64("assignee")
posterID int64
mentionedID int64
forceEmpty bool
assigneeID = ctx.QueryInt64("assignee")
posterID int64
mentionedID int64
forceEmpty bool
)
switch viewType {
case "assigned":

Loading…
Cancel
Save