diff options
Diffstat (limited to 'pdf-as-web/src/main/resources')
-rw-r--r-- | pdf-as-web/src/main/resources/template_error.html | 16 | ||||
-rw-r--r-- | pdf-as-web/src/main/resources/template_provide.html | 21 |
2 files changed, 36 insertions, 1 deletions
diff --git a/pdf-as-web/src/main/resources/template_error.html b/pdf-as-web/src/main/resources/template_error.html index 0371c568..87992c42 100644 --- a/pdf-as-web/src/main/resources/template_error.html +++ b/pdf-as-web/src/main/resources/template_error.html @@ -7,5 +7,21 @@ Error Page: <p>##ERROR_MESSAGE##</p> <p>##ERROR_STACK##</p> +<script type="text/javascript"> + try { + var data = { + pdfas: { + error: true, + msg: "##ERROR_MESSAGE##" + } + } + + parent.postMessage(data, '##PUBLICURL##'); + } catch(error) { + if(window.console) { + window.console.log("Sending message failed!", error); + } + } +</script> </body> </html> diff --git a/pdf-as-web/src/main/resources/template_provide.html b/pdf-as-web/src/main/resources/template_provide.html index 8016be07..1ff00d15 100644 --- a/pdf-as-web/src/main/resources/template_provide.html +++ b/pdf-as-web/src/main/resources/template_provide.html @@ -1 +1,20 @@ -##PDFDATAURL##
\ No newline at end of file +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<html lang="de"> +<head> +<title>Provide PDF</title> +</head> +<body> +PDF ready @: <a href="##PDFDATAURL##">download here</a> + +<script type="text/javascript"> + var data = { + pdfas: { + success: true, + pdfUrl: "Child URL" + } + } + + parent.postMessage(data, '##PUBLICURL##'); +</script> +</body> +</html> |