added a debug message to puzzles.py, got some resemblence of files working on package-puzzles

This commit is contained in:
slackish 2016-10-18 17:03:42 -06:00
parent d1e7ad91e5
commit c388d271a2
2 changed files with 22 additions and 6 deletions

View File

@ -85,8 +85,9 @@ if __name__ == '__main__':
hashmap.update(categoryname.encode('utf-8'))
hashmap.update(str(points).encode('utf-8'))
mapping[points] = hashmap.hexdigest()
answers[points] = puzzle.answers
summary[points] = puzzle.fields['summary']
answers[points] = puzzle['answer']
if len(puzzle['summary']) > 0:
summary[points] = puzzle['summary']
# write mapping, answers, and summary
write_kv_pairs(zf, os.path.join(categoryname, 'map.txt'), mapping)
@ -96,13 +97,28 @@ if __name__ == '__main__':
# write out puzzles
for points in sorted(puzzles_dict):
puzzle = puzzles_dict[points]
puzzlebody = [json.dumps(puzzle.publish())]
puzzledir = os.path.join(categoryname, 'content', mapping[points])
# build/write json
ziphandle.writestr(filename, filehandle.read())
zf.writestr(os.path.join(puzzledir, 'puzzle.json'), \
json.dumps(puzzle.publish()))
# write associated files
assoc_files = []
for fobj in puzzle['files']:
if fobj.visible == True:
assoc_files.append(fobj.name)
zf.writestr(os.path.join(puzzledir, fobj.name), \
fobj.handle.read())
if len(assoc_files) > 0:
puzzlebody.append("")
puzzlebody.append("## Associated Files:")
for f in assoc_files:
puzzlebody.append(f)
puzzlebody = os.linesep.join(puzzlebody)
# non-optimal writing of file-like objects, but it works
zf.writestr(os.path.join(puzzledir, 'puzzle.json'), \
json.dumps(puzzle.publish()))
#vim:py

View File

@ -171,7 +171,7 @@ class Puzzle:
# Make sure it actually exists.
if not os.path.exists(path):
raise ValueError("Included file {} does not exist.")
raise ValueError("Included file {} does not exist.".format(path))
file = open(path, 'rb')