All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mauro Carvalho Chehab <mchehab@s-opensource.com>
To: Jonathan Corbet <corbet@lwn.net>
Cc: "Linux Doc Mailing List" <linux-doc@vger.kernel.org>,
	"Mauro Carvalho Chehab" <mchehab@infradead.org>,
	"Markus Heiser" <markus.heiser@darmarit.de>,
	"Jani Nikula" <jani.nikula@linux.intel.com>,
	LKML <linux-kernel@vger.kernel.org>, "Greg KH" <greg@kroah.com>,
	"Rob Herring" <robh+dt@kernel.org>,
	"Mark Rutland" <mark.rutland@arm.com>,
	"Jean Delvare" <jdelvare@suse.com>,
	"Guenter Roeck" <linux@roeck-us.net>,
	"Karsten Keil" <isdn@linux-pingi.de>,
	"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Radim Krčmář" <rkrcmar@redhat.com>,
	"Wim Van Sebroeck" <wim@iguana.be>,
	"Harry Wei" <harryxiyou@gmail.com>,
	"Alexander Viro" <viro@zeniv.linux.org.uk>,
	"Miklos Szeredi" <miklos@szeredi.hu>,
	"David S. Miller" <davem@davemloft.net>,
	"Shuah Khan" <shuah@kernel.org>,
	"Mauro Carvalho Chehab" <mchehab@kernel.org>,
	"Philippe Loctaux" <phil@philippeloctaux.com>,
	"Peter Loeffler" <peter.loeffler@guruz.at>,
	"Doug Smythies" <doug.smythies@gmail.com>,
	"Alex Henrie" <alexhenrie24@gmail.com>,
	"Chris Metcalf" <cmetcalf@ezchip.com>,
	"Jakub Wilk" <jwilk@jwilk.net>,
	"Darren Hart" <dvhart@infradead.org>,
	"Eddie Kovsky" <ewk@edkovsky.org>,
	"Luis de Bethencourt" <luisbg@osg.samsung.com>,
	"Richard Weinberger" <richard@nod.at>,
	"SeongJae Park" <sj38.park@gmail.com>,
	"Masanari Iida" <standby24x7@gmail.com>,
	"Minchan Kim" <minchan@kernel.org>,
	"Geert Uytterhoeven" <geert@linux-m68k.org>,
	"Andrew Morton" <akpm@linux-foundation.org>,
	"Kalle Valo" <kvalo@codeaurora.org>,
	"Diego Viola" <diego.viola@gmail.com>,
	"Øyvind A. Holm" <sunny@sunbase.org>,
	"Manuel Pégourié-Gonnard" <mpg@elzevir.fr>,
	"Jiri Kosina" <jikos@kernel.org>,
	"Alexander Kapshuk" <alexander.kapshuk@gmail.com>,
	"Wei Jiangang" <weijg.fnst@cn.fujitsu.com>,
	devicetree@vger.kernel.org, linux-hwmon@vger.kernel.org,
	netdev@vger.kernel.org, stable@vger.kernel.org,
	kvm@vger.kernel.org, linux-watchdog@vger.kernel.org,
	linux-kernel@zh-kernel.org, linux-pcmcia@lists.infradead.org,
	linux-fsdevel@vger.kernel.org, linux-kselftest@vger.kernel.org
Subject: Re: [PATCH v4 29/29] docs-rst: move HOWTO and mentioned documents to development-process/
Date: Wed, 21 Sep 2016 08:56:07 -0300	[thread overview]
Message-ID: <20160921085607.764f22b6@vento.lan> (raw)
In-Reply-To: <e05d7a0ad23f6ec723b572f217e2ecc1f6123d1d.1474280152.git.mchehab@s-opensource.com>

Em Mon, 19 Sep 2016 08:08:03 -0300
Mauro Carvalho Chehab <mchehab@s-opensource.com> escreveu:

