mirror of
https://github.com/WikiTeam/wikiteam
synced 2024-11-12 07:12:41 +00:00
skiping deactivated wikispaces
This commit is contained in:
parent
d11df60516
commit
94ebe5e1a3
@ -326,6 +326,17 @@ def main():
|
||||
if not os.path.exists('%s/sitemap.xml' % (wikidomain)):
|
||||
print('Error, wiki was probably deleted. Skiping wiki...')
|
||||
continue
|
||||
else:
|
||||
sitemapraw = ''
|
||||
try:
|
||||
with open('%s/sitemap.xml' % (wikidomain), encoding='utf-8') as g:
|
||||
sitemapraw = g.read()
|
||||
except:
|
||||
with open('%s/sitemap.xml' % (wikidomain), encoding='latin-1') as g:
|
||||
sitemapraw = g.read()
|
||||
if re.search(r'(?im)<h1>This wiki has been deactivated</h1>', sitemapraw):
|
||||
print('Error, wiki was deactivated. Skiping wiki...')
|
||||
continue
|
||||
downloadPagesAndFiles(wikidomain=wikidomain, wikiurl=wikiurl, overwrite=overwrite)
|
||||
downloadMainPage(wikidomain=wikidomain, wikiurl=wikiurl, overwrite=overwrite)
|
||||
logofilename = downloadLogo(wikidomain=wikidomain, wikiurl=wikiurl, overwrite=overwrite)
|
||||
|
Loading…
Reference in New Issue
Block a user