18 lines
		
	
	
		
			543 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			543 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
| #!/bin/bash
 | |
| # $Id$
 | |
| #
 | |
| # Copyright (C) 2009  Roland Gruber
 | |
| # This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
 | |
| 
 | |
| # This script is run to create the LAM manual.
 | |
| 
 | |
| 
 | |
| rm -rf ../manual
 | |
| mkdir ../manual
 | |
| xsltproc -o ../manual/ --stringparam html.stylesheet.type text/css --stringparam html.stylesheet style.css /usr/share/xml/docbook/stylesheet/nwalsh/html/chunk.xsl howto.xml
 | |
| mkdir ../manual/images
 | |
| # cp images/*.jpg ../manual/images
 | |
| cp images/*.png ../manual/images
 | |
| cp images/*.jpg ../manual/images
 | |
| cp style.css ../manual
 |