2022-04-01 22:22:33 +00:00
|
|
|
accessing
|
|
|
|
url
|
2023-07-27 21:13:05 +00:00
|
|
|
self remoteIsFound
|
|
|
|
ifFalse: [ ^ url := nil ].
|
2022-04-01 22:22:33 +00:00
|
|
|
^ url ifNil: [ | temp |
|
|
|
|
temp := ((self documentTree xpath: '//div[@class="profile-website"]') // 'a' @@ 'href') first.
|
|
|
|
temp ifNil: [ ^ url := nil ].
|
2022-04-29 22:58:03 +00:00
|
|
|
temp := temp replaceAll: $Ú with: $u.
|
|
|
|
temp := temp replaceAll: $í with: $i.
|
2022-04-01 22:22:33 +00:00
|
|
|
url := temp asUrl.
|
|
|
|
]
|