Hi everyone,<br><br>I realize that what I'm addressing was only a temporary solution to fix problems with keeping avatars upright, but I thought I'd mention it anyway in case anyone else has to write platform specific code.<br>
<br>On Linux, the best way to determine distribution information is to parse the output of "lsb_release -a".  However, parsing the contents of /etc/lsb-release is a good second best.<br><br>jkaldon@bullshark:~$ lsb_release -a<br>
No LSB modules are available.<br>Distributor ID: Ubuntu<br>Description:    Ubuntu 6.06.1 LTS<br>Release:        6.06<br>Codename:       dapper<br><br>jkaldon@bullshark:~$ cat /etc/lsb-release<br>DISTRIB_ID=Ubuntu<br>DISTRIB_RELEASE=6.06<br>
DISTRIB_CODENAME=dapper<br>DISTRIB_DESCRIPTION="Ubuntu 6.06.1 LTS"<br><br>Reasonably detailed and is present on any distribution who tries to conform to the Linux Standards Base.  This includes RedHat, Debian, Ubuntu and many others I'm sure.<br>
<br>Just my $0.02 -- hope it helps someone.<br><br>- Josh