summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Make CertFile and KeyFile relative to CustomPath (#9868) (#9874)zeripath2020-01-194-6/+27
| | | | | | | | | | | | | | | | | | * Make CertFile and KeyFile relative to CustomPath The current code will absolute CertFile and KeyFile against the current working directory. This is quite unexpected for users. This code makes relative paths absolute against the CustomPath. Fix #4196 * Improve error reporting when reading certificates * Apply suggestions from code review Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com>
* Fix issues/pulls dependencies problems (#9842) (#9864)Lunny Xiao2020-01-198-26/+57
| | | | | | | * Fix issues/pulls dependencies problems * fix swagger and api param name * fix js
* Explicitly refer to PR in squash-merge commit message in case of external ↵David Svantesson2020-01-182-1/+9
| | | | | | | | | | | | tracker (#9844) (#9855) * Explicitly refer to PR in squash-merge commit message in case of external tracker * documentation Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: zeripath <art27@cantab.net>
* fix (#9837)65432020-01-171-1/+7
|
* Changelog 1.10.3 (#9832) (#9849)65432020-01-172-12/+30
|
* Fix markdown anchor links (#9673) (#9840)Moritz2020-01-171-0/+3
|
* Fix download file wrong content-type (#9825) (#9834)Lunny Xiao2020-01-171-1/+7
| | | | | | | | | | * Fix download file wrong content-type * change the error text to be more precise * fix test Co-authored-by: Lauris BH <lauris@nix.lv>
* Fix wrong identify poster on a migrated pull request when submi… (#9827) ↵Lunny Xiao2020-01-172-2/+2
| | | | (#9830)
* fix dump non-exist log directory (#9818) (#9819)Lunny Xiao2020-01-171-2/+4
|
* Fix compare (#9808) (#9814)Lunny Xiao2020-01-171-24/+20
| | | | | | Co-authored-by: techknowlogick <matti@mdranta.net> Co-authored-by: techknowlogick <matti@mdranta.net>
* Fix push-to-create (#9772) (#9797)John Olheiser2020-01-161-1/+58
| | | | | | | | | | | | | | | | | | | | | | | | * Fix push-to-create Signed-off-by: jolheiser <john.olheiser@gmail.com> * Check URL path and service Signed-off-by: jolheiser <john.olheiser@gmail.com> * Send dummy payload on receive-pack GET Signed-off-by: jolheiser <john.olheiser@gmail.com> * The space was actually a NUL byte Signed-off-by: jolheiser <john.olheiser@gmail.com> * Use real bare repo instead of manufactured payload Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: zeripath <art27@cantab.net>
* Fix missing msteam webhook on organization (#9781) (#9794)Lunny Xiao2020-01-161-1/+3
|
* Fix missing unlock in uniquequeue (#9791)zeripath2020-01-161-0/+1
|
* Fix (#9761) Korean locales (#9780)65432020-01-151-47/+59
| | | | | | * backport korean 20-20-01-15 | fix #9761 * update state 14:43:10 UTC
* Fix add team on collaborator page when same name as organization (#9778)David Svantesson2020-01-151-1/+1
|
* Backport Locales [2020-01-14] (#9773)65432020-01-1514-21/+279
| | | | | | | | | | * backport state of 2020-01-14 * Apply suggestions from code review Co-Authored-By: 6543 <6543@obermui.de> Co-authored-by: zeripath <art27@cantab.net>
* Fix SimpleMDE quote reply (#9757) (#9768)John Olheiser2020-01-151-13/+17
| | | | | | | | | Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com>
* Fix #9752 (#9769) (#9775)65432020-01-151-1/+1
| | | | Co-authored-by: zeripath <art27@cantab.net>
* Fix milestones page (#9771)65432020-01-141-1/+1
| | | | | | Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: John Olheiser <42128690+jolheiser@users.noreply.github.com>
* Fix missing updated time on migrated issues and comments (#9744) (#9764)Lunny Xiao2020-01-146-0/+15
| | | | | | | | | | * Fix missing updated time on migrated issues and comments * Fix testing and missing updated on migrating pullrequest Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com> Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com>
* fix webpack polyfills (#9735) (#9738)silverwind2020-01-121-1/+1
| | | | | | | | | | webpack polyfills did not work because useBuiltIns: 'entry' expects a explicit core-js import. Changed it to 'usage' which does not require these explicit imports and polyfills based on browserslist. As a result, the built index.js now went from 128kB to 192kB. Ref: https://babeljs.io/docs/en/babel-preset-env#usebuiltins
* Move Errored PRs out of StatusChecking (#9675) (#9726)zeripath2020-01-122-1/+8
| | | | | | | | | | | | | | | | | | * Move Errored PRs out of StatusChecking (#9675) * Set Errored PRs out of StatusChecking * Ensure that api status is correctly set too * Update models/pull.go Co-Authored-By: John Olheiser <42128690+jolheiser@users.noreply.github.com> Co-authored-by: John Olheiser <42128690+jolheiser@users.noreply.github.com> * Update services/pull/check.go Co-authored-by: John Olheiser <42128690+jolheiser@users.noreply.github.com>
* Make hook status printing configurable with delay (#9641) (#9725)zeripath2020-01-123-26/+128
| | | | | | | | | | | | | | | | * Delay printing hook statuses until after 1 second * Move to a 5s delay, wrapped writer structure and add config * Update cmd/hook.go * Apply suggestions from code review * Update cmd/hook.go Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com> Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com>
* [BugFix] [API] ​/repos​/issues​/search (#9698) (#9724)65432020-01-122-12/+61
| | | | | | | | | | | | * fix * fix options * add TEST Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com> Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com>
* silence fomantic error regarding tabs (#9713) (#9718)silverwind2020-01-111-0/+3
| | | | | | | Fomantic expects all tabs to have a target element with content as defined by the data-tab attribute. All our usage of the tab module seems to use <a> element tabs that link to new pages so these content elements are never present and fomantic complains about that in the console with an "Activated tab cannot be found" error. This silences that error.
* Remove unused lock (#9710)zeripath2020-01-112-1/+3
|
* Missed q.lock.Unlock() will cause panic (#9706)zeripath2020-01-111-1/+0
|
* Never allow an empty password to validate (#9682) (#9683)zeripath2020-01-111-1/+1
| | | | | | | | * Restore IsPasswordSet previous value * Update models/user.go Co-authored-by: Lauris BH <lauris@nix.lv>
* Don't attempt to close issue if already closed (#9699)guillep2k2020-01-112-5/+9
|
* Load milestone in API PR list (#9671) (#9700)John Olheiser2020-01-101-1/+2
|
* eliminate horizontal scroll caused by footer (#9674)silverwind2020-01-101-0/+1
| | | | Co-authored-by: zeripath <art27@cantab.net>
* remove google font call (#9668) (#9681)techknowlogick2020-01-092-3/+1
|
* Prevent redirect to Host (#9678) (#9679)zeripath2020-01-091-1/+2
|
* Fix nil reference in repo generation (#9660) (#9666)John Olheiser2020-01-091-29/+31
| | | | | | | | | * Fix nil reference Signed-off-by: jolheiser <john.olheiser@gmail.com> * Tighten Signed-off-by: jolheiser <john.olheiser@gmail.com>
* Add HTML URL to API Issues (#9654) (#9661)John Olheiser2020-01-097-4/+10
| | | | | | | | | | | | | | * Add HTML URL to API Issues Signed-off-by: jolheiser <john.olheiser@gmail.com> * Swagger Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: Lauris BH <lauris@nix.lv>
* Add PR review webhook to Telegram (#9653) (#9655)John Olheiser2020-01-081-0/+21
| | | | | | | | Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com> Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com>
* fix #9648 (#9652)65432020-01-081-5/+6
|
* Changelog for 1.11.0-RC1 (#9636)v1.11.0-rc165432020-01-081-26/+406
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generated Changelog * cormat, sort, fix * teamwork :) Co-Authored-By: techknowlogick <matti@mdranta.net> Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-Authored-By: John Olheiser <42128690+jolheiser@users.noreply.github.com> * next() * Next() * add last change * as @jolheiser suggested * Apply suggestions from code review Co-Authored-By: techknowlogick <matti@mdranta.net> * Apply suggestions from code review * Update CHANGELOG.md * Update CHANGELOG.md Co-Authored-By: John Olheiser <42128690+jolheiser@users.noreply.github.com> * Update CHANGELOG.md Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * add bugfix + topic is plural * rest * Apply suggestions from code review * Apply suggestions from code review Co-Authored-By: techknowlogick <matti@mdranta.net> Co-authored-by: techknowlogick <matti@mdranta.net> Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: John Olheiser <42128690+jolheiser@users.noreply.github.com> Co-authored-by: zeripath <art27@cantab.net>
* Repository teams - disable remove button when have access to all (#9640)David Svantesson2020-01-081-3/+2
| | | | Co-authored-by: zeripath <art27@cantab.net>
* Fix #9530: admin auth list make readable and admin auth delete bug fix (#9628)Shashvat Kedia2020-01-071-2/+3
|
* Move wiki related funtions from models to services/wiki (#9355)Lunny Xiao2020-01-077-529/+558
| | | | * Move wiki related funtions from models to services/wiki
* Branches not at ref commit ID should not be listed as Merged (#9614)zeripath2020-01-0710-34/+107
| | | | | | | | | | | Once a branch has been merged if the commit ID no longer equals that of the pulls ref commit id don't offer to delete the branch on the pull screen and don't list it as merged on branches. Fix #9201 When looking at the pull page we should also get the commits from the refs/pulls/x/head Fix #9158
* Fix Issue Unsubscription (#9634)65432020-01-072-5/+9
|
* [skip ci] Updated translations via CrowdinGiteaBot2020-01-0730-0/+152
|
* Remove stray printf (#9631)zeripath2020-01-071-1/+0
|
* [skip ci] Updated translations via CrowdinGiteaBot2020-01-071-0/+76
|
* Graceful Queues: Issue Indexing and Tasks (#9363)zeripath2020-01-0735-647/+2875
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Queue: Add generic graceful queues with settings * Queue & Setting: Add worker pool implementation * Queue: Add worker settings * Queue: Make resizing worker pools * Queue: Add name variable to queues * Queue: Add monitoring * Queue: Improve logging * Issues: Gracefulise the issues indexer Remove the old now unused specific queues * Task: Move to generic queue and gracefulise * Issues: Standardise the issues indexer queue settings * Fix test * Queue: Allow Redis to connect to unix * Prevent deadlock during early shutdown of issue indexer * Add MaxWorker settings to queues * Merge branch 'master' into graceful-queues * Update modules/indexer/issues/indexer.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Update modules/indexer/issues/indexer.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Update modules/queue/queue_channel.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Update modules/queue/queue_disk.go * Update modules/queue/queue_disk_channel.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Rename queue.Description to queue.ManagedQueue as per @guillep2k * Cancel pool workers when removed * Remove dependency on queue from setting * Update modules/queue/queue_redis.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * As per @guillep2k add mutex locks on shutdown/terminate * move unlocking out of setInternal * Add warning if number of workers < 0 * Small changes as per @guillep2k * No redis host specified not found * Clean up documentation for queues * Update docs/content/doc/advanced/config-cheat-sheet.en-us.md * Update modules/indexer/issues/indexer_test.go * Ensure that persistable channel queue is added to manager * Rename QUEUE_NAME REDIS_QUEUE_NAME * Revert "Rename QUEUE_NAME REDIS_QUEUE_NAME" This reverts commit 1f83b4fc9b9dabda186257b38c265fe7012f90df. Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: techknowlogick <matti@mdranta.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
* [skip ci] Updated translations via CrowdinGiteaBot2020-01-073-1/+9
|
* More extensive robots.txt docs (#9566)8ctopus2020-01-072-6/+39
|
* [skip ci] Updated translations via CrowdinGiteaBot2020-01-061-0/+6
|