diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-05-29 15:35:37 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-05-29 15:35:37 -0500 |
commit | 8ae5d20f197291a1cd2e211e4e5d5ede92718f52 (patch) | |
tree | ed29648eb95cacf085873768636a2b05330b6ada /docs/source/pluginwriter | |
parent | b21220e931e80fa9005f71c026eaa66f5ea225f4 (diff) | |
download | mediagoblin-8ae5d20f197291a1cd2e211e4e5d5ede92718f52.tar.lz mediagoblin-8ae5d20f197291a1cd2e211e4e5d5ede92718f52.tar.xz mediagoblin-8ae5d20f197291a1cd2e211e4e5d5ede92718f52.zip |
Where do you find hooks? How do you add them? An explaination!
This commit about talking to community members sponsored by
community member Aeva Palecek. Thanks!
Diffstat (limited to 'docs/source/pluginwriter')
-rw-r--r-- | docs/source/pluginwriter/api.rst | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/source/pluginwriter/api.rst b/docs/source/pluginwriter/api.rst index 819fac2d..33bb70c4 100644 --- a/docs/source/pluginwriter/api.rst +++ b/docs/source/pluginwriter/api.rst @@ -26,6 +26,26 @@ moving target for a few releases. Please check the :ref:`release-notes` for updates! + +How are hooks added? Where do I find them? +------------------------------------------- + +Much of this document talks about hooks, both as in terms of regular +hooks and template hooks. But where do they come from, and how can +you find a list of them? + +For the moment, the best way to find available hooks is to check the +source code itself. (Yes, we should start a more official hook +listing with descriptions soon.) But many hooks you may need do not +exist yet: what to do then? + +The plan at present is that we are adding hooks as people need them, +with community discussion. If you find that you need a hook and +MediaGoblin at present doesn't provide it at present, please +`http://mediagoblin.org/pages/join.html <talk to us>`_! We'll +evaluate what to do from there. + + :mod:`pluginapi` Module ----------------------- |