Re: feeds and get_object()

2012-07-11 Thread geaden
Hello, Eric!
I got an error: get_object() got an unexpected keyword argument 'url', when 
running the cod which is similiar to your code. Do you know what the 
problem is? By the way, I do in on Django 1.4.

Sorry, for not reply but asking a question insted.


On Tuesday, 24 June 2008 06:24:21 UTC+5, Eric Montgomery wrote:
>
> I'm using the syndication framework to generate feeds for my blogging 
> app, and everything is working fine so far.  I have multiple blogs 
> each with their own feeds, but I would like to add a combined feed. 
> The documentation seems to mention that this is possible, but it 
> doesn't provide an example and I'm not sure what's the best way to 
> implement it. 
> Here is the documentation code, which I pretty much directly copied: 
>
> class BeatFeed(Feed): 
> def get_object(self, bits): 
> # In case of "/rss/beats/0613/foo/bar/baz/", or other such 
> clutter, 
> # check that bits has only one member. 
> if len(bits) != 1: 
> raise ObjectDoesNotExist 
> return Beat.objects.get(beat__exact=bits[0]) 
>
> In this case, if len(bits) is not 1, then ObjectDoesNotExist is raised 
> (this would correspond to the url "domain.com/rss/beats/"). 
> I would like to generate a combined feed from all of my blogs, but the 
> only way I can seem to do this is to have get_object() return None, 
> and then check if obj is None in each of my title(), description(), 
> link() and items() methods in order to handle the special case.  It 
> seems to work, but doesn't feel ideal.  If anyone knows a better way 
> to do this, I'd love to know it. 
>
> Thanks, 
> Eric

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/2Wf9aW27pCwJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: feeds and repetition

2009-01-28 Thread Donn

On Wednesday, 28 January 2009 14:49:27 Torsten Bronger wrote:
> If the ID of an entry is already known to the feedreader, it isn't
> displayed.
Okay, so it's built-into the reader. Thanks.

\d


-- 
Where I web: http://otherwise.relics.co.za/
Comics, tutorials, software and sundry

--~--~-~--~~~---~--~~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: feeds and repetition

2009-01-28 Thread Torsten Bronger

Hallöchen!

Donn writes:

> [...]
>
> Do I have to worry about this sameness -- or does the syndication
> system remove duplicates? Is this a Django thing or an RSS thing?
> i.e. where does it look at the data and say 'drop this, it's the
> same as last time'?

If the ID of an entry is already known to the feedreader, it isn't
displayed.

Tschö,
Torsten.

-- 
Torsten Bronger, aquisgrana, europa vetus
   Jabber ID: torsten.bron...@jabber.rwth-aachen.de


--~--~-~--~~~---~--~~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Feeds

2007-11-21 Thread Miguel Galves
Eventually, I gave up using the django feed package, and ended up
writing my own. If someone is interested, please contact me.

On Nov 13, 2007 9:52 PM, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote:

>
>
> On 14-Nov-07, at 4:39 AM, Miguel Galves wrote:
>
> > I dont understand your question. What do you mean by
> > "if you want a feed, you have to give one"...
>
> if you want a feed, you have to give an absolute url
>
> --
>
> regards
> kg
> http://lawgon.livejournal.com
> http://nrcfosshelpline.in/web/
>
>
>
> >
>


-- 
Miguel Galves - Engenheiro de Computação
Já leu meus blogs hoje?
Para geeks http://log4dev.com
Pra pessoas normais
http://miguelcomenta.wordpress.com

"Não sabendo que era impossível, ele foi lá e fez..."

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Feeds

2007-11-13 Thread Kenneth Gonsalves


On 14-Nov-07, at 4:39 AM, Miguel Galves wrote:

> I dont understand your question. What do you mean by
> "if you want a feed, you have to give one"...

if you want a feed, you have to give an absolute url

-- 

regards
kg
http://lawgon.livejournal.com
http://nrcfosshelpline.in/web/



--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Feeds

2007-11-13 Thread Miguel Galves
Kenneth,

I dont understand your question. What do you mean by
"if you want a feed, you have to give one"...

