mirror of
https://github.com/golang/go
synced 2024-11-02 08:01:26 +00:00
5742ded3ad
Fixes #1314. R=adg, rsc CC=golang-dev https://golang.org/cl/3459043
14 lines
451 B
Python
14 lines
451 B
Python
# Copyright 2010 The Go Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
# This is a Django custom template filter to work around the
|
|
# fact that GAE's urlencode filter doesn't handle unicode strings.
|
|
|
|
from google.appengine.ext import webapp
|
|
|
|
register = webapp.template.create_template_register()
|
|
|
|
@register.filter
|
|
def toutf8(value):
|
|
return value.encode("utf-8")
|