"author_link" не работает в фрейме фида синдикации Django - PullRequest
0 голосов
/ 11 апреля 2019

В Django Ссылка на класс фида для фида RSS / ATOM у нас есть следующее поле:

# AUTHOR LINK --One of the following three is optional. The framework
# looks for them in this order. In each case, the URL should include
# the "http://" and domain name.

def author_link(self, obj):
    """
    Takes the object returned by get_object() and returns the feed's
    author's URL as a normal Python string.
    """

def author_link(self):
    """
    Returns the feed's author's URL as a normal Python string.
    """

author_link = 'https://www.example.com/' # Hard-coded author URL.

Любой из этих 3 вариантов не работает. У меня есть рабочий канал RSS / ATOM в моем проекте Django. Все остальные поля работают хорошо: элемент, описания, автор и т. Д. Но я не вижу никаких «ссылок на авторов» в своем RSS.

...