linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] Add howto.rst Korean translation into build system
@ 2016-11-08 12:26 SeongJae Park
  2016-11-08 12:26 ` [PATCH 1/3] docs/driver-api: Apply changed source file names SeongJae Park
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: SeongJae Park @ 2016-11-08 12:26 UTC (permalink / raw)
  To: corbet; +Cc: minchan, linux-doc, linux-kernel, SeongJae Park

This patchset does
- fix trivial document build warnings,
- move translations into translations/ subdirectory, and
- insert howto.rst Korean translation into document build system.

It is based on linux-next for 20161108 and patches[0] for the translation.

[0] https://www.spinics.net/lists/kernel/msg2373556.html

SeongJae Park (3):
  docs/driver-api: Apply changed source file names
  Documentation: Move translations into a sub-directory
  Documentation: Add HOWTO Korean translation into rst based build
    system

 Documentation/driver-api/infrastructure.rst                  |  8 ++++----
 Documentation/index.rst                                      |  8 ++++++++
 Documentation/{ => translations}/ja_JP/HOWTO                 |  0
 Documentation/{ => translations}/ja_JP/SubmitChecklist       |  0
 Documentation/{ => translations}/ja_JP/SubmittingPatches     |  0
 .../{ => translations}/ja_JP/stable_api_nonsense.txt         |  0
 .../{ => translations}/ja_JP/stable_kernel_rules.txt         |  0
 Documentation/{ko_KR/HOWTO => translations/ko_KR/howto.rst}  |  0
 Documentation/translations/ko_KR/index.rst                   | 12 ++++++++++++
 Documentation/{ => translations}/ko_KR/memory-barriers.txt   |  0
 .../{ => translations}/ko_KR/stable_api_nonsense.txt         |  0
 Documentation/{ => translations}/zh_CN/CodingStyle           |  0
 Documentation/{ => translations}/zh_CN/HOWTO                 |  0
 Documentation/{ => translations}/zh_CN/IRQ.txt               |  0
 Documentation/{ => translations}/zh_CN/SecurityBugs          |  0
 Documentation/{ => translations}/zh_CN/SubmittingDrivers     |  0
 Documentation/{ => translations}/zh_CN/SubmittingPatches     |  0
 Documentation/{ => translations}/zh_CN/arm/Booting           |  0
 .../{ => translations}/zh_CN/arm/kernel_user_helpers.txt     |  0
 Documentation/{ => translations}/zh_CN/arm64/booting.txt     |  0
 .../{ => translations}/zh_CN/arm64/legacy_instructions.txt   |  0
 Documentation/{ => translations}/zh_CN/arm64/memory.txt      |  0
 .../{ => translations}/zh_CN/arm64/silicon-errata.txt        |  0
 .../{ => translations}/zh_CN/arm64/tagged-pointers.txt       |  0
 Documentation/{ => translations}/zh_CN/basic_profiling.txt   |  0
 Documentation/{ => translations}/zh_CN/email-clients.txt     |  0
 Documentation/{ => translations}/zh_CN/filesystems/sysfs.txt |  0
 Documentation/{ => translations}/zh_CN/gpio.txt              |  0
 Documentation/{ => translations}/zh_CN/io_ordering.txt       |  0
 Documentation/{ => translations}/zh_CN/magic-number.txt      |  0
 Documentation/{ => translations}/zh_CN/oops-tracing.txt      |  0
 Documentation/{ => translations}/zh_CN/sparse.txt            |  0
 .../{ => translations}/zh_CN/stable_api_nonsense.txt         |  0
 .../{ => translations}/zh_CN/stable_kernel_rules.txt         |  0
 .../{ => translations}/zh_CN/video4linux/omap3isp.txt        |  0
 .../{ => translations}/zh_CN/video4linux/v4l2-framework.txt  |  0
 .../{ => translations}/zh_CN/volatile-considered-harmful.txt |  0
 37 files changed, 24 insertions(+), 4 deletions(-)
 rename Documentation/{ => translations}/ja_JP/HOWTO (100%)
 rename Documentation/{ => translations}/ja_JP/SubmitChecklist (100%)
 rename Documentation/{ => translations}/ja_JP/SubmittingPatches (100%)
 rename Documentation/{ => translations}/ja_JP/stable_api_nonsense.txt (100%)
 rename Documentation/{ => translations}/ja_JP/stable_kernel_rules.txt (100%)
 rename Documentation/{ko_KR/HOWTO => translations/ko_KR/howto.rst} (100%)
 create mode 100644 Documentation/translations/ko_KR/index.rst
 rename Documentation/{ => translations}/ko_KR/memory-barriers.txt (100%)
 rename Documentation/{ => translations}/ko_KR/stable_api_nonsense.txt (100%)
 rename Documentation/{ => translations}/zh_CN/CodingStyle (100%)
 rename Documentation/{ => translations}/zh_CN/HOWTO (100%)
 rename Documentation/{ => translations}/zh_CN/IRQ.txt (100%)
 rename Documentation/{ => translations}/zh_CN/SecurityBugs (100%)
 rename Documentation/{ => translations}/zh_CN/SubmittingDrivers (100%)
 rename Documentation/{ => translations}/zh_CN/SubmittingPatches (100%)
 rename Documentation/{ => translations}/zh_CN/arm/Booting (100%)
 rename Documentation/{ => translations}/zh_CN/arm/kernel_user_helpers.txt (100%)
 rename Documentation/{ => translations}/zh_CN/arm64/booting.txt (100%)
 rename Documentation/{ => translations}/zh_CN/arm64/legacy_instructions.txt (100%)
 rename Documentation/{ => translations}/zh_CN/arm64/memory.txt (100%)
 rename Documentation/{ => translations}/zh_CN/arm64/silicon-errata.txt (100%)
 rename Documentation/{ => translations}/zh_CN/arm64/tagged-pointers.txt (100%)
 rename Documentation/{ => translations}/zh_CN/basic_profiling.txt (100%)
 rename Documentation/{ => translations}/zh_CN/email-clients.txt (100%)
 rename Documentation/{ => translations}/zh_CN/filesystems/sysfs.txt (100%)
 rename Documentation/{ => translations}/zh_CN/gpio.txt (100%)
 rename Documentation/{ => translations}/zh_CN/io_ordering.txt (100%)
 rename Documentation/{ => translations}/zh_CN/magic-number.txt (100%)
 rename Documentation/{ => translations}/zh_CN/oops-tracing.txt (100%)
 rename Documentation/{ => translations}/zh_CN/sparse.txt (100%)
 rename Documentation/{ => translations}/zh_CN/stable_api_nonsense.txt (100%)
 rename Documentation/{ => translations}/zh_CN/stable_kernel_rules.txt (100%)
 rename Documentation/{ => translations}/zh_CN/video4linux/omap3isp.txt (100%)
 rename Documentation/{ => translations}/zh_CN/video4linux/v4l2-framework.txt (100%)
 rename Documentation/{ => translations}/zh_CN/volatile-considered-harmful.txt (100%)

-- 
2.10.0

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/3] docs/driver-api: Apply changed source file names
  2016-11-08 12:26 [PATCH 0/3] Add howto.rst Korean translation into build system SeongJae Park
@ 2016-11-08 12:26 ` SeongJae Park
  2016-11-08 12:26 ` [PATCH 2/3] Documentation: Move translations into a sub-directory SeongJae Park
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: SeongJae Park @ 2016-11-08 12:26 UTC (permalink / raw)
  To: corbet; +Cc: minchan, linux-doc, linux-kernel, SeongJae Park

Few files under dma-buf/ changed their names but the changes didn't
applied to a document that referencing them.  It is causing few
documentation build warnings.  This commit fixes the problems by
applying changed file names on the document.

Signed-off-by: SeongJae Park <sj38.park@gmail.com>
---
 Documentation/driver-api/infrastructure.rst | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Documentation/driver-api/infrastructure.rst b/Documentation/driver-api/infrastructure.rst
index 5d50d6733db3..a0d65eb49055 100644
--- a/Documentation/driver-api/infrastructure.rst
+++ b/Documentation/driver-api/infrastructure.rst
@@ -86,10 +86,10 @@ reservation
 fence
 ~~~~~
 
-.. kernel-doc:: drivers/dma-buf/fence.c
+.. kernel-doc:: drivers/dma-buf/dma-fence.c
    :export:
 
-.. kernel-doc:: include/linux/fence.h
+.. kernel-doc:: include/linux/dma-fence.h
    :internal:
 
 .. kernel-doc:: drivers/dma-buf/seqno-fence.c
@@ -98,10 +98,10 @@ fence
 .. kernel-doc:: include/linux/seqno-fence.h
    :internal:
 
-.. kernel-doc:: drivers/dma-buf/fence-array.c
+.. kernel-doc:: drivers/dma-buf/dma-fence-array.c
    :export:
 
-.. kernel-doc:: include/linux/fence-array.h
+.. kernel-doc:: include/linux/dma-fence-array.h
    :internal:
 
 .. kernel-doc:: drivers/dma-buf/reservation.c
-- 
2.10.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/3] Documentation: Move translations into a sub-directory
  2016-11-08 12:26 [PATCH 0/3] Add howto.rst Korean translation into build system SeongJae Park
  2016-11-08 12:26 ` [PATCH 1/3] docs/driver-api: Apply changed source file names SeongJae Park
