Merge remote-tracking branch 'origin/develop' into server-as-subcommand
This commit is contained in:
Regular → Executable
+1
-1
@@ -17,4 +17,4 @@
|
||||
#
|
||||
|
||||
kapow route add -X POST --entrypoint ./topdf '/editor/pdf'
|
||||
kapow route add / -c 'response /header/Content-Type text/html && response /body < pdfeditor.html'
|
||||
kapow route add / -c 'response /headers/Content-Type text/html && response /body < pdfeditor.html'
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
tmpfile=$(mktemp --suffix=.pdf)
|
||||
pandoc --from=$(request /form/from) --to=pdf --output=${tmpfile} -t latex =(request /form/content)
|
||||
if [ $? -eq 0 ]; then
|
||||
response /header/Content-Type application/pdf
|
||||
response /headers/Content-Type application/pdf
|
||||
response /body < ${tmpfile}
|
||||
response /status 200
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user