[SOLVED] [11.6/Calendar] URL turned into HTML

If you are using Free version, please post your questions here. Please note, Free version support is done on a low priority basis.

Moderators: TerryRogers, Max

Post Reply
littlebigman
Guru
Posts: 130
Joined: Tue Oct 13, 2009 10:47 am
Been thanked: 3 times

[SOLVED] [11.6/Calendar] URL turned into HTML

Post by littlebigman »

Hello,

This regression bug creeped in a couple of releases ago: URLs in the text section of appointments are turned into HTML at some point (after a sync? Don't know).

Cheers,
EPIM.11.6_213290BB-8DC7-4789-8987-CE769434140E.png
EPIM.11.6_213290BB-8DC7-4789-8987-CE769434140E.png (9.14 KiB) Viewed 1339 times
Last edited by littlebigman on Wed Sep 13, 2023 1:55 pm, edited 1 time in total.
admin
Site Admin
Posts: 15681
Joined: Thu Nov 25, 2004 3:12 am
Has thanked: 1424 times
Been thanked: 990 times

Re: [11.6/Calendar] URL turned into HTML

Post by admin »

Thanks for notifying us about this. What type of synchronization are you using?
Android version of EssentialPIM. Keep all your data in sync!
littlebigman
Guru
Posts: 130
Joined: Tue Oct 13, 2009 10:47 am
Been thanked: 3 times

Re: [11.6/Calendar] URL turned into HTML

Post by littlebigman »

Through USB tethering
admin
Site Admin
Posts: 15681
Joined: Thu Nov 25, 2004 3:12 am
Has thanked: 1424 times
Been thanked: 990 times

Re: [11.6/Calendar] URL turned into HTML

Post by admin »

Thanks, will you be able to reproduce this issue using the latest versions of Windows EPIM (11.6.5) and Android EPIM (6.0.13)?
Android version of EssentialPIM. Keep all your data in sync!
littlebigman
Guru
Posts: 130
Joined: Tue Oct 13, 2009 10:47 am
Been thanked: 3 times

Re: [11.6/Calendar] URL turned into HTML

Post by littlebigman »

Found the cause after migrating from 32-bit Windows to 64-bit: Notes in Tasks have clickable URLs. Considering the number of people still running Win32… I assume you're no longer testing it on old Windows.

So the solution is to bite the bullet and spend the days required to migrate your computer to the modern age.

Thank you.
littlebigman
Guru
Posts: 130
Joined: Tue Oct 13, 2009 10:47 am
Been thanked: 3 times

Re: [SOLVED] [11.6/Calendar] URL turned into HTML

Post by littlebigman »

Still experiencing this in 11.8.3 on Windows10 64-bit in some calendar appointments — but not all; at this point, I can't tell what makes the difference.

In the meantime, a small Python script to turn the unwanted HTML into plain links :-p

Code: Select all

import pyperclip
from bs4 import BeautifulSoup

# get the clipboard MAKE SURE IT CONTAINS RELEVANT DATA!
soup = BeautifulSoup(pyperclip.paste(),features="lxml")

output = ""
for item in soup.find_all('a'):
  output += item.text
  print(item.text,end='')

#copy cleaned input into clipboard
pyperclip.copy(output)
Post Reply