Re: Parsing an XML feed using ElementTree

2011-05-24 Thread Тимур Зарипов
I'd really reallly suggest you to use lxml library for xml parsing -- it has xpath in it. On Tue, May 24, 2011 at 2:13 PM, Sithembewena Lloyd Dube wrote: > Hi Everyone, > > I am trying to parse an XML feed and display the text of each child node > without any success. My code in

Re: Is there an HTML editor that's Django-aware

2011-05-24 Thread Тимур Зарипов
+1 for Aptana -- it's Eclipse-based IDE, so Eclipse plugins are also available (Aptana + Mylyn in my case). On Sat, May 21, 2011 at 2:19 AM, W Craig Trader wrote: > On 05/20/2011 05:54 AM, BobX wrote: > >> Pretty obvious question, but is there any recommended HTML editor that >> won't munch the D

Re: Pre fork or worker MPM

2011-05-18 Thread Тимур Зарипов
Generally, mpm worker is more preferable, but there is one more thing: in which mode will you use mod_wsgi ? Embedded or daemon-mode ? I'd suggest you to read mod_wsgi main page first. On Wed, May 18, 2011 at 1:15 AM, ydjango wrote: > I am using Python 2.5, d

Re: Form with two select boxes + javascript - selection gets destroyed???

2011-04-15 Thread Тимур Зарипов
I suggest you to use firefox + firebug extension to see what exactly your form is sending to server in POST (or GET) request via firebug's "Console" tab. If data in request is correct every time (change both selectors, change oly one of them, without changes) -- then problem somewhere in your djang