mariadb/ndb/docs/doxygen/predoxy.pl
unknown 6386c55cee Initial revision of NDB Cluster files
BitKeeper/etc/logging_ok:
  Logging to logging@openlogging.org accepted
2004-04-14 10:53:21 +02:00

34 lines
643 B
Perl
Executable file

#!/usr/local/bin/perl
#
# Written by Lars Thalmann, lars@mysql.com, 2003.
#
use strict;
umask 000;
# -----------------------------------------------------------------------------
# Fix HTML Footer
# -----------------------------------------------------------------------------
open (OUTFILE, "> footer.html");
print OUTFILE<<EOT;
<hr>
<address>
<small>
<center>
EOT
print OUTFILE "Documentation generated " . localtime() .
" from NDB Cluster source files.";
print OUTFILE<<EOT;
<br>
&copy; 2003-2004
<a href="http://www.mysql.com">MySQL AB</a>
<br>
</center>
</small></address>
</body>
</html>
EOT
print "Preformat finished\n\n";