Re: Sick of defining urls

2009-12-03 Thread Jaime Buelta
ings in Django. You can control exactly the map of the website and all the parameters to the views, and make changes inside without affecting URLs. OK, regular expressions are awful. They always were and they always will be, but usually the expressions on the URLs are not very difficult and are sim

Re: efficiently deleting content based on how old it is

2009-10-20 Thread Jaime Buelta
When I had to do this kind of tasks, I've added a new management command and run it from the cron (or manually any time you need it, with params, etc). You can run it calling python manager.py miCommand parameters The official documentation is not very complete, which is rare, but there are some

Re: How to disable autoescape in django feeds?

2009-10-20 Thread Jaime Buelta
Use the filter 'safe' {{ variable | safe }} On Tue, Oct 20, 2009 at 8:31 AM, Alexey Moskvin wrote: > > Hi! > I use django feed framework to organize rss feeds for my website. > I need to put some hyperlinks to feed items, but al of them are > autoescaped ( "<" is replaced with "<" and so on). >