> In preparation to add those files to the Sphinx build logic,
> move them to development-process/ dir and rename their extension
> to RST.
> 
> Please notice that the main README file was not moved. It
> probably makes sense to move it too as well, in order to be
> able to parse it via Sphinx, but this could be counter-intuitive.
> 
> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>

Jon,

Just tested some alternative approaches for this patch:

1) I tried to use:
	../HOWTO

at the development-process/index.rst.

This didn't work, because of the file extension, as one might
expect. 

2) Use soft symlinks.

This approach worked.

See the enclosed patch.

If you prefer such approach, please apply this patch as well:
	[PATCH] docs-rst: add inter-document cross references

In order to do the cross-references between those documents.

PS.: It is still including SecurityBugs on the development
process book (and the directory was not renamed to a shorter
name).

I intend to work on a patchset adding an "user" book, where
SecurityBugs would fit better.

---

docs-rst: add documents to development-process
    
Add several documents to the development-process ReST book.
    
As we don't want renames, use symlinks instead, keeping those
documents on their original place.
    
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>

diff --git a/Documentation/development-process/Changes.rst b/Documentation/development-process/Changes.rst
new file mode 120000
index 000000000000..91698e7753f1
--- /dev/null
+++ b/Documentation/development-process/Changes.rst
@@ -0,0 +1 @@
+../Changes
\ No newline at end of file
diff --git a/Documentation/development-process/CodingStyle.rst b/Documentation/development-process/CodingStyle.rst
new file mode 120000
index 000000000000..0377b2fe8778
--- /dev/null
+++ b/Documentation/development-process/CodingStyle.rst
@@ -0,0 +1 @@
+../CodingStyle
\ No newline at end of file
diff --git a/Documentation/development-process/HOWTO.rst b/Documentation/development-process/HOWTO.rst
new file mode 120000
index 000000000000..10734efe8eab
--- /dev/null
+++ b/Documentation/development-process/HOWTO.rst
@@ -0,0 +1 @@
+../HOWTO
\ No newline at end of file
diff --git a/Documentation/development-process/ManagementStyle.rst b/Documentation/development-process/ManagementStyle.rst
new file mode 120000
index 000000000000..a7d15159c108
--- /dev/null
+++ b/Documentation/development-process/ManagementStyle.rst
@@ -0,0 +1 @@
+../ManagementStyle
\ No newline at end of file
diff --git a/Documentation/development-process/SecurityBugs.rst b/Documentation/development-process/SecurityBugs.rst
new file mode 120000
index 000000000000..fa5504256c04
--- /dev/null
+++ b/Documentation/development-process/SecurityBugs.rst
@@ -0,0 +1 @@
+../SecurityBugs
\ No newline at end of file
diff --git a/Documentation/development-process/SubmitChecklist.rst b/Documentation/development-process/SubmitChecklist.rst
new file mode 120000
index 000000000000..7b75ef138e89
--- /dev/null
+++ b/Documentation/development-process/SubmitChecklist.rst
@@ -0,0 +1 @@
+../SubmitChecklist
\ No newline at end of file
diff --git a/Documentation/development-process/SubmittingDrivers.rst b/Documentation/development-process/SubmittingDrivers.rst
new file mode 120000
index 000000000000..955fc75e6759
--- /dev/null
+++ b/Documentation/development-process/SubmittingDrivers.rst
@@ -0,0 +1 @@
+../SubmittingDrivers
\ No newline at end of file
diff --git a/Documentation/development-process/SubmittingPatches.rst b/Documentation/development-process/SubmittingPatches.rst
new file mode 120000
index 000000000000..bd9bb84255d4
--- /dev/null
+++ b/Documentation/development-process/SubmittingPatches.rst
@@ -0,0 +1 @@
+../SubmittingPatches
\ No newline at end of file
diff --git a/Documentation/development-process/applying-patches.rst b/Documentation/development-process/applying-patches.rst
new file mode 120000
index 000000000000..c124a067a16b
--- /dev/null
+++ b/Documentation/development-process/applying-patches.rst
@@ -0,0 +1 @@
+../applying-patches.txt
\ No newline at end of file
diff --git a/Documentation/development-process/email-clients.rst b/Documentation/development-process/email-clients.rst
new file mode 120000
index 000000000000..b4bbad729cca
--- /dev/null
+++ b/Documentation/development-process/email-clients.rst
@@ -0,0 +1 @@
+../email-clients.txt
\ No newline at end of file
diff --git a/Documentation/development-process/index.rst b/Documentation/development-process/index.rst
index c37475d91090..f54c15fe0ac1 100644
--- a/Documentation/development-process/index.rst
+++ b/Documentation/development-process/index.rst
@@ -1,3 +1,9 @@
+.. raw:: latex
+
+	\renewcommand\thesection*
+	\renewcommand\thesubsection*
+
+
 Linux Kernel Development Documentation
 ======================================
 
