|
From: Sergio A. K. <ser...@ho...> - 2002-01-10 02:48:42
|
this minimal patch add support for links. links is a terminal browser that is a lot better than lynx, and is included in almost every linux distro by now. http://links.sourceforge.net --- sql-ledger.org/login.pl Sun Dec 16 21:25:58 2001 +++ sql-ledger/login.pl Wed Jan 9 23:44:26 2002 @@ -94,6 +94,9 @@ if ($ENV{HTTP_USER_AGENT} =~ /mozilla/i) { $form{terminal} = "mozilla"; } + if ($ENV{HTTP_USER_AGENT} =~ /links/i) { + $form{terminal} = "mozilla"; + } if ($ENV{HTTP_USER_AGENT} =~ /lynx/i) { $form{terminal} = "lynx"; /sergio |