linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 00/31] clean up and reorg Chinese kernel docs
@ 2019-03-12  3:00 Alex Shi
  2019-03-12  3:00 ` [PATCH v4 01/31] docs/zh_CN: add disclaimer file Alex Shi
                   ` (31 more replies)
  0 siblings, 32 replies; 34+ messages in thread
From: Alex Shi @ 2019-03-12  3:00 UTC (permalink / raw)
  To: corbet, harryxiyou, linux-doc, linux-kernel; +Cc: Alex Shi

The following patches change existing Chinese kernel docs to rst format
and reorg them to make them alive in 'make htmldocs'.

you can view the generated htmldocs from:
	http://176.122.172.82/translations/zh_CN/index.html 

Or make and review docs on your self box:

	make htmldocs SPHINXDIRS=translations/zh_CN 
	lynx Documentation/output/translations/zh_CN/index.html

Any comments are appreciated!

V4 changes:
1, Add Harry's signed-off as he wants

V3 changes:
1, fix a zh_CN/index.rst display issue
2, update .mailmap for zh_CN transolators'r email address

V2 changes:
1, change the disclaimer file to Chinese version,
2, replace the obsolete translator's email address in related files.
3, fix couple of format issues in couple files

Cheers!
Alex


Alex Shi (31):
  docs/zh_CN: add disclaimer file
  docs/zh_CN: move process related docs into process dir
  docs/zh_CN: change Chinese index to know process dir
  docs/zh_CN: add index file into process dir
  docs/zh_CN: rename HOWTO into process directory
  docs/zh_CN: howto format changes
  docs/zh_CN: rename SubmittingPatches for html links
  docs/zh_CN: format the submitting-patches doc to rst
  docs/zh_CN: rename stable_kernel_rules doc
  docs/zh_CN: rst format change for stable-kernel-rules
  docs/zh_CN: rename email-clients.txt as email-clients.rst
  docs/zh_CN: do rst format for email-clients.rst
  docs/zh_CN: rename volatile-consider-harmful doc
  docs/zh_CN: volatile doc format changes
  docs/zh_CN: rename SubmittingDrivers
  docs/zh_CN: format submitting drivers as rst
  docs/zh_CN: rename magic-numbers as rst doc
  docs/zh_CN: format the magic-number doc as rst
  docs/zh_CN: rename stable_api_nonsense.txt as stable-api-nonsense.rst
  docs/zh_CN: format stable-api-nonsense
  docs/zh_CN: update Li Yang's email address
  mailmap: update Li Yang's email address
  docs/zh_CN: update Zhang Wei's email address
  mailmap: update email address for Triplex
  docs/zh_CN: update TripleX chung's email address
  docs/zh_CN: fix rst format errors in howto.rst
  docs/zh_CN: fix indent issue in stable-api-nonsense file
  docs/zh_CN: fix indent issue in submitting-drivers
  docs/zh_CN: fix rst format issue in submitting-patch
  docs/zh_CN: remove zh-kernel.org in MAINTAINERS
  mailmap: update my obsolete email address

 .mailmap                                      |   6 +
 .../translations/zh_CN/disclaimer-zh_CN.rst   |   9 ++
 Documentation/translations/zh_CN/index.rst    |  17 +-
 .../translations/zh_CN/magic-number.txt       | 153 ------------------
 .../translations/zh_CN/oops-tracing.txt       |   2 +-
 .../zh_CN/{ => process}/coding-style.rst      |   0
 .../email-clients.rst}                        |  53 +++---
 .../zh_CN/{HOWTO => process/howto.rst}        |  69 +++++---
 .../translations/zh_CN/process/index.rst      |  53 ++++++
 .../zh_CN/process/magic-number.rst            | 151 +++++++++++++++++
 .../stable-api-nonsense.rst}                  |  67 ++++----
 .../stable-kernel-rules.rst}                  |  32 ++--
 .../submitting-drivers.rst}                   |  34 ++--
 .../submitting-patches.rst}                   |  60 ++++---
 .../volatile-considered-harmful.rst}          |  35 ++--
 Documentation/translations/zh_CN/sparse.txt   |   6 +-
 MAINTAINERS                                   |   1 -
 17 files changed, 408 insertions(+), 340 deletions(-)
 create mode 100644 Documentation/translations/zh_CN/disclaimer-zh_CN.rst
 delete mode 100644 Documentation/translations/zh_CN/magic-number.txt
 rename Documentation/translations/zh_CN/{ => process}/coding-style.rst (100%)
 rename Documentation/translations/zh_CN/{email-clients.txt => process/email-clients.rst} (82%)
 rename Documentation/translations/zh_CN/{HOWTO => process/howto.rst} (95%)
 create mode 100644 Documentation/translations/zh_CN/process/index.rst
 create mode 100644 Documentation/translations/zh_CN/process/magic-number.rst
 rename Documentation/translations/zh_CN/{stable_api_nonsense.txt => process/stable-api-nonsense.rst} (80%)
 rename Documentation/translations/zh_CN/{stable_kernel_rules.txt => process/stable-kernel-rules.rst} (76%)
 rename Documentation/translations/zh_CN/{SubmittingDrivers => process/submitting-drivers.rst} (86%)
 rename Documentation/translations/zh_CN/{SubmittingPatches => process/submitting-patches.rst} (92%)
 rename Documentation/translations/zh_CN/{volatile-considered-harmful.txt => process/volatile-considered-harmful.rst} (81%)

