use banner ad code from main winehq.org

This commit is contained in:
Jeremy Newman
2005-11-21 17:30:58 +00:00
parent 91fe4dd26c
commit 312ebc2b1f
9 changed files with 7 additions and 77 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE bannerAd>
<ad>
<id>cw-ad04</id>
<url>http://www.codeweavers.com/products/?ad=1</url>
<alt>QuickTime for Linux!</alt>
</ad>

View File

@@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE bannerAd>
<ad>
<id>cw-ad04</id>
<url>http://www.codeweavers.com/products/support_wine/?ad=1</url>
<alt>Support the Wine Project!</alt>
</ad>

View File

@@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE bannerAd>
<ad>
<id>cw-ad04</id>
<url>http://www.codeweavers.com/products/?ad=1</url>
<alt>Microsoft Office On Linux!</alt>
</ad>

View File

@@ -1,50 +0,0 @@
<?php
/**********************************************/
/* Banner Ad Library */
/* by Jeremy Newman <jnewman@codeweavers.com> */
/* last modified: 2001.10.08 */
/**********************************************/
/**
* Path for Banner Ads
*/
function banner_display ()
{
// import banner paths from config
$banner_path_468x60 = BASE."banner/468x60/";
$banner_path_xml = BASE."banner/xml/";
// opening html
$banner = "";
$banner .= "\n\n".'<!-- START BANNER AD -->'."\n";
$banner .= "<div align=center id=\"banner\">\n";
// read dir and get list of banners
$ads = array();
$d = opendir($banner_path_468x60);
while($entry = readdir($d))
{
if(!ereg("(.+)\\.gif$", $entry, $arr))
continue; //"
array_push($ads, $arr[1]);
}
closedir($d);
// randomly select a banner and display it
$img = $ads[(rand(1,count($ads))-1)];
$url = get_xml_tag($banner_path_xml.$img.'.xml','url');
$alt = get_xml_tag($banner_path_xml.$img.'.xml','alt');
// da banner
$banner .= '<a href="'.$url.'">';
$banner .= '<img src="'.$banner_path_468x60.$img.'.gif" width=468 height=60 alt="'.$alt.'">';
$banner .= '</a>'."\n";
// closing html
$banner .= '</div>'."\n";
$banner .= '<!-- END BANNER AD -->'."\n\n";
return $banner;
}
?>

View File

@@ -25,8 +25,13 @@
<td> <td>
<img src="<?php echo BASE; ?>images/blank.gif" width="10" height="1" alt=""> <img src="<?php echo BASE; ?>images/blank.gif" width="10" height="1" alt="">
</td> </td>
<td width="100%" align="center" valign="middle"> <td width="468" align="center" valign="middle">
<?php echo $banner_ad; ?> <!-- BANNER AD -->
<iframe src="http://www.winehq.org/bin/ad" scrolling="no" frameBorder="0" height="60" width="468"></iframe>
<!-- END BANNER AD -->
</td>
<td>
<img src="<?php echo BASE; ?>images/blank.gif" width=10 height=1 alt="">
</td> </td>
</tr> </tr>
</table> </table>

View File

@@ -58,10 +58,6 @@ function apidb_header($title = 0)
if ($title) if ($title)
$title = " - $title"; $title = " - $title";
// banner ad
include(BASE."include/banner.php");
$banner_ad = banner_display();
// Display Header // Display Header
include(BASE."include/header.php"); include(BASE."include/header.php");