mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 04:26:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			615 B
		
	
	
	
		
			Perl
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			615 B
		
	
	
	
		
			Perl
		
	
	
		
			Executable File
		
	
	
	
	
| #
 | |
| #  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 mysql source files.";
 | |
| print OUTFILE<<EOT;
 | |
| <br>
 | |
| © 2003-2004 
 | |
| <a href="http://www.mysql.com">MySQL AB</a>
 | |
| <br>
 | |
| </center>
 | |
| </small></address>
 | |
| </body>
 | |
| </html>
 | |
| EOT
 | |
| 
 | |
| print "Preformat finished\n\n";
 | 
