Return-Path: Delivered-To: apmail-apache-docs-archive@apache.org Received: (qmail 59482 invoked by uid 500); 22 Jun 2001 22:51:44 -0000 Mailing-List: contact apache-docs-help@apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: apache-docs@apache.org Delivered-To: mailing list apache-docs@apache.org Received: (qmail 59466 invoked by uid 500); 22 Jun 2001 22:51:41 -0000 Delivered-To: apmail-httpd-docs-1.3-cvs@apache.org Date: 22 Jun 2001 22:51:39 -0000 Message-ID: <20010622225139.59460.qmail@apache.org> From: coar@apache.org To: httpd-docs-1.3-cvs@apache.org Subject: cvs commit: httpd-docs-1.3/apidoc/tools mkapidict testdict.pl coar 01/06/22 15:51:39 Modified: apidoc APIdict.pm apidoc/tools mkapidict testdict.pl Log: Oops, working on breakages.. Revision Changes Path 1.5 +1 -1 httpd-docs-1.3/apidoc/APIdict.pm Index: APIdict.pm =================================================================== RCS file: /home/cvs/httpd-docs-1.3/apidoc/APIdict.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -u -u -r1.4 -r1.5 --- APIdict.pm 2001/06/22 13:02:36 1.4 +++ APIdict.pm 2001/06/22 22:51:34 1.5 @@ -699,7 +699,7 @@ $_ = $item; } else { - s:$item:\$\*:g; + s:\$\*:$item:g; } s:\|:\|:g; return $_; 1.19 +9 -7 httpd-docs-1.3/apidoc/tools/mkapidict Index: mkapidict =================================================================== RCS file: /home/cvs/httpd-docs-1.3/apidoc/tools/mkapidict,v retrieving revision 1.18 retrieving revision 1.19 diff -u -u -r1.18 -r1.19 --- mkapidict 2001/05/16 11:23:33 1.18 +++ mkapidict 2001/06/22 22:51:37 1.19 @@ -185,8 +185,8 @@ print $ofh $line; } $x_routines = $dict->insert_link('Routine Descriptions', "", "", '#Routines'); -$x_structs = $dict->insert_link('Data Structure Descriptions', "", "", - '#Structures'); +$x_structures = $dict->insert_link('Data Structure Descriptions', "", "", + '#Structures'); $x_cells = $dict->insert_link('Data Cell Descriptions', "", "", '#Cells'); $x_consts = $dict->insert_link('Constant Descriptions', "", "", '#Constants'); print $ofh <

- &link('Table of Contents', $arg{'o'}) - (&link('Routines', "$arg{'o'}#Routines"), - &link('Structures', "$arg{'o'}#Structures"), - &link('Data Cells', "$arg{'o'}#Cells"), - &link('Constants', "$arg{'o'}#Constants")) +EOHT + print $ofh &link('Table of Contents', $arg{'o'}) . "\n"; + print $ofh "(" . &link('Routines', "$arg{'o'}#Routines") . ",\n"; + print $ofh &link('Structures', "$arg{'o'}#Structures") . ",\n"; + print $ofh &link('Data Cells', "$arg{'o'}#Cells") . ",\n"; + print $ofh &link('Constants', "$arg{'o'}#Constants") . ")\n"; + print $ofh < 1.2 +1 -0 httpd-docs-1.3/apidoc/tools/testdict.pl Index: testdict.pl =================================================================== RCS file: /home/cvs/httpd-docs-1.3/apidoc/tools/testdict.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -u -r1.1 -r1.2 --- testdict.pl 2001/06/22 21:23:45 1.1 +++ testdict.pl 2001/06/22 22:51:37 1.2 @@ -9,6 +9,7 @@ @elist = $dict->entity_list(); ($scratch, $n2) = @elist; +$scratch = $n2; print "Entity '$n2':\n"; print " defined: " . $dict->defined($n2) . "\n"; --------------------------------------------------------------------- To unsubscribe, e-mail: apache-docs-unsubscribe@apache.org For additional commands, e-mail: apache-docs-help@apache.org