예제 #1
0
 def slug(self):
     """Returns a slugified version from the category title"""
     return slugify(self.title)
예제 #2
0
파일: models.py 프로젝트: cluo/flaskbb
 def slug(self):
     """Returns a slugified version from the category title"""
     return slugify(self.title)
예제 #3
0
 def slug(self):
     """Returns a slugified version from the forum title"""
     return slugify(self.title)
예제 #4
0
def test_slugify():
    """Test the slugify helper method."""
    assert slugify(u"Hello world") == u"hello-world"

    assert slugify(u"¿Cómo está?") == u"como-esta"
예제 #5
0
파일: models.py 프로젝트: cluo/flaskbb
 def slug(self):
     """Returns a slugified version from the forum title"""
     return slugify(self.title)
예제 #6
0
def test_slugify():
    """Test the slugify helper method."""
    assert slugify(u"Hello world") == u"hello-world"

    assert slugify(u"¿Cómo está?") == u"como-esta"
예제 #7
0
 def slug(self):
     """Returns a slugified version of the topic title."""
     return slugify(self.title)
예제 #8
0
파일: models.py 프로젝트: djsilcock/flaskbb
 def slug(self):
     """Returns a slugified version of the topic title."""
     return slugify(self.title)
예제 #9
0
def test_slugify():
    """Test the slugify helper method."""
    assert slugify(u'Hello world') == u'hello-world'

    assert slugify(u'¿Cómo está?') == u'como-esta'
예제 #10
0
def test_slugify():
    """Test the slugify helper method."""
    assert slugify(u'Hello world') == u'hello-world'

    assert slugify(u'¿Cómo está?') == u'como-esta'