-- 
2.19.1.856.g8858448bb


^ permalink raw reply	[flat|nested] 34+ messages in thread
* [PATCH v4 00/31] clean up and reorg Chinese kernel docs
@ 2019-03-12  3:24 Alex Shi
  2019-03-12  3:24 ` [PATCH v4 08/31] docs/zh_CN: format the submitting-patches doc to rst Alex Shi
  0 siblings, 1 reply; 34+ messages in thread
From: Alex Shi @ 2019-03-12  3:24 UTC (permalink / raw)
  To: corbet, harryxiyou, linux-doc, linux-kernel; +Cc: Alex Shi

Hi All,

The following patches change existing Chinese kernel docs to rst format
and reorg them to make them alive in 'make htmldocs'.

you can view the generated htmldocs from:
	http://176.122.172.82/translations/zh_CN/index.html 

Or make and review docs on your self box:

	make htmldocs SPHINXDIRS=translations/zh_CN 
	lynx Documentation/output/translations/zh_CN/index.html

Any comments are appreciated!

V4 changes:
1, Add Harry's signed-off as his ack.

V3 changes:
1, fix a zh_CN/index.rst display issue
2, update .mailmap for zh_CN transolators'r email address

V2 changes:
1, change the disclaimer file to Chinese version,
2, replace the obsolete translator's email address in related files.
3, fix couple of format issues in couple files

Cheers!
Alex

Alex Shi (31):
  docs/zh_CN: add disclaimer file
  docs/zh_CN: move process related docs into process dir
  docs/zh_CN: change Chinese index to know process dir
  docs/zh_CN: add index file into process dir
  docs/zh_CN: rename HOWTO into process directory
  docs/zh_CN: howto format changes
  docs/zh_CN: rename SubmittingPatches for html links
  docs/zh_CN: format the submitting-patches doc to rst
  docs/zh_CN: rename stable_kernel_rules doc
  docs/zh_CN: rst format change for stable-kernel-rules
  docs/zh_CN: rename email-clients.txt as email-clients.rst
  docs/zh_CN: do rst format for email-clients.rst
  docs/zh_CN: rename volatile-consider-harmful doc
  docs/zh_CN: volatile doc format changes
  docs/zh_CN: rename SubmittingDrivers
  docs/zh_CN: format submitting drivers as rst
  docs/zh_CN: rename magic-numbers as rst doc
  docs/zh_CN: format the magic-number doc as rst
  docs/zh_CN: rename stable_api_nonsense.txt as stable-api-nonsense.rst
  docs/zh_CN: format stable-api-nonsense
  docs/zh_CN: update Li Yang's email address
  mailmap: update Li Yang's email address
  docs/zh_CN: update Zhang Wei's email address
  mailmap: update email address for Triplex
  docs/zh_CN: update TripleX chung's email address
  docs/zh_CN: fix rst format errors in howto.rst
  docs/zh_CN: fix indent issue in stable-api-nonsense file
  docs/zh_CN: fix indent issue in submitting-drivers
  docs/zh_CN: remove zh-kernel.org in MAINTAINERS
  mailmap: update my obsolete email address
  docs/zh_CN: fix rst format issue in submitting-patch

 .mailmap                                      |   6 +
 .../translations/zh_CN/disclaimer-zh_CN.rst   |   9 ++
 Documentation/translations/zh_CN/index.rst    |  17 +-
 .../translations/zh_CN/magic-number.txt       | 153 ------------------
 .../translations/zh_CN/oops-tracing.txt       |   2 +-
 .../zh_CN/{ => process}/coding-style.rst      |   0
 .../email-clients.rst}                        |  53 +++---
 .../zh_CN/{HOWTO => process/howto.rst}        |  69 +++++---
 .../translations/zh_CN/process/index.rst      |  53 ++++++
 .../zh_CN/process/magic-number.rst            | 151 +++++++++++++++++
 .../stable-api-nonsense.rst}                  |  67 ++++----
 .../stable-kernel-rules.rst}                  |  32 ++--
 .../submitting-drivers.rst}                   |  34 ++--
 .../submitting-patches.rst}                   |  58 +++----
 .../volatile-considered-harmful.rst}          |  35 ++--
 Documentation/translations/zh_CN/sparse.txt   |   6 +-
 MAINTAINERS                                   |   1 -
 17 files changed, 407 insertions(+), 339 deletions(-)
 create mode 100644 Documentation/translations/zh_CN/disclaimer-zh_CN.rst
 delete mode 100644 Documentation/translations/zh_CN/magic-number.txt
 rename Documentation/translations/zh_CN/{ => process}/coding-style.rst (100%)
 rename Documentation/translations/zh_CN/{email-clients.txt => process/email-clients.rst} (82%)
 rename Documentation/translations/zh_CN/{HOWTO => process/howto.rst} (95%)
 create mode 100644 Documentation/translations/zh_CN/process/index.rst
 create mode 100644 Documentation/translations/zh_CN/process/magic-number.rst
 rename Documentation/translations/zh_CN/{stable_api_nonsense.txt => process/stable-api-nonsense.rst} (80%)
 rename Documentation/translations/zh_CN/{stable_kernel_rules.txt => process/stable-kernel-rules.rst} (76%)
 rename Documentation/translations/zh_CN/{SubmittingDrivers => process/submitting-drivers.rst} (86%)
 rename Documentation/translations/zh_CN/{SubmittingPatches => process/submitting-patches.rst} (92%)
 rename Documentation/translations/zh_CN/{volatile-considered-harmful.txt => process/volatile-considered-harmful.rst} (81%)

-- 
2.19.1.856.g8858448bb


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

end of thread, other threads:[~2019-03-12  3:25 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-12  3:00 [PATCH v4 00/31] clean up and reorg Chinese kernel docs Alex Shi
2019-03-12  3:00 ` [PATCH v4 01/31] docs/zh_CN: add disclaimer file Alex Shi
2019-03-12  3:01 ` [PATCH v4 02/31] docs/zh_CN: move process related docs into process dir Alex Shi
2019-03-12  3:01 ` [PATCH v4 03/31] docs/zh_CN: change Chinese index to know " Alex Shi
2019-03-12  3:01 ` [PATCH v4 04/31] docs/zh_CN: add index file into " Alex Shi
2019-03-12  3:01 ` [PATCH v4 05/31] docs/zh_CN: rename HOWTO into process directory Alex Shi
2019-03-12  3:01 ` [PATCH v4 06/31] docs/zh_CN: howto format changes Alex Shi
2019-03-12  3:01 ` [PATCH v4 07/31] docs/zh_CN: rename SubmittingPatches for html links Alex Shi
2019-03-12  3:01 ` [PATCH v4 08/31] docs/zh_CN: format the submitting-patches doc to rst Alex Shi
2019-03-12  3:01 ` [PATCH v4 09/31] docs/zh_CN: rename stable_kernel_rules doc Alex Shi
2019-03-12  3:01 ` [PATCH v4 10/31] docs/zh_CN: rst format change for stable-kernel-rules Alex Shi
2019-03-12  3:01 ` [PATCH v4 11/31] docs/zh_CN: rename email-clients.txt as email-clients.rst Alex Shi
2019-03-12  3:01 ` [PATCH v4 12/31] docs/zh_CN: do rst format for email-clients.rst Alex Shi
2019-03-12  3:01 ` [PATCH v4 13/31] docs/zh_CN: rename volatile-consider-harmful doc Alex Shi
2019-03-12  3:01 ` [PATCH v4 14/31] docs/zh_CN: volatile doc format changes Alex Shi
2019-03-12  3:01 ` [PATCH v4 15/31] docs/zh_CN: rename SubmittingDrivers Alex Shi
2019-03-12  3:01 ` [PATCH v4 16/31] docs/zh_CN: format submitting drivers as rst Alex Shi
2019-03-12  3:01 ` [PATCH v4 17/31] docs/zh_CN: rename magic-numbers as rst doc Alex Shi
2019-03-12  3:01 ` [PATCH v4 18/31] docs/zh_CN: format the magic-number doc as rst Alex Shi
2019-03-12  3:01 ` [PATCH v4 19/31] docs/zh_CN: rename stable_api_nonsense.txt as stable-api-nonsense.rst Alex Shi
2019-03-12  3:01 ` [PATCH v4 20/31] docs/zh_CN: format stable-api-nonsense Alex Shi
2019-03-12  3:01 ` [PATCH v4 21/31] docs/zh_CN: update Li Yang's email address Alex Shi
2019-03-12  3:01 ` [PATCH v4 22/31] mailmap: " Alex Shi
2019-03-12  3:01 ` [PATCH v4 23/31] docs/zh_CN: update Zhang Wei's " Alex Shi
2019-03-12  3:01 ` [PATCH v4 24/31] mailmap: update email address for Triplex Alex Shi
2019-03-12  3:01 ` [PATCH v4 25/31] docs/zh_CN: update TripleX chung's email address Alex Shi
2019-03-12  3:01 ` [PATCH v4 26/31] docs/zh_CN: fix rst format errors in howto.rst Alex Shi
2019-03-12  3:01 ` [PATCH v4 27/31] docs/zh_CN: fix indent issue in stable-api-nonsense file Alex Shi
2019-03-12  3:01 ` [PATCH v4 28/31] docs/zh_CN: fix indent issue in submitting-drivers Alex Shi
2019-03-12  3:01 ` [PATCH v4 29/31] docs/zh_CN: fix rst format issue in submitting-patch Alex Shi
2019-03-12  3:01 ` [PATCH v4 30/31] docs/zh_CN: remove zh-kernel.org in MAINTAINERS Alex Shi
2019-03-12  3:01 ` [PATCH v4 31/31] mailmap: update my obsolete email address Alex Shi
2019-03-12  3:06 ` [PATCH v4 00/31] clean up and reorg Chinese kernel docs Alex Shi
2019-03-12  3:24 Alex Shi
2019-03-12  3:24 ` [PATCH v4 08/31] docs/zh_CN: format the submitting-patches doc to rst Alex Shi

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).