loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request 'Update links affected by the renaming of 'developer' documentation sub-path into 'contributor'' (#5129) from floss4good/forgejo__forgejo:contrib-doc into forgejo

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/5129
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Reviewed-by: Otto <otto@codeberg.org>

Otto c856f776 e5ea08b3

+6 -6
+1 -1
.forgejo/pull_request_template.md
··· 10 10 11 11 ## Checklist 12 12 13 - The [developer guide](https://forgejo.org/docs/next/developer/) contains information that will be helpful to first time contributors. There also are a few [conditions for merging Pull Requests in Forgejo repositories](https://codeberg.org/forgejo/governance/src/branch/main/PullRequestsAgreement.md). You are also welcome to join the [Forgejo development chatroom](https://matrix.to/#/#forgejo-development:matrix.org). 13 + The [contributor guide](https://forgejo.org/docs/next/contributor/) contains information that will be helpful to first time contributors. There also are a few [conditions for merging Pull Requests in Forgejo repositories](https://codeberg.org/forgejo/governance/src/branch/main/PullRequestsAgreement.md). You are also welcome to join the [Forgejo development chatroom](https://matrix.to/#/#forgejo-development:matrix.org). 14 14 15 15 ### Tests 16 16
+1 -1
.forgejo/workflows/build-release.yml
··· 1 1 # 2 - # See also https://forgejo.org/docs/next/developer/RELEASE/#release-process 2 + # See also https://forgejo.org/docs/next/contributor/release/#stable-release-process 3 3 # 4 4 # https://codeberg.org/forgejo-integration/forgejo 5 5 #
+1 -1
.forgejo/workflows/publish-release.yml
··· 1 1 # SPDX-License-Identifier: MIT 2 2 # 3 - # See also https://forgejo.org/docs/next/developer/RELEASE/#release-process 3 + # See also https://forgejo.org/docs/next/contributor/release/#stable-release-process 4 4 # 5 5 # https://codeberg.org/forgejo-experimental/forgejo 6 6 #
+1 -1
CONTRIBUTING.md
··· 4 4 5 5 Sensitive security-related issues should be reported to [security@forgejo.org](mailto:security@forgejo.org) using [encryption](https://keyoxide.org/security@forgejo.org). 6 6 7 - You can find links to the different aspects of Developer documentation on this page: [Forgejo developer guide](https://forgejo.org/docs/next/developer/). 7 + You can find links to the different aspects of Developer documentation on this page: [Forgejo Contributor Guide](https://forgejo.org/docs/next/contributor/).
+1 -1
templates/user/settings/appearance.tmpl
··· 64 64 </div> 65 65 </div> 66 66 <div class="tw-mb-4"> 67 - {{ctx.Locale.Tr "settings.language.localization_project" "https://forgejo.org/docs/latest/developer/localization/"}} 67 + {{ctx.Locale.Tr "settings.language.localization_project" "https://forgejo.org/docs/next/contributor/localization/"}} 68 68 </div> 69 69 <div class="field"> 70 70 <button class="ui primary button">{{ctx.Locale.Tr "settings.update_language"}}</button>
+1 -1
tests/integration/user_test.go
··· 389 389 assert.Equal(t, enabled, hintChecked) 390 390 391 391 link, _ := htmlDoc.Find("form[action='/user/settings/appearance/language'] a").Attr("href") 392 - assert.EqualValues(t, "https://forgejo.org/docs/latest/developer/localization/", link) 392 + assert.EqualValues(t, "https://forgejo.org/docs/next/contributor/localization/", link) 393 393 } 394 394 395 395 t.Run("view", func(t *testing.T) {