mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-21 16:30:28 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@214 e7d03fd6-7b0d-0410-9947-9c21f3af8025
69 lines
2.3 KiB
Python
69 lines
2.3 KiB
Python
""" linkcheck/FileUrlData.py
|
|
|
|
Copyright (C) 2000 Bastian Kleineidam
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
"""
|
|
import re,string,os,urlparse,urllib
|
|
from UrlData import UrlData
|
|
from linkcheck import _
|
|
|
|
html_re = re.compile(r'\.s?html?$')
|
|
|
|
class FileUrlData(UrlData):
|
|
"Url link with file scheme"
|
|
|
|
def __init__(self,
|
|
urlName,
|
|
recursionLevel,
|
|
parentName = None,
|
|
baseRef = None, line=0):
|
|
UrlData.__init__(self,
|
|
urlName,
|
|
recursionLevel,
|
|
parentName=parentName,
|
|
baseRef=baseRef, line=line)
|
|
if not parentName and not baseRef and \
|
|
not re.compile("^file:").search(self.urlName):
|
|
self.urlName = os.path.expanduser(self.urlName)
|
|
winre = re.compile("^[a-zA-Z]:")
|
|
if winre.search(self.urlName):
|
|
self.adjustWinPath()
|
|
else:
|
|
if self.urlName[0:1] != "/":
|
|
self.urlName = os.getcwd()+"/"+self.urlName
|
|
if winre.search(self.urlName):
|
|
self.adjustWinPath()
|
|
self.urlName = string.replace(self.urlName, "\\", "/")
|
|
self.urlName = "file://"+self.urlName
|
|
|
|
|
|
def buildUrl(self):
|
|
UrlData.buildUrl(self)
|
|
# cut off parameter, query and fragment
|
|
self.url = urlparse.urlunparse(self.urlTuple[:3] + ('','',''))
|
|
|
|
|
|
def adjustWinPath(self):
|
|
"c:\\windows ==> /c|\\windows"
|
|
self.urlName = "/"+self.urlName[0]+"|"+self.urlName[2:]
|
|
|
|
|
|
def isHtml(self):
|
|
return self.valid and html_re.search(self.url)
|
|
|
|
|
|
def get_scheme(self):
|
|
return "file"
|