+
+@never_cache
+def document_diff(request, name, revA, revB):
+ docA = storage.get(name, int(revA))
+ docB = storage.get(name, int(revB))
+
+
+ return HttpResponse(nice_diff.html_diff_table(docA.plain_text.splitlines(),
+ docB.plain_text.splitlines()) )
+
+@never_cache
+def document_history(request, name):
+ return HttpResponse(
+ json.dumps(storage.history(name), cls=DateTimeEncoder),
+ mimetype='application/json')
+
+
+import urllib, urllib2
+
+@never_cache
+def document_publish(request, name, version):
+ # get the document
+ try:
+ document = storage.get(name, revision = int(version))
+ except DocumentNotFound:
+ raise Http404
+
+ auth_handler = urllib2.HTTPDigestAuthHandler();
+ auth_handler.add_password(
+ realm="localhost:8000",
+ uri="http://localhost:8000/api/",
+ user="test", passwd="test")
+
+
+ opener = urllib2.build_opener(auth_handler)
+ rq = urllib2.Request("http://localhost:8000/api/books.json")
+ rq.add_data(json.dumps({"text": document.text, "compressed": False}))
+ rq.add_header("Content-Type", "application/json")
+
+ try:
+ response = opener.open(rq)
+ result = {"success": True, "message": response.read()}
+ except urllib2.HTTPError, e:
+ logger.exception("Failed to send")
+ if e.code == 500:
+ return HttpResponse(e.read(), mimetype='text/plain')
+ result = {"success": False, "reason": e.read(), "errno": e.code}
+
+ return HttpResponse( json.dumps(result), mimetype='application/json')
\ No newline at end of file