@@ -6,4 +12,18 @@ Contents:
 .. toctree::
    :maxdepth: 2
 
+   HOWTO
+   Changes
+   CodingStyle
+   SubmittingPatches
+   SubmittingDrivers
+   stable_api_nonsense
+   SecurityBugs
+   ManagementStyle
+   stable_kernel_rules
+   kernel-docs
+   applying-patches
+   email-clients
+   SubmitChecklist
+
    development-process
diff --git a/Documentation/development-process/kernel-docs.rst b/Documentation/development-process/kernel-docs.rst
new file mode 120000
index 000000000000..1075b84514ff
--- /dev/null
+++ b/Documentation/development-process/kernel-docs.rst
@@ -0,0 +1 @@
+../kernel-docs.txt
\ No newline at end of file
diff --git a/Documentation/development-process/stable_api_nonsense.rst b/Documentation/development-process/stable_api_nonsense.rst
new file mode 120000
index 000000000000..2c44a79fdeef
--- /dev/null
+++ b/Documentation/development-process/stable_api_nonsense.rst
@@ -0,0 +1 @@
+../stable_api_nonsense.txt
\ No newline at end of file
diff --git a/Documentation/development-process/stable_kernel_rules.rst b/Documentation/development-process/stable_kernel_rules.rst
new file mode 120000
index 000000000000..320a01411304
--- /dev/null
+++ b/Documentation/development-process/stable_kernel_rules.rst
@@ -0,0 +1 @@
+../stable_kernel_rules.txt
\ No newline at end of file

  reply	other threads:[~2016-09-21 11:56 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-19 11:07 [PATCH v4 00/29] Create a book for Kernel development Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 01/29] doc-rst: add CSS styles for :kbd: and :menuselection: Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 02/29] doc: development-process: convert it to ReST markup Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 03/29] doc: development-process: rename files to rst Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 04/29] docs-rst: create a book for the development process Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 05/29] Documentation/HOWTO: convert to ReST notation Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 06/29] Documentation/applying-patches.txt: convert it to ReST markup Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 07/29] Documentation/applying-patches.txt: Update the information there Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 08/29] Documentation/Changes: convert it to ReST markup Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 09/29] Documentation/Changes: add minimal requirements for documentation build Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 10/29] Documentation/CodingStyle: Convert to ReST markup Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 11/29] Documentation/CodingStyle: use the proper tag for verbatim font Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 12/29] Documentation/CodingStyle: replace underline markups Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 13/29] Documentation/CodingStyle: use the .. note:: markup where needed Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 14/29] Documentation/ManagementStyle: convert it to ReST markup Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 15/29] Documentation/SecurityBugs: " Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 16/29] Documentation/stable_api_nonsense.txt: " Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 17/29] Documentation/stable_kernel_rules.txt: " Mauro Carvalho Chehab
