Re: Django RedirectView 410 (Gone) Response

2015-11-19 Thread Proto
It would help if I wasn't using `pattern_name` wrongly. For anyone else who 
does something similarly silly, `pattern_name` would be the actual pattern 
name, not the name of the url you want to redirect to. In this case, I want 
to use `url` parameter with `reverse`.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/80b5ebc9-3558-40f9-a324-5430ee5f6375%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django RedirectView 410 (Gone) Response

2015-11-19 Thread Proto
It would help if I wasn't using `pattern_name` wrongly. For anyone else who 
does something similarly sill, `pattern_name` would be the actual pattern 
name, not the name of the url you want to redirect to. In this case, I want 
to use `url` with `reverse`.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/73b21c9c-3761-4389-8211-16aebf0c2c76%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Django RedirectView 410 (Gone) Response

2015-11-19 Thread Proto
url(r'^change-service/$', RedirectView.as_view(pattern_name='new-service', 
permanent=False))

url(r'^new-service/$', 'service', name='service'),

Hitting this route gives a 410 error. I've never used the RedirectView so 
perhaps I haven't implemented something correctly?

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/0413bd4a-8e00-4a76-a27c-8b302550c708%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Ask for help

2015-11-19 Thread Proto
Can you post the migration file? It looks like one of the fields you're 
parsing for date doesn't like the data it's trying to parse (it's expecting 
a string type, but that may not be what it's getting),

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/26fce308-d609-4863-b310-6e100eba0d77%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Avoiding Keyboard Input for Removing Stale Content Types Automatically (migrations and automatic deployment)

2015-05-20 Thread Proto
I submitted this ticket 
recently: https://code.djangoproject.com/ticket/24820 

The content of it is as follows:

While removing models in one of my migrations, I was prompted by Django to 
> input yes/no. For development, this is no problem. For automatic 
> deployments it is.
>
> I want to know if there exists or if it's possible to add functionality to 
> Django to do this. I've created a modification which works, but also want 
> to learn if anyone else has solved this problem differently.
>
> Modifying the deployment file to include --noinput does not solve this 
> problem (it basically defaults to no which ultimately doesn't remove the 
> model).
>
> The patch I've created seems to be working just fine. My solution involves 
> editing the contenttypes to take an additional argument. The argument can 
> be invoked inside a migration file so that I have full control over when 
> it's used. You can view the code below.
>
> Link to diff for the patch I created: 
> ​https://github.com/Protosac/django/commit/d98fff8219469a363493e8d8455c7ffb2430d36f


The Django core team expressed interest in a solution that would address 
this problem, but rejected my specific implementation. I wanted to open a 
discussion to learn how other developers were dealing with this issue. 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/9b45897a-e650-4c5e-b277-11590931619b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.