Hi all,
 
I want to add the geo tag (with latitude and longitude) to each item of my
feeds:
 

<georss:point>45.256 -71.92</georss:point>

I am using the feeds framework:


class LatestEvents(Feed): 

       title = "Latest Events" 

       link = "/events/" 

       def items(self): 

           return Event.objects.order_by('-start_date')[:5]


Is there any way to add the new node to each item returned by "items()"
Thank you.




Daniel de la Cuesta Navarrete 
Coordinador de Proyectos e I+D
BERTIENTE Mobile Techonologies
[EMAIL PROTECTED]
Teléfono:627091831

Este correo electrónico y, en su caso, cualquier fichero anexo, contiene
información confidencial exclusivamente dirigida a su(s) destinatario(s).
Toda copia o divulgación deberá ser autorizada por BERTIENTE.

This e-mail and any attachments are confidential and exclusively directed to
its address(es). Any copy or distribution will have to be authorized by
BERTIENTE.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to