chunk_size = 1024*1024 # TODO: is this a good chunk size?
+from pylons import config
+
"""
Notes:
# Here's one way to move stuff...
guess_type(temp.filename)[0]
"""
+def get_path(space, hash):
+ return "/" + os.path.join( space, hash[:2], hash[2:] )
+
-def save_file(dest_root, temp):
+def save_file(space, temp):
+
+ dest_root = os.path.join( config['app_conf']['static_root'], space )
+
# we don't know where we're going to save this stuff yet,
# so I guess we'll write it to another tempfile. One we know the path of.
# I'm assuming the tempfile we get from pylons is set to delete itself