I'm trying to create one  :-)

On Nov 12, 2007 10:08 AM, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote:

>
>
> On 12-Nov-07, at 5:32 PM, Miguel Galves wrote:
>
> > I'm giving a feed to index.html.
> >
> > Do I really need to have an absolute URL in my model? It seems to
> > me that
> > this need makes the app less portable.
>
> if you want a feed you have to give one - could you paste the your
> view for index.html?
>
> --
>
> regards
> kg
> http://lawgon.livejournal.com
> http://nrcfosshelpline.in/web/
>
>
>
> >
>


-- 
Miguel Galves - Engenheiro de Computação
Já leu meus blogs hoje?
Para geeks http://log4dev.com
Pra pessoas normais
http://miguelcomenta.wordpress.com

"Não sabendo que era impossível, ele foi lá e fez..."

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Feeds

2007-11-12 Thread Kenneth Gonsalves


On 12-Nov-07, at 5:32 PM, Miguel Galves wrote:

> I'm giving a feed to index.html.
>
> Do I really need to have an absolute URL in my model? It seems to  
> me that
> this need makes the app less portable.

if you want a feed you have to give one - could you paste the your  
view for index.html?

-- 

regards
kg
http://lawgon.livejournal.com
http://nrcfosshelpline.in/web/



--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Feeds

2007-11-12 Thread Miguel Galves
I'm giving a feed to index.html.

Do I really need to have an absolute URL in my model? It seems to me that
this need makes the app less portable.


On Nov 12, 2007 9:59 AM, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote:

>
>
> On 12-Nov-07, at 5:18 PM, Miguel Galves wrote:
>
> > def get_absolute_url(self):
> > return "http://www.test.com/;
>
> this is not a url pointing to a view - unless you are giving a feed
> to your index.html
>
> --
>
> regards
> kg
> http://lawgon.livejournal.com
> http://nrcfosshelpline.in/web/
>
>
>
> >
>


-- 
Miguel Galves - Engenheiro de Computação
Já leu meus blogs hoje?
Para geeks http://log4dev.com
Pra pessoas normais
http://miguelcomenta.wordpress.com

"Não sabendo que era impossível, ele foi lá e fez..."

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Feeds

2007-11-12 Thread Kenneth Gonsalves


On 12-Nov-07, at 5:18 PM, Miguel Galves wrote:

> def get_absolute_url(self):
> return "http://www.test.com/;

this is not a url pointing to a view - unless you are giving a feed  
to your index.html

-- 

regards
kg
http://lawgon.livejournal.com
http://nrcfosshelpline.in/web/



--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Feeds

2007-11-12 Thread Miguel Galves
Hi Justin, thanks for your help.

I've added the get_absolute_url(self) method,

def get_absolute_url(self):
return "http://www.test.com/;

But it`s still doesnt working. I`m getting the same problem. Here is the
traceback:

Traceback (most recent call last):
File
"/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages/django/core/handlers/base.py"
in get_response
  77. response = callback(request, *callback_args, **callback_kwargs)
File
"/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages/django/contrib/syndication/views.py"
in feed
  19. feedgen = f(slug, request.path).get_feed(param)
File
"/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages/django/contrib/syndication/feeds.py"
in get_feed
  69. link = add_domain(current_site.domain, link)

  AttributeError at /feeds/ads/
  'NoneType' object has no attribute 'startswith'

Thanks again,

Miguel

On Nov 12, 2007 4:33 AM, justquick <[EMAIL PROTECTED]> wrote:

