Re: Removing SQL From Templates

2007-01-10 Thread Gustavo Picon
Why don't you just generate lists and dictionaries in the view and send those to your templates instead of data objects? -- Gustavo Picon --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users&

ANN: Release: Feedjack 0.9.9 - Django powered Feed aggregator

2007-02-04 Thread Gustavo Picon
A new version of Feedjack has been released: Feedjack 0.9.9. Changes: * Fixed i18n related bugs in the templates * Fixed a bug related to the -settings option in feedjack_update.py * The feeds per user, tag and user/tag are working again * You can choose between rss2 and atom in the feeds for

ANN: Feedjack - A Django+Python Powered Feed Aggregator (Planet)

2006-05-29 Thread Gustavo Picon
Feedjack is a feed aggregator writen in Python using the Django web development framework. Website: http://tabo.aurealsys.com/software/feedjack/ Like the Planet feed aggregator: * It downloads feeds and aggregate their contents in a single site * The new aggregated site has a feed of its ow

ANN: Feedjack - A Django+Python Powered Feed Aggregator (Planet)

2006-05-29 Thread Gustavo Picon
rg/ I hope you guys like it. Share and enjoy. -- Gustavo Picon http://tabo.aurealsys.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-

Re: Paginating complex queries

2005-11-22 Thread Gustavo Picon
that generates the lists in the admin interface. -- Gustavo Picon - http://tabo.aurealsys.com/

Re: unexpected keyword argument 'member_name' (rev 1547)

2005-12-06 Thread Gustavo Picon
I submitted a patch in http://code.djangoproject.com/ticket/1006 Hope it helps. -- Gustavo Picon http://tabo.aurealsys.com

Re: Request for ideas

2006-02-15 Thread Gustavo Picon
I already wrote[1] a planetplanet implementation in django with some added features: * It handles historical data, you can read old posts * It parses a lot more info than PlanetPlanet, including post categories * It generates pages with posts of a certain category * A cloud tag/folksonomy (hype 2

Re: Searching in a foreign table field

2006-03-29 Thread Gustavo Picon
You have to specify in what field of the FK object you want the search to work. For instance if there is a "name" field in the Song model, you may want to try: search_fields = ('song__name', ), Hope that helps. --~--~-~--~~~---~--~~ You received this message