diff options
author | Remi Collet <fedora@famillecollet.com> | 2015-04-13 19:59:51 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2015-04-13 19:59:51 +0200 |
commit | c92ea78488c49384e545ffaf79cd748fa33c815f (patch) | |
tree | 1ce5a1f2950c740a45cc5be38bc2384060035e2a | |
parent | 0b81ee38e96bd00630a7530ac6adb0a8a73e96e8 (diff) |
change page title, add RHEL / CentOS / EPEL
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | all.php | 4 | ||||
-rw-r--r-- | index.php | 2 | ||||
-rw-r--r-- | smarty/templates/rpmphp/index.tpl | 10 | ||||
-rw-r--r-- | smarty/templates/rpmphp/main.tpl | 2 |
5 files changed, 10 insertions, 10 deletions
@@ -1,6 +1,6 @@ This repository manage sources of PHP scripts use to generate reports for - Packages in Fedora repositories + Packages in Fedora / RHEL / CentOS / EPEL repositories http://rpms.famillecollet.com/rpmphp/ @@ -39,12 +39,12 @@ $what=(isset($_GET["what"]) ? $_GET["what"] : false); $ariane[] = array( 'url' => '#', - 'text' => 'Packages in Fedora repositories' + 'text' => 'Packages in Fedora / RHEL / CentOS / EPEL repositories' ); $smarty->assign('ariane', $ariane); $smarty->assign('what', $what); -$smarty->assign('page_title', 'All packages in Fedora repositories'); +$smarty->assign('page_title', 'All packages in Fedora / RHEL / CentOS / EPEL repositories'); /** * Retrieve packages informations @@ -37,7 +37,7 @@ require 'include/main.php'; $smarty->assign('ariane', $ariane); -$smarty->assign('page_title', 'Packages in Fedora repositories'); +$smarty->assign('page_title', 'Packages in Fedora / RHEL / CentOS / EPEL repositories'); try { diff --git a/smarty/templates/rpmphp/index.tpl b/smarty/templates/rpmphp/index.tpl index 046af55..7bf709a 100644 --- a/smarty/templates/rpmphp/index.tpl +++ b/smarty/templates/rpmphp/index.tpl @@ -20,11 +20,11 @@ *} <h2>Package reports</h2> <ul id="reports"> - <li><a href="rpm.php?type=composer">COMPOSER Libraries in Fedora</a> with upstream information</li> - <li><a href="rpm.php?type=pecl">PECL Extensions in Fedora</a> with upstream information</li> - <li><a href="rpm.php?type=pear">PEAR Libraries in Fedora</a> with upstream information</li> - <li><a href="rpm.php?type=R">R Extensions in Fedora</a> with upstream information</li> - <li><a href="all.php">All Packages in Fedora</a></li> + <li><a href="rpm.php?type=composer">COMPOSER Libraries in Fedora / RHEL / CentOS / EPEL</a> with upstream information</li> + <li><a href="rpm.php?type=pecl">PECL Extensions in Fedora / RHEL / CentOS / EPEL</a> with upstream information</li> + <li><a href="rpm.php?type=pear">PEAR Libraries in Fedora / RHEL / CentOS / EPEL</a> with upstream information</li> + <li><a href="rpm.php?type=R">R Extensions in Fedora / RHEL / CentOS / EPEL</a> with upstream information</li> + <li><a href="all.php">All Packages in Fedora / RHEL / CentOS / EPEL</a></li> </ul><!-- /reports --> <table id="list-packages"> <caption><strong>Analysed repositories</strong></caption> diff --git a/smarty/templates/rpmphp/main.tpl b/smarty/templates/rpmphp/main.tpl index b0cae4b..4bc9b21 100644 --- a/smarty/templates/rpmphp/main.tpl +++ b/smarty/templates/rpmphp/main.tpl @@ -21,7 +21,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> - <title>Packages in Fedora - {$page_title}</title> + <title>Packages in Fedora / RHEL / CentOS / EPEL - {$page_title}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <link rel="stylesheet" type="text/css" media="screen" href="css/rpmphp.css"/> <!--<link rel="stylesheet" type="text/css" media="print" href="css/rpmphp-print.css">--> |