Re: Cookie issue(cant fix it with anyhting)

2013-10-27 Thread Nick the Gr33k
Στις 27/10/2013 8:01 μμ, ο/η Denis McMahon έγραψε: On Sat, 26 Oct 2013 15:29:52 +0300, Nick the Gr33k wrote: Hello i having the following code to try and retrieve the visitor's saved cookie form the browser. [CODE] # initialize cookie and retrieve cookie from clients browser try: cookie

Re: Cookie issue(cant fix it with anyhting)

2013-10-27 Thread Nick the Gr33k
Στις 27/10/2013 9:25 μμ, ο/η Benjamin Schollnick έγραψε: Nikos, Hello i having the following code to try and retrieve the visitor's saved cookie form the browser. [CODE] # initialize cookie and retrieve cookie from clients browser try: cookie = cookies.SimpleCookie( os.environ['HTTP_COOKIE

Re: Cookie issue(cant fix it with anyhting)

2013-10-27 Thread Benjamin Schollnick
Nikos, Hello i having the following code to try and retrieve the visitor's >> saved cookie form the browser. >> >> [CODE] >> # initialize cookie and retrieve cookie from clients browser try: >> cookie = cookies.SimpleCookie( os.environ['HTTP_COOKIE'] ) >> cookieID = cookie['name'].value >

Re: Cookie issue(cant fix it with anyhting)

2013-10-27 Thread Denis McMahon
On Sat, 26 Oct 2013 15:29:52 +0300, Nick the Gr33k wrote: > Hello i having the following code to try and retrieve the visitor's > saved cookie form the browser. > > [CODE] > # initialize cookie and retrieve cookie from clients browser try: > cookie = cookies.SimpleCookie( os.environ['HTTP_CO

Re: Cookie issue(cant fix it with anyhting)

2013-10-26 Thread Steven D'Aprano
On Sat, 26 Oct 2013 15:29:52 +0300, Nick the Gr33k wrote: > Can somebody explain why this is happening? It is the same answer that you were told the last time you asked this question, and the previous time you asked this question. And it will be the same answer the next time you ask. -- Stev

Re: Cookie issue(cant fix it with anyhting)

2013-10-26 Thread Chris Angelico
On Sat, Oct 26, 2013 at 11:29 PM, Nick the Gr33k wrote: > Can somebody explain why this is happening? SONG--ERNEST [1] Were I a king in very truth, And had a son--a guileless youth-- In probable succession; To teach him pa

Cookie issue(cant fix it with anyhting)

2013-10-26 Thread Nick the Gr33k
Hello i having the following code to try and retrieve the visitor's saved cookie form the browser. [CODE] # initialize cookie and retrieve cookie from clients browser try: cookie = cookies.SimpleCookie( os.environ['HTTP_COOKIE'] ) cookieID = cookie['name'].value except: cookieID = 'v