word-wrapping the public/queue storage explainations in storage.rst
authorChristopher Allan Webber <cwebber@dustycloud.org>
Fri, 26 Apr 2013 21:13:05 +0000 (16:13 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Fri, 26 Apr 2013 21:13:05 +0000 (16:13 -0500)
docs/source/devel/storage.rst

index ce89db09f01bcf916e7c4ec7fc1618670e189a94..215f95796b8745c33fadd2eb70cf2c539d99c4ed 100644 (file)
@@ -11,9 +11,18 @@ Dynamic content: queue_store and public_store
 Two instances of the StorageInterface come attached to your app. These 
 are: 
 
-+ **queue_store:** When a user submits a fresh piece of media for their gallery, before the Processing stage, that piece of media sits here in the queue_store. (It's possible that we'll rename this to "private_store" and start storing more non-publicly-stored stuff in the future...). This is a StorageInterface implementation instance. Visitors to your site probably cannot see it... it isn't designed to be seen, anyway. 
-
-+ **public_store:** After your media goes through processing it gets moved to the public store. This is also a StorageInterface implelementation, and is for stuff that's intended to be seen by site visitors. 
++ **queue_store:** When a user submits a fresh piece of media for
+  their gallery, before the Processing stage, that piece of media sits
+  here in the queue_store. (It's possible that we'll rename this to
+  "private_store" and start storing more non-publicly-stored stuff in
+  the future...). This is a StorageInterface implementation
+  instance. Visitors to your site probably cannot see it... it isn't
+  designed to be seen, anyway.
+
++ **public_store:** After your media goes through processing it gets
+  moved to the public store. This is also a StorageInterface
+  implelementation, and is for stuff that's intended to be seen by
+  site visitors.
 
 The workbench
 ~~~~~~~~~~~~~