6821a32d81
Properly escape on the redirect from the web editor ( #6657 )
2019-04-16 20:07:13 -04:00
867ad49091
update highlight.js ( #6658 )
2019-04-16 19:05:40 -04:00
38b4c23d24
Fixes #6659 - Swagger schemes selection default to page's ( #6660 )
2019-04-16 18:09:36 -04:00
450fc9a120
Fix 6655 - there is no need to EscapePound .Link as it is already escaped ( #6656 )
...
Signed-off-by: Andrew Thornton <art27@cantab.net >
2019-04-16 22:37:35 +01:00
8d01b9857f
Fix dropdown icon padding ( #6651 )
...
Signed-off-by: Andrew Thornton <art27@cantab.net >
2019-04-16 12:18:09 -04:00
1bce1894f5
Use ctx.metas for SHA hash links ( #6645 )
...
Since #6273 was merged, we now have access to proper context metas
always. Update SHA generated links to use these instead of urlPrefix.
Update tests as well.
Fixes #4536 .
2019-04-16 08:53:57 +01:00
e98565ddc7
Fix wrong GPG expire date ( #6643 )
...
* fix expire of gpg relative to key creation https://tools.ietf.org/html/rfc4880#section-5.2.3.6
* add test
2019-04-15 20:32:15 -04:00
ecfa5f1594
Fix forking an empty repository ( #6637 )
...
Fixes #6633
Signed-off-by: Segev Finer <segev@codeocean.com >
2019-04-15 16:48:35 -04:00
3fb038c53a
upgrade version of lib/pq to v1.1.0 ( #6640 )
...
Adds SCRAM-SHA-256 authentication
2019-04-15 16:14:31 -04:00
83d6e5e3f8
Update UI for topics labels on projects ( #6639 )
2019-04-15 14:59:30 -04:00
837116875e
Return a UserList from /api/v1/admin/users ( #6629 )
2019-04-15 12:36:59 -04:00
74fc63682c
[skip ci] Updated translations via Crowdin
2019-04-15 15:57:01 +00:00
62d3f49c28
Add json tags for oauth2 form ( #6627 )
2019-04-15 11:54:50 -04:00
e6161b09ff
Remove trailing slash from twitter card ( #6619 )
2019-04-14 18:04:43 -04:00
77ffb1563b
remove bash requirement in makefile ( #6617 )
2019-04-14 16:33:24 -04:00
de6527b371
fix Open Graph og:image link ( #6612 )
2019-04-14 13:34:29 -04:00
2342d2d58b
[skip ci] Updated translations via Crowdin
2019-04-14 16:44:32 +00:00
d699de32f2
add .gpg url (match github behaviour) ( #6610 )
...
* add .gpg url (match github behaviour)
* wildcard
* test to export maximum data
* working POC
* add comment for old imported keys
* cleaning
* Update routers/user/profile.go
Co-Authored-By: sapk <sapk@users.noreply.github.com >
* add migration script
* add integration tests
2019-04-14 12:43:56 -04:00
38889f09cb
Fix cross-compile builds ( #6609 )
2019-04-14 11:06:43 -04:00
3297b8d53a
[skip ci] Updated translations via Crowdin
2019-04-14 08:45:13 +00:00
79ce24bc6f
Add oauth2 documentation ( #6604 )
...
* Add oauth2 documentation
Signed-off-by: Jonas Franz <info@jonasfranz.software >
* Apply suggestions from code review
Co-Authored-By: jonasfranz <info@jonasfranz.software >
* Update docs/content/doc/advanced/oauth2-provider.md
Co-Authored-By: jonasfranz <info@jonasfranz.software >
* Update oauth2-provider.md
2019-04-14 10:42:11 +02:00
c168095afb
[skip ci] Updated translations via Crowdin
2019-04-13 04:21:51 +00:00
c9f5953a41
backport 1.8.0-rc3 & 1.7.6 changelog ( #6598 )
2019-04-13 00:19:51 -04:00
a3316b620e
[skip ci] Updated translations via Crowdin
2019-04-13 02:49:37 +00:00
16fe297a74
FAQ ( #6524 )
2019-04-12 22:46:52 -04:00
b3e757a06c
Correctly adjust mirror url ( #6593 )
2019-04-12 21:52:57 +01:00
01e0408fa1
[skip ci] Updated translations via Crowdin
2019-04-12 16:14:00 +00:00
cb64b21a7f
Change summary to full message ( #6591 )
...
Signed-off-by: jolheiser <john.olheiser@gmail.com >
2019-04-12 17:11:09 +01:00
783cd64927
Add option to disable refresh token invalidation ( #6584 )
...
* Add option to disable refresh token invalidation
Signed-off-by: Jonas Franz <info@jonasfranz.software >
* Add integration tests and remove wrong todos
Signed-off-by: Jonas Franz <info@jonasfranz.software >
* Fix typo
Signed-off-by: Jonas Franz <info@jonasfranz.software >
* Fix tests and add documentation
Signed-off-by: Jonas Franz <info@jonasfranz.software >
2019-04-12 15:50:21 +08:00
3ff0a126e1
Improve issue autolinks ( #6273 )
...
* Improve issue autolinks
Update autolinks to match what github does here:
Issue in same repo: #1
Issue in different repo: org/repo#1
Fixes #6264
* Use setting.AppURL when parsing URL
Using setting.AppURL here is a more reliable way of parsing the current
URL and what other functions in this file seem to use.
* Make ComposeMetas always return a valid context
* Add per repository markdown renderers for better context
* Update for use of context metas
Now that we include the user and repo name inside context metas, update
various code and tests for this new logic
2019-04-12 08:53:34 +03:00
3186ef554c
Support search operators for commits search ( #6479 )
...
* Support searching commits with prefix syntax
For now, support auther: committer:
When more than one prefix is supplied is presented, the result is the union.
When different prefixes are supplied, the result is the intersection.
For example,
"author:alice author:bob"
=> the result is all commits authored by Alice OR Bob
"hello committer:alice"
=> the result is all commits committed by Alice AND has the keyword
'hello' in the message.
Note that there should NOT have any space after the colon(:) of the prefix.
For example,
"author:bill" => correct
"author: bill" => wrong
* Remove unneeded logging
* Add missing files of test repository
* Add missing repo_unit entries to test fixtures
* Update test cases
* Add tooltip for commits search button
* Update tooltip text
I have no idea about how to format it with line breaks.
* Make the usage example more real
* Add a test case
* Add new options struct for SearchCommits
* Prefer len(s) > 0 over s != ""
* Add NewSearchCommitsOptions
2019-04-12 10:28:44 +08:00
1b7dffc3a3
fix bug user search API pagesize didn't obey ExplorePagingNum ( #6579 )
2019-04-11 19:29:41 -04:00
2f53b5f88c
fix mail notification when close/reopen issue ( #6581 )
2019-04-11 22:59:01 +01:00
48cdd90d4e
Fix new repo alignment ( #6583 )
...
Signed-off-by: jolheiser <john.olheiser@gmail.com >
2019-04-11 22:09:41 +01:00
4ad65bb89b
[skip ci] Updated translations via Crowdin
2019-04-11 20:21:44 +00:00
dc52868e1e
Minor CSS cleanup for the navbar ( #6553 )
...
* Minor CSS cleanup for the navbar
* move height fix to navbar
2019-04-11 21:19:43 +01:00
c02c6a144f
Fix race in integration testlogger ( #6556 )
...
* Fix race in logger
* At testing end drop the reference to the last test.
2019-04-11 19:49:49 +08:00
346036d47f
[skip ci] Updated translations via Crowdin
2019-04-11 08:35:26 +00:00
5348573fdf
Allow admin users to set a repositoires visibility to public, even if FORCE_PRIVATE is to true ( #6541 ) ( #6572 )
...
Signed-off-by: Matthias Beckert <beckert.matthias@googlemail.com >
2019-04-11 16:32:42 +08:00
66fa092cc8
[FIX] Docs: Backup&Restore: fixed rendering + minor fixes ( #6569 )
...
- Fixed a code block inverting the code blocks of the rest of the page
- Fixed various markdown syntax errors
- Fixed some spelling I could notice
Signed-off-by: 0x5c <0x5c.dev@gmail.com >
2019-04-10 09:34:44 -04:00
2664adf677
Fixes #6514 - New Pull Request on files and pulls pages the same ( #6515 )
...
* Fixes #6514 - New Pull Request on files and pulls pages the same
2019-04-09 22:16:29 +01:00
89cc7c646d
Prevent server 500 on compare branches with no common history ( #6555 )
...
* Prevent 500 if there is no common mergebase
* Prevent creation of PR with no history
2019-04-09 21:45:58 +01:00
7350e439bf
Add myself to MAINTAINERS ( #6554 )
2019-04-09 15:42:20 -04:00
0af0b078f9
wrap the ServerError and NotFound and log from the caller ( #6550 )
2019-04-09 21:10:42 +03:00
2b9b3310f6
Add username flag in create-user command ( #6534 )
...
* Add username flag in create-user command
* Fix the error message
* Change name to username on flag of create-user command
* Include create-user flags of both versions
* delete deprecated example of create-user command
2019-04-09 11:21:55 -04:00
8e949db3b5
Render SHA1 links as code blocks ( #6546 )
2019-04-09 06:18:48 +03:00
61b85990a6
Added docker example for backup ( #5846 )
...
* Added docker example for backup
* Fix using docker command example
* Clarify --tempdir as per @lafriks suggestion
2019-04-08 15:45:29 +03:00
e7d7dcb090
Issue indexer queue redis support ( #6218 )
...
* add redis queue
* finished indexer redis queue
* add redis vendor
* fix vet
* Update docs/content/doc/advanced/config-cheat-sheet.en-us.md
Co-Authored-By: lunny <xiaolunwen@gmail.com >
* switch to go mod
* Update required changes for new logging func signatures
2019-04-08 12:05:15 +03:00
6e4af4985e
Fixes pagination width on mobile view ( #5711 ) ( #6532 )
...
Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com >
2019-04-08 09:31:54 +03:00
aa02463ded
Delete local branch if it exists ( #6497 )
...
Signed-off-by: jolheiser <john.olheiser@gmail.com >
2019-04-08 08:08:02 +03:00