Re: How to get ':' in address?

2008-04-22 Thread James Aylett
aped in *all* components of a URI, and in particular path segments (the bits between '/') may contain unescaped colons. HTH, James -- /------\ James Aylett

Re: Advertisement Management

2007-07-23 Thread James Aylett
's open source so you won't lose it if you add one), but that's not a bad thing because (in practice) if you get bigger you'll probably need to do that anyway, either to fit in with a sales network or to run one of the big boys. James -- /----

Re: apache memory requirement ballparks?

2007-06-04 Thread James Aylett
hild. James -- /------\ James Aylett xapian.org [EMAIL PROTECTED] uncertaintydivision.org --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Dj

Re: single-sign-on

2007-05-29 Thread James Aylett
ing here... James -- /------\ James Aylett xapian.org [EMAIL PROTECTED] uncertaintydivision.org --~--~-~--~~~---~--~~ You received this message because you are subscribed to

Re: Good Web development practice

2007-01-07 Thread James Aylett
u want.) James -- /------\ James Aylett xapian.org [EMAIL PROTECTED] uncertaintydivision.org --~--~-~--~~~---~--~~ You re

Re: Is there an easy to "humanize" a list?

2006-12-20 Thread James Aylett
use reduce: -- # l is the list, r is the humanised result r = reduce(lambda x, y: str(x) + "," + str(y), l) -- or similar. James -- /-----