aboutsummaryrefslogtreecommitdiff
path: root/documentation/content/en/articles/rc-scripting/_index.adoc
Commit message (Collapse)AuthorAgeFilesLines
* [documentation]: Fix links in all output formatsFernando ApesteguĂ­a2024-09-071-5/+6
| | | | | | | | | | | | | Use the crossref: macro for intra-file and intra-book links. This will produce the correct link in Single HTML, Splitted HTML and PDF. Rework the macro to include the PDF special render. While here, briefly document macros. PR: 266107 Reviewed by: bcr@, dbaio@, concussious.bugzilla_runbox.com Differential Revision: https://reviews.freebsd.org/D46480
* rc-scripting: Strip whitespace and fix typosMateusz Piotrowski2024-07-161-16/+16
| | | | Fixes: e9bc86f962 rc scripting article: file naming convention and "instancing"
* rc scripting article: file naming convention and "instancing"Alexander Leidinger2024-07-161-1/+104
| | | | | | | - emphasize the file naming convention and why - add a section about "instancing" Reviewed by: Pau Amma (doc/english bits) Differential Revision: https://reviews.freebsd.org/D45897
* rc services: add docs for automatic service jails (new in 15-current)Alexander Leidinger2024-05-221-0/+75
| | | | | Reviewed by: bcr, fernape Differential Revision: https://reviews.freebsd.org/D42779
* Remove instances of "in order to" to ease readabilityBenedict Reuschling2023-05-181-4/+4
| | | | | | Chapter 11 of the FreeBSD Documentation Project Primer states that language should be clear, short, and simple. This phrasing rarely helps with that and can be cut to a single "to" in pretty much all instances.
* rc-scripting: Update the path where scripts live in src treeMateusz Piotrowski2022-07-041-1/+1
|
* Add missing paragraph in rc-scripting articleRocky Hotas2021-11-211-0/+23
| | | | | PR: 259832 Approved by: carlavilla@
* Build offline documentation using Hugo and other improvementsSergio Carlavilla Delgado2021-11-031-9/+18
| | | | | | | | | | | | | | | | | | | | | | * Allow to build the documentation offline using Hugo * Fix link problems * Remove SVN entities * Fix lang problems to help weblate * Move all the AsciiDoctor translations to the shared folder to help weblate * Allow the possibility to build each document. For example each document can be edited in and watched the result in real time in VS Code or Vim/NeoVim. Breaking changes: Eliminate the possibility of building books or articles. They must be builded at the same time. This functionality will be restored when version 0.89.0 is in the repositories in a couple of weeks. Reviewed by: dbaio@ Differential Revision: https://reviews.freebsd.org/D31926
* Revert "Add Hugo's lang shortcode"Danilo G. Baio2021-06-191-3/+3
| | | | | | | This reverts commit 3462d12db6ebf303064db168a2333374344f369a. Too soon, it broke asciidoctor-pdf which doesn't know Hugo's shortcode. It will take more time and care.
* Add Hugo's lang shortcodeDanilo G. Baio2021-06-191-3/+3
| | | | | | | | | | | | | | | | | | This is a prerequisite for the translation workflow through .po files and Weblate. The asciidoctor include with the shortcode variable will help because won't be needed to change the includes manually after converting the translation (.po file) back to .adoc. It will help other areas like, language attributes, which today is fixed in every document. The use of shortcode was suggested by jmooring@ from Hugo's project on Github. Reviewed by: carlavilla Differential Revision: https://reviews.freebsd.org/D30823
* en/articles/*: Set includes paths according to the backend used for theMarc Fonvieille2021-05-191-0/+10
| | | | | build. This fixes the PDF versions.
* Improve SEO with the keywors meta tagSergio Carlavilla Delgado2021-05-041-0/+1
| | | | | | Add in all articles and books the tag list. Modify the theme to use the tag list defined in articles and books to generate the keywords meta tag
* Improve descriptions for some books and articlesAllan Jude2021-05-021-1/+1
| | | | | | | | | | Also add weights to some, to define the sort order in the index Put the more commonly used items at the top of their respective lists The improved descriptions were taken from the old books/articles list: https://www.freebsd.org/docs/books/ Sponsored-By: Klara Inc.
* Improve the SEO of the documentation portalSergio Carlavilla Delgado2021-05-011-1/+1
| | | | | | | Changes: - Add the description meta tag in the index, articles and books - Add a brief description in each article and book. - Remove the SVN expansion tag
* Fix typos, style and images pathsSergio Carlavilla Delgado2021-03-201-94/+305
| | | | | Global review of styles, typos and images paths in gjournal-desktop, releng, vinum and vm-design
* Fix manual pages macros in rc-scripting and linux-usersSergio Carlavilla Delgado2021-03-201-1/+1
|
* Use correct syntax markup for shellLi-Wen Hsu2021-03-141-5/+5
| | | | Approved by: carlavilla
* Multiple files: Fix 'shared' referencesCeri Davies2021-02-221-1/+1
| | | | | | | | The hier(7) man-page lists /usr/share as the location for architecture-independent files, so fix a few instances where the documentation referes to /usr/shared instead of /usr/share. PR: 253760
* Migrate doc to Hugo/AsciiDoctorSergio Carlavilla Delgado2021-01-251-0/+592
I'm very pleased to announce the release of our new website and documentation using the new toolchain with Hugo and AsciiDoctor. To get more information about the new toolchain please read the FreeBSD Documentation Project Primer[1], Hugo docs[2] and AsciiDoctor docs[3]. Acknowledgment: Benedict Reuschling <bcr@> Glen Barber <gjb@> Hiroki Sato <hrs@> Li-Wen Hsu <lwhsu@> Sean Chittenden <seanc@> The FreeBSD Foundation [1] https://docs.FreeBSD.org/en/books/fdp-primer/ [2] https://gohugo.io/documentation/ [3] https://docs.asciidoctor.org/home/ Approved by: doceng, core