mirror of
				https://gitlab.com/libvirt/libvirt.git
				synced 2025-10-30 20:24:58 +03:00 
			
		
		
		
	The HTML5 doctype is simply <!DOCTYPE html> no DTD is present because HTML5 is no longer defined as an extension of SGML. XSL has no way to natively output a doctype without a public or system identifier, so we have to use an <xsl:text> hack instead. See also https://dev.w3.org/html5/html-author/#doctype-declaration Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
		
			
				
	
	
		
			28 lines
		
	
	
		
			952 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			952 B
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <!DOCTYPE html>
 | |
| <html xmlns="http://www.w3.org/1999/xhtml">
 | |
|   <body>
 | |
|     <h1>Test "mock" driver</h1>
 | |
| 
 | |
|     <h2>Connections to Test driver</h2>
 | |
| 
 | |
|     <p>
 | |
|     The libvirt Test driver is a per-process fake hypervisor driver,
 | |
|     with a driver name of 'test'. The driver maintains all its state
 | |
|     in memory. It can start with a pre-configured default config, or
 | |
|     be given a path to an alternate config. Some example connection URIs
 | |
|     for the libvirt driver are:
 | |
|     </p>
 | |
| 
 | |
| <pre>
 | |
| test:///default                     (local access, default config)
 | |
| test:///path/to/driver/config.xml   (local access, custom config)
 | |
| test+unix:///default                (local access, default config, via daemon)
 | |
| test://example.com/default          (remote access, TLS/x509)
 | |
| test+tcp://example.com/default      (remote access, SASl/Kerberos)
 | |
| test+ssh://root@example.com/default (remote access, SSH tunnelled)
 | |
| </pre>
 | |
| 
 | |
|   </body>
 | |
| </html>
 |