From: Fredrik Tolf Date: Thu, 5 Jul 2012 04:23:45 +0000 (+0200) Subject: Added a SP formatter function to output mere fragments of documents. X-Git-Url: http://dolda2000.com/gitweb/?p=wrw.git;a=commitdiff_plain;h=3f48e448900d9b2221ca35796bdc20e470885338 Added a SP formatter function to output mere fragments of documents. --- diff --git a/wrw/sp/util.py b/wrw/sp/util.py index a913e74..0b31c65 100644 --- a/wrw/sp/util.py +++ b/wrw/sp/util.py @@ -140,6 +140,10 @@ class formatter(object): def output(cls, out, el, *args, **kw): cls(out=out, root=el, *args, **kw).start() + @classmethod + def fragment(cls, out, el, *args, **kw): + cls(out=out, root=el, *args, **kw).element(el) + def update(self, **ch): ret = type(self).__new__(type(self)) ret.__dict__.update(self.__dict__)