Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add test environment for Mysql8 (#5234) | Lunny Xiao | 2019-03-17 | 4 | -4/+120 |
| | |||||
* | More specific declaration of search disk space (#6338) | Thomas McWork | 2019-03-16 | 1 | -1/+1 |
| | | | Elaborate more on the code search storage space requirement | ||||
* | split setting.go to multiple files (#6154) | Lunny Xiao | 2019-03-16 | 5 | -348/+433 |
| | | | | | | * split setting.go to multiple files * fix lint | ||||
* | Request to join the maintainers (#6340) | Richard Mahn | 2019-03-15 | 1 | -0/+1 |
| | |||||
* | use updated reference of xgo in makefile (#6339) | techknowlogick | 2019-03-15 | 1 | -3/+3 |
| | |||||
* | Add way to force checkout (#6322) | John Olheiser | 2019-03-15 | 1 | -1/+8 |
| | |||||
* | Add same changes from issues page to milestone->issues page (#6328) | John Olheiser | 2019-03-15 | 4 | -11/+35 |
| | |||||
* | Return 409 when creating repo if it already exists. (#6330) | Bogdan Petrea | 2019-03-15 | 2 | -2/+74 |
| | |||||
* | Fix ParsePatch function to work with quoted diff --git strings (#6323) | mrsdizzie | 2019-03-14 | 2 | -0/+65 |
| | | | | | | | | | | | | | | | | * Fix ParsePatch to work properly with quoted diff --git string Currently ParsePatch fails when a diff contains a quoted diff line like: diff --git "a/file" "b/file" This patch makes it properly parse the line when that happens. Fixes #6309 * Add test for regular case while here * Simplify string modification | ||||
* | Add InternalTokenURI to load InteralToken from an external file (#5812) | techknowlogick | 2019-03-13 | 1 | -25/+73 |
| | |||||
* | backport 1.7.4 changelog (#6317) | techknowlogick | 2019-03-13 | 1 | -0/+9 |
| | |||||
* | Use correct remote on Windows (#6313) | John Olheiser | 2019-03-12 | 1 | -1/+1 |
| | |||||
* | Fix reported issue in repo description (#6306) | zeripath | 2019-03-11 | 2 | -3/+53 |
| | |||||
* | Use url.PathEscape to escape the branchname (#6304) | zeripath | 2019-03-12 | 2 | -2/+4 |
| | | | | | | * Use url.PathEscape to escape the branchname * GetRepositoryByOwnerAndName should also have url.PathEscape as the owner and reponame are provided by the client | ||||
* | Updates vendor/code.gitea.io/git (#6286) | Richard Mahn | 2019-03-11 | 2 | -4/+12 |
| | |||||
* | [skip ci] Updated translations via Crowdin | GiteaBot | 2019-03-11 | 1 | -0/+27 |
| | |||||
* | Update third-party-tools.en-us.md (#6301) | MysticBoy | 2019-03-11 | 1 | -0/+3 |
| | | | Add Gitea Extension for Visual Studio | ||||
* | update git vendor to fix wrong release commit id and add migrations (#6224) | Lunny Xiao | 2019-03-11 | 9 | -15/+133 |
| | | | | | | | | | | * update git vendor to fix wrong release commit id and add migrations * fix count * fix migration release * fix tests | ||||
* | Add support for client basic auth for exchanging access tokens (#6293) | Jonas Franz | 2019-03-11 | 2 | -1/+68 |
| | | | | | | | | * Add support for client basic auth for exchanging access tokens * Improve error messages * Fix tests | ||||
* | [skip ci] Updated translations via Crowdin | GiteaBot | 2019-03-10 | 2 | -1/+26 |
| | |||||
* | Remove util.RemoveAll - should have been removed since go 1.7 (#6299) | zeripath | 2019-03-10 | 3 | -31/+2 |
| | |||||
* | [skip ci] Updated translations via Crowdin | GiteaBot | 2019-03-09 | 2 | -0/+51 |
| | |||||
* | Copyedit docs (#6275) | Aidan Fitzgerald | 2019-03-09 | 28 | -111/+111 |
| | |||||
* | Add regenerate secret feature for oauth2 (#6291) | Jonas Franz | 2019-03-09 | 3 | -1/+33 |
| | | | | | | * Add regenerate secret functionality * Fix lint | ||||
* | Add unit types to repo action URL to correctly show 404 when archived (#6247) | John Olheiser | 2019-03-09 | 1 | -1/+1 |
| | | | Signed-off-by: jolheiser <john.olheiser@gmail.com> | ||||
* | [skip ci] Updated translations via Crowdin | GiteaBot | 2019-03-08 | 29 | -3/+63 |
| | |||||
* | Use golang 1.12 to build in dockerfile (#6285) | techknowlogick | 2019-03-08 | 1 | -1/+1 |
| | |||||
* | Add security note to issue template (#6281) | John Olheiser | 2019-03-08 | 1 | -2/+4 |
| | |||||
* | [skip ci] Updated translations via Crowdin | GiteaBot | 2019-03-08 | 1 | -3/+3 |
| | |||||
* | Third party docs (#6282) | John Olheiser | 2019-03-08 | 1 | -0/+33 |
| | |||||
* | [skip ci] Updated translations via Crowdin | GiteaBot | 2019-03-08 | 1 | -6/+6 |
| | |||||
* | Integrate OAuth2 Provider (#5378) | Jonas Franz | 2019-03-08 | 37 | -11/+2667 |
| | |||||
* | [Contrib] Checkout a PR (#6021) | Antoine GIRARD | 2019-03-07 | 2 | -0/+260 |
| | |||||
* | Add robots.txt as reserved username (#6272) | techknowlogick | 2019-03-07 | 1 | -0/+1 |
| | | | Fix #6271 | ||||
* | Replace linkRegex with xurls library (#6261) | mrsdizzie | 2019-03-07 | 9 | -3/+2038 |
| | | | | | | | | | | | | | | | | | | | | * Replace linkRegex with xurls library Rather than maintaining a complicated regex to match URLs for autolinking, gitea can use this existing go library that takes care of the matching with very little code change to gitea itself. After spending a while trying to find the perfect regex for all cases this library still works better as it is more flexible than a single regex ever will be. This will also fix the following issues: #5844 #3095 #3381 This passes all our current tests and I've added new ones mentioned in those issues as well. * Use xurls.StrictMatchingScheme instead of xurls.Strict This is much faster and we only care about https? links to preserve existing behavior. | ||||
* | [skip ci] Updated translations via Crowdin | GiteaBot | 2019-03-07 | 4 | -13/+16 |
| | |||||
* | Remove visitLinksForShortLinks features (#6257) | mrsdizzie | 2019-03-07 | 2 | -14/+9 |
| | | | | | | | | | | | | | | | | | | | | | | The visitLinksForShortLinks feature would look inside of an <a> tag and run shortLinkProcessorFull on any text, which attempts to create links out of potential 'short links' like [[test]] [[link|example]] etc... This makes no sense because you can't have nested links within an <a> tag. Specifically, the html5 standard says <a> tags can't include interactive content if they contain the href attribute: http://w3c.github.io/html/single-page.html#the-a-element And also defines an <a> element with a href attribute as interactive: http://w3c.github.io/html/single-page.html#interactive-content Therefore you can't really put a link inside of another link. In practice none of this works anyways since browsers won't render it, it would probably be broken if they tried, and it is causing a bug (#4946). No current tests rely on this behavior either. This removes the feature and also explicitly excludes the current visitNodeForShortLinks from looking in <a> tags. | ||||
* | [skip ci] Updated translations via Crowdin | GiteaBot | 2019-03-06 | 1 | -0/+7 |
| | |||||
* | Fix fork button (#6223) | John Olheiser | 2019-03-05 | 3 | -2/+22 |
| | |||||
* | [skip ci] Updated translations via Crowdin | GiteaBot | 2019-03-05 | 1 | -9/+28 |
| | |||||
* | Fix #6234 : Check organization visibility before everything else (#6235) | Zsombor | 2019-03-05 | 1 | -0/+11 |
| | | | | | | * Fix #6234 : Check organization visibility before everything else * Ensure that Owner is available in the Repo | ||||
* | Add ability to sort issues by due date (#6206) (#6244) | stevegt | 2019-03-05 | 4 | -0/+10 |
| | | | Signed-off-by: Steve Traugott <stevegt@t7a.org> | ||||
* | Make organization dropdown scrollable when using mouse wheel (#5988) | Muhammed TİFTİKÇİ | 2019-03-04 | 3 | -29/+8 |
| | | | * Fix #5580 | ||||
* | Prevent double-close of issues (#6233) | zeripath | 2019-03-04 | 1 | -1/+7 |
| | |||||
* | Override xorm type mapping for U2F counter (#6232) | Maurizio Porrato | 2019-03-04 | 4 | -1/+43 |
| | |||||
* | add isAdmin to user model (#6231) | Lanre Adelowo | 2019-03-03 | 6 | -2/+28 |
| | | | | | update vendor and add tests fix swagger | ||||
* | add create issue via email comparison (#6227) | Martin Delille | 2019-03-02 | 1 | -0/+1 |
| | |||||
* | Fix renames over redirects (#6216) | James E. Blair | 2019-03-02 | 1 | -1/+17 |
| | | | | | | | | | | | | | | | | In #6211, we started creating repo_redirects for ownership transfers, however that opens an edge case where a user might perform the following sequence: rename org1/repo1 -> org1/repo2 (creates org1/repo1 redirect) transfer org2/repo1 -> org1/repo1 (org1/repo1 redirect continues to exist) rename org1/repo1 -> org1/repo3 (fails due to existing org1/repo1 redirect) This change ensures that each time we rename or transfer a repo, we delete any existing redirects at the target location. This already happens when a new repo is created. By doing this we ensure that we'll never have both a repo and a redirect at the same location. Signed-off-by: James E. Blair <jeblair@redhat.com> | ||||
* | add service desk to comparison (#6220) | Martin Delille | 2019-03-02 | 1 | -0/+1 |
| | | | | | | * add service desk to comparison * add link to issue | ||||
* | [skip ci] Updated translations via Crowdin | GiteaBot | 2019-03-01 | 1 | -3/+69 |
| |