Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1482098

[PATCH v2 01/20] docs-rst: move HOWTO and mentioned documents to a separate dir

From Mauro Carvalho Chehab <mchehab@s-opensource.com>
Newsgroups linux.kernel
Subject [PATCH v2 01/20] docs-rst: move HOWTO and mentioned documents to a separate dir
Date 2016-09-13 04:30 +0200
Message-ID <sgLDX-3OW-1@gated-at.bofh.it> (permalink)
References <sgLuh-3Ll-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


In preparation to convert the Kernel development documentation
to ReST, move them to a separate 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>
---
 Documentation/{Changes => development-process/Changes.rst}                | 0
 Documentation/{CodingStyle => development-process/CodingStyle.rst}        | 0
 Documentation/{HOWTO => development-process/HOWTO.rst}                    | 0
 .../{ManagementStyle => development-process/ManagementStyle.rst}          | 0
 Documentation/{SecurityBugs => development-process/SecurityBugs.rst}      | 0
 .../{SubmittingDrivers => development-process/SubmittingDrivers.rst}      | 0
 .../{SubmittingPatches => development-process/SubmittingPatches.rst}      | 0
 .../{applying-patches.txt => development-process/applying-patches.rst}    | 0
 Documentation/{kernel-docs.txt => development-process/kernel-docs.rst}    | 0
 .../stable_api_nonsense.rst}                                              | 0
 .../stable_kernel_rules.rst}                                              | 0
 11 files changed, 0 insertions(+), 0 deletions(-)
 rename Documentation/{Changes => development-process/Changes.rst} (100%)
 rename Documentation/{CodingStyle => development-process/CodingStyle.rst} (100%)
 rename Documentation/{HOWTO => development-process/HOWTO.rst} (100%)
 rename Documentation/{ManagementStyle => development-process/ManagementStyle.rst} (100%)
 rename Documentation/{SecurityBugs => development-process/SecurityBugs.rst} (100%)
 rename Documentation/{SubmittingDrivers => development-process/SubmittingDrivers.rst} (100%)
 rename Documentation/{SubmittingPatches => development-process/SubmittingPatches.rst} (100%)
 rename Documentation/{applying-patches.txt => development-process/applying-patches.rst} (100%)
 rename Documentation/{kernel-docs.txt => development-process/kernel-docs.rst} (100%)
 rename Documentation/{stable_api_nonsense.txt => development-process/stable_api_nonsense.rst} (100%)
 rename Documentation/{stable_kernel_rules.txt => development-process/stable_kernel_rules.rst} (100%)

diff --git a/Documentation/Changes b/Documentation/development-process/Changes.rst
similarity index 100%
rename from Documentation/Changes
rename to Documentation/development-process/Changes.rst
diff --git a/Documentation/CodingStyle b/Documentation/development-process/CodingStyle.rst
similarity index 100%
rename from Documentation/CodingStyle
rename to Documentation/development-process/CodingStyle.rst
diff --git a/Documentation/HOWTO b/Documentation/development-process/HOWTO.rst
similarity index 100%
rename from Documentation/HOWTO
rename to Documentation/development-process/HOWTO.rst
diff --git a/Documentation/ManagementStyle b/Documentation/development-process/ManagementStyle.rst
similarity index 100%
rename from Documentation/ManagementStyle
rename to Documentation/development-process/ManagementStyle.rst
diff --git a/Documentation/SecurityBugs b/Documentation/development-process/SecurityBugs.rst
similarity index 100%
rename from Documentation/SecurityBugs
rename to Documentation/development-process/SecurityBugs.rst
diff --git a/Documentation/SubmittingDrivers b/Documentation/development-process/SubmittingDrivers.rst
similarity index 100%
rename from Documentation/SubmittingDrivers
rename to Documentation/development-process/SubmittingDrivers.rst
diff --git a/Documentation/SubmittingPatches b/Documentation/development-process/SubmittingPatches.rst
similarity index 100%
rename from Documentation/SubmittingPatches
rename to Documentation/development-process/SubmittingPatches.rst
diff --git a/Documentation/applying-patches.txt b/Documentation/development-process/applying-patches.rst
similarity index 100%
rename from Documentation/applying-patches.txt
rename to Documentation/development-process/applying-patches.rst
diff --git a/Documentation/kernel-docs.txt b/Documentation/development-process/kernel-docs.rst
similarity index 100%
rename from Documentation/kernel-docs.txt
rename to Documentation/development-process/kernel-docs.rst
diff --git a/Documentation/stable_api_nonsense.txt b/Documentation/development-process/stable_api_nonsense.rst
similarity index 100%
rename from Documentation/stable_api_nonsense.txt
rename to Documentation/development-process/stable_api_nonsense.rst
diff --git a/Documentation/stable_kernel_rules.txt b/Documentation/development-process/stable_kernel_rules.rst
similarity index 100%
rename from Documentation/stable_kernel_rules.txt
rename to Documentation/development-process/stable_kernel_rules.rst
-- 
2.7.4

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v2 00/20] Create a book for Kernel development Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-13 04:20 +0200
  [PATCH v2 18/20] doc: development-process: convert it to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-13 04:20 +0200
  [PATCH v2 17/20] doc: development-process: rename files to rst Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-13 04:20 +0200
  [PATCH v2 11/20] SecurityBugs.rst: convert it to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-13 04:20 +0200
  [PATCH v2 14/20] SubmittingDrivers.rst: convert it to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-13 04:20 +0200
  [PATCH v2 01/20] docs-rst: move HOWTO and mentioned documents to a separate dir Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-13 04:30 +0200
  [PATCH v2 16/20] HOWTO.rst: add cross-references to other documents Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-13 04:30 +0200
  [PATCH v2 13/20] stable_kernel_rules.rst: convert it to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-13 04:30 +0200
  [PATCH v2 02/20] docs-rst: HOWTO.rst: convert to ReST notation Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-13 04:30 +0200
  [PATCH v2 12/20] stable_api_nonsense.rst: convert it to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-13 04:30 +0200
  [PATCH v2 04/20] docs-rst: Changes.rst: convert it to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-13 04:30 +0200
  [PATCH v2 10/20] ManagementStyle.rst: convert it to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-13 04:30 +0200
  [PATCH v2 06/20] CodingStyle.rst: use the proper tag for verbatim font Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-13 04:30 +0200
  [PATCH v2 05/20] docs-rst: CodingStyle.rst: Convert to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-13 04:30 +0200
    Re: [PATCH v2 05/20] docs-rst: CodingStyle.rst: Convert to ReST  markup Joe Perches <joe@perches.com> - 2016-09-13 05:00 +0200
      Re: [PATCH v2 05/20] docs-rst: CodingStyle.rst: Convert to ReST  markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-13 10:50 +0200
  [PATCH v2 07/20] CodingStyle.rst: replace underline markups Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-13 04:30 +0200
  [PATCH v2 03/20] docs-rst: applying-patches.rst: convert it to ReST markup Mauro Carvalho Chehab <mchehab@s-opensource.com> - 2016-09-13 04:30 +0200

csiph-web