Hi, I have a strange problem, that appears to be an issue with GreaseMonkey itself. I'm getting 404s when GreaseMonkey (1.4) tries to download a script that we store in SVN. If GreaseMonkey is uninstalled then the same Firefox browser (v. 14.0.1) can download the script just fine (as well as via curl or Chrome). Additionally, I have tracked the problem down to an older version of the script which downloads fine and the next version which gives a 404 -- this suggests that there's something weird in the newer script that is causing the issue. So, I did a diff through the files and don't see anything (esp. in the GreaseMonkey headers at the top) that would seem to be an issue. I also thought that there might be a weird control character issue, but this doesn't appear to be the case (see diff below):
# V55.js has problem & V54.js doesn't, cat -A shows control characters prepended by a ^, so to get the character I grep for a carrot and the next character, then unique sort these and get the same thing from both files $ diff <(cat -A V54.js | grep -Eo "\^." | sort -u) <(cat -A V55.js | grep -Eo "\^." | sort -u) $ Any other ideas on how I can debug this? Thanks for your help! Ryan -- You received this message because you are subscribed to the Google Groups "greasemonkey-users" group. To view this discussion on the web visit https://groups.google.com/d/msg/greasemonkey-users/-/0OLeOhryBBcJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/greasemonkey-users?hl=en.
