description -> bio

このコミットが含まれているのは:
Zed 2019-06-24 02:09:32 +02:00
コミット 2c2d2c767e
3個のファイルの変更18行の追加18行の削除

ファイルの表示

@ -8,25 +8,25 @@ proc parsePopupProfile*(node: XmlNode): Profile =
if profile.isNil: return
result = Profile(
fullname: profile.getName(".fullname"),
username: profile.getUsername(".username"),
description: profile.getBio(".bio"),
userpic: profile.getAvatar(".ProfileCard-avatarImage"),
verified: isVerified(profile),
protected: isProtected(profile),
banner: getBanner(profile)
fullname: profile.getName(".fullname"),
username: profile.getUsername(".username"),
bio: profile.getBio(".bio"),
userpic: profile.getAvatar(".ProfileCard-avatarImage"),
verified: isVerified(profile),
protected: isProtected(profile),
banner: getBanner(profile)
)
result.getPopupStats(profile)
proc parseIntentProfile*(profile: XmlNode): Profile =
result = Profile(
fullname: profile.getName("a.fn.url.alternate-context"),
username: profile.getUsername(".nickname"),
description: profile.getBio("p.note"),
userpic: profile.querySelector(".profile.summary").getAvatar("img.photo"),
verified: not profile.querySelector("li.verified").isNil,
protected: not profile.querySelector("li.protected").isNil,
banner: getBanner(profile)
fullname: profile.getName("a.fn.url.alternate-context"),
username: profile.getUsername(".nickname"),
bio: profile.getBio("p.note"),
userpic: profile.querySelector(".profile.summary").getAvatar("img.photo"),
verified: not profile.querySelector("li.verified").isNil,
protected: not profile.querySelector("li.protected").isNil,
banner: getBanner(profile)
)
result.getIntentStats(profile)

ファイルの表示

@ -8,7 +8,7 @@ db("cache.db", "", "", ""):
Profile* = object
username*: string
fullname*: string
description*: string
bio*: string
userpic*: string
banner*: string
following*: string

ファイルの表示

@ -18,9 +18,9 @@
</div>
<div class="profile-card-extra">
<div class="profile-bio">
#if profile.description.len > 0:
<div class="profile-description">
<p>${linkifyText(xmltree.escape(profile.description))}</p>
#if profile.bio.len > 0:
<div class="profile-bio">
<p>${linkifyText(xmltree.escape(profile.bio))}</p>
</div>
#end if
</div>