aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2012-03-26 10:07:40 +0100
committerIan Campbell <ian.campbell@citrix.com>2012-03-26 10:07:40 +0100
commitcf3a68283ffa5c10982af8b59d1f1ec24d22589d (patch)
tree528c4c091de86bb6aaff9da10828cb50f9c5673c
parent6db51261126cfaf84c0c1b771ea5f8d116e8389e (diff)
downloadxen-cf3a68283ffa5c10982af8b59d1f1ec24d22589d.tar.gz
xen-cf3a68283ffa5c10982af8b59d1f1ec24d22589d.tar.bz2
xen-cf3a68283ffa5c10982af8b59d1f1ec24d22589d.zip
docs: expand docs/INDEX, sort html index by title rather than filename
Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Committed-by: Ian Jackson <ian.jackson.citrix.com>
-rw-r--r--docs/INDEX17
-rw-r--r--docs/gen-html-index2
2 files changed, 18 insertions, 1 deletions
diff --git a/docs/INDEX b/docs/INDEX
index fbf5011e5d..5a0a2c269b 100644
--- a/docs/INDEX
+++ b/docs/INDEX
@@ -5,3 +5,20 @@ man Man Pages
misc Miscellaneous Documentation
misc/hvm-emulated-unplug Xen HVM emulated device unplug protocol
misc/console Xen PV Console notes
+misc/xen-command-line Xen Hypervisor Command Line Options
+misc/crashdb Xen crash debugger notes
+misc/grant-tables A Rough Introduction to Using Grant Tables
+misc/kexec_and_kdump Kexec and Kdump for Xen
+misc/tscmode TSC Mode HOWTO
+misc/vbd-interface Xen Guest Disk (VBD) Interface
+misc/xenstore Xenstore protocol specification
+misc/xl-disk-configuration XL Disk Configuration
+misc/xl-network-configuration XL Network Configuration
+misc/distro_mapping Distro Directory Layouts
+misc/dump-core-format Xen Core Dump Format
+misc/sedf_scheduler_mini-HOWTO sEDF Mini HOWTO
+misc/vtd VT-d HOWTO
+misc/vtpm Virtual TPM
+misc/xen-error-handling Xen Error Handling
+misc/xenpaging Xen Paging
+misc/xsm-flask XSM/FLASK Configuration
diff --git a/docs/gen-html-index b/docs/gen-html-index
index c0001d7f60..7b36a191e3 100644
--- a/docs/gen-html-index
+++ b/docs/gen-html-index
@@ -79,7 +79,7 @@ sub make_link ($$) {
sub make_links ($$@) {
my ($dir,$base,@docs) = @_;
my $idx = '';
- foreach my $of (sort { $a cmp $b } @docs) {
+ foreach my $of (sort { make_linktext($a) cmp make_linktext($b) } @docs) {
$idx .= make_link($of,$base);
}
return $idx;