sbragagnolo / zoa

State of the art managing tool
0 stars 0 forks source link

URL refs are not decoded #20

Open guillep opened 3 years ago

guillep commented 3 years ago

When I load: https://link.springer.com/chapter/10.1007/BFb0057013

All its refs are url-encoded. For example: https://scholar.google.com/scholar?q=Daniel%20H.%20Ingalls,%20%E2%80%9CA%20Simple%20Technique%20for%20Handling%20Multiple%20Polymorphism.%E2%80%9D%20In%20OOPSLA%20'86%20Conference%20Proceedings,%20Portland,%20OR,%201986.%20Published%20as%20SIGPLAN%20Notices%2021(11),%20November,%201986.

While I would expect that internally they should be all decoded as in:

https://scholar.google.com/scholar?q=Daniel H. Ingalls, “A Simple Technique for Handling Multiple Polymorphism.” In OOPSLA ''86 Conference Proceedings, Portland, OR, 1986. Published as SIGPLAN Notices 21(11), November, 1986.

This can be done with aString urlDecoded and aString urlEncoded.

guillep commented 3 years ago

The decoding should only happen to show it in the ui, of course :P