I am wondering if there's a way to get the last post's revision source without these steps. Is there a more direct way?
- I need to ask the Stack Exchange API to give me the API site parameter
- I need to get revisions of current posts via the API
- I need to get that revision from
http://"+document.domain+"/revisions/"+revision_guid+"/view-source, and parse the response (jQuery$(response).filter("pre");)
The body field from /revisions/ (in the second step) just gives HTML response, which is not what I'm looking for.
For those wanting to know WHY do I want to do this, it's because I want to show post source under the current post.

http://meta.stackoverflow.com/revisions/130017/-1to point tohttp://meta.stackoverflow.com/revisions/130017/3? That would be a great way to implement this--negative-relative revision numbering. :) – Manishearth Apr 22 '12 at 14:47/edit/page, but that's not so great if you need to handle locked/uneditable posts. – Jeremy Banks Apr 22 '12 at 16:17$(response).filter("pre")work in my code to find the raw source but$("pre", response)nor$(response).find("pre")doesn't? (gives me an empty array) – Martin. Apr 23 '12 at 4:22