##// END OF EJS Templates
hgweb: all protocol functions have become generators...
hgweb: all protocol functions have become generators Using the write() callable supplied by the start_response() call is frowned upon by the WSGI spec, returning an iterable over the content chunks is the recommended way. Be aware, though: returning many small chunks will slow down responses, because the server has to flush each chunk separately.

File last commit:

r6204:f8a86ea7 default
r6784:18c429ea default
Show More
test-bad-extension
13 lines | 377 B | text/plain | TextLexer
/ tests / test-bad-extension
Alexis S. L. Carvalho
load extensions only after the ui object has been completely initialized...
r3014 #!/bin/sh
Alexis S. L. Carvalho
test-bad-extension: avoid printing the file name...
r4139 echo 'raise Exception("bit bucket overflow")' > badext.py
Alexis S. L. Carvalho
load extensions only after the ui object has been completely initialized...
r3014 abspath=`pwd`/badext.py
echo '[extensions]' >> $HGRCPATH
Thomas Arendsen Hein
Improved error message for extensions overriding commands (with test):...
r3990 echo "gpg =" >> $HGRCPATH
echo "hgext.gpg =" >> $HGRCPATH
Alexis S. L. Carvalho
load extensions only after the ui object has been completely initialized...
r3014 echo "badext = $abspath" >> $HGRCPATH
Jesse Glick
When failing to load an extension, show where Hg tried to load it from.
r6204 echo "badext2 =" >> $HGRCPATH
Alexis S. L. Carvalho
load extensions only after the ui object has been completely initialized...
r3014
Jesse Glick
When failing to load an extension, show where Hg tried to load it from.
r6204 hg -q help help 2>&1 | python -c \
"import sys; sys.stdout.write(sys.stdin.read().replace('$abspath', '.../badext.py'))"