Compare commits

..

No commits in common. "d37597e6aad251e9aa8ae771a763c978a6f0477e" and "30937d14b82590187b3977cee65619dcc95214b5" have entirely different histories.

3 changed files with 0 additions and 45 deletions

View file

@ -1,15 +0,0 @@
<?php
class Tomcat10 extends PatchBase {
function __construct() {
parent::__construct('Apache Foundation', 'Tomcat', 'https://tomcat.apache.org/download-10.cgi');
$this->patch->setBranch('10');
}
function check() : bool {
if ($this->fetch('https://tomcat.apache.org/download-10.cgi'))
return $this->parse('/id="([\d\.]+)"/');
return false;
}
}
?>

View file

@ -1,15 +0,0 @@
<?php
class Tomcat11 extends PatchBase {
function __construct() {
parent::__construct('Apache Foundation', 'Tomcat', 'https://tomcat.apache.org/download-11.cgi');
$this->patch->setBranch('11');
}
function check() : bool {
if ($this->fetch('https://tomcat.apache.org/download-11.cgi'))
return $this->parse('/id="([\d\.]+)"/');
return false;
}
}
?>

View file

@ -1,15 +0,0 @@
<?php
class Tomcat9 extends PatchBase {
function __construct() {
parent::__construct('Apache Foundation', 'Tomcat', 'https://tomcat.apache.org/download-90.cgi');
$this->patch->setBranch('9');
}
function check() : bool {
if ($this->fetch('https://tomcat.apache.org/download-90.cgi'))
return $this->parse('/id="([\d\.]+)"/');
return false;
}
}
?>