Add Apache Directory Studio

This commit is contained in:
Steffen Lange 2021-03-16 10:59:21 +01:00
parent eab11e3f92
commit a2dce59c6c

View file

@ -0,0 +1,14 @@
<?php
class ApacheDirectoryStudio extends PatchBase {
function __construct() {
parent::__construct('Apache Foundation', 'Directory Studio', 'https://directory.apache.org/studio/downloads.html');
}
function check() : bool {
if ($this->fetch('https://directory.apache.org/studio/'))
return $this->parse('/<b>Download Apache<br>Directory Studio ([\d\.]+[-M\d]*)<\/b>/');
return false;
}
}
?>