>
> Try giving your model a get_absolute_url(self) method which returns
> the absolute (http://...) url of the object for use in feed links. If
> that does not work, reply with the complete traceback (usually found
> by clicking 'Switch to copy-and-paste view' on a standard Django error
> report)
>
> Justin
>
> On Nov 11, 9:03 pm, "Miguel Galves" <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > i'm new to Django, and I'm warming up building a simple job board app.
> > I'm trying to put a feed system to work using the middleware bundled
> with
> > Django.
> >
> > - url.py:
> >
> > feeds = {
> > 'ads': AdFeed,
> >
> > }
> >
> > urlpatterns = patterns('',
> > (r'^admin/', include('django.contrib.admin.urls')),
> > (r'^$', index),
> > (r'^jobs/$', list),
> > (r'^jobs/(?P\d*)/$', list),
> > (r'^view/(?P\d*)/$', view),
> > (r'^feeds/(.*)$', 'django.contrib.syndication.views.feed',
> {'feed_dict':
> > feeds}),
> > )
> >
> > - feeds.py file:
> >
> > class AdFeed(Feed):
> > title = "Chicagocrime.org  site news"
> > item_link = "http://job4dev.com;
> > description = "Updates on changes and additions to chicagocrime.org
> ."
> >
> > item_author_name='Joe Blow'
> > item_author_email='[EMAIL PROTECTED]'
> > item_author_link='http://www.example.com'
> >
> > def items(self):
> > return Vaga.objects.all()[0:100]
> >
> > I've read the docs and lots of examples, and It seems to me that it's
> > correct.
> > But each time I try to acess /feeds/ads, I get an Attribute Error, with
> > value
> > "NoneType" object has no attribute startwith.
> >
> > The error is raised by
> > python2.4/site-packages/django/contrib/syndication/feeds.py
> > in get_feed
> >
> > I just can`t figure out where this None is coming from. Any idea?
> >
> > thanks,
> >
> > Miguel
> >
> > --
> > Miguel Galves - Engenheiro de Computação
> > Já leu meus blogs hoje?
> > Para geekshttp://log4dev.com
> > Pra pessoas normaishttp://miguelcomenta.wordpress.com
> >
> > "Não sabendo que era impossível, ele foi lá e fez..."
>
>
> >
>


-- 
Miguel Galves - Engenheiro de Computação
Já leu meus blogs hoje?
Para geeks http://log4dev.com
Pra pessoas normais
http://miguelcomenta.wordpress.com

"Não sabendo que era impossível, ele foi lá e fez..."

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Feeds

2007-11-11 Thread justquick

Try giving your model a get_absolute_url(self) method which returns
the absolute (http://...) url of the object for use in feed links. If
that does not work, reply with the complete traceback (usually found
by clicking 'Switch to copy-and-paste view' on a standard Django error
report)

Justin

On Nov 11, 9:03 pm, "Miguel Galves" <[EMAIL PROTECTED]> wrote:
> Hi,
>
> i'm new to Django, and I'm warming up building a simple job board app.
> I'm trying to put a feed system to work using the middleware bundled with
> Django.
>
> - url.py:
>
> feeds = {
> 'ads': AdFeed,
>
> }
>
> urlpatterns = patterns('',
> (r'^admin/', include('django.contrib.admin.urls')),
> (r'^$', index),
> (r'^jobs/$', list),
> (r'^jobs/(?P\d*)/$', list),
> (r'^view/(?P\d*)/$', view),
> (r'^feeds/(.*)$', 'django.contrib.syndication.views.feed', {'feed_dict':
> feeds}),
> )
>
> - feeds.py file:
>
> class AdFeed(Feed):
> title = "Chicagocrime.org  site news"
> item_link = "http://job4dev.com;
> description = "Updates on changes and additions to chicagocrime.org."
>
> item_author_name='Joe Blow'
> item_author_email='[EMAIL PROTECTED]'
> item_author_link='http://www.example.com'
>
> def items(self):
> return Vaga.objects.all()[0:100]
>
> I've read the docs and lots of examples, and It seems to me that it's
> correct.
> But each time I try to acess /feeds/ads, I get an Attribute Error, with
> value
> "NoneType" object has no attribute startwith.
>
> The error is raised by
> python2.4/site-packages/django/contrib/syndication/feeds.py
> in get_feed
>
> I just can`t figure out where this None is coming from. Any idea?
>
> thanks,
>
> Miguel
>
> --
> Miguel Galves - Engenheiro de Computação
> Já leu meus blogs hoje?
> Para geekshttp://log4dev.com
> Pra pessoas normaishttp://miguelcomenta.wordpress.com
>
> "Não sabendo que era impossível, ele foi lá e fez..."


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Feeds don't work with Unicode URLs

2007-07-06 Thread web-junkie

On Jul 6, 4:44 pm, Malcolm Tredinnick <[EMAIL PROTECTED]>
wrote:
> On Fri, 2007-07-06 at 07:25 -0700, web-junkie wrote:
> > Thanks for your reply. I'll give more information:
>
> > #  c:\django_src\django\core\handlers\base.py in get_response
>
> >   77. response = callback(request, *callback_args,
> > **callback_kwargs) ...
>
> > # c:\django_src\django\contrib\syndication\views.py in feed
>
> >   19. feedgen = f(slug, request.path).get_feed(param) ...
>
> > # c:\django_src\django\contrib\syndication\feeds.py in get_feed
>
> >   81. feed_url = add_domain(current_site,
> > self.__get_dynamic_attr('feed_url', obj)), ...
>
> > # c:\django_src\django\contrib\syndication\feeds.py in add_domain
>
> >   13. url = u'http://%s%s' % (domain, url) ...
>
> > print repr(domain) and print repr(url) in add_comain produces
>
> > u'www.example.com'
> > '/gie%C3%9Fen/'
> > 
> > '/feeds/gie\xc3\x9fen/'
>
> And so we see the advantage of providing details about how a problem
> occurs. This makes things clear. :-)
>
> It's a bug. I'll fix it tomorrow morning because I'm doing something
> else right now and about to stop for the evening. Plus I want to think a
> bit about what the right approach is for cases like this -- possibly we
> should be converting request.path to an IRI portion when we construct
> the HttpRequest. Maybe not.
>
> No need to worry about opening a ticket. I've made a note and will look
> at it first thing.
>
> Regards,
> Malcolm
>
> --
> He who laughs last thinks slowest.http://www.pointy-stick.com/blog/- Hide 
> quoted text -
>
> - Show quoted text -

