These aren’t so much bugs, as you don’t seem to be handling your string types. You may have to do a check and convert formats, but both of these are a few lines of code to handle, 2383 there is even a code example posted.
I think your “false expectation” was that Google would loosen the Typing (and therefore the security) of their platform to accommodate your lack of coding experience.
--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/iPj8Tp3uDgMJ.
To post to this group, send email to google-a...@googlegroups.com.
To unsubscribe from this group, send email to google-appengi...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
This is an important signaling mechanism. If people stop using the
service, Google may realize that the service is inadequate. Maybe
they'll shut it down and reallocate dev resources to something else,
or maybe they will improve the service. Either way is a win.
Sorry if this seems callous, but IMHO the "send email" api is a waste
of precious developer resources. There are a zillion other features
I'd rather see implemented. I really don't care who sends my email.
I'd kill for spatial queries.
Jeff
I haven't tried in a long while, but Data URI's seemed to work last time I
checked.. You have to build them yourself but doing the base64 encode is not
that hard.
PK
--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/uSkDDni2ksYJ.
Issue 2383 Filed on Nov 11 2009 8bit Mail encoding
> If you honestly want to add value to GAE, please go to each bug and state why these are not issues and what the work around is.
I think it is unfortunate that GAE doesn’t close “By Design” more of these so people don’t feel they are being worked on when they aren’t.
Someone just mentioned that sometimes this API “Fails without error”. That is a bug. If someone would open a ticket about “If you do X the API fails without error” I would bet money that in 90 days Google would fix the issue, either as “Now Fails with Error” or “Now Handles calls formatted as X”
Yeah, I’m harsh, and unfiltered. You may not see that as helpful, but the truth is I told you why 2 years later the issue isn’t fixed.
“Bugs” that don’t include “Code As follows gives result X when expected Result is Y” aren’t bugs, they are bad coders complaining that they can’t figure something out. That annoys me far more than the people who got suckered in to MS that should be on HR. Mainly because the create an app page says MS is magical except when it is down. The Bug database is so filled with whining people that I don’t blame Google for not wanting to read it.
--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/0ec_0sSZc58J.
> What are these unsubstantiated theories that Google does not decode 8bit encoded MIME messages for security reasons.....
Strong Typing (and Encoding) are pretty core to python. Accepting all codings is actually not common in most functions.
This may not seem like a security thing, but it is certainly a Testing overhead, and a potential outputs issue (plus all the dependencies then have to support the encoding as well. There are a number of things that Python errors horribly if there is a non-standard or unexpected encoding on a character. It’s a pain in the ass, but it is the way of the world.