Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix integration test after librejs location change (#2374) | Sandro Santilli | 2017-08-24 | 1 | -1/+1 |
| | | | Fixes #2373 | ||||
* | Add more test for login links and fix a bug on action retrieve (#2361) | Lunny Xiao | 2017-08-23 | 1 | -0/+97 |
| | | | | * add more test for login links and fix a bug on action retrieve | ||||
* | Add integration tests for signin (#2363) | David Schneiderbauer | 2017-08-23 | 2 | -4/+71 |
| | | | Signed-off-by: David Schneiderbauer <dschneiderbauer@gmail.com> | ||||
* | Add INTERNAL_TOKEN to integration .ini file (#2346) | Sandro Santilli | 2017-08-21 | 1 | -0/+1 |
| | | | | | | | Avoids override of source file upon running `make test-pgsql` Long story: settings.NewContext *adds* an INTERNAL_TOKEN if none is found; the other ini files under integration/ all have an INTERNAL_TOKEN | ||||
* | Add public links check (#2323) | Lunny Xiao | 2017-08-17 | 1 | -0/+33 |
| | | | | | | * add public links check * more links for query parameters | ||||
* | fix template error on explore repos (#2319) | Lunny Xiao | 2017-08-17 | 1 | -0/+17 |
| | |||||
* | Make SHOW_USER_EMAIL also apply to profiles (#2258) | Michael Kuhn | 2017-08-17 | 1 | -0/+70 |
| | | | The e-mail address is currently only hidden from the explore page. | ||||
* | More tweaks to repo top panel (#2267) | silverwind | 2017-08-13 | 1 | -1/+1 |
| | | | | | | | | | | * More tweaks to repo top panel * undo hiding of compare button on master * attempt to fix ci issue * another ci attempt | ||||
* | Check for access in /repositories/:id (#2227) | Ethan Koenig | 2017-07-30 | 1 | -0/+8 |
| | | | | | | * Check for access in /repositories/:id * Integration test | ||||
* | Fix bare-repo bugs (#2199) | Ethan Koenig | 2017-07-27 | 20 | -0/+563 |
| | | | | | | | | * Fix bare-repo bugs * Integration tests * Unused import | ||||
* | Fix hooks for integration repo (#2216) | Ethan Koenig | 2017-07-27 | 7 | -3/+30 |
| | |||||
* | Remove unit types commits and settings (#2161) | Lauris BH | 2017-07-17 | 1 | -1/+1 |
| | | | | | | | | | | * Remove unit types commits and settings * Can not limit units in administrator teams * Limit changing units only to teams with read and write access mode * Small code optimization | ||||
* | Only show SSH clone URL if signed in (#2169) (#2170) | Stefan Kalscheuer | 2017-07-15 | 1 | -0/+37 |
| | | | | | | | | | | | | | | | | | | | * Add configuration flag SSH_EXPOSE_ANONYMOUS If this flag (default True) is set to false, the SSH clone URL will only be exposed if the current user is signed in. * Default SSH exposure set to false To match GitHub and for security reasons, SSH URL exposure is disabled by default. In addition to that. minor code changes have been applied. Signed-off-by: Stefan Kalscheuer <stefan@stklcode.de> * Add integration tests * Hide clone button neither HTTP and SSH is enabled Signed-off-by: Stefan Kalscheuer <stefan@stklcode.de> | ||||
* | More integration tests for comment API (#2156) | Ethan Koenig | 2017-07-14 | 1 | -1/+90 |
| | |||||
* | API: support '/orgs/:org/repos' (#2047) | Aaron Walker | 2017-07-13 | 1 | -0/+21 |
| | | | * API: support '/orgs/:org/repos' | ||||
* | Fix username rendering bug (#2122) | Ethan Koenig | 2017-07-12 | 1 | -0/+37 |
| | | | | | | | | * Fix username rendering bug * XSS integration test * Migration to unescape user full names | ||||
* | Fix repo API bug (#2133) | Ethan Koenig | 2017-07-12 | 3 | -0/+69 |
| | | | Don't require token when not necessary | ||||
* | Fix GET /users/:username/repos endpoint (#2125) | Ethan Koenig | 2017-07-10 | 1 | -4/+33 |
| | |||||
* | Cache session cookies in tests (#2128) | Ethan Koenig | 2017-07-09 | 1 | -1/+8 |
| | |||||
* | Remove unused files (#2124) | Ethan Koenig | 2017-07-07 | 2 | -23/+0 |
| | |||||
* | Less verbose integration tests (#2123) | Ethan Koenig | 2017-07-07 | 24 | -223/+122 |
| | | | * Helper functions for intergration test boilerplate | ||||
* | Fix API for branches with slashes (#2096) | Ethan Koenig | 2017-07-02 | 2 | -0/+45 |
| | |||||
* | Check for valid renamed usernames (#2077) | Ethan Koenig | 2017-07-01 | 1 | -0/+99 |
| | | | | | | | | | | * Check for valid renamed usernames * Integration test * Test for username with space * Make name field required | ||||
* | Fix SQL bug in models.PullRequests | Ethan Koenig | 2017-07-01 | 1 | -0/+31 |
| | |||||
* | Fix release display and correct paging (#2080) | Lauris BH | 2017-06-29 | 1 | -0/+93 |
| | |||||
* | Integration tests for issues API (#2059) | Ethan Koenig | 2017-06-25 | 1 | -0/+65 |
| | |||||
* | Fix improper setup for integration tests (#2050) | Ethan Koenig | 2017-06-25 | 1 | -4/+2 |
| | |||||
* | Improve integration test helper functions (#2049) | Ethan Koenig | 2017-06-25 | 13 | -24/+9 |
| | | | Set request headers in helper functions, and new helper for requests with string-formatted URLs | ||||
* | Fix bug in issue labels API (#2048) | Ethan Koenig | 2017-06-25 | 2 | -1/+67 |
| | |||||
* | Make branch deletion URL more like GitHub's, fixes #1397 (#1994) | Lauris BH | 2017-06-21 | 3 | -0/+103 |
| | | | | | | | | | | | | * Make branch deletion URL more like GitHub's, fixes #1397 * Add PR branch deletion integration test * Do not allow deleting protected branch * Change http error code to 403 if user has no write rights to repository * Add check to not panic if forked repository has alrady been deleted | ||||
* | Add integration test for repository migration (#1983) | Mura Li | 2017-06-20 | 1 | -0/+70 |
| | |||||
* | Add integration test for issue creating (#2002) | Mura Li | 2017-06-18 | 1 | -0/+31 |
| | |||||
* | Don't show non-comments in comments API (#2001) | Ethan Koenig | 2017-06-18 | 4 | -10/+47 |
| | |||||
* | Let not-logged-in users view releases (#1999) | Ethan Koenig | 2017-06-18 | 1 | -0/+8 |
| | |||||
* | fix golint error and rename func for suggestion. (#1997) | Bo-Yi Wu | 2017-06-17 | 11 | -25/+30 |
| | | | Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> | ||||
* | Use testing benchmark interface (#1993) | Antoine GIRARD | 2017-06-17 | 2 | -9/+9 |
| | |||||
* | Consolidate boilerplate in integration tests (#1979) | Ethan Koenig | 2017-06-17 | 15 | -168/+147 |
| | |||||
* | Set console to debug for integration tests | Ethan Koenig | 2017-06-15 | 3 | -7/+7 |
| | |||||
* | Add integration test for pull-request merge (#1912) | Mura Li | 2017-06-15 | 4 | -3/+62 |
| | |||||
* | Fix typo (#1974) | Shuanglei Tao | 2017-06-15 | 1 | -1/+1 |
| | |||||
* | Add pull-create integration test (#1972) | Mura Li | 2017-06-15 | 1 | -0/+56 |
| | |||||
* | Fix search by issue type (#1914) | Ethan Koenig | 2017-06-15 | 1 | -0/+50 |
| | | | | * Fix search by issue type | ||||
* | fix collborators lack of units on orgnization repositories (#1968) | Lunny Xiao | 2017-06-15 | 24 | -6/+567 |
| | | | | | | * fix collborators lack of units on orgnization repositories * also change log level to debug | ||||
* | Fix uppercase default branch bug (#1965) | Ethan Koenig | 2017-06-14 | 3 | -0/+60 |
| | |||||
* | Fix setting.AppPath for integration tests (#1923) | Kim "BKC" Carlbäcker | 2017-06-13 | 1 | -4/+13 |
|\ | | | | | Fix setting.AppPath for integration tests | ||||
| * | Absolute path for setting.CustomConf | Ethan Koenig | 2017-06-09 | 1 | -5/+11 |
| | | |||||
| * | Fix setting.AppPath for integration tests | Ethan Koenig | 2017-06-09 | 1 | -1/+4 |
| | | |||||
* | | Display URLs in integration test logs (#1924) | Ethan Koenig | 2017-06-09 | 15 | -71/+47 |
|/ | |||||
* | Add integration test for file editing (#1907) | Mura Li | 2017-06-08 | 1 | -0/+45 |
| | |||||
* | Add integration test for repository forking | Mura Li | 2017-06-07 | 1 | -0/+67 |
| |