Add vcard
This commit is contained in:
parent
277a8efbe6
commit
e609f7a8d7
|
@ -11,5 +11,6 @@ urlpatterns=[
|
|||
path('toask',views.articles,name='articles'),
|
||||
re_path('r/(.*)',views.redirect,name='redirect'),
|
||||
path('md.rss',views.md,name='md'),
|
||||
path('me.vcf',views.vcard,name='vcard'),
|
||||
re_path('(.*)',views.autopage,name='everything'),
|
||||
]
|
|
@ -112,6 +112,18 @@ def md(req):
|
|||
feed=loop.run_until_complete(mdl.makefeed(req.GET.getlist('ids','')))
|
||||
return HttpResponse(feed, content_type='application/rss+xml')
|
||||
|
||||
def vcard(req):
|
||||
return HttpResponse("""BEGIN:VCARD
|
||||
VERSION:4.0
|
||||
KIND:individual
|
||||
FN:Zergling_man
|
||||
EMAIL:zerglingman@fedora.email
|
||||
URL:https://rakka.tk
|
||||
IMPP:xmpp:zergling_man@xmpp.jp;matrix:@zergling.man:perthchat.org
|
||||
NOTE:Anti-professionalism, pro-open standards
|
||||
CATEGORIES:programmer,biker
|
||||
SOURCE:https://rakka.tk/me.vcf
|
||||
END:VCARD""")
|
||||
@rerender
|
||||
def autopage(page):
|
||||
p=Page.objects.get(url=page)
|
||||
|
|
Loading…
Reference in New Issue
Block a user