You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2012/06/07 04:27:19 UTC

svn commit: r1347321 - /openejb/site/trunk/cgi-bin/latest.cgi

Author: dblevins
Date: Thu Jun  7 02:27:19 2012
New Revision: 1347321

URL: http://svn.apache.org/viewvc?rev=1347321&view=rev
Log:
one more try on making configurable via $ENV{PATH_INFO}

Modified:
    openejb/site/trunk/cgi-bin/latest.cgi

Modified: openejb/site/trunk/cgi-bin/latest.cgi
URL: http://svn.apache.org/viewvc/openejb/site/trunk/cgi-bin/latest.cgi?rev=1347321&r1=1347320&r2=1347321&view=diff
==============================================================================
--- openejb/site/trunk/cgi-bin/latest.cgi (original)
+++ openejb/site/trunk/cgi-bin/latest.cgi Thu Jun  7 02:27:19 2012
@@ -6,6 +6,8 @@ use warnings;
 print "Content-Type: text/html\n\n";
 
 my $a = "apache-tomee/1.0.1-SNAPSHOT/";
+$a = $ENV{PATH_INFO} if $ENV{PATH_INFO};
+
 my $content = `wget -O - -q http://repository.apache.org/snapshots/org/apache/openejb/$a`;
 
 $content = join(" ", split("[ \r\n]+", $content));