├── .github └── workflows │ └── mkdocs.yml ├── .gitignore ├── README.md ├── docs ├── about │ ├── index.md │ ├── international-about.md │ └── terminology.md ├── contribution │ ├── contributing.md │ └── translation_rules.md ├── index.md ├── openbsd-faq │ ├── faq1.md │ ├── faq10.md │ ├── faq11.md │ ├── faq13.md │ ├── faq14.md │ ├── faq15.md │ ├── faq16.md │ ├── faq17.md │ ├── faq4.md │ ├── faq5.md │ ├── faq6.md │ ├── faq7.md │ └── faq_of_faq.md ├── others │ ├── current.md │ ├── index.md │ ├── mail.md │ ├── report.md │ └── upgrade70.md ├── pf-user-guide │ └── index.md ├── porter-handbook │ └── index.md └── ports-testing-guide │ └── index.md ├── mkdocs.yml └── requirements.txt /.github/workflows/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/.github/workflows/mkdocs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | site/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/README.md -------------------------------------------------------------------------------- /docs/about/index.md: -------------------------------------------------------------------------------- 1 | # 关于 OpenBSD 中文结社 2 | 3 | -------------------------------------------------------------------------------- /docs/about/international-about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/about/international-about.md -------------------------------------------------------------------------------- /docs/about/terminology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/about/terminology.md -------------------------------------------------------------------------------- /docs/contribution/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/contribution/contributing.md -------------------------------------------------------------------------------- /docs/contribution/translation_rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/contribution/translation_rules.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/openbsd-faq/faq1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/openbsd-faq/faq1.md -------------------------------------------------------------------------------- /docs/openbsd-faq/faq10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/openbsd-faq/faq10.md -------------------------------------------------------------------------------- /docs/openbsd-faq/faq11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/openbsd-faq/faq11.md -------------------------------------------------------------------------------- /docs/openbsd-faq/faq13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/openbsd-faq/faq13.md -------------------------------------------------------------------------------- /docs/openbsd-faq/faq14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/openbsd-faq/faq14.md -------------------------------------------------------------------------------- /docs/openbsd-faq/faq15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/openbsd-faq/faq15.md -------------------------------------------------------------------------------- /docs/openbsd-faq/faq16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/openbsd-faq/faq16.md -------------------------------------------------------------------------------- /docs/openbsd-faq/faq17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/openbsd-faq/faq17.md -------------------------------------------------------------------------------- /docs/openbsd-faq/faq4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/openbsd-faq/faq4.md -------------------------------------------------------------------------------- /docs/openbsd-faq/faq5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/openbsd-faq/faq5.md -------------------------------------------------------------------------------- /docs/openbsd-faq/faq6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/openbsd-faq/faq6.md -------------------------------------------------------------------------------- /docs/openbsd-faq/faq7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/openbsd-faq/faq7.md -------------------------------------------------------------------------------- /docs/openbsd-faq/faq_of_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/openbsd-faq/faq_of_faq.md -------------------------------------------------------------------------------- /docs/others/current.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/others/current.md -------------------------------------------------------------------------------- /docs/others/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/others/mail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/others/mail.md -------------------------------------------------------------------------------- /docs/others/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/others/report.md -------------------------------------------------------------------------------- /docs/others/upgrade70.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/docs/others/upgrade70.md -------------------------------------------------------------------------------- /docs/pf-user-guide/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/porter-handbook/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/ports-testing-guide/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openbsd-zh-association/docs-openbsd-zh/HEAD/requirements.txt --------------------------------------------------------------------------------