Skip to content

Commit

Permalink
Adding unicode changes, merging from multiple heads to one.
Browse files Browse the repository at this point in the history
--HG--
branch : 2.1
  • Loading branch information
pedersen committed Mar 27, 2010
2 parents 7b8da9e + 1ca48ef commit d16e7de
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions docs/main/Auth/Customization.rst
Expand Up @@ -172,9 +172,9 @@ quickstart, you should follow the instructions described in this section:
users = relation('User', secondary=user_group_table, backref='groups')

def __repr__(self):
return '<Group: name=%s>' % self.group_name


return (u'<Group: name=%s>' % self.group_name).encode('utf-8')
class User(DeclarativeBase):
"""Reasonably basic User definition. Probably would want additional
attributes.
Expand All @@ -194,9 +194,9 @@ quickstart, you should follow the instructions described in this section:
created = Column(DateTime, default=datetime.now)

def __repr__(self):
return '<User: email="%s", display name="%s">' % (
self.email_address, self.display_name)

return (u'<User: email="%s", display name="%s">' % (
self.email_address, self.display_name)).encode('utf-8')
@property
def permissions(self):
perms = set()
Expand Down
2 changes: 1 addition & 1 deletion docs/main/SQLAlchemy.rst
Expand Up @@ -161,7 +161,7 @@ oriented way of manipulating your data::
self.description = description

def __repr__(self):
return "<Movie('%s','%s', '%s')>" % (self.title, self.year, self.description)
return (u"<Movie('%s','%s', '%s')>" % (self.title, self.year, self.description)).encode('utf-8')


If you don't define the __init__ method. You will need to update the
Expand Down
8 changes: 4 additions & 4 deletions docs/main/explorequickstart.rst
Expand Up @@ -497,7 +497,7 @@ And then the Group definition::
users = relation('User', secondary=user_group_table, backref='groups')

def __repr__(self):
return '<Group: name=%s>' % self.group_name
return (u'<Group: name=%s>' % self.group_name).encode('utf-8')

def __unicode__(self):
return self.group_name
Expand Down Expand Up @@ -547,8 +547,8 @@ more easily.
.. code-block:: python
def __repr__(self):
return '<User: email="%s", display name="%s">' % (
self.email_address, self.display_name)
return (u'<User: email="%s", display name="%s">' % (
self.email_address, self.display_name)).encode('utf-8')
def __unicode__(self):
return self.display_name or self.user_name
Expand Down Expand Up @@ -672,7 +672,7 @@ simple to understand. And that brings us to the end of our file::
backref='permissions')

def __repr__(self):
return '<Permission: name=%s>' % self.permission_name
return (u'<Permission: name=%s>' % self.permission_name).encode('utf-8')
def __unicode__(self):
return self.permission_name

Expand Down
4 changes: 2 additions & 2 deletions docs/main/movie_tutorial.rst
Expand Up @@ -80,9 +80,9 @@ We'll create a new file "movie.py" in our "model" directory with this content::
genre = relation('Genre',foreign_keys=genre_id )
reviewed = Column(Boolean, nullable=False, default=False )
def __repr__(self):
return "<Movie('%s','%s', '%s')>" % (
return (u"<Movie('%s','%s', '%s')>" % (
self.title, self.year, self.description
)
)).encode('utf-8')
class Genre(DeclarativeBase):
__tablename__ = 'genre'
id = Column(Integer,primary_key=True)
Expand Down

0 comments on commit d16e7de

Please sign in to comment.