aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Handle submodules without a .gitmodules entry - fix #1023Filippo Valsorda2015-03-104-3/+15
|
* modules/git/signature.go: parse date foramt #663Unknwon2015-03-061-1/+1
|
* routers/repo/setting.go: fix LDAP cannot validate password #1006Unknwon2015-03-052-55/+61
|
* conf/locale: update localesUnknwon2015-03-042-11/+11
|
* scripts: remove meaningless script and modify systemd serviceUnknwon2015-03-042-17/+4
|
* cmd/serve.go: remove useless codeUnknwon2015-03-013-4/+2
|
* models/migrations: fix update errorUnknwon2015-02-281-1/+1
|
* Merge pull request #943 from diseaz/mailer-client-cert无闻2015-02-283-10/+27
|\ | | | | Use client certificate for SMTP over TLS
| * Make conf/app.ini changes match the styleDmitry Azhichakov2015-02-131-3/+3
| |
| * Fix "forcing" client certificate for SMTPDmitry Azhichakov2015-02-133-13/+21
| |
| * New feature: SMTP connection may use client certificate.Dmitry Azhichakov2015-02-122-5/+14
| | | | | | | | | | | | New config keys in [mailer] section: - CERT_FILE: path to a certificate file. - KEY_FILE: path to a key file.
* | Merge branch 'access' of github.com:gogits/gogs into devUnknwon2015-02-283-84/+53
|\ \
| * | models: mirror fix on #964Unknwon2015-02-284-9/+9
| | |
| * | Merge pull request #964 from phsmit/access_rewriteserv无闻2015-02-282-84/+53
| |\ \ | | | | | | | | Rewrite/simplify gogs serve
| | * \ Merge branch 'access' into access_rewriteservPeter Smit2015-02-2376-762/+902
| | |\ \
| | * | | Rewrite/simplify gogs servePeter Smit2015-02-162-79/+53
| | | | |
* | | | | Merge branch 'access' of github.com:gogits/gogs into devUnknwon2015-02-2836-1299/+1364
|\| | | |
| * | | | REAMDE: updateUnknwon2015-02-283-2/+3
| | | | |
| * | | | models: done testing on new access systemUnknwon2015-02-285-71/+129
| | | | |
| * | | | modules/setting: simple behave change in startupUnknwon2015-02-264-12/+7
| | | | |
| * | | | models: fix issue with transfer repositoryUnknwon2015-02-248-72/+80
| | | | | | | | | | | | | | | | | | | | README: fix typo
| * | | | Merge pull request #960 from phsmit/access_action无闻2015-02-231-8/+14
| |\ \ \ \ | | |_|/ / | |/| | | Fix that owners also see actions on their repositories
| | * | | Update/simplify fix that owners also see actions on their repositoriesPeter Smit2015-02-181-12/+12
| | | | |
| | * | | Fix that owners also see actions on their repositoriesPeter Smit2015-02-161-6/+12
| | |/ / | | | | | | | | | | | | | | | | | | | | This is a balance between speed and nice code, where speed has won. To prevent a repository query for each action the ownername is match with the current user. It would be "cleaner" or "better" if we fetch the repository each time. Another option is to add the RepoOwnerID to action
| * | | v4 migration, merge 'dev', clean code and mirror fixUnknwon2015-02-2311-234/+343
| | | |
| * | | Merge branch 'access' of github.com:gogits/gogs into accessUnknwon2015-02-221-0/+15
| |\ \ \
| | * \ \ Merge pull request #961 from phsmit/access_removecoll无闻2015-02-221-0/+15
| | |\ \ \ | | | | | | | | | | | | Remove collaborators when removing and transferring repository
| | | * | | Remove collaborators when removing and transferring repositoryPeter Smit2015-02-161-0/+15
| | | |/ /
| * | | | Merge branch 'access' of github.com:gogits/gogs into accessUnknwon2015-02-2214-136/+161
| |\| | |
| | * | | Merge pull request #959 from phsmit/access_update无闻2015-02-2110-72/+68
| | |\ \ \ | | | | | | | | | | | | Updating context and fixing permission issues
| | | * | | Updating context and fixing permission issuesPeter Smit2015-02-1610-72/+68
| | | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | The boolean flags in the repo context have been replaced with mode and two methods Also, the permissions have been brought more in line with https://help.github.com/articles/permission-levels-for-an-organization-repository/ , Admin Team members are able to change settings of their repositories.
| | * | | Merge pull request #958 from phsmit/fix_mirror_access无闻2015-02-172-0/+10
| | |\ \ \ | | | |/ / | | |/| | Make sure that a mirror can't be written to by http or ssh
| | | * | Make sure that a mirror can't be written to by http or sshPeter Smit2015-02-162-0/+10
| | |/ /
| | * | Merge pull request #951 from phsmit/fix_team_update无闻2015-02-131-4/+5
| | |\ \ | | | | | | | | | | Fix access for team mode update
| | | * | Fix access for team mode updatePeter Smit2015-02-131-4/+5
| | |/ /
| | * | Merge pull request #949 from phsmit/different_access_migration无闻2015-02-131-60/+78
| | |\ \ | | | | | | | | | | Rewrite of access migration
| | | * | Rewrite of access migrationPeter Smit2015-02-131-60/+78
| | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | The old migration had a few issues: - It left old column names around - It did not give the right access levels for owners and admins Also, this includes a migration that fixes the authorization of owner teams, which was previously ORG_ADMIN (instead of ORG_OWNER)
| * | | Merge branch 'dev' of github.com:gogits/gogs into accessUnknwon2015-02-2265-463/+478
| |\ \ \ | | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: gogs.go models/models.go models/user.go templates/.VERSION templates/org/home.tmpl
| * | | some fixes, but not done yet!Unknwon2015-02-131-7/+12
| | | |
| * | | fix mirror issues uncaught #941Unknwon2015-02-136-80/+50
| | | |
| * | | code fix #941 caution: undertestUnknwon2015-02-1310-256/+306
| | | |
| * | | models/migrations: finish accessRefactorUnknwon2015-02-121-5/+90
| | | |
| * | | Merge pull request #941 from phsmit/access_refactor无闻2015-02-1212-729/+244
| |\ \ \ | | | | | | | | | | Access refactor
| | * \ \ Merge remote-tracking branch 'mine/access_refactor' into access_refactorPeter Smit2015-02-1210-42/+44
| | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: cmd/serve.go models/access.go models/migrations/migrations.go models/org.go models/repo.go models/user.go modules/middleware/org.go modules/middleware/repo.go routers/api/v1/repo.go routers/org/teams.go routers/repo/http.go routers/user/home.go
| | | * | | Change constants to UPPERCASE_WITH_UNDERSCORE stylePeter Smit2015-02-099-42/+42
| | | | | |
| | | * | | Refactoring of the Access TablePeter Smit2015-02-0612-681/+235
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit does a lot of the work of refactoring the access table in a table with id's instead of strings. The result does compile, but has not been tested. It may eat your kittens.
| | * | | | Refactoring of the Access TablePeter Smit2015-02-1212-730/+243
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit does a lot of the work of refactoring the access table in a table with id's instead of strings. The result does compile, but has not been tested. It may eat your kittens.
| * | | | | models/migrations: fix little logic errorUnknwon2015-02-121-10/+12
| | | | | |
| * | | | | Merge pull request #940 from phsmit/migration_update无闻2015-02-121-14/+16
| |\| | | | | | | | | | | | | | | | Some comments and improvements for migrations
| | * | | | Some comments and improvements for migrationsPeter Smit2015-02-121-14/+16
| |/ / / /