Path: csiph.com!usenet.pasdenom.info!gegeweb.org!usenet-fr.net!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.008 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'charset:iso-8859-7': 0.04; 'wednesday,': 0.07; 'lines.': 0.09; 'subject:script': 0.09; '6:56': 0.16; 'ah,': 0.16; 'concatenate': 0.16; 'content-type': 0.16; 'cookie,': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'indent': 0.16; 'subject:when': 0.16; 'wrote:': 0.18; 'thu,': 0.19; 'separate': 0.22; 'print': 0.22; 'either.': 0.24; 'space.': 0.24; 'right.': 0.26; 'header:In-Reply-To:1': 0.27; 'chris': 0.29; 'am,': 0.29; 'then.': 0.30; 'message- id:@mail.gmail.com': 0.30; 'work.': 0.31; 'subject:that': 0.31; "they'll": 0.31; 'quite': 0.32; 'subject:the': 0.34; 'received:209.85': 0.35; 'received:209.85.220': 0.35; 'something': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'really': 0.36; 'two': 0.37; 'received:209': 0.37; 'to:addr:python-list': 0.38; 'anything': 0.39; 'to:addr:python.org': 0.39; 'easy': 0.60; 'solve': 0.60; 'between': 0.67; 'default': 0.69; 'text/html;': 0.84; '2013': 0.98 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; bh=BWWknyMz3XObve2Upuo8up3Pe0PEqmp82FCDok/3X1w=; b=zLKxLbaYpbSgl8tpHlaz3SXDfSfNGX+S/Q+5xPTSivWsgefkvOGJSBAqNIMS/Po8kR tfz0obOO9P3UdjlTGJlhArplKU6Otw/RnFgKZBtl9ZyivgWrQRBN+QDGhAUBrIEL78dS 4EH4jv3vAb66OV0HJen1hLzWhAmcVACB1//TLFlxxD1/z8aarIbeVt0lMKVxqlqSTYPC P/Ywipg4694L7gQT/G6yyo7jAZOoKNVMFG45vjjbDCNWmxKnV7Ja3ejkJbn7ZqPLD1Rl 1f9yI7XUVtwCXu+9MbsAjoeKgoW8ldGQ1x+loSqYVWPcLmndO8vuGTjSx/rqkk7q/GS6 oEjw== MIME-Version: 1.0 X-Received: by 10.58.100.234 with SMTP id fb10mr5553022veb.5.1370470868922; Wed, 05 Jun 2013 15:21:08 -0700 (PDT) In-Reply-To: <9d8cdf1b-cc79-4266-9bf5-ce8b690ac74a@googlegroups.com> References: <400ea041-adcf-4640-8872-f81808f7d402@googlegroups.com> <386bdf4a-53ae-4312-af5d-e28ef10ada42@googlegroups.com> <9d8cdf1b-cc79-4266-9bf5-ce8b690ac74a@googlegroups.com> Date: Thu, 6 Jun 2013 08:21:08 +1000 Subject: Re: Errin when executing a cgi script that sets a cookie in the browser From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-7 Content-Transfer-Encoding: quoted-printable X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 29 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1370470877 news.xs4all.nl 15943 [2001:888:2000:d::a6]:60025 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:47155 On Thu, Jun 6, 2013 at 7:18 AM, wrote: > On Wednesday, June 5, 2013 3:03:29 PM UTC-6, Chris Angelico wrote: >> On Thu, Jun 6, 2013 at 6:56 AM, wrote: >> > On Wednesday, June 5, 2013 1:54:45 PM UTC-6, =CD=E9=EA=FC=EB=E1=EF=F2 = =CA=EF=FD=F1=E1=F2 wrote: >> >>... >> >> print( cookie, "Content-type: text/html; charset=3Dutf-8\n", message = ) >> >>... >> > print( cookie, "Content-type: text/html; charset=3Dutf-8\n\n", messa= ge ) >> > (ie, note the two \n's after the "utf-8" test.) >> >> But that won't solve it either. The default separator for print is a >> space, so this will indent his Content-type line by one space. > > Ah, quite right. Something like > > print( cookie, "\nContent-type: text/html; charset=3Dutf-8\n\n", messag= e ) > > then. Or change the sep, or concatenate with + instead of using , between them. Or put them on separate lines. Anything like that would work. And it's really easy to try things out interactively to see what they'll do... ChrisA