diff options
Diffstat (limited to 'convert.py')
| -rwxr-xr-x | convert.py | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -157,6 +157,13 @@ def get_metadata(html_file_path): def get_licenses(soup): if get_author(soup) == 'GNUtoo': return 'CC-BY-3.0 OR CC-BY-4.0' + # I got the agreement of dllud though XMPP on the 1 March 2024: + # <gnutoo-laptop>: Also You wrote several blog posts, do you + # agree to license them under both CC-BY-SA 3.0 (unported) and + # CC-BY-SA 4.0 (international) ? + # <dllud>: yes I do agree + elif get_author(soup) == 'dllud': + return 'CC-BY-3.0 OR CC-BY-4.0' else: return None |
