mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 07:11:52 +00:00
Fix up parser paths so everything is found
This commit is contained in:
parent
833ddeef8b
commit
0c20ef2a04
@ -50,7 +50,8 @@ def flatpage(request, path):
|
|||||||
return render_with_context(request, 'pagenotfound.html', {'path': path})
|
return render_with_context(request, 'pagenotfound.html', {'path': path})
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
o = open(os.path.normpath(settings.EXPOWEB + path), "rb")
|
filetobeopened = os.path.normpath(settings.EXPOWEB + path)
|
||||||
|
o = open(filetobeopened, "rb")
|
||||||
except IOError:
|
except IOError:
|
||||||
return render_with_context(request, 'pagenotfound.html', {'path': path})
|
return render_with_context(request, 'pagenotfound.html', {'path': path})
|
||||||
if path.endswith(".htm") or path.endswith(".html"):
|
if path.endswith(".htm") or path.endswith(".html"):
|
||||||
|
@ -89,7 +89,7 @@ def listdir(*directories):
|
|||||||
# add survey scans
|
# add survey scans
|
||||||
def parseSurveyScans(year, logfile=None):
|
def parseSurveyScans(year, logfile=None):
|
||||||
# yearFileList = listdir(year.year)
|
# yearFileList = listdir(year.year)
|
||||||
yearPath=os.path.join(settings.SURVEY_SCANS, "years", year.year)
|
yearPath=os.path.join(settings.SURVEY_SCANS, year.year)
|
||||||
yearFileList=os.listdir(yearPath)
|
yearFileList=os.listdir(yearPath)
|
||||||
print yearFileList
|
print yearFileList
|
||||||
for surveyFolder in yearFileList:
|
for surveyFolder in yearFileList:
|
||||||
|
Loading…
Reference in New Issue
Block a user