Great, thank you so much!


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Feeds don't work with Unicode URLs

2007-07-06 Thread Malcolm Tredinnick

On Fri, 2007-07-06 at 07:25 -0700, web-junkie wrote:
> Thanks for your reply. I'll give more information:
> 
> #  c:\django_src\django\core\handlers\base.py in get_response
> 
>   77. response = callback(request, *callback_args,
> **callback_kwargs) ...
> 
> # c:\django_src\django\contrib\syndication\views.py in feed
> 
>   19. feedgen = f(slug, request.path).get_feed(param) ...
> 
> # c:\django_src\django\contrib\syndication\feeds.py in get_feed
> 
>   81. feed_url = add_domain(current_site,
> self.__get_dynamic_attr('feed_url', obj)), ...
> 
> # c:\django_src\django\contrib\syndication\feeds.py in add_domain
> 
>   13. url = u'http://%s%s' % (domain, url) ...
> 
> print repr(domain) and print repr(url) in add_comain produces
> 
> u'www.example.com'
> '/gie%C3%9Fen/'
> 
> '/feeds/gie\xc3\x9fen/'

And so we see the advantage of providing details about how a problem
occurs. This makes things clear. :-)

It's a bug. I'll fix it tomorrow morning because I'm doing something
else right now and about to stop for the evening. Plus I want to think a
bit about what the right approach is for cases like this -- possibly we
should be converting request.path to an IRI portion when we construct
the HttpRequest. Maybe not.

No need to worry about opening a ticket. I've made a note and will look
at it first thing.

Regards,
Malcolm

-- 
He who laughs last thinks slowest. 
http://www.pointy-stick.com/blog/


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Feeds don't work with Unicode URLs

2007-07-06 Thread web-junkie

Thanks for your reply. I'll give more information:

#  c:\django_src\django\core\handlers\base.py in get_response

  77. response = callback(request, *callback_args,
**callback_kwargs) ...

# c:\django_src\django\contrib\syndication\views.py in feed

  19. feedgen = f(slug, request.path).get_feed(param) ...

# c:\django_src\django\contrib\syndication\feeds.py in get_feed

  81. feed_url = add_domain(current_site,
self.__get_dynamic_attr('feed_url', obj)), ...

# c:\django_src\django\contrib\syndication\feeds.py in add_domain

  13. url = u'http://%s%s' % (domain, url) ...

print repr(domain) and print repr(url) in add_comain produces

u'www.example.com'
'/gie%C3%9Fen/'

'/feeds/gie\xc3\x9fen/'

You are right when you say that request.path is never passed directly
to add_domain, the error occurs when it uses feed_url.
feed_url is passed to the feed object from request.path

On Jul 6, 4:00 pm, Malcolm Tredinnick <[EMAIL PROTECTED]>
wrote:
> On Fri, 2007-07-06 at 06:51 -0700, web-junkie wrote:
> > Hi, I have a problem of getting my feeds to work with unicode URLs.
>
> >  File "/usr/local/lib/python2.4/site-packages/django/contrib/
> > syndication/feeds.py", line 12, in add_domain
> >url = u'http://%s%s' % (domain, url)
>
> > UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position
> > 19: ordinal not in range(128)
>
> You're only showing the last line of the traceback here. What is the
> full traceback? In particular, I would like to see which of the calls to
> add_domain() is triggering this.
>
> Can you also print out the values of "domain" and "url" inside that
> function -- or rather, print out repr(domain) and repr(url)? The easiest
> way to do this is change the source to catch UnicodeDecodeError in
> add_domain and then print out the values to sys.stderr and re-raise the
> exception.
>
>
>
> > In all my models I correctly encoded and quoted the URLs, I traced the
> > problem back to the request.path not being correctly quoted when it is
> > passed to the feed object.
>
> request.path is never passed directly to add_domain(), so it would help
> if you could explain this a little more. In particular, whenever
> add_domain() is called, it is using either the "link", "item_link" or
> "feed_url" attributes from your Feed class. If you can show us the code
> that is constructing each of those attributes, that would make things
> easier to work out what is going on.
>
>
>
> > There seems to be a bug or I'm doing something wrong, please help.
>
> It's not impossible that this is a bug, but you haven't given enough
> information to determine that. Show us the code that you've written to
> create these URLs and we should be able to get closer to a solution.
>
> Regards,
> Malcolm
>
> --
> The early bird may get the worm, but the second mouse gets the 
> cheese.http://www.pointy-stick.com/blog/


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Feeds don't work with Unicode URLs

2007-07-06 Thread Malcolm Tredinnick

On Fri, 2007-07-06 at 06:51 -0700, web-junkie wrote:
> Hi, I have a problem of getting my feeds to work with unicode URLs.
> 
>  File "/usr/local/lib/python2.4/site-packages/django/contrib/
> syndication/feeds.py", line 12, in add_domain
>url = u'http://%s%s' % (domain, url)
> 
> UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position
> 19: ordinal not in range(128)

You're only showing the last line of the traceback here. What is the
full traceback? In particular, I would like to see which of the calls to
add_domain() is triggering this.

Can you also print out the values of "domain" and "url" inside that
function -- or rather, print out repr(domain) and repr(url)? The easiest
way to do this is change the source to catch UnicodeDecodeError in
add_domain and then print out the values to sys.stderr and re-raise the
exception.

> 
> In all my models I correctly encoded and quoted the URLs, I traced the
> problem back to the request.path not being correctly quoted when it is
> passed to the feed object.

request.path is never passed directly to add_domain(), so it would help
if you could explain this a little more. In particular, whenever
add_domain() is called, it is using either the "link", "item_link" or
"feed_url" attributes from your Feed class. If you can show us the code
that is constructing each of those attributes, that would make things
easier to work out what is going on.
> 
> There seems to be a bug or I'm doing something wrong, please help.

It's not impossible that this is a bug, but you haven't given enough
information to determine that. Show us the code that you've written to
create these URLs and we should be able to get closer to a solution.

Regards,
Malcolm

-- 
The early bird may get the worm, but the second mouse gets the cheese. 
http://www.pointy-stick.com/blog/


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---