[Moin-devel] CVS: MoinMoin/processor CSV.py,1.1,1.2 Colorize.py,1.2,1.3
J?rgen Hermann
jhermann at users.sourceforge.net
Wed Apr 17 12:44:41 EDT 2002
- Previous message (by thread): [Moin-devel] CVS: MoinMoin/parser plain.py,1.6,1.7 python.py,1.9,1.10 wiki.py,1.85,1.86 xslt.py,1.10,1.11
- Next message (by thread): [Moin-devel] CVS: MoinMoin Page.py,1.113,1.114 wikiaction.py,1.65,1.66
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/moin/MoinMoin/processor
In directory usw-pr-cvs1:/tmp/cvs-serv2785/processor
Modified Files:
CSV.py Colorize.py
Log Message:
request passing: processors and parsers
Index: CSV.py
===================================================================
RCS file: /cvsroot/moin/MoinMoin/processor/CSV.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** CSV.py 17 Mar 2002 13:46:17 -0000 1.1
--- CSV.py 17 Apr 2002 19:24:58 -0000 1.2
***************
*** 10,14 ****
import string, sys
! def process(formatter, lines):
# parse bangpath for arguments
exclude = []
--- 10,14 ----
import string, sys
! def process(request, formatter, lines):
# parse bangpath for arguments
exclude = []
Index: Colorize.py
===================================================================
RCS file: /cvsroot/moin/MoinMoin/processor/Colorize.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Colorize.py 17 Mar 2002 11:03:57 -0000 1.2
--- Colorize.py 17 Apr 2002 19:24:58 -0000 1.3
***************
*** 11,15 ****
from MoinMoin.parser import python
! def process(formatter, lines):
if not formatter.in_pre:
sys.stdout.write(formatter.preformatted(1))
--- 11,15 ----
from MoinMoin.parser import python
! def process(request, formatter, lines):
if not formatter.in_pre:
sys.stdout.write(formatter.preformatted(1))
***************
*** 22,26 ****
buff = cStringIO.StringIO()
! colorizer = python.Parser(string.join(lines, '\n'), out = buff)
colorizer.format(formatter, {})
--- 22,26 ----
buff = cStringIO.StringIO()
! colorizer = python.Parser(string.join(lines, '\n'), request, out = buff)
colorizer.format(formatter, {})
- Previous message (by thread): [Moin-devel] CVS: MoinMoin/parser plain.py,1.6,1.7 python.py,1.9,1.10 wiki.py,1.85,1.86 xslt.py,1.10,1.11
- Next message (by thread): [Moin-devel] CVS: MoinMoin Page.py,1.113,1.114 wikiaction.py,1.65,1.66
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Moin-devel
mailing list