Sfoglia il codice sorgente

fix some typos (#1082)

tags/v1.1.0
Lunny Xiao 7 anni fa
parent
commit
c2eef171ff
4 ha cambiato i file con 6 aggiunte e 6 eliminazioni
  1. 1
    1
      models/login_source.go
  2. 1
    1
      models/release.go
  3. 3
    3
      modules/base/tool.go
  4. 1
    1
      routers/repo/view.go

+ 1
- 1
models/login_source.go Vedi File

@@ -715,7 +715,7 @@ func GetActiveOAuth2LoginSourceByName(name string) (*LoginSource, error) {
// key is used as technical name (like in the callbackURL)
// values to display
func GetActiveOAuth2Providers() (map[string]OAuth2Provider, error) {
// Maybe also seperate used and unused providers so we can force the registration of only 1 active provider for each type
// Maybe also separate used and unused providers so we can force the registration of only 1 active provider for each type

loginSources, err := GetActiveOAuth2ProviderLoginSources()
if err != nil {

+ 1
- 1
models/release.go Vedi File

@@ -244,7 +244,7 @@ func GetReleasesByRepoID(repoID int64, page, pageSize int) (rels []*Release, err
return rels, err
}

// GetReleasesByRepoIDAndNames returns a list of releases of repository accroding repoID and tagNames.
// GetReleasesByRepoIDAndNames returns a list of releases of repository according repoID and tagNames.
func GetReleasesByRepoIDAndNames(repoID int64, tagNames []string) (rels []*Release, err error) {
err = x.
Desc("created_unix").

+ 3
- 3
modules/base/tool.go Vedi File

@@ -529,17 +529,17 @@ func IsTextFile(data []byte) bool {
return strings.Index(http.DetectContentType(data), "text/") != -1
}

// IsImageFile detectes if data is an image format
// IsImageFile detects if data is an image format
func IsImageFile(data []byte) bool {
return strings.Index(http.DetectContentType(data), "image/") != -1
}

// IsPDFFile detectes if data is a pdf format
// IsPDFFile detects if data is a pdf format
func IsPDFFile(data []byte) bool {
return strings.Index(http.DetectContentType(data), "application/pdf") != -1
}

// IsVideoFile detectes if data is an video format
// IsVideoFile detects if data is an video format
func IsVideoFile(data []byte) bool {
return strings.Index(http.DetectContentType(data), "video/") != -1
}

+ 1
- 1
routers/repo/view.go Vedi File

@@ -296,7 +296,7 @@ func Home(ctx *context.Context) {
ctx.HTML(200, tplRepoHome)
}

// RenderUserCards render a page show users accroding the input templaet
// RenderUserCards render a page show users according the input templaet
func RenderUserCards(ctx *context.Context, total int, getter func(page int) ([]*models.User, error), tpl base.TplName) {
page := ctx.QueryInt("page")
if page <= 0 {

Loading…
Annulla
Salva