During my experiments with links to the charts I noticed that the resulting links in Data Explorer are truncated after 380 characters.
Try the following query: http://data.stackexchange.com/stackoverflow/query/58883/test-long-url
SELECT 'http://chart.apis.google.com/chart?cht=p&chco=FF0000%2CFFFF00%7CFF8000%2C00FF00%7C00FF00%2C0000FF&chs=450x200&chd=t%3A122%2C42%2C17%2C10%2C8%2C7%2C7%2C7%2C7%2C6%2C6%2C6%2C6%2C5%2C5&chl=122%7C42%7C17%7C10%7C8%7C7%7C7%7C7%7C7%7C6%7C6%7C6%7C6%7C5%7C5&chdl=android%7Cjava%7Cstack-trace%7Cbroadcastreceiver%7Candroid-ndk%7Cuser-agent%7Candroid-webview%7Cwebview%7Cbackground%7Cmultithreading%7Candroid-source%7Csms%7Cadb12345678%7Csollections%7Cactivity|Chart'
The resulting url truncates at %7Cmultithr point, also link name (Chart) is not applied.
UPDATE
After deploy the truncation is still present. I've checked the query.js source and found the following:
function encodeColumn(s) {
if (s != null && s.replace != null) {
s = s.replace(/[\n\r]/g, " ")
.replace(/&(?!\w+([;\s]|$))/g, "&")
.replace(/</g, "<")
.replace(/>/g, ">")
.substring(0, 400);
return s;
} else {
return s;
}
}
I guess that substring(0, 400) should be removed or changed to something more democratic, e.g.: substring(0, 8000).
multithrpart. Check my updated post: there issubstring(0, 400)inencodeColumnfunction. – Idolon Jan 10 '12 at 23:30&in the URL is replaced with&(shouldn't there be semicolon at the end?). Check it here: this should create a link tohttp://google.com/?hl=en&q=Testbut creates tohttp://google.com/?hl=en&q=Testinstead. – Idolon Jan 11 '12 at 0:25|in the URL as%7Csince it is replaced with%257C(vertical line symbol is used in Google Charts URLs). Updated test query accordingly. – Idolon Jan 11 '12 at 0:54