diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-05-12 05:02:12 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-05-16 07:44:05 -0400 |
commit | c2b563d8a3185667c44c2ec17243cf714d1db52f (patch) | |
tree | 9e6f881936bbd91b706d07172a7c8d8a73edcab0 /Documentation/conf.py | |
parent | 2a054b5156cf3bbca31b5b34170df0b7ed065e12 (diff) |
docs-rst: conf.py: sort LaTeX documents in alphabetical order
As we add more documents, it makes more sense to sort the
entries there in alphabetical order, as it makes easier to
check if something is not there.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'Documentation/conf.py')
-rw-r--r-- | Documentation/conf.py | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Documentation/conf.py b/Documentation/conf.py index 1774357150a3..1bad6a4d6348 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py | |||
@@ -345,27 +345,28 @@ if major == 1 and minor > 3: | |||
345 | # Grouping the document tree into LaTeX files. List of tuples | 345 | # Grouping the document tree into LaTeX files. List of tuples |
346 | # (source start file, target name, title, | 346 | # (source start file, target name, title, |
347 | # author, documentclass [howto, manual, or own class]). | 347 | # author, documentclass [howto, manual, or own class]). |
348 | # Sorted in alphabetical order | ||
348 | latex_documents = [ | 349 | latex_documents = [ |
349 | ('doc-guide/index', 'kernel-doc-guide.tex', 'Linux Kernel Documentation Guide', | ||
350 | 'The kernel development community', 'manual'), | ||
351 | ('admin-guide/index', 'linux-user.tex', 'Linux Kernel User Documentation', | 350 | ('admin-guide/index', 'linux-user.tex', 'Linux Kernel User Documentation', |
352 | 'The kernel development community', 'manual'), | 351 | 'The kernel development community', 'manual'), |
353 | ('core-api/index', 'core-api.tex', 'The kernel core API manual', | 352 | ('core-api/index', 'core-api.tex', 'The kernel core API manual', |
354 | 'The kernel development community', 'manual'), | 353 | 'The kernel development community', 'manual'), |
354 | ('doc-guide/index', 'kernel-doc-guide.tex', 'Linux Kernel Documentation Guide', | ||
355 | 'The kernel development community', 'manual'), | ||
355 | ('driver-api/index', 'driver-api.tex', 'The kernel driver API manual', | 356 | ('driver-api/index', 'driver-api.tex', 'The kernel driver API manual', |
356 | 'The kernel development community', 'manual'), | 357 | 'The kernel development community', 'manual'), |
358 | ('gpu/index', 'gpu.tex', 'Linux GPU Driver Developer\'s Guide', | ||
359 | 'The kernel development community', 'manual'), | ||
357 | ('input/index', 'linux-input.tex', 'The Linux input driver subsystem', | 360 | ('input/index', 'linux-input.tex', 'The Linux input driver subsystem', |
358 | 'The kernel development community', 'manual'), | 361 | 'The kernel development community', 'manual'), |
359 | ('kernel-documentation', 'kernel-documentation.tex', 'The Linux Kernel Documentation', | 362 | ('kernel-documentation', 'kernel-documentation.tex', 'The Linux Kernel Documentation', |
360 | 'The kernel development community', 'manual'), | 363 | 'The kernel development community', 'manual'), |
361 | ('kernel-hacking/index', 'kernel-hacking.tex', 'Kernel Hacking Guides', | 364 | ('kernel-hacking/index', 'kernel-hacking.tex', 'Kernel Hacking Guides', |
362 | 'The kernel development community', 'manual'), | 365 | 'The kernel development community', 'manual'), |
363 | ('process/index', 'development-process.tex', 'Linux Kernel Development Documentation', | ||
364 | 'The kernel development community', 'manual'), | ||
365 | ('gpu/index', 'gpu.tex', 'Linux GPU Driver Developer\'s Guide', | ||
366 | 'The kernel development community', 'manual'), | ||
367 | ('media/index', 'media.tex', 'Linux Media Subsystem Documentation', | 366 | ('media/index', 'media.tex', 'Linux Media Subsystem Documentation', |
368 | 'The kernel development community', 'manual'), | 367 | 'The kernel development community', 'manual'), |
368 | ('process/index', 'development-process.tex', 'Linux Kernel Development Documentation', | ||
369 | 'The kernel development community', 'manual'), | ||
369 | ('security/index', 'security.tex', 'The kernel security subsystem manual', | 370 | ('security/index', 'security.tex', 'The kernel security subsystem manual', |
370 | 'The kernel development community', 'manual'), | 371 | 'The kernel development community', 'manual'), |
371 | ] | 372 | ] |