char0n / django-brevisurl

Django app for shortening urls
Other
9 stars 10 forks source link

Redirect view #15

Closed char0n closed 12 years ago

char0n commented 12 years ago

Problem:

Redirect view has problems when brevisurl.settings.LOCAL_BACKEND_DOMAIN is set, that way current_site cannot be used.

Solution:

Redirect view for local backend will has this fallback with original_url from shortened_url:

1.) brevisurl.settings.LOCAL_BACKEND_DOMAIN 2.) Site.objects.current_site() 3.) request

char0n commented 12 years ago

Implemented