[web2py] Re: Detecting OS issue

2014-01-13 Thread Niphlod
that's going to tell if the SERVER is win,linux or mac @john. start "small". embed {{=BEAUTIFY(request.user_agent())}} in your view and start from there to see what's the missing key you're trying to inspect. On Monday, January 13, 2014 9:12:24 PM UTC+1, Limedrop wrote: > > Have a look a

[web2py] Re: Detecting OS issue

2014-01-13 Thread Limedrop
Have a look at python's platform module. For example: import platform if platform.system() == 'Windows': elif platform.system() == 'Linux': On Tuesday, January 14, 2014 7:26:09 AM UTC+13, Jon Smith wrote: > > Hello I am trying to figure out how to detect if a comput