Re: glitches in admin interface

2006-01-21 Thread Luke Skibinski Holt
cheers - the validation of blank text fields is fixed, however the repeating results are still there - I'll post that as a seperate issue though. Luke Skibinski Holt

Re: glitches in admin interface

2006-01-21 Thread Luke Skibinski Holt
It seems my problem with the repeating fields is a known bug with one-to-one relationships (http://code.djangoproject.com/ticket/1245) Luke Skibinski Holt

Re: RoR Ajax helpers port to Django tags?

2006-01-21 Thread Louis
Thanks! It helped a lot. I only had to write small bridging Django tag to use his Rails Helpers. It saved a lot of time. -Louis

Mixing prefixes in one urlconf

2006-01-21 Thread Maniac
Hi, everyone! I have an urlconf file in my app with a convinient prefix to my view functions: urlpatterns = patterns('project.apps.app_name.views', (r'$', 'index', None), ... ) Now I want to use generic views in the same app and the prefix to my views gets in the way being added before 'd

Re: Mixing prefixes in one urlconf

2006-01-21 Thread Adrian Holovaty
On 1/21/06, Maniac <[EMAIL PROTECTED]> wrote: > I have an urlconf file in my app with a convinient prefix to my view > functions: > > urlpatterns = patterns('project.apps.app_name.views', > (r'$', 'index', None), > ... > ) > > Now I want to use generic views in the same app and the prefix to m

Re: Mixing prefixes in one urlconf

2006-01-21 Thread Julio Nobrega
Just add (concatenate? append?) another urlpatterns: urlpatterns = patterns('project.apps.some_app.views', (r'^some_url/$', 'index'), ) urlpatterns += patterns('project.apps.another_app.views', (r'^another_url/$', 'index'), ) This is from my newest project: urlpatterns = patterns('',

Re: Using Change Manipulators to Update Only a Subset of Model Data

2006-01-21 Thread akaihola
There's now a ticket [1] about manipulators and default values. See there for links to more discussion. [1] http://code.djangoproject.com/ticket/1207

Re: Mixing prefixes in one urlconf

2006-01-21 Thread Maniac
Julio Nobrega wrote: Just add (concatenate? append?) another urlpatterns: urlpatterns = patterns('project.apps.some_app.views', (r'^some_url/$', 'index'), ) urlpatterns += patterns('project.apps.another_app.views', (r'^another_url/$', 'index'), ) Thanks! I was actually thinking of this m

Re: Django and MS SQL

2006-01-21 Thread Cheng Zhang
Ok, the patch is away [http://code.djangoproject.com/ticket/1258]. :-) - Cheng Zhang

Re: Django and MS SQL

2006-01-21 Thread Cheng Zhang
On Jan 21, 2006, at 7:12 AM, Jeremy Dunck wrote: On 1/20/06, Cheng Zhang <[EMAIL PROTECTED]> wrote: Adapter class over adodbapi where supported, falling back to pymssql? I think they (ado_mssql and pymssql) are meant for different OS platforms, in that ado_mssql is for Django running on W

template variables and looping with attributes

2006-01-21 Thread The Boss
i am trying to make a table template similar to what i find for inline editable modules in the admin interface. I want to send a list of (same class) objects and fields of those objects and then get a row for each object with a col for each desired field. I thought this would be easy because it

Re: RoR Ajax helpers port to Django tags?

2006-01-21 Thread [EMAIL PROTECTED]
can you share your code? i'd like to take a peek. :P