@ 2016-11-08 12:26 ` SeongJae Park
  2016-11-08 12:26 ` [PATCH 3/3] Documentation: Add HOWTO Korean translation into rst based build system SeongJae Park
  2016-11-13 18:59 ` [PATCH 0/3] Add howto.rst Korean translation into " Jonathan Corbet
  3 siblings, 0 replies; 5+ messages in thread
From: SeongJae Park @ 2016-11-08 12:26 UTC (permalink / raw)
  To: corbet; +Cc: minchan, linux-doc, linux-kernel, SeongJae Park

Signed-off-by: SeongJae Park <sj38.park@gmail.com>
---
 Documentation/{ => translations}/ja_JP/HOWTO                           | 0
 Documentation/{ => translations}/ja_JP/SubmitChecklist                 | 0
 Documentation/{ => translations}/ja_JP/SubmittingPatches               | 0
 Documentation/{ => translations}/ja_JP/stable_api_nonsense.txt         | 0
 Documentation/{ => translations}/ja_JP/stable_kernel_rules.txt         | 0
 Documentation/{ => translations}/ko_KR/HOWTO                           | 0
 Documentation/{ => translations}/ko_KR/memory-barriers.txt             | 0
 Documentation/{ => translations}/ko_KR/stable_api_nonsense.txt         | 0
 Documentation/{ => translations}/zh_CN/CodingStyle                     | 0
 Documentation/{ => translations}/zh_CN/HOWTO                           | 0
 Documentation/{ => translations}/zh_CN/IRQ.txt                         | 0
 Documentation/{ => translations}/zh_CN/SecurityBugs                    | 0
 Documentation/{ => translations}/zh_CN/SubmittingDrivers               | 0
 Documentation/{ => translations}/zh_CN/SubmittingPatches               | 0
 Documentation/{ => translations}/zh_CN/arm/Booting                     | 0
 Documentation/{ => translations}/zh_CN/arm/kernel_user_helpers.txt     | 0
 Documentation/{ => translations}/zh_CN/arm64/booting.txt               | 0
 Documentation/{ => translations}/zh_CN/arm64/legacy_instructions.txt   | 0
 Documentation/{ => translations}/zh_CN/arm64/memory.txt                | 0
 Documentation/{ => translations}/zh_CN/arm64/silicon-errata.txt        | 0
 Documentation/{ => translations}/zh_CN/arm64/tagged-pointers.txt       | 0
 Documentation/{ => translations}/zh_CN/basic_profiling.txt             | 0
 Documentation/{ => translations}/zh_CN/email-clients.txt               | 0
 Documentation/{ => translations}/zh_CN/filesystems/sysfs.txt           | 0
 Documentation/{ => translations}/zh_CN/gpio.txt                        | 0
 Documentation/{ => translations}/zh_CN/io_ordering.txt                 | 0
 Documentation/{ => translations}/zh_CN/magic-number.txt                | 0
 Documentation/{ => translations}/zh_CN/oops-tracing.txt                | 0
 Documentation/{ => translations}/zh_CN/sparse.txt                      | 0
 Documentation/{ => translations}/zh_CN/stable_api_nonsense.txt         | 0
 Documentation/{ => translations}/zh_CN/stable_kernel_rules.txt         | 0
 Documentation/{ => translations}/zh_CN/video4linux/omap3isp.txt        | 0
 Documentation/{ => translations}/zh_CN/video4linux/v4l2-framework.txt  | 0
 Documentation/{ => translations}/zh_CN/volatile-considered-harmful.txt | 0
 34 files changed, 0 insertions(+), 0 deletions(-)
 rename Documentation/{ => translations}/ja_JP/HOWTO (100%)
 rename Documentation/{ => translations}/ja_JP/SubmitChecklist (100%)
 rename Documentation/{ => translations}/ja_JP/SubmittingPatches (100%)
 rename Documentation/{ => translations}/ja_JP/stable_api_nonsense.txt (100%)
 rename Documentation/{ => translations}/ja_JP/stable_kernel_rules.txt (100%)
 rename Documentation/{ => translations}/ko_KR/HOWTO (100%)
 rename Documentation/{ => translations}/ko_KR/memory-barriers.txt (100%)
 rename Documentation/{ => translations}/ko_KR/stable_api_nonsense.txt (100%)
 rename Documentation/{ => translations}/zh_CN/CodingStyle (100%)
 rename Documentation/{ => translations}/zh_CN/HOWTO (100%)
 rename Documentation/{ => translations}/zh_CN/IRQ.txt (100%)
 rename Documentation/{ => translations}/zh_CN/SecurityBugs (100%)
 rename Documentation/{ => translations}/zh_CN/SubmittingDrivers (100%)
 rename Documentation/{ => translations}/zh_CN/SubmittingPatches (100%)
 rename Documentation/{ => translations}/zh_CN/arm/Booting (100%)
 rename Documentation/{ => translations}/zh_CN/arm/kernel_user_helpers.txt (100%)
 rename Documentation/{ => translations}/zh_CN/arm64/booting.txt (100%)
 rename Documentation/{ => translations}/zh_CN/arm64/legacy_instructions.txt (100%)
 rename Documentation/{ => translations}/zh_CN/arm64/memory.txt (100%)
 rename Documentation/{ => translations}/zh_CN/arm64/silicon-errata.txt (100%)
 rename Documentation/{ => translations}/zh_CN/arm64/tagged-pointers.txt (100%)
 rename Documentation/{ => translations}/zh_CN/basic_profiling.txt (100%)
 rename Documentation/{ => translations}/zh_CN/email-clients.txt (100%)
 rename Documentation/{ => translations}/zh_CN/filesystems/sysfs.txt (100%)
 rename Documentation/{ => translations}/zh_CN/gpio.txt (100%)
 rename Documentation/{ => translations}/zh_CN/io_ordering.txt (100%)
 rename Documentation/{ => translations}/zh_CN/magic-number.txt (100%)
 rename Documentation/{ => translations}/zh_CN/oops-tracing.txt (100%)
 rename Documentation/{ => translations}/zh_CN/sparse.txt (100%)
 rename Documentation/{ => translations}/zh_CN/stable_api_nonsense.txt (100%)
 rename Documentation/{ => translations}/zh_CN/stable_kernel_rules.txt (100%)
 rename Documentation/{ => translations}/zh_CN/video4linux/omap3isp.txt (100%)
 rename Documentation/{ => translations}/zh_CN/video4linux/v4l2-framework.txt (100%)
 rename Documentation/{ => translations}/zh_CN/volatile-considered-harmful.txt (100%)

diff --git a/Documentation/ja_JP/HOWTO b/Documentation/translations/ja_JP/HOWTO
similarity index 100%
rename from Documentation/ja_JP/HOWTO
rename to Documentation/translations/ja_JP/HOWTO
diff --git a/Documentation/ja_JP/SubmitChecklist b/Documentation/translations/ja_JP/SubmitChecklist
similarity index 100%
rename from Documentation/ja_JP/SubmitChecklist
rename to Documentation/translations/ja_JP/SubmitChecklist
diff --git a/Documentation/ja_JP/SubmittingPatches b/Documentation/translations/ja_JP/SubmittingPatches
similarity index 100%
rename from Documentation/ja_JP/SubmittingPatches
rename to Documentation/translations/ja_JP/SubmittingPatches
diff --git a/Documentation/ja_JP/stable_api_nonsense.txt b/Documentation/translations/ja_JP/stable_api_nonsense.txt
similarity index 100%
rename from Documentation/ja_JP/stable_api_nonsense.txt
rename to Documentation/translations/ja_JP/stable_api_nonsense.txt
diff --git a/Documentation/ja_JP/stable_kernel_rules.txt b/Documentation/translations/ja_JP/stable_kernel_rules.txt
similarity index 100%
rename from Documentation/ja_JP/stable_kernel_rules.txt
rename to Documentation/translations/ja_JP/stable_kernel_rules.txt
diff --git a/Documentation/ko_KR/HOWTO b/Documentation/translations/ko_KR/HOWTO
similarity index 100%
rename from Documentation/ko_KR/HOWTO
rename to Documentation/translations/ko_KR/HOWTO
diff --git a/Documentation/ko_KR/memory-barriers.txt b/Documentation/translations/ko_KR/memory-barriers.txt
similarity index 100%
rename from Documentation/ko_KR/memory-barriers.txt
rename to Documentation/translations/ko_KR/memory-barriers.txt
diff --git a/Documentation/ko_KR/stable_api_nonsense.txt b/Documentation/translations/ko_KR/stable_api_nonsense.txt
similarity index 100%
rename from Documentation/ko_KR/stable_api_nonsense.txt
rename to Documentation/translations/ko_KR/stable_api_nonsense.txt
diff --git a/Documentation/zh_CN/CodingStyle b/Documentation/translations/zh_CN/CodingStyle
similarity index 100%
rename from Documentation/zh_CN/CodingStyle
rename to Documentation/translations/zh_CN/CodingStyle
diff --git a/Documentation/zh_CN/HOWTO b/Documentation/translations/zh_CN/HOWTO
similarity index 100%
rename from Documentation/zh_CN/HOWTO
rename to Documentation/translations/zh_CN/HOWTO
diff --git a/Documentation/zh_CN/IRQ.txt b/Documentation/translations/zh_CN/IRQ.txt
similarity index 100%
rename from Documentation/zh_CN/IRQ.txt
rename to Documentation/translations/zh_CN/IRQ.txt
diff --git a/Documentation/zh_CN/SecurityBugs b/Documentation/translations/zh_CN/SecurityBugs
similarity index 100%
rename from Documentation/zh_CN/SecurityBugs
rename to Documentation/translations/zh_CN/SecurityBugs
diff --git a/Documentation/zh_CN/SubmittingDrivers b/Documentation/translations/zh_CN/SubmittingDrivers
similarity index 100%
rename from Documentation/zh_CN/SubmittingDrivers
rename to Documentation/translations/zh_CN/SubmittingDrivers
diff --git a/Documentation/zh_CN/SubmittingPatches b/Documentation/translations/zh_CN/SubmittingPatches
similarity index 100%
rename from Documentation/zh_CN/SubmittingPatches
rename to Documentation/translations/zh_CN/SubmittingPatches
diff --git a/Documentation/zh_CN/arm/Booting b/Documentation/translations/zh_CN/arm/Booting
similarity index 100%
rename from Documentation/zh_CN/arm/Booting
rename to Documentation/translations/zh_CN/arm/Booting
diff --git a/Documentation/zh_CN/arm/kernel_user_helpers.txt b/Documentation/translations/zh_CN/arm/kernel_user_helpers.txt
similarity index 100%
rename from Documentation/zh_CN/arm/kernel_user_helpers.txt
rename to Documentation/translations/zh_CN/arm/kernel_user_helpers.txt
diff --git a/Documentation/zh_CN/arm64/booting.txt b/Documentation/translations/zh_CN/arm64/booting.txt
similarity index 100%
rename from Documentation/zh_CN/arm64/booting.txt
rename to Documentation/translations/zh_CN/arm64/booting.txt
diff --git a/Documentation/zh_CN/arm64/legacy_instructions.txt b/Documentation/translations/zh_CN/arm64/legacy_instructions.txt
similarity index 100%
rename from Documentation/zh_CN/arm64/legacy_instructions.txt
rename to Documentation/translations/zh_CN/arm64/legacy_instructions.txt
diff --git a/Documentation/zh_CN/arm64/memory.txt b/Documentation/translations/zh_CN/arm64/memory.txt
similarity index 100%
rename from Documentation/zh_CN/arm64/memory.txt
rename to Documentation/translations/zh_CN/arm64/memory.txt
diff --git a/Documentation/zh_CN/arm64/silicon-errata.txt b/Documentation/translations/zh_CN/arm64/silicon-errata.txt
similarity index 100%
rename from Documentation/zh_CN/arm64/silicon-errata.txt
rename to Documentation/translations/zh_CN/arm64/silicon-errata.txt
diff --git a/Documentation/zh_CN/arm64/tagged-pointers.txt b/Documentation/translations/zh_CN/arm64/tagged-pointers.txt
similarity index 100%
rename from Documentation/zh_CN/arm64/tagged-pointers.txt
rename to Documentation/translations/zh_CN/arm64/tagged-pointers.txt
diff --git a/Documentation/zh_CN/basic_profiling.txt b/Documentation/translations/zh_CN/basic_profiling.txt
similarity index 100%
rename from Documentation/zh_CN/basic_profiling.txt
rename to Documentation/translations/zh_CN/basic_profiling.txt
diff --git a/Documentation/zh_CN/email-clients.txt b/Documentation/translations/zh_CN/email-clients.txt
similarity index 100%
rename from Documentation/zh_CN/email-clients.txt
rename to Documentation/translations/zh_CN/email-clients.txt
diff --git a/Documentation/zh_CN/filesystems/sysfs.txt b/Documentation/translations/zh_CN/filesystems/sysfs.txt
similarity index 100%
rename from Documentation/zh_CN/filesystems/sysfs.txt
rename to Documentation/translations/zh_CN/filesystems/sysfs.txt
diff --git a/Documentation/zh_CN/gpio.txt b/Documentation/translations/zh_CN/gpio.txt
similarity index 100%
rename from Documentation/zh_CN/gpio.txt
rename to Documentation/translations/zh_CN/gpio.txt
diff --git a/Documentation/zh_CN/io_ordering.txt b/Documentation/translations/zh_CN/io_ordering.txt
similarity index 100%
rename from Documentation/zh_CN/io_ordering.txt
rename to Documentation/translations/zh_CN/io_ordering.txt
diff --git a/Documentation/zh_CN/magic-number.txt b/Documentation/translations/zh_CN/magic-number.txt
similarity index 100%
rename from Documentation/zh_CN/magic-number.txt
rename to Documentation/translations/zh_CN/magic-number.txt
diff --git a/Documentation/zh_CN/oops-tracing.txt b/Documentation/translations/zh_CN/oops-tracing.txt
similarity index 100%
rename from Documentation/zh_CN/oops-tracing.txt
rename to Documentation/translations/zh_CN/oops-tracing.txt
diff --git a/Documentation/zh_CN/sparse.txt b/Documentation/translations/zh_CN/sparse.txt
similarity index 100%
rename from Documentation/zh_CN/sparse.txt
rename to Documentation/translations/zh_CN/sparse.txt
diff --git a/Documentation/zh_CN/stable_api_nonsense.txt b/Documentation/translations/zh_CN/stable_api_nonsense.txt
similarity index 100%
rename from Documentation/zh_CN/stable_api_nonsense.txt
rename to Documentation/translations/zh_CN/stable_api_nonsense.txt
diff --git a/Documentation/zh_CN/stable_kernel_rules.txt b/Documentation/translations/zh_CN/stable_kernel_rules.txt
similarity index 100%
rename from Documentation/zh_CN/stable_kernel_rules.txt
rename to Documentation/translations/zh_CN/stable_kernel_rules.txt
diff --git a/Documentation/zh_CN/video4linux/omap3isp.txt b/Documentation/translations/zh_CN/video4linux/omap3isp.txt
similarity index 100%
rename from Documentation/zh_CN/video4linux/omap3isp.txt
rename to Documentation/translations/zh_CN/video4linux/omap3isp.txt
diff --git a/Documentation/zh_CN/video4linux/v4l2-framework.txt b/Documentation/translations/zh_CN/video4linux/v4l2-framework.txt
similarity index 100%
rename from Documentation/zh_CN/video4linux/v4l2-framework.txt
rename to Documentation/translations/zh_CN/video4linux/v4l2-framework.txt
diff --git a/Documentation/zh_CN/volatile-considered-harmful.txt b/Documentation/translations/zh_CN/volatile-considered-harmful.txt
similarity index 100%
rename from Documentation/zh_CN/volatile-considered-harmful.txt
rename to Documentation/translations/zh_CN/volatile-considered-harmful.txt
-- 
2.10.0

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 3/3] Documentation: Add HOWTO Korean translation into rst based build system
  2016-11-08 12:26 [PATCH 0/3] Add howto.rst Korean translation into build system SeongJae Park
  2016-11-08 12:26 ` [PATCH 1/3] docs/driver-api: Apply changed source file names SeongJae Park
  2016-11-08 12:26 ` [PATCH 2/3] Documentation: Move translations into a sub-directory SeongJae Park
@ 2016-11-08 12:26 ` SeongJae Park
  2016-11-13 18:59 ` [PATCH 0/3] Add howto.rst Korean translation into " Jonathan Corbet
  3 siblings, 0 replies; 5+ messages in thread
From: SeongJae Park @ 2016-11-08 12:26 UTC (permalink / raw)
  To: corbet; +Cc: minchan, linux-doc, linux-kernel, SeongJae Park

This commit adds Korean translation of HOWTO document into rst based
documentation build system.

Signed-off-by: SeongJae Park <sj38.park@gmail.com>
---
 Documentation/index.rst                               |  8 ++++++++
 Documentation/translations/ko_KR/{HOWTO => howto.rst} |  0
 Documentation/translations/ko_KR/index.rst            | 12 ++++++++++++
 3 files changed, 20 insertions(+)
 rename Documentation/translations/ko_KR/{HOWTO => howto.rst} (100%)
 create mode 100644 Documentation/translations/ko_KR/index.rst

diff --git a/Documentation/index.rst b/Documentation/index.rst
index 85a66270f96c..0a1b2747edf2 100644
--- a/Documentation/index.rst
+++ b/Documentation/index.rst
@@ -57,6 +57,14 @@ needed).
    gpu/index
    80211/index
 
+Korean translations
+-------------------
+
+.. toctree::
+   :maxdepth: 1
+
+   translations/ko_KR/index
+
 Indices and tables
 ==================
 
diff --git a/Documentation/translations/ko_KR/HOWTO b/Documentation/translations/ko_KR/howto.rst
similarity index 100%
rename from Documentation/translations/ko_KR/HOWTO
rename to Documentation/translations/ko_KR/howto.rst
diff --git a/Documentation/translations/ko_KR/index.rst b/Documentation/translations/ko_KR/index.rst
new file mode 100644
index 000000000000..0b695345abc7
--- /dev/null
+++ b/Documentation/translations/ko_KR/index.rst
@@ -0,0 +1,12 @@
+.. raw:: latex
+
+        \renewcommand\thesection*
+        \renewcommand\thesubsection*
+
+Korean translations
+===================
+
+.. toctree::
+   :maxdepth: 1
+
+   howto
-- 
2.10.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 0/3] Add howto.rst Korean translation into build system
  2016-11-08 12:26 [PATCH 0/3] Add howto.rst Korean translation into build system SeongJae Park
                   ` (2 preceding siblings ...)
  2016-11-08 12:26 ` [PATCH 3/3] Documentation: Add HOWTO Korean translation into rst based build system SeongJae Park
@ 2016-11-13 18:59 ` Jonathan Corbet
  3 siblings, 0 replies; 5+ messages in thread
From: Jonathan Corbet @ 2016-11-13 18:59 UTC (permalink / raw)
  To: SeongJae Park; +Cc: minchan, linux-doc, linux-kernel

On Tue,  8 Nov 2016 21:26:06 +0900
SeongJae Park <sj38.park@gmail.com> wrote:

> This patchset does
> - fix trivial document build warnings,

That one fixes warnings in linux-next at the cost of adding them to
docs-next.  Oh well, it'll all sort out in the merge window, I guess.

> - move translations into translations/ subdirectory, and
> - insert howto.rst Korean translation into document build system.

I've applied the set, thanks.

jon

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-11-13 18:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-08 12:26 [PATCH 0/3] Add howto.rst Korean translation into build system SeongJae Park
2016-11-08 12:26 ` [PATCH 1/3] docs/driver-api: Apply changed source file names SeongJae Park
2016-11-08 12:26 ` [PATCH 2/3] Documentation: Move translations into a sub-directory SeongJae Park
2016-11-08 12:26 ` [PATCH 3/3] Documentation: Add HOWTO Korean translation into rst based build system SeongJae Park
2016-11-13 18:59 ` [PATCH 0/3] Add howto.rst Korean translation into " Jonathan Corbet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).