. */ require 'config.php'; require 'common.php'; global $config; $url = Sanatise($_REQUEST['u']); $fname = basename($url); $cmd = $config['svn'] . ' log --non-interactive ' . '--username=' . $config['username'] . ' ' . '--password=' . $config['password'] . ' ' . escapeshellarg($url); header('Content-Type: text/plain'); passthru($cmd); ?>