SVN Commit by dpage: r4942 - trunk/www/pgadmin3

From: svn(at)pgadmin(dot)org
To: pgadmin-hackers(at)postgresql(dot)org
Subject: SVN Commit by dpage: r4942 - trunk/www/pgadmin3
Date: 2006-01-20 10:24:42
Message-ID: 200601201024.k0KAOgJ8032306@developer.pgadmin.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Author: dpage
Date: 2006-01-20 10:24:42 +0000 (Fri, 20 Jan 2006)
New Revision: 4942

Modified:
trunk/www/pgadmin3/bugs.php
Log:
Fixup the bug display script used by the pgAdmin help browser

Modified: trunk/www/pgadmin3/bugs.php
===================================================================
--- trunk/www/pgadmin3/bugs.php 2006-01-20 10:12:08 UTC (rev 4941)
+++ trunk/www/pgadmin3/bugs.php 2006-01-20 10:24:42 UTC (rev 4942)
@@ -1,25 +1,28 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang='en' xml:lang='en'>
<head>
-
-<meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8" />
-<link rel="stylesheet" type="text/css" href="css/bluehaze-latin1.css" title="Blue Haze stylesheet" />
-<link rel="stylesheet" type="text/css" href="css/color-scheme.css" title="Blue Haze stylesheet" />
- <title>pgAdmin III Bugs</title>
+ <meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8" />
+ <title>pgAdmin III Known Bugs</title>
</head>

<body >
- <h1><?php echo _("Known bugs")?></h1>
- <dd>
+ <h1>Known bugs</h1>
<table width="100%" border="0" cellspacing="1" cellpadding="8" bgcolor="#efefef" dir='ltr'>
- <tr><td>
- <?php echo _("The information displayed is extracted automatically from pgAdmin CVS.");?>
- <?php
- $_file=$_SERVER["DOCUMENT_ROOT"]."/cvsroot/pgadmin3/BUGS.txt";
- if (file_exists($_file)) {
- echo ("<br><br>");
- include_once ($_file);
- }
- ?>
- </td></tr></table>
- </dd>
+ <tr>
+ <td>The information displayed is extracted automatically from the pgAdmin SVN repository.</td>
+ </tr>
+ </table>
+
+<?php
+ $_file=$_SERVER["DOCUMENT_ROOT"]."/svnrepo/pgadmin3/BUGS.txt";
+ if (file_exists($_file)) {
+ echo "<br />";
+ include_once ($_file);
+ }
+ else
+ {
+ echo "<p>Error: Couldn't open the bugs list!</p>";
+ }
+?>
+
</body>
+</html>

Browse pgadmin-hackers by date

  From Date Subject
Next Message Dave Page 2006-01-20 10:34:50 Website facelift
Previous Message svn 2006-01-20 10:12:08 SVN Commit by dpage: r4941 - trunk/www