Home | History | Annotate | Download | only in regression

Lines Matching refs:INDEX

32 # 'branchname' is used only to produce the title of the index page,
33 # which will be named 'index.html'.
79 # Sort the list of files for the index.
82 # Create the index.
83 open INDEX,'>',$destdir . '/index.html' or die "${destdir}/index.html: $!";
85 print INDEX <<EOF or die "writing index: $!";
98 # The index will have two columns, filename (without .gzip) and
101 printf INDEX "<tr><td><a href=\"%s\">%s</a></td><td align=\'right\'>%s</td></tr>\n",
102 $f->[0], $f->[1], $f->[2] or die "writing index: $!";
105 print INDEX "</table></body></html>\n" or die "writing index: $!";
106 close INDEX or die "writing index: $!";