Skip to content

Commit fb35553

Browse files
authored
Fix r4 url (#218)
Fix r4 base url Add slack icon
1 parent 8f065b9 commit fb35553

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

config.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ archived_version = false
8080
# Used in the "version-banner" partial to display a version number for the
8181
# current doc set.
8282

83-
version = "main"
83+
version = "R4"
8484

8585
# A link to latest version of the docs. Used in the "version-banner" partial to
8686
# point people to the main doc site.
@@ -201,12 +201,12 @@ enable = false
201201
icon = "fab fa-github"
202202
desc = "Development takes place here!"
203203

204-
# [[params.links.developer]]
204+
[[params.links.developer]]
205+
name = "Slack"
206+
url = "https://nephio.slack.com"
207+
icon = "fab fa-slack"
208+
desc = "Chat with other project developers"
205209

206-
# name = "Slack"
207-
# url = "https://example.org/slack"
208-
# icon = "fab fa-slack"
209-
# desc = "Chat with other project developers"
210210
# [[params.links.developer]]
211211
# name = "Developer mailing list"
212212
# url = "https://example.org/mail"
@@ -216,7 +216,7 @@ enable = false
216216
# Add your release versions here
217217

218218
[[params.versions]]
219-
version = "main"
219+
version = "latest"
220220
url = "https://docs.nephio.org/docs/"
221221

222222
[[params.versions]]

content/en/docs/porch/contributors-guide/_index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Porch comprises of several software components:
2727
operations on package contents
2828
* [func](https://github.com/nephio-project/porch/tree/main/func): KRM function evaluator microservice; exposes gRPC API
2929
* [repository](https://github.com/nephio-project/porch/blob/main/pkg/repository): Repository integration package
30-
* [git](https://github.com/nephio-project/porch/tree/main/pkg/git): Integration with Git repository.
31-
* [oci](https://github.com/nephio-project/porch/tree/main/pkg/oci): Integration with OCI repository.
30+
* [git](https://github.com/nephio-project/porch/tree/main/pkg/externalrepo/git): Integration with Git repository.
31+
* [oci](https://github.com/nephio-project/porch/tree/main/pkg/externalrepo/oci): Integration with OCI repository.
3232
* [cache](https://github.com/nephio-project/porch/tree/main/pkg/cache): Package caching.
3333
* [controllers](https://github.com/nephio-project/porch/tree/main/controllers): `Repository` CRD. No controller;
3434
Porch apiserver watches these resources for changes as repositories are (un-)registered.
@@ -81,8 +81,8 @@ Some useful code pointers:
8181
* Porch REST API handlers in [registry/porch](https://github.com/nephio-project/porch/tree/main/pkg/registry/porch),
8282
for example [packagerevision.go](https://github.com/nephio-project/porch/tree/main/pkg/registry/porch/packagerevision.go)
8383
* Background task handling cache updates in [background.go](https://github.com/nephio-project/porch/tree/main/pkg/registry/porch/background.go)
84-
* Git repository integration in [pkg/git](https://github.com/nephio-project/porch/tree/main/pkg/git)
85-
* OCI repository integration in [pkg/oci](https://github.com/nephio-project/porch/tree/main/pkg/oci)
84+
* Git repository integration in [pkg/git](https://github.com/nephio-project/porch/tree/main/pkg/externalrepo/git)
85+
* OCI repository integration in [pkg/oci](https://github.com/nephio-project/porch/tree/main/pkg/externalrepo/oci)
8686
* CaD Engine in [engine](https://github.com/nephio-project/porch/tree/main/pkg/engine)
8787
* e2e tests in [e2e](https://github.com/nephio-project/porch/tree/main/test/e2e). See below more on testing.
8888

0 commit comments

Comments
 (0)