diff options
author | Elrond <elrond+mediagoblin.org@samba-tng.org> | 2013-03-10 22:33:28 +0100 |
---|---|---|
committer | Elrond <elrond+mediagoblin.org@samba-tng.org> | 2013-03-12 18:16:16 +0100 |
commit | 340100ee997756e5b84a2b3f7615b1682e07bbb5 (patch) | |
tree | f30602ffc0ae1ec5b311515ac598163b98af6981 /docs/source | |
parent | e72c30e0e562f699676c7df9349d5ad2663c8ec1 (diff) | |
download | mediagoblin-340100ee997756e5b84a2b3f7615b1682e07bbb5.tar.lz mediagoblin-340100ee997756e5b84a2b3f7615b1682e07bbb5.tar.xz mediagoblin-340100ee997756e5b84a2b3f7615b1682e07bbb5.zip |
Start a storage section.
With the workbench stuff in it.
Diffstat (limited to 'docs/source')
-rw-r--r-- | docs/source/devel/storage.rst | 43 | ||||
-rw-r--r-- | docs/source/index.rst | 1 |
2 files changed, 44 insertions, 0 deletions
diff --git a/docs/source/devel/storage.rst b/docs/source/devel/storage.rst new file mode 100644 index 00000000..52406c4e --- /dev/null +++ b/docs/source/devel/storage.rst @@ -0,0 +1,43 @@ +========= + Storage +========= + + +See for now: http://wiki.mediagoblin.org/Storage + +Things get moved here. + + +The storage systems attached to your app +---------------------------------------- + +Dynamic content: queue_store and public_store +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The workbench +~~~~~~~~~~~~~ + +In addition, there's a "workbench" used during +processing... it's just for temporary files during +processing, and also for making local copies of stuff that +might be on remote storage interfaces while transitionally +moving/converting from the queue_store to the public store. +See the workbench module documentation for more. + +.. automodule:: mediagoblin.tools.workbench + :members: + :show-inheritance: + + +Static assets / staticdirect +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + +StorageInterface and implementations +------------------------------------ + +The guts of StorageInterface and friends +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Writing code to store stuff +~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/docs/source/index.rst b/docs/source/index.rst index 0ddacb71..7f692d57 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -84,6 +84,7 @@ This chapter contains various information for developers. :maxdepth: 1 devel/codebase + devel/storage devel/originaldesigndecisions |