diff --git a/doc-publik/update-publik-doc-from-mallard.py b/doc-publik/update-publik-doc-from-mallard.py new file mode 100644 index 0000000..6a19c92 --- /dev/null +++ b/doc-publik/update-publik-doc-from-mallard.py @@ -0,0 +1,20 @@ +from bs4 import BeautifulSoup +import html5lib +import requests + +from combo.data.models import TextCell + +for cell in TextCell.objects.all(): + if not cell.slug.startswith('mallard-'): + continue + mallard_page = cell.slug.split('-', 1)[1] + for module in ('wcs', 'publik-base-theme'): + resp = requests.get('https://doc.entrouvert.org/%s/dev/%s.html' % (module, mallard_page)) + if resp.status_code != 200: + continue + document = BeautifulSoup(resp.content, 'html5lib') + content = document.find('div', 'body') + more_info = document.find('div', 'sect sect-links') + new_content = unicode(content).replace(unicode(more_info), '') + cell.text = new_content + cell.save()