summaryrefslogtreecommitdiffstats
path: root/parsers
diff options
context:
space:
mode:
authorsubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-06-10 17:47:05 +0100
committersubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-06-10 17:47:05 +0100
commit8d374c17611571ca68ae094b3d2987dc60488c6b (patch)
treeb76312f8dea834c69679d630b100ae4f0bec6bd9 /parsers
parent6e3b99c8d271a98a6b69cc96037ce286dfd3403f (diff)
downloadtroggle-8d374c17611571ca68ae094b3d2987dc60488c6b.tar.gz
troggle-8d374c17611571ca68ae094b3d2987dc60488c6b.tar.bz2
troggle-8d374c17611571ca68ae094b3d2987dc60488c6b.zip
[svn] Added detection of noinfo in cave parser. It sets the non_public flag to true, and the view then shows nonpublic.html instead of the cave if the user isn't logged in.
Diffstat (limited to 'parsers')
-rw-r--r--parsers/cavetab.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/parsers/cavetab.py b/parsers/cavetab.py
index 3a990fe..dcc8fcc 100644
--- a/parsers/cavetab.py
+++ b/parsers/cavetab.py
@@ -182,6 +182,11 @@ def LoadCaveTab():
addToDefaultArgs(SurvexFile, "survex_file")
addToDefaultArgs(Notes, "notes")
+ #The following checks if this cave is non-public i.e. we don't have rights to display it online.
+ #Noinfo was the name of the old password protected directory, so if it has that then we will
+ #set the non_public field of the model instance to true.
+ defaultArgs["non_public"]=line[AutogenFile].startswith('noinfo') or line[LinkFile].startswith('noinfo')
+
newCave, created=save_carefully(models.Cave, lookupAttribs=args, nonLookupAttribs=defaultArgs)
logging.info("Added cave "+str(newCave)+"\n")