2016-09-20  7:08   ` Greg KH
2016-09-19 11:07 ` [PATCH v4 18/29] Documentation/SubmittingDrivers: " Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 19/29] Documentation/SubmittingPatches: " Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 20/29] Documentation/SubmittingPatches: enrich the Sphinx output Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 21/29] Documentation/kernel-docs.txt: convert it to ReST markup Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 22/29] Documentation/HOWTO: add cross-references to other documents Mauro Carvalho Chehab
2016-09-20  7:08   ` Greg KH
2016-09-19 11:07 ` [PATCH v4 23/29] Documentation/HOWTO: update information about generating documentation Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 24/29] Documentation/HOWTO: improve some markups to make it visually better Mauro Carvalho Chehab
2016-09-19 11:07 ` [PATCH v4 25/29] Documentation/HOWTO: adjust external link references Mauro Carvalho Chehab
2016-09-19 11:08 ` [PATCH v4 26/29] Documentation/SubmitChecklist: update kernel-doc task Mauro Carvalho Chehab
2016-09-19 11:08 ` [PATCH v4 27/29] Documentation/SubmitChecklist: convert it to ReST markup Mauro Carvalho Chehab
2016-09-19 11:08 ` [PATCH v4 28/29] Documentation/email-clients.txt: " Mauro Carvalho Chehab
2016-09-19 11:08 ` [PATCH v4 29/29] docs-rst: move HOWTO and mentioned documents to development-process/ Mauro Carvalho Chehab
2016-09-21 11:56   ` Mauro Carvalho Chehab [this message]
2016-09-21  0:44 ` [PATCH v4 00/29] Create a book for Kernel development Jonathan Corbet
2016-09-21  9:20   ` Mauro Carvalho Chehab

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160921085607.764f22b6@vento.lan \
    --to=mchehab@s-opensource.com \
    --cc=akpm@linux-foundation.org \
    --cc=alexander.kapshuk@gmail.com \
    --cc=alexhenrie24@gmail.com \
    --cc=cmetcalf@ezchip.com \
    --cc=corbet@lwn.net \
    --cc=davem@davemloft.net \
    --cc=devicetree@vger.kernel.org \
    --cc=diego.viola@gmail.com \
    --cc=doug.smythies@gmail.com \
    --cc=dvhart@infradead.org \
    --cc=ewk@edkovsky.org \
    --cc=geert@linux-m68k.org \
    --cc=greg@kroah.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=harryxiyou@gmail.com \
    --cc=isdn@linux-pingi.de \
    --cc=jani.nikula@linux.intel.com \
    --cc=jdelvare@suse.com \
    --cc=jikos@kernel.org \
    --cc=jwilk@jwilk.net \
    --cc=kvalo@codeaurora.org \
    --cc=kvm@vger.kernel.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-hwmon@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-kernel@zh-kernel.org \
    --cc=linux-kselftest@vger.kernel.org \
    --cc=linux-pcmcia@lists.infradead.org \
    --cc=linux-watchdog@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=luisbg@osg.samsung.com \
    --cc=mark.rutland@arm.com \
    --cc=markus.heiser@darmarit.de \
    --cc=mchehab@infradead.org \
    --cc=mchehab@kernel.org \
    --cc=miklos@szeredi.hu \
    --cc=minchan@kernel.org \
    --cc=mpg@elzevir.fr \
    --cc=netdev@vger.kernel.org \
    --cc=pbonzini@redhat.com \
    --cc=peter.loeffler@guruz.at \
    --cc=phil@philippeloctaux.com \
    --cc=richard@nod.at \
    --cc=rkrcmar@redhat.com \
    --cc=robh+dt@kernel.org \
    --cc=shuah@kernel.org \
    --cc=sj38.park@gmail.com \
    --cc=stable@vger.kernel.org \
    --cc=standby24x7@gmail.com \
    --cc=sunny@sunbase.org \
    --cc=viro@zeniv.linux.org.uk \
    --cc=weijg.fnst@cn.fujitsu.com \
    --cc=wim@iguana.be \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.