do not xmlescape entire description
This commit is contained in:
parent
2b2bb9aaf4
commit
ccb65bd912
@ -2,6 +2,8 @@
|
|||||||
# -*-:python; coding:utf-8; -*-
|
# -*-:python; coding:utf-8; -*-
|
||||||
# author: Louis Abel <label@rockylinux.org>
|
# author: Louis Abel <label@rockylinux.org>
|
||||||
# modified version of repo-rss from yum utils
|
# modified version of repo-rss from yum utils
|
||||||
|
# changelog
|
||||||
|
# -> 20230912: do not xmlescape entire description variable
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
@ -116,7 +118,7 @@ class RepoRSS:
|
|||||||
title = xmlescape(str(package))
|
title = xmlescape(str(package))
|
||||||
date = time.gmtime(float(package.buildtime))
|
date = time.gmtime(float(package.buildtime))
|
||||||
description = package.description
|
description = package.description
|
||||||
link = package.remote_location()
|
link = xmlescape(package.remote_location())
|
||||||
# form description
|
# form description
|
||||||
changelog = ''
|
changelog = ''
|
||||||
count = 0
|
count = 0
|
||||||
@ -133,9 +135,9 @@ class RepoRSS:
|
|||||||
author = meta['author']
|
author = meta['author']
|
||||||
desc = meta['text']
|
desc = meta['text']
|
||||||
changelog += f'{cl_date} - {author}\n{desc}\n\n'
|
changelog += f'{cl_date} - {author}\n{desc}\n\n'
|
||||||
description = f'<p><strong>{package.name}</strong> - {package.summary}</p>\n\n'
|
description = '<p><strong>{}</strong> - {}</p>\n\n'.format(xmlescape(package.name), xmlescape(package.summary))
|
||||||
description += '<p>%s</p>\n\n<p><strong>Change Log:</strong></p>\n\n' % description.replace("\n", "<br />\n")
|
description += '<p>%s</p>\n\n<p><strong>Change Log:</strong></p>\n\n' % xmlescape(description.replace("\n", "<br />\n"))
|
||||||
description += f'<pre>{changelog}</pre>'
|
description += '<pre>{}</pre>'.format(xmlescape(changelog))
|
||||||
|
|
||||||
# start item
|
# start item
|
||||||
etbobj.start('item', {})
|
etbobj.start('item', {})
|
||||||
@ -161,7 +163,7 @@ class RepoRSS:
|
|||||||
# end link
|
# end link
|
||||||
# start description
|
# start description
|
||||||
etbobj.start('description', {})
|
etbobj.start('description', {})
|
||||||
etbobj.data(xmlescape(description))
|
etbobj.data(description)
|
||||||
etbobj.end('description')
|
etbobj.end('description')
|
||||||
# end description
|
# end description
|
||||||
etbobj.end('item')
|
etbobj.end('item')
|
||||||
|
Loading…
Reference in New Issue
Block a user