2011-09-11 05:25:42 +02:00
|
|
|
import re
|
2011-09-11 22:11:36 +02:00
|
|
|
import inspect
|
|
|
|
|
2012-03-06 22:14:29 +01:00
|
|
|
from flask import redirect
|
2011-08-21 22:35:01 +02:00
|
|
|
from werkzeug.routing import HTTPException, RoutingException
|
2011-07-23 18:45:40 +02:00
|
|
|
|
2012-03-06 22:14:29 +01:00
|
|
|
|
2011-09-11 05:25:42 +02:00
|
|
|
def slugify(value):
|
|
|
|
"""Normalizes string, converts to lowercase, removes non-alpha characters,
|
|
|
|
and converts spaces to hyphens.
|
2011-07-23 18:45:40 +02:00
|
|
|
|
2011-09-11 05:25:42 +02:00
|
|
|
Copy/Pasted from ametaireau/pelican/utils itself took from django sources.
|
2011-08-10 19:47:06 +02:00
|
|
|
"""
|
2011-09-11 05:25:42 +02:00
|
|
|
if type(value) == unicode:
|
|
|
|
import unicodedata
|
|
|
|
value = unicodedata.normalize('NFKD', value).encode('ascii', 'ignore')
|
|
|
|
value = unicode(re.sub('[^\w\s-]', '', value).strip().lower())
|
|
|
|
return re.sub('[-\s]+', '-', value)
|
2011-07-23 18:45:40 +02:00
|
|
|
|
2011-10-08 13:22:18 +02:00
|
|
|
|
2011-08-21 22:35:01 +02:00
|
|
|
class Redirect303(HTTPException, RoutingException):
|
|
|
|
"""Raise if the map requests a redirect. This is for example the case if
|
|
|
|
`strict_slashes` are activated and an url that requires a trailing slash.
|
2011-07-23 18:45:40 +02:00
|
|
|
|
2011-08-21 22:35:01 +02:00
|
|
|
The attribute `new_url` contains the absolute destination url.
|
2011-07-23 18:45:40 +02:00
|
|
|
"""
|
2011-08-21 22:35:01 +02:00
|
|
|
code = 303
|
2011-07-23 18:45:40 +02:00
|
|
|
|
2011-08-21 22:35:01 +02:00
|
|
|
def __init__(self, new_url):
|
|
|
|
RoutingException.__init__(self, new_url)
|
|
|
|
self.new_url = new_url
|
|
|
|
|
|
|
|
def get_response(self, environ):
|
|
|
|
return redirect(self.new_url, 303)
|