qweboobcfg: display website of backend in description in any
This commit is contained in:
parent
693123a702
commit
31445de767
3 changed files with 9 additions and 2 deletions
|
|
@ -272,6 +272,7 @@ class BackendCfg(QDialog):
|
|||
'<b>Version</b>: %s<br />'
|
||||
'<b>Maintainer</b>: %s<br />'
|
||||
'<b>License</b>: %s<br />'
|
||||
'%s'
|
||||
'<b>Description</b>: %s<br />'
|
||||
'<b>Capabilities</b>: %s<br />'))
|
||||
% ('<img src="mydata://logo.png" />' if backend.icon_path else '',
|
||||
|
|
@ -279,6 +280,7 @@ class BackendCfg(QDialog):
|
|||
backend.version,
|
||||
backend.maintainer.replace('&', '&').replace('<', '<').replace('>', '>'),
|
||||
backend.license,
|
||||
('<b>Website</b>: %s<br />' % backend.website) if backend.website else '',
|
||||
backend.description,
|
||||
', '.join([cap.__name__ for cap in backend.iter_caps()])))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue