FriedrichFroebel

Results 215 comments of FriedrichFroebel

I somehow missed your last comment and just stumbled upon it when going through some of the open issues. It usually is much easier if we discuss the remaining details...

As this compromises a lot of modified/new lines, I will wait for @tomasbedrich to have a look at it. Some remarks from my side: * Please rebase on the latest...

Unfortunately not completely: You are fixing the parser in `util.py`, but your new test is for the formatter. In lines 17 and 18 of `test_util` (in `test_parse_date`) there should be...

Using the log page provides a link to the listing using the `guid` of the cache: https://www.geocaching.com/seek/log.aspx?wp=GC3RPVZ

If I remember correctly, this is a PM-only feature. But feel free to submit a PR for it.

This is related to the geocache owner being a deleted user. Using something like ```python try: self.author = cache_details("a")[1].text except IndexError: if "[DELETED_USER]" in cache_details.find("div", id="ctl00_ContentBody_mcd1").text: self.author = "[DELETED_USER]" else:...

My code was just some sort of quick fix, without having a look at the quick load functionality for example which might also need fixing. The `DELETED_USER` stuff might be...

I actually thought of the same approach for my snippet initially, but have not been sure as I already mentioned. So I agree that your change is actually a bit...

This sounds like a possible enhancement. Feel free to submit a corresponding PR.

@pkubiak Feel free to send a PR for this - in fact it seems like this endpoint is returning much more information than the tile-based approach. I am not completely...