diff options
author | Sergio Carlavilla Delgado <carlavilla@FreeBSD.org> | 2021-12-11 09:57:33 +0000 |
---|---|---|
committer | Sergio Carlavilla Delgado <carlavilla@FreeBSD.org> | 2021-12-11 09:57:33 +0000 |
commit | 2b027dd0175e739f8b5fedd2ae6bd96cf0c14125 (patch) | |
tree | a2729090faf04fa4ebfbce67754273aac283eaee | |
parent | a2d2687bc5b4aea7d1aea28368ba9bc87ca1524c (diff) | |
download | doc-2b027dd017.tar.gz doc-2b027dd017.zip |
New Documentation Portal
I'm very pleased to announce the release of
our new Documentation Portal.
Key features:
* Responsive
* Modern design
* Theme support: Light, Dark, High contrast
* Removed Python dependency
Acknowledgment:
* Alexander Leidinger <netchild (at) FreeBSD.org>
* Baptiste Daroussin <bapt (at) FreeBSD.org>
* Benedict Reuschling <bcr (at) freebsd.org>
* Daniel Ebdrup Jensen <debdrup (at) FreeBSD.org>
* Danilo G. Baio <dbaio (at) FreeBSD.org>
* Dave Cottlehuber <dch (at) FreeBSD.org>
* Ed Maste <emaste (at) FreeBSD.org>
* Fernando Apesteguía <fernape (at) FreeBSD.org>
* Pedro Giffuni <pfg (at) FreeBSD.org>
* Joseph Mingrone <jrm (at) ftfl.ca>
* Rocky Hotas <rockyhotas (at) firemail.cc>
* Pau Amma <pauamma (at) gundo.com>
* The FreeBSD Foundation
Approved by: core, doceng
1090 files changed, 6853 insertions, 10085 deletions
diff --git a/documentation/Makefile b/documentation/Makefile index 61a761e43e..628b84edc3 100644 --- a/documentation/Makefile +++ b/documentation/Makefile @@ -33,7 +33,6 @@ ALL_LANGUAGES= bn-bd da de el en es fr hu it ja ko mn nl pl pt-br ru tr zh-cn zh LOCALBASE?= /usr/local -PYTHON_CMD = ${LOCALBASE}/bin/python3 RUBY_CMD = ${LOCALBASE}/bin/ruby HUGO_CMD = ${LOCALBASE}/bin/hugo HUGO_ARGS?= --verbose --minify @@ -54,8 +53,7 @@ LANGUAGES= ${ALL_LANGUAGES} RUBYLIB = ../shared/lib .export RUBYLIB -RUN_DEPENDS= ${PYTHON_CMD} \ - ${HUGO_CMD} \ +RUN_DEPENDS= ${HUGO_CMD} \ ${LOCALBASE}/bin/asciidoctor \ ${LOCALBASE}/bin/rougify @@ -95,20 +93,20 @@ SKIP_LANGS+= ${a} .ORDER: all run .ORDER: requirements -.ORDER: starting-message generate-books-toc +.ORDER: starting-message .ORDER: starting-message build -.ORDER: generate-books-toc build +.ORDER: build -all: requirements starting-message generate-books-toc generate-pgpkeys-txt build -run: requirements starting-message generate-books-toc generate-pgpkeys-txt run-local +all: requirements starting-message generate-pgpkeys-txt build +run: requirements starting-message generate-pgpkeys-txt run-local # clean does not call pdf-clean as that is a subset of hugo-clean -clean: hugo-clean pgp-clean toc-clean +clean: hugo-clean pgp-clean requirements: .for dep in ${RUN_DEPENDS} .if !exists(${dep}) - @(echo ${dep} not found, please run 'pkg install docproj python3'; exit 1) + @(echo ${dep} not found, please run 'pkg install docproj'; exit 1) .endif .endfor @@ -129,24 +127,6 @@ starting-message: .PHONY @echo excluded languages: ${SKIP_LANGS} @echo --------------------------------------------------------------- -generate-books-toc: .PHONY -.if !empty(BOOK_LANGS) - ${PYTHON_CMD} ./tools/books-toc-parts-creator.py -l ${BOOK_LANGS} - ${PYTHON_CMD} ./tools/books-toc-creator.py -l ${BOOK_LANGS} - ${PYTHON_CMD} ./tools/books-toc-figures-creator.py -l ${BOOK_LANGS} - ${PYTHON_CMD} ./tools/books-toc-tables-creator.py -l ${BOOK_LANGS} - ${PYTHON_CMD} ./tools/books-toc-examples-creator.py -l ${BOOK_LANGS} -.endif - -generate-books-toc-offline: .PHONY -.if !empty(BOOK_LANGS) - ${PYTHON_CMD} ./tools/books-toc-parts-creator.py -o -l ${BOOK_LANGS} - ${PYTHON_CMD} ./tools/books-toc-creator.py -o -l ${BOOK_LANGS} - ${PYTHON_CMD} ./tools/books-toc-figures-creator.py -o -l ${BOOK_LANGS} - ${PYTHON_CMD} ./tools/books-toc-tables-creator.py -o -l ${BOOK_LANGS} - ${PYTHON_CMD} ./tools/books-toc-examples-creator.py -o -l ${BOOK_LANGS} -.endif - generate-pgpkeys-txt: static/pgpkeys/pgpkeys.txt static/pgpkeys/pgpkeys.txt: static/pgpkeys/*key @@ -162,15 +142,6 @@ build: .PHONY build-offline: .PHONY HUGO_DISABLELANGUAGES="${SKIP_LANGS}" ${HUGO_CMD} ${HUGO_OFFLINE_ARGS} -toc-clean: .PHONY -.if !empty(BOOK_LANGS) - rm -f $$(${PYTHON_CMD} ./tools/books-toc-parts-creator.py -l ${BOOK_LANGS} -p) - rm -f $$(${PYTHON_CMD} ./tools/books-toc-creator.py -l ${BOOK_LANGS} -p) - rm -f $$(${PYTHON_CMD} ./tools/books-toc-figures-creator.py -l ${BOOK_LANGS} -p) - rm -f $$(${PYTHON_CMD} ./tools/books-toc-tables-creator.py -l ${BOOK_LANGS} -p) - rm -f $$(${PYTHON_CMD} ./tools/books-toc-examples-creator.py -l ${BOOK_LANGS} -p) -.endif - pgp-clean: .PHONY rm -f static/pgpkeys/pgpkeys.txt @@ -183,7 +154,7 @@ hugo-clean: .PHONY # pdf: pdf-articles pdf-books -pdf-books: requirements-pdf generate-books-toc +pdf-books: requirements-pdf .for _lang in ${BOOK_LANGS} ./tools/asciidoctor.sh books ${_lang} pdf .endfor @@ -214,7 +185,7 @@ pdf-articles-clean: # # HTML targets # -html: generate-books-toc-offline build-offline html-clean-global html-clean-articles html-clean-books html-archive html-archive-clean-files +html: build-offline html-clean-global html-clean-articles html-clean-books html-archive html-archive-clean-files html-clean: hugo-clean @@ -255,7 +226,7 @@ html-archive-clean-files: # epub: epub-articles epub-books -epub-books: requirements-epub generate-books-toc +epub-books: requirements-epub @echo --------------------------------------------------------------- @echo !!! EPUB output is experimental !!! @echo diff --git a/documentation/config/_default/config.toml b/documentation/config/_default/config.toml index 89efd44877..2fd2f23b60 100644 --- a/documentation/config/_default/config.toml +++ b/documentation/config/_default/config.toml @@ -3,14 +3,15 @@ baseURL = "https://docs.freebsd.org/" title = "FreeBSD Documentation Portal" copyright = "BSD 2-clause 'Simplified' License" -DefaultContentLanguage = "en" +defaultContentLanguage = "en" defaultContentLanguageInSubdir = true disablePathToLower = true theme = "beastie" disableKinds = [ "taxonomy", "taxonomyTerm" ] authors = [ "carlavilla@FreeBSD.org" ] -ignoreFiles = [ "chapters-order.adoc$", "toc.adoc$", "toc-tables.adoc$", "toc-figures.adoc$", "toc-examples.adoc$", "toc-1.adoc$", "toc-2.adoc$", "toc-3.adoc$", "toc-4.adoc$", "toc-5.adoc$", "books.adoc$", "chapter.adoc$", "contrib-386bsd.adoc$", "contrib-additional.adoc$", "contrib-committers.adoc$", "contrib-corealumni.adoc$", "contrib-develalumni.adoc$", "contrib-develinmemoriam.adoc$", "contrib-portmgralumni.adoc$", "\\.po$" ] +ignoreFiles = [ "chapter.adoc$", "contrib-386bsd.adoc$", "contrib-additional.adoc$", "contrib-committers.adoc$", "contrib-corealumni.adoc$", "contrib-develalumni.adoc$", "contrib-develinmemoriam.adoc$", "contrib-portmgralumni.adoc$", "\\.po$" ] enableRobotsTXT = true +googleAnalytics = 'UA-22767463-1' [params] websiteURL = "https://www.FreeBSD.org/" @@ -18,7 +19,6 @@ enableRobotsTXT = true isOnline = true [markup.asciidocExt] - preserveTOC = true extensions = ["man-macro", "inter-document-references-macro", "cross-document-references-macro", "sectnumoffset-treeprocessor", "packages-macro", "git-macro"] [markup.asciidocExt.attributes] env-beastie = true diff --git a/documentation/config/offline/config.toml b/documentation/config/offline/config.toml index bc50126ac9..247daf3a1a 100644 --- a/documentation/config/offline/config.toml +++ b/documentation/config/offline/config.toml @@ -3,13 +3,13 @@ baseURL = "localhost" title = "FreeBSD Documentation Portal" copyright = "BSD 2-clause 'Simplified' License" -DefaultContentLanguage = "en" +defaultContentLanguage = "en" defaultContentLanguageInSubdir = true disablePathToLower = true theme = "beastie" disableKinds = [ "taxonomy", "term", "RSS", "sitemap", "robotsTXT", "404" ] authors = [ "carlavilla@FreeBSD.org" ] -ignoreFiles = [ "chapters-order.adoc$", "toc.adoc$", "toc-tables.adoc$", "toc-figures.adoc$", "toc-examples.adoc$", "toc-1.adoc$", "toc-2.adoc$", "toc-3.adoc$", "toc-4.adoc$", "toc-5.adoc$", "chapter.adoc$", "contrib-386bsd.adoc$", "contrib-additional.adoc$", "contrib-committers.adoc$", "contrib-corealumni.adoc$", "contrib-develalumni.adoc$", "contrib-develinmemoriam.adoc$", "contrib-portmgralumni.adoc$", "books.adoc$", "\\.po$" ] +ignoreFiles = [ "chapter.adoc$", "contrib-386bsd.adoc$", "contrib-additional.adoc$", "contrib-committers.adoc$", "contrib-corealumni.adoc$", "contrib-develalumni.adoc$", "contrib-develinmemoriam.adoc$", "contrib-portmgralumni.adoc$", "books.adoc$", "\\.po$" ] enableRobotsTXT = true [params] @@ -18,7 +18,6 @@ enableRobotsTXT = true isOnline = false [markup.asciidocExt] - preserveTOC = true extensions = ["man-macro", "inter-document-references-macro", "cross-document-references-macro", "sectnumoffset-treeprocessor", "packages-macro", "git-macro"] [markup.asciidocExt.attributes] env-beastie = true diff --git a/documentation/content/bn-bd/articles/_index.adoc b/documentation/content/bn-bd/articles/_index.adoc index a245ae3d26..de739232b6 100644 --- a/documentation/content/bn-bd/articles/_index.adoc +++ b/documentation/content/bn-bd/articles/_index.adoc @@ -1,5 +1,6 @@ --- title: Articles +layout: total-list --- = Articles diff --git a/documentation/content/bn-bd/languages.adoc b/documentation/content/bn-bd/languages.adoc new file mode 100644 index 0000000000..afb237f82d --- /dev/null +++ b/documentation/content/bn-bd/languages.adoc @@ -0,0 +1,6 @@ +--- +title: Languages +layout: languages +--- + += Languages diff --git a/documentation/content/da/articles/_index.adoc b/documentation/content/da/articles/_index.adoc index a245ae3d26..de739232b6 100644 --- a/documentation/content/da/articles/_index.adoc +++ b/documentation/content/da/articles/_index.adoc @@ -1,5 +1,6 @@ --- title: Articles +layout: total-list --- = Articles diff --git a/documentation/content/da/languages.adoc b/documentation/content/da/languages.adoc new file mode 100644 index 0000000000..afb237f82d --- /dev/null +++ b/documentation/content/da/languages.adoc @@ -0,0 +1,6 @@ +--- +title: Languages +layout: languages +--- + += Languages diff --git a/documentation/content/de/articles/_index.adoc b/documentation/content/de/articles/_index.adoc index a245ae3d26..de739232b6 100644 --- a/documentation/content/de/articles/_index.adoc +++ b/documentation/content/de/articles/_index.adoc @@ -1,5 +1,6 @@ --- title: Articles +layout: total-list --- = Articles diff --git a/documentation/content/de/books/_index.adoc b/documentation/content/de/books/_index.adoc index 17572a88c5..89516d974e 100644 --- a/documentation/content/de/books/_index.adoc +++ b/documentation/content/de/books/_index.adoc @@ -1,5 +1,6 @@ --- title: Books +layout: total-list --- = Books diff --git a/documentation/content/de/books/books.adoc b/documentation/content/de/books/books.adoc deleted file mode 100644 index f428e3b577..0000000000 --- a/documentation/content/de/books/books.adoc +++ /dev/null @@ -1,4 +0,0 @@ -handbook -developers-handbook -faq -porters-handbook diff --git a/documentation/content/de/books/developers-handbook/_index.adoc b/documentation/content/de/books/developers-handbook/_index.adoc index 8e0f81165b..80ce191cdd 100644 --- a/documentation/content/de/books/developers-handbook/_index.adoc +++ b/documentation/content/de/books/developers-handbook/_index.adoc @@ -6,7 +6,9 @@ copyright: 1995-2020 The FreeBSD Documentation Project trademarks: ["freebsd", "apple", "ibm", "ieee", "intel", "linux", "microsoft", "opengroup", "sun", "general"] next: books/developers-handbook/parti add_single_page_link: true -isIndex: true +showBookMenu: true +weight: 0 +path: "/books/developers-handbook/" --- = FreeBSD Developers' Handbook @@ -30,16 +32,13 @@ include::shared/attributes/attributes-{{% lang %}}.adoc[] include::shared/{{% lang %}}/teams.adoc[] include::shared/{{% lang %}}/mailing-lists.adoc[] include::shared/{{% lang %}}/urls.adoc[] -:chapters-path: content/{{% lang %}}/books/developers-handbook/ endif::[] ifdef::backend-pdf,backend-epub3[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] endif::[] ifndef::env-beastie[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] @@ -54,5 +53,3 @@ Wenn Sie bei der Übersetzung dieses Handbuchs mithelfen möchten, senden Sie bi Die aktuelle Version dieses Handbuchs ist immer auf dem http://www.FreeBSD.org/[FreeBSD-Webserver] verfügbar und kann in verschiedenen Formaten und in komprimierter Form vom link:ftp://ftp.FreeBSD.org/pub/FreeBSD/doc[FreeBSD-FTP-Server] oder einem der zahlreichen extref:{handbook}mirrors/[Spiegel, mirrors-ftp] heruntergeladen werden (ältere Versionen finden Sie hingegen unter http://docs.FreeBSD.org/doc/[http://docs.FreeBSD.org/doc/]). ''' - -include::{chapters-path}toc.adoc[] diff --git a/documentation/content/de/books/developers-handbook/bibliography/_index.adoc b/documentation/content/de/books/developers-handbook/bibliography/_index.adoc index 929ecb7a1f..4e14268754 100644 --- a/documentation/content/de/books/developers-handbook/bibliography/_index.adoc +++ b/documentation/content/de/books/developers-handbook/bibliography/_index.adoc @@ -1,6 +1,9 @@ --- title: Literaturverzeichnis prev: books/developers-handbook/partv +showBookMenu: true +weight: 17 +path: "/books/developers-handbook/" --- [bibliography] diff --git a/documentation/content/de/books/developers-handbook/book.adoc b/documentation/content/de/books/developers-handbook/book.adoc index c4cf490cfd..3ecd03a10f 100644 --- a/documentation/content/de/books/developers-handbook/book.adoc +++ b/documentation/content/de/books/developers-handbook/book.adoc @@ -5,6 +5,8 @@ authors: copyright: 1995-2020 The FreeBSD Documentation Project trademarks: ["freebsd", "apple", "ibm", "ieee", "intel", "linux", "microsoft", "opengroup", "sun", "general"] add_split_page_link: true +showBookMenu: false +path: "/books/developers-handbook/" --- = FreeBSD Developers' Handbook @@ -57,7 +59,7 @@ Die aktuelle Version dieses Handbuchs ist immer auf dem http://www.FreeBSD.org/[ toc::[] // Section one -include::{chapters-path}parti.adoc[lines=15..16] +include::{chapters-path}parti.adoc[] include::{chapters-path}introduction/_index.adoc[leveloffset=+1] include::{chapters-path}tools/_index.adoc[leveloffset=+1] include::{chapters-path}secure/_index.adoc[leveloffset=+1] @@ -66,19 +68,19 @@ include::{chapters-path}policies/_index.adoc[leveloffset=+1] include::{chapters-path}testing/_index.adoc[leveloffset=+1] // Section two -include::{chapters-path}partii.adoc[lines=15..16] +include::{chapters-path}partii.adoc[] include::{chapters-path}sockets/_index.adoc[leveloffset=+1] include::{chapters-path}ipv6/_index.adoc[leveloffset=+1] // Section three -include::{chapters-path}partiii.adoc[lines=15..16] +include::{chapters-path}partiii.adoc[] include::{chapters-path}kernelbuild/_index.adoc[leveloffset=+1] include::{chapters-path}kerneldebug/_index.adoc[leveloffset=+1] // Section four -include::{chapters-path}partiv.adoc[lines=15..16] +include::{chapters-path}partiv.adoc[] include::{chapters-path}x86/_index.adoc[leveloffset=+1] // Appendices -include::{chapters-path}partv.adoc[lines=15..16] +include::{chapters-path}partv.adoc[] include::{chapters-path}bibliography/_index.adoc[leveloffset=+1] diff --git a/documentation/content/de/books/developers-handbook/chapters-order.adoc b/documentation/content/de/books/developers-handbook/chapters-order.adoc deleted file mode 100644 index ef978f645c..0000000000 --- a/documentation/content/de/books/developers-handbook/chapters-order.adoc +++ /dev/null @@ -1,17 +0,0 @@ -parti.adoc -introduction/_index.adoc -tools/_index.adoc -secure/_index.adoc -l10n/_index.adoc -policies/_index.adoc -testing/_index.adoc -partii.adoc -sockets/_index.adoc -ipv6/_index.adoc -partiii.adoc -kernelbuild/_index.adoc -kerneldebug/_index.adoc -partiv.adoc -x86/_index.adoc -partv.adoc -bibliography/_index.adoc diff --git a/documentation/content/de/books/developers-handbook/introduction/_index.adoc b/documentation/content/de/books/developers-handbook/introduction/_index.adoc index 3f8e9f8641..2f8c22a3a1 100644 --- a/documentation/content/de/books/developers-handbook/introduction/_index.adoc +++ b/documentation/content/de/books/developers-handbook/introduction/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 1. Einführung prev: books/developers-handbook/parti next: books/developers-handbook/tools +showBookMenu: true +weight: 2 +path: "/books/developers-handbook/" --- [[introduction]] diff --git a/documentation/content/de/books/developers-handbook/ipv6/_index.adoc b/documentation/content/de/books/developers-handbook/ipv6/_index.adoc index f593b8eddc..9658203b7c 100644 --- a/documentation/content/de/books/developers-handbook/ipv6/_index.adoc +++ b/documentation/content/de/books/developers-handbook/ipv6/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 8. IPv6 Internals prev: books/developers-handbook/sockets next: books/developers-handbook/partiii +showBookMenu: true +weight: 10 +path: "/books/developers-handbook/" --- [[ipv6]] diff --git a/documentation/content/de/books/developers-handbook/kernelbuild/_index.adoc b/documentation/content/de/books/developers-handbook/kernelbuild/_index.adoc index 6bdfb90624..6f529e71ee 100644 --- a/documentation/content/de/books/developers-handbook/kernelbuild/_index.adoc +++ b/documentation/content/de/books/developers-handbook/kernelbuild/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 9. Einen FreeBSD-Kernel bauen und installieren prev: books/developers-handbook/partiii next: books/developers-handbook/kerneldebug +showBookMenu: true +weight: 12 +path: "/books/developers-handbook/" --- [[kernelbuild]] diff --git a/documentation/content/de/books/developers-handbook/kerneldebug/_index.adoc b/documentation/content/de/books/developers-handbook/kerneldebug/_index.adoc index 7afb5d9591..bdf2f52cbd 100644 --- a/documentation/content/de/books/developers-handbook/kerneldebug/_index.adoc +++ b/documentation/content/de/books/developers-handbook/kerneldebug/_index.adoc @@ -6,6 +6,9 @@ authors: - author: Robert Watson prev: books/developers-handbook/kernelbuild next: books/developers-handbook/partiv +showBookMenu: true +weight: 13 +path: "/books/developers-handbook/" --- [[kerneldebug]] diff --git a/documentation/content/de/books/developers-handbook/l10n/_index.adoc b/documentation/content/de/books/developers-handbook/l10n/_index.adoc index 8a4b50b4be..6f6990dcbc 100644 --- a/documentation/content/de/books/developers-handbook/l10n/_index.adoc +++ b/documentation/content/de/books/developers-handbook/l10n/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 4. Lokalisierung und Internationalisierung - L10N und I18N prev: books/developers-handbook/secure next: books/developers-handbook/policies +showBookMenu: true +weight: 5 +path: "/books/developers-handbook/" --- [[l10n]] diff --git a/documentation/content/de/books/developers-handbook/parti.adoc b/documentation/content/de/books/developers-handbook/parti.adoc index 922ea617fe..f4bd804963 100644 --- a/documentation/content/de/books/developers-handbook/parti.adoc +++ b/documentation/content/de/books/developers-handbook/parti.adoc @@ -2,17 +2,10 @@ title: Teil I. Grundlagen prev: books/developers-handbook next: books/developers-handbook/introduction +showBookMenu: true +weight: 1 +path: "/books/developers-handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/developers-handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[basics]] = Grundlagen - -include::{chapters-path}toc-1.adoc[] diff --git a/documentation/content/de/books/developers-handbook/partii.adoc b/documentation/content/de/books/developers-handbook/partii.adoc index c22c2c69b4..42651a1a43 100644 --- a/documentation/content/de/books/developers-handbook/partii.adoc +++ b/documentation/content/de/books/developers-handbook/partii.adoc @@ -2,17 +2,10 @@ title: Teil II. Interprozess-Kommunikation prev: books/developers-handbook/testing next: books/developers-handbook/sockets +showBookMenu: true +weight: 8 +path: "/books/developers-handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/developers-handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[ipc]] = Interprozess-Kommunikation - -include::{chapters-path}toc-2.adoc[] diff --git a/documentation/content/de/books/developers-handbook/partiii.adoc b/documentation/content/de/books/developers-handbook/partiii.adoc index d60c283535..6eb00591d0 100644 --- a/documentation/content/de/books/developers-handbook/partiii.adoc +++ b/documentation/content/de/books/developers-handbook/partiii.adoc @@ -2,17 +2,10 @@ title: Teil III. Kernel prev: books/developers-handbook/ipv6 next: books/developers-handbook/kernelbuild +showBookMenu: true +weight: 11 +path: "/books/developers-handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/developers-handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[kernel]] = Kernel - -include::{chapters-path}toc-3.adoc[] diff --git a/documentation/content/de/books/developers-handbook/partiv.adoc b/documentation/content/de/books/developers-handbook/partiv.adoc index ddbb74d94e..1f87dce615 100644 --- a/documentation/content/de/books/developers-handbook/partiv.adoc +++ b/documentation/content/de/books/developers-handbook/partiv.adoc @@ -2,18 +2,10 @@ title: Teil IV. Architekturen prev: books/developers-handbook/kerneldebug next: books/developers-handbook/x86 +showBookMenu: true +weight: 14 +path: "/books/developers-handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/developers-handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[architectures]] = Architekturen - -include::{chapters-path}toc-4.adoc[] - diff --git a/documentation/content/de/books/developers-handbook/partv.adoc b/documentation/content/de/books/developers-handbook/partv.adoc index 4543335af2..a76ea02541 100644 --- a/documentation/content/de/books/developers-handbook/partv.adoc +++ b/documentation/content/de/books/developers-handbook/partv.adoc @@ -2,17 +2,10 @@ title: Teil V. Anhang prev: books/developers-handbook/x86 next: books/developers-handbook/bibliography +showBookMenu: true +weight: 16 +path: "/books/developers-handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/developers-handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[appendices]] = Anhang - -include::{chapters-path}toc-5.adoc[] diff --git a/documentation/content/de/books/developers-handbook/policies/_index.adoc b/documentation/content/de/books/developers-handbook/policies/_index.adoc index e03d03c675..f78e4fd5f5 100644 --- a/documentation/content/de/books/developers-handbook/policies/_index.adoc +++ b/documentation/content/de/books/developers-handbook/policies/_index.adoc @@ -5,6 +5,9 @@ authors: - author: Giorgos Keramidas prev: books/developers-handbook/l10n next: books/developers-handbook/testing +showBookMenu: true +weight: 6 +path: "/books/developers-handbook/" --- [[policies]] diff --git a/documentation/content/de/books/developers-handbook/secure/_index.adoc b/documentation/content/de/books/developers-handbook/secure/_index.adoc index ae66e1e19f..f1331bbf85 100644 --- a/documentation/content/de/books/developers-handbook/secure/_index.adoc +++ b/documentation/content/de/books/developers-handbook/secure/_index.adoc @@ -4,6 +4,9 @@ authors: - author: Murray Stokely prev: books/developers-handbook/tools next: books/developers-handbook/l10n +showBookMenu: true +weight: 4 +path: "/books/developers-handbook/" --- [[secure]] diff --git a/documentation/content/de/books/developers-handbook/sockets/_index.adoc b/documentation/content/de/books/developers-handbook/sockets/_index.adoc index ec674e1759..cd2eb56f29 100644 --- a/documentation/content/de/books/developers-handbook/sockets/_index.adoc +++ b/documentation/content/de/books/developers-handbook/sockets/_index.adoc @@ -4,6 +4,9 @@ authors: - author: G. Adam Stanislav prev: books/developers-handbook/partii next: books/developers-handbook/ipv6 +showBookMenu: true +weight: 9 +path: "/books/developers-handbook/" --- [[sockets]] diff --git a/documentation/content/de/books/developers-handbook/testing/_index.adoc b/documentation/content/de/books/developers-handbook/testing/_index.adoc index 7dbde48073..d0a92f5ad5 100644 --- a/documentation/content/de/books/developers-handbook/testing/_index.adoc +++ b/documentation/content/de/books/developers-handbook/testing/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 6. Regressions- und Performance-Tests prev: books/developers-handbook/policies next: books/developers-handbook/partii +showBookMenu: true +weight: 7 +path: "/books/developers-handbook/" --- [[testing]] diff --git a/documentation/content/de/books/developers-handbook/tools/_index.adoc b/documentation/content/de/books/developers-handbook/tools/_index.adoc index a511fdae7e..d38808099a 100644 --- a/documentation/content/de/books/developers-handbook/tools/_index.adoc +++ b/documentation/content/de/books/developers-handbook/tools/_index.adoc @@ -5,6 +5,9 @@ authors: - author: Murray Stokely prev: books/developers-handbook/introduction next: books/developers-handbook/secure +showBookMenu: true +weight: 3 +path: "/books/developers-handbook/" --- [[tools]] diff --git a/documentation/content/de/books/developers-handbook/x86/_index.adoc b/documentation/content/de/books/developers-handbook/x86/_index.adoc index 4ec4bfaf90..8d54850081 100644 --- a/documentation/content/de/books/developers-handbook/x86/_index.adoc +++ b/documentation/content/de/books/developers-handbook/x86/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 11. x86-Assembler-Programmierung prev: books/developers-handbook/partiv next: books/developers-handbook/partv +showBookMenu: true +weight: 15 +path: "/books/developers-handbook/" --- [[x86]] diff --git a/documentation/content/de/books/faq/chapters-order.adoc b/documentation/content/de/books/faq/chapters-order.adoc deleted file mode 100644 index bb86b134ce..0000000000 --- a/documentation/content/de/books/faq/chapters-order.adoc +++ /dev/null @@ -1 +0,0 @@ -_index.adoc diff --git a/documentation/content/de/books/handbook/_index.adoc b/documentation/content/de/books/handbook/_index.adoc index 305d6ccfdd..46ff43a924 100644 --- a/documentation/content/de/books/handbook/_index.adoc +++ b/documentation/content/de/books/handbook/_index.adoc @@ -5,7 +5,9 @@ authors: copyright: 1995-2020 The FreeBSD Documentation Project trademarks: ["freebsd", "ibm", "ieee", "redhat", "3com", "adobe", "apple", "intel", "linux", "microsoft", "opengroup", "sun", "realnetworks", "oracle", "3ware", "arm", "adaptec", "google", "heidelberger", "intuit", "lsilogic", "themathworks", "thomson", "vmware", "wolframresearch", "xiph", "xfree86", "general"] next: books/handbook/preface -isIndex: true +showBookMenu: true +weight: 0 +path: "/books/handbook/" --- = FreeBSD Handbuch @@ -29,16 +31,13 @@ include::shared/attributes/attributes-{{% lang %}}.adoc[] include::shared/{{% lang %}}/teams.adoc[] include::shared/{{% lang %}}/mailing-lists.adoc[] include::shared/{{% lang %}}/urls.adoc[] -:chapters-path: content/{{% lang %}}/books/handbook/ endif::[] ifdef::backend-pdf,backend-epub3[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] endif::[] ifndef::env-beastie[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] @@ -52,11 +51,3 @@ Wenn Sie bei der Übersetzung des Handbuchs mithelfen möchten, senden Sie bitte Die aktuelle Version des Handbuchs ist immer auf dem https://www.FreeBSD.org/[FreeBSD-Webserver] verfügbar und kann in verschiedenen Formaten und in komprimierter Form vom https://download.freebsd.org/ftp/doc[FreeBSD FTP-Server] oder einem der vielen <<mirrors-ftp,Spiegel>> herunter geladen werden (ältere Versionen finden Sie hingegen unter https://docs.FreeBSD.org/doc/[https://docs.FreeBSD.org/doc/]). Gedruckte Kopien können bei https://www.freebsdmall.com/[FreeBSD Mall] erworben werden. Vielleicht möchten Sie das Handbuch oder andere Dokumente auch link:https://www.FreeBSD.org/search/[durchsuchen]. ''' - -include::{chapters-path}toc.adoc[] - -include::{chapters-path}toc-figures.adoc[] - -include::{chapters-path}toc-tables.adoc[] - -include::{chapters-path}toc-examples.adoc[] diff --git a/documentation/content/de/books/handbook/advanced-networking/_index.adoc b/documentation/content/de/books/handbook/advanced-networking/_index.adoc index 28cd0a5e9b..d9a4550430 100644 --- a/documentation/content/de/books/handbook/advanced-networking/_index.adoc +++ b/documentation/content/de/books/handbook/advanced-networking/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 31. Weiterführende Netzwerkthemen part: Teil IV. Netzwerke prev: books/handbook/firewalls next: books/handbook/partv +showBookMenu: true +weight: 36 +path: "/books/handbook/" --- [[advanced-networking]] diff --git a/documentation/content/de/books/handbook/audit/_index.adoc b/documentation/content/de/books/handbook/audit/_index.adoc index 701726832a..4dd21e0423 100644 --- a/documentation/content/de/books/handbook/audit/_index.adoc +++ b/documentation/content/de/books/handbook/audit/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 16. Security Event Auditing part: Teil III. Systemadministration prev: books/handbook/mac next: books/handbook/disks +showBookMenu: true +weight: 20 +path: "/books/handbook/" --- [[audit]] diff --git a/documentation/content/de/books/handbook/basics/_index.adoc b/documentation/content/de/books/handbook/basics/_index.adoc index 9b1d822bdb..6703a981ed 100644 --- a/documentation/content/de/books/handbook/basics/_index.adoc +++ b/documentation/content/de/books/handbook/basics/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 3. Grundlagen des FreeBSD Betriebssystems part: Teil I. Erste Schritte prev: books/handbook/bsdinstall next: books/handbook/ports +showBookMenu: true +weight: 5 +path: "/books/handbook/" --- [[basics]] diff --git a/documentation/content/de/books/handbook/bibliography/_index.adoc b/documentation/content/de/books/handbook/bibliography/_index.adoc index 06e356213b..75a5b30c93 100644 --- a/documentation/content/de/books/handbook/bibliography/_index.adoc +++ b/documentation/content/de/books/handbook/bibliography/_index.adoc @@ -3,6 +3,9 @@ title: Anhang B. Bibliografie part: Teil V. Anhang prev: books/handbook/mirrors next: books/handbook/eresources +showBookMenu: true +weight: 39 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/de/books/handbook/book.adoc b/documentation/content/de/books/handbook/book.adoc index eea3a7ae3d..7c8b58de45 100644 --- a/documentation/content/de/books/handbook/book.adoc +++ b/documentation/content/de/books/handbook/book.adoc @@ -3,7 +3,8 @@ title: FreeBSD Handbuch authors: - author: The FreeBSD Documentation Project copyright: 1995-2020 The FreeBSD Documentation Project -trademarks: ["freebsd", "ibm", "ieee", "redhat", "3com", "adobe", "apple", "intel", "linux", "microsoft", "opengroup", "sun", "realnetworks", "oracle", "3ware", "arm", "adaptec", "google", "heidelberger", "intuit", "lsilogic", "themathworks", "thomson", "vmware", "wolframresearch", "xiph", "xfree86", "general"] +trademarks: ["freebsd", "ibm", "ieee", "redhat", "3com", "adobe", "apple", "intel", "linux", "microsoft", "opengroup", "sun", "realnetworks", "oracle", "3ware", "arm", "adaptec", "google", "heidelberger", "intuit", "lsilogic", "themathworks", "thomson", "vmware", "wolframresearch", "xiph", "xfree86", "general"] +add_split_page_link: true --- = FreeBSD Handbuch @@ -63,90 +64,53 @@ include::{chapters-path}preface/_index.adoc[leveloffset=+1] :sectnums: // Section one -include::{chapters-path}parti.adoc[lines=15..26] - +include::{chapters-path}parti.adoc[lines=7..8] include::{chapters-path}introduction/_index.adoc[leveloffset=+1] - include::{chapters-path}bsdinstall/_index.adoc[leveloffset=+1] - include::{chapters-path}basics/_index.adoc[leveloffset=+1] - include::{chapters-path}ports/_index.adoc[leveloffset=+1] - include::{chapters-path}x11/_index.adoc[leveloffset=+1] // Section two -include::{chapters-path}partii.adoc[lines=15..26] - +include::{chapters-path}partii.adoc[lines=7..8] include::{chapters-path}desktop/_index.adoc[leveloffset=+1] - include::{chapters-path}multimedia/_index.adoc[leveloffset=+1] - include::{chapters-path}kernelconfig/_index.adoc[leveloffset=+1] - include::{chapters-path}printing/_index.adoc[leveloffset=+1] - include::{chapters-path}linuxemu/_index.adoc[leveloffset=+1] // Section three -include::{chapters-path}partiii.adoc[lines=15..20] - +include::{chapters-path}partiii.adoc[lines=7..8] include::{chapters-path}config/_index.adoc[leveloffset=+1] - include::{chapters-path}boot/_index.adoc[leveloffset=+1] - include::{chapters-path}security/_index.adoc[leveloffset=+1] - include::{chapters-path}jails/_index.adoc[leveloffset=+1] - include::{chapters-path}mac/_index.adoc[leveloffset=+1] - include::{chapters-path}audit/_index.adoc[leveloffset=+1] - include::{chapters-path}disks/_index.adoc[leveloffset=+1] - include::{chapters-path}geom/_index.adoc[leveloffset=+1] - include::{chapters-path}zfs/_index.adoc[leveloffset=+1] - include::{chapters-path}filesystems/_index.adoc[leveloffset=+1] - include::{chapters-path}virtualization/_index.adoc[leveloffset=+1] - include::{chapters-path}l10n/_index.adoc[leveloffset=+1] - include::{chapters-path}cutting-edge/_index.adoc[leveloffset=+1] - include::{chapters-path}dtrace/_index.adoc[leveloffset=+1] - include::{chapters-path}usb-device-mode/_index.adoc[leveloffset=+1] // Section four -include::{chapters-path}partiv.adoc[lines=15..27] - +include::{chapters-path}partiv.adoc[lines=7..8] include::{chapters-path}serialcomms/_index.adoc[leveloffset=+1] - include::{chapters-path}ppp-and-slip/_index.adoc[leveloffset=+1] - include::{chapters-path}mail/_index.adoc[leveloffset=+1] - include::{chapters-path}network-servers/_index.adoc[leveloffset=+1] - include::{chapters-path}firewalls/_index.adoc[leveloffset=+1] - include::{chapters-path}advanced-networking/_index.adoc[leveloffset=+1] // Section five -include::{chapters-path}partv.adoc[lines=15..16] - +include::{chapters-path}partv.adoc[lines=7..8] :sectnums!: - include::{chapters-path}mirrors/_index.adoc[leveloffset=+1] - include::{chapters-path}bibliography/_index.adoc[leveloffset=+1] - include::{chapters-path}eresources/_index.adoc[leveloffset=+1] - include::{chapters-path}pgpkeys/_index.adoc[leveloffset=+1] - :sectnums: diff --git a/documentation/content/de/books/handbook/boot/_index.adoc b/documentation/content/de/books/handbook/boot/_index.adoc index 51fdd15cd3..db4b929f85 100644 --- a/documentation/content/de/books/handbook/boot/_index.adoc +++ b/documentation/content/de/books/handbook/boot/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 12. FreeBSDs Bootvorgang part: Teil III. Systemadministration prev: books/handbook/config next: books/handbook/security +showBookMenu: true +weight: 16 +path: "/books/handbook/" --- [[boot]] diff --git a/documentation/content/de/books/handbook/bsdinstall/_index.adoc b/documentation/content/de/books/handbook/bsdinstall/_index.adoc index 52e967fc6b..b127459cec 100644 --- a/documentation/content/de/books/handbook/bsdinstall/_index.adoc +++ b/documentation/content/de/books/handbook/bsdinstall/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 2. FreeBSD installieren part: Teil I. Erste Schritte prev: books/handbook/introduction next: books/handbook/basics +showBookMenu: true +weight: 4 +path: "/books/handbook/" --- [[bsdinstall]] diff --git a/documentation/content/de/books/handbook/chapters-order.adoc b/documentation/content/de/books/handbook/chapters-order.adoc deleted file mode 100644 index 327ed2f22d..0000000000 --- a/documentation/content/de/books/handbook/chapters-order.adoc +++ /dev/null @@ -1,41 +0,0 @@ -preface/_index.adoc -parti.adoc -introduction/_index.adoc -bsdinstall/_index.adoc -basics/_index.adoc -ports/_index.adoc -x11/_index.adoc -parti.adoc -desktop/_index.adoc -multimedia/_index.adoc -kernelconfig/_index.adoc -printing/_index.adoc -linuxemu/_index.adoc -partiii.adoc -config/_index.adoc -boot/_index.adoc -security/_index.adoc -jails/_index.adoc -mac/_index.adoc -audit/_index.adoc -disks/_index.adoc -geom/_index.adoc -zfs/_index.adoc -filesystems/_index.adoc -virtualization/_index.adoc -l10n/_index.adoc -cutting-edge/_index.adoc -dtrace/_index.adoc -usb-device-mode/_index.adoc -partiv.adoc -serialcomms/_index.adoc -ppp-and-slip/_index.adoc -mail/_index.adoc -network-servers/_index.adoc -firewalls/_index.adoc -advanced-networking/_index.adoc -partv.adoc -mirrors/_index.adoc -bibliography/_index.adoc -eresources/_index.adoc -pgpkeys/_index.adoc diff --git a/documentation/content/de/books/handbook/config/_index.adoc b/documentation/content/de/books/handbook/config/_index.adoc index f516a99115..c3ca5b53f3 100644 --- a/documentation/content/de/books/handbook/config/_index.adoc +++ b/documentation/content/de/books/handbook/config/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 11. Konfiguration und Tuning part: Teil III. Systemadministration prev: books/handbook/partiii next: books/handbook/boot +showBookMenu: true +weight: 15 +path: "/books/handbook/" --- [[config-tuning]] diff --git a/documentation/content/de/books/handbook/cutting-edge/_index.adoc b/documentation/content/de/books/handbook/cutting-edge/_index.adoc index 22b42f14a3..381b9fda49 100644 --- a/documentation/content/de/books/handbook/cutting-edge/_index.adoc +++ b/documentation/content/de/books/handbook/cutting-edge/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 23. FreeBSD aktualisieren part: Teil III. Systemadministration prev: books/handbook/l10n next: books/handbook/dtrace +showBookMenu: true +weight: 27 +path: "/books/handbook/" --- [[updating-upgrading]] diff --git a/documentation/content/de/books/handbook/desktop/_index.adoc b/documentation/content/de/books/handbook/desktop/_index.adoc index 6843127baa..a012d34148 100644 --- a/documentation/content/de/books/handbook/desktop/_index.adoc +++ b/documentation/content/de/books/handbook/desktop/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 6. Desktop-Anwendungen part: Teil II. Oft benutzte Funktionen prev: books/handbook/partii next: books/handbook/multimedia +showBookMenu: true +weight: 9 +path: "/books/handbook/" --- [[desktop]] diff --git a/documentation/content/de/books/handbook/disks/_index.adoc b/documentation/content/de/books/handbook/disks/_index.adoc index 33e29cd15e..6d7379f2cf 100644 --- a/documentation/content/de/books/handbook/disks/_index.adoc +++ b/documentation/content/de/books/handbook/disks/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 17. Speichermedien part: Teil III. Systemadministration prev: books/handbook/audit next: books/handbook/geom +showBookMenu: true +weight: 21 +path: "/books/handbook/" --- [[disks]] diff --git a/documentation/content/de/books/handbook/dtrace/_index.adoc b/documentation/content/de/books/handbook/dtrace/_index.adoc index df7e220898..aa934bf89b 100644 --- a/documentation/content/de/books/handbook/dtrace/_index.adoc +++ b/documentation/content/de/books/handbook/dtrace/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 24. DTrace part: Teil III. Systemadministration prev: books/handbook/cutting-edge next: books/handbook/usb-device-mode +showBookMenu: true +weight: 28 +path: "/books/handbook/" --- [[dtrace]] diff --git a/documentation/content/de/books/handbook/eresources/_index.adoc b/documentation/content/de/books/handbook/eresources/_index.adoc index 488512a048..4e1059deef 100644 --- a/documentation/content/de/books/handbook/eresources/_index.adoc +++ b/documentation/content/de/books/handbook/eresources/_index.adoc @@ -3,6 +3,9 @@ title: Anhang C. Ressourcen im Internet part: Teil V. Anhang prev: books/handbook/bibliography next: books/handbook/pgpkeys +showBookMenu: true +weight: 40 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/de/books/handbook/filesystems/_index.adoc b/documentation/content/de/books/handbook/filesystems/_index.adoc index 73743e9503..04abe76876 100644 --- a/documentation/content/de/books/handbook/filesystems/_index.adoc +++ b/documentation/content/de/books/handbook/filesystems/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 20. Dateisystemunterstützung part: Teil III. Systemadministration prev: books/handbook/zfs next: books/handbook/virtualization +showBookMenu: true +weight: 24 +path: "/books/handbook/" --- [[filesystems]] diff --git a/documentation/content/de/books/handbook/firewalls/_index.adoc b/documentation/content/de/books/handbook/firewalls/_index.adoc index ca488cbfe0..012b56502d 100644 --- a/documentation/content/de/books/handbook/firewalls/_index.adoc +++ b/documentation/content/de/books/handbook/firewalls/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 30. Firewalls part: Teil IV. Netzwerke prev: books/handbook/network-servers next: books/handbook/advanced-networking +showBookMenu: true +weight: 35 +path: "/books/handbook/" --- [[firewalls]] diff --git a/documentation/content/de/books/handbook/geom/_index.adoc b/documentation/content/de/books/handbook/geom/_index.adoc index 51fdd8bf62..6baff19700 100644 --- a/documentation/content/de/books/handbook/geom/_index.adoc +++ b/documentation/content/de/books/handbook/geom/_index.adoc @@ -3,6 +3,9 @@ title: "Kapitel 18. GEOM: Modulares Framework zur Plattentransformation" part: Teil III. Systemadministration prev: books/handbook/disks next: books/handbook/zfs +showBookMenu: true +weight: 22 +path: "/books/handbook/" --- [[geom]] diff --git a/documentation/content/de/books/handbook/introduction/_index.adoc b/documentation/content/de/books/handbook/introduction/_index.adoc index b04101dfd3..621615c550 100644 --- a/documentation/content/de/books/handbook/introduction/_index.adoc +++ b/documentation/content/de/books/handbook/introduction/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 1. Einleitung part: Teil I. Erste Schritte prev: books/handbook/parti next: books/handbook/bsdinstall +showBookMenu: true +weight: 3 +path: "/books/handbook/" --- [[introduction]] diff --git a/documentation/content/de/books/handbook/jails/_index.adoc b/documentation/content/de/books/handbook/jails/_index.adoc index 6175fc26b1..682b4cb139 100644 --- a/documentation/content/de/books/handbook/jails/_index.adoc +++ b/documentation/content/de/books/handbook/jails/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 14. Jails part: Teil III. Systemadministration prev: books/handbook/security next: books/handbook/mac +showBookMenu: true +weight: 18 +path: "/books/handbook/" --- [[jails]] diff --git a/documentation/content/de/books/handbook/kernelconfig/_index.adoc b/documentation/content/de/books/handbook/kernelconfig/_index.adoc index 55f23c9899..d959d0d427 100644 --- a/documentation/content/de/books/handbook/kernelconfig/_index.adoc +++ b/documentation/content/de/books/handbook/kernelconfig/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 8. Konfiguration des FreeBSD-Kernels part: Teil II. Oft benutzte Funktionen prev: books/handbook/multimedia next: books/handbook/printing +showBookMenu: true +weight: 11 +path: "/books/handbook/" --- [[kernelconfig]] diff --git a/documentation/content/de/books/handbook/l10n/_index.adoc b/documentation/content/de/books/handbook/l10n/_index.adoc index 2e847bd485..f8d6dcc44a 100644 --- a/documentation/content/de/books/handbook/l10n/_index.adoc +++ b/documentation/content/de/books/handbook/l10n/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 22. Lokalisierung – I18N/L10N einrichten und benutzen part: Teil III. Systemadministration prev: books/handbook/virtualization next: books/handbook/cutting-edge +showBookMenu: true +weight: 26 +path: "/books/handbook/" --- [[l10n]] diff --git a/documentation/content/de/books/handbook/linuxemu/_index.adoc b/documentation/content/de/books/handbook/linuxemu/_index.adoc index dd44a463eb..b46b50d765 100644 --- a/documentation/content/de/books/handbook/linuxemu/_index.adoc +++ b/documentation/content/de/books/handbook/linuxemu/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 10. Linux®-Binärkompatibilität part: Teil II. Oft benutzte Funktionen prev: books/handbook/printing next: books/handbook/partiii +showBookMenu: true +weight: 13 +path: "/books/handbook/" --- [[linuxemu]] diff --git a/documentation/content/de/books/handbook/mac/_index.adoc b/documentation/content/de/books/handbook/mac/_index.adoc index dc01e015e4..21981b8af9 100644 --- a/documentation/content/de/books/handbook/mac/_index.adoc +++ b/documentation/content/de/books/handbook/mac/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 15. Verbindliche Zugriffskontrolle part: Teil III. Systemadministration prev: books/handbook/jails next: books/handbook/audit +showBookMenu: true +weight: 19 +path: "/books/handbook/" --- [[mac]] diff --git a/documentation/content/de/books/handbook/mail/_index.adoc b/documentation/content/de/books/handbook/mail/_index.adoc index 7a8941bd82..fcaea84f03 100644 --- a/documentation/content/de/books/handbook/mail/_index.adoc +++ b/documentation/content/de/books/handbook/mail/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 28. Elektronische Post (E-Mail) part: Teil IV. Netzwerke prev: books/handbook/ppp-and-slip next: books/handbook/network-servers +showBookMenu: true +weight: 33 +path: "/books/handbook/" --- [[mail]] diff --git a/documentation/content/de/books/handbook/mirrors/_index.adoc b/documentation/content/de/books/handbook/mirrors/_index.adoc index 11ba625854..e8a0dad384 100644 --- a/documentation/content/de/books/handbook/mirrors/_index.adoc +++ b/documentation/content/de/books/handbook/mirrors/_index.adoc @@ -3,6 +3,9 @@ title: Anhang A. Bezugsquellen für FreeBSD part: Teil V. Anhang prev: books/handbook/partv next: books/handbook/bibliography +showBookMenu: true +weight: 38 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/de/books/handbook/multimedia/_index.adoc b/documentation/content/de/books/handbook/multimedia/_index.adoc index ecaf6edd91..61a487b329 100644 --- a/documentation/content/de/books/handbook/multimedia/_index.adoc +++ b/documentation/content/de/books/handbook/multimedia/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 7. Multimedia part: Teil II. Oft benutzte Funktionen prev: books/handbook/desktop next: books/handbook/kernelconfig +showBookMenu: true +weight: 10 +path: "/books/handbook/" --- [[multimedia]] diff --git a/documentation/content/de/books/handbook/network-servers/_index.adoc b/documentation/content/de/books/handbook/network-servers/_index.adoc index f2c2f51948..4b0d0f059f 100644 --- a/documentation/content/de/books/handbook/network-servers/_index.adoc +++ b/documentation/content/de/books/handbook/network-servers/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 29. Netzwerkserver part: Teil IV. Netzwerke prev: books/handbook/mail next: books/handbook/firewalls +showBookMenu: true +weight: 34 +path: "/books/handbook/" --- [[network-servers]] diff --git a/documentation/content/de/books/handbook/parti.adoc b/documentation/content/de/books/handbook/parti.adoc index 21bc441d1b..ca29de93ad 100644 --- a/documentation/content/de/books/handbook/parti.adoc +++ b/documentation/content/de/books/handbook/parti.adoc @@ -2,16 +2,11 @@ title: Teil I. Erste Schritte prev: books/handbook/preface next: books/handbook/introduction +showBookMenu: true +weight: 2 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[getting-started]] = Erste Schritte @@ -24,5 +19,3 @@ Dieser Teil des Handbuchs richtet sich an Benutzer und Administratoren für die * führt den Leser in X, der Benutzeroberfläche von UNIX(R) Systemen ein. Es wird gezeigt, wie ein Desktop konfiguriert wird, um effektiver arbeiten zu können. Referenzen auf weiter vorne liegende Textteile wurden auf ein Minimum beschränkt, so dass dieser Abschnitt ohne viel Blättern durchgearbeitet werden kann. - -include::{chapters-path}toc-1.adoc[] diff --git a/documentation/content/de/books/handbook/partii.adoc b/documentation/content/de/books/handbook/partii.adoc index 01edf5883b..dd9943dba5 100644 --- a/documentation/content/de/books/handbook/partii.adoc +++ b/documentation/content/de/books/handbook/partii.adoc @@ -2,16 +2,11 @@ title: Teil II. Oft benutzte Funktionen prev: books/handbook/x11 next: books/handbook/desktop +showBookMenu: true +weight: 8 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[common-tasks]] = Oft benutzte Funktionen @@ -24,5 +19,3 @@ Nach den Grundlagen beschäftigt sich das Handbuch mit oft benutzten Funktionen * Ausführung von Linux-Anwendungen auf einem FreeBSD-System. Damit Sie einige Kapitel verstehen, sollten Sie vorher andere Kapitel gelesen haben. Die Übersicht zu jedem Kapitel zählt die Voraussetzungen für das erolgreiche Durcharbeiten des Kapitels auf. - -include::{chapters-path}toc-2.adoc[] diff --git a/documentation/content/de/books/handbook/partiii.adoc b/documentation/content/de/books/handbook/partiii.adoc index ab26d52fd5..215f5ee432 100644 --- a/documentation/content/de/books/handbook/partiii.adoc +++ b/documentation/content/de/books/handbook/partiii.adoc @@ -2,21 +2,14 @@ title: Teil III. Systemadministration prev: books/handbook/linuxemu next: books/handbook/config +showBookMenu: true +weight: 14 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[system-administration]] = Systemadministration Die restlichen Kapitel behandeln alle Aspekte der FreeBSD Systemadministration. Am Anfang jedes Kapitels finden Sie eine Zusammenfassung, die beschreibt, was Sie nach dem Durcharbeiten des Kapitels gelernt haben. Weiterhin werden die Voraussetzungen beschrieben, die für das Durcharbeiten des Kapitels erforderlich sind. Diese Kapitel sollten Sie lesen, wenn Sie die Informationen darin benötigen. Sie brauchen Sie nicht in einer bestimmten Reihenfolge zu lesen, noch müssen Sie die Kapitel lesen, bevor Sie anfangen, FreeBSD zu benutzen. - -include::{chapters-path}toc-3.adoc[] diff --git a/documentation/content/de/books/handbook/partiv.adoc b/documentation/content/de/books/handbook/partiv.adoc index bd1086aad2..cca89b93fe 100644 --- a/documentation/content/de/books/handbook/partiv.adoc +++ b/documentation/content/de/books/handbook/partiv.adoc @@ -2,16 +2,11 @@ title: Teil IV. Netzwerke prev: books/handbook/usb-device-mode next: books/handbook/serialcomms +showBookMenu: true +weight: 30 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[network-communication]] = Netzwerke @@ -25,5 +20,3 @@ FreeBSD ist eins der meist benutzten Betriebssysteme für leistungsfähige Netzw * Weiterführende Netzwerkthemen Diese Kapitel sollten Sie lesen, wenn Sie die Informationen darin benötigen. Sie brauchen die Kapitel nicht in einer bestimmten Reihenfolge zu lesen, noch müssen Sie die Kapitel lesen, bevor Sie anfangen, FreeBSD in einer Netzwerkumgebung zu benutzen. - -include::{chapters-path}toc-4.adoc[] diff --git a/documentation/content/de/books/handbook/partv.adoc b/documentation/content/de/books/handbook/partv.adoc index f2d5bafc1a..92cbfbd97f 100644 --- a/documentation/content/de/books/handbook/partv.adoc +++ b/documentation/content/de/books/handbook/partv.adoc @@ -2,17 +2,10 @@ title: Teil V. Anhang prev: books/handbook/advanced-networking next: books/handbook/mirrors +showBookMenu: true +weight: 37 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[appendices]] = Anhang - -include::{chapters-path}toc-5.adoc[] diff --git a/documentation/content/de/books/handbook/pgpkeys/_index.adoc b/documentation/content/de/books/handbook/pgpkeys/_index.adoc index 551eb9ac11..92bc2cf2d1 100644 --- a/documentation/content/de/books/handbook/pgpkeys/_index.adoc +++ b/documentation/content/de/books/handbook/pgpkeys/_index.adoc @@ -3,6 +3,9 @@ title: Anhang D. OpenPGP-Schlüssel part: Teil V. Anhang prev: books/handbook/eresources next: books/handbook/freebsd-glossary +showBookMenu: true +weight: 41 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/de/books/handbook/ports/_index.adoc b/documentation/content/de/books/handbook/ports/_index.adoc index 0e9825bc4b..49152f75e4 100644 --- a/documentation/content/de/books/handbook/ports/_index.adoc +++ b/documentation/content/de/books/handbook/ports/_index.adoc @@ -3,6 +3,9 @@ title: "Kapitel 4. Installieren von Anwendungen: Pakete und Ports" part: Teil I. Erste Schritte prev: books/handbook/basics next: books/handbook/x11 +showBookMenu: true +weight: 6 +path: "/books/handbook/" --- [[ports]] diff --git a/documentation/content/de/books/handbook/ppp-and-slip/_index.adoc b/documentation/content/de/books/handbook/ppp-and-slip/_index.adoc index 993bd234fe..025b2a7e4b 100644 --- a/documentation/content/de/books/handbook/ppp-and-slip/_index.adoc +++ b/documentation/content/de/books/handbook/ppp-and-slip/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 27. PPP part: Teil IV. Netzwerke prev: books/handbook/serialcomms next: books/handbook/mail +showBookMenu: true +weight: 32 +path: "/books/handbook/" --- [[ppp-and-slip]] diff --git a/documentation/content/de/books/handbook/preface/_index.adoc b/documentation/content/de/books/handbook/preface/_index.adoc index 9530f7dec7..3f80c13691 100644 --- a/documentation/content/de/books/handbook/preface/_index.adoc +++ b/documentation/content/de/books/handbook/preface/_index.adoc @@ -2,6 +2,9 @@ title: Vorwort prev: books/handbook/ next: books/handbook/parti +showBookMenu: true +weight: 1 +path: "/books/handbook/" --- [preface] diff --git a/documentation/content/de/books/handbook/printing/_index.adoc b/documentation/content/de/books/handbook/printing/_index.adoc index fd1c09f84a..a7ad9746af 100644 --- a/documentation/content/de/books/handbook/printing/_index.adoc +++ b/documentation/content/de/books/handbook/printing/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 9. Drucken part: Part II. Common Tasks prev: books/handbook/kernelconfig next: books/handbook/linuxemu +showBookMenu: true +weight: 12 +path: "/books/handbook/" --- [[printing]] diff --git a/documentation/content/de/books/handbook/security/_index.adoc b/documentation/content/de/books/handbook/security/_index.adoc index 6a6a5c6633..0736fcee03 100644 --- a/documentation/content/de/books/handbook/security/_index.adoc +++ b/documentation/content/de/books/handbook/security/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 13. Sicherheit part: Teil III. Systemadministration prev: books/handbook/boot next: books/handbook/jails +showBookMenu: true +weight: 17 +path: "/books/handbook/" --- [[security]] diff --git a/documentation/content/de/books/handbook/serialcomms/_index.adoc b/documentation/content/de/books/handbook/serialcomms/_index.adoc index adee43e78a..d78e7df5f0 100644 --- a/documentation/content/de/books/handbook/serialcomms/_index.adoc +++ b/documentation/content/de/books/handbook/serialcomms/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 26. Serielle Datenübertragung part: Teil IV. Netzwerke prev: books/handbook/partiv next: books/handbook/ppp-and-slip +showBookMenu: true +weight: 31 +path: "/books/handbook/" --- [[serialcomms]] diff --git a/documentation/content/de/books/handbook/usb-device-mode/_index.adoc b/documentation/content/de/books/handbook/usb-device-mode/_index.adoc index fd442d7dde..a3c45975ef 100644 --- a/documentation/content/de/books/handbook/usb-device-mode/_index.adoc +++ b/documentation/content/de/books/handbook/usb-device-mode/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 25. USB Gerätemodus part: Teil III. Systemadministration prev: books/handbook/dtrace next: books/handbook/partiv +showBookMenu: true +weight: 29 +path: "/books/handbook/" --- [[usb-device-mode]] diff --git a/documentation/content/de/books/handbook/virtualization/_index.adoc b/documentation/content/de/books/handbook/virtualization/_index.adoc index 3f2570c4a4..27fd53b7f5 100644 --- a/documentation/content/de/books/handbook/virtualization/_index.adoc +++ b/documentation/content/de/books/handbook/virtualization/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 21. Virtualisierung part: Teil III. Systemadministration prev: books/handbook/filesystems next: books/handbook/l10n +showBookMenu: true +weight: 25 +path: "/books/handbook/" --- [[virtualization]] diff --git a/documentation/content/de/books/handbook/x11/_index.adoc b/documentation/content/de/books/handbook/x11/_index.adoc index b99d427d67..b5a838a2da 100644 --- a/documentation/content/de/books/handbook/x11/_index.adoc +++ b/documentation/content/de/books/handbook/x11/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 5. Das X-Window-System part: Teil I. Erste Schritte prev: books/handbook/ports next: books/handbook/partii +showBookMenu: true +weight: 7 +path: "/books/handbook/" --- [[x11]] diff --git a/documentation/content/de/books/handbook/zfs/_index.adoc b/documentation/content/de/books/handbook/zfs/_index.adoc index 270f9cd81e..fc0c575e35 100644 --- a/documentation/content/de/books/handbook/zfs/_index.adoc +++ b/documentation/content/de/books/handbook/zfs/_index.adoc @@ -3,6 +3,9 @@ title: Kapitel 19. Das Z-Dateisystem (ZFS) part: Teil III. Systemadministration prev: books/handbook/geom next: books/handbook/filesystems +showBookMenu: true +weight: 23 +path: "/books/handbook/" --- [[zfs]] diff --git a/documentation/content/de/books/porters-handbook/_index.adoc b/documentation/content/de/books/porters-handbook/_index.adoc index e61ff38a9d..ada9c01535 100644 --- a/documentation/content/de/books/porters-handbook/_index.adoc +++ b/documentation/content/de/books/porters-handbook/_index.adoc @@ -6,7 +6,9 @@ copyright: 2000-2020 The FreeBSD Documentation Project trademarks: ["freebsd", "sun", "unix", "general"] next: books/porters-handbook/why-port add_single_page_link: true -isIndex: true +showBookMenu: true +weight: 0 +path: "/books/porters-handbook/" --- = FreeBSD Porter's Handbook @@ -30,19 +32,14 @@ include::shared/attributes/attributes-{{% lang %}}.adoc[] include::shared/{{% lang %}}/teams.adoc[] include::shared/{{% lang %}}/mailing-lists.adoc[] include::shared/{{% lang %}}/urls.adoc[] -:chapters-path: content/{{% lang %}}/books/porters-handbook/ endif::[] ifdef::backend-pdf,backend-epub3[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] endif::[] ifndef::env-beastie[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] ''' - -include::{chapters-path}toc.adoc[] diff --git a/documentation/content/de/books/porters-handbook/book.adoc b/documentation/content/de/books/porters-handbook/book.adoc index de88775b11..38393676a7 100644 --- a/documentation/content/de/books/porters-handbook/book.adoc +++ b/documentation/content/de/books/porters-handbook/book.adoc @@ -5,6 +5,9 @@ authors: copyright: 2000-2020 The FreeBSD Documentation Project trademarks: ["freebsd", "sun", "unix", "general"] add_split_page_link: true +showBookMenu: false +weight: 0 +path: "/books/porters-handbook/" --- = FreeBSD Porter's Handbook @@ -46,10 +49,6 @@ endif::[] toc::[] -include::{chapters-path}toc-tables.adoc[] - -include::{chapters-path}toc-examples.adoc[] - include::{chapters-path}why-port/_index.adoc[leveloffset=+1] include::{chapters-path}own-port/_index.adoc[leveloffset=+1] include::{chapters-path}quick-porting/_index.adoc[leveloffset=+1] diff --git a/documentation/content/de/books/porters-handbook/chapters-order.adoc b/documentation/content/de/books/porters-handbook/chapters-order.adoc deleted file mode 100644 index 8ab4706cdf..0000000000 --- a/documentation/content/de/books/porters-handbook/chapters-order.adoc +++ /dev/null @@ -1,14 +0,0 @@ -why-port/_index.adoc -own-port/_index.adoc -quick-porting/_index.adoc -slow/_index.adoc -makefile/_index.adoc -special/_index.adoc -plist/_index.adoc -pkg-files/_index.adoc -testing/_index.adoc -port-upgrading/_index.adoc -security/_index.adoc -porting-dads/_index.adoc -porting-samplem/_index.adoc -keeping-up/_index.adoc diff --git a/documentation/content/de/books/porters-handbook/keeping-up/_index.adoc b/documentation/content/de/books/porters-handbook/keeping-up/_index.adoc index 83b38d0044..6ee2736075 100644 --- a/documentation/content/de/books/porters-handbook/keeping-up/_index.adoc +++ b/documentation/content/de/books/porters-handbook/keeping-up/_index.adoc @@ -1,6 +1,9 @@ --- title: Kapitel 14. Auf dem Laufenden bleiben prev: books/porters-handbook/porting-samplem +showBookMenu: true +weight: 14 +path: "/books/porters-handbook/" --- [[keeping-up]] diff --git a/documentation/content/de/books/porters-handbook/makefile/_index.adoc b/documentation/content/de/books/porters-handbook/makefile/_index.adoc index 9b6ac63c44..b583974ca8 100644 --- a/documentation/content/de/books/porters-handbook/makefile/_index.adoc +++ b/documentation/content/de/books/porters-handbook/makefile/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 5. Die Konfiguration des Makefile prev: books/porters-handbook/slow next: books/porters-handbook/special +showBookMenu: true +weight: 5 +path: "/books/porters-handbook/" --- [[flavors]] diff --git a/documentation/content/de/books/porters-handbook/own-port/_index.adoc b/documentation/content/de/books/porters-handbook/own-port/_index.adoc index 35fdad8270..b64c5f0f9a 100644 --- a/documentation/content/de/books/porters-handbook/own-port/_index.adoc +++ b/documentation/content/de/books/porters-handbook/own-port/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 2. Einen neuen Port erstellen prev: books/porters-handbook/why-port next: books/porters-handbook/quick-porting +showBookMenu: true +weight: 2 +path: "/books/porters-handbook/" --- [[own-port]] diff --git a/documentation/content/de/books/porters-handbook/pkg-files/_index.adoc b/documentation/content/de/books/porters-handbook/pkg-files/_index.adoc index a114741f25..e5ec5b10af 100644 --- a/documentation/content/de/books/porters-handbook/pkg-files/_index.adoc +++ b/documentation/content/de/books/porters-handbook/pkg-files/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 8. Die pkg-* Dateien prev: books/porters-handbook/plist next: books/porters-handbook/testing +showBookMenu: true +weight: 8 +path: "/books/porters-handbook/" --- [[pkg-files]] diff --git a/documentation/content/de/books/porters-handbook/plist/_index.adoc b/documentation/content/de/books/porters-handbook/plist/_index.adoc index 70ae80d724..9812c3bea7 100644 --- a/documentation/content/de/books/porters-handbook/plist/_index.adoc +++ b/documentation/content/de/books/porters-handbook/plist/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 7. Fortgeschrittene pkg-plist-Methoden prev: books/porters-handbook/special next: books/porters-handbook/pkg-files +showBookMenu: true +weight: 7 +path: "/books/porters-handbook/" --- [[plist]] diff --git a/documentation/content/de/books/porters-handbook/port-upgrading/_index.adoc b/documentation/content/de/books/porters-handbook/port-upgrading/_index.adoc index f3ff518c1a..b474474a44 100644 --- a/documentation/content/de/books/porters-handbook/port-upgrading/_index.adoc +++ b/documentation/content/de/books/porters-handbook/port-upgrading/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 10. Einen existierenden Port aktualisieren prev: books/porters-handbook/testing next: books/porters-handbook/security +showBookMenu: true +weight: 10 +path: "/books/porters-handbook/" --- [[port-upgrading]] diff --git a/documentation/content/de/books/porters-handbook/porting-dads/_index.adoc b/documentation/content/de/books/porters-handbook/porting-dads/_index.adoc index 6853f0ec12..550eb3a1c5 100644 --- a/documentation/content/de/books/porters-handbook/porting-dads/_index.adoc +++ b/documentation/content/de/books/porters-handbook/porting-dads/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 12. Was man machen respektive vermeiden sollte prev: books/porters-handbook/security next: books/porters-handbook/porting-samplem +showBookMenu: true +weight: 12 +path: "/books/porters-handbook/" --- [[porting-dads]] diff --git a/documentation/content/de/books/porters-handbook/porting-samplem/_index.adoc b/documentation/content/de/books/porters-handbook/porting-samplem/_index.adoc index c7d622f5f6..ad06e817f7 100644 --- a/documentation/content/de/books/porters-handbook/porting-samplem/_index.adoc +++ b/documentation/content/de/books/porters-handbook/porting-samplem/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 13. Beispiel eines Makefile prev: books/porters-handbook/porting-dads next: books/porters-handbook/keeping-up +showBookMenu: true +weight: 13 +path: "/books/porters-handbook/" --- [[porting-samplem]] diff --git a/documentation/content/de/books/porters-handbook/quick-porting/_index.adoc b/documentation/content/de/books/porters-handbook/quick-porting/_index.adoc index c26c3b1241..49f49bfd37 100644 --- a/documentation/content/de/books/porters-handbook/quick-porting/_index.adoc +++ b/documentation/content/de/books/porters-handbook/quick-porting/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 3. Einen neuen Port erstellen prev: books/porters-handbook/own-port next: books/porters-handbook/slow +showBookMenu: true +weight: 3 +path: "/books/porters-handbook/" --- [[quick-porting]] diff --git a/documentation/content/de/books/porters-handbook/security/_index.adoc b/documentation/content/de/books/porters-handbook/security/_index.adoc index de0b204bef..33edfd6a64 100644 --- a/documentation/content/de/books/porters-handbook/security/_index.adoc +++ b/documentation/content/de/books/porters-handbook/security/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 11. Sicherheit der Ports prev: books/porters-handbook/port-upgrading next: books/porters-handbook/porting-dads +showBookMenu: true +weight: 11 +path: "/books/porters-handbook/" --- [[security]] diff --git a/documentation/content/de/books/porters-handbook/slow/_index.adoc b/documentation/content/de/books/porters-handbook/slow/_index.adoc index 3ec201c3ad..80ca50ecc0 100644 --- a/documentation/content/de/books/porters-handbook/slow/_index.adoc +++ b/documentation/content/de/books/porters-handbook/slow/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 4. Einen Port in aller Ruhe erstellen prev: books/porters-handbook/quick-porting next: books/porters-handbook/makefile +showBookMenu: true +weight: 4 +path: "/books/porters-handbook/" --- [[slow]] diff --git a/documentation/content/de/books/porters-handbook/special/_index.adoc b/documentation/content/de/books/porters-handbook/special/_index.adoc index 8af1f93de0..d134fee52a 100644 --- a/documentation/content/de/books/porters-handbook/special/_index.adoc +++ b/documentation/content/de/books/porters-handbook/special/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 6. Besonderheiten prev: books/porters-handbook/makefile next: books/porters-handbook/plist +showBookMenu: true +weight: 6 +path: "/books/porters-handbook/" --- [[special]] diff --git a/documentation/content/de/books/porters-handbook/testing/_index.adoc b/documentation/content/de/books/porters-handbook/testing/_index.adoc index 5213ae7b86..a42fa9080d 100644 --- a/documentation/content/de/books/porters-handbook/testing/_index.adoc +++ b/documentation/content/de/books/porters-handbook/testing/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 9. Ihren Port testen prev: books/porters-handbook/pkg-files next: books/porters-handbook/port-upgrading +showBookMenu: true +weight: 9 +path: "/books/porters-handbook/" --- [[testing]] diff --git a/documentation/content/de/books/porters-handbook/why-port/_index.adoc b/documentation/content/de/books/porters-handbook/why-port/_index.adoc index 8d057b33ec..73eb4f65be 100644 --- a/documentation/content/de/books/porters-handbook/why-port/_index.adoc +++ b/documentation/content/de/books/porters-handbook/why-port/_index.adoc @@ -2,6 +2,9 @@ title: Kapitel 1. Einführung prev: books/porters-handbook/ next: books/porters-handbook/own-port +showBookMenu: true +weight: 1 +path: "/books/porters-handbook/" --- [[why-port]] diff --git a/documentation/content/de/languages.adoc b/documentation/content/de/languages.adoc new file mode 100644 index 0000000000..afb237f82d --- /dev/null +++ b/documentation/content/de/languages.adoc @@ -0,0 +1,6 @@ +--- +title: Languages +layout: languages +--- + += Languages diff --git a/documentation/content/el/articles/_index.adoc b/documentation/content/el/articles/_index.adoc index a245ae3d26..de739232b6 100644 --- a/documentation/content/el/articles/_index.adoc +++ b/documentation/content/el/articles/_index.adoc @@ -1,5 +1,6 @@ --- title: Articles +layout: total-list --- = Articles diff --git a/documentation/content/el/books/_index.adoc b/documentation/content/el/books/_index.adoc index 17572a88c5..89516d974e 100644 --- a/documentation/content/el/books/_index.adoc +++ b/documentation/content/el/books/_index.adoc @@ -1,5 +1,6 @@ --- title: Books +layout: total-list --- = Books diff --git a/documentation/content/el/books/books.adoc b/documentation/content/el/books/books.adoc deleted file mode 100644 index b1752c2f04..0000000000 --- a/documentation/content/el/books/books.adoc +++ /dev/null @@ -1,2 +0,0 @@ -handbook -faq diff --git a/documentation/content/el/books/faq/chapters-order.adoc b/documentation/content/el/books/faq/chapters-order.adoc deleted file mode 100644 index bb86b134ce..0000000000 --- a/documentation/content/el/books/faq/chapters-order.adoc +++ /dev/null @@ -1 +0,0 @@ -_index.adoc diff --git a/documentation/content/el/books/handbook/_index.adoc b/documentation/content/el/books/handbook/_index.adoc index 7edbceed69..f9cbf25615 100644 --- a/documentation/content/el/books/handbook/_index.adoc +++ b/documentation/content/el/books/handbook/_index.adoc @@ -5,7 +5,9 @@ authors: copyright: 1995-2020 Ομάδα Τεκμηρίωσης του FreeBSD trademarks: ["freebsd", "ibm", "ieee", "redhat", "3com", "adobe", "apple", "intel", "linux", "microsoft", "opengroup", "sun", "realnetworks", "oracle", "3ware", "arm", "adaptec", "heidelberger", "intuit", "lsilogic", "themathworks", "thomson", "vmware", "wolframresearch", "xiph", "xfree86", "general"] next: books/handbook/preface -isIndex: true +showBookMenu: true +weight: 0 +path: "/books/handbook/" --- = Εγχειρίδιο του FreeBSD @@ -29,16 +31,13 @@ include::shared/attributes/attributes-{{% lang %}}.adoc[] include::shared/{{% lang %}}/teams.adoc[] include::shared/{{% lang %}}/mailing-lists.adoc[] include::shared/{{% lang %}}/urls.adoc[] -:chapters-path: content/{{% lang %}}/books/handbook/ endif::[] ifdef::backend-pdf,backend-epub3[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] endif::[] ifndef::env-beastie[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] @@ -48,11 +47,3 @@ endif::[] Καλώς ήρθατε στο FreeBSD! Αυτό το εγχειρίδιο καλύπτει την εγκατάσταση και την καθημερινή χρήση του _FreeBSD {rel112-current}-RELEASE_ και του _FreeBSD {rel120-current}-RELEASE_. Το βιβλίο αυτό είναι _μόνιμα υπό βελτίωση και ανάπτυξη_ και αποτελεί το αποτέλεσμα της δουλειάς πολλών ατόμων, οπότε κάποια τμήματα μπορεί να περιέχουν σχετικά ξεπερασμένες πληροφορίες και να χρειάζονται ανανέωση. Αν ενδιαφέρεστε να μας βοηθήσετε σε αυτό το έργο, επικοινωνήστε μαζί μας στην {freebsd-doc}. Η τελευταία έκδοση αυτού του κειμένου είναι πάντα διαθέσιμη από την http://www.FreeBSD.org/[ιστοσελίδα του FreeBSD] (παλιότερες εκδόσεις μπορείτε να βρείτε στη διεύθυνση http://docs.FreeBSD.org/doc/[http://docs.FreeBSD.org/doc/]). Μπορείτε επίσης να μεταφορτώσετε στον υπολογιστή σας το ίδιο βιβλίο σε άλλες μορφές αρχείου και με διάφορες μορφές συμπίεσης από τον link:ftp://ftp.FreeBSD.org/pub/FreeBSD/doc/[εξυπηρετητή FTP του FreeBSD] ή ένα από τα πολλά <<mirrors-ftp,mirror sites>>. Αν προτιμάτε ένα τυπωμένο αντίτυπο, μπορείτε να αγοράσετε ένα αντίγραφο του Εγχειριδίου, από το http://www.freebsdmall.com/[FreeBSD Mall]. Μπορείτε επίσης να link:https://www.FreeBSD.org/search/[ψάξετε σε όλο το βιβλίο]. ''' - -include::{chapters-path}toc.adoc[] - -include::{chapters-path}toc-figures.adoc[] - -include::{chapters-path}toc-tables.adoc[] - -include::{chapters-path}toc-examples.adoc[] diff --git a/documentation/content/el/books/handbook/advanced-networking/_index.adoc b/documentation/content/el/books/handbook/advanced-networking/_index.adoc index a0f4f264db..01f916ee6a 100644 --- a/documentation/content/el/books/handbook/advanced-networking/_index.adoc +++ b/documentation/content/el/books/handbook/advanced-networking/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 31. Προχωρημένα Θέματα Δικτύωση part: Μέρος IV. Δικτυακές Επικοινωνίες prev: books/handbook/firewalls next: books/handbook/partv +showBookMenu: true +weight: 36 +path: "/books/handbook/" --- [[advanced-networking]] diff --git a/documentation/content/el/books/handbook/audit/_index.adoc b/documentation/content/el/books/handbook/audit/_index.adoc index 298a3fd76b..62f91944aa 100644 --- a/documentation/content/el/books/handbook/audit/_index.adoc +++ b/documentation/content/el/books/handbook/audit/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 18. Έλεγχος Συμβάντων Ασφαλείας part: Μέρος III. Διαχείριση Συστήματος prev: books/handbook/mac next: books/handbook/disks +showBookMenu: true +weight: 22 +path: "/books/handbook/" --- [[audit]] diff --git a/documentation/content/el/books/handbook/basics/_index.adoc b/documentation/content/el/books/handbook/basics/_index.adoc index 728b5f48d3..b1d9d37fba 100644 --- a/documentation/content/el/books/handbook/basics/_index.adoc +++ b/documentation/content/el/books/handbook/basics/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 4. Βασικές Έννοιες στο UNIX® part: Μέρος I. Ξεκινώντας με το FreeBSD prev: books/handbook/install next: books/handbook/ports +showBookMenu: true +weight: 6 +path: "/books/handbook/" --- [[basics]] diff --git a/documentation/content/el/books/handbook/bibliography/_index.adoc b/documentation/content/el/books/handbook/bibliography/_index.adoc index d35ba5bc22..e140ec4682 100644 --- a/documentation/content/el/books/handbook/bibliography/_index.adoc +++ b/documentation/content/el/books/handbook/bibliography/_index.adoc @@ -3,6 +3,9 @@ title: Παράρτημα B. Βιβλιογραφία part: Μέρος V. Παραρτήματα prev: books/handbook/mirrors next: books/handbook/eresources +showBookMenu: true +weight: 39 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/el/books/handbook/book.adoc b/documentation/content/el/books/handbook/book.adoc index 53b51a19be..cb9f116bb0 100644 --- a/documentation/content/el/books/handbook/book.adoc +++ b/documentation/content/el/books/handbook/book.adoc @@ -59,86 +59,51 @@ include::{chapters-path}preface/_index.adoc[leveloffset=+1] :sectnums: // Section one -include::{chapters-path}parti.adoc[lines=15..26] - +include::{chapters-path}parti.adoc[lines=7..8] include::{chapters-path}introduction/_index.adoc[leveloffset=+1] - include::{chapters-path}bsdinstall/_index.adoc[leveloffset=+1] - include::{chapters-path}basics/_index.adoc[leveloffset=+1] - include::{chapters-path}ports/_index.adoc[leveloffset=+1] - include::{chapters-path}x11/_index.adoc[leveloffset=+1] // Section two -include::{chapters-path}partii.adoc[lines=15..26] - +include::{chapters-path}partii.adoc[lines=7..8] include::{chapters-path}desktop/_index.adoc[leveloffset=+1] - include::{chapters-path}multimedia/_index.adoc[leveloffset=+1] - include::{chapters-path}kernelconfig/_index.adoc[leveloffset=+1] - include::{chapters-path}printing/_index.adoc[leveloffset=+1] - include::{chapters-path}linuxemu/_index.adoc[leveloffset=+1] // Section three -include::{chapters-path}partiii.adoc[lines=15..20] - +include::{chapters-path}partiii.adoc[lines=7..8] include::{chapters-path}config/_index.adoc[leveloffset=+1] - include::{chapters-path}boot/_index.adoc[leveloffset=+1] - include::{chapters-path}security/_index.adoc[leveloffset=+1] - include::{chapters-path}jails/_index.adoc[leveloffset=+1] - include::{chapters-path}mac/_index.adoc[leveloffset=+1] - include::{chapters-path}audit/_index.adoc[leveloffset=+1] - include::{chapters-path}disks/_index.adoc[leveloffset=+1] - include::{chapters-path}geom/_index.adoc[leveloffset=+1] - include::{chapters-path}filesystems/_index.adoc[leveloffset=+1] - include::{chapters-path}virtualization/_index.adoc[leveloffset=+1] - include::{chapters-path}l10n/_index.adoc[leveloffset=+1] - include::{chapters-path}cutting-edge/_index.adoc[leveloffset=+1] - include::{chapters-path}dtrace/_index.adoc[leveloffset=+1] // Section four -include::{chapters-path}partiv.adoc[lines=15..27] - +include::{chapters-path}partiv.adoc[lines=7..8] include::{chapters-path}serialcomms/_index.adoc[leveloffset=+1] - include::{chapters-path}ppp-and-slip/_index.adoc[leveloffset=+1] - include::{chapters-path}mail/_index.adoc[leveloffset=+1] - include::{chapters-path}network-servers/_index.adoc[leveloffset=+1] - include::{chapters-path}firewalls/_index.adoc[leveloffset=+1] - include::{chapters-path}advanced-networking/_index.adoc[leveloffset=+1] // Section five -include::{chapters-path}partv.adoc[lines=15..16] - +include::{chapters-path}partv.adoc[lines=7..8] :sectnums!: - include::{chapters-path}mirrors/_index.adoc[leveloffset=+1] - include::{chapters-path}bibliography/_index.adoc[leveloffset=+1] - include::{chapters-path}eresources/_index.adoc[leveloffset=+1] - include::{chapters-path}pgpkeys/_index.adoc[leveloffset=+1] - :sectnums: diff --git a/documentation/content/el/books/handbook/boot/_index.adoc b/documentation/content/el/books/handbook/boot/_index.adoc index 7adefdcab7..ccc2b0884b 100644 --- a/documentation/content/el/books/handbook/boot/_index.adoc +++ b/documentation/content/el/books/handbook/boot/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 13. Η Διαδικασία Εκκίνησης του Fr part: Μέρος III. Διαχείριση Συστήματος prev: books/handbook/config next: books/handbook/users +showBookMenu: true +weight: 17 +path: "/books/handbook/" --- [[boot]] diff --git a/documentation/content/el/books/handbook/bsdinstall/_index.adoc b/documentation/content/el/books/handbook/bsdinstall/_index.adoc index 7e2c44ab0a..c3583220e4 100644 --- a/documentation/content/el/books/handbook/bsdinstall/_index.adoc +++ b/documentation/content/el/books/handbook/bsdinstall/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 2. Εγκατάσταση του FreeBSD 9.x και Με part: Μέρος I. Ξεκινώντας με το FreeBSD prev: books/handbook/introduction next: books/handbook/install +showBookMenu: true +weight: 4 +path: "/books/handbook/" --- [[bsdinstall]] diff --git a/documentation/content/el/books/handbook/chapters-order.adoc b/documentation/content/el/books/handbook/chapters-order.adoc deleted file mode 100644 index 5a0affef62..0000000000 --- a/documentation/content/el/books/handbook/chapters-order.adoc +++ /dev/null @@ -1,39 +0,0 @@ -preface/_index.adoc -parti.adoc -introduction/_index.adoc -bsdinstall/_index.adoc -basics/_index.adoc -ports/_index.adoc -x11/_index.adoc -partii.adoc -desktop/_index.adoc -multimedia/_index.adoc -kernelconfig/_index.adoc -printing/_index.adoc -linuxemu/_index.adoc -partiii.adoc -config/_index.adoc -boot/_index.adoc -security/_index.adoc -jails/_index.adoc -mac/_index.adoc -audit/_index.adoc -disks/_index.adoc -geom/_index.adoc -filesystems/_index.adoc -virtualization/_index.adoc -l10n/_index.adoc -cutting-edge/_index.adoc -dtrace/_index.adoc -partiv.adoc -serialcomms/_index.adoc -ppp-and-slip/_index.adoc -mail/_index.adoc -network-servers/_index.adoc -firewalls/_index.adoc -advanced-networking/_index.adoc -partv.adoc -mirrors/_index.adoc -bibliography/_index.adoc -eresources/_index.adoc -pgpkeys/_index.adoc diff --git a/documentation/content/el/books/handbook/config/_index.adoc b/documentation/content/el/books/handbook/config/_index.adoc index 45dcd81964..3460bb661d 100644 --- a/documentation/content/el/books/handbook/config/_index.adoc +++ b/documentation/content/el/books/handbook/config/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 12. Ρύθμιση και Βελτιστοποίηση part: Μέρος III. Διαχείριση Συστήματος prev: books/handbook/partiii next: books/handbook/boot +showBookMenu: true +weight: 16 +path: "/books/handbook/" --- [[config-tuning]] diff --git a/documentation/content/el/books/handbook/cutting-edge/_index.adoc b/documentation/content/el/books/handbook/cutting-edge/_index.adoc index 12c48ea870..18956ddd3e 100644 --- a/documentation/content/el/books/handbook/cutting-edge/_index.adoc +++ b/documentation/content/el/books/handbook/cutting-edge/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 24. Ενημέρωση και Αναβάθμιση το part: Μέρος III. Διαχείριση Συστήματος prev: books/handbook/l10n next: books/handbook/dtrace +showBookMenu: true +weight: 28 +path: "/books/handbook/" --- [[updating-upgrading]] diff --git a/documentation/content/el/books/handbook/desktop/_index.adoc b/documentation/content/el/books/handbook/desktop/_index.adoc index 2b5404024d..37c9f116a3 100644 --- a/documentation/content/el/books/handbook/desktop/_index.adoc +++ b/documentation/content/el/books/handbook/desktop/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 7. Desktop Εφαρμογές part: Μέρος II. Βασικές Εργασίες prev: books/handbook/partii next: books/handbook/multimedia +showBookMenu: true +weight: 10 +path: "/books/handbook/" --- [[desktop]] diff --git a/documentation/content/el/books/handbook/disks/_index.adoc b/documentation/content/el/books/handbook/disks/_index.adoc index 2a41333a84..4b6708b447 100644 --- a/documentation/content/el/books/handbook/disks/_index.adoc +++ b/documentation/content/el/books/handbook/disks/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 19. Αποθηκευτικά Μέσα part: Μέρος III. Διαχείριση Συστήματος prev: books/handbook/audit next: books/handbook/geom +showBookMenu: true +weight: 23 +path: "/books/handbook/" --- [[disks]] diff --git a/documentation/content/el/books/handbook/dtrace/_index.adoc b/documentation/content/el/books/handbook/dtrace/_index.adoc index 32456099c3..2eb0bfb49e 100644 --- a/documentation/content/el/books/handbook/dtrace/_index.adoc +++ b/documentation/content/el/books/handbook/dtrace/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 25. DTrace part: Μέρος III. Διαχείριση Συστήματος prev: books/handbook/cutting-edge next: books/handbook/partiv +showBookMenu: true +weight: 29 +path: "/books/handbook/" --- [[dtrace]] diff --git a/documentation/content/el/books/handbook/eresources/_index.adoc b/documentation/content/el/books/handbook/eresources/_index.adoc index e52476c305..58def9a943 100644 --- a/documentation/content/el/books/handbook/eresources/_index.adoc +++ b/documentation/content/el/books/handbook/eresources/_index.adoc @@ -3,6 +3,9 @@ title: Παράρτημα C. Πηγές Πληροφόρησης στο Διαδ part: Μέρος V. Παραρτήματα prev: books/handbook/bibliography next: books/handbook/pgpkeys +showBookMenu: true +weight: 40 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/el/books/handbook/filesystems/_index.adoc b/documentation/content/el/books/handbook/filesystems/_index.adoc index 75ba333e2a..0515bd3ac0 100644 --- a/documentation/content/el/books/handbook/filesystems/_index.adoc +++ b/documentation/content/el/books/handbook/filesystems/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 21. Υποστήριξη Συστημάτων Αρχεί part: Μέρος III. Διαχείριση Συστήματος prev: books/handbook/geom next: books/handbook/virtualization +showBookMenu: true +weight: 25 +path: "/books/handbook/" --- [[filesystems]] diff --git a/documentation/content/el/books/handbook/firewalls/_index.adoc b/documentation/content/el/books/handbook/firewalls/_index.adoc index 348fab7a60..1c2ab03dc4 100644 --- a/documentation/content/el/books/handbook/firewalls/_index.adoc +++ b/documentation/content/el/books/handbook/firewalls/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 30. Firewalls part: Μέρος IV. Δικτυακές Επικοινωνίες prev: books/handbook/network-servers next: books/handbook/advanced-networking +showBookMenu: true +weight: 35 +path: "/books/handbook/" --- [[firewalls]] diff --git a/documentation/content/el/books/handbook/geom/_index.adoc b/documentation/content/el/books/handbook/geom/_index.adoc index 0177fc03c4..6cec5f11e6 100644 --- a/documentation/content/el/books/handbook/geom/_index.adoc +++ b/documentation/content/el/books/handbook/geom/_index.adoc @@ -3,6 +3,9 @@ title: "Κεφάλαιο 20. GEOM: Διαχείριση Συστοιχιών Δ part: Μέρος III. Διαχείριση Συστήματος prev: books/handbook/disks next: books/handbook/filesystems +showBookMenu: true +weight: 24 +path: "/books/handbook/" --- [[geom]] diff --git a/documentation/content/el/books/handbook/install/_index.adoc b/documentation/content/el/books/handbook/install/_index.adoc index 3f989349ea..40bd5400f4 100644 --- a/documentation/content/el/books/handbook/install/_index.adoc +++ b/documentation/content/el/books/handbook/install/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 3. Εγκατάσταση του FreeBSD 8.x και Πρ part: Μέρος I. Ξεκινώντας με το FreeBSD prev: books/handbook/bsdinstall next: books/handbook/basics +showBookMenu: true +weight: 5 +path: "/books/handbook/" --- [[install]] diff --git a/documentation/content/el/books/handbook/introduction/_index.adoc b/documentation/content/el/books/handbook/introduction/_index.adoc index 28aaea6830..488ac31153 100644 --- a/documentation/content/el/books/handbook/introduction/_index.adoc +++ b/documentation/content/el/books/handbook/introduction/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 1. Εισαγωγή part: Μέρος I. Ξεκινώντας με το FreeBSD prev: books/handbook/parti next: books/handbook/bsdinstall +showBookMenu: true +weight: 3 +path: "/books/handbook/" --- [[introduction]] diff --git a/documentation/content/el/books/handbook/jails/_index.adoc b/documentation/content/el/books/handbook/jails/_index.adoc index f70a52b34d..4116dbafa4 100644 --- a/documentation/content/el/books/handbook/jails/_index.adoc +++ b/documentation/content/el/books/handbook/jails/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 16. Jails part: Μέρος III. Διαχείριση Συστήματος prev: books/handbook/security next: books/handbook/mac +showBookMenu: true +weight: 20 +path: "/books/handbook/" --- [[jails]] diff --git a/documentation/content/el/books/handbook/kernelconfig/_index.adoc b/documentation/content/el/books/handbook/kernelconfig/_index.adoc index 769807ae98..7cb39d74a6 100644 --- a/documentation/content/el/books/handbook/kernelconfig/_index.adoc +++ b/documentation/content/el/books/handbook/kernelconfig/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 9. Ρυθμίζοντας τον Πυρήνα του Fre part: Μέρος II. Βασικές Εργασίες prev: books/handbook/multimedia next: books/handbook/printing +showBookMenu: true +weight: 12 +path: "/books/handbook/" --- [[kernelconfig]] diff --git a/documentation/content/el/books/handbook/l10n/_index.adoc b/documentation/content/el/books/handbook/l10n/_index.adoc index c1b87806a7..521e756540 100644 --- a/documentation/content/el/books/handbook/l10n/_index.adoc +++ b/documentation/content/el/books/handbook/l10n/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 23. Τοπικές Ρυθμίσεις - Χρήση κα part: Μέρος III. Διαχείριση Συστήματος prev: books/handbook/virtualization next: books/handbook/cutting-edge +showBookMenu: true +weight: 27 +path: "/books/handbook/" --- [[l10n]] diff --git a/documentation/content/el/books/handbook/linuxemu/_index.adoc b/documentation/content/el/books/handbook/linuxemu/_index.adoc index 2b430cb140..f7de3ec5eb 100644 --- a/documentation/content/el/books/handbook/linuxemu/_index.adoc +++ b/documentation/content/el/books/handbook/linuxemu/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 11. Συμβατότητα με Εκτελέσιμα τ part: Μέρος II. Βασικές Εργασίες prev: books/handbook/printing next: books/handbook/partiii +showBookMenu: true +weight: 14 +path: "/books/handbook/" --- [[linuxemu]] diff --git a/documentation/content/el/books/handbook/mac/_index.adoc b/documentation/content/el/books/handbook/mac/_index.adoc index 6a55fd9630..76c187db39 100644 --- a/documentation/content/el/books/handbook/mac/_index.adoc +++ b/documentation/content/el/books/handbook/mac/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 17. Υποχρεωτικός Έλεγχος Πρόσβα part: Μέρος III. Διαχείριση Συστήματος prev: books/handbook/jails next: books/handbook/audit +showBookMenu: true +weight: 21 +path: "/books/handbook/" --- [[mac]] diff --git a/documentation/content/el/books/handbook/mail/_index.adoc b/documentation/content/el/books/handbook/mail/_index.adoc index d734855395..a72c307cce 100644 --- a/documentation/content/el/books/handbook/mail/_index.adoc +++ b/documentation/content/el/books/handbook/mail/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 28. Ηλεκτρονικό Ταχυδρομείο part: Μέρος IV. Δικτυακές Επικοινωνίες prev: books/handbook/ppp-and-slip next: books/handbook/network-servers +showBookMenu: true +weight: 33 +path: "/books/handbook/" --- [[mail]] diff --git a/documentation/content/el/books/handbook/mirrors/_index.adoc b/documentation/content/el/books/handbook/mirrors/_index.adoc index c8f284ed13..856abb90b1 100644 --- a/documentation/content/el/books/handbook/mirrors/_index.adoc +++ b/documentation/content/el/books/handbook/mirrors/_index.adoc @@ -3,6 +3,9 @@ title: Παράρτημα A. Που θα Βρείτε το FreeBSD part: Μέρος V. Παραρτήματα prev: books/handbook/partv next: books/handbook/bibliography +showBookMenu: true +weight: 38 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/el/books/handbook/multimedia/_index.adoc b/documentation/content/el/books/handbook/multimedia/_index.adoc index fe64232bd4..c530fef52b 100644 --- a/documentation/content/el/books/handbook/multimedia/_index.adoc +++ b/documentation/content/el/books/handbook/multimedia/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 8. Πολυμέσα part: Μέρος II. Βασικές Εργασίες prev: books/handbook/desktop next: books/handbook/kernelconfig +showBookMenu: true +weight: 11 +path: "/books/handbook/" --- [[multimedia]] diff --git a/documentation/content/el/books/handbook/network-servers/_index.adoc b/documentation/content/el/books/handbook/network-servers/_index.adoc index a6d0631e0e..3cc0414e6e 100644 --- a/documentation/content/el/books/handbook/network-servers/_index.adoc +++ b/documentation/content/el/books/handbook/network-servers/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 29. Εξυπηρετητές Δικτύου part: Μέρος IV. Δικτυακές Επικοινωνίες prev: books/handbook/mail next: books/handbook/firewalls +showBookMenu: true +weight: 34 +path: "/books/handbook/" --- [[network-servers]] diff --git a/documentation/content/el/books/handbook/parti.adoc b/documentation/content/el/books/handbook/parti.adoc index 34ff9778ec..bf952a1e0f 100644 --- a/documentation/content/el/books/handbook/parti.adoc +++ b/documentation/content/el/books/handbook/parti.adoc @@ -2,16 +2,11 @@ title: Μέρος I. Ξεκινώντας με το FreeBSD prev: books/handbook/preface next: books/handbook/introduction +showBookMenu: true +weight: 2 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[getting-started]] = Ξεκινώντας με το FreeBSD @@ -24,5 +19,3 @@ endif::[] * Σας εισάγουν στο γραφικό περιβάλλον του UNIX(R), το σύστημα Χ, και σας καθοδηγούν σχετικά με τις αρχικές ρυθμίσεις ενός γραφικού περιβάλλοντος εργασίας, με το οποίο μπορείτε να είστε ακόμα πιο παραγωγικοί Σε αυτό το τμήμα του βιβλίου, έχουμε προσπαθήσει να μειώσουμε στο ελάχιστο τις αναφορές σε τμήματα ή κεφάλαια του Εγχειριδίου τα οποία δεν έχετε ήδη διαβάσει. Αυτό αποσκοπεί στο να γίνει πιο εύκολη η ανάγνωση του τμήματος αυτού του Εγχειριδίου από την αρχή μέχρι και το τέλος, χωρίς να απαιτείται να ψάχνετε συνεχώς τα επόμενα ή προηγούμενα τμήματα. - -include::{chapters-path}toc-1.adoc[] diff --git a/documentation/content/el/books/handbook/partii.adoc b/documentation/content/el/books/handbook/partii.adoc index 669cd5cc0e..817f6de95a 100644 --- a/documentation/content/el/books/handbook/partii.adoc +++ b/documentation/content/el/books/handbook/partii.adoc @@ -2,16 +2,11 @@ title: Μέρος II. Βασικές Εργασίες prev: books/handbook/x11 next: books/handbook/desktop +showBookMenu: true +weight: 9 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[common-tasks]] = Βασικές Εργασίες @@ -24,5 +19,3 @@ endif::[] * Περιγράφουν πώς μπορείτε να τρέξετε εφαρμογές Linux στο FreeBSD σύστημά σας. Μερικά από αυτά τα κεφάλαια απαιτούν να έχετε μελετήσει πιο πριν κάποιο άλλο κεφάλαιο. Όπου είναι απαραίτητο κάτι τέτοιο, αναφέρεται στη σύνοψη του κάθε κεφαλαίου. - -include::{chapters-path}toc-2.adoc[] diff --git a/documentation/content/el/books/handbook/partiii.adoc b/documentation/content/el/books/handbook/partiii.adoc index 05922429b0..49ca05ecd8 100644 --- a/documentation/content/el/books/handbook/partiii.adoc +++ b/documentation/content/el/books/handbook/partiii.adoc @@ -2,21 +2,14 @@ title: Μέρος III. Διαχείριση Συστήματος prev: books/handbook/linuxemu next: books/handbook/config +showBookMenu: true +weight: 15 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[system-administration]] = Διαχείριση Συστήματος Τα κεφάλαια του FreeBSD Handbook που ακολουθούν αναφέρονται σε θέματα που έχουν σχέση με τη _διαχείριση_ του συστήματος. Κάθε κεφάλαιο ξεκινά περιγράφοντας τι θα μάθετε διαβάζοντας το συγκεκριμένο κεφάλαιο, καθώς και τι προαπαιτούμενα έχει το κεφάλαιο αυτό: τι πρέπει να έχετε ήδη διαβάσει και κατανοήσει πριν ασχοληθείτε με αυτό το κεφάλαιο. Αυτά τα κεφάλαια έχουν σχεδιαστεί περισσότερο ως οδηγός αναφοράς παρά ως εισαγωγικό κείμενο. Γι αυτό είναι πιο χρήσιμα ως οδηγοί στους οποίους μπορείτε να ανατρέξετε όταν χρειάζεστε κάποια πληροφορία για το FreeBSD. Δε χρειάζεται να τα διαβάσετε με κάποια συγκεκριμένη σειρά, ούτε χρειάζεται να τα έχετε διαβάσει όλα πριν αρχίσετε να ασχολείστε με το FreeBSD. - -include::{chapters-path}toc-3.adoc[] diff --git a/documentation/content/el/books/handbook/partiv.adoc b/documentation/content/el/books/handbook/partiv.adoc index 3b671d5de6..6183126b07 100644 --- a/documentation/content/el/books/handbook/partiv.adoc +++ b/documentation/content/el/books/handbook/partiv.adoc @@ -2,16 +2,11 @@ title: Μέρος IV. Δικτυακές Επικοινωνίες prev: books/handbook/dtrace next: books/handbook/serialcomms +showBookMenu: true +weight: 30 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[network-communication]] = Δικτυακές Επικοινωνίες @@ -25,5 +20,3 @@ endif::[] * Άλλα Προχωρημένα Θέματα Δικτύων Αυτά τα κεφάλαια έχουν σχεδιαστεί περισσότερο ως οδηγός αναφοράς παρά ως εισαγωγικό κείμενο. Γι αυτό είναι πιο χρήσιμα ως οδηγοί στους οποίους μπορείτε να ανατρέξετε όταν χρειάζεστε κάποια πληροφορία για το FreeBSD. Δε χρειάζεται να τα διαβάσετε με κάποια συγκεκριμένη σειρά, ούτε χρειάζεται να τα έχετε διαβάσει όλα πριν αρχίσετε να ασχολείστε με το FreeBSD. - -include::{chapters-path}toc-4.adoc[] diff --git a/documentation/content/el/books/handbook/partv.adoc b/documentation/content/el/books/handbook/partv.adoc index 2c2de68caf..0594ce1a82 100644 --- a/documentation/content/el/books/handbook/partv.adoc +++ b/documentation/content/el/books/handbook/partv.adoc @@ -2,17 +2,10 @@ title: Μέρος V. Παραρτήματα prev: books/handbook/advanced-networking next: books/handbook/mirrors +showBookMenu: true +weight: 37 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[appendices]] = Παραρτήματα - -include::{chapters-path}toc-5.adoc[] diff --git a/documentation/content/el/books/handbook/pgpkeys/_index.adoc b/documentation/content/el/books/handbook/pgpkeys/_index.adoc index 23f466868a..d00364b3a8 100644 --- a/documentation/content/el/books/handbook/pgpkeys/_index.adoc +++ b/documentation/content/el/books/handbook/pgpkeys/_index.adoc @@ -3,6 +3,9 @@ title: Παράρτημα D. Κλειδιά PGP part: Μέρος V. Παραρτήματα prev: books/handbook/eresources next: books/handbook/freebsd-glossary +showBookMenu: true +weight: 41 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/el/books/handbook/ports/_index.adoc b/documentation/content/el/books/handbook/ports/_index.adoc index 979f0dd343..b7f4a3fc28 100644 --- a/documentation/content/el/books/handbook/ports/_index.adoc +++ b/documentation/content/el/books/handbook/ports/_index.adoc @@ -3,6 +3,9 @@ title: "Κεφάλαιο 5. Εγκατάσταση Εφαρμογών: Πακέ part: Μέρος I. Ξεκινώντας με το FreeBSD prev: books/handbook/basics next: books/handbook/x11 +showBookMenu: true +weight: 7 +path: "/books/handbook/" --- [[ports]] diff --git a/documentation/content/el/books/handbook/ppp-and-slip/_index.adoc b/documentation/content/el/books/handbook/ppp-and-slip/_index.adoc index 088d599b7a..86eed9805a 100644 --- a/documentation/content/el/books/handbook/ppp-and-slip/_index.adoc +++ b/documentation/content/el/books/handbook/ppp-and-slip/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 27. PPP και SLIP part: Μέρος IV. Δικτυακές Επικοινωνίες prev: books/handbook/serialcomms next: books/handbook/mail +showBookMenu: true +weight: 32 +path: "/books/handbook/" --- [[ppp-and-slip]] diff --git a/documentation/content/el/books/handbook/preface/_index.adoc b/documentation/content/el/books/handbook/preface/_index.adoc index 1b71319270..8faebe4822 100644 --- a/documentation/content/el/books/handbook/preface/_index.adoc +++ b/documentation/content/el/books/handbook/preface/_index.adoc @@ -2,6 +2,9 @@ title: Πρόλογος prev: books/handbook/ next: books/handbook/parti +showBookMenu: true +weight: 1 +path: "/books/handbook/" --- [preface] diff --git a/documentation/content/el/books/handbook/printing/_index.adoc b/documentation/content/el/books/handbook/printing/_index.adoc index 0a4b5effe0..144be390cc 100644 --- a/documentation/content/el/books/handbook/printing/_index.adoc +++ b/documentation/content/el/books/handbook/printing/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 10. Εκτυπώσεις part: Μέρος II. Βασικές Εργασίες prev: books/handbook/kernelconfig next: books/handbook/linuxemu +showBookMenu: true +weight: 13 +path: "/books/handbook/" --- [[printing]] diff --git a/documentation/content/el/books/handbook/security/_index.adoc b/documentation/content/el/books/handbook/security/_index.adoc index 096a7259d3..33114a15cf 100644 --- a/documentation/content/el/books/handbook/security/_index.adoc +++ b/documentation/content/el/books/handbook/security/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 15. Ασφάλεια part: Μέρος III. Διαχείριση Συστήματος prev: books/handbook/users next: books/handbook/jails +showBookMenu: true +weight: 19 +path: "/books/handbook/" --- [[security]] diff --git a/documentation/content/el/books/handbook/serialcomms/_index.adoc b/documentation/content/el/books/handbook/serialcomms/_index.adoc index c85be30918..e5c3f1c7bd 100644 --- a/documentation/content/el/books/handbook/serialcomms/_index.adoc +++ b/documentation/content/el/books/handbook/serialcomms/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 26. Σειριακές Επικοινωνίες part: Μέρος IV. Δικτυακές Επικοινωνίες prev: books/handbook/partiv next: books/handbook/ppp-and-slip +showBookMenu: true +weight: 31 +path: "/books/handbook/" --- [[serialcomms]] diff --git a/documentation/content/el/books/handbook/users/_index.adoc b/documentation/content/el/books/handbook/users/_index.adoc index 0a1b84c947..2e6fcfd690 100644 --- a/documentation/content/el/books/handbook/users/_index.adoc +++ b/documentation/content/el/books/handbook/users/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 14. Χρήστες και Βασική Διαχείρι part: Μέρος III. Διαχείριση Συστήματος prev: books/handbook/boot next: books/handbook/security +showBookMenu: true +weight: 18 +path: "/books/handbook/" --- [[users]] diff --git a/documentation/content/el/books/handbook/virtualization/_index.adoc b/documentation/content/el/books/handbook/virtualization/_index.adoc index 07d89c0015..5a5920612b 100644 --- a/documentation/content/el/books/handbook/virtualization/_index.adoc +++ b/documentation/content/el/books/handbook/virtualization/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 22. Εικονικοποίηση part: Μέρος III. Διαχείριση Συστήματος prev: books/handbook/filesystems next: books/handbook/l10n +showBookMenu: true +weight: 26 +path: "/books/handbook/" --- [[virtualization]] diff --git a/documentation/content/el/books/handbook/x11/_index.adoc b/documentation/content/el/books/handbook/x11/_index.adoc index ab1eb64902..c027246673 100644 --- a/documentation/content/el/books/handbook/x11/_index.adoc +++ b/documentation/content/el/books/handbook/x11/_index.adoc @@ -3,6 +3,9 @@ title: Κεφάλαιο 6. Το Σύστημα X Window part: Μέρος I. Ξεκινώντας με το FreeBSD prev: books/handbook/ports next: books/handbook/partii +showBookMenu: true +weight: 8 +path: "/books/handbook/" --- [[x11]] diff --git a/documentation/content/el/languages.adoc b/documentation/content/el/languages.adoc new file mode 100644 index 0000000000..afb237f82d --- /dev/null +++ b/documentation/content/el/languages.adoc @@ -0,0 +1,6 @@ +--- +title: Languages +layout: languages +--- + += Languages diff --git a/documentation/content/en/articles/_index.adoc b/documentation/content/en/articles/_index.adoc index a245ae3d26..de739232b6 100644 --- a/documentation/content/en/articles/_index.adoc +++ b/documentation/content/en/articles/_index.adoc @@ -1,5 +1,6 @@ --- title: Articles +layout: total-list --- = Articles diff --git a/documentation/content/en/books/_index.adoc b/documentation/content/en/books/_index.adoc index 17572a88c5..89516d974e 100644 --- a/documentation/content/en/books/_index.adoc +++ b/documentation/content/en/books/_index.adoc @@ -1,5 +1,6 @@ --- title: Books +layout: total-list --- = Books diff --git a/documentation/content/en/books/arch-handbook/_index.adoc b/documentation/content/en/books/arch-handbook/_index.adoc index ad7b1f4b9e..a04234288d 100644 --- a/documentation/content/en/books/arch-handbook/_index.adoc +++ b/documentation/content/en/books/arch-handbook/_index.adoc @@ -7,9 +7,11 @@ description: For FreeBSD system developers. This book covers the architectural d trademarks: ["freebsd", "apple", "microsoft", "unix", "general"] tags: ["Arch Handbook", "FreeBSD"] next: books/arch-handbook/parti -weight: 50 add_single_page_link: true -isIndex: true +showBookMenu: true +weight: 0 +path: "/books/arch-handbook/" +bookOrder: 50 --- = FreeBSD Architecture Handbook @@ -33,16 +35,13 @@ include::shared/attributes/attributes-{{% lang %}}.adoc[] include::shared/{{% lang %}}/teams.adoc[] include::shared/{{% lang %}}/mailing-lists.adoc[] include::shared/{{% lang %}}/urls.adoc[] -:chapters-path: content/{{% lang %}}/books/arch-handbook/ endif::[] ifdef::backend-pdf,backend-epub3[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] endif::[] ifndef::env-beastie[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] @@ -54,5 +53,3 @@ Welcome to the FreeBSD Architecture Handbook. This manual is a _work in progress The latest version of this document is always available from the link:https://www.FreeBSD.org/[FreeBSD World Wide Web server]. It may also be downloaded in a variety of formats and compression options from the https://download.freebsd.org/ftp/doc/[FreeBSD FTP server] or one of the numerous extref:{handbook}[mirror sites, mirrors-ftp]. ''' - -include::{chapters-path}toc.adoc[] diff --git a/documentation/content/en/books/arch-handbook/bibliography/_index.adoc b/documentation/content/en/books/arch-handbook/bibliography/_index.adoc index 510ec6ec8e..d49d1d7aed 100644 --- a/documentation/content/en/books/arch-handbook/bibliography/_index.adoc +++ b/documentation/content/en/books/arch-handbook/bibliography/_index.adoc @@ -3,6 +3,9 @@ title: Bibliography prev: books/arch-handbook/partiii description: Bibliography of the FreeBSD Architecture Handbook tags: ["bibliography", "Arch Handbook", "FreeBSD"] +showBookMenu: true +weight: 20 +path: "/books/arch-handbook/" --- [appendix] diff --git a/documentation/content/en/books/arch-handbook/book.adoc b/documentation/content/en/books/arch-handbook/book.adoc index 839bc5bcb4..824911c691 100644 --- a/documentation/content/en/books/arch-handbook/book.adoc +++ b/documentation/content/en/books/arch-handbook/book.adoc @@ -56,8 +56,7 @@ The latest version of this document is always available from the link:https://ww toc::[] // Section one -include::{chapters-path}parti.adoc[lines=15..16] - +include::{chapters-path}parti.adoc[] include::{chapters-path}boot/_index.adoc[leveloffset=+1] include::{chapters-path}locking/_index.adoc[leveloffset=+1] include::{chapters-path}kobj/_index.adoc[leveloffset=+1] @@ -68,8 +67,7 @@ include::{chapters-path}vm/_index.adoc[leveloffset=+1] include::{chapters-path}smp/_index.adoc[leveloffset=+1] // Section two -include::{chapters-path}partii.adoc[lines=15..16] - +include::{chapters-path}partii.adoc[] include::{chapters-path}driverbasics/_index.adoc[leveloffset=+1] include::{chapters-path}isa/_index.adoc[leveloffset=+1] include::{chapters-path}pci/_index.adoc[leveloffset=+1] @@ -80,6 +78,5 @@ include::{chapters-path}sound/_index.adoc[leveloffset=+1] include::{chapters-path}pccard/_index.adoc[leveloffset=+1] // Section three -include::{chapters-path}partiii.adoc[lines=15..16] - +include::{chapters-path}partiii.adoc[] include::{chapters-path}bibliography/_index.adoc[leveloffset=+1] diff --git a/documentation/content/en/books/arch-handbook/boot/_index.adoc b/documentation/content/en/books/arch-handbook/boot/_index.adoc index a499da22a7..ebed0609ca 100644 --- a/documentation/content/en/books/arch-handbook/boot/_index.adoc +++ b/documentation/content/en/books/arch-handbook/boot/_index.adoc @@ -4,6 +4,9 @@ prev: books/arch-handbook/parti next: books/arch-handbook/locking description: Bootstrapping and Kernel Initialization tags: ["boot", "BIOS", "kernel", "MBR", "FreeBSD"] +showBookMenu: true +weight: 2 +path: "/books/arch-handbook/" --- [[boot]] diff --git a/documentation/content/en/books/arch-handbook/chapters-order.adoc b/documentation/content/en/books/arch-handbook/chapters-order.adoc deleted file mode 100644 index ab4d8f3079..0000000000 --- a/documentation/content/en/books/arch-handbook/chapters-order.adoc +++ /dev/null @@ -1,20 +0,0 @@ -parti.adoc -boot/_index.adoc -locking/_index.adoc -kobj/_index.adoc -jail/_index.adoc -sysinit/_index.adoc -mac/_index.adoc -vm/_index.adoc -smp/_index.adoc -partii.adoc -driverbasics/_index.adoc -isa/_index.adoc -pci/_index.adoc -scsi/_index.adoc -usb/_index.adoc -newbus/_index.adoc -sound/_index.adoc -pccard/_index.adoc -partiii.adoc -bibliography/_index.adoc diff --git a/documentation/content/en/books/arch-handbook/driverbasics/_index.adoc b/documentation/content/en/books/arch-handbook/driverbasics/_index.adoc index eebda401ce..6e9fa92f61 100644 --- a/documentation/content/en/books/arch-handbook/driverbasics/_index.adoc +++ b/documentation/content/en/books/arch-handbook/driverbasics/_index.adoc @@ -4,6 +4,9 @@ prev: books/arch-handbook/partii next: books/arch-handbook/isa description: Writing FreeBSD Device Drivers tags: ["writing", "device drivers", "KLD", "FreeBSD"] +showBookMenu: true +weight: 11 +path: "/books/arch-handbook/" --- [[driverbasics]] diff --git a/documentation/content/en/books/arch-handbook/isa/_index.adoc b/documentation/content/en/books/arch-handbook/isa/_index.adoc index 772fe86ad1..b2913774ef 100644 --- a/documentation/content/en/books/arch-handbook/isa/_index.adoc +++ b/documentation/content/en/books/arch-handbook/isa/_index.adoc @@ -4,6 +4,9 @@ prev: books/arch-handbook/driverbasics next: books/arch-handbook/pci description: ISA Device Drivers tags: ["ISA", "device drivers", "FreeBSD"] +showBookMenu: true +weight: 12 +path: "/books/arch-handbook/" --- [[isa-driver]] diff --git a/documentation/content/en/books/arch-handbook/jail/_index.adoc b/documentation/content/en/books/arch-handbook/jail/_index.adoc index 5f18d54736..48cc3c1a0c 100644 --- a/documentation/content/en/books/arch-handbook/jail/_index.adoc +++ b/documentation/content/en/books/arch-handbook/jail/_index.adoc @@ -4,6 +4,9 @@ prev: books/arch-handbook/kobj next: books/arch-handbook/sysinit description: The Jail Subsystem tags: ["jail", "architecture", "networking", "kernel"] +showBookMenu: true +weight: 5 +path: "/books/arch-handbook/" --- [[jail]] diff --git a/documentation/content/en/books/arch-handbook/kobj/_index.adoc b/documentation/content/en/books/arch-handbook/kobj/_index.adoc index 9b8ed55143..50b33bbc37 100644 --- a/documentation/content/en/books/arch-handbook/kobj/_index.adoc +++ b/documentation/content/en/books/arch-handbook/kobj/_index.adoc @@ -4,6 +4,9 @@ prev: books/arch-handbook/locking next: books/arch-handbook/jail description: Kernel Objects tags: ["kernel objects", "kobj", "guide", "FreeBSD"] +showBookMenu: true +weight: 4 +path: "/books/arch-handbook/" --- [[kernel-objects]] diff --git a/documentation/content/en/books/arch-handbook/locking/_index.adoc b/documentation/content/en/books/arch-handbook/locking/_index.adoc index 4cccbe779f..b4fa6b8a68 100644 --- a/documentation/content/en/books/arch-handbook/locking/_index.adoc +++ b/documentation/content/en/books/arch-handbook/locking/_index.adoc @@ -4,6 +4,9 @@ prev: books/arch-handbook/boot next: books/arch-handbook/kobj description: Locking Notes tags: ["locking", "notes", "SMP", "Mutexes"] +showBookMenu: true +weight: 3 +path: "/books/arch-handbook/" --- [[locking]] diff --git a/documentation/content/en/books/arch-handbook/mac/_index.adoc b/documentation/content/en/books/arch-handbook/mac/_index.adoc index 113bbfddb0..a1ee13c101 100644 --- a/documentation/content/en/books/arch-handbook/mac/_index.adoc +++ b/documentation/content/en/books/arch-handbook/mac/_index.adoc @@ -9,6 +9,9 @@ prev: books/arch-handbook/sysinit next: books/arch-handbook/vm description: The TrustedBSD MAC Framework tags: ["TrustedBSD", "MAC"] +showBookMenu: true +weight: 7 +path: "/books/arch-handbook/" --- [[mac]] diff --git a/documentation/content/en/books/arch-handbook/newbus/_index.adoc b/documentation/content/en/books/arch-handbook/newbus/_index.adoc index 5a92939cfd..4457a08aca 100644 --- a/documentation/content/en/books/arch-handbook/newbus/_index.adoc +++ b/documentation/content/en/books/arch-handbook/newbus/_index.adoc @@ -9,6 +9,9 @@ prev: books/arch-handbook/usb next: books/arch-handbook/sound description: Newbus tags: ["Newbus", "overview", "API"] +showBookMenu: true +weight: 16 +path: "/books/arch-handbook/" --- [[newbus]] diff --git a/documentation/content/en/books/arch-handbook/parti.adoc b/documentation/content/en/books/arch-handbook/parti.adoc index 78b766efe3..b86632b2be 100644 --- a/documentation/content/en/books/arch-handbook/parti.adoc +++ b/documentation/content/en/books/arch-handbook/parti.adoc @@ -2,17 +2,10 @@ title: Part I. Kernel prev: books/arch-handbook next: books/arch-handbook/boot +showBookMenu: true +weight: 1 +path: "/books/arch-handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/arch-handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[kernel]] = Kernel - -include::{chapters-path}toc-1.adoc[] diff --git a/documentation/content/en/books/arch-handbook/partii.adoc b/documentation/content/en/books/arch-handbook/partii.adoc index df71bc2b2c..0203b4e249 100644 --- a/documentation/content/en/books/arch-handbook/partii.adoc +++ b/documentation/content/en/books/arch-handbook/partii.adoc @@ -2,17 +2,10 @@ title: Part II. Device Drivers prev: books/arch-handbook/smp next: books/arch-handbook/driverbasics +showBookMenu: true +weight: 10 +path: "/books/arch-handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/arch-handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[devicedrivers]] = Device Drivers - -include::{chapters-path}toc-2.adoc[] diff --git a/documentation/content/en/books/arch-handbook/partiii.adoc b/documentation/content/en/books/arch-handbook/partiii.adoc index 8c647ca8ac..67152e4836 100644 --- a/documentation/content/en/books/arch-handbook/partiii.adoc +++ b/documentation/content/en/books/arch-handbook/partiii.adoc @@ -2,17 +2,10 @@ title: Part III. Appendices prev: books/arch-handbook/pccard next: books/arch-handbook/bibliography +showBookMenu: true +weight: 19 +path: "/books/arch-handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/arch-handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[appendices]] = Appendices - -include::{chapters-path}toc-3.adoc[] diff --git a/documentation/content/en/books/arch-handbook/pccard/_index.adoc b/documentation/content/en/books/arch-handbook/pccard/_index.adoc index 2328260d3d..26df7323b9 100644 --- a/documentation/content/en/books/arch-handbook/pccard/_index.adoc +++ b/documentation/content/en/books/arch-handbook/pccard/_index.adoc @@ -4,6 +4,9 @@ prev: books/arch-handbook/sound next: books/arch-handbook/partiii description: PC Card tags: ["pc card", "overview"] +showBookMenu: true +weight: 18 +path: "/books/arch-handbook/" --- [[pccard]] diff --git a/documentation/content/en/books/arch-handbook/pci/_index.adoc b/documentation/content/en/books/arch-handbook/pci/_index.adoc index fdfb86129b..f5dd920f9b 100644 --- a/documentation/content/en/books/arch-handbook/pci/_index.adoc +++ b/documentation/content/en/books/arch-handbook/pci/_index.adoc @@ -4,6 +4,9 @@ prev: books/arch-handbook/isa next: books/arch-handbook/scsi description: PCI Devices tags: ["PCI", "Devices", "example", "guide"] +showBookMenu: true +weight: 13 +path: "/books/arch-handbook/" --- [[pci]] diff --git a/documentation/content/en/books/arch-handbook/scsi/_index.adoc b/documentation/content/en/books/arch-handbook/scsi/_index.adoc index b2287a11ef..61dfcd6c45 100644 --- a/documentation/content/en/books/arch-handbook/scsi/_index.adoc +++ b/documentation/content/en/books/arch-handbook/scsi/_index.adoc @@ -4,6 +4,9 @@ prev: books/arch-handbook/pci next: books/arch-handbook/usb description: Common Access Method SCSI Controllers tags: ["SCSI", "Controller", "Architecture"] +showBookMenu: true +weight: 14 +path: "/books/arch-handbook/" --- [[scsi]] diff --git a/documentation/content/en/books/arch-handbook/smp/_index.adoc b/documentation/content/en/books/arch-handbook/smp/_index.adoc index 9cff4c076e..5336f5fb73 100644 --- a/documentation/content/en/books/arch-handbook/smp/_index.adoc +++ b/documentation/content/en/books/arch-handbook/smp/_index.adoc @@ -4,6 +4,9 @@ prev: books/arch-handbook/vm next: books/arch-handbook/partii description: SMPng Design Document tags: ["SMPng", "introduction", "locks"] +showBookMenu: true +weight: 9 +path: "/books/arch-handbook/" --- [[smp]] diff --git a/documentation/content/en/books/arch-handbook/sound/_index.adoc b/documentation/content/en/books/arch-handbook/sound/_index.adoc index 507ddfc3f3..98e7f618b1 100644 --- a/documentation/content/en/books/arch-handbook/sound/_index.adoc +++ b/documentation/content/en/books/arch-handbook/sound/_index.adoc @@ -4,6 +4,9 @@ prev: books/arch-handbook/newbus next: books/arch-handbook/pccard description: FreeBSD Sound Subsystem tags: ["Sound", "OSS", "pcm", "mixer"] +showBookMenu: true +weight: 17 +path: "/books/arch-handbook/" --- [[oss]] diff --git a/documentation/content/en/books/arch-handbook/sysinit/_index.adoc b/documentation/content/en/books/arch-handbook/sysinit/_index.adoc index 713aa29258..5d0809fda8 100644 --- a/documentation/content/en/books/arch-handbook/sysinit/_index.adoc +++ b/documentation/content/en/books/arch-handbook/sysinit/_index.adoc @@ -4,6 +4,9 @@ prev: books/arch-handbook/jail next: books/arch-handbook/mac description: The SYSINIT Framework tags: ["SYSINIT", "framework", "Terminology"] +showBookMenu: true +weight: 6 +path: "/books/arch-handbook/" --- [[sysinit]] diff --git a/documentation/content/en/books/arch-handbook/usb/_index.adoc b/documentation/content/en/books/arch-handbook/usb/_index.adoc index db1409f80d..f88db60bc8 100644 --- a/documentation/content/en/books/arch-handbook/usb/_index.adoc +++ b/documentation/content/en/books/arch-handbook/usb/_index.adoc @@ -4,6 +4,9 @@ prev: books/arch-handbook/scsi next: books/arch-handbook/newbus description: USB Devices in FreeBSD tags: ["USB", "Structure", "UHCI", "OHCI"] +showBookMenu: true +weight: 15 +path: "/books/arch-handbook/" --- [[usb]] diff --git a/documentation/content/en/books/arch-handbook/vm/_index.adoc b/documentation/content/en/books/arch-handbook/vm/_index.adoc index adad29a391..31a24a33b2 100644 --- a/documentation/content/en/books/arch-handbook/vm/_index.adoc +++ b/documentation/content/en/books/arch-handbook/vm/_index.adoc @@ -4,6 +4,9 @@ prev: books/arch-handbook/mac next: books/arch-handbook/smp description: Virtual Memory System in FreeBSD tags: ["Virtual memory", "vm_page_t", "vm_object_t", "I/O", "KVM"] +showBookMenu: true +weight: 8 +path: "/books/arch-handbook/" --- [[vm]] diff --git a/documentation/content/en/books/books.adoc b/documentation/content/en/books/books.adoc deleted file mode 100644 index ac6978f69d..0000000000 --- a/documentation/content/en/books/books.adoc +++ /dev/null @@ -1,8 +0,0 @@ -handbook -arch-handbook -design-44bsd -dev-model -developers-handbook -faq -fdp-primer -porters-handbook diff --git a/documentation/content/en/books/design-44bsd/_index.adoc b/documentation/content/en/books/design-44bsd/_index.adoc index 6527b3cf6d..bc3b0057ea 100644 --- a/documentation/content/en/books/design-44bsd/_index.adoc +++ b/documentation/content/en/books/design-44bsd/_index.adoc @@ -8,9 +8,8 @@ authors: copyright: 1996 Addison-Wesley Longman, Inc description: Donated by Addison-Wesley, provides a design overview of 4.4BSD, from which FreeBSD was originally derived trademarks: ["design-44bsd"] -weight: 60 +bookOrder: 60 tags: ["4.4BSD", "design", "operating system", "BSD", "UNIX"] -isIndex: true --- = The Design and Implementation of the 4.4BSD Operating System @@ -36,16 +35,13 @@ include::shared/attributes/attributes-{{% lang %}}.adoc[] include::shared/{{% lang %}}/teams.adoc[] include::shared/{{% lang %}}/mailing-lists.adoc[] include::shared/{{% lang %}}/urls.adoc[] -:chapters-path: content/{{% lang %}}/books/design-44bsd/ endif::[] ifdef::backend-pdf,backend-epub3[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] endif::[] ifndef::env-beastie[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] diff --git a/documentation/content/en/books/design-44bsd/chapters-order.adoc b/documentation/content/en/books/design-44bsd/chapters-order.adoc deleted file mode 100644 index bb86b134ce..0000000000 --- a/documentation/content/en/books/design-44bsd/chapters-order.adoc +++ /dev/null @@ -1 +0,0 @@ -_index.adoc diff --git a/documentation/content/en/books/dev-model/_index.adoc b/documentation/content/en/books/dev-model/_index.adoc index c98587cb3b..374e9b484a 100644 --- a/documentation/content/en/books/dev-model/_index.adoc +++ b/documentation/content/en/books/dev-model/_index.adoc @@ -5,9 +5,8 @@ authors: copyright: Copyright © 2002-2005 Niklas Saers description: A formal study of the organization of the FreeBSD project trademarks: ["freebsd", "ibm", "ieee", "adobe", "intel", "linux", "microsoft", "opengroup", "sun", "netbsd", "general"] -weight: 45 +bookOrder: 45 tags: ["model", "project model", "FreeBSD"] -isIndex: true --- //// @@ -58,16 +57,13 @@ include::shared/attributes/attributes-{{% lang %}}.adoc[] include::shared/{{% lang %}}/teams.adoc[] include::shared/{{% lang %}}/mailing-lists.adoc[] include::shared/{{% lang %}}/urls.adoc[] -:chapters-path: content/{{% lang %}}/books/dev-model/ endif::[] ifdef::backend-pdf,backend-epub3[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] endif::[] ifndef::env-beastie[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] diff --git a/documentation/content/en/books/dev-model/chapters-order.adoc b/documentation/content/en/books/dev-model/chapters-order.adoc deleted file mode 100644 index bb86b134ce..0000000000 --- a/documentation/content/en/books/dev-model/chapters-order.adoc +++ /dev/null @@ -1 +0,0 @@ -_index.adoc diff --git a/documentation/content/en/books/developers-handbook/_index.adoc b/documentation/content/en/books/developers-handbook/_index.adoc index 4841656769..1025d05354 100644 --- a/documentation/content/en/books/developers-handbook/_index.adoc +++ b/documentation/content/en/books/developers-handbook/_index.adoc @@ -6,10 +6,12 @@ copyright: 1995-2021 The FreeBSD Documentation Project description: For people who want to develop software for FreeBSD (and not just people who are developing FreeBSD itself) trademarks: ["freebsd", "apple", "ibm", "ieee", "intel", "linux", "microsoft", "opengroup", "sun", "general"] next: books/developers-handbook/parti -weight: 25 +bookOrder: 25 tags: ["FreeBSD Developers' Handbook"] add_single_page_link: true -isIndex: true +showBookMenu: true +weight: 0 +path: "/books/developers-handbook/" --- = FreeBSD Developers' Handbook @@ -33,16 +35,13 @@ include::shared/attributes/attributes-{{% lang %}}.adoc[] include::shared/{{% lang %}}/teams.adoc[] include::shared/{{% lang %}}/mailing-lists.adoc[] include::shared/{{% lang %}}/urls.adoc[] -:chapters-path: content/{{% lang %}}/books/developers-handbook/ endif::[] ifdef::backend-pdf,backend-epub3[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] endif::[] ifndef::env-beastie[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] @@ -58,5 +57,3 @@ The latest version of this document is always available from the link:https://ww It may also be downloaded in a variety of formats and compression options from the link:https://download.freebsd.org/ftp/doc/[FreeBSD FTP server] or one of the numerous extref:{handbook}[mirror sites, mirrors-ftp]. ''' - -include::{chapters-path}toc.adoc[] diff --git a/documentation/content/en/books/developers-handbook/bibliography/_index.adoc b/documentation/content/en/books/developers-handbook/bibliography/_index.adoc index 9dd43644f7..07de2384a8 100644 --- a/documentation/content/en/books/developers-handbook/bibliography/_index.adoc +++ b/documentation/content/en/books/developers-handbook/bibliography/_index.adoc @@ -3,6 +3,9 @@ title: Appendices prev: books/developers-handbook/partv description: FreeBSD Developers Handbook Bibliography tags: ["FreeBSD Developers' Handbook", "bibliography"] +showBookMenu: true +weight: 17 +path: "/books/developers-handbook/" --- [appendix] diff --git a/documentation/content/en/books/developers-handbook/book.adoc b/documentation/content/en/books/developers-handbook/book.adoc index 31364dcad2..daae55b8a2 100644 --- a/documentation/content/en/books/developers-handbook/book.adoc +++ b/documentation/content/en/books/developers-handbook/book.adoc @@ -60,7 +60,7 @@ It may also be downloaded in a variety of formats and compression options from t toc::[] // Section one -include::{chapters-path}parti.adoc[lines=15..16] +include::{chapters-path}parti.adoc[] include::{chapters-path}introduction/_index.adoc[leveloffset=+1] include::{chapters-path}tools/_index.adoc[leveloffset=+1] include::{chapters-path}secure/_index.adoc[leveloffset=+1] @@ -69,19 +69,19 @@ include::{chapters-path}policies/_index.adoc[leveloffset=+1] include::{chapters-path}testing/_index.adoc[leveloffset=+1] // Section two -include::{chapters-path}partii.adoc[lines=15..16] +include::{chapters-path}partii.adoc[] include::{chapters-path}sockets/_index.adoc[leveloffset=+1] include::{chapters-path}ipv6/_index.adoc[leveloffset=+1] // Section three -include::{chapters-path}partiii.adoc[lines=15..16] +include::{chapters-path}partiii.adoc[] include::{chapters-path}kernelbuild/_index.adoc[leveloffset=+1] include::{chapters-path}kerneldebug/_index.adoc[leveloffset=+1] // Section four -include::{chapters-path}partiv.adoc[lines=15..16] +include::{chapters-path}partiv.adoc[] include::{chapters-path}x86/_index.adoc[leveloffset=+1] // Appendices -include::{chapters-path}partv.adoc[lines=15..16] +include::{chapters-path}partv.adoc[] include::{chapters-path}bibliography/_index.adoc[leveloffset=+1] diff --git a/documentation/content/en/books/developers-handbook/chapters-order.adoc b/documentation/content/en/books/developers-handbook/chapters-order.adoc deleted file mode 100644 index ef978f645c..0000000000 --- a/documentation/content/en/books/developers-handbook/chapters-order.adoc +++ /dev/null @@ -1,17 +0,0 @@ -parti.adoc -introduction/_index.adoc -tools/_index.adoc -secure/_index.adoc -l10n/_index.adoc -policies/_index.adoc -testing/_index.adoc -partii.adoc -sockets/_index.adoc -ipv6/_index.adoc -partiii.adoc -kernelbuild/_index.adoc -kerneldebug/_index.adoc -partiv.adoc -x86/_index.adoc -partv.adoc -bibliography/_index.adoc diff --git a/documentation/content/en/books/developers-handbook/introduction/_index.adoc b/documentation/content/en/books/developers-handbook/introduction/_index.adoc index 852ec91c87..e98ecf0934 100644 --- a/documentation/content/en/books/developers-handbook/introduction/_index.adoc +++ b/documentation/content/en/books/developers-handbook/introduction/_index.adoc @@ -7,6 +7,9 @@ prev: books/developers-handbook/parti next: books/developers-handbook/tools description: Introduction to the FreeBSD Developers Handbook tags: ["introduction", "Developing on FreeBSD", "BSD Vision", "Architectural Guidelines"] +showBookMenu: true +weight: 2 +path: "/books/developers-handbook/" --- [[introduction]] diff --git a/documentation/content/en/books/developers-handbook/ipv6/_index.adoc b/documentation/content/en/books/developers-handbook/ipv6/_index.adoc index dcdaed15ef..ffad0eae89 100644 --- a/documentation/content/en/books/developers-handbook/ipv6/_index.adoc +++ b/documentation/content/en/books/developers-handbook/ipv6/_index.adoc @@ -6,6 +6,9 @@ prev: books/developers-handbook/sockets next: books/developers-handbook/partiii description: IPv6 Internals tags: ["IPv6", "FreeBSD"] +showBookMenu: true +weight: 10 +path: "/books/developers-handbook/" --- [[ipv6]] diff --git a/documentation/content/en/books/developers-handbook/kernelbuild/_index.adoc b/documentation/content/en/books/developers-handbook/kernelbuild/_index.adoc index 1c93e8b96a..17865d2606 100644 --- a/documentation/content/en/books/developers-handbook/kernelbuild/_index.adoc +++ b/documentation/content/en/books/developers-handbook/kernelbuild/_index.adoc @@ -5,6 +5,9 @@ prev: books/developers-handbook/partiii next: books/developers-handbook/kerneldebug description: Building and Installing a FreeBSD Kernel tags: ["building", "installing", "kernel", "FreeBSD"] +showBookMenu: true +weight: 12 +path: "/books/developers-handbook/" --- [[kernelbuild]] diff --git a/documentation/content/en/books/developers-handbook/kerneldebug/_index.adoc b/documentation/content/en/books/developers-handbook/kerneldebug/_index.adoc index 0309c98584..ed0a698d96 100644 --- a/documentation/content/en/books/developers-handbook/kerneldebug/_index.adoc +++ b/documentation/content/en/books/developers-handbook/kerneldebug/_index.adoc @@ -8,6 +8,9 @@ prev: books/developers-handbook/kernelbuild next: books/developers-handbook/partiv description: FreeBSD Kernel Debugging tags: ["Debugging", "Dump", "kgdb", "DDB", "GDB"] +showBookMenu: true +weight: 13 +path: "/books/developers-handbook/" --- [[kerneldebug]] diff --git a/documentation/content/en/books/developers-handbook/l10n/_index.adoc b/documentation/content/en/books/developers-handbook/l10n/_index.adoc index 05793b38e3..1cb5226179 100644 --- a/documentation/content/en/books/developers-handbook/l10n/_index.adoc +++ b/documentation/content/en/books/developers-handbook/l10n/_index.adoc @@ -5,6 +5,9 @@ prev: books/developers-handbook/secure next: books/developers-handbook/policies description: Localization and Internationalization - L10N and I18N in FreeBSD tags: ["L10N", "I18N", "Localization", "Internationalization", "FreeBSD"] +showBookMenu: true +weight: 5 +path: "/books/developers-handbook/" --- [[l10n]] diff --git a/documentation/content/en/books/developers-handbook/parti.adoc b/documentation/content/en/books/developers-handbook/parti.adoc index dc5b56abe5..c4339b493f 100644 --- a/documentation/content/en/books/developers-handbook/parti.adoc +++ b/documentation/content/en/books/developers-handbook/parti.adoc @@ -2,17 +2,10 @@ title: Part I. Basics prev: books/developers-handbook next: books/developers-handbook/introduction +showBookMenu: true +weight: 1 +path: "/books/developers-handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/developers-handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[basics]] = Basics - -include::{chapters-path}toc-1.adoc[] diff --git a/documentation/content/en/books/developers-handbook/partii.adoc b/documentation/content/en/books/developers-handbook/partii.adoc index 3ce9d9b69f..21b05ff266 100644 --- a/documentation/content/en/books/developers-handbook/partii.adoc +++ b/documentation/content/en/books/developers-handbook/partii.adoc @@ -2,17 +2,10 @@ title: Part II. Interprocess Communication prev: books/developers-handbook/testing next: books/developers-handbook/sockets +showBookMenu: true +weight: 8 +path: "/books/developers-handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/developers-handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[ipc]] = Interprocess Communication - -include::{chapters-path}toc-2.adoc[] diff --git a/documentation/content/en/books/developers-handbook/partiii.adoc b/documentation/content/en/books/developers-handbook/partiii.adoc index 47d275450f..2af9e4e133 100644 --- a/documentation/content/en/books/developers-handbook/partiii.adoc +++ b/documentation/content/en/books/developers-handbook/partiii.adoc @@ -2,17 +2,10 @@ title: Part III. Kernel prev: books/developers-handbook/ipv6 next: books/developers-handbook/kernelbuild +showBookMenu: true +weight: 11 +path: "/books/developers-handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/developers-handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[kernel]] = Kernel - -include::{chapters-path}toc-3.adoc[] diff --git a/documentation/content/en/books/developers-handbook/partiv.adoc b/documentation/content/en/books/developers-handbook/partiv.adoc index 8c576c8229..a577253ab8 100644 --- a/documentation/content/en/books/developers-handbook/partiv.adoc +++ b/documentation/content/en/books/developers-handbook/partiv.adoc @@ -2,18 +2,10 @@ title: Part IV. Architectures prev: books/developers-handbook/kerneldebug next: books/developers-handbook/x86 +showBookMenu: true +weight: 14 +path: "/books/developers-handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/developers-handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[architectures]] = Architectures - -include::{chapters-path}toc-4.adoc[] - diff --git a/documentation/content/en/books/developers-handbook/partv.adoc b/documentation/content/en/books/developers-handbook/partv.adoc index aad1558580..8c1d1474e1 100644 --- a/documentation/content/en/books/developers-handbook/partv.adoc +++ b/documentation/content/en/books/developers-handbook/partv.adoc @@ -2,17 +2,10 @@ title: Part V. Appendices prev: books/developers-handbook/x86 next: books/developers-handbook/bibliography +showBookMenu: true +weight: 16 +path: "/books/developers-handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/developers-handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[appendices]] = Appendices - -include::{chapters-path}toc-5.adoc[] diff --git a/documentation/content/en/books/developers-handbook/policies/_index.adoc b/documentation/content/en/books/developers-handbook/policies/_index.adoc index ca63920e94..8a82420765 100644 --- a/documentation/content/en/books/developers-handbook/policies/_index.adoc +++ b/documentation/content/en/books/developers-handbook/policies/_index.adoc @@ -7,6 +7,9 @@ prev: books/developers-handbook/l10n next: books/developers-handbook/testing description: Source Tree Guidelines and Policies tags: ["Style Guidelines", "MAINTAINER", "Makefiles", "Contributed Software", "Shared libraries"] +showBookMenu: true +weight: 6 +path: "/books/developers-handbook/" --- [[policies]] diff --git a/documentation/content/en/books/developers-handbook/secure/_index.adoc b/documentation/content/en/books/developers-handbook/secure/_index.adoc index 5cbc6b793a..8450244ebb 100644 --- a/documentation/content/en/books/developers-handbook/secure/_index.adoc +++ b/documentation/content/en/books/developers-handbook/secure/_index.adoc @@ -6,6 +6,9 @@ prev: books/developers-handbook/tools next: books/developers-handbook/l10n description: Secure Programming in FreeBSD tags: ["secure programming", "Buffer Overflows", "SetUID issues"] +showBookMenu: true +weight: 4 +path: "/books/developers-handbook/" --- [[secure]] diff --git a/documentation/content/en/books/developers-handbook/sockets/_index.adoc b/documentation/content/en/books/developers-handbook/sockets/_index.adoc index 57dc73cf7c..640f4524da 100644 --- a/documentation/content/en/books/developers-handbook/sockets/_index.adoc +++ b/documentation/content/en/books/developers-handbook/sockets/_index.adoc @@ -6,6 +6,9 @@ prev: books/developers-handbook/partii next: books/developers-handbook/ipv6 description: FreeBSD Sockets tags: ["Sockets", "Protocols"] +showBookMenu: true +weight: 9 +path: "/books/developers-handbook/" --- [[sockets]] diff --git a/documentation/content/en/books/developers-handbook/testing/_index.adoc b/documentation/content/en/books/developers-handbook/testing/_index.adoc index 032e55ad50..72d039d239 100644 --- a/documentation/content/en/books/developers-handbook/testing/_index.adoc +++ b/documentation/content/en/books/developers-handbook/testing/_index.adoc @@ -5,6 +5,9 @@ prev: books/developers-handbook/policies next: books/developers-handbook/partii description: Regression and Performance Testing tags: ["Regression", "Performance Testing", "Testing", "Tinderbox"] +showBookMenu: true +weight: 7 +path: "/books/developers-handbook/" --- [[testing]] diff --git a/documentation/content/en/books/developers-handbook/tools/_index.adoc b/documentation/content/en/books/developers-handbook/tools/_index.adoc index c714a399ca..5a7e6522e5 100644 --- a/documentation/content/en/books/developers-handbook/tools/_index.adoc +++ b/documentation/content/en/books/developers-handbook/tools/_index.adoc @@ -7,6 +7,9 @@ prev: books/developers-handbook/introduction next: books/developers-handbook/secure description: Programming Tools tags: ["tools", "Interpreters", "Compilers", "cc", "make", "Debugging", "lldb", "gdb", "clang", "Emacs"] +showBookMenu: true +weight: 3 +path: "/books/developers-handbook/" --- [[tools]] diff --git a/documentation/content/en/books/developers-handbook/x86/_index.adoc b/documentation/content/en/books/developers-handbook/x86/_index.adoc index 1b4d2371d2..77b14e450d 100644 --- a/documentation/content/en/books/developers-handbook/x86/_index.adoc +++ b/documentation/content/en/books/developers-handbook/x86/_index.adoc @@ -5,6 +5,9 @@ prev: books/developers-handbook/partiv next: books/developers-handbook/partv description: x86 Assembly Language Programming tags: ["x86", "guide"] +showBookMenu: true +weight: 15 +path: "/books/developers-handbook/" --- [[x86]] diff --git a/documentation/content/en/books/faq/_index.adoc b/documentation/content/en/books/faq/_index.adoc index e940359559..ab3ea8a9d9 100644 --- a/documentation/content/en/books/faq/_index.adoc +++ b/documentation/content/en/books/faq/_index.adoc @@ -5,9 +5,8 @@ authors: copyright: 1995-2021 The FreeBSD Documentation Project description: Frequently Asked Questions, and answers, covering all aspects of FreeBSD trademarks: ["freebsd", "ibm", "ieee", "adobe", "intel", "linux", "microsoft", "opengroup", "sun", "netbsd", "general"] -weight: 5 +bookOrder: 5 tags: ["FAQ", "FreeBSD FAQ"] -isIndex: true --- = Frequently Asked Questions for FreeBSD {rel2-relx} and {rel-relx} diff --git a/documentation/content/en/books/faq/chapters-order.adoc b/documentation/content/en/books/faq/chapters-order.adoc deleted file mode 100644 index bb86b134ce..0000000000 --- a/documentation/content/en/books/faq/chapters-order.adoc +++ /dev/null @@ -1 +0,0 @@ -_index.adoc diff --git a/documentation/content/en/books/fdp-primer/_index.adoc b/documentation/content/en/books/fdp-primer/_index.adoc index 1b9ef9a0ec..d0ea71bfba 100644 --- a/documentation/content/en/books/fdp-primer/_index.adoc +++ b/documentation/content/en/books/fdp-primer/_index.adoc @@ -6,10 +6,12 @@ copyright: 1998-2021 DocEng trademarks: ["general"] description: Everything you need to know in order to start contributing to the FreeBSD Documentation Project next: books/fdp-primer/preface -weight: 10 tags: ["FDP", "documentation", "FreeBSD", "Index"] add_single_page_link: true -isIndex: true +showBookMenu: true +weight: 10 +path: "/books/fdp-primer/" +bookOrder: 50 --- = FreeBSD Documentation Project Primer for New Contributors @@ -33,16 +35,13 @@ include::shared/attributes/attributes-{{% lang %}}.adoc[] include::shared/{{% lang %}}/teams.adoc[] include::shared/{{% lang %}}/mailing-lists.adoc[] include::shared/{{% lang %}}/urls.adoc[] -:chapters-path: content/{{% lang %}}/books/fdp-primer/ endif::[] ifdef::backend-pdf,backend-epub3[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] endif::[] ifndef::env-beastie[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] @@ -58,5 +57,3 @@ This is a work in progress. Corrections and additions are always welcome. ''' - -include::{chapters-path}toc.adoc[] diff --git a/documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc b/documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc index 85a4b6a4e0..cbe13cba6e 100644 --- a/documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc +++ b/documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc @@ -4,6 +4,9 @@ prev: books/fdp-primer/doc-build next: books/fdp-primer/rosetta description: A brief introduction to AsciiDoctor tags: ["AsciiDoc", "AsciiDoctor", "Primer", "Introduction", "Guide"] +showBookMenu: true +weight: 7 +path: "/books/fdp-primer/" --- [[asciidoctor-primer]] diff --git a/documentation/content/en/books/fdp-primer/book.adoc b/documentation/content/en/books/fdp-primer/book.adoc index 71ef597575..248a2ee0ee 100644 --- a/documentation/content/en/books/fdp-primer/book.adoc +++ b/documentation/content/en/books/fdp-primer/book.adoc @@ -58,12 +58,6 @@ This is a work in progress. Corrections and additions are always welcome. toc::[] -include::{chapters-path}toc-figures.adoc[] - -include::{chapters-path}toc-tables.adoc[] - -include::{chapters-path}toc-examples.adoc[] - :sectnums!: include::{chapters-path}preface/_index.adoc[leveloffset=+1] diff --git a/documentation/content/en/books/fdp-primer/chapters-order.adoc b/documentation/content/en/books/fdp-primer/chapters-order.adoc deleted file mode 100644 index e351e05521..0000000000 --- a/documentation/content/en/books/fdp-primer/chapters-order.adoc +++ /dev/null @@ -1,15 +0,0 @@ -preface/_index.adoc -overview/_index.adoc -tools/_index.adoc -working-copy/_index.adoc -structure/_index.adoc -doc-build/_index.adoc -asciidoctor-primer/_index.adoc -rosetta/_index.adoc -translations/_index.adoc -po-translations/_index.adoc -manual-pages/_index.adoc -writing-style/_index.adoc -editor-config/_index.adoc -see-also/_index.adoc -examples/_index.adoc diff --git a/documentation/content/en/books/fdp-primer/doc-build/_index.adoc b/documentation/content/en/books/fdp-primer/doc-build/_index.adoc index 8f52e7d9b5..4b06ab4f8b 100644 --- a/documentation/content/en/books/fdp-primer/doc-build/_index.adoc +++ b/documentation/content/en/books/fdp-primer/doc-build/_index.adoc @@ -4,6 +4,9 @@ prev: books/fdp-primer/structure next: books/fdp-primer/asciidoctor-primer description: Describes the FreeBSD Documentation Build Process tags: ["build", "process", "make"] +showBookMenu: true +weight: 6 +path: "/books/fdp-primer/" --- [[doc-build]] diff --git a/documentation/content/en/books/fdp-primer/editor-config/_index.adoc b/documentation/content/en/books/fdp-primer/editor-config/_index.adoc index d86acd279f..3c865efb2b 100644 --- a/documentation/content/en/books/fdp-primer/editor-config/_index.adoc +++ b/documentation/content/en/books/fdp-primer/editor-config/_index.adoc @@ -4,6 +4,9 @@ prev: books/fdp-primer/writing-style next: books/fdp-primer/see-also description: Configuration used in the texts editors in the FreeBSD Documentation Project tags: ["editor", "configuration", "vim", "emacs", "FreeBSD"] +showBookMenu: true +weight: 13 +path: "/books/fdp-primer/" --- [[editor-config]] diff --git a/documentation/content/en/books/fdp-primer/manual-pages/_index.adoc b/documentation/content/en/books/fdp-primer/manual-pages/_index.adoc index 86b8a336ec..c2336f5b14 100644 --- a/documentation/content/en/books/fdp-primer/manual-pages/_index.adoc +++ b/documentation/content/en/books/fdp-primer/manual-pages/_index.adoc @@ -4,6 +4,9 @@ prev: books/fdp-primer/po-translations next: books/fdp-primer/writing-style description: How to work with the FreeBSD Manual Pages tags: ["manual pages", "introduction", "guide", "reference"] +showBookMenu: true +weight: 11 +path: "/books/fdp-primer/" --- [[manual-pages]] diff --git a/documentation/content/en/books/fdp-primer/overview/_index.adoc b/documentation/content/en/books/fdp-primer/overview/_index.adoc index 42af65e795..e14f0f5453 100644 --- a/documentation/content/en/books/fdp-primer/overview/_index.adoc +++ b/documentation/content/en/books/fdp-primer/overview/_index.adoc @@ -4,6 +4,9 @@ prev: books/fdp-primer/preface next: books/fdp-primer/tools description: Overview about the FreeBSD Documentation Process tags: ["overview", "FreeBSD Documentation Project", "quick start"] +showBookMenu: true +weight: 2 +path: "/books/fdp-primer/" --- [[overview]] diff --git a/documentation/content/en/books/fdp-primer/po-translations/_index.adoc b/documentation/content/en/books/fdp-primer/po-translations/_index.adoc index 3783dcd2ba..8a9cceed89 100644 --- a/documentation/content/en/books/fdp-primer/po-translations/_index.adoc +++ b/documentation/content/en/books/fdp-primer/po-translations/_index.adoc @@ -4,6 +4,9 @@ prev: books/fdp-primer/translations next: books/fdp-primer/manual-pages description: How to work with PO translation in the FreeBSD Documentation Project tags: ["po", "translations", "tutorial", "quick start"] +showBookMenu: true +weight: 10 +path: "/books/fdp-primer/" --- [[po-translations]] diff --git a/documentation/content/en/books/fdp-primer/preface/_index.adoc b/documentation/content/en/books/fdp-primer/preface/_index.adoc index 7a46dacfed..207fc8ce9d 100644 --- a/documentation/content/en/books/fdp-primer/preface/_index.adoc +++ b/documentation/content/en/books/fdp-primer/preface/_index.adoc @@ -4,6 +4,9 @@ prev: books/fdp-primer next: books/fdp-primer/overview description: Preface about the FreeBSD Documentation Project tags: ["preface", "prompts", "conventions"] +showBookMenu: true +weight: 1 +path: "/books/fdp-primer/" --- [preface] diff --git a/documentation/content/en/books/fdp-primer/rosetta/_index.adoc b/documentation/content/en/books/fdp-primer/rosetta/_index.adoc index 2c023b330f..1824fa5c29 100644 --- a/documentation/content/en/books/fdp-primer/rosetta/_index.adoc +++ b/documentation/content/en/books/fdp-primer/rosetta/_index.adoc @@ -4,6 +4,9 @@ prev: books/fdp-primer/asciidoctor-primer next: books/fdp-primer/translations description: Rosetta Stone with the differences between Docbook and AsciiDoc tags: ["rosetta", "docbook", "asciidoc", "comparison"] +showBookMenu: true +weight: 8 +path: "/books/fdp-primer/" --- [[rosetta]] diff --git a/documentation/content/en/books/fdp-primer/see-also/_index.adoc b/documentation/content/en/books/fdp-primer/see-also/_index.adoc index 7caa0701d5..84dc15aa28 100644 --- a/documentation/content/en/books/fdp-primer/see-also/_index.adoc +++ b/documentation/content/en/books/fdp-primer/see-also/_index.adoc @@ -4,6 +4,9 @@ prev: books/fdp-primer/editor-config/ next: books/fdp-primer/examples description: More information about the FreeBSD Documentation Project tags: ["additional information", "AsciiDoctor", "HTML"] +showBookMenu: true +weight: 14 +path: "/books/fdp-primer/" --- [[see-also]] diff --git a/documentation/content/en/books/fdp-primer/structure/_index.adoc b/documentation/content/en/books/fdp-primer/structure/_index.adoc index 742d5d1583..b825e1cd28 100644 --- a/documentation/content/en/books/fdp-primer/structure/_index.adoc +++ b/documentation/content/en/books/fdp-primer/structure/_index.adoc @@ -4,6 +4,9 @@ prev: books/fdp-primer/working-copy next: books/fdp-primer/doc-build description: Documentation Directory Structure explanation used in the FreeBSD Documentation Project tags: ["directory structure", "organization"] +showBookMenu: true +weight: 5 +path: "/books/fdp-primer/" --- [[structure]] diff --git a/documentation/content/en/books/fdp-primer/tools/_index.adoc b/documentation/content/en/books/fdp-primer/tools/_index.adoc index 4158d57897..4ea3997dfa 100644 --- a/documentation/content/en/books/fdp-primer/tools/_index.adoc +++ b/documentation/content/en/books/fdp-primer/tools/_index.adoc @@ -4,6 +4,9 @@ prev: books/fdp-primer/overview next: books/fdp-primer/working-copy description: Tools used in the FreeBSD Documentation Project tags: ["tools", "required tools", "optional tools"] +showBookMenu: true +weight: 3 +path: "/books/fdp-primer/" --- [[tools]] diff --git a/documentation/content/en/books/fdp-primer/translations/_index.adoc b/documentation/content/en/books/fdp-primer/translations/_index.adoc index 8bcbf5b77e..02e462bb88 100644 --- a/documentation/content/en/books/fdp-primer/translations/_index.adoc +++ b/documentation/content/en/books/fdp-primer/translations/_index.adoc @@ -4,6 +4,9 @@ prev: books/fdp-primer/rosetta next: books/fdp-primer/po-translations description: FAQ about the translation process in the FreeBSD Documentation Project tags: ["FAQ", "i18n", "i10n", "translation"] +showBookMenu: true +weight: 9 +path: "/books/fdp-primer/" --- [[translations]] diff --git a/documentation/content/en/books/fdp-primer/working-copy/_index.adoc b/documentation/content/en/books/fdp-primer/working-copy/_index.adoc index 56dedf08d7..a729bf590d 100644 --- a/documentation/content/en/books/fdp-primer/working-copy/_index.adoc +++ b/documentation/content/en/books/fdp-primer/working-copy/_index.adoc @@ -4,6 +4,9 @@ prev: books/fdp-primer/tools next: books/fdp-primer/structure description: How to get a working copy of the FreeBSD Documentation Project tags: ["working copy", "documentation", "manual pages", "git"] +showBookMenu: true +weight: 4 +path: "/books/fdp-primer/" --- [[working-copy]] diff --git a/documentation/content/en/books/fdp-primer/writing-style/_index.adoc b/documentation/content/en/books/fdp-primer/writing-style/_index.adoc index 9e3321bbae..ba17cdf890 100644 --- a/documentation/content/en/books/fdp-primer/writing-style/_index.adoc +++ b/documentation/content/en/books/fdp-primer/writing-style/_index.adoc @@ -4,6 +4,9 @@ prev: books/fdp-primer/manual-pages next: books/fdp-primer/editor-config description: Writing Style and some conventions used in the FreeBSD Documentation Project tags: ["writing", "style", "tipos", "one sentence per line"] +showBookMenu: true +weight: 12 +path: "/books/fdp-primer/" --- [[writing-style]] diff --git a/documentation/content/en/books/handbook/_index.adoc b/documentation/content/en/books/handbook/_index.adoc index 47946ca6c4..7cc772a89f 100644 --- a/documentation/content/en/books/handbook/_index.adoc +++ b/documentation/content/en/books/handbook/_index.adoc @@ -7,9 +7,11 @@ description: A constantly evolving, comprehensive resource for FreeBSD users trademarks: ["freebsd", "ibm", "ieee", "redhat", "3com", "adobe", "apple", "intel", "linux", "microsoft", "opengroup", "sun", "realnetworks", "oracle", "3ware", "arm", "adaptec", "google", "heidelberger", "intuit", "lsilogic", "themathworks", "thomson", "vmware", "wolframresearch", "xiph", "xfree86", "general"] tags: ["FreeBSD Handbook", "Handbook"] next: books/handbook/preface -weight: 1 add_single_page_link: true -isIndex: true +showBookMenu: true +weight: 0 +path: "/books/handbook/" +bookOrder: 1 --- = FreeBSD Handbook @@ -33,16 +35,13 @@ include::shared/attributes/attributes-{{% lang %}}.adoc[] include::shared/{{% lang %}}/teams.adoc[] include::shared/{{% lang %}}/mailing-lists.adoc[] include::shared/{{% lang %}}/urls.adoc[] -:chapters-path: content/{{% lang %}}/books/handbook/ endif::[] ifdef::backend-pdf,backend-epub3[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] endif::[] ifndef::env-beastie[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] @@ -61,11 +60,3 @@ Printed copies can be purchased at the https://www.freebsdmall.com/[FreeBSD Mall Searches can be performed on the handbook and other documents on the link:https://www.FreeBSD.org/search/[search page]. ''' - -include::{chapters-path}toc.adoc[] - -include::{chapters-path}toc-figures.adoc[] - -include::{chapters-path}toc-tables.adoc[] - -include::{chapters-path}toc-examples.adoc[] diff --git a/documentation/content/en/books/handbook/advanced-networking/_index.adoc b/documentation/content/en/books/handbook/advanced-networking/_index.adoc index 5fa4c9d9d3..7812689466 100644 --- a/documentation/content/en/books/handbook/advanced-networking/_index.adoc +++ b/documentation/content/en/books/handbook/advanced-networking/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/firewalls next: books/handbook/partv description: "Advanced networking in FreeBSD: basics of gateways and routes, CARP, how to configure multiple VLANs on FreeBSD, etc" tags: ["Advanced Networking", "Handbook", "gateway", "routes", "wireless", "tethering", "bluetooth", "bridging", "ipv6", "CARP", "VLAN"] +showBookMenu: true +weight: 37 +path: "/books/handbook/" --- [[advanced-networking]] diff --git a/documentation/content/en/books/handbook/audit/_index.adoc b/documentation/content/en/books/handbook/audit/_index.adoc index f879157ac3..ce045d5427 100644 --- a/documentation/content/en/books/handbook/audit/_index.adoc +++ b/documentation/content/en/books/handbook/audit/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/mac next: books/handbook/disks description: FreeBSD security event auditing supports reliable, fine-grained, and configurable logging of a variety of security-relevant system events, including logins, configuration changes, and file and network access tags: ["audit", "terms", "configuration", "guide", "audit trails"] +showBookMenu: true +weight: 21 +path: "/books/handbook/" --- [[audit]] diff --git a/documentation/content/en/books/handbook/basics/_index.adoc b/documentation/content/en/books/handbook/basics/_index.adoc index 4d721e02d3..f594bbc4ff 100644 --- a/documentation/content/en/books/handbook/basics/_index.adoc +++ b/documentation/content/en/books/handbook/basics/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/bsdinstall next: books/handbook/ports description: Basic commands and functionality of the FreeBSD operating system tags: ["basics", "virtual consoles", "users", "management", "permissions", "directory structure", "disk organization", "mounting", "processes", "daemons", "shell", "editor", "manual pages", "devices"] +showBookMenu: true +weight: 5 +path: "/books/handbook/" --- [[basics]] diff --git a/documentation/content/en/books/handbook/bibliography/_index.adoc b/documentation/content/en/books/handbook/bibliography/_index.adoc index 9540d07a1e..db52ba4fff 100644 --- a/documentation/content/en/books/handbook/bibliography/_index.adoc +++ b/documentation/content/en/books/handbook/bibliography/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/mirrors next: books/handbook/eresources description: FreeBSD Handbook Bibliography tags: ["appendix", "bibliography", "handbook", "books", "guides", "security", "periodicals", "journals", "magazines"] +showBookMenu: true +weight: 40 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/en/books/handbook/book.adoc b/documentation/content/en/books/handbook/book.adoc index 97d270a8b0..a5c023ee94 100644 --- a/documentation/content/en/books/handbook/book.adoc +++ b/documentation/content/en/books/handbook/book.adoc @@ -70,7 +70,7 @@ include::{chapters-path}preface/_index.adoc[leveloffset=+1] :sectnums: // Section one -include::{chapters-path}parti.adoc[lines=15..27] +include::{chapters-path}parti.adoc[] include::{chapters-path}introduction/_index.adoc[leveloffset=+1] @@ -83,7 +83,7 @@ include::{chapters-path}ports/_index.adoc[leveloffset=+1] include::{chapters-path}x11/_index.adoc[leveloffset=+1] // Section two -include::{chapters-path}partii.adoc[lines=15..27] +include::{chapters-path}partii.adoc[] include::{chapters-path}desktop/_index.adoc[leveloffset=+1] @@ -98,7 +98,7 @@ include::{chapters-path}linuxemu/_index.adoc[leveloffset=+1] include::{chapters-path}wine/_index.adoc[leveloffset=+1] // Section three -include::{chapters-path}partiii.adoc[lines=15..23] +include::{chapters-path}partiii.adoc[] include::{chapters-path}config/_index.adoc[leveloffset=+1] @@ -131,7 +131,7 @@ include::{chapters-path}dtrace/_index.adoc[leveloffset=+1] include::{chapters-path}usb-device-mode/_index.adoc[leveloffset=+1] // Section four -include::{chapters-path}partiv.adoc[lines=15..29] +include::{chapters-path}partiv.adoc[] include::{chapters-path}serialcomms/_index.adoc[leveloffset=+1] @@ -146,7 +146,7 @@ include::{chapters-path}firewalls/_index.adoc[leveloffset=+1] include::{chapters-path}advanced-networking/_index.adoc[leveloffset=+1] // Section five -include::{chapters-path}partv.adoc[lines=15..16] +include::{chapters-path}partv.adoc[] :sectnums!: diff --git a/documentation/content/en/books/handbook/boot/_index.adoc b/documentation/content/en/books/handbook/boot/_index.adoc index 6324fbbd56..ebf35c8079 100644 --- a/documentation/content/en/books/handbook/boot/_index.adoc +++ b/documentation/content/en/books/handbook/boot/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/config next: books/handbook/security description: An introduction to the FreeBSD Booting Process, demonstrates how to customize the FreeBSD boot process, including everything that happens until the FreeBSD kernel has started, probed for devices, and started init tags: ["boot", "boot process", "device hints", "x86", "amd64", "MBR", "GPT", "UEFI", "bsdlabel", "boot0", "Single-User Mode", "Multi-User Mode"] +showBookMenu: true +weight: 17 +path: "/books/handbook/" --- [[boot]] diff --git a/documentation/content/en/books/handbook/bsdinstall/_index.adoc b/documentation/content/en/books/handbook/bsdinstall/_index.adoc index 20aa92b7e2..625462331d 100644 --- a/documentation/content/en/books/handbook/bsdinstall/_index.adoc +++ b/documentation/content/en/books/handbook/bsdinstall/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/introduction next: books/handbook/basics description: Guide about how to install FreeBSD, the minimum hardware requirements and supported architectures, how to create the installation media, etc tags: ["bsdinstall", "installing FreeBSD", "requirements", "tutorial", "guide"] +showBookMenu: true +weight: 4 +path: "/books/handbook/" --- [[bsdinstall]] diff --git a/documentation/content/en/books/handbook/chapters-order.adoc b/documentation/content/en/books/handbook/chapters-order.adoc deleted file mode 100644 index 76c296e3b7..0000000000 --- a/documentation/content/en/books/handbook/chapters-order.adoc +++ /dev/null @@ -1,42 +0,0 @@ -preface/_index.adoc -parti.adoc -introduction/_index.adoc -bsdinstall/_index.adoc -basics/_index.adoc -ports/_index.adoc -x11/_index.adoc -partii.adoc -desktop/_index.adoc -multimedia/_index.adoc -kernelconfig/_index.adoc -printing/_index.adoc -linuxemu/_index.adoc -wine/_index.adoc -partiii.adoc -config/_index.adoc -boot/_index.adoc -security/_index.adoc -jails/_index.adoc -mac/_index.adoc -audit/_index.adoc -disks/_index.adoc -geom/_index.adoc -zfs/_index.adoc -filesystems/_index.adoc -virtualization/_index.adoc -l10n/_index.adoc -cutting-edge/_index.adoc -dtrace/_index.adoc -usb-device-mode/_index.adoc -partiv.adoc -serialcomms/_index.adoc -ppp-and-slip/_index.adoc -mail/_index.adoc -network-servers/_index.adoc -firewalls/_index.adoc -advanced-networking/_index.adoc -partv.adoc -mirrors/_index.adoc -bibliography/_index.adoc -eresources/_index.adoc -pgpkeys/_index.adoc diff --git a/documentation/content/en/books/handbook/colophon.adoc b/documentation/content/en/books/handbook/colophon.adoc index f5c6f6a120..576df53fd4 100644 --- a/documentation/content/en/books/handbook/colophon.adoc +++ b/documentation/content/en/books/handbook/colophon.adoc @@ -2,6 +2,9 @@ title: Colophon prev: books/handbook/glossary description: FreeBSD Handbook Colophon +showBookMenu: true +weight: 44 +path: "/books/handbook/" --- [colophon] diff --git a/documentation/content/en/books/handbook/config/_index.adoc b/documentation/content/en/books/handbook/config/_index.adoc index 05dc543f50..5fcc5a350f 100644 --- a/documentation/content/en/books/handbook/config/_index.adoc +++ b/documentation/content/en/books/handbook/config/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/partiii next: books/handbook/boot description: This chapter explains much of the FreeBSD configuration process, including some of the parameters which can be set to tune a FreeBSD system. tags: ["configuration", "tuning", "services", "cron", "virtual hosts", "logging", "configuration files", "sysctl", "tuning disks", "kernel limits", "swap", "power management"] +showBookMenu: true +weight: 16 +path: "/books/handbook/" --- [[config-tuning]] diff --git a/documentation/content/en/books/handbook/cutting-edge/_index.adoc b/documentation/content/en/books/handbook/cutting-edge/_index.adoc index bbd2cc68f8..3b1723044b 100644 --- a/documentation/content/en/books/handbook/cutting-edge/_index.adoc +++ b/documentation/content/en/books/handbook/cutting-edge/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/l10n next: books/handbook/dtrace description: Information about how to keep a FreeBSD system up-to-date with freebsd-update or Git, how to rebuild and reinstall the entire base system, etc tags: ["updating", "upgrading", "documentation", "FreeBSD-STABLE", "FreeBSD-CURRENT", "Security Patches"] +showBookMenu: true +weight: 28 +path: "/books/handbook/" --- [[updating-upgrading]] diff --git a/documentation/content/en/books/handbook/desktop/_index.adoc b/documentation/content/en/books/handbook/desktop/_index.adoc index d292aa1432..bca4dffdf0 100644 --- a/documentation/content/en/books/handbook/desktop/_index.adoc +++ b/documentation/content/en/books/handbook/desktop/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/partii next: books/handbook/multimedia description: This chapter demonstrates how to install numerous desktop applications, including web browsers, productivity software, document viewers, and financial software tags: ["desktop", "browsers", "firefox", "chromium", "productivity", "calligra", "AbiWord", "LibreOffice", "GIMP", "Xpdf", "gv", "Geeqie", "ePDFView", "okular", "Finance", "GnuCash", "Gnumeric", "KMyMoney"] +showBookMenu: true +weight: 9 +path: "/books/handbook/" --- [[desktop]] diff --git a/documentation/content/en/books/handbook/disks/_index.adoc b/documentation/content/en/books/handbook/disks/_index.adoc index 1665227d0a..56eae6042f 100644 --- a/documentation/content/en/books/handbook/disks/_index.adoc +++ b/documentation/content/en/books/handbook/disks/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/audit next: books/handbook/geom description: This chapter covers the use of disks and storage media in FreeBSD. This includes SCSI and IDE disks, CD and DVD media, memory-backed disks, and USB storage devices. tags: ["storage", "disks", "gpart", "mount", "quotas", "encrypt", "GPT", "cdrecord", "NTFS", "quotas", "swap", "HAST", "CD", "DVD", "resizing", "growing"] +showBookMenu: true +weight: 22 +path: "/books/handbook/" --- [[disks]] diff --git a/documentation/content/en/books/handbook/dtrace/_index.adoc b/documentation/content/en/books/handbook/dtrace/_index.adoc index 09375bcb9c..bb97869511 100644 --- a/documentation/content/en/books/handbook/dtrace/_index.adoc +++ b/documentation/content/en/books/handbook/dtrace/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/cutting-edge next: books/handbook/usb-device-mode description: This chapter explains how to use DTrace in FreeBSD tags: ["DTrace", "features", "guide", "tutorial", "kldload"] +showBookMenu: true +weight: 29 +path: "/books/handbook/" --- [[dtrace]] diff --git a/documentation/content/en/books/handbook/eresources/_index.adoc b/documentation/content/en/books/handbook/eresources/_index.adoc index e90267bcb1..45cfd8b55c 100644 --- a/documentation/content/en/books/handbook/eresources/_index.adoc +++ b/documentation/content/en/books/handbook/eresources/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/bibliography next: books/handbook/pgpkeys description: FreeBSD additional resources on internet like websites, mailing lists, mirrors, etc tags: ["eresources", "Websites", "Mailing Lists", "Usenet", "Newsgroups"] +showBookMenu: true +weight: 41 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/en/books/handbook/filesystems/_index.adoc b/documentation/content/en/books/handbook/filesystems/_index.adoc index 950c62f43b..b9af748350 100644 --- a/documentation/content/en/books/handbook/filesystems/_index.adoc +++ b/documentation/content/en/books/handbook/filesystems/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/zfs next: books/handbook/virtualization description: This chapter shows the other filesystems supported by FreeBSD tags: ["filesystem", "ext2", "ext3", "ext4", "ext2fs"] +showBookMenu: true +weight: 25 +path: "/books/handbook/" --- [[filesystems]] diff --git a/documentation/content/en/books/handbook/firewalls/_index.adoc b/documentation/content/en/books/handbook/firewalls/_index.adoc index cb35b27e75..6ebfa03a6a 100644 --- a/documentation/content/en/books/handbook/firewalls/_index.adoc +++ b/documentation/content/en/books/handbook/firewalls/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/network-servers next: books/handbook/advanced-networking description: "FreeBSD has three firewalls built into the base system: PF, IPFW, and IPFILTER. This chapter covers how to define packet filtering rules, the differences between the firewalls built into FreeBSD and how to use them" tags: ["firewall", "pf", "ipfw", "ipfilter", "blacklistd", "filtering"] +showBookMenu: true +weight: 36 +path: "/books/handbook/" --- [[firewalls]] diff --git a/documentation/content/en/books/handbook/geom/_index.adoc b/documentation/content/en/books/handbook/geom/_index.adoc index cb3160f1e7..d0667b683f 100644 --- a/documentation/content/en/books/handbook/geom/_index.adoc +++ b/documentation/content/en/books/handbook/geom/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/disks next: books/handbook/zfs description: In FreeBSD, the GEOM framework permits access and control to classes, such as Master Boot Records and BSD labels, through the use of providers, or the disk devices in /dev. tags: ["GEOM", "RAID", "RAID0", "RAID1", "RAID3", "Striping", "bsdlabel", "newfs", "labelling", "UFS", "journaling"] +showBookMenu: true +weight: 23 +path: "/books/handbook/" --- [[geom]] diff --git a/documentation/content/en/books/handbook/glossary.adoc b/documentation/content/en/books/handbook/glossary.adoc index cbfe220111..b6fab1a47f 100644 --- a/documentation/content/en/books/handbook/glossary.adoc +++ b/documentation/content/en/books/handbook/glossary.adoc @@ -3,6 +3,9 @@ title: FreeBSD Glossary prev: books/handbook/pgpkeys next: books/handbook/colophon description: FreeBSD Handbook Glossary +showBookMenu: true +weight: 43 +path: "/books/handbook/" --- [glossary] diff --git a/documentation/content/en/books/handbook/introduction/_index.adoc b/documentation/content/en/books/handbook/introduction/_index.adoc index 9a92c689b4..3d84034074 100644 --- a/documentation/content/en/books/handbook/introduction/_index.adoc +++ b/documentation/content/en/books/handbook/introduction/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/parti next: books/handbook/bsdinstall description: This chapter covers various aspects of the FreeBSD Project, such as its history, goals, development model, and so on tags: ["introduction", "synopsis", "about", "Who Uses FreeBSD", "goals", "history"] +showBookMenu: true +weight: 3 +path: "/books/handbook/" --- [[introduction]] diff --git a/documentation/content/en/books/handbook/jails/_index.adoc b/documentation/content/en/books/handbook/jails/_index.adoc index 9498b977a7..4bdb15bf53 100644 --- a/documentation/content/en/books/handbook/jails/_index.adoc +++ b/documentation/content/en/books/handbook/jails/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/security next: books/handbook/mac description: Jails improve on the concept of the traditional chroot environment in several ways tags: ["jails", "creating", "managing", "updating", "ezjail"] +showBookMenu: true +weight: 19 +path: "/books/handbook/" --- [[jails]] diff --git a/documentation/content/en/books/handbook/kernelconfig/_index.adoc b/documentation/content/en/books/handbook/kernelconfig/_index.adoc index e552442d1f..38aa775034 100644 --- a/documentation/content/en/books/handbook/kernelconfig/_index.adoc +++ b/documentation/content/en/books/handbook/kernelconfig/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/multimedia next: books/handbook/printing description: This chapter covers how to configure the FreeBSD Kernel. When to build a custom kernel, how to take a hardware inventory, how to customize a kernel configuration file, etc tags: ["configuring", "kernel", "custom kernel", "hardware requirements", "pciconf"] +showBookMenu: true +weight: 11 +path: "/books/handbook/" --- [[kernelconfig]] diff --git a/documentation/content/en/books/handbook/l10n/_index.adoc b/documentation/content/en/books/handbook/l10n/_index.adoc index 790ed7504e..fcc0514c89 100644 --- a/documentation/content/en/books/handbook/l10n/_index.adoc +++ b/documentation/content/en/books/handbook/l10n/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/virtualization next: books/handbook/cutting-edge description: FreeBSD supports localization into many languages, allowing users to view, input, or process data in non-English languages tags: ["i18n", "L10n", "localization", "Locale", "LANG", "MM_CHARSET", "cap_mkdb"] +showBookMenu: true +weight: 27 +path: "/books/handbook/" --- [[l10n]] diff --git a/documentation/content/en/books/handbook/linuxemu/_index.adoc b/documentation/content/en/books/handbook/linuxemu/_index.adoc index 2ac2a94c5c..e88dc1c792 100644 --- a/documentation/content/en/books/handbook/linuxemu/_index.adoc +++ b/documentation/content/en/books/handbook/linuxemu/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/printing next: books/handbook/wine description: FreeBSD provides binary compatibility with Linux®, allowing users to install and run most Linux® binaries on a FreeBSD system without having to first modify the binary tags: ["linux", "linuxulator", "emulation", "binary", "compatibility"] +showBookMenu: true +weight: 13 +path: "/books/handbook/" --- [[linuxemu]] diff --git a/documentation/content/en/books/handbook/mac/_index.adoc b/documentation/content/en/books/handbook/mac/_index.adoc index da6e6a22b3..b6630ab398 100644 --- a/documentation/content/en/books/handbook/mac/_index.adoc +++ b/documentation/content/en/books/handbook/mac/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/jails next: books/handbook/audit description: "This chapter focuses on the MAC framework and the set of pluggable security policy modules FreeBSD provides for enabling various security mechanisms" tags: ["MAC", "labels", "security", "configuration", "nagios"] +showBookMenu: true +weight: 20 +path: "/books/handbook/" --- [[mac]] diff --git a/documentation/content/en/books/handbook/mail/_index.adoc b/documentation/content/en/books/handbook/mail/_index.adoc index 2501d6229e..7632825a6c 100644 --- a/documentation/content/en/books/handbook/mail/_index.adoc +++ b/documentation/content/en/books/handbook/mail/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/ppp-and-slip next: books/handbook/network-servers description: This chapter provides a basic introduction to running a mail server on FreeBSD, as well as an introduction to sending and receiving email using FreeBSD tags: ["mail", "sendmail", "MTA", "SMTP", "user agents", "fetchmail", "procmail", "alpine", "mut"] +showBookMenu: true +weight: 34 +path: "/books/handbook/" --- [[mail]] diff --git a/documentation/content/en/books/handbook/mirrors/_index.adoc b/documentation/content/en/books/handbook/mirrors/_index.adoc index 43ce43bed9..49db8a7574 100644 --- a/documentation/content/en/books/handbook/mirrors/_index.adoc +++ b/documentation/content/en/books/handbook/mirrors/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/partv next: books/handbook/bibliography description: "How to get FreeBSD: CD and DVD sets, FTP sites and how to install and use Git" tags: ["Obtaining", "CD", "DVD", "FTP", "Git"] +showBookMenu: true +weight: 39 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/en/books/handbook/multimedia/_index.adoc b/documentation/content/en/books/handbook/multimedia/_index.adoc index f596d07d0a..5a8330276c 100644 --- a/documentation/content/en/books/handbook/multimedia/_index.adoc +++ b/documentation/content/en/books/handbook/multimedia/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/desktop next: books/handbook/kernelconfig description: FreeBSD supports a wide variety of sound cards, allowing users to enjoy high fidelity output from a FreeBSD system tags: ["multimedia", "sound card", "MP3", "MythTV", "scanner", "SANE"] +showBookMenu: true +weight: 10 +path: "/books/handbook/" --- [[multimedia]] diff --git a/documentation/content/en/books/handbook/network-servers/_index.adoc b/documentation/content/en/books/handbook/network-servers/_index.adoc index 26eab1704e..a028dfa190 100644 --- a/documentation/content/en/books/handbook/network-servers/_index.adoc +++ b/documentation/content/en/books/handbook/network-servers/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/mail next: books/handbook/firewalls description: This chapter covers some of the more frequently used network services on UNIX systems tags: ["network", "servers", "inetd", "NFS", "NIS", "LDAP", "DHCP", "DNS", "Apache HTTP", "FTP", "Samba", "NTP", "iSCSI"] +showBookMenu: true +weight: 35 +path: "/books/handbook/" --- [[network-servers]] diff --git a/documentation/content/en/books/handbook/parti.adoc b/documentation/content/en/books/handbook/parti.adoc index dde9cad8c1..9ef35a4ce4 100644 --- a/documentation/content/en/books/handbook/parti.adoc +++ b/documentation/content/en/books/handbook/parti.adoc @@ -2,16 +2,11 @@ title: Part I. Getting Started prev: books/handbook/preface next: books/handbook/introduction +showBookMenu: true +weight: 2 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[getting-started]] = Getting Started @@ -25,5 +20,3 @@ These chapters: * Introduce X, the UNIX(R) windowing system, and detail how to configure a desktop environment that makes users more productive. The number of forward references in the text have been kept to a minimum so that this section can be read from front to back with minimal page flipping. - -include::{chapters-path}toc-1.adoc[] diff --git a/documentation/content/en/books/handbook/partii.adoc b/documentation/content/en/books/handbook/partii.adoc index 000f31ae04..2558af057a 100644 --- a/documentation/content/en/books/handbook/partii.adoc +++ b/documentation/content/en/books/handbook/partii.adoc @@ -2,16 +2,11 @@ title: Part II. Common Tasks prev: books/handbook/x11 next: books/handbook/desktop +showBookMenu: true +weight: 8 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[common-tasks]] = Common Tasks @@ -25,5 +20,3 @@ These chapters: * Show how to run Linux applications on the FreeBSD system. Some of these chapters recommend prior reading, and this is noted in the synopsis at the beginning of each chapter. - -include::{chapters-path}toc-2.adoc[] diff --git a/documentation/content/en/books/handbook/partiii.adoc b/documentation/content/en/books/handbook/partiii.adoc index 0f2fbb9da1..a2277e833f 100644 --- a/documentation/content/en/books/handbook/partiii.adoc +++ b/documentation/content/en/books/handbook/partiii.adoc @@ -2,16 +2,11 @@ title: Part III. System Administration prev: books/handbook/linuxemu next: books/handbook/config +showBookMenu: true +weight: 15 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[system-administration]] = System Administration @@ -21,5 +16,3 @@ and also details what the reader is expected to know before tackling the materia These chapters are designed to be read as the information is needed. They do not need to be read in any particular order, nor must all of them be read before beginning to use FreeBSD. - -include::{chapters-path}toc-3.adoc[] diff --git a/documentation/content/en/books/handbook/partiv.adoc b/documentation/content/en/books/handbook/partiv.adoc index 50ca2c7e63..82ca5a561d 100644 --- a/documentation/content/en/books/handbook/partiv.adoc +++ b/documentation/content/en/books/handbook/partiv.adoc @@ -2,16 +2,11 @@ title: Part IV. Network Communication prev: books/handbook/usb-device-mode next: books/handbook/serialcomms +showBookMenu: true +weight: 31 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[network-communication]] = Network Communication @@ -27,5 +22,3 @@ The chapters in this part cover: These chapters are designed to be read when the information is needed. They do not need to be read in any particular order, nor is it necessary to read all of them before using FreeBSD in a network environment. - -include::{chapters-path}toc-4.adoc[] diff --git a/documentation/content/en/books/handbook/partv.adoc b/documentation/content/en/books/handbook/partv.adoc index 12efca4145..9bd4e82b40 100644 --- a/documentation/content/en/books/handbook/partv.adoc +++ b/documentation/content/en/books/handbook/partv.adoc @@ -2,17 +2,10 @@ title: Part V. Appendices prev: books/handbook/advanced-networking next: books/handbook/mirrors +showBookMenu: true +weight: 38 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[appendices]] = Appendices - -include::{chapters-path}toc-5.adoc[] diff --git a/documentation/content/en/books/handbook/pgpkeys/_index.adoc b/documentation/content/en/books/handbook/pgpkeys/_index.adoc index 793a50de32..a28e097bdc 100644 --- a/documentation/content/en/books/handbook/pgpkeys/_index.adoc +++ b/documentation/content/en/books/handbook/pgpkeys/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/eresources next: books/handbook/glossary description: List of OpenPGP keys of the FreeBSD officers are shown here tags: ["OpenGPG", "keys", "officers"] +showBookMenu: true +weight: 42 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/en/books/handbook/ports/_index.adoc b/documentation/content/en/books/handbook/ports/_index.adoc index 65df8f1e26..074257d4e5 100644 --- a/documentation/content/en/books/handbook/ports/_index.adoc +++ b/documentation/content/en/books/handbook/ports/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/basics next: books/handbook/x11 description: "FreeBSD provides two complementary technologies for installing third-party software: the FreeBSD Ports Collection, for installing from source, and packages, for installing from pre-built binaries" tags: ["ports", "collection", "pkg", "poudriere", "management"] +showBookMenu: true +weight: 6 +path: "/books/handbook/" --- [[ports]] diff --git a/documentation/content/en/books/handbook/ppp-and-slip/_index.adoc b/documentation/content/en/books/handbook/ppp-and-slip/_index.adoc index 61883aabf7..831d3a3240 100644 --- a/documentation/content/en/books/handbook/ppp-and-slip/_index.adoc +++ b/documentation/content/en/books/handbook/ppp-and-slip/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/serialcomms next: books/handbook/mail description: FreeBSD supports the Point-to-Point (PPP) protocol which can be used to establish a network or Internet connection using a dial-up modem tags: ["PPP", "PPPoE", "PPPoA", "modem"] +showBookMenu: true +weight: 33 +path: "/books/handbook/" --- [[ppp-and-slip]] diff --git a/documentation/content/en/books/handbook/preface/_index.adoc b/documentation/content/en/books/handbook/preface/_index.adoc index 2c5b3de541..0ef40b5af9 100644 --- a/documentation/content/en/books/handbook/preface/_index.adoc +++ b/documentation/content/en/books/handbook/preface/_index.adoc @@ -4,6 +4,9 @@ prev: books/handbook next: books/handbook/parti description: The FreeBSD newcomer will find that the first section of this book guides the user through the FreeBSD installation process and gently introduces the concepts and conventions that underpin UNIX tags: ["preface", "audience", "organization", "conventions", "acknowledgments"] +showBookMenu: true +weight: 1 +path: "/books/handbook/" --- [preface] diff --git a/documentation/content/en/books/handbook/printing/_index.adoc b/documentation/content/en/books/handbook/printing/_index.adoc index cd338df982..72fdf4f276 100644 --- a/documentation/content/en/books/handbook/printing/_index.adoc +++ b/documentation/content/en/books/handbook/printing/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/kernelconfig next: books/handbook/linuxemu description: This chapter covers the printing system in FreeBSD tags: ["printing", "CUPS", "LPD", "PostScript", "PDLs", "HPLIP", "LPRng"] +showBookMenu: true +weight: 12 +path: "/books/handbook/" --- [[printing]] diff --git a/documentation/content/en/books/handbook/security/_index.adoc b/documentation/content/en/books/handbook/security/_index.adoc index 97e9eca86a..50fab4dbf2 100644 --- a/documentation/content/en/books/handbook/security/_index.adoc +++ b/documentation/content/en/books/handbook/security/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/boot next: books/handbook/jails description: Hundreds of standard practices have been authored about how to secure systems and networks, and as a user of FreeBSD, understanding how to protect against attacks and intruders is a must tags: ["security", "one-time passwords", "TCP Wrapper", "Kerberos", "OpenSSL", "IPsec", "OpenSSH", "ACL", "advisories", "sudo", "doas", "monitoring"] +showBookMenu: true +weight: 18 +path: "/books/handbook/" --- [[security]] diff --git a/documentation/content/en/books/handbook/serialcomms/_index.adoc b/documentation/content/en/books/handbook/serialcomms/_index.adoc index e21a935129..646527c552 100644 --- a/documentation/content/en/books/handbook/serialcomms/_index.adoc +++ b/documentation/content/en/books/handbook/serialcomms/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/partiv next: books/handbook/ppp-and-slip description: This chapter covers some of the ways serial communications can be used on FreeBSD tags: ["serial", "communications", "terminal", "modem", "console"] +showBookMenu: true +weight: 32 +path: "/books/handbook/" --- [[serialcomms]] diff --git a/documentation/content/en/books/handbook/usb-device-mode/_index.adoc b/documentation/content/en/books/handbook/usb-device-mode/_index.adoc index 59136ab4d6..11c65d34fb 100644 --- a/documentation/content/en/books/handbook/usb-device-mode/_index.adoc +++ b/documentation/content/en/books/handbook/usb-device-mode/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/dtrace next: books/handbook/partiv description: This chapter covers the use of USB Device Mode and USB On The Go (USB OTG) in FreeBSD tags: ["OTG", "USB"] +showBookMenu: true +weight: 30 +path: "/books/handbook/" --- [[usb-device-mode]] diff --git a/documentation/content/en/books/handbook/virtualization/_index.adoc b/documentation/content/en/books/handbook/virtualization/_index.adoc index c1838cd0cb..dcd0f54ff6 100644 --- a/documentation/content/en/books/handbook/virtualization/_index.adoc +++ b/documentation/content/en/books/handbook/virtualization/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/filesystems next: books/handbook/l10n description: Virtualization software allows multiple operating systems to run simultaneously on the same computer tags: ["virtualization", "Parallels", "VMware", "VirtualBox", "bhyve", "XEN"] +showBookMenu: true +weight: 26 +path: "/books/handbook/" --- [[virtualization]] diff --git a/documentation/content/en/books/handbook/wine/_index.adoc b/documentation/content/en/books/handbook/wine/_index.adoc index d20e5cfc6b..1dd20c0c35 100644 --- a/documentation/content/en/books/handbook/wine/_index.adoc +++ b/documentation/content/en/books/handbook/wine/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/linuxemu next: books/handbook/partiii description: This chapter will describe how to install WINE on a FreeBSD system and how to configure WINE tags: ["WINE", "emulation", "guide", "tutorial"] +showBookMenu: true +weight: 14 +path: "/books/handbook/" --- [[wine]] diff --git a/documentation/content/en/books/handbook/x11/_index.adoc b/documentation/content/en/books/handbook/x11/_index.adoc index 95f74f66cc..5f1bc5517c 100644 --- a/documentation/content/en/books/handbook/x11/_index.adoc +++ b/documentation/content/en/books/handbook/x11/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/ports next: books/handbook/partii description: This chapter describes how to install and configure Xorg on FreeBSD, which provides the open source X Window System used to provide a graphical environment tags: ["X11", "Xorg", "TrueType", "DE", "KDE", "Plasma", "Xfce", "Gnome", "XDM", "SDDM", "GDM", "KMS", "Intel", "AMD", "NVIDIA", "Anti-Aliased"] +showBookMenu: true +weight: 7 +path: "/books/handbook/" --- [[x11]] diff --git a/documentation/content/en/books/handbook/zfs/_index.adoc b/documentation/content/en/books/handbook/zfs/_index.adoc index 53912116f8..3f9a2a457d 100644 --- a/documentation/content/en/books/handbook/zfs/_index.adoc +++ b/documentation/content/en/books/handbook/zfs/_index.adoc @@ -5,6 +5,9 @@ prev: books/handbook/geom next: books/handbook/filesystems description: ZFS is an advanced file system designed to solve major problems found in previous storage subsystem software tags: ["ZFS", "filesystem", "administration", "zpool", "features", "terminology", "RAID-Z"] +showBookMenu: true +weight: 24 +path: "/books/handbook/" --- [[zfs]] diff --git a/documentation/content/en/books/porters-handbook/_index.adoc b/documentation/content/en/books/porters-handbook/_index.adoc index 0331ca48d2..48338f9c5f 100644 --- a/documentation/content/en/books/porters-handbook/_index.adoc +++ b/documentation/content/en/books/porters-handbook/_index.adoc @@ -6,10 +6,12 @@ copyright: 2000-2021 The FreeBSD Documentation Project description: Essential reading if you plan on providing a port of a third party piece of software trademarks: ["freebsd", "sun", "unix", "general"] next: books/porters-handbook/porting-why -weight: 15 tags: ["FreeBSD Porter's Handbook", "Porting", "FreeBSD Ports Collection"] add_single_page_link: true -isIndex: true +showBookMenu: true +weight: 0 +path: "/books/porters-handbook/" +bookOrder: 15 --- = FreeBSD Porter's Handbook @@ -33,19 +35,14 @@ include::shared/attributes/attributes-{{% lang %}}.adoc[] include::shared/{{% lang %}}/teams.adoc[] include::shared/{{% lang %}}/mailing-lists.adoc[] include::shared/{{% lang %}}/urls.adoc[] -:chapters-path: content/{{% lang %}}/books/porters-handbook/ endif::[] ifdef::backend-pdf,backend-epub3[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] endif::[] ifndef::env-beastie[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] ''' - -include::{chapters-path}toc.adoc[] diff --git a/documentation/content/en/books/porters-handbook/book.adoc b/documentation/content/en/books/porters-handbook/book.adoc index 15cf1e9af8..4a52500ca8 100644 --- a/documentation/content/en/books/porters-handbook/book.adoc +++ b/documentation/content/en/books/porters-handbook/book.adoc @@ -48,10 +48,6 @@ endif::[] toc::[] -include::{chapters-path}toc-tables.adoc[] - -include::{chapters-path}toc-examples.adoc[] - include::{chapters-path}porting-why/_index.adoc[leveloffset=+1] include::{chapters-path}new-port/_index.adoc[leveloffset=+1] include::{chapters-path}quick-porting/_index.adoc[leveloffset=+1] diff --git a/documentation/content/en/books/porters-handbook/chapters-order.adoc b/documentation/content/en/books/porters-handbook/chapters-order.adoc deleted file mode 100644 index 81f5b000cb..0000000000 --- a/documentation/content/en/books/porters-handbook/chapters-order.adoc +++ /dev/null @@ -1,18 +0,0 @@ -porting-why/_index.adoc -new-port/_index.adoc -quick-porting/_index.adoc -slow-porting/_index.adoc -makefiles/_index.adoc -special/_index.adoc -flavors/_index.adoc -plist/_index.adoc -pkg-files/_index.adoc -testing/_index.adoc -upgrading/_index.adoc -security/_index.adoc -porting-dads/_index.adoc -porting-samplem/_index.adoc -order/_index.adoc -keeping-up/_index.adoc -uses/_index.adoc -versions/_index.adoc diff --git a/documentation/content/en/books/porters-handbook/flavors/_index.adoc b/documentation/content/en/books/porters-handbook/flavors/_index.adoc index 06c0a73d82..46bace6d07 100644 --- a/documentation/content/en/books/porters-handbook/flavors/_index.adoc +++ b/documentation/content/en/books/porters-handbook/flavors/_index.adoc @@ -4,6 +4,9 @@ prev: books/porters-handbook/special next: books/porters-handbook/plist description: Flavors are a way to have multiple variations of a port tags: ["Ports", "Flavors", "introduction", "how-to", "guide"] +showBookMenu: true +weight: 7 +path: "/books/porters-handbook/" --- [[flavors]] diff --git a/documentation/content/en/books/porters-handbook/keeping-up/_index.adoc b/documentation/content/en/books/porters-handbook/keeping-up/_index.adoc index 195910b56e..2a8cf3e639 100644 --- a/documentation/content/en/books/porters-handbook/keeping-up/_index.adoc +++ b/documentation/content/en/books/porters-handbook/keeping-up/_index.adoc @@ -4,6 +4,9 @@ prev: books/porters-handbook/order next: books/porters-handbook/uses description: How to keep up the FreeBSD Ports Collection tags: ["keeping up", "ports", "updating", "FreshPorts"] +showBookMenu: true +weight: 16 +path: "/books/porters-handbook/" --- [[keeping-up]] diff --git a/documentation/content/en/books/porters-handbook/makefiles/_index.adoc b/documentation/content/en/books/porters-handbook/makefiles/_index.adoc index fbc0f6cd7b..5d2f4cd1b7 100644 --- a/documentation/content/en/books/porters-handbook/makefiles/_index.adoc +++ b/documentation/content/en/books/porters-handbook/makefiles/_index.adoc @@ -4,6 +4,9 @@ prev: books/porters-handbook/slow-porting next: books/porters-handbook/special description: Configuring the Makefile for FreeBSD Ports tags: ["makefiles", "configuring", "naming", "versions"] +showBookMenu: true +weight: 5 +path: "/books/porters-handbook/" --- [[makefiles]] diff --git a/documentation/content/en/books/porters-handbook/new-port/_index.adoc b/documentation/content/en/books/porters-handbook/new-port/_index.adoc index aa71b6541f..d693b85e24 100644 --- a/documentation/content/en/books/porters-handbook/new-port/_index.adoc +++ b/documentation/content/en/books/porters-handbook/new-port/_index.adoc @@ -4,6 +4,9 @@ prev: books/porters-handbook/porting-why next: books/porters-handbook/quick-porting description: How to make a new FreeBSD Port tags: ["new port", "upgrading", "guidelines", "ports"] +showBookMenu: true +weight: 2 +path: "/books/porters-handbook/" --- [[own-port]] diff --git a/documentation/content/en/books/porters-handbook/order/_index.adoc b/documentation/content/en/books/porters-handbook/order/_index.adoc index 89aa459d19..4c362669cf 100644 --- a/documentation/content/en/books/porters-handbook/order/_index.adoc +++ b/documentation/content/en/books/porters-handbook/order/_index.adoc @@ -4,6 +4,9 @@ prev: books/porters-handbook/porting-samplem next: books/porters-handbook/keeping-up description: Order of Variables in FreeBSD Port Makefiles tags: ["order", "PORTNAME", "PATCHFILES", "MAINTAINER", "LICENSE", "dependencies", "USES"] +showBookMenu: true +weight: 15 +path: "/books/porters-handbook/" --- [[porting-order]] diff --git a/documentation/content/en/books/porters-handbook/pkg-files/_index.adoc b/documentation/content/en/books/porters-handbook/pkg-files/_index.adoc index bd4b1bbf97..969e0b9f43 100644 --- a/documentation/content/en/books/porters-handbook/pkg-files/_index.adoc +++ b/documentation/content/en/books/porters-handbook/pkg-files/_index.adoc @@ -4,6 +4,9 @@ prev: books/porters-handbook/plist next: books/porters-handbook/testing description: Tricks about the pkg-* files tags: ["pkg", "pkg-message", "UCL", "pkg-install", "pkg-deinstall"] +showBookMenu: true +weight: 9 +path: "/books/porters-handbook/" --- [[pkg-files]] diff --git a/documentation/content/en/books/porters-handbook/plist/_index.adoc b/documentation/content/en/books/porters-handbook/plist/_index.adoc index 4aa8bc80a5..7ee24afc97 100644 --- a/documentation/content/en/books/porters-handbook/plist/_index.adoc +++ b/documentation/content/en/books/porters-handbook/plist/_index.adoc @@ -4,6 +4,9 @@ prev: books/porters-handbook/flavors next: books/porters-handbook/pkg-files description: Advanced pkg-plist Practices tags: ["pkg-plist", "practices", "configuration"] +showBookMenu: true +weight: 8 +path: "/books/porters-handbook/" --- [[plist]] diff --git a/documentation/content/en/books/porters-handbook/porting-dads/_index.adoc b/documentation/content/en/books/porters-handbook/porting-dads/_index.adoc index 6d1bc0c076..9693c0ca93 100644 --- a/documentation/content/en/books/porters-handbook/porting-dads/_index.adoc +++ b/documentation/content/en/books/porters-handbook/porting-dads/_index.adoc @@ -4,6 +4,9 @@ prev: books/porters-handbook/security next: books/porters-handbook/porting-samplem description: A list of common dos and don'ts that are encountered during the FreeBSD porting process tags: ["dos", "don'ts", "porting", "ports", "guide"] +showBookMenu: true +weight: 13 +path: "/books/porters-handbook/" --- [[porting-dads]] diff --git a/documentation/content/en/books/porters-handbook/porting-samplem/_index.adoc b/documentation/content/en/books/porters-handbook/porting-samplem/_index.adoc index cddfbe3600..2a247922c2 100644 --- a/documentation/content/en/books/porters-handbook/porting-samplem/_index.adoc +++ b/documentation/content/en/books/porters-handbook/porting-samplem/_index.adoc @@ -4,6 +4,9 @@ prev: books/porters-handbook/porting-dads next: books/porters-handbook/order description: A sample Makefile that can be used to create a new FreeBSD Port tags: ["sample", "makefile"] +showBookMenu: true +weight: 14 +path: "/books/porters-handbook/" --- [[porting-samplem]] diff --git a/documentation/content/en/books/porters-handbook/porting-why/_index.adoc b/documentation/content/en/books/porters-handbook/porting-why/_index.adoc index 82e815ddf2..92773d6fc6 100644 --- a/documentation/content/en/books/porters-handbook/porting-why/_index.adoc +++ b/documentation/content/en/books/porters-handbook/porting-why/_index.adoc @@ -4,6 +4,9 @@ prev: books/porters-handbook next: books/porters-handbook/new-port description: Why port a program to the FreeBSD Ports Collection tags: ["ports", "why porting"] +showBookMenu: true +weight: 1 +path: "/books/porters-handbook/" --- [[why-port]] diff --git a/documentation/content/en/books/porters-handbook/quick-porting/_index.adoc b/documentation/content/en/books/porters-handbook/quick-porting/_index.adoc index bc3786c42f..0f0f639c00 100644 --- a/documentation/content/en/books/porters-handbook/quick-porting/_index.adoc +++ b/documentation/content/en/books/porters-handbook/quick-porting/_index.adoc @@ -4,6 +4,9 @@ prev: books/porters-handbook/new-port next: books/porters-handbook/slow-porting description: How to quickly create a new FreeBSD Port tags: ["quick porting", "guide", "port", "ports collection", "how-to"] +showBookMenu: true +weight: 3 +path: "/books/porters-handbook/" --- [[quick-porting]] diff --git a/documentation/content/en/books/porters-handbook/security/_index.adoc b/documentation/content/en/books/porters-handbook/security/_index.adoc index 37dd35dfa4..ac663489ae 100644 --- a/documentation/content/en/books/porters-handbook/security/_index.adoc +++ b/documentation/content/en/books/porters-handbook/security/_index.adoc @@ -4,6 +4,9 @@ prev: books/porters-handbook/upgrading next: books/porters-handbook/porting-dads description: Security instructions when making a FreeBSD Port tags: ["security", "porting", "ports", "VuXML"] +showBookMenu: true +weight: 12 +path: "/books/porters-handbook/" --- [[security]] diff --git a/documentation/content/en/books/porters-handbook/slow-porting/_index.adoc b/documentation/content/en/books/porters-handbook/slow-porting/_index.adoc index 2f579815b4..7b5005f274 100644 --- a/documentation/content/en/books/porters-handbook/slow-porting/_index.adoc +++ b/documentation/content/en/books/porters-handbook/slow-porting/_index.adoc @@ -4,6 +4,9 @@ prev: books/porters-handbook/quick-porting next: books/porters-handbook/makefiles description: Description about creating a FreeBSD Port when the program need some modifications tags: ["porting", "ports", "slow porting", "guide"] +showBookMenu: true +weight: 4 +path: "/books/porters-handbook/" --- [[slow-porting]] diff --git a/documentation/content/en/books/porters-handbook/special/_index.adoc b/documentation/content/en/books/porters-handbook/special/_index.adoc index 3766f55be2..a7ad7f9aad 100644 --- a/documentation/content/en/books/porters-handbook/special/_index.adoc +++ b/documentation/content/en/books/porters-handbook/special/_index.adoc @@ -4,6 +4,9 @@ prev: books/porters-handbook/makefiles next: books/porters-handbook/flavors description: Special considerations when creating a new FreeBSD Port tags: ["special considerations", "Handling Symbolic Links", "Bundled Libraries"] +showBookMenu: true +weight: 6 +path: "/books/porters-handbook/" --- [[special]] diff --git a/documentation/content/en/books/porters-handbook/testing/_index.adoc b/documentation/content/en/books/porters-handbook/testing/_index.adoc index bd0cb0de52..c32e4205ac 100644 --- a/documentation/content/en/books/porters-handbook/testing/_index.adoc +++ b/documentation/content/en/books/porters-handbook/testing/_index.adoc @@ -4,6 +4,9 @@ prev: books/porters-handbook/pkg-files next: books/porters-handbook/upgrading description: Testing a FreeBSD Port tags: ["testing", "port", "Portclippy", "Portfmt", "Portlint", "Poudriere", "sets"] +showBookMenu: true +weight: 10 +path: "/books/porters-handbook/" --- [[testing]] diff --git a/documentation/content/en/books/porters-handbook/upgrading/_index.adoc b/documentation/content/en/books/porters-handbook/upgrading/_index.adoc index 9dfb199496..e420cb5b6b 100644 --- a/documentation/content/en/books/porters-handbook/upgrading/_index.adoc +++ b/documentation/content/en/books/porters-handbook/upgrading/_index.adoc @@ -4,6 +4,9 @@ prev: books/porters-handbook/testing next: books/porters-handbook/security description: Upgrading a FreeBSD Port tags: ["upgrading", "port", "git"] +showBookMenu: true +weight: 11 +path: "/books/porters-handbook/" --- [[port-upgrading]] diff --git a/documentation/content/en/books/porters-handbook/uses/_index.adoc b/documentation/content/en/books/porters-handbook/uses/_index.adoc index 977838f1f3..2caf6d71e8 100644 --- a/documentation/content/en/books/porters-handbook/uses/_index.adoc +++ b/documentation/content/en/books/porters-handbook/uses/_index.adoc @@ -4,6 +4,9 @@ prev: books/porters-handbook/keeping-up next: books/porters-handbook/versions description: USES macros make it easy to declare requirements and settings for a FreeBSD Port tags: ["uses", "macros", "introduction", "guide"] +showBookMenu: true +weight: 17 +path: "/books/porters-handbook/" --- [[uses]] diff --git a/documentation/content/en/books/porters-handbook/versions/_index.adoc b/documentation/content/en/books/porters-handbook/versions/_index.adoc index 83209563c5..3ec6e54eb4 100644 --- a/documentation/content/en/books/porters-handbook/versions/_index.adoc +++ b/documentation/content/en/books/porters-handbook/versions/_index.adoc @@ -3,6 +3,9 @@ title: Chapter 18. __FreeBSD_version Values prev: books/porters-handbook/uses description: A list of changes into the sys/param.h file tags: ["FreeBSD versions"] +showBookMenu: true +weight: 18 +path: "/books/porters-handbook/" --- [[versions]] diff --git a/documentation/content/en/languages.adoc b/documentation/content/en/languages.adoc new file mode 100644 index 0000000000..afb237f82d --- /dev/null +++ b/documentation/content/en/languages.adoc @@ -0,0 +1,6 @@ +--- +title: Languages +layout: languages +--- + += Languages diff --git a/documentation/content/es/articles/_index.adoc b/documentation/content/es/articles/_index.adoc index a245ae3d26..de739232b6 100644 --- a/documentation/content/es/articles/_index.adoc +++ b/documentation/content/es/articles/_index.adoc @@ -1,5 +1,6 @@ --- title: Articles +layout: total-list --- = Articles diff --git a/documentation/content/es/books/_index.adoc b/documentation/content/es/books/_index.adoc index 17572a88c5..89516d974e 100644 --- a/documentation/content/es/books/_index.adoc +++ b/documentation/content/es/books/_index.adoc @@ -1,5 +1,6 @@ --- title: Books +layout: total-list --- = Books diff --git a/documentation/content/es/books/books.adoc b/documentation/content/es/books/books.adoc deleted file mode 100644 index b1752c2f04..0000000000 --- a/documentation/content/es/books/books.adoc +++ /dev/null @@ -1,2 +0,0 @@ -handbook -faq diff --git a/documentation/content/es/books/faq/chapters-order.adoc b/documentation/content/es/books/faq/chapters-order.adoc deleted file mode 100644 index bb86b134ce..0000000000 --- a/documentation/content/es/books/faq/chapters-order.adoc +++ /dev/null @@ -1 +0,0 @@ -_index.adoc diff --git a/documentation/content/es/books/handbook/_index.adoc b/documentation/content/es/books/handbook/_index.adoc index d6ba6671f2..b5a62c3ae1 100644 --- a/documentation/content/es/books/handbook/_index.adoc +++ b/documentation/content/es/books/handbook/_index.adoc @@ -5,7 +5,9 @@ authors: copyright: 1995-2020 Proyecto de Documentación de FreeBSD trademarks: ["freebsd", "ibm", "ieee", "redhat", "3com", "adobe", "apple", "intel", "linux", "microsoft", "opengroup", "sun", "realnetworks", "oracle", "3ware", "arm", "adaptec", "google", "heidelberger", "intuit", "lsilogic", "themathworks", "thomson", "vmware", "wolframresearch", "xiph", "xfree86", "general"] next: books/handbook/preface -isIndex: true +showBookMenu: true +weight: 0 +path: "/books/handbook/" --- = Manual de FreeBSD @@ -29,16 +31,13 @@ include::shared/attributes/attributes-{{% lang %}}.adoc[] include::shared/{{% lang %}}/teams.adoc[] include::shared/{{% lang %}}/mailing-lists.adoc[] include::shared/{{% lang %}}/urls.adoc[] -:chapters-path: content/{{% lang %}}/books/handbook/ endif::[] ifdef::backend-pdf,backend-epub3[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] endif::[] ifndef::env-beastie[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] @@ -48,11 +47,3 @@ Resumen ¡Bienvenido a FreeBSD! Este manual cubre la instalación y uso diario de _FreeBSD {rel121-current}-RELEASE_ and _FreeBSD {rel114-current}-RELEASE_. Este manual está en _constante evolución_ y es el resultado del trabajo de muchas personas. Algunas secciones no están completas y otras necesitan ser actualizadas. Si está interesado en colaborar en este proyecto envíe un mensaje de correo electrónico a {freebsd-doc}. La última versión de este documento está siempre disponible en el http://www.FreeBSD.org[ sitio web de FreeBSD]. También puede encontrarla en diferentes formatos y opciones de compresión en el link:ftp://ftp.FreeBSD.org/pub/FreeBSD/doc/[servidor FTP de FreeBSD] o en las numerosas crossref:mirrors[mirrors-ftp,réplicas]. Si prefiere una copia en papel de este manual puede comprarla en http://www.freebsdmall.com/[FreeBSD Mall]. También es posible link:https://www.FreeBSD.org/search/[hacer búsquedas] en este manual. ''' - -include::{chapters-path}toc.adoc[] - -include::{chapters-path}toc-figures.adoc[] - -include::{chapters-path}toc-tables.adoc[] - -include::{chapters-path}toc-examples.adoc[] diff --git a/documentation/content/es/books/handbook/advanced-networking/_index.adoc b/documentation/content/es/books/handbook/advanced-networking/_index.adoc index f4c60fb6da..361443e8b4 100644 --- a/documentation/content/es/books/handbook/advanced-networking/_index.adoc +++ b/documentation/content/es/books/handbook/advanced-networking/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 29. Networking avanzado part: Parte IV. Comunicaciones en red prev: books/handbook/network-servers next: books/handbook/partv +showBookMenu: true +weight: 34 +path: "/books/handbook/" --- [[advanced-networking]] diff --git a/documentation/content/es/books/handbook/audit/_index.adoc b/documentation/content/es/books/handbook/audit/_index.adoc index 957251daaa..436c066913 100644 --- a/documentation/content/es/books/handbook/audit/_index.adoc +++ b/documentation/content/es/books/handbook/audit/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 17. Auditoría de eventos de seguridad part: Parte III. Administración del sistema prev: books/handbook/mac next: books/handbook/disks +showBookMenu: true +weight: 21 +path: "/books/handbook/" --- [[audit]] diff --git a/documentation/content/es/books/handbook/basics/_index.adoc b/documentation/content/es/books/handbook/basics/_index.adoc index e53ee436af..5b9082a604 100644 --- a/documentation/content/es/books/handbook/basics/_index.adoc +++ b/documentation/content/es/books/handbook/basics/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 3. Conceptos básicos de Unix part: Parte I. Primeros pasos prev: books/handbook/install next: books/handbook/ports +showBookMenu: true +weight: 5 +path: "/books/handbook/" --- [[basics]] diff --git a/documentation/content/es/books/handbook/bibliography/_index.adoc b/documentation/content/es/books/handbook/bibliography/_index.adoc index 604f0e2c50..61fe4a2511 100644 --- a/documentation/content/es/books/handbook/bibliography/_index.adoc +++ b/documentation/content/es/books/handbook/bibliography/_index.adoc @@ -3,6 +3,9 @@ title: Apéndice B. Bibliografía part: Parte V. Apéndices prev: books/handbook/mirrors next: books/handbook/eresources +showBookMenu: true +weight: 37 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/es/books/handbook/book.adoc b/documentation/content/es/books/handbook/book.adoc index b73958407e..dfc9619adb 100644 --- a/documentation/content/es/books/handbook/book.adoc +++ b/documentation/content/es/books/handbook/book.adoc @@ -59,7 +59,7 @@ include::{chapters-path}preface/_index.adoc[leveloffset=+1] :sectnums: // Section one -include::{chapters-path}parti.adoc[lines=15..26] +include::{chapters-path}parti.adoc[] include::{chapters-path}introduction/_index.adoc[leveloffset=+1] @@ -72,7 +72,7 @@ include::{chapters-path}ports/_index.adoc[leveloffset=+1] include::{chapters-path}x11/_index.adoc[leveloffset=+1] // Section two -include::{chapters-path}partii.adoc[lines=15..26] +include::{chapters-path}partii.adoc[] include::{chapters-path}desktop/_index.adoc[leveloffset=+1] @@ -85,7 +85,7 @@ include::{chapters-path}printing/_index.adoc[leveloffset=+1] include::{chapters-path}linuxemu/_index.adoc[leveloffset=+1] // Section three -include::{chapters-path}partiii.adoc[lines=15..20] +include::{chapters-path}partiii.adoc[] include::{chapters-path}config/_index.adoc[leveloffset=+1] @@ -114,7 +114,7 @@ include::{chapters-path}l10n/_index.adoc[leveloffset=+1] include::{chapters-path}cutting-edge/_index.adoc[leveloffset=+1] // Section four -include::{chapters-path}partiv.adoc[lines=15..26] +include::{chapters-path}partiv.adoc[] include::{chapters-path}serialcomms/_index.adoc[leveloffset=+1] @@ -129,7 +129,7 @@ include::{chapters-path}firewalls/_index.adoc[leveloffset=+1] include::{chapters-path}advanced-networking/_index.adoc[leveloffset=+1] // Section five -include::{chapters-path}partv.adoc[lines=15..16] +include::{chapters-path}partv.adoc[] :sectnums!: diff --git a/documentation/content/es/books/handbook/boot/_index.adoc b/documentation/content/es/books/handbook/boot/_index.adoc index 81c2ae45d6..088257bd75 100644 --- a/documentation/content/es/books/handbook/boot/_index.adoc +++ b/documentation/content/es/books/handbook/boot/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 12. El proceso de arranque en FreeBSD part: Parte III. Administración del sistema prev: books/handbook/config next: books/handbook/users +showBookMenu: true +weight: 16 +path: "/books/handbook/" --- [[boot]] diff --git a/documentation/content/es/books/handbook/chapters-order.adoc b/documentation/content/es/books/handbook/chapters-order.adoc deleted file mode 100644 index dcfae1f943..0000000000 --- a/documentation/content/es/books/handbook/chapters-order.adoc +++ /dev/null @@ -1,39 +0,0 @@ -preface/_index.adoc -parti.adoc -introduction/_index.adoc -install/_index.adoc -basics/_index.adoc -ports/_index.adoc -x11/_index.adoc -partii.adoc -desktop/_index.adoc -multimedia/_index.adoc -kernelconfig/_index.adoc -printing/_index.adoc -linuxemu/_index.adoc -partiii.adoc -config/_index.adoc -boot/_index.adoc -users/_index.adoc -security/_index.adoc -jails/_index.adoc -mac/_index.adoc -audit/_index.adoc -disks/_index.adoc -geom/_index.adoc -vinum/_index.adoc -virtualization/_index.adoc -l10n/_index.adoc -cutting-edge/_index.adoc -partiv.adoc -serialcomms/_index.adoc -ppp-and-slip/_index.adoc -firewalls/_index.adoc -mail/_index.adoc -network-servers/_index.adoc -advanced-networking/_index.adoc -partv.adoc -mirrors/_index.adoc -bibliography/_index.adoc -eresources/_index.adoc -pgpkeys/_index.adoc diff --git a/documentation/content/es/books/handbook/config/_index.adoc b/documentation/content/es/books/handbook/config/_index.adoc index c58d0e8cd9..18a6474ece 100644 --- a/documentation/content/es/books/handbook/config/_index.adoc +++ b/documentation/content/es/books/handbook/config/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 11. Configuración y Adaptación del Sistema part: Parte III. Administración del sistema prev: books/handbook/partiii next: books/handbook/boot +showBookMenu: true +weight: 15 +path: "/books/handbook/" --- [[config-tuning]] diff --git a/documentation/content/es/books/handbook/cutting-edge/_index.adoc b/documentation/content/es/books/handbook/cutting-edge/_index.adoc index 51c285eb90..269a7e08a8 100644 --- a/documentation/content/es/books/handbook/cutting-edge/_index.adoc +++ b/documentation/content/es/books/handbook/cutting-edge/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 23. Lo último de lo último part: Parte III. Administración del sistema prev: books/handbook/l10n next: books/handbook/partiv +showBookMenu: true +weight: 27 +path: "/books/handbook/" --- [[updating-upgrading]] diff --git a/documentation/content/es/books/handbook/desktop/_index.adoc b/documentation/content/es/books/handbook/desktop/_index.adoc index 3f4b7f4cc6..173e08e2b1 100644 --- a/documentation/content/es/books/handbook/desktop/_index.adoc +++ b/documentation/content/es/books/handbook/desktop/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 6. Aplicaciones de escritorio part: Parte II. Tareas comunes prev: books/handbook/partii next: books/handbook/multimedia +showBookMenu: true +weight: 9 +path: "/books/handbook/" --- [[desktop]] diff --git a/documentation/content/es/books/handbook/disks/_index.adoc b/documentation/content/es/books/handbook/disks/_index.adoc index 3541af2fc0..42b52bc402 100644 --- a/documentation/content/es/books/handbook/disks/_index.adoc +++ b/documentation/content/es/books/handbook/disks/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 18. Almacenamiento part: Parte III. Administración del sistema prev: books/handbook/audit next: books/handbook/geom +showBookMenu: true +weight: 22 +path: "/books/handbook/" --- [[disks]] diff --git a/documentation/content/es/books/handbook/eresources/_index.adoc b/documentation/content/es/books/handbook/eresources/_index.adoc index 0ca771a098..a540545c71 100644 --- a/documentation/content/es/books/handbook/eresources/_index.adoc +++ b/documentation/content/es/books/handbook/eresources/_index.adoc @@ -3,6 +3,9 @@ title: Apéndices C. Recursos en Internet part: Parte V. Apéndices prev: books/handbook/bibliography next: books/handbook/pgpkeys +showBookMenu: true +weight: 38 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/es/books/handbook/firewalls/_index.adoc b/documentation/content/es/books/handbook/firewalls/_index.adoc index 0240074937..a3bc6ba734 100644 --- a/documentation/content/es/books/handbook/firewalls/_index.adoc +++ b/documentation/content/es/books/handbook/firewalls/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 26. Cortafuegos part: Parte IV. Comunicaciones en red prev: books/handbook/ppp-and-slip next: books/handbook/mail +showBookMenu: true +weight: 31 +path: "/books/handbook/" --- [[firewalls]] diff --git a/documentation/content/es/books/handbook/geom/_index.adoc b/documentation/content/es/books/handbook/geom/_index.adoc index 248e1675c1..8b9caa3078 100644 --- a/documentation/content/es/books/handbook/geom/_index.adoc +++ b/documentation/content/es/books/handbook/geom/_index.adoc @@ -3,6 +3,9 @@ title: "Capítulo 19. GEOM. Marco de trabajo modular de transformación de disco part: Parte III. Administración del sistema prev: books/handbook/disks next: books/handbook/vinum +showBookMenu: true +weight: 23 +path: "/books/handbook/" --- [[geom]] diff --git a/documentation/content/es/books/handbook/install/_index.adoc b/documentation/content/es/books/handbook/install/_index.adoc index 2afe00631d..ab49032fe4 100644 --- a/documentation/content/es/books/handbook/install/_index.adoc +++ b/documentation/content/es/books/handbook/install/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 2. Instalación de FreeBSD part: Parte I. Primeros pasos prev: books/handbook/introduction next: books/handbook/basics +showBookMenu: true +weight: 4 +path: "/books/handbook/" --- [[bsdinstall]] diff --git a/documentation/content/es/books/handbook/introduction/_index.adoc b/documentation/content/es/books/handbook/introduction/_index.adoc index 5d46b95a6a..3bf180c301 100644 --- a/documentation/content/es/books/handbook/introduction/_index.adoc +++ b/documentation/content/es/books/handbook/introduction/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 1. Introducción part: Parte I. Primeros pasos prev: books/handbook/parti next: books/handbook/install +showBookMenu: true +weight: 3 +path: "/books/handbook/" --- [[introduction]] diff --git a/documentation/content/es/books/handbook/jails/_index.adoc b/documentation/content/es/books/handbook/jails/_index.adoc index 493b8b2388..de4a648073 100644 --- a/documentation/content/es/books/handbook/jails/_index.adoc +++ b/documentation/content/es/books/handbook/jails/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 15. Jaulas part: Parte III. Administración del sistema prev: books/handbook/security next: books/handbook/mac +showBookMenu: true +weight: 19 +path: "/books/handbook/" --- [[jails]] diff --git a/documentation/content/es/books/handbook/kernelconfig/_index.adoc b/documentation/content/es/books/handbook/kernelconfig/_index.adoc index 97ce6c259d..5b9d9e5a4c 100644 --- a/documentation/content/es/books/handbook/kernelconfig/_index.adoc +++ b/documentation/content/es/books/handbook/kernelconfig/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 8. Configuración del kernel de FreeBSD part: Parte II. Tareas comunes prev: books/handbook/multimedia next: books/handbook/printing +showBookMenu: true +weight: 11 +path: "/books/handbook/" --- [[kernelconfig]] diff --git a/documentation/content/es/books/handbook/l10n/_index.adoc b/documentation/content/es/books/handbook/l10n/_index.adoc index 66d0b1386e..1aead7da39 100644 --- a/documentation/content/es/books/handbook/l10n/_index.adoc +++ b/documentation/content/es/books/handbook/l10n/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 22. Localización - Uso y configuración de I18N/L10N part: Parte III. Administración del sistema prev: books/handbook/virtualization next: books/handbook/cutting-edge +showBookMenu: true +weight: 26 +path: "/books/handbook/" --- [[l10n]] diff --git a/documentation/content/es/books/handbook/linuxemu/_index.adoc b/documentation/content/es/books/handbook/linuxemu/_index.adoc index 12178648b4..242b48c365 100644 --- a/documentation/content/es/books/handbook/linuxemu/_index.adoc +++ b/documentation/content/es/books/handbook/linuxemu/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 10. Compatibilidad binaria con Linux part: Parte II. Tareas comunes prev: books/handbook/printing next: books/handbook/partiii +showBookMenu: true +weight: 13 +path: "/books/handbook/" --- [[linuxemu]] diff --git a/documentation/content/es/books/handbook/mac/_index.adoc b/documentation/content/es/books/handbook/mac/_index.adoc index b0db5af889..bafb62a01e 100644 --- a/documentation/content/es/books/handbook/mac/_index.adoc +++ b/documentation/content/es/books/handbook/mac/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 16. Mandatory Access Control part: Parte III. Administración del sistema prev: books/handbook/jails next: books/handbook/audit +showBookMenu: true +weight: 20 +path: "/books/handbook/" --- [[mac]] diff --git a/documentation/content/es/books/handbook/mail/_index.adoc b/documentation/content/es/books/handbook/mail/_index.adoc index 6ab186ea91..de82abfb8d 100644 --- a/documentation/content/es/books/handbook/mail/_index.adoc +++ b/documentation/content/es/books/handbook/mail/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 27. Correo Electrónico part: Parte IV. Comunicaciones en red prev: books/handbook/firewalls next: books/handbook/network-servers +showBookMenu: true +weight: 32 +path: "/books/handbook/" --- [[mail]] diff --git a/documentation/content/es/books/handbook/mirrors/_index.adoc b/documentation/content/es/books/handbook/mirrors/_index.adoc index 35f5959d58..fb537896f4 100644 --- a/documentation/content/es/books/handbook/mirrors/_index.adoc +++ b/documentation/content/es/books/handbook/mirrors/_index.adoc @@ -3,6 +3,9 @@ title: Apéndice A. Cómo obtener FreeBSD part: Parte V. Apéndices prev: books/handbook/partv next: books/handbook/bibliography +showBookMenu: true +weight: 36 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/es/books/handbook/multimedia/_index.adoc b/documentation/content/es/books/handbook/multimedia/_index.adoc index 19d2b542c3..15ed67f3f0 100644 --- a/documentation/content/es/books/handbook/multimedia/_index.adoc +++ b/documentation/content/es/books/handbook/multimedia/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 7. Multimedia part: Parte II. Tareas comunes prev: books/handbook/desktop next: books/handbook/kernelconfig +showBookMenu: true +weight: 10 +path: "/books/handbook/" --- [[multimedia]] diff --git a/documentation/content/es/books/handbook/network-servers/_index.adoc b/documentation/content/es/books/handbook/network-servers/_index.adoc index 023d4974a9..7280790fe2 100644 --- a/documentation/content/es/books/handbook/network-servers/_index.adoc +++ b/documentation/content/es/books/handbook/network-servers/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 28. Servidores de red part: Parte IV. Comunicaciones en red prev: books/handbook/mail next: books/handbook/advanced-networking +showBookMenu: true +weight: 33 +path: "/books/handbook/" --- [[network-servers]] diff --git a/documentation/content/es/books/handbook/parti.adoc b/documentation/content/es/books/handbook/parti.adoc index 0e6f13763d..7c6258759d 100644 --- a/documentation/content/es/books/handbook/parti.adoc +++ b/documentation/content/es/books/handbook/parti.adoc @@ -2,16 +2,11 @@ title: Parte I. Primeros pasos prev: books/handbook/preface next: books/handbook/introduction +showBookMenu: true +weight: 2 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[getting-started]] = Primeros pasos @@ -24,5 +19,3 @@ Esta parte del manual de FreeBSD es para usuarios y administradores nuevos en Fr * Presentar una introducción al manejo de X Window, el sistema de ventanas de UNIX(R), y detallar cómo configurar un entorno de escritorio más productivo. Se ha intentado minimizar el número de referencias a otras secciones de este documento para evitar el salto entre páginas y facilitar la lectura continuada. - -include::{chapters-path}toc-1.adoc[] diff --git a/documentation/content/es/books/handbook/partii.adoc b/documentation/content/es/books/handbook/partii.adoc index a68130917d..5c061fac75 100644 --- a/documentation/content/es/books/handbook/partii.adoc +++ b/documentation/content/es/books/handbook/partii.adoc @@ -2,16 +2,11 @@ title: Parte II. Tareas comunes prev: books/handbook/x11 next: books/handbook/desktop +showBookMenu: true +weight: 8 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[common-tasks]] = Tareas comunes @@ -24,5 +19,3 @@ Una vez tratados los aspectos más básicos, pasaremos a detallar alguna de las * Cómo ejecutar aplicaciones de Linux(R) en FreeBSD. Algunos de los capítulos recomiendan lecturas de capítulos anteriores, lo que se indica al inicio de cada capítulo. - -include::{chapters-path}toc-2.adoc[] diff --git a/documentation/content/es/books/handbook/partiii.adoc b/documentation/content/es/books/handbook/partiii.adoc index 4711b9921d..e7f2e25d75 100644 --- a/documentation/content/es/books/handbook/partiii.adoc +++ b/documentation/content/es/books/handbook/partiii.adoc @@ -2,21 +2,14 @@ title: Parte III. Administración del sistema prev: books/handbook/linuxemu next: books/handbook/config +showBookMenu: true +weight: 14 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[system-administration]] = Administración del sistema. Los restantes capítulos de este libro cubren todos los aspectos de administración de un sistema FreeBSD. Cada capítulo comienza describiendo lo que será aprendido una vez finalizada la lectura, explicando también los conocimientos mínimos necesarios para una comprensión satisfactoria del texto. Estos capítulos están diseñados para leerse cuando se necesita la información. No es necesario leerlos en un determinado orden ni es necesario leerlos todos antes de comenzar a usar FreeBSD. - -include::{chapters-path}toc-3.adoc[] diff --git a/documentation/content/es/books/handbook/partiv.adoc b/documentation/content/es/books/handbook/partiv.adoc index 8e8cbe38fe..9e75531f30 100644 --- a/documentation/content/es/books/handbook/partiv.adoc +++ b/documentation/content/es/books/handbook/partiv.adoc @@ -2,16 +2,11 @@ title: Parte IV. Comunicaciones en red prev: books/handbook/cutting-edge next: books/handbook/serialcomms +showBookMenu: true +weight: 28 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[network-communication]] = Comunicaciones en red @@ -24,5 +19,3 @@ FreeBSD es uno de los sistemas operativos más utilizados como servidores en red * Otros aspectos avanzados de red Estos capítulos están diseñados para leerse según van haciendo falta. No tienen por qué leerse en un determinado orden, ni tiene por qué leerlos todos antes de poder usar FreeBSD en un entorno de red. - -include::{chapters-path}toc-4.adoc[] diff --git a/documentation/content/es/books/handbook/partv.adoc b/documentation/content/es/books/handbook/partv.adoc index e1ef7ca109..747b114800 100644 --- a/documentation/content/es/books/handbook/partv.adoc +++ b/documentation/content/es/books/handbook/partv.adoc @@ -2,17 +2,10 @@ title: Parte V. Apéndices prev: books/handbook/advanced-networking next: books/handbook/mirrors +showBookMenu: true +weight: 35 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[appendices]] = Apéndices - -include::{chapters-path}toc-5.adoc[] diff --git a/documentation/content/es/books/handbook/pgpkeys/_index.adoc b/documentation/content/es/books/handbook/pgpkeys/_index.adoc index 99d7835571..4b64405ca8 100644 --- a/documentation/content/es/books/handbook/pgpkeys/_index.adoc +++ b/documentation/content/es/books/handbook/pgpkeys/_index.adoc @@ -3,6 +3,9 @@ title: Apéndice D. PGP keys part: Parte V. Apéndices prev: books/handbook/eresources next: books/handbook/freebsd-glossary +showBookMenu: true +weight: 39 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/es/books/handbook/ports/_index.adoc b/documentation/content/es/books/handbook/ports/_index.adoc index ceda5dba93..56d7863dd9 100644 --- a/documentation/content/es/books/handbook/ports/_index.adoc +++ b/documentation/content/es/books/handbook/ports/_index.adoc @@ -3,6 +3,9 @@ title: "Capítulo 4. Instalación de aplicaciones: packages y ports" part: Parte I. Primeros pasos prev: books/handbook/basics next: books/handbook/x11 +showBookMenu: true +weight: 6 +path: "/books/handbook/" --- [[ports]] diff --git a/documentation/content/es/books/handbook/ppp-and-slip/_index.adoc b/documentation/content/es/books/handbook/ppp-and-slip/_index.adoc index 14747ab90c..dbfbc15f6d 100644 --- a/documentation/content/es/books/handbook/ppp-and-slip/_index.adoc +++ b/documentation/content/es/books/handbook/ppp-and-slip/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 25. PPP y SLIP part: Parte IV. Comunicaciones en red prev: books/handbook/serialcomms next: books/handbook/firewalls +showBookMenu: true +weight: 30 +path: "/books/handbook/" --- [[ppp-and-slip]] diff --git a/documentation/content/es/books/handbook/preface/_index.adoc b/documentation/content/es/books/handbook/preface/_index.adoc index 464a5f0171..6947f378d8 100644 --- a/documentation/content/es/books/handbook/preface/_index.adoc +++ b/documentation/content/es/books/handbook/preface/_index.adoc @@ -2,6 +2,9 @@ title: Prefacio prev: books/handbook/ next: books/handbook/parti +showBookMenu: true +weight: 1 +path: "/books/handbook/" --- [preface] diff --git a/documentation/content/es/books/handbook/printing/_index.adoc b/documentation/content/es/books/handbook/printing/_index.adoc index a0a9d6a535..82267ef753 100644 --- a/documentation/content/es/books/handbook/printing/_index.adoc +++ b/documentation/content/es/books/handbook/printing/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 9. Imprimir part: Parte II. Tareas comunes prev: books/handbook/kernelconfig next: books/handbook/linuxemu +showBookMenu: true +weight: 12 +path: "/books/handbook/" --- [[printing]] diff --git a/documentation/content/es/books/handbook/security/_index.adoc b/documentation/content/es/books/handbook/security/_index.adoc index 33c19cccb8..947632348f 100644 --- a/documentation/content/es/books/handbook/security/_index.adoc +++ b/documentation/content/es/books/handbook/security/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 14. Seguridad part: Parte III. Administración del sistema prev: books/handbook/users next: books/handbook/jails +showBookMenu: true +weight: 18 +path: "/books/handbook/" --- [[security]] diff --git a/documentation/content/es/books/handbook/serialcomms/_index.adoc b/documentation/content/es/books/handbook/serialcomms/_index.adoc index 6cd7c1029a..5624bf3b91 100644 --- a/documentation/content/es/books/handbook/serialcomms/_index.adoc +++ b/documentation/content/es/books/handbook/serialcomms/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 24. Comunicaciones serie part: Parte IV. Comunicaciones en red prev: books/handbook/partiv next: books/handbook/ppp-and-slip +showBookMenu: true +weight: 29 +path: "/books/handbook/" --- [[serialcomms]] diff --git a/documentation/content/es/books/handbook/users/_index.adoc b/documentation/content/es/books/handbook/users/_index.adoc index 94a8da206f..810dbb0608 100644 --- a/documentation/content/es/books/handbook/users/_index.adoc +++ b/documentation/content/es/books/handbook/users/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 13. Usuarios y administración básica de cuentas part: Parte III. Administración del sistema prev: books/handbook/boot next: books/handbook/security +showBookMenu: true +weight: 17 +path: "/books/handbook/" --- [[users]] diff --git a/documentation/content/es/books/handbook/vinum/_index.adoc b/documentation/content/es/books/handbook/vinum/_index.adoc index 7c2c1b475a..e76a07ac0a 100644 --- a/documentation/content/es/books/handbook/vinum/_index.adoc +++ b/documentation/content/es/books/handbook/vinum/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 20. El Gestor de Volúmenes Vinum part: Parte III. Administración del sistema prev: books/handbook/geom next: books/handbook/virtualization +showBookMenu: true +weight: 24 +path: "/books/handbook/" --- [[vinum-vinum]] diff --git a/documentation/content/es/books/handbook/virtualization/_index.adoc b/documentation/content/es/books/handbook/virtualization/_index.adoc index 777fbdfdc6..9678c86bd5 100644 --- a/documentation/content/es/books/handbook/virtualization/_index.adoc +++ b/documentation/content/es/books/handbook/virtualization/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 21. Virtualización part: Parte III. Administración del sistema prev: books/handbook/vinum next: books/handbook/l10n +showBookMenu: true +weight: 25 +path: "/books/handbook/" --- [[virtualization]] diff --git a/documentation/content/es/books/handbook/x11/_index.adoc b/documentation/content/es/books/handbook/x11/_index.adoc index d892016d58..357f059aac 100644 --- a/documentation/content/es/books/handbook/x11/_index.adoc +++ b/documentation/content/es/books/handbook/x11/_index.adoc @@ -3,6 +3,9 @@ title: Capítulo 5. El sistema X Window part: Parte I. Primeros pasos prev: books/handbook/ports next: books/handbook/partii +showBookMenu: true +weight: 7 +path: "/books/handbook/" --- [[x11]] diff --git a/documentation/content/es/languages.adoc b/documentation/content/es/languages.adoc new file mode 100644 index 0000000000..afb237f82d --- /dev/null +++ b/documentation/content/es/languages.adoc @@ -0,0 +1,6 @@ +--- +title: Languages +layout: languages +--- + += Languages diff --git a/documentation/content/fr/articles/_index.adoc b/documentation/content/fr/articles/_index.adoc index a245ae3d26..de739232b6 100644 --- a/documentation/content/fr/articles/_index.adoc +++ b/documentation/content/fr/articles/_index.adoc @@ -1,5 +1,6 @@ --- title: Articles +layout: total-list --- = Articles diff --git a/documentation/content/fr/books/_index.adoc b/documentation/content/fr/books/_index.adoc index 17572a88c5..89516d974e 100644 --- a/documentation/content/fr/books/_index.adoc +++ b/documentation/content/fr/books/_index.adoc @@ -1,5 +1,6 @@ --- title: Books +layout: total-list --- = Books diff --git a/documentation/content/fr/books/books.adoc b/documentation/content/fr/books/books.adoc deleted file mode 100644 index ddcc2962fb..0000000000 --- a/documentation/content/fr/books/books.adoc +++ /dev/null @@ -1,3 +0,0 @@ -handbook -developers-handbook -faq diff --git a/documentation/content/fr/books/developers-handbook/chapters-order.adoc b/documentation/content/fr/books/developers-handbook/chapters-order.adoc deleted file mode 100644 index ff451ce752..0000000000 --- a/documentation/content/fr/books/developers-handbook/chapters-order.adoc +++ /dev/null @@ -1,7 +0,0 @@ -tools/chapter.adoc -secure/chapter.adoc -locking/chapter.adoc -driverbasics/chapter.adoc -pci/chapter.adoc -scsi/chapter.adoc -usb/chapter.adoc diff --git a/documentation/content/fr/books/faq/chapters-order.adoc b/documentation/content/fr/books/faq/chapters-order.adoc deleted file mode 100644 index bb86b134ce..0000000000 --- a/documentation/content/fr/books/faq/chapters-order.adoc +++ /dev/null @@ -1 +0,0 @@ -_index.adoc diff --git a/documentation/content/fr/books/handbook/_index.adoc b/documentation/content/fr/books/handbook/_index.adoc index 124f59dfc4..2588c77acc 100644 --- a/documentation/content/fr/books/handbook/_index.adoc +++ b/documentation/content/fr/books/handbook/_index.adoc @@ -3,7 +3,9 @@ title: Manuel FreeBSD authors: trademarks: ["freebsd", "ibm", "ieee", "redhat", "3com", "adobe", "apple", "intel", "linux", "microsoft", "opengroup", "sun", "realnetworks", "oracle", "3ware", "arm", "adaptec", "google", "heidelberger", "intuit", "lsilogic", "themathworks", "thomson", "vmware", "wolframresearch", "xiph", "xfree86", "general"] next: books/handbook/preface -isIndex: true +showBookMenu: true +weight: 0 +path: "/books/handbook/" --- = Manuel FreeBSD @@ -27,16 +29,13 @@ include::shared/attributes/attributes-{{% lang %}}.adoc[] include::shared/{{% lang %}}/teams.adoc[] include::shared/{{% lang %}}/mailing-lists.adoc[] include::shared/{{% lang %}}/urls.adoc[] -:chapters-path: content/{{% lang %}}/books/handbook/ endif::[] ifdef::backend-pdf,backend-epub3[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] endif::[] ifndef::env-beastie[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] @@ -50,11 +49,3 @@ La dernière version anglaise de ce document est disponible sur le https://www.F N.d.T.: Contactez {fonvieille} si vous voulez collaborer à la traduction. ''' - -include::{chapters-path}toc.adoc[] - -include::{chapters-path}toc-figures.adoc[] - -include::{chapters-path}toc-tables.adoc[] - -include::{chapters-path}toc-examples.adoc[] diff --git a/documentation/content/fr/books/handbook/advanced-networking/_index.adoc b/documentation/content/fr/books/handbook/advanced-networking/_index.adoc index 951362ea1a..267f96751c 100644 --- a/documentation/content/fr/books/handbook/advanced-networking/_index.adoc +++ b/documentation/content/fr/books/handbook/advanced-networking/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 32. Administration réseau avancée part: Partie IV. Réseau prev: books/handbook/firewalls next: books/handbook/partv +showBookMenu: true +weight: 37 +path: "/books/handbook/" --- [[advanced-networking]] diff --git a/documentation/content/fr/books/handbook/audit/_index.adoc b/documentation/content/fr/books/handbook/audit/_index.adoc index a7c957f266..02cee30d48 100644 --- a/documentation/content/fr/books/handbook/audit/_index.adoc +++ b/documentation/content/fr/books/handbook/audit/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 17. Audit des événements relatifs à la sécurité du système part: Partie III. Administration Système prev: books/handbook/mac next: books/handbook/disks +showBookMenu: true +weight: 21 +path: "/books/handbook/" --- [[audit]] diff --git a/documentation/content/fr/books/handbook/basics/_index.adoc b/documentation/content/fr/books/handbook/basics/_index.adoc index 2907f7f467..4a8526a51b 100644 --- a/documentation/content/fr/books/handbook/basics/_index.adoc +++ b/documentation/content/fr/books/handbook/basics/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 3. Quelques bases d'UNIX part: Partie I. Pour commencer prev: books/handbook/bsdinstall next: books/handbook/ports +showBookMenu: true +weight: 5 +path: "/books/handbook/" --- [[basics]] diff --git a/documentation/content/fr/books/handbook/bibliography/_index.adoc b/documentation/content/fr/books/handbook/bibliography/_index.adoc index daec1a613c..c45394b330 100644 --- a/documentation/content/fr/books/handbook/bibliography/_index.adoc +++ b/documentation/content/fr/books/handbook/bibliography/_index.adoc @@ -3,6 +3,9 @@ title: Annexe B. Bibliographie part: Partie V. Annexes prev: books/handbook/mirrors next: books/handbook/eresources +showBookMenu: true +weight: 40 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/fr/books/handbook/book.adoc b/documentation/content/fr/books/handbook/book.adoc index 7bd3bf930b..fb2d816b42 100644 --- a/documentation/content/fr/books/handbook/book.adoc +++ b/documentation/content/fr/books/handbook/book.adoc @@ -63,7 +63,7 @@ include::{chapters-path}preface/_index.adoc[leveloffset=+1] :sectnums: // Section one -include::{chapters-path}parti.adoc[lines=15..26] +include::{chapters-path}parti.adoc[] include::{chapters-path}introduction/_index.adoc[leveloffset=+1] @@ -76,7 +76,7 @@ include::{chapters-path}ports/_index.adoc[leveloffset=+1] include::{chapters-path}x11/_index.adoc[leveloffset=+1] // Section two -include::{chapters-path}partii.adoc[lines=15..26] +include::{chapters-path}partii.adoc[] include::{chapters-path}desktop/_index.adoc[leveloffset=+1] @@ -89,7 +89,7 @@ include::{chapters-path}printing/_index.adoc[leveloffset=+1] include::{chapters-path}linuxemu/_index.adoc[leveloffset=+1] // Section three -include::{chapters-path}partiii.adoc[lines=15..20] +include::{chapters-path}partiii.adoc[] include::{chapters-path}config/_index.adoc[leveloffset=+1] @@ -124,7 +124,7 @@ include::{chapters-path}cutting-edge/_index.adoc[leveloffset=+1] include::{chapters-path}dtrace/_index.adoc[leveloffset=+1] // Section four -include::{chapters-path}partiv.adoc[lines=15..27] +include::{chapters-path}partiv.adoc[] include::{chapters-path}serialcomms/_index.adoc[leveloffset=+1] @@ -139,7 +139,7 @@ include::{chapters-path}firewalls/_index.adoc[leveloffset=+1] include::{chapters-path}advanced-networking/_index.adoc[leveloffset=+1] // Section five -include::{chapters-path}partv.adoc[lines=15..16] +include::{chapters-path}partv.adoc[] :sectnums!: diff --git a/documentation/content/fr/books/handbook/boot/_index.adoc b/documentation/content/fr/books/handbook/boot/_index.adoc index 900aaf237b..b5ba9fef37 100644 --- a/documentation/content/fr/books/handbook/boot/_index.adoc +++ b/documentation/content/fr/books/handbook/boot/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 12. Processus de démarrage de FreeBSD part: Partie III. Administration Système prev: books/handbook/config next: books/handbook/users +showBookMenu: true +weight: 16 +path: "/books/handbook/" --- [[boot]] diff --git a/documentation/content/fr/books/handbook/bsdinstall/_index.adoc b/documentation/content/fr/books/handbook/bsdinstall/_index.adoc index dd557c0907..7f11713a14 100644 --- a/documentation/content/fr/books/handbook/bsdinstall/_index.adoc +++ b/documentation/content/fr/books/handbook/bsdinstall/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 2. Installer FreeBSD part: Partie I. Pour commencer prev: books/handbook/introduction next: books/handbook/basics +showBookMenu: true +weight: 4 +path: "/books/handbook/" --- [[bsdinstall]] diff --git a/documentation/content/fr/books/handbook/chapters-order.adoc b/documentation/content/fr/books/handbook/chapters-order.adoc deleted file mode 100644 index 2cf23b2118..0000000000 --- a/documentation/content/fr/books/handbook/chapters-order.adoc +++ /dev/null @@ -1,42 +0,0 @@ -preface/_index.adoc -parti.adoc -introduction/_index.adoc -bsdinstall/_index.adoc -basics/_index.adoc -ports/_index.adoc -x11/_index.adoc -partii.adoc -desktop/_index.adoc -multimedia/_index.adoc -kernelconfig/_index.adoc -printing/_index.adoc -linuxemu/_index.adoc -partiii.adoc -config/_index.adoc -boot/_index.adoc -users/_index.adoc -security/_index.adoc -jails/_index.adoc -mac/_index.adoc -audit/_index.adoc -disks/_index.adoc -geom/_index.adoc -zfs/_index.adoc -filesystems/_index.adoc -vinum/_index.adoc -virtualization/_index.adoc -l10n/_index.adoc -cutting-edge/_index.adoc -dtrace/_index.adoc -partiv.adoc -serialcomms/_index.adoc -ppp-and-slip/_index.adoc -mail/_index.adoc -network-servers/_index.adoc -firewalls/_index.adoc -advanced-networking/_index.adoc -partv.adoc -mirrors/_index.adoc -bibliography/_index.adoc -eresources/_index.adoc -pgpkeys/_index.adoc diff --git a/documentation/content/fr/books/handbook/config/_index.adoc b/documentation/content/fr/books/handbook/config/_index.adoc index 59f0d01245..89f66d41a6 100644 --- a/documentation/content/fr/books/handbook/config/_index.adoc +++ b/documentation/content/fr/books/handbook/config/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 11. Configuration et optimisation part: Partie III. Administration Système prev: books/handbook/partiii next: books/handbook/boot +showBookMenu: true +weight: 15 +path: "/books/handbook/" --- [[config-tuning]] diff --git a/documentation/content/fr/books/handbook/cutting-edge/_index.adoc b/documentation/content/fr/books/handbook/cutting-edge/_index.adoc index 5a36cc1084..fadd46c05b 100644 --- a/documentation/content/fr/books/handbook/cutting-edge/_index.adoc +++ b/documentation/content/fr/books/handbook/cutting-edge/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 25. Mise à jour de FreeBSD part: Partie III. Administration Système prev: books/handbook/l10n next: books/handbook/dtrace +showBookMenu: true +weight: 29 +path: "/books/handbook/" --- [[updating-upgrading]] diff --git a/documentation/content/fr/books/handbook/desktop/_index.adoc b/documentation/content/fr/books/handbook/desktop/_index.adoc index 79cbf42384..08af7d89e1 100644 --- a/documentation/content/fr/books/handbook/desktop/_index.adoc +++ b/documentation/content/fr/books/handbook/desktop/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 6. Bureautique part: Partie II. Tâches courantes prev: books/handbook/partii next: books/handbook/multimedia +showBookMenu: true +weight: 9 +path: "/books/handbook/" --- [[desktop]] diff --git a/documentation/content/fr/books/handbook/disks/_index.adoc b/documentation/content/fr/books/handbook/disks/_index.adoc index 61393e07b9..342af88582 100644 --- a/documentation/content/fr/books/handbook/disks/_index.adoc +++ b/documentation/content/fr/books/handbook/disks/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 18. Stockage des données part: Partie III. Administration Système prev: books/handbook/audit next: books/handbook/geom +showBookMenu: true +weight: 22 +path: "/books/handbook/" --- [[disks]] diff --git a/documentation/content/fr/books/handbook/dtrace/_index.adoc b/documentation/content/fr/books/handbook/dtrace/_index.adoc index a9e6c3d04b..b086357a51 100644 --- a/documentation/content/fr/books/handbook/dtrace/_index.adoc +++ b/documentation/content/fr/books/handbook/dtrace/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 26. DTrace part: Partie III. Administration Système prev: books/handbook/cutting-edge next: books/handbook/partiv +showBookMenu: true +weight: 30 +path: "/books/handbook/" --- [[dtrace]] diff --git a/documentation/content/fr/books/handbook/eresources/_index.adoc b/documentation/content/fr/books/handbook/eresources/_index.adoc index 4a1cbdaebd..012e244dbd 100644 --- a/documentation/content/fr/books/handbook/eresources/_index.adoc +++ b/documentation/content/fr/books/handbook/eresources/_index.adoc @@ -3,6 +3,9 @@ title: Annexe C. Ressources sur Internet part: Partie V. Annexes prev: books/handbook/bibliography next: books/handbook/pgpkeys +showBookMenu: true +weight: 41 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/fr/books/handbook/filesystems/_index.adoc b/documentation/content/fr/books/handbook/filesystems/_index.adoc index ce34e88010..576348e4e8 100644 --- a/documentation/content/fr/books/handbook/filesystems/_index.adoc +++ b/documentation/content/fr/books/handbook/filesystems/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 21. Autres systèmes de fichiers part: Partie III. Administration Système prev: books/handbook/zfs next: books/handbook/vinum +showBookMenu: true +weight: 25 +path: "/books/handbook/" --- [[filesystems]] diff --git a/documentation/content/fr/books/handbook/firewalls/_index.adoc b/documentation/content/fr/books/handbook/firewalls/_index.adoc index acb4d83074..694f3ec36e 100644 --- a/documentation/content/fr/books/handbook/firewalls/_index.adoc +++ b/documentation/content/fr/books/handbook/firewalls/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 31. Firewalls ** Traduction en Cours ** part: Partie IV. Réseau prev: books/handbook/network-servers next: books/handbook/advanced-networking +showBookMenu: true +weight: 36 +path: "/books/handbook/" --- [[firewalls]] diff --git a/documentation/content/fr/books/handbook/geom/_index.adoc b/documentation/content/fr/books/handbook/geom/_index.adoc index a084358728..b9aadaeae0 100644 --- a/documentation/content/fr/books/handbook/geom/_index.adoc +++ b/documentation/content/fr/books/handbook/geom/_index.adoc @@ -3,6 +3,9 @@ title: "Chapitre 19. GEOM: architecture modulaire de gestion des disques" part: Partie III. Administration Système prev: books/handbook/disks next: books/handbook/zfs +showBookMenu: true +weight: 23 +path: "/books/handbook/" --- [[geom]] diff --git a/documentation/content/fr/books/handbook/introduction/_index.adoc b/documentation/content/fr/books/handbook/introduction/_index.adoc index 4cee12363a..37d5d60986 100644 --- a/documentation/content/fr/books/handbook/introduction/_index.adoc +++ b/documentation/content/fr/books/handbook/introduction/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 1. Introduction part: Partie I. Pour commencer prev: books/handbook/parti next: books/handbook/bsdinstall +showBookMenu: true +weight: 3 +path: "/books/handbook/" --- [[introduction]] diff --git a/documentation/content/fr/books/handbook/jails/_index.adoc b/documentation/content/fr/books/handbook/jails/_index.adoc index 5ca283c38e..e3e4819e73 100644 --- a/documentation/content/fr/books/handbook/jails/_index.adoc +++ b/documentation/content/fr/books/handbook/jails/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 15. Environnements jail part: Partie III. Administration Système prev: books/handbook/security next: books/handbook/mac +showBookMenu: true +weight: 19 +path: "/books/handbook/" --- [[jails]] diff --git a/documentation/content/fr/books/handbook/kernelconfig/_index.adoc b/documentation/content/fr/books/handbook/kernelconfig/_index.adoc index f0ef615613..92ad29b555 100644 --- a/documentation/content/fr/books/handbook/kernelconfig/_index.adoc +++ b/documentation/content/fr/books/handbook/kernelconfig/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 8. Configurer le noyau de FreeBSD part: Partie II. Tâches courantes prev: books/handbook/multimedia next: books/handbook/printing +showBookMenu: true +weight: 11 +path: "/books/handbook/" --- [[kernelconfig]] diff --git a/documentation/content/fr/books/handbook/l10n/_index.adoc b/documentation/content/fr/books/handbook/l10n/_index.adoc index 2b74ec7ed1..cb30b63681 100644 --- a/documentation/content/fr/books/handbook/l10n/_index.adoc +++ b/documentation/content/fr/books/handbook/l10n/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 24. Localisation - Utilisation et configuration de l'I18N/L10N part: Partie III. Administration Système prev: books/handbook/virtualization next: books/handbook/cutting-edge +showBookMenu: true +weight: 28 +path: "/books/handbook/" --- [[l10n]] diff --git a/documentation/content/fr/books/handbook/linuxemu/_index.adoc b/documentation/content/fr/books/handbook/linuxemu/_index.adoc index 4aefb9e620..9f615ea14f 100644 --- a/documentation/content/fr/books/handbook/linuxemu/_index.adoc +++ b/documentation/content/fr/books/handbook/linuxemu/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 10. Compatibilité binaire avec Linux® part: Partie II. Tâches courantes prev: books/handbook/printing next: books/handbook/partiii +showBookMenu: true +weight: 13 +path: "/books/handbook/" --- [[linuxemu]] diff --git a/documentation/content/fr/books/handbook/mac/_index.adoc b/documentation/content/fr/books/handbook/mac/_index.adoc index ccdedf1b47..649b885a85 100644 --- a/documentation/content/fr/books/handbook/mac/_index.adoc +++ b/documentation/content/fr/books/handbook/mac/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 16. Mandatory Access Control ** Traduction en Cours ** part: Partie III. Administration Système prev: books/handbook/jails next: books/handbook/audit +showBookMenu: true +weight: 20 +path: "/books/handbook/" --- [[mac]] diff --git a/documentation/content/fr/books/handbook/mail/_index.adoc b/documentation/content/fr/books/handbook/mail/_index.adoc index 0d44823e0a..5cc9fa05a2 100644 --- a/documentation/content/fr/books/handbook/mail/_index.adoc +++ b/documentation/content/fr/books/handbook/mail/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 29. Courrier électronique part: Partie IV. Réseau prev: books/handbook/ppp-and-slip next: books/handbook/network-servers +showBookMenu: true +weight: 34 +path: "/books/handbook/" --- [[mail]] diff --git a/documentation/content/fr/books/handbook/mirrors/_index.adoc b/documentation/content/fr/books/handbook/mirrors/_index.adoc index f9e78d33b9..fe0df41f93 100644 --- a/documentation/content/fr/books/handbook/mirrors/_index.adoc +++ b/documentation/content/fr/books/handbook/mirrors/_index.adoc @@ -3,6 +3,9 @@ title: Annexe A. Se procurer FreeBSD part: Partie V. Annexes prev: books/handbook/partv next: books/handbook/bibliography +showBookMenu: true +weight: 39 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/fr/books/handbook/multimedia/_index.adoc b/documentation/content/fr/books/handbook/multimedia/_index.adoc index 95a4525d3c..52e93aa7f8 100644 --- a/documentation/content/fr/books/handbook/multimedia/_index.adoc +++ b/documentation/content/fr/books/handbook/multimedia/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 7. Multimédia part: Partie II. Tâches courantes prev: books/handbook/desktop next: books/handbook/kernelconfig +showBookMenu: true +weight: 10 +path: "/books/handbook/" --- [[multimedia]] diff --git a/documentation/content/fr/books/handbook/network-servers/_index.adoc b/documentation/content/fr/books/handbook/network-servers/_index.adoc index d9ccaaad71..fd70f9e297 100644 --- a/documentation/content/fr/books/handbook/network-servers/_index.adoc +++ b/documentation/content/fr/books/handbook/network-servers/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 30. Serveurs réseau part: Partie IV. Réseau prev: books/handbook/mail next: books/handbook/firewalls +showBookMenu: true +weight: 35 +path: "/books/handbook/" --- [[network-servers]] diff --git a/documentation/content/fr/books/handbook/parti.adoc b/documentation/content/fr/books/handbook/parti.adoc index a940045c7a..1d14074802 100644 --- a/documentation/content/fr/books/handbook/parti.adoc +++ b/documentation/content/fr/books/handbook/parti.adoc @@ -2,16 +2,11 @@ title: Partie I. Pour commencer prev: books/handbook/preface next: books/handbook/introduction +showBookMenu: true +weight: 2 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[getting-started]] = Pour commencer @@ -24,5 +19,3 @@ Cette partie du Manuel FreeBSD est destinée aux nouveaux venus à FreeBSD, util * Présenteront X, le système de fenêtrage d'UNIX(R), et détailleront comment configurer un environnement de travail qui rendra les utilisateurs plus productifs. Le nombre de références dans le texte a été limité au minimum afin que cette section du Manuel puisse être lue du début jusqu'à la fin avec le moins de changements de pages possibles. - -include::{chapters-path}toc-1.adoc[] diff --git a/documentation/content/fr/books/handbook/partii.adoc b/documentation/content/fr/books/handbook/partii.adoc index f8761c7a7f..a16d2fc121 100644 --- a/documentation/content/fr/books/handbook/partii.adoc +++ b/documentation/content/fr/books/handbook/partii.adoc @@ -2,16 +2,11 @@ title: Partie II. Tâches courantes prev: books/handbook/x11 next: books/handbook/desktop +showBookMenu: true +weight: 8 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[common-tasks]] = Tâches courantes @@ -24,5 +19,3 @@ Maintenant que les bases sont maîtrisées, cette partie du Manuel va traiter de * Montrent comment exécuter des applications Linux sur le système FreeBSD. Certains de ces chapitres conseillent des lectures préalables, ceci est noté dans le synopsis au début de chaque chapitre. - -include::{chapters-path}toc-2.adoc[] diff --git a/documentation/content/fr/books/handbook/partiii.adoc b/documentation/content/fr/books/handbook/partiii.adoc index b93de49f4b..923fd8c6e0 100644 --- a/documentation/content/fr/books/handbook/partiii.adoc +++ b/documentation/content/fr/books/handbook/partiii.adoc @@ -2,21 +2,14 @@ title: Partie III. Administration Système prev: books/handbook/linuxemu next: books/handbook/config +showBookMenu: true +weight: 14 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[system-administration]] = Administration Système Les chapitres restant couvrent tous les aspects de l'administration système de FreeBSD. Chaque chapitre débute en décrivant ce qui sera appris à la lecture du chapitre, et détaille également ce que le lecteur est sensé connaître avant de l'aborder. Ces chapitres sont conçus pour être consultés dès qu'une information est nécessaire. Il n'est pas nécessaire de les lire suivant un ordre particulier, ni tous les lire avant de pouvoir utiliser FreeBSD. - -include::{chapters-path}toc-3.adoc[] diff --git a/documentation/content/fr/books/handbook/partiv.adoc b/documentation/content/fr/books/handbook/partiv.adoc index f81c0a7382..6841970dc8 100644 --- a/documentation/content/fr/books/handbook/partiv.adoc +++ b/documentation/content/fr/books/handbook/partiv.adoc @@ -2,16 +2,11 @@ title: Partie IV. Réseau prev: books/handbook/dtrace next: books/handbook/serialcomms +showBookMenu: true +weight: 31 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[network-communication]] = Réseau @@ -25,5 +20,3 @@ FreeBSD est un des systèmes d'exploitation les plus utilisé pour les serveurs * d'autres sujets réseau avancés Ces chapitres sont destinés à être lus quand une information est nécessaire. Il n'est pas utile de les lire suivant un ordre particulier, ni de tous les lire avant de pouvoir utiliser FreeBSD dans un environnement réseau. - -include::{chapters-path}toc-4.adoc[] diff --git a/documentation/content/fr/books/handbook/partv.adoc b/documentation/content/fr/books/handbook/partv.adoc index 78c7b52eb4..c96db19738 100644 --- a/documentation/content/fr/books/handbook/partv.adoc +++ b/documentation/content/fr/books/handbook/partv.adoc @@ -2,17 +2,10 @@ title: Partie V. Annexes prev: books/handbook/advanced-networking next: books/handbook/mirrors +showBookMenu: true +weight: 38 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[appendices]] = Annexes - -include::{chapters-path}toc-5.adoc[] diff --git a/documentation/content/fr/books/handbook/pgpkeys/_index.adoc b/documentation/content/fr/books/handbook/pgpkeys/_index.adoc index 4b3373484e..a139e3dbf2 100644 --- a/documentation/content/fr/books/handbook/pgpkeys/_index.adoc +++ b/documentation/content/fr/books/handbook/pgpkeys/_index.adoc @@ -3,6 +3,9 @@ title: Annexe D. Clés OpenPGP part: Partie V. Annexes prev: books/handbook/eresources next: books/handbook/freebsd-glossary +showBookMenu: true +weight: 42 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/fr/books/handbook/ports/_index.adoc b/documentation/content/fr/books/handbook/ports/_index.adoc index 83d2830152..a7a0b1710a 100644 --- a/documentation/content/fr/books/handbook/ports/_index.adoc +++ b/documentation/content/fr/books/handbook/ports/_index.adoc @@ -3,6 +3,9 @@ title: "Chapitre 4. Installer des applications: les logiciels pré-compilés et part: Partie I. Pour commencer prev: books/handbook/basics next: books/handbook/x11 +showBookMenu: true +weight: 6 +path: "/books/handbook/" --- [[ports]] diff --git a/documentation/content/fr/books/handbook/ppp-and-slip/_index.adoc b/documentation/content/fr/books/handbook/ppp-and-slip/_index.adoc index efa0cfa219..29a177922a 100644 --- a/documentation/content/fr/books/handbook/ppp-and-slip/_index.adoc +++ b/documentation/content/fr/books/handbook/ppp-and-slip/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 28. PPP et SLIP part: Partie IV. Réseau prev: books/handbook/serialcomms next: books/handbook/mail +showBookMenu: true +weight: 33 +path: "/books/handbook/" --- [[ppp-and-slip]] diff --git a/documentation/content/fr/books/handbook/preface/_index.adoc b/documentation/content/fr/books/handbook/preface/_index.adoc index 5e8ef15671..2b50298187 100644 --- a/documentation/content/fr/books/handbook/preface/_index.adoc +++ b/documentation/content/fr/books/handbook/preface/_index.adoc @@ -2,6 +2,9 @@ title: Préface prev: books/handbook/ next: books/handbook/parti +showBookMenu: true +weight: 1 +path: "/books/handbook/" --- [preface] diff --git a/documentation/content/fr/books/handbook/printing/_index.adoc b/documentation/content/fr/books/handbook/printing/_index.adoc index 1972c0fcbc..127a2911aa 100644 --- a/documentation/content/fr/books/handbook/printing/_index.adoc +++ b/documentation/content/fr/books/handbook/printing/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 9. Imprimer part: Partie II. Tâches courantes prev: books/handbook/kernelconfig next: books/handbook/linuxemu +showBookMenu: true +weight: 12 +path: "/books/handbook/" --- [[printing]] diff --git a/documentation/content/fr/books/handbook/security/_index.adoc b/documentation/content/fr/books/handbook/security/_index.adoc index ffcdc35e24..c966cc8400 100644 --- a/documentation/content/fr/books/handbook/security/_index.adoc +++ b/documentation/content/fr/books/handbook/security/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 14. Sécurité part: Partie III. Administration Système prev: books/handbook/users next: books/handbook/jails +showBookMenu: true +weight: 18 +path: "/books/handbook/" --- [[security]] diff --git a/documentation/content/fr/books/handbook/serialcomms/_index.adoc b/documentation/content/fr/books/handbook/serialcomms/_index.adoc index d16bc4083f..1330b415e2 100644 --- a/documentation/content/fr/books/handbook/serialcomms/_index.adoc +++ b/documentation/content/fr/books/handbook/serialcomms/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 27. Serial Communications ** Traduction en Cours ** part: Partie IV. Réseau prev: books/handbook/partiv next: books/handbook/ppp-and-slip +showBookMenu: true +weight: 32 +path: "/books/handbook/" --- [[serialcomms]] diff --git a/documentation/content/fr/books/handbook/users/_index.adoc b/documentation/content/fr/books/handbook/users/_index.adoc index b0df81945c..7c88a06be7 100644 --- a/documentation/content/fr/books/handbook/users/_index.adoc +++ b/documentation/content/fr/books/handbook/users/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 13. Gestion des comptes et des utilisateurs part: Partie III. Administration Système prev: books/handbook/boot next: books/handbook/security +showBookMenu: true +weight: 17 +path: "/books/handbook/" --- [[users]] diff --git a/documentation/content/fr/books/handbook/vinum/_index.adoc b/documentation/content/fr/books/handbook/vinum/_index.adoc index f611f01efb..77d690df7f 100644 --- a/documentation/content/fr/books/handbook/vinum/_index.adoc +++ b/documentation/content/fr/books/handbook/vinum/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 22. Le gestionnaire de volume Vinum part: Partie III. Administration Système prev: books/handbook/filesystems next: books/handbook/virtualization +showBookMenu: true +weight: 26 +path: "/books/handbook/" --- [[vinum-vinum]] diff --git a/documentation/content/fr/books/handbook/virtualization/_index.adoc b/documentation/content/fr/books/handbook/virtualization/_index.adoc index 8538c98ef9..21240db408 100644 --- a/documentation/content/fr/books/handbook/virtualization/_index.adoc +++ b/documentation/content/fr/books/handbook/virtualization/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 23. Virtualisation part: Partie III. Administration Système prev: books/handbook/vinum next: books/handbook/l10n +showBookMenu: true +weight: 27 +path: "/books/handbook/" --- [[virtualization]] diff --git a/documentation/content/fr/books/handbook/x11/_index.adoc b/documentation/content/fr/books/handbook/x11/_index.adoc index 53ea303602..5dedb7cd2e 100644 --- a/documentation/content/fr/books/handbook/x11/_index.adoc +++ b/documentation/content/fr/books/handbook/x11/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 5. Le système X Window part: Partie I. Pour commencer prev: books/handbook/ports next: books/handbook/partii +showBookMenu: true +weight: 7 +path: "/books/handbook/" --- [[x11]] diff --git a/documentation/content/fr/books/handbook/zfs/_index.adoc b/documentation/content/fr/books/handbook/zfs/_index.adoc index 215091fefb..06850df7fc 100644 --- a/documentation/content/fr/books/handbook/zfs/_index.adoc +++ b/documentation/content/fr/books/handbook/zfs/_index.adoc @@ -3,6 +3,9 @@ title: Chapitre 20. The Z File System (ZFS) ** Traduction en Cours ** part: Partie III. Administration Système prev: books/handbook/geom next: books/handbook/filesystems +showBookMenu: true +weight: 24 +path: "/books/handbook/" --- [[zfs]] diff --git a/documentation/content/fr/languages.adoc b/documentation/content/fr/languages.adoc new file mode 100644 index 0000000000..afb237f82d --- /dev/null +++ b/documentation/content/fr/languages.adoc @@ -0,0 +1,6 @@ +--- +title: Languages +layout: languages +--- + += Languages diff --git a/documentation/content/hu/articles/_index.adoc b/documentation/content/hu/articles/_index.adoc index a245ae3d26..de739232b6 100644 --- a/documentation/content/hu/articles/_index.adoc +++ b/documentation/content/hu/articles/_index.adoc @@ -1,5 +1,6 @@ --- title: Articles +layout: total-list --- = Articles diff --git a/documentation/content/hu/books/_index.adoc b/documentation/content/hu/books/_index.adoc index 17572a88c5..89516d974e 100644 --- a/documentation/content/hu/books/_index.adoc +++ b/documentation/content/hu/books/_index.adoc @@ -1,5 +1,6 @@ --- title: Books +layout: total-list --- = Books diff --git a/documentation/content/hu/books/books.adoc b/documentation/content/hu/books/books.adoc deleted file mode 100644 index b1752c2f04..0000000000 --- a/documentation/content/hu/books/books.adoc +++ /dev/null @@ -1,2 +0,0 @@ -handbook -faq diff --git a/documentation/content/hu/books/faq/chapters-order.adoc b/documentation/content/hu/books/faq/chapters-order.adoc deleted file mode 100644 index bb86b134ce..0000000000 --- a/documentation/content/hu/books/faq/chapters-order.adoc +++ /dev/null @@ -1 +0,0 @@ -_index.adoc diff --git a/documentation/content/hu/books/handbook/_index.adoc b/documentation/content/hu/books/handbook/_index.adoc index aaf3cc0893..952251ea05 100644 --- a/documentation/content/hu/books/handbook/_index.adoc +++ b/documentation/content/hu/books/handbook/_index.adoc @@ -5,7 +5,9 @@ authors: copyright: 1995-2020 The FreeBSD Documentation Project trademarks: ["freebsd", "ibm", "ieee", "redhat", "3com", "adobe", "apple", "intel", "linux", "microsoft", "opengroup", "sun", "realnetworks", "oracle", "3ware", "arm", "adaptec", "google", "heidelberger", "intuit", "lsilogic", "themathworks", "thomson", "vmware", "wolframresearch", "xiph", "xfree86", "general"] next: books/handbook/preface -isIndex: true +showBookMenu: true +weight: 0 +path: "/books/handbook/" --- = FreeBSD kézikönyv @@ -29,16 +31,13 @@ include::shared/attributes/attributes-{{% lang %}}.adoc[] include::shared/{{% lang %}}/teams.adoc[] include::shared/{{% lang %}}/mailing-lists.adoc[] include::shared/{{% lang %}}/urls.adoc[] -:chapters-path: content/{{% lang %}}/books/handbook/ endif::[] ifdef::backend-pdf,backend-epub3[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] endif::[] ifndef::env-beastie[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] @@ -50,11 +49,3 @@ Kivonat _Fordította: Páli Gábor, utolsó ellenõrzés: 2010.11.28._ ''' - -include::{chapters-path}toc.adoc[] - -include::{chapters-path}toc-figures.adoc[] - -include::{chapters-path}toc-tables.adoc[] - -include::{chapters-path}toc-examples.adoc[] diff --git a/documentation/content/hu/books/handbook/advanced-networking/_index.adoc b/documentation/content/hu/books/handbook/advanced-networking/_index.adoc index d9e6bf0301..0ccae5e24d 100644 --- a/documentation/content/hu/books/handbook/advanced-networking/_index.adoc +++ b/documentation/content/hu/books/handbook/advanced-networking/_index.adoc @@ -3,6 +3,9 @@ title: 31. Fejezet - Egyéb haladó hálózati témák part: IV. Rész Hálózati kommunikáció prev: books/handbook/firewalls next: books/handbook/partv +showBookMenu: true +weight: 35 +path: "/books/handbook/" --- [[advanced-networking]] diff --git a/documentation/content/hu/books/handbook/audit/_index.adoc b/documentation/content/hu/books/handbook/audit/_index.adoc index fe7edd5385..948dc40bf2 100644 --- a/documentation/content/hu/books/handbook/audit/_index.adoc +++ b/documentation/content/hu/books/handbook/audit/_index.adoc @@ -3,6 +3,9 @@ title: 17. Fejezet - Biztonsági események vizsgálata part: III. Rész Rendszeradminisztráció prev: books/handbook/mac next: books/handbook/disks +showBookMenu: true +weight: 21 +path: "/books/handbook/" --- [[audit]] diff --git a/documentation/content/hu/books/handbook/basics/_index.adoc b/documentation/content/hu/books/handbook/basics/_index.adoc index 104f87ae40..e7d66f7bbb 100644 --- a/documentation/content/hu/books/handbook/basics/_index.adoc +++ b/documentation/content/hu/books/handbook/basics/_index.adoc @@ -3,6 +3,9 @@ title: 3. Fejezet - A UNIX alapjai part: I. Rész - Bevezetés prev: books/handbook/install next: books/handbook/ports +showBookMenu: true +weight: 5 +path: "/books/handbook/" --- [[basics]] diff --git a/documentation/content/hu/books/handbook/bibliography/_index.adoc b/documentation/content/hu/books/handbook/bibliography/_index.adoc index 9a8327d813..618975ad80 100644 --- a/documentation/content/hu/books/handbook/bibliography/_index.adoc +++ b/documentation/content/hu/books/handbook/bibliography/_index.adoc @@ -3,6 +3,9 @@ title: B. függelék - Irodalomjegyzék part: V. Rész - Függelék prev: books/handbook/mirrors next: books/handbook/eresources +showBookMenu: true +weight: 38 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/hu/books/handbook/book.adoc b/documentation/content/hu/books/handbook/book.adoc index c73df509e8..fccf4a6aa8 100644 --- a/documentation/content/hu/books/handbook/book.adoc +++ b/documentation/content/hu/books/handbook/book.adoc @@ -61,7 +61,7 @@ include::{chapters-path}preface/_index.adoc[leveloffset=+1] :sectnums: // Section one -include::{chapters-path}parti.adoc[lines=15..26] +include::{chapters-path}parti.adoc[] include::{chapters-path}introduction/_index.adoc[leveloffset=+1] @@ -74,7 +74,7 @@ include::{chapters-path}ports/_index.adoc[leveloffset=+1] include::{chapters-path}x11/_index.adoc[leveloffset=+1] // Section two -include::{chapters-path}partii.adoc[lines=15..26] +include::{chapters-path}partii.adoc[] include::{chapters-path}desktop/_index.adoc[leveloffset=+1] @@ -87,7 +87,7 @@ include::{chapters-path}printing/_index.adoc[leveloffset=+1] include::{chapters-path}linuxemu/_index.adoc[leveloffset=+1] // Section three -include::{chapters-path}partiii.adoc[lines=15..20] +include::{chapters-path}partiii.adoc[] include::{chapters-path}config/_index.adoc[leveloffset=+1] @@ -120,7 +120,7 @@ include::{chapters-path}cutting-edge/_index.adoc[leveloffset=+1] include::{chapters-path}dtrace/_index.adoc[leveloffset=+1] // Section four -include::{chapters-path}partiv.adoc[lines=15..27] +include::{chapters-path}partiv.adoc[] include::{chapters-path}serialcomms/_index.adoc[leveloffset=+1] @@ -135,7 +135,7 @@ include::{chapters-path}firewalls/_index.adoc[leveloffset=+1] include::{chapters-path}advanced-networking/_index.adoc[leveloffset=+1] // Section five -include::{chapters-path}partv.adoc[lines=15..16] +include::{chapters-path}partv.adoc[] :sectnums!: diff --git a/documentation/content/hu/books/handbook/boot/_index.adoc b/documentation/content/hu/books/handbook/boot/_index.adoc index ed04f932e1..63024b2b1a 100644 --- a/documentation/content/hu/books/handbook/boot/_index.adoc +++ b/documentation/content/hu/books/handbook/boot/_index.adoc @@ -3,6 +3,9 @@ title: 12. Fejezet - A FreeBSD rendszerindítási folyamata part: III. Rész Rendszeradminisztráció prev: books/handbook/config next: books/handbook/users +showBookMenu: true +weight: 16 +path: "/books/handbook/" --- [[boot]] diff --git a/documentation/content/hu/books/handbook/chapters-order.adoc b/documentation/content/hu/books/handbook/chapters-order.adoc deleted file mode 100644 index 5e637e3159..0000000000 --- a/documentation/content/hu/books/handbook/chapters-order.adoc +++ /dev/null @@ -1,41 +0,0 @@ -preface/_index.adoc -parti.adoc -introduction/_index.adoc -install/_index.adoc -basics/_index.adoc -ports/_index.adoc -x11/_index.adoc -partii.adoc -desktop/_index.adoc -multimedia/_index.adoc -kernelconfig/_index.adoc -printing/_index.adoc -linuxemu/_index.adoc -partiii.adoc -config/_index.adoc -boot/_index.adoc -users/_index.adoc -security/_index.adoc -jails/_index.adoc -mac/_index.adoc -audit/_index.adoc -disks/_index.adoc -geom/_index.adoc -filesystems/_index.adoc -vinum/_index.adoc -virtualization/_index.adoc -l10n/_index.adoc -cutting-edge/_index.adoc -dtrace/_index.adoc -partiv.adoc -serialcomms/_index.adoc -ppp-and-slip/_index.adoc -mail/_index.adoc -network-servers/_index.adoc -firewalls/_index.adoc -advanced-networking/_index.adoc -partv.adoc -mirrors/_index.adoc -bibliography/_index.adoc -eresources/_index.adoc -pgpkeys/_index.adoc diff --git a/documentation/content/hu/books/handbook/config/_index.adoc b/documentation/content/hu/books/handbook/config/_index.adoc index 3e11170a26..794bc41c38 100644 --- a/documentation/content/hu/books/handbook/config/_index.adoc +++ b/documentation/content/hu/books/handbook/config/_index.adoc @@ -3,6 +3,9 @@ title: 11. Fejezet - Beállítás és finomhangolás part: III. Rész Rendszeradminisztráció prev: books/handbook/partiii next: books/handbook/boot +showBookMenu: true +weight: 15 +path: "/books/handbook/" --- [[config-tuning]] diff --git a/documentation/content/hu/books/handbook/cutting-edge/_index.adoc b/documentation/content/hu/books/handbook/cutting-edge/_index.adoc index 626c7cd1e9..587045d159 100644 --- a/documentation/content/hu/books/handbook/cutting-edge/_index.adoc +++ b/documentation/content/hu/books/handbook/cutting-edge/_index.adoc @@ -3,6 +3,9 @@ title: 24. Fejezet - A FreeBSD frissítése és frissen tartása part: III. Rész Rendszeradminisztráció prev: books/handbook/l10n next: books/handbook/dtrace +showBookMenu: true +weight: 28 +path: "/books/handbook/" --- [[updating-upgrading]] diff --git a/documentation/content/hu/books/handbook/desktop/_index.adoc b/documentation/content/hu/books/handbook/desktop/_index.adoc index 0135c84c82..69a0e0427f 100644 --- a/documentation/content/hu/books/handbook/desktop/_index.adoc +++ b/documentation/content/hu/books/handbook/desktop/_index.adoc @@ -3,6 +3,9 @@ title: 6. Fejezet - Asztali alkalmazások part: Μέρος II. Βασικές Εργασίες prev: books/handbook/partii next: books/handbook/multimedia +showBookMenu: true +weight: 9 +path: "/books/handbook/" --- [[desktop]] diff --git a/documentation/content/hu/books/handbook/disks/_index.adoc b/documentation/content/hu/books/handbook/disks/_index.adoc index 9f78a6f090..e425eb63dc 100644 --- a/documentation/content/hu/books/handbook/disks/_index.adoc +++ b/documentation/content/hu/books/handbook/disks/_index.adoc @@ -3,6 +3,9 @@ title: 18. Fejezet - Háttértárak part: III. Rész Rendszeradminisztráció prev: books/handbook/audit next: books/handbook/geom +showBookMenu: true +weight: 22 +path: "/books/handbook/" --- [[disks]] diff --git a/documentation/content/hu/books/handbook/dtrace/_index.adoc b/documentation/content/hu/books/handbook/dtrace/_index.adoc index 0e94778c60..06bdd0de16 100644 --- a/documentation/content/hu/books/handbook/dtrace/_index.adoc +++ b/documentation/content/hu/books/handbook/dtrace/_index.adoc @@ -3,6 +3,9 @@ title: 25. Fejezet - DTrace part: III. Rész Rendszeradminisztráció prev: books/handbook/cutting-edge next: books/handbook/partiv +showBookMenu: true +weight: 29 +path: "/books/handbook/" --- [[dtrace]] diff --git a/documentation/content/hu/books/handbook/eresources/_index.adoc b/documentation/content/hu/books/handbook/eresources/_index.adoc index 61b112e028..dc48ec3441 100644 --- a/documentation/content/hu/books/handbook/eresources/_index.adoc +++ b/documentation/content/hu/books/handbook/eresources/_index.adoc @@ -3,6 +3,9 @@ title: C. Függelék - Források az interneten part: V. Rész - Függelék prev: books/handbook/bibliography next: books/handbook/pgpkeys +showBookMenu: true +weight: 39 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/hu/books/handbook/filesystems/_index.adoc b/documentation/content/hu/books/handbook/filesystems/_index.adoc index fc837d3c37..32c7ed99bc 100644 --- a/documentation/content/hu/books/handbook/filesystems/_index.adoc +++ b/documentation/content/hu/books/handbook/filesystems/_index.adoc @@ -3,6 +3,9 @@ title: 20. Fejezet - Támogatott állományrendszerek part: III. Rész Rendszeradminisztráció prev: books/handbook/geom next: books/handbook/vinum +showBookMenu: true +weight: 24 +path: "/books/handbook/" --- [[filesystems]] diff --git a/documentation/content/hu/books/handbook/firewalls/_index.adoc b/documentation/content/hu/books/handbook/firewalls/_index.adoc index c54c2eeeca..188a68f0b3 100644 --- a/documentation/content/hu/books/handbook/firewalls/_index.adoc +++ b/documentation/content/hu/books/handbook/firewalls/_index.adoc @@ -3,6 +3,9 @@ title: 30. Fejezet - Tűzfalak part: IV. Rész Hálózati kommunikáció prev: books/handbook/network-servers next: books/handbook/advanced-networking +showBookMenu: true +weight: 34 +path: "/books/handbook/" --- [[firewalls]] diff --git a/documentation/content/hu/books/handbook/geom/_index.adoc b/documentation/content/hu/books/handbook/geom/_index.adoc index 6bee710c1c..95016e96b9 100644 --- a/documentation/content/hu/books/handbook/geom/_index.adoc +++ b/documentation/content/hu/books/handbook/geom/_index.adoc @@ -3,6 +3,9 @@ title: "19. Fejezet - GEOM: A moduláris lemezszervező rendszer" part: III. Rész Rendszeradminisztráció prev: books/handbook/disks next: books/handbook/filesystems +showBookMenu: true +weight: 23 +path: "/books/handbook/" --- [[geom]] diff --git a/documentation/content/hu/books/handbook/install/_index.adoc b/documentation/content/hu/books/handbook/install/_index.adoc index d94329e133..ebe5799e1f 100644 --- a/documentation/content/hu/books/handbook/install/_index.adoc +++ b/documentation/content/hu/books/handbook/install/_index.adoc @@ -3,6 +3,9 @@ title: 2. Fejezet - A FreeBSD telepítése part: I. Rész - Bevezetés prev: books/handbook/introduction next: books/handbook/basics +showBookMenu: true +weight: 4 +path: "/books/handbook/" --- [[install]] diff --git a/documentation/content/hu/books/handbook/introduction/_index.adoc b/documentation/content/hu/books/handbook/introduction/_index.adoc index e41e327115..8890b97170 100644 --- a/documentation/content/hu/books/handbook/introduction/_index.adoc +++ b/documentation/content/hu/books/handbook/introduction/_index.adoc @@ -3,6 +3,9 @@ title: 1. Fejezet - Bemutatkozás part: I. Rész - Bevezetés prev: books/handbook/parti next: books/handbook/install +showBookMenu: true +weight: 3 +path: "/books/handbook/" --- [[introduction]] diff --git a/documentation/content/hu/books/handbook/jails/_index.adoc b/documentation/content/hu/books/handbook/jails/_index.adoc index e925fbdc70..881f2ebfce 100644 --- a/documentation/content/hu/books/handbook/jails/_index.adoc +++ b/documentation/content/hu/books/handbook/jails/_index.adoc @@ -3,6 +3,9 @@ title: 15. Fejezet - A jail alrendszer part: III. Rész Rendszeradminisztráció prev: books/handbook/security next: books/handbook/mac +showBookMenu: true +weight: 19 +path: "/books/handbook/" --- [[jails]] diff --git a/documentation/content/hu/books/handbook/kernelconfig/_index.adoc b/documentation/content/hu/books/handbook/kernelconfig/_index.adoc index d31de6ea52..efe1abbb29 100644 --- a/documentation/content/hu/books/handbook/kernelconfig/_index.adoc +++ b/documentation/content/hu/books/handbook/kernelconfig/_index.adoc @@ -3,6 +3,9 @@ title: 8. Fejezet - A FreeBSD rendszermag testreszabása part: II. Rész Gyakori feladatok prev: books/handbook/multimedia next: books/handbook/printing +showBookMenu: true +weight: 11 +path: "/books/handbook/" --- [[kernelconfig]] diff --git a/documentation/content/hu/books/handbook/l10n/_index.adoc b/documentation/content/hu/books/handbook/l10n/_index.adoc index acf2265a85..64b6fcb8c1 100644 --- a/documentation/content/hu/books/handbook/l10n/_index.adoc +++ b/documentation/content/hu/books/handbook/l10n/_index.adoc @@ -3,6 +3,9 @@ title: 23. Fejezet - Honosítás - Az I18N/L10N használata és beállítása part: III. Rész Rendszeradminisztráció prev: books/handbook/virtualization next: books/handbook/cutting-edge +showBookMenu: true +weight: 27 +path: "/books/handbook/" --- [[l10n]] diff --git a/documentation/content/hu/books/handbook/linuxemu/_index.adoc b/documentation/content/hu/books/handbook/linuxemu/_index.adoc index 5140fffe48..f1a9491a3a 100644 --- a/documentation/content/hu/books/handbook/linuxemu/_index.adoc +++ b/documentation/content/hu/books/handbook/linuxemu/_index.adoc @@ -3,6 +3,9 @@ title: 10. fejezet - Bináris Linux kompatibilitás part: II. Rész Gyakori feladatok prev: books/handbook/printing next: books/handbook/partiii +showBookMenu: true +weight: 13 +path: "/books/handbook/" --- [[linuxemu]] diff --git a/documentation/content/hu/books/handbook/mac/_index.adoc b/documentation/content/hu/books/handbook/mac/_index.adoc index 2e8fa44ede..d67b993ff9 100644 --- a/documentation/content/hu/books/handbook/mac/_index.adoc +++ b/documentation/content/hu/books/handbook/mac/_index.adoc @@ -3,6 +3,9 @@ title: 16. Fejezet - Kötelező hozzáférés-vezérlés (MAC) part: III. Rész Rendszeradminisztráció prev: books/handbook/jails next: books/handbook/audit +showBookMenu: true +weight: 20 +path: "/books/handbook/" --- [[mac]] diff --git a/documentation/content/hu/books/handbook/mail/_index.adoc b/documentation/content/hu/books/handbook/mail/_index.adoc index bb2ffe7d5d..27f0f330db 100644 --- a/documentation/content/hu/books/handbook/mail/_index.adoc +++ b/documentation/content/hu/books/handbook/mail/_index.adoc @@ -3,6 +3,9 @@ title: 28. Fejezet - Elektronikus levelezés part: IV. Rész Hálózati kommunikáció prev: books/handbook/ppp-and-slip next: books/handbook/network-servers +showBookMenu: true +weight: 32 +path: "/books/handbook/" --- [[mail]] diff --git a/documentation/content/hu/books/handbook/mirrors/_index.adoc b/documentation/content/hu/books/handbook/mirrors/_index.adoc index 9bf70bcae3..1c41d4b3f3 100644 --- a/documentation/content/hu/books/handbook/mirrors/_index.adoc +++ b/documentation/content/hu/books/handbook/mirrors/_index.adoc @@ -3,6 +3,9 @@ title: A. Függelék - A FreeBSD beszerzése part: V. Rész - Függelék prev: books/handbook/partv next: books/handbook/bibliography +showBookMenu: true +weight: 37 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/hu/books/handbook/multimedia/_index.adoc b/documentation/content/hu/books/handbook/multimedia/_index.adoc index e23e500620..23c03868cb 100644 --- a/documentation/content/hu/books/handbook/multimedia/_index.adoc +++ b/documentation/content/hu/books/handbook/multimedia/_index.adoc @@ -3,6 +3,9 @@ title: 7. Fejezet - Multimédia part: II. Rész Gyakori feladatok prev: books/handbook/desktop next: books/handbook/kernelconfig +showBookMenu: true +weight: 10 +path: "/books/handbook/" --- [[multimedia]] diff --git a/documentation/content/hu/books/handbook/network-servers/_index.adoc b/documentation/content/hu/books/handbook/network-servers/_index.adoc index 8d80480643..ceb2c6d665 100644 --- a/documentation/content/hu/books/handbook/network-servers/_index.adoc +++ b/documentation/content/hu/books/handbook/network-servers/_index.adoc @@ -3,6 +3,9 @@ title: 29. Fejezet - Hálózati szerverek part: IV. Rész Hálózati kommunikáció prev: books/handbook/mail next: books/handbook/firewalls +showBookMenu: true +weight: 33 +path: "/books/handbook/" --- [[network-servers]] diff --git a/documentation/content/hu/books/handbook/parti.adoc b/documentation/content/hu/books/handbook/parti.adoc index 73b3b686ca..c53719fc52 100644 --- a/documentation/content/hu/books/handbook/parti.adoc +++ b/documentation/content/hu/books/handbook/parti.adoc @@ -2,16 +2,11 @@ title: I. Rész Bevezetés prev: books/handbook/preface next: books/handbook/introduction +showBookMenu: true +weight: 2 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[getting-started]] = Bevezetés @@ -24,5 +19,3 @@ A FreeBSD kézikönyv ezen része azoknak a felhasználóknak és rendszergazdá * Megismerhetjük az X-et, a UNIX(R)-os ablakozórendszert, és részleteiben is láthatjuk, miként konfiguráljunk be egy munkakörnyezetet, amellyel kényelmesebbé válik a munka. A fejezetek megírása során arra törekedtünk, hogy minél kevesebb hivatkozást tegyünk a könyv késõbb következõ részeire, így ennek köszönhetõen a kézikönyv ezen része anélkül olvasható, hogy közben folyamatosan elõre-hátra kellene lapozgatnunk benne. - -include::{chapters-path}toc-1.adoc[] diff --git a/documentation/content/hu/books/handbook/partii.adoc b/documentation/content/hu/books/handbook/partii.adoc index cf07f577c0..f7f64041cc 100644 --- a/documentation/content/hu/books/handbook/partii.adoc +++ b/documentation/content/hu/books/handbook/partii.adoc @@ -2,16 +2,11 @@ title: II. Rész Gyakori feladatok prev: books/handbook/x11 next: books/handbook/desktop +showBookMenu: true +weight: 8 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[common-tasks]] = Gyakori feladatok @@ -24,5 +19,3 @@ Miután az alapokat már átvettük, a FreeBSD kézikönyv következõ része n * Megmutatják, hogyan futassunk Linuxra íródott alkalmazásokat a FreeBSD rendszerünkön. Egyes fejezetek elolvasásához ajánlott bizonyos mértékû felkészülés, amely megemlítésre is kerül az érintett fejezetek áttekintésében. - -include::{chapters-path}toc-2.adoc[] diff --git a/documentation/content/hu/books/handbook/partiii.adoc b/documentation/content/hu/books/handbook/partiii.adoc index 5b9dcc39a4..5d6e1e00b6 100644 --- a/documentation/content/hu/books/handbook/partiii.adoc +++ b/documentation/content/hu/books/handbook/partiii.adoc @@ -2,21 +2,14 @@ title: III. Rész Rendszeradminisztráció prev: books/handbook/linuxemu next: books/handbook/config +showBookMenu: true +weight: 14 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[system-administration]] = Rendszeradminisztráció A FreeBSD kézikönyv fennmaradó fejezeteiben a FreeBSD rendszerek adminisztrációjának különbözõ aspektusait mutatjuk be. Mindegyik fejezet elején megtudhatjuk mit is fogunk megismerni a fejezet elolvasása során, illetve arról is információkat kapunk, hogy mivel kell már tisztában lennünk a tárgyalt anyag feldolgozásához. Ezeket a fejezeteket annak érdekében alakítottuk ki, hogy az adott témákban ismereteket adjunk. Nincs köztük semmilyen sorrendi kötöttség, sõt, ezeket egyáltalán nem is szükséges elolvasni a FreeBSD alapvetõ használatához. - -include::{chapters-path}toc-3.adoc[] diff --git a/documentation/content/hu/books/handbook/partiv.adoc b/documentation/content/hu/books/handbook/partiv.adoc index e05cf496bd..5b0b32dd1f 100644 --- a/documentation/content/hu/books/handbook/partiv.adoc +++ b/documentation/content/hu/books/handbook/partiv.adoc @@ -2,16 +2,11 @@ title: IV. Rész Hálózati kommunikáció prev: books/handbook/usb-device-mode next: books/handbook/serialcomms +showBookMenu: true +weight: 30 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[network-communication]] = Hálózati kommunikáció @@ -25,5 +20,3 @@ A FreeBSD az egyik legelterjedtebb operációs rendszer a legnagyobb hálózati * Egyéb haladó hálózati témák Ezek a fejezetek nem állnak egymással szoros kapcsolatban, csupán egy adott témáról adnak ismereteket. Ennélfogva nem kötelezõ ezeket sorrendben elolvasni, valamint egyáltalán nem is kell mindegyikõjüket átolvasni ahhoz, hogy a FreeBSD-t hálózati környezetben is használni tudjuk. - -include::{chapters-path}toc-4.adoc[] diff --git a/documentation/content/hu/books/handbook/partv.adoc b/documentation/content/hu/books/handbook/partv.adoc index 46295aa36d..eabb4ddfd5 100644 --- a/documentation/content/hu/books/handbook/partv.adoc +++ b/documentation/content/hu/books/handbook/partv.adoc @@ -2,17 +2,10 @@ title: V. Rész Függelék prev: books/handbook/advanced-networking next: books/handbook/mirrors +showBookMenu: true +weight: 36 +path: "/books/handbook/" --- -ifdef::env-beastie+backend-html5[] -:chapters-path: content/{{% lang %}}/books/handbook/ -endif::[] - -ifndef::env-beastie[] -:chapters-path: -endif::[] - [[appendices]] = Függelék - -include::{chapters-path}toc-5.adoc[] diff --git a/documentation/content/hu/books/handbook/pgpkeys/_index.adoc b/documentation/content/hu/books/handbook/pgpkeys/_index.adoc index 07448118a5..151fac196e 100644 --- a/documentation/content/hu/books/handbook/pgpkeys/_index.adoc +++ b/documentation/content/hu/books/handbook/pgpkeys/_index.adoc @@ -3,6 +3,9 @@ title: D. Függelék - PGP-kulcsok part: V. Rész - Függelék prev: books/handbook/eresources next: books/handbook/freebsd-glossary +showBookMenu: true +weight: 40 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/hu/books/handbook/ports/_index.adoc b/documentation/content/hu/books/handbook/ports/_index.adoc index 234b858af0..bfb1bdeb57 100644 --- a/documentation/content/hu/books/handbook/ports/_index.adoc +++ b/documentation/content/hu/books/handbook/ports/_index.adoc @@ -3,6 +3,9 @@ title: "4. Fejezet - Alkalmazások telepítése: csomagok és portok" part: I. Rész - Bevezetés prev: books/handbook/basics next: books/handbook/x11 +showBookMenu: true +weight: 6 +path: "/books/handbook/" --- [[ports]] diff --git a/documentation/content/hu/books/handbook/ppp-and-slip/_index.adoc b/documentation/content/hu/books/handbook/ppp-and-slip/_index.adoc index b5bd18b8c3..25f6958d17 100644 --- a/documentation/content/hu/books/handbook/ppp-and-slip/_index.adoc +++ b/documentation/content/hu/books/handbook/ppp-and-slip/_index.adoc @@ -3,6 +3,9 @@ title: 27. Fejezet - A PPP és a SLIP part: IV. Rész Hálózati kommunikáció prev: books/handbook/serialcomms next: books/handbook/mail +showBookMenu: true +weight: 31 +path: "/books/handbook/" --- [[ppp-and-slip]] diff --git a/documentation/content/hu/books/handbook/preface/_index.adoc b/documentation/content/hu/books/handbook/preface/_index.adoc index a552c3316a..2bd812ce37 100644 --- a/documentation/content/hu/books/handbook/preface/_index.adoc +++ b/documentation/content/hu/books/handbook/preface/_index.adoc @@ -2,6 +2,9 @@ title: Előszó prev: books/handbook/ next: books/handbook/parti +showBookMenu: true +weight: 1 +path: "/books/handbook/" --- [preface] diff --git a/documentation/content/hu/books/handbook/printing/_index.adoc b/documentation/content/hu/books/handbook/printing/_index.adoc index e5f5df3bf4..5582242cf9 100644 --- a/documentation/content/hu/books/handbook/printing/_index.adoc +++ b/documentation/content/hu/books/handbook/printing/_index.adoc @@ -3,6 +3,9 @@ title: 9. Fejezet - Nyomtatás part: II. Rész Gyakori feladatok prev: books/handbook/kernelconfig next: books/handbook/linuxemu +showBookMenu: true +weight: 12 +path: "/books/handbook/" --- [[printing]] diff --git a/documentation/content/hu/books/handbook/security/_index.adoc b/documentation/content/hu/books/handbook/security/_index.adoc index 29eb478e08..3c4eb6d6e4 100644 --- a/documentation/content/hu/books/handbook/security/_index.adoc +++ b/documentation/content/hu/books/handbook/security/_index.adoc @@ -3,6 +3,9 @@ title: 14. Fejezet - Biztonság part: III. Rész Rendszeradminisztráció prev: books/handbook/users next: books/handbook/jails +showBookMenu: true +weight: 18 +path: "/books/handbook/" --- [[security]] diff --git a/documentation/content/hu/books/handbook/serialcomms/_index.adoc b/documentation/content/hu/books/handbook/serialcomms/_index.adoc index c2a6e8f544..3737f7559c 100644 --- a/documentation/content/hu/books/handbook/serialcomms/_index.adoc +++ b/documentation/content/hu/books/handbook/serialcomms/_index.adoc @@ -3,6 +3,9 @@ title: 26. Fejezet - Soros vonali kommunikáció part: IV. Rész Hálózati kommunikáció prev: books/handbook/partiv next: books/handbook/ppp-and-slip +showBookMenu: true +weight: 31 +path: "/books/handbook/" --- [[serialcomms]] diff --git a/documentation/content/hu/books/handbook/users/_index.adoc b/documentation/content/hu/books/handbook/users/_index.adoc index 78b9c0ff70..a66ed723e7 100644 --- a/documentation/content/hu/books/handbook/users/_index.adoc +++ b/documentation/content/hu/books/handbook/users/_index.adoc @@ -3,6 +3,9 @@ title: 13. Fejezet - Felhasználók és hozzáférések alapvető kezelése part: III. Rész Rendszeradminisztráció prev: books/handbook/boot next: books/handbook/security +showBookMenu: true +weight: 17 +path: "/books/handbook/" --- [[users]] diff --git a/documentation/content/hu/books/handbook/vinum/_index.adoc b/documentation/content/hu/books/handbook/vinum/_index.adoc index d48a3a939f..868e675f3d 100644 --- a/documentation/content/hu/books/handbook/vinum/_index.adoc +++ b/documentation/content/hu/books/handbook/vinum/_index.adoc @@ -3,6 +3,9 @@ title: 21. Fejezet - A Vinum kötetkezelő part: III. Rész Rendszeradminisztráció prev: books/handbook/filesystems next: books/handbook/virtualization +showBookMenu: true +weight: 25 +path: "/books/handbook/" --- [[vinum-vinum]] diff --git a/documentation/content/hu/books/handbook/virtualization/_index.adoc b/documentation/content/hu/books/handbook/virtualization/_index.adoc index a2206aa397..4ce1fdb06e 100644 --- a/documentation/content/hu/books/handbook/virtualization/_index.adoc +++ b/documentation/content/hu/books/handbook/virtualization/_index.adoc @@ -3,6 +3,9 @@ title: 22. Fejezet - Virtualizáció part: III. Rész Rendszeradminisztráció prev: books/handbook/vinum next: books/handbook/l10n +showBookMenu: true +weight: 26 +path: "/books/handbook/" --- [[virtualization]] diff --git a/documentation/content/hu/books/handbook/x11/_index.adoc b/documentation/content/hu/books/handbook/x11/_index.adoc index b824a5e39f..e75ae9e1e2 100644 --- a/documentation/content/hu/books/handbook/x11/_index.adoc +++ b/documentation/content/hu/books/handbook/x11/_index.adoc @@ -3,6 +3,9 @@ title: 5. Fejezet - Az X Window System part: I. Rész - Bevezetés prev: books/handbook/ports next: books/handbook/partii +showBookMenu: true +weight: 7 +path: "/books/handbook/" --- [[x11]] diff --git a/documentation/content/hu/languages.adoc b/documentation/content/hu/languages.adoc new file mode 100644 index 0000000000..afb237f82d --- /dev/null +++ b/documentation/content/hu/languages.adoc @@ -0,0 +1,6 @@ +--- +title: Languages +layout: languages +--- + += Languages diff --git a/documentation/content/it/articles/_index.adoc b/documentation/content/it/articles/_index.adoc index a245ae3d26..de739232b6 100644 --- a/documentation/content/it/articles/_index.adoc +++ b/documentation/content/it/articles/_index.adoc @@ -1,5 +1,6 @@ --- title: Articles +layout: total-list --- = Articles diff --git a/documentation/content/it/books/_index.adoc b/documentation/content/it/books/_index.adoc index 17572a88c5..89516d974e 100644 --- a/documentation/content/it/books/_index.adoc +++ b/documentation/content/it/books/_index.adoc @@ -1,5 +1,6 @@ --- title: Books +layout: total-list --- = Books diff --git a/documentation/content/it/books/books.adoc b/documentation/content/it/books/books.adoc deleted file mode 100644 index 342921370c..0000000000 --- a/documentation/content/it/books/books.adoc +++ /dev/null @@ -1 +0,0 @@ -handbook diff --git a/documentation/content/it/books/handbook/_index.adoc b/documentation/content/it/books/handbook/_index.adoc index b9ef2beeca..668068fd40 100644 --- a/documentation/content/it/books/handbook/_index.adoc +++ b/documentation/content/it/books/handbook/_index.adoc @@ -5,7 +5,9 @@ authors: copyright: 1995-2020 The FreeBSD Italian Documentation Project trademarks: ["freebsd", "3com", "3ware", "arm", "adaptec", "adobe", "apple", "corel", "creative", "cvsup", "heidelberger", "ibm", "ieee", "intel", "intuit", "linux", "lsilogic", "m-systems", "macromedia", "microsoft", "netscape", "nexthop", "opengroup", "oracle", "powerquest", "realnetworks", "redhat", "sap", "sun", "symantec", "themathworks", "thomson", "usrobotics", "vmware", "waterloomaple", "wolframresearch", "xfree86", "xiph", "general"] next: books/handbook/preface -isIndex: true +showBookMenu: true +weight: 0 +path: "/books/handbook/" --- = Manuale di FreeBSD @@ -29,16 +31,13 @@ include::shared/attributes/attributes-{{% lang %}}.adoc[] include::shared/{{% lang %}}/teams.adoc[] include::shared/{{% lang %}}/mailing-lists.adoc[] include::shared/{{% lang %}}/urls.adoc[] -:chapters-path: content/{{% lang %}}/books/handbook/ endif::[] ifdef::backend-pdf,backend-epub3[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] endif::[] ifndef::env-beastie[] -:chapters-path: include::../../../../../shared/asciidoctor.adoc[] endif::[] @@ -48,11 +47,3 @@ Sommario Benvenuto in FreeBSD! Questo manuale copre l'installazione e l'uso giorno per giorno di _FreeBSD {rel112-current}-RELEASE_ e _FreeBSD {rel120-current}-RELEASE_. Questo manuale è un _progetto in evoluzione_ ed è il frutto del lavoro di molti singoli. Come tale alcun sezioni potrebbero richiedere degli aggiornamenti poichè datate. Se sei interessato ad aiutare questo progetto, invia un'email alla {freebsd-doc}. L'ultima versione di questo documento è sempre disponibile sul http://www.FreeBSD.org/[sito web di FreeBSD] (versioni precedenti di questo manuale possono essere trovate all'indirizzo seguente http://docs.FreeBSD.org/doc/[http://docs.FreeBSD.org/doc/]). Inoltre può essere scaricata in una varietà di formati e tipi di compressione dal ftp://ftp.FreeBSD.org/pub/FreeBSD/doc/[server FTP di FreeBSD] o da uno dei numerosi <<mirrors-ftp,siti mirror>>. Se preferisci avere una copia rilegata del manuale, puoi comprarne una su http://www.freebsdmall.com/[FreeBSD Mall]. Puoi anche voler https://www.FreeBSD.org/search/[cercare nel manuale]. ''' - -include::{chapters-path}toc.adoc[] - -include::{chapters-path}toc-figures.adoc[] - -include::{chapters-path}toc-tables.adoc[] - -include::{chapters-path}toc-examples.adoc[] diff --git a/documentation/content/it/books/handbook/advanced-networking/_index.adoc b/documentation/content/it/books/handbook/advanced-networking/_index.adoc index 997d08f64f..61a72f4c8a 100644 --- a/documentation/content/it/books/handbook/advanced-networking/_index.adoc +++ b/documentation/content/it/books/handbook/advanced-networking/_index.adoc @@ -3,6 +3,9 @@ title: Capitolo 29. Networking Avanzato part: Parte IV. Comunicazione di Rete prev: books/handbook/firewalls next: books/handbook/partv +showBookMenu: true +weight: 34 +path: "/books/handbook/" --- [[advanced-networking]] diff --git a/documentation/content/it/books/handbook/audit/_index.adoc b/documentation/content/it/books/handbook/audit/_index.adoc index 0787608b67..78dd8ec827 100644 --- a/documentation/content/it/books/handbook/audit/_index.adoc +++ b/documentation/content/it/books/handbook/audit/_index.adoc @@ -3,6 +3,9 @@ title: Capitolo 17. Auditing degli Eventi di Sicurezza part: Parte II. Compiti Ordinari prev: books/handbook/mac next: books/handbook/disks +showBookMenu: true +weight: 21 +path: "/books/handbook/" --- [[audit]] diff --git a/documentation/content/it/books/handbook/basics/_index.adoc b/documentation/content/it/books/handbook/basics/_index.adoc index 475696bca1..275c68c24c 100644 --- a/documentation/content/it/books/handbook/basics/_index.adoc +++ b/documentation/content/it/books/handbook/basics/_index.adoc @@ -3,6 +3,9 @@ title: Capitolo 3. Basi di Unix part: Parte I. Per Cominciare prev: books/handbook/install next: books/handbook/ports +showBookMenu: true +weight: 5 +path: "/books/handbook/" --- [[basics]] diff --git a/documentation/content/it/books/handbook/bibliography/_index.adoc b/documentation/content/it/books/handbook/bibliography/_index.adoc index d77715ec20..1d1312cd58 100644 --- a/documentation/content/it/books/handbook/bibliography/_index.adoc +++ b/documentation/content/it/books/handbook/bibliography/_index.adoc @@ -3,6 +3,9 @@ title: Appendice B. Bibliografia part: Parte V. Appendici prev: books/handbook/mirrors next: books/handbook/eresources +showBookMenu: true +weight: 37 +path: "/books/handbook/" --- [appendix] diff --git a/documentation/content/it/books/handbook/book.adoc b/documentation/content/it/books/handbook/book.adoc index 7094201940..a3ec438449 100644 --- a/documentation/content/it/books/handbook/book.adoc +++ b/documentation/content/it/books/handbook/book.adoc @@ -59,7 +59,7 @@ include::{chapters-path}preface/_index.adoc[leveloffset=+1] :sectnums: // Section one -include::{chapters-path}parti.adoc[lines=15..26] +include::{chapters-path}parti.adoc[] include::{chapters-path}introduction/_index.adoc[leveloffset=+1] @@ -72,7 +72,7 @@ include::{chapters-path}ports/_index.adoc[leveloffset=+1] include::{chapters-path}x11/_index.adoc[leveloffset=+1] // Section two -include::{chapters-path}partii.adoc[lines=15..26] +include::{chapters-path}partii.adoc[] include::{chapters-path}desktop/_index.adoc[leveloffset=+1] @@ -85,7 +85,7 @@ include::{chapters-path}printing/_index.adoc[leveloffset=+1] include::{chapters-path}linuxemu/_index.adoc[leveloffset=+1] // Section three -include::{chapters-path}partiii.adoc[lines=15..20] +include::{chapters-path}partiii.adoc[] i |