Formerly asciidoctor-java-integration. This will fix the mixed content issue when serving the docs over https. Change-Id: I1f5ba308151e710299cd8c6fa69d93839ece7443
		
			
				
	
	
		
			22 lines
		
	
	
		
			479 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			479 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
DOCUMENTATION_DEPS = {
 | 
						|
  "install-quick.txt": ["config-login-register.txt"],
 | 
						|
  "install.txt": ["database-setup.txt"],
 | 
						|
}
 | 
						|
 | 
						|
def documentation_attributes(revision):
 | 
						|
  return [
 | 
						|
    'toc',
 | 
						|
    'newline="\\n"',
 | 
						|
    'asterisk="*"',
 | 
						|
    'plus="+"',
 | 
						|
    'caret="^"',
 | 
						|
    'startsb="["',
 | 
						|
    'endsb="]"',
 | 
						|
    'tilde="~"',
 | 
						|
    'last-update-label!',
 | 
						|
    'source-highlighter=prettify',
 | 
						|
    'stylesheet=doc.css',
 | 
						|
    'linkcss=true',
 | 
						|
    'revnumber="%s"' % revision,
 | 
						|
  ]
 |