This question came up on the etherpad-open-source-discuss mailing list and I thought it would be useful to have it here.

link|improve this question

75% accept rate
feedback

2 Answers

A few other possibilities:

  • From a browser, you can hit http://your-etherpad-server.com/ep/pad/view/padId/latest?pt=1
  • From within the code of the collaborative editor (ace2_inner.js), use rep.alltext
  • Within the Etherpad's javascript, use pad.text for the most recent version of pad.getRevisionText(rev.revNum) for a specified previous revision.
link|improve this answer
feedback

Just construct a URL like so and fetch it:

http://dtherpad.com/ep/pad/export/foo/latest?format=txt

That will get the live, plaintext contents of http://dtherpad.com/foo

For example, in PHP you can grab it with

file_get_contents("http://dtherpad.com/ep/pad/export/foo/latest?format=txt")

Note that that's just the "export to plain text" link that's provided in the Import/Export menu of every pad.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.