From 7ab79e4448bff861a5969fa95427433a641defe8 Mon Sep 17 00:00:00 2001 From: Adam Sampson Date: Tue, 9 Jul 2013 21:55:32 +0000 Subject: [PATCH] Add a note about Vellum and the plugin API. The two don't share any code, but they work the same way from the plugin developer's perspective -- I vaguely remember looking at a bunch of different plugin systems for Python and deciding I liked the Vellum one the best. --- rawdoglib/plugins.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rawdoglib/plugins.py b/rawdoglib/plugins.py index 2f7ee79..9ac0803 100644 --- a/rawdoglib/plugins.py +++ b/rawdoglib/plugins.py @@ -16,6 +16,10 @@ # Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, # MA 02110-1301, USA, or see http://www.gnu.org/. +# The design of rawdog's plugin API was inspired by Stuart Langridge's +# Vellum weblog system: +# http://www.kryogenix.org/code/vellum/ + import os, imp class Box: -- 2.35.1