From allan@macromates.com Tue Apr 19 01:38:37 2005 From: Allan Odgaard To: textmate@lists.macromates.com Subject: Re: [TxMt] context output to html Date: Tue, 19 Apr 2005 03:38:34 +0200 Message-ID: <465ff90a3309fa0bf0103ef5df4c90bb@macromates.com> In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8869622108903169578==" --===============8869622108903169578== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit On Apr 19, 2005, at 3:30, Allan Odgaard wrote: > As a workaround I changed the redirect command to go through localhost > like this: > > [ -s ${tmp}.pdf ] && { cp "$tmp" ~/Sites/web_kit_workaround.pdf; chmod > 666 ~/Sites/web_kit_workaround.pdf; echo > ""; } Ah, reading this again, the reason why the PDF plugin froze was that it wasn't the proper file I copied over as the PDF, should have been: [ -s ${tmp}.pdf ] && { cp "${tmp}.pdf" ~/Sites/web_kit_workaround.pdf; chmod 666 ~/Sites/web_kit_workaround.pdf; echo ""; } Now it actually works again! :) Although still going through localhost. --===============8869622108903169578==--