Explorar el Código

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

pull/24/head
Ben Kurtovic hace 12 años
padre
commit
1368a19a19
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      pages/copyvios.mako

+ 3
- 3
pages/copyvios.mako Ver fichero

@@ -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>


Cargando…
Cancelar
Guardar