Remove remaining live references to observium.org

This commit is contained in:
Paul Gear 2013-10-29 21:06:32 +10:00
parent 4b1d536501
commit a33db38f02
5 changed files with 6 additions and 5 deletions

View File

@ -1,3 +1,3 @@
Please check http://www.observium.org/wiki/Changelog for an up to date changelog.
A summary changelog will be provided in future.
You can also browse the subversion repository commit logs for more granular updates.
For now, please see the git commit logs at https://github.com/librenms/librenms/commits/master

View File

@ -217,7 +217,7 @@
}
// Html template
$logo = $pdf->serializeTCPDFtagParameters(array('images/observium-logo.png', 15, 18, 100, '', '', 'www.observium.org', 'T'));
$logo = $pdf->serializeTCPDFtagParameters(array('images/dummy-logo.png', 15, 18, 100, '', '', 'www.example.com', 'T'));
$html .= "<tcpdf method=\"Image\" params=\"".$logo."\" />";
$html .= "<h1 class=\"right\">Billing Report</h1>";
$html .= "<p></p>";

View File

@ -54,7 +54,7 @@ class ObsPDF extends TCPDF
// Set Font
$this->SetFont('helvetica', 'N', 8);
// Set Footer text
$this->Cell(0, 0, 'Created by Observium (www.observium.org)', 0, false, 'L', 0, 'http://www.observium.org/', 0, false, 'M', 'M');
$this->Cell(0, 0, 'Created by '.$config['project_name'], 0, false, 'L', 0, $config['project_url'], 0, false, 'M', 'M');
$this->Cell(10, 0, 'Page '.$this->getAliasNumPAge().' of '.$this->getAliasNbPages(), 0, false, 'R', 0, '', 0, false, 'M', 'M');
}
}

View File

@ -99,6 +99,7 @@ if (isset($_SERVER["SERVER_NAME"]) && isset($_SERVER["SERVER_PORT"]))
}
$config['project_name'] = "LibreNMS";
$config['project_url'] = "https://github.com/librenms/";
$config['title_image'] = "";
$config['stylesheet'] = "css/styles.css";
$config['mono_font'] = "DejaVuSansMono";

View File

@ -16,7 +16,7 @@ foreach (dbFetch("SELECT COUNT(*) AS count,os from devices group by `os`") as $d
$stat_serial = base64_encode(serialize($stats));
$url = "http://www.observium.org/latest.php?i=".$stats['ports']."&d=".$stats['devices']."&stats=".$stat_serial."&v=".$config['version'];
#$url = "http://www.observium.org/latest.php?i=".$stats['ports']."&d=".$stats['devices']."&stats=".$stat_serial."&v=".$config['version'];
#$dataHandle = fopen($url, r);
if ($dataHandle)