-
Further, once the 'parseMeta' keyword is removed, pisa then fails later with:
2008-06-05 11:33:04 ERROR ho.pisa Document error
Traceback (most recent call last):
File "/zope/app/python-2.4.4/lib/python2.4/site-packages/pisa-3.0.20-py2.4.egg/sx/pisa3/pisa_document.py", line 92, in pisaDocument
c = pisaStory(src, path, link_callback, debug, default_css, xhtml, encoding)
File...
2008-06-04 23:35:30 UTC in spirito-pisa
-
Looking at the function signature for parse() in html5lib shows:
def parse(self, stream, encoding=None):
So the pisa usage with a 'parseMeta' keyword is entirely wrong for the latest released version of html5lib (0.10)
2008-06-04 23:26:30 UTC in spirito-pisa
-
Logged In: YES
user_id=567623
This is now fixed with the release of the stable 0.9.9.0.1
version.
2006-01-27 01:53:05 UTC in NTLM Authorization Proxy Server
-
Logged In: YES
user_id=567623
Hmmm, sounds sensible, I'll look at integrating something
like this into the next release. Can I send to you to test?
D.
2006-01-26 23:04:44 UTC in NTLM Authorization Proxy Server
-
Logged In: YES
user_id=567623
Yes, this is the subject of some long running queries.
Basically, you need to configure ntlmaps to use full NTLM
authentication, not just LM. Microsoft's LM protocol
doesn't support basically anything except a small subset of
ASCII and remaps other chars according to a lookup table.
See server.cfg for instructions for turning on full NTLM. I
will close...
2006-01-26 22:34:09 UTC in NTLM Authorization Proxy Server
-
Logged In: YES
user_id=567623
Arg, this is a 1.5.2 incompatibility, thanks for bringing it
to my attention, don't know how it slipped through. I'll do
a maintenance release of 0.9.9 stable to fix this. Look for
it in the next month.
D.
2006-01-26 22:30:56 UTC in NTLM Authorization Proxy Server
-
Logged In: YES
user_id=567623
This problem is caused by a bug in the assumptions made in
the way config.py parses server.cfg. Thanks for bringing it
to my attention, it will be fixed in the next release, which
will probably be 0.9.9.8 (I know, theer's been a long hiatus
between releases; I've had a new baby that's been chewing up
all my time :)
D.
2006-01-26 22:29:34 UTC in NTLM Authorization Proxy Server
-
Logged In: YES
user_id=567623
This is mostly fixed except in some odd corner cases in the
0.9.9.7 version that I have ready and will be released shortly.
2005-08-31 04:27:01 UTC in NTLM Authorization Proxy Server
-
Logged In: YES
user_id=567623
Bus errors are generally caused by unaligned memory
accesses, or by attempts to read past the end of a
file-descriptor (or something along those lines). This
sounds like a gcc bug rather than a Python bug. Can I
suggest changing your compiler flags and experimenting with
things like different -O levels? (-O3, -O1, etc) to see if
it makes a difference.....
2005-07-13 04:36:09 UTC in Python
-
Logged In: YES
user_id=567623
Following on from earlier code; the code below implements a
complete C module for Python that provides a 'getpass'
implementation for windows that behaves similarly to
existing getpass (accepts a prompt, returns a string without
newlines). I'm not a fantastic C coder, so this is really
just to provide ideas.
/*
* This file is part of 'win32console'...
2005-07-12 00:56:56 UTC in Python