aboutsummaryrefslogtreecommitdiff
path: root/cmd
Commit message (Collapse)AuthorAge
* user/settings: complete repositories panel (#4312)Unknwon2017-03-23
|
* error: move ErrRepoNotExist -> errors.RepoNotExistUnknwon2017-03-23
|
* user/settings: add repositories panel (#4312)Rob Richards2017-03-23
| | | | | | | * Add Repositories panel to user settings issue #4277 * modified personal repo settings format
* repo: rename PageIsViewCode -> PageIsViewFilesUnknwon2017-03-22
| | | | Also highlight 'Files' tab when use editor.
* repo/webhook: able to retrigger delivery history (#2187)Unknwon2017-03-19
|
* repo: allow issues and wiki for bare repository (#4104)Unknwon2017-03-16
|
* models: rename ErrUserNotExist -> errors.UserNotExistUnknwon2017-03-16
|
* release: improve attachment handleUnknwon2017-03-13
|
* release: able to add attchments to release (#1614)Unknwon2017-03-13
| | | | Added new config section '[release.attachment]’.
* cmd/hook: fixed typo (#4280)Danny Althoff2017-03-12
|
* repo: commits, branches and releases should highlight files tabUnknwon2017-03-11
|
* repo/branches: overview and all (#2310)Unknwon2017-03-11
|
* repo/pull: handle head repository of merged pull requests deletedUnknwon2017-03-10
|
* repo/release: 404 when edit draft (4262)Unknwon2017-03-10
|
* Protected branches: allow whitelist bypass require pull request check (#4207)Unknwon2017-03-08
|
* routers/repo/http: only prompt HTTP Basic Authentication when intendedUnknwon2017-03-04
| | | | | | | | | Sometimes user could simply request wrong URL, but if that wrong URL has nothing related Git HTTP operations, HTTP Basic Authentication should not prompted. Instead, clean 404 page should be presented. The patch also supports Git HTTP operations without '.git' suffix to the repository name, which addresses #4226 and #4189.
* hook: fix can’t be executed while run as service on Windows (#4207)Unknwon2017-02-28
|
* cmd: able to backup and restoreUnknwon2017-02-27
| | | | | | Not very robust, must execute under correct workdir. Addresses #2072, #3708, #648
* cmd: refactoring command nameUnknwon2017-02-27
|
* refactoring: modules/auth/*_form.go -> modules/formUnknwon2017-02-27
|
* repo: add protect branch whitelist (#4177)Unknwon2017-02-23
| | | | | Add options to add users and teams to whitelist of a protected branch. This is only available for organizational repositories.
* models/access: hasAccess only need userID not user objectUnknwon2017-02-23
|
* release: fix unable to edit release of a fork repositoryUnknwon2017-02-23
|
* router: fix 404 when repository name contains dotUnknwon2017-02-20
| | | | E.g. atomi.github.io
* vendor: update github.com/go-macaron/toolbox (#2857)Unknwon2017-02-20
| | | | Support HEAD requests of '/healthcheck' for service monitoring.
* repo: several minor improvementsUnknwon2017-02-19
| | | | | | 1. Fix sample content didn't show up when hook doesn't exist. 2. Fix CSS 'word-break' to use 'break-word' not 'break-all'. 3. Fix single quote in 'locale_en-US.ini' file.
* commits: able to specify pageSize dynamically (#3965)Unknwon2017-02-18
| | | | | | | Usage: <url>?page={page}&pageSize={pageSize} Also avoid/removed getting total commits count for pagination, users are only allowed navigation by 'newer' and 'older'.
* locale: add Ukrainian supportUnknwon2017-02-18
|
* webhook: add native Discord supportUnknwon2017-02-18
|
* repo/release: add pagination (#2164)Unknwon2017-02-17
|
* Initial version of protected branches (#776)Unknwon2017-02-17
| | | | | - Able to restrict force push and deletion - Able to restrict direct push
* refactoring: SSH and HTTP push procees is now unifiedUnknwon2017-02-16
| | | | | | | | | | | | | | We used to handle SSH and HTTP push separately which produces duplicated code, but now with post-receive hook, the process is unified to one single place and much cleaner. Thus, UpdateTask struct is removed. Narrow down the range of Git HTTP routes to reduce condufsing HTTP Basic Authentication window popup on browser. By detecting <old-commit, new-commit, ref-name> inside post-receive hook, Git HTTP doesn't need to read the whole content body anymore, which completely solve the RAM problem reported in #636.
* wiki: fix crash with blob name contains tab (#3916)Unknwon2017-02-16
|
* vendor: update git-module (#4128)Unknwon2017-02-15
|
* cmd/hook: check existence before call custom hookUnknwon2017-02-14
|
* git: delegate all server-side Git hooks (#1623)Unknwon2017-02-14
|
* Use very strong ciphers (#4116)Aaron Wood2017-02-12
| | | | | | * Use very strong ciphers * Remove TLS_RSA_WITH_AES_256_GCM_SHA384 to be compatible with Go 1.5
* diff: fix can't show compare page for fork repository (#4110)Unknwon2017-02-12
|
* Able to disable non-admin to create new organization (#1556)Unknwon2017-02-10
| | | | | Add new config option '[admin] DISABLE_REGULAR_ORG_CREATION', by default it's 'false'.
* dump: check existence before include data subdirs (#4100)Unknwon2017-02-10
|
* log: start using gopkg.in/clog.v1Unknwon2017-02-09
|
* dump: include data-subdirs (#4100)Unknwon2017-02-09
|
* routers/repo/branch: fix can't delete branch with slashes after merge (#4089)Unknwon2017-02-09
|
* routers/repo/pull: fix 404 on PR compare (#4074)Unknwon2017-02-08
| | | | | | | | | | | | Due to recent code refactor, ctx.PullRequest is not initialized for route repo.CompareAndPullRequest, which leads the UI thinks the compare is not happening inside the same repository. The current fix is to allow compare URL to include redundant head user name so everything works fine again, but code logic isn't as clean as before. Made comments about possible future fix.
* cmd/serve: minor code improve for PR #4078Unknwon2017-02-01
|
* Check deploy keys when Gogs is run with Service.RequireSignInView=true (#4078)Pablo Saavedra2017-02-01
| | | | | | | | | | | | | | | | | * Check deploy keys when Gogs is run with require_sign_in_view Check if the deploy key can access to a repository. A deploy key doesn't represent an gogs user, so in a site with Service.RequireSignInView activated we should give read access only in the repositories where this deploy key is in use. In other case, a deploy service or system using an active deploy key can get read access to all the repositories in a Gogs service. * Refactoring: Comments starts in a new line * Minor change in a comment * Code cleaning. Replace spaces with tabs
* Do a fast-fail testing on repository URL before mirroringUnknwon2017-01-31
| | | | | To ensure the URL is accessible under good condition to prevent long blocking on URL resolution without syncing anything.
* Move models/mail.go to modules/mail.goUnknwon2017-01-30
| | | | To use interface to replace *models.User in avoiding cycle import.
* Able to set custom Access-Control-Allow-Origin header (#3987)Unknwon2017-01-28
| | | | Added new config option '[http] ACCESS_CONTROL_ALLOW_ORIGIN'.
* Add 'Organizations' page to user settings (#3587)Unknwon2017-01-27
| | | | User is now able to view full list of organizations belongs to.