Re: django 1.3: how to use get_abolute_url in class based generic views

2011-10-14 Thread Fabrizio Mancini
On 13 October 2011 23:57, Andriyko wrote: > urlpatterns = patterns('django.views.generic.dates', > (r'^(?P\d{4})/v/(?P\d{2})/(?P[-\w]+)/ > $', DateDetailView.as_view(template_name='blog/article_detail.html', > **entry_info_dict)), > ) > Hi, You are using (?P\w{3}) but in get_absolute_url you are

Re: An application for hierarchical tagging?

2011-10-10 Thread Fabrizio Mancini
On 10 October 2011 15:00, Jim wrote: > Is there an application that would characterize the data by hierarchy? > > That is, I want a taxonomy for my data to go something like this. > books > books > fiction > books > fiction > murder mysteries > and my data can be associated with one or more su

Re: How do I select which user/password to use for DB connection after Django app was started?

2011-08-18 Thread Fabrizio Mancini
On 18 August 2011 11:55, michael kapelko wrote: > I think I have to emulate Delphi app with a server process, and make > Django interact with the process. The process can login to DB > directly. That's not so easy, but I guess that's the only option here > - move Delphi app from client machine to

Re: Runserver has connection limit?

2011-05-05 Thread Fabrizio Mancini
Il giorno 05/mag/2011, alle ore 18.26, Davepar ha scritto: > Any suggestions for limiting the Chrome connections or beefing up > runserver? I don't really want to run a real http server for > development. I like the auto-reload of runserver. If it's just for development you can look at this http:/