mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-29 10:34:42 +00:00
Removed gopher URL checking.
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3929 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
4ba8b1aa25
commit
e03df9e709
7 changed files with 13 additions and 9 deletions
|
|
@ -92,6 +92,11 @@
|
|||
Closes: SF #2338973
|
||||
Changed: linkchecker, linkcheck/configuration/__init__.py
|
||||
|
||||
* Remove gopher: URL checking.
|
||||
Type: feature
|
||||
Changed: linkcheck/checker/unkonwnurl.py
|
||||
Removed: linkcheck/checker/gopherurl.py
|
||||
|
||||
4.9 "Michael Clayton" (released 25.4.2008)
|
||||
|
||||
* Parse Shockwave Flash (SWF) for URLs to check
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ msgstr ""
|
|||
"LinkChecker propose une vérification récursive, du multithreading, un "
|
||||
"affichage en couleurs ou au format texte, HTML, SQL, CSV, mais aussi un "
|
||||
"graphique de la carte du site en GML ou XML, un support de HTTP/1.1, HTTPS, "
|
||||
"FTP, mailto:, news:, nntp:, Gopher, Telnet et les liens sur les fichiers "
|
||||
"FTP, mailto:, news:, nntp:, Telnet et les liens sur les fichiers "
|
||||
"locaux, une vérification des liens restreinte par l'utilisation de filtres "
|
||||
"à base d'expressions rationnelles, un support des proxys, des autorisations "
|
||||
"nom utilisateur/mot de passe pour HTTP et FTP, un support du protocole "
|
||||
|
|
|
|||
|
|
@ -172,9 +172,9 @@ the ``/robots.txt`` file which follows the `robots.txt exclusion standard`_.
|
|||
**Q: How can I tell LinkChecker which proxy to use?**
|
||||
|
||||
A: LinkChecker works transparently with proxies. In a Unix or Windows
|
||||
environment, set the http_proxy, https_proxy, ftp_proxy or gopher_proxy
|
||||
environment variables to a URL that identifies the proxy server before
|
||||
starting LinkChecker. For example
|
||||
environment, set the http_proxy, https_proxy, ftp_proxy environment
|
||||
variables to a URL that identifies the proxy server before starting
|
||||
LinkChecker. For example
|
||||
|
||||
::
|
||||
|
||||
|
|
|
|||
|
|
@ -95,8 +95,6 @@ def get_urlclass_from (url):
|
|||
klass = telneturl.TelnetUrl
|
||||
elif url.startswith("mailto:"):
|
||||
klass = mailtourl.MailtoUrl
|
||||
elif url.startswith("gopher:"):
|
||||
klass = gopherurl.GopherUrl
|
||||
elif url.startswith("https:"):
|
||||
klass = httpsurl.HttpsUrl
|
||||
elif url.startswith(("nntp:", "news:", "snews:")):
|
||||
|
|
@ -143,5 +141,5 @@ class StoringHandler (logging.Handler):
|
|||
|
||||
|
||||
# all the URL classes
|
||||
from . import (fileurl, unknownurl, ftpurl, gopherurl, httpurl,
|
||||
from . import (fileurl, unknownurl, ftpurl, httpurl,
|
||||
httpsurl, mailtourl, telneturl, nntpurl)
|
||||
|
|
|
|||
|
|
@ -56,6 +56,7 @@ acap # application configuration access protocol
|
|||
|find # Mozilla specific
|
||||
|clsid # Microsoft specific
|
||||
|javascript # JavaScript
|
||||
|gopher # Gopher
|
||||
|isbn # ISBN (int. book numbers)
|
||||
):"""
|
||||
|
||||
|
|
|
|||
2
po/es.po
2
po/es.po
|
|
@ -994,7 +994,7 @@ msgstr ""
|
|||
" configuraci鏮\n"
|
||||
"\n"
|
||||
"o Para usar proxies asigne un valor a las variables $http_proxy,\n"
|
||||
" $https_proxy, $ftp_proxy, $gopher_proxy en Unix o Windows.\n"
|
||||
" $https_proxy, $ftp_proxy, en Unix o Windows.\n"
|
||||
" En Mac use la Configuraci鏮 de Internet.\n"
|
||||
"o 。uando se chequean los enlaces 'news:' el servidor NTTP no necesita ser\n"
|
||||
" el mismo que el servidor del usuario navegando sus p墔inas!\n"
|
||||
|
|
|
|||
2
po/fr.po
2
po/fr.po
|
|
@ -1003,7 +1003,7 @@ msgstr ""
|
|||
"o Vous pouvez fournir plusieurs paires nom d'utilisateur/mot de passe dans\n"
|
||||
" un fichier de configuration.\n"
|
||||
"o Pour utiliser les proxys, positionnez $http_proxy, $https_proxy,\n"
|
||||
" $ftp_proxy, $gopher_proxy sur Unix ou Windows.\n"
|
||||
" $ftp_proxy, sur Unix ou Windows.\n"
|
||||
" Sur un Mac, utilisez la configuration Internet.\n"
|
||||
"o Pour la vérification des liens « news: », les liens de l'hôte NNTP donné\n"
|
||||
" n'ont pas besoin d'être les mêmes que l'hôte de l'utilisateur naviguant\n"
|
||||
|
|
|
|||
Loading…
Reference in a new issue