Initial commit after change to backbone/SPA

This commit is contained in:
fergal.moran
2012-08-09 11:02:18 +01:00
commit e49f36eb14
166 changed files with 23705 additions and 0 deletions

5
core/utils/file.py Normal file
View File

@@ -0,0 +1,5 @@
import uuid
__author__ = 'fergalm'
def generate_save_file_name(prefix, filename):
return '/'.join([prefix, str(uuid.uuid1()), filename])