blob: 52406c4eecd0b815cb241c29ffc70826f245000b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|