Ver código fonte

Support for closed or private wikis where we can't create an account.

pull/24/head
Ben Kurtovic 12 anos atrás
pai
commit
1368a19a19
1 arquivos alterados com 3 adições e 3 exclusões
  1. +3
    -3
      pages/copyvios.mako

+ 3
- 3
pages/copyvios.mako Ver arquivo

@@ -48,14 +48,14 @@
except exceptions.SiteNotFoundError:
try:
return bot.wiki.add_site(lang=lang, project=project)
except exceptions.APIError:
except (exceptions.APIError, exceptions.LoginError):
return None
try:
return bot.wiki.get_site(lang=lang, project=project)
except exceptions.SiteNotFoundError:
try:
return bot.wiki.add_site(lang=lang, project=project)
except exceptions.APIError:
except (exceptions.APIError, exceptions.LoginError):
return None

def get_url_specific_results(page, url):
@@ -374,7 +374,7 @@
% if project and lang and title and not page:
<div class="divider"></div>
<div id="cv-result-yes">
<p>The given site, (project=<b><tt>${project}</tt></b>, language=<b><tt>${lang}</tt></b>) doesn't seem to exist. <a href="//${lang}.${project}.org/">Check its URL?</a></p>
<p>The given site, (project=<b><tt>${project}</tt></b>, language=<b><tt>${lang}</tt></b>) doesn't seem to exist. It may also be closed or private. <a href="//${lang}.${project}.org/">Confirm its URL.</a></p>
</div>
% elif project and lang and title and page and not result:
<div class="divider"></div>


Carregando…
Cancelar
Salvar