summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-06-05 09:51:24 +0000
committerMartin Mares <mj@ucw.cz>2000-06-05 09:51:24 +0000
commit42b3daa09cda8a4b80661177d3bf74b9258b0b88 (patch)
treeeb208425de5b9a494c42abc5945da7b48d1d09cc
parentac272c0067cc7f04e74f0418bc0c9ce63a657175 (diff)
Description of protocol module moved to where it belongs. If documentation
of standard modules is stored in their source, such auxilliary files should be as well.
-rw-r--r--Doc2
-rw-r--r--TODO1
-rw-r--r--doc/Doc1
-rw-r--r--nest/Doc2
-rw-r--r--nest/proto.sgml (renamed from doc/prog-proto.sgml)0
-rwxr-xr-xtools/progdoc8
6 files changed, 8 insertions, 6 deletions
diff --git a/Doc b/Doc
index 57eeb78f..f5f15087 100644
--- a/Doc
+++ b/Doc
@@ -1,4 +1,4 @@
-D prog-intro.sgml
+C doc
C nest
C conf
C filter
diff --git a/TODO b/TODO
index 08ec2156..2226d0b8 100644
--- a/TODO
+++ b/TODO
@@ -91,6 +91,7 @@ Martin: DOC: korektury
OSPF: zkontrolovat defaultni hodnoty metrik
Zinscenovat jeste jeden poradny test OSPF
Zjistit, kde se bude tisknout a vazat dokumentace
+ DOC: Linux 2.2 je ten, kdo podporuje vice routing tables
Pavel: RIP: programatorska dokumentace (finish)
filtry: programatorska dokumentace
diff --git a/doc/Doc b/doc/Doc
new file mode 100644
index 00000000..0c3e04e5
--- /dev/null
+++ b/doc/Doc
@@ -0,0 +1 @@
+D prog-intro.sgml
diff --git a/nest/Doc b/nest/Doc
index 7395e75c..8cb73102 100644
--- a/nest/Doc
+++ b/nest/Doc
@@ -2,7 +2,7 @@ H Core
S rt-fib.c
S rt-table.c
S rt-attr.c
-D prog-proto.sgml
+D proto.sgml
S proto.c
S proto-hooks.c
S iface.c
diff --git a/doc/prog-proto.sgml b/nest/proto.sgml
index 45ef88da..45ef88da 100644
--- a/doc/prog-proto.sgml
+++ b/nest/proto.sgml
diff --git a/tools/progdoc b/tools/progdoc
index a5028bda..ef44d3aa 100755
--- a/tools/progdoc
+++ b/tools/progdoc
@@ -3,15 +3,15 @@
$srcdir = $ARGV[0];
open(OUT, ">prog.sgml") || die "Cannot create output file";
-include("prog-head.sgml");
+include("doc/prog-head.sgml");
process("");
-include("prog-foot.sgml");
+include("doc/prog-foot.sgml");
close OUT;
exit 0;
sub include {
my $f = shift @_;
- open(IN, "$srcdir/doc/$f") || die "Unable to find $f";
+ open(IN, "$srcdir/$f") || die "Unable to find $f";
while (<IN>) {
print OUT;
}
@@ -41,7 +41,7 @@ sub process {
close DOC;
} elsif ($cmd eq "D") {
print " $arg\n";
- include($arg);
+ include("$dir/$arg");
} else { die "Unknown command: $cmd"; }
}
}