Re: [Tutor] Problems serving up PDF

2006-09-16 Thread Tim Johnson
* Python <[EMAIL PROTECTED]> [060915 04:35]: > > There is a Firefox extension called TamperData that allows you to > examine and change the headers. This extension is very handy for > debugging these kinds of issues. My Apache web server returns these > headers when I request a pdf file: > > St

Re: [Tutor] Problems serving up PDF

2006-09-15 Thread Python
On Thu, 2006-09-14 at 18:01 -0800, Tim Johnson wrote: > * Luke Paireepinart <[EMAIL PROTECTED]> [060914 17:37]: > > > > > Sounds like it's working to me. > > > On Internet Explorer 6, Windows XP, the user experience is different. > > > IE ignores the file name, and does no progress reporting, bu

Re: [Tutor] Problems serving up PDF

2006-09-14 Thread Luke Paireepinart
>> One note, you should be using \r\n instead of \n. >> > > Both development and deployment are on a linux OS, so > this is the correct procedure. However, I don't think that > using '\r' does any harm on *nix > in fact, it would be the more portable approach. > Thanks for poi

Re: [Tutor] Problems serving up PDF

2006-09-14 Thread Tim Johnson
* Luke Paireepinart <[EMAIL PROTECTED]> [060914 17:37]: > > > Sounds like it's working to me. > > On Internet Explorer 6, Windows XP, the user experience is different. > > IE ignores the file name, and does no progress reporting, but does > > "understand" the file type. > > > Sounds like it's

Re: [Tutor] Problems serving up PDF

2006-09-14 Thread Tim Johnson
* Luke Paireepinart <[EMAIL PROTECTED]> [060914 17:36]: > Tim Johnson wrote: > >Hi: > > > >This is *not* really a python problem, but :-) since this > >is such an helpful list and others may have the same issue... > > > >I have a python script which searches a server for a pdf file > >and if found

Re: [Tutor] Problems serving up PDF

2006-09-14 Thread Luke Paireepinart
Tim Johnson wrote: > Hi: > > This is *not* really a python problem, but :-) since this > is such an helpful list and others may have the same issue... > > I have a python script which searches a server for a pdf file > and if found, reads the file to stdout, as one would read html > to stdout. >

[Tutor] Problems serving up PDF

2006-09-14 Thread Tim Johnson
Hi: This is *not* really a python problem, but :-) since this is such an helpful list and others may have the same issue... I have a python script which searches a server for a pdf file and if found, reads the file to stdout, as one would read html to stdout. The question is really about the pr