chiark
/
gitweb
/
~mdw
/
chopwood
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Makefile: Add `dist' target.
[chopwood]
/
cgi.py
diff --git
a/cgi.py
b/cgi.py
index 69b90386b36ae99638697643e737cc98eb8e11b6..227d33b236a3f87ca42e061e20cd87f6fb5c5b52 100644
(file)
--- a/
cgi.py
+++ b/
cgi.py
@@
-105,6
+105,7
@@
class HTTPOutput (O.FileOutput):
"""Constructor: initialize `headerp' flag."""
super(HTTPOutput, me).__init__(*args, **kw)
me.headerp = False
"""Constructor: initialize `headerp' flag."""
super(HTTPOutput, me).__init__(*args, **kw)
me.headerp = False
+ me.warnings = []
def write(me, msg):
"""Output protocol: print a header if we've not written one already."""
def write(me, msg):
"""Output protocol: print a header if we've not written one already."""
@@
-126,6
+127,15
@@
class HTTPOutput (O.FileOutput):
if METHOD == 'HEAD':
HEADER_DONE()
if METHOD == 'HEAD':
HEADER_DONE()
+ def warn(me, msg):
+ """
+ Report a warning message.
+
+ The warning is stashed in a list where it can be retrieved using
+ `warnings'.
+ """
+ me.warnings.append(msg)
+
def cookie(name, value, **kw):
"""
Return a HTTP `Set-Cookie' header.
def cookie(name, value, **kw):
"""
Return a HTTP `Set-Cookie' header.
@@
-272,7
+282,8
@@
def page(template, header = {}, title = 'Chopwood', **kw):
header = dict(header, content_type = 'text/html')
OUT.header(**header)
format_tmpl(TMPL['wrapper.fhtml'],
header = dict(header, content_type = 'text/html')
OUT.header(**header)
format_tmpl(TMPL['wrapper.fhtml'],
- title = title, payload = TMPL[template], **kw)
+ title = title, warnings = OUT.warnings,
+ payload = TMPL[template], **kw)
###--------------------------------------------------------------------------
### Error reporting.
###--------------------------------------------------------------------------
### Error reporting.