The Apache module auth_tkt creates authentication cookies that can be verified cryptographically so a web server can generate REMOTE_USER without consulting a database. What is the specification for auth_tkt cookies?
I'm embedding a font in Internet Explorer with @font-face and it works but is not antialiased. How do I enable antialiased rendering for embedded fonts in IE?
I have a Plone product that uses collective.lead to configure SQLAlchemy, including an in-Plone database configuration interface as documented in Professional Plone Development. How should I port this to z3c.saconfig? Will I be able to keep the in-ZODB configuration or will it need to go into site.zcml?
I would like to use an XML database like eXist to store and query editable form submissions, with a changelog storing prior versions of each document.
How should I structure the database to easily query the latest version of each document?
Due to the wonders of branch prediction, a binary search can be slower than a linear search through an array of integers. On a typical desktop processor, how big does that array have to get before it would be better to use a binary search? Assume the structure will be used for many lookups.
I would like to register a marker interface so I can add it to objects in the ZMI. My product's configure.zcml contains:
<interface interface=".interfaces.IMarkerInterface" />
and, after reinstalling, the interface shows up in the list of available interfaces. But if I try to add it to an object in the ZMI I get a ComponentLookupError. What's missing?
<td></td><td>foo</td>
I would like to return ['', 'foo'] but libxml's xpath //td/text() returns just ['foo']. How do I find the empty tag as '' instead of (not matched)?