mirror of https://gitlab.com/bashrc2/epicyon
				
				
				
			
		
			
				
	
	
		
			30 lines
		
	
	
		
			768 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			768 B
		
	
	
	
		
			Python
		
	
	
| __filename__ = "feeds.py"
 | |
| __author__ = "Bob Mottram"
 | |
| __license__ = "AGPL3+"
 | |
| __version__ = "1.6.0"
 | |
| __maintainer__ = "Bob Mottram"
 | |
| __email__ = "bob@libreserver.org"
 | |
| __status__ = "Production"
 | |
| __module_group__ = "RSS Feeds"
 | |
| 
 | |
| 
 | |
| from utils import escape_text
 | |
| 
 | |
| 
 | |
| def rss2tag_header(hashtag: str, http_prefix: str, domain_full: str) -> str:
 | |
|     """Header for rss 2
 | |
|     """
 | |
|     return \
 | |
|         "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>" + \
 | |
|         "<rss version=\"2.0\">" + \
 | |
|         '<channel>' + \
 | |
|         '    <title>#' + escape_text(hashtag) + '</title>' + \
 | |
|         '    <link>' + http_prefix + '://' + domain_full + \
 | |
|         '/tags/rss2/' + escape_text(hashtag) + '</link>'
 | |
| 
 | |
| 
 | |
| def rss2tag_footer() -> str:
 | |
|     """Footer for rss 2
 | |
|     """
 | |
|     return '</channel></rss>'
 |