From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 164E9138350 for ; Wed, 15 Jan 2020 21:30:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 14B16E0867; Wed, 15 Jan 2020 21:30:21 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E1AE4E0867 for ; Wed, 15 Jan 2020 21:30:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5685834E0C9 for ; Wed, 15 Jan 2020 21:30:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15355B5 for ; Wed, 15 Jan 2020 21:30:00 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1579123727.710b619980ed23811cbc0841466b9502a2c92278.ulm@gentoo> Subject: [gentoo-commits] proj/devmanual:master commit in: appendices/devbook-guide/ X-VCS-Repository: proj/devmanual X-VCS-Files: appendices/devbook-guide/text.xml X-VCS-Directories: appendices/devbook-guide/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 710b619980ed23811cbc0841466b9502a2c92278 X-VCS-Branch: master Date: Wed, 15 Jan 2020 21:30:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e6aba49f-7607-4670-a613-d43de4dd9deb X-Archives-Hash: 04e7b0131ae420a3bdb9e3bec1f4b117 commit: 710b619980ed23811cbc0841466b9502a2c92278 Author: Ulrich Müller gentoo org> AuthorDate: Wed Jan 15 21:09:28 2020 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Wed Jan 15 21:28:47 2020 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=710b6199 devbook-guide: Rename from "GuideXML guide" to "DevBook XML guide". Signed-off-by: Ulrich Müller gentoo.org> appendices/devbook-guide/text.xml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/appendices/devbook-guide/text.xml b/appendices/devbook-guide/text.xml index 1e73104..35ecace 100644 --- a/appendices/devbook-guide/text.xml +++ b/appendices/devbook-guide/text.xml @@ -1,16 +1,16 @@ -Gentoo GuideXML Guide +Gentoo DevBook XML Guide
-GuideXML basics +DevBook XML basics -GuideXML design goals +DevBook XML design goals

-The guideXML syntax is lightweight yet expressive, so that it is easy to +The DevBook XML syntax is lightweight yet expressive, so that it is easy to learn yet also provides all the features we need for the creation of web documentation. The number of tags is kept to a minimum just those we need. This makes it easy to transform guide into other formats, such as DocBook @@ -18,7 +18,7 @@ XML/SGML or web-ready HTML.

-The goal is to make it easy to create and transform guideXML +The goal is to make it easy to create and transform DevBook XML documents.

@@ -27,21 +27,21 @@ documents.
-GuideXML +Devbook XML Basic structure

-Let's start learning the GuideXML syntax. We'll start with the the initial -tags used in a GuideXML document: +Let's start learning the DevBook XML syntax. We'll start with the initial tags +used in a DevBook XML document:

- + <?xml version="1.0" encoding="UTF-8"?> <guide self="appendices/devbook-guide/"> <chapter> -<title>Gentoo GuideXML Guide</title> +<title>Gentoo DevBook XML Guide</title>

@@ -88,7 +88,7 @@ title. Here's an example section with a single subsection, consisting of a paragraph:

- + <section> <title>This is my section</title> <subsection> @@ -408,8 +408,8 @@ for adding images without captions, borders, etc.

-GuideXML supports a simplified table syntax similar to that of HTML. To start a -table, use a <table> tag. Start a row with a <tr> +DevBook XML supports a simplified table syntax similar to that of HTML. To start +a table, use a <table> tag. Start a row with a <tr> tag. However, for inserting actual table data, we don't support the HTML <td> tag; instead, use the <th> if you are inserting a header, and <ti> if you are inserting a normal informational @@ -495,7 +495,7 @@ admonitions. A definition list comprises:

-GuideXML makes it really easy to reference other parts of the document using +DevBook XML makes it really easy to reference other parts of the document using hyperlinks. You can create a link pointing to another chapter, like Ebuild File Format, by typing <uri link="::ebuild-writing/file-format/">Ebuild File @@ -544,8 +544,8 @@ Both sections are described next.

-Newlines must be placed immediately after every -GuideXML-tag (both opening as closing), except for: +Newlines must be placed immediately after every DevBook XML tag +(both opening as closing), except for: <version>, <date>, <title>, <th>, <ti>, <li>, <i>, <e>, @@ -577,7 +577,7 @@ parent XML-tags are <tr> (from <table>), <ul>, <ol> and <dl>. If indentation is used, it must be two spaces for each indentation. That means no tabs and not more spaces. Besides, tabs are not allowed in -GuideXML documents. +DevBook XML documents.