2022-04-13 04:18:00 -07:00
|
|
|
---
|
|
|
|
|
eleventyNavigation:
|
|
|
|
|
key: DocsContributorFAQ
|
|
|
|
|
title: Documentation Contributor FAQ
|
|
|
|
|
parent: ImprovingTheDocumentation
|
|
|
|
|
order: 90
|
|
|
|
|
---
|
|
|
|
|
|
2025-06-14 02:38:21 -07:00
|
|
|
The intent of this document is to give answers to a number of questions that might arise when starting to contribute to
|
|
|
|
|
Codeberg Documentation. If your question is not listed, feel free to [ask in the issue tracker](https://codeberg.org/Codeberg/Documentation/issues).
|
2022-04-13 04:18:00 -07:00
|
|
|
|
2025-11-21 03:35:05 -08:00
|
|
|
## How should files be named?
|
2022-04-13 04:18:00 -07:00
|
|
|
|
|
|
|
|
Please adhere to [kebab-Case](https://en.wikipedia.org/wiki/Kebab_case) naming rules for any files in Codeberg Documentation.
|
|
|
|
|
|
2025-11-21 03:35:05 -08:00
|
|
|
## When is my contribution being approved?
|
2024-06-11 00:51:22 -07:00
|
|
|
|
2025-06-14 02:38:21 -07:00
|
|
|
A Pull Request to Codeberg/Documentation will be reviewed by at least one other Codeberg Documentation collaborators and
|
|
|
|
|
if your Pull Request is approved, they will merge it into the main branch.
|
2022-04-13 04:18:00 -07:00
|
|
|
|
|
|
|
|
There are a number of exceptions to the rule above:
|
2024-06-11 00:51:22 -07:00
|
|
|
|
2025-06-14 02:38:21 -07:00
|
|
|
- For bugfixes and other small and non-controversial changes, the process is much simplified - here it is enough for one
|
|
|
|
|
collaborator to green-light and merge the changes.
|
|
|
|
|
If you're already a collaborator yourself, feel free to merge right away (after sufficient testing, that is).
|
2022-04-13 04:18:00 -07:00
|
|
|
- For major changes, at least two people will need to approve the contribution.
|
2025-06-14 02:38:21 -07:00
|
|
|
- For changes that are critical, e.g. ones that might legally affect Codeberg e.V., the chairperson of Codeberg e.V.
|
|
|
|
|
will need to approve of the changes as well.
|
2022-04-13 04:18:00 -07:00
|
|
|
|
2025-11-21 03:35:05 -08:00
|
|
|
## How to link to non-existing articles? / Draft Articles
|
2024-06-11 00:51:22 -07:00
|
|
|
|
2025-06-14 02:38:21 -07:00
|
|
|
While it is not directly possible to link to non-existing articles, it is possible to create Draft Articles,
|
|
|
|
|
which are articles that cannot be localized for example via the menu, but which do exist under their URL and do show a
|
|
|
|
|
message stating that the article is unpublished.
|
2022-04-13 04:18:00 -07:00
|
|
|
|
|
|
|
|
Creating such a draft article can be done by creating a new article with the
|
|
|
|
|
`draft` property set to true, like this:
|
|
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
|
---
|
|
|
|
|
eleventyNavigation:
|
|
|
|
|
key: DocsContributorFAQ
|
|
|
|
|
title: Documentation Contributor FAQ
|
|
|
|
|
parent: ImprovingCodeberg
|
|
|
|
|
draft: true
|
|
|
|
|
---
|
|
|
|
|
```
|