www/adium.im 574:20adc1656691: Initial Screencasts page. figcapt...

commits at adium.im commits at adium.im
Sat Feb 18 03:24:44 UTC 2012


details:	http://hg.adium.im/www/adium.im/rev/20adc1656691
revision:	574:20adc1656691
branch:		rewrite
author:		Paul Wilde <me at paulwilde.co.uk>
date:		Sat Feb 18 03:24:32 2012 +0000

Initial Screencasts page. figcaption height scaling currently broken.

diffs (480 lines):

diff -r e5dd23bbcb39 -r 20adc1656691 about/index.php
--- a/about/index.php	Sat Feb 18 02:14:30 2012 +0000
+++ b/about/index.php	Sat Feb 18 03:24:32 2012 +0000
@@ -8,6 +8,7 @@
 	<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
 	<link rel="stylesheet" href="/rewrite/assets/styles/global.css">
 	<link rel="stylesheet" href="/rewrite/assets/styles/about.css">
+	<link rel="stylesheet" href="/rewrite/assets/styles/thumbnails.css">
 	<link rel="stylesheet" href="/rewrite/assets/scripts/fancybox/fancybox.css">
 	<link rel="shortcut icon" href="/rewrite/favicon.ico">
 	<link rel="apple-touch-icon-precomposed" href="/rewrite/apple-touch-icon.png">
diff -r e5dd23bbcb39 -r 20adc1656691 assets/images/thumbnail_overlay.png
Binary file assets/images/thumbnail_overlay.png has changed
diff -r e5dd23bbcb39 -r 20adc1656691 assets/images/thumbnail_play.png
Binary file assets/images/thumbnail_play.png has changed
diff -r e5dd23bbcb39 -r 20adc1656691 assets/images/thumbnail_zoom.png
Binary file assets/images/thumbnail_zoom.png has changed
diff -r e5dd23bbcb39 -r 20adc1656691 assets/styles/about.css
--- a/assets/styles/about.css	Sat Feb 18 02:14:30 2012 +0000
+++ b/assets/styles/about.css	Sat Feb 18 03:24:32 2012 +0000
@@ -1,5 +1,4 @@
 /********** Features **********/
-
 .features { 
 	-webkit-columns: 2;
 	-moz-columns: 2;
@@ -11,22 +10,7 @@
 	padding-bottom: 10px;
 }
 
-/********** Screenshots **********/
-
-figure.thumbnail { width: 22.8%; }
-
-
 /********** Media Queries **********/
- at media (max-width: 980px) {
-	/* Screenshots */
-	figure.thumbnail { width: 22.5%; }
-}
-
- at media (max-width: 870px) {
-	/* Screenshots */
-	figure.thumbnail { width: 22%; }
-}
-
 @media (max-width: 820px) {
 	/* Features */
 	.features {
@@ -35,35 +19,4 @@
 		columns: 1;
 		padding: 0;
 	}
-}
-
- at media (max-width: 760px) {
-	/* Screenshots */
-	figure.thumbnail { width: 30%; }
-}
-
- at media (max-width: 700px) {
-	/* Screenshots */
-	figure.thumbnail { width: 29.6%; }
-}
-
- at media (max-width: 600px) {
-	/* Screenshots */
-	figure.thumbnail { width: 45.5%; }
-}
-
- at media (max-width: 520px) {
-	/* Screenshots */
-	figure.thumbnail { width: 44%; }
-}
-
-
- at media (max-width: 400px) {
-	/* Screenshots */
-	figure.thumbnail { width: 43%; }
-}
-
- at media (max-width: 360px) {
-	/* Screenshots */
-	figure.thumbnail { width: 100%; }
 }
\ No newline at end of file
diff -r e5dd23bbcb39 -r 20adc1656691 assets/styles/global.css
--- a/assets/styles/global.css	Sat Feb 18 02:14:30 2012 +0000
+++ b/assets/styles/global.css	Sat Feb 18 03:24:32 2012 +0000
@@ -59,6 +59,8 @@
 	font-size: 1.4em;
 }
 
+figcaption h4 { font-size: 1.1em; }
+
 .content p, .content h3, figcaption, td, th, pre {
 	line-height: 1.4em;
 }
@@ -455,7 +457,11 @@
 	height: 100%;
 	content: '';
 	display: block;
-	background: url('../../assets/images/thumbnail_overlay.png') no-repeat center center;
+	background: url('../../assets/images/thumbnail_zoom.png') no-repeat center center;
+}
+
+figure.video .overlay span:after {
+	background: url('../../assets/images/thumbnail_play.png') no-repeat center center;
 }
 
 figure a:hover span { opacity: 1; filter: alpha(opacity=1); cursor: pointer; }
@@ -471,6 +477,8 @@
     transition: color 150ms ease-in;
 }
 
+figcaption h4 { color: #444; padding-bottom: 6px; }
+
 figure:hover figcaption { color: #444; cursor: pointer; }
 figure:hover a:hover { text-decoration: none; } /* Notice: Remove underline from the figcaption on hover */
 
diff -r e5dd23bbcb39 -r 20adc1656691 assets/styles/thumbnails.css
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/styles/thumbnails.css	Sat Feb 18 03:24:32 2012 +0000
@@ -0,0 +1,19 @@
+/********** Thumbnails **********/
+figure.thumbnail { width: 22.8%; }
+
+/********** Media Queries **********/
+ at media (max-width: 980px) { figure.thumbnail { width: 22.5%; } }
+
+ at media (max-width: 870px) { figure.thumbnail { width: 22%; } }
+
+ at media (max-width: 760px) { figure.thumbnail { width: 30%; } }
+
+ at media (max-width: 700px) { figure.thumbnail { width: 29.6%; } }
+
+ at media (max-width: 600px) { figure.thumbnail { width: 45.5%; } }
+
+ at media (max-width: 520px) { figure.thumbnail { width: 44%; } }
+
+ at media (max-width: 400px) { figure.thumbnail { width: 43%; } }
+
+ at media (max-width: 360px) { figure.thumbnail { width: 100%; } }
\ No newline at end of file
diff -r e5dd23bbcb39 -r 20adc1656691 screencasts/index.php
--- a/screencasts/index.php	Sat Feb 18 02:14:30 2012 +0000
+++ b/screencasts/index.php	Sat Feb 18 03:24:32 2012 +0000
@@ -1,221 +1,113 @@
-<?php
+<!DOCTYPE html>
+<html>
 
-	/* Screencasts Thing */
+<head>
+	<title>Adium - About</title>
+	<meta charset="utf-8">
+	<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
+	<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
+	<link rel="stylesheet" href="/rewrite/assets/styles/global.css">
+	<link rel="stylesheet" href="/rewrite/assets/styles/thumbnails.css">
+	<link rel="shortcut icon" href="/rewrite/favicon.ico">
+	<link rel="apple-touch-icon-precomposed" href="/rewrite/apple-touch-icon.png">
+	<script src="/rewrite/assets/scripts/screencasts.js"></script>
+</head>
+
+<body>
+	<header>
+		<div class="menu">
+			<div class="container">
+				<div id="menu-logo"><a href="/rewrite/"><span>Adium</span></a></div>
+				<nav>
+					<ul>
+						<li class="home"><a href="/rewrite/"><span>Home</span></a></li>
+						<li class="about"><a href="/rewrite/about/"><span>About</span></a></li>
+						<li class="help active"><a href="/rewrite/help/"><span>Help</span></a></li>
+						<li class="blog"><a href="/rewrite/blog/"><span>Blog</span></a></li>
+						<li class="xtras"><a href="http://xtras.adium.im"><span>Xtras</span></a></li>
+						<li class="dev"><a href="http://trac.adium.im"><span>Development</span></a></li>
+						<li class="merch"><a href="http://adium.spreadshirt.com"><span>Merchandise</span></a></li>
+					</ul>
+				</nav>
+			</div>
+		</div>
+		<div class="banner">
+			<div class="container">
+				<h1>Screencasts</h1>
+			</div>
+		</div>
+	</header>
 	
-	// TODO: Make all this crap Smarty so less code!
-	
-	$episodes = array(
-		array(
-			'blip_id' => 'h95IguasBAA',
-			'title' => "Installing Adium",
-			'permalink_name' => 'installing-adium',
-			'useHD' => 1,
-			'description' => "How to copy Adium from its disk image into your Applications folder."
-		),
-		array(
-			'blip_id' => 'h95IgumpTQA',
-			'title' => "First Run",
-			'permalink_name' => 'first-run',
-			'useHD' => 1,
-			'description' => "A demonstration of running Adium's setup assistant for the first time."
-		),
-		array(
-			'blip_id' => 'AYK86zUA',
-			'title' => "Adding a contact; first chat",
-			'permalink_name' => 'adding-contacts',
-			'useHD' => 0,
-			'description' => "Adding contacts to your list and initiating chats with them."
-		),
-		array(
-			'blip_id' => 'AYK86zYA',
-			'title' => "Chatting",
-			'permalink_name' => 'chatting',
-			'useHD' => 0,
-			'description' => "The basic features Adium provides when chatting with another person."
-		),
-		array(
-			'blip_id' => 'AYK860cA',
-			'title' => "Outgoing Text Colors",
-			'permalink_name' => 'outgoing-text-colors',
-			'useHD' => 0,
-			'description' => "How to set your outgoing text color, and then how to set it back to no color."
-		),
-		/* This one hasn't been re-uploaded to blip.tv yet. --PRH
-		array(
-			'revver_id' => "365206",
-			'title' => "Nudge/Buzz",
-			'permalink_name' => 'nudge-buzz',
-			'description' => "How to use Nudge/Buzz. You can also use the toolbar icon, or the Contact menu."
-		)
-		*/
-	);
-					
-	if (isset($_GET['video']))
-		$video_ID = intval($_GET['video']);
-	elseif (isset($_GET['video_name'])) {
-		for($video_ID = 0; $video_ID < count($episodes); ++$video_ID) {
-			if ($episodes[$video_ID]['permalink_name'] == $_GET['video_name'])
-				break;
-		}
-		if ($video_ID >= count($episodes))
-			$video_ID = null;
-	} else
-		$video_ID = null;
-?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-	<title>Adium - Videos</title>
-	<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-	<link rel="stylesheet" type="text/css" href="../styles/layoutstyle.css" />
-	<link rel="stylesheet" type="text/css" href="../styles/defaultstyle.css" />
-	<link rel="stylesheet" type="text/css" href="../help/css/common.css" />
-	<link rel="shortcut icon" href="/favicon.ico" />
-	<style type="text/css" media="screen">
-		#videoHolder {
-			float: left;
-			margin: auto;
-			width: 480px;
-		}
-		
-		#video {
-			width: 480px;
-			height: 376px;
-			text-align: center;
-		}
-		
-		#episodeInfo {
-			margin-top: .5em;
-			width: 480px;
-			text-align: center;
-		}
-		
-		#episodesList {
-			width: 400px;
-			height: 400px;
-			/*border: 1px solid black;*/
-			overflow: auto;
-			margin: auto;
-		}
-		
-		#episodes {
-			padding-top: 1px;
-			padding-bottom: 1px;
-		}
-		
-		.episodeImage {
-			float: left;
-			margin-right: .5em;
-		}
-			
-		.episode {
-			padding: 4px 2px 4px 2px;
-			margin: 1px 1px 1px 1px;
-			height: 100px;
-		}
-		
-		.episode1 { background-color: #FFFFFF; }
-		.episode0 { background-color: #E7EFFF; }
-	</style>
-	<script type="text/javascript" charset="utf-8">
-		var episode_permalink_names = [
-<?php foreach($episodes as $ep) {
-?>			'<?php echo urlencode($ep['permalink_name']); ?>',
-<?php } ?>
-		];
-		currentEpisode = 0;
-		function changeEpisode(episodeNumber, episodeID, episodeName, useHD) {
-			document.title = "Adium - Videos - " + episodeName;
-		
-			// Embed won't let us change the "src" on its own.
-			// So we just modify the div containing it.
-			document.getElementById("video").innerHTML = '<iframe src="http://blip.tv/play/' + episodeID + '.html?p=1" width="480" height="' + (useHD ? '300' : '376') + '" frameborder="0" allowfullscreen></iframe><embed type="application/x-shockwave-flash" src="http://a.blip.tv/api.swf#' + episodeID + '" style="display:none"></embed>';
-
-			// Style current info.
- 			document.getElementById("episode" + episodeNumber).style.background = "#FFE5E5";
-			
-			document.getElementById("episodeLink").href = "/screencasts/" + episode_permalink_names[episodeNumber];
-			document.getElementById("episodeLink").innerHTML = "Permanent Link for “" + episodeName + "”";
-			
-			// Reset last one.
-			if (currentEpisode != episodeNumber)
-				document.getElementById("episode" + currentEpisode).style.background = "";
-			currentEpisode = episodeNumber;
-		}
-	</script>
-</head>
-<body>    
-	<div id="container">
-	   	<div id="titlecontainer">
-			<a href="/index.php">Adium</a>
-        </div>
-		<div id="navcontainer">
-			<a class="navtab" href="http://adium.im/">Download</a> 
-			<a class="navtab" href="http://adium.im/about/">About</a> 
-			<a class="navtab" href="http://adium.im/blog/">Blog</a> 
-			<a class="navtabcurrent" href="http://adium.im/help/">Help</a>
-			<a class="navtab" href="http://trac.adium.im">Development</a> 
-			<a class="navtab" href="http://adium.spreadshirt.com">Merchandise</a>
-			<a class="navtab" href="http://www.adiumxtras.com/">Xtras</a>
+	<div class="content">
+		<div class="container">
+			<section>
+				<h1 class="padding-fix">Screencasts</h1>
+				
+				<figure class="thumbnail video">
+					<a href="">
+						<div class="overlay">
+							<span></span>
+							<img src="/rewrite/assets/images/screenshots/thumbnail.png" alt="Thumbnail">
+						</div>
+						<figcaption>
+							<h4>Episode 0: Installing Adium</h4>
+							How to copy Adium from its disk image into your Applications folder.
+						</figcaption>
+					</a>
+				</figure>
+				
+				<figure class="thumbnail video">
+					<a href="">
+						<div class="overlay">
+							<span></span>
+							<img src="/rewrite/assets/images/screenshots/thumbnail.png" alt="Thumbnail">
+						</div>
+						<figcaption>
+							<h4>Episode 1: First Run</h4>
+							A demonstration of running Adium's setup assistant for the first time.
+						</figcaption>
+					</a>
+				</figure>
+				
+				<figure class="thumbnail video">
+					<a href="">
+						<div class="overlay">
+							<span></span>
+							<img src="/rewrite/assets/images/screenshots/thumbnail.png" alt="Thumbnail">
+						</div>
+						<figcaption>
+							<h4>Episode 2: Adding a contact; first chat</h4>
+							Adding contacts to your list and initiating chats with them.
+						</figcaption>
+					</a>
+				</figure>
+				
+				<figure class="thumbnail video">
+					<a href="">
+						<div class="overlay">
+							<span></span>
+							<img src="/rewrite/assets/images/screenshots/thumbnail.png" alt="Thumbnail">
+						</div>
+						<figcaption>
+							<h4>Episode 3: Chatting</h4>
+							The basic features Adium provides when chatting with another person.
+						</figcaption>
+					</a>
+				</figure>
+				
+				<figure class="thumbnail video">
+					<a href="">
+						<div class="overlay">
+							<span></span>
+							<img src="/rewrite/assets/images/screenshots/thumbnail.png" alt="Thumbnail">
+						</div>
+						<figcaption>
+							<h4>Episode 4: Outgoing Text Colors</h4>
+							How to set your outgoing text color, and then how to set it back to no color.
+						</figcaption>
+					</a>
+				</figure>
+			</section>
 		</div>
-		<div id="nav"> <a name="adiumdocumentation.html" id="adiumdocumentation.html"></a><a name="ax-discover" id="ax-discover"></a> 
-		 	<div id="navleft"><a class="navleftsty" href="../help">Adium Help</a> <a class="navleftsty active" href="http://adium.im/screencasts/">Adium Videos</a> <a class="navleftsty" href="../help/pgs/AdiumDocumentation.html">Adium Documentation</a></div>
-		</div>
-        <div id="mainbox">
-								<div id="pagetitle"> <h3><a href="../help/"> <img src="../help/gfx/AdiumIcon.png" alt="Adium Icon" height="32" width="32" border="0" />Adium Help</a> > <a href="../help/pgs/AdiumDocumentation.html">Adium Documentation</a> ></h3> 
-									<h1>Adium Videos</h1> 
-								</div>
-					<p>Here you can watch some videos that should get you started with Adium in no time.</p>
-					<div id="videoHolder">
-						<div id="video"><img src="previews/qtime.png" alt="Quicktime Logo" /></div>
-						<div id="episodeInfo"><p><a id="episodeLink" href="">The video will appear above once you select one to watch.</a></p></div>
-					</div>
-					
-					<div id="episodesList">
-					<table id="episodes" border="0">
-<?php
-					$count = 0; $which = 0;
-					foreach ($episodes as $episode) {
-						$which = !$which; // SMARTY
-						printf('<tr id="episode%d" class="episode episode%d">', $count, $which);
-						printf('<td class="episodeImgae"><a href="/screencasts/%s" onclick="changeEpisode(%d, \'%s\', \'%s\', %d); return false;"><img src="previews/episode%d.png" alt="Preview of Episode %s" style="border: 0;" /></a></td>', $episode['permalink_name'], $count, $episode['blip_id'], $episode['title'], $episode['useHD'], $count, $episode['title']);
-						printf('<td>');
-						printf('<a href="/screencasts/%s" onclick="javascript:changeEpisode(%d, \'%s\', \'%s\', %d); return false;">Episode %d: %s</a>', $episode['permalink_name'], $count, $episode['blip_id'], $episode['title'], $episode['useHD'], $count++, $episode['title']);
-						printf('<p>%s</p>', $episode['description']);
-						printf('</td>');
-						printf('</tr>');
-						printf("\n");
-					}
-?>
-					</table>
-					</div>
-					<?php if ($video_ID !== null) { ?>
-					<script type="text/javascript" charset="utf-8">
-						changeEpisode(<?=$video_ID?>, '<?=$episodes[$video_ID]['blip_id']?>', '<?=$episodes[$video_ID]['title']?>', <?=$episodes[$video_ID]['useHD']?>);
-					</script>
-					<?php } ?>
-				</div>
-				<p style="text-align: center; font-size: small;">Yes, you can get the <a href="http://www.pixelgirlpresents.com/desktops.php?cat=cute&res=1600x1200">cow image</a> used in the videos, too.</p>
-			</div>
-		<div id="footerfixed">
-<div class="donate">
-<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&submit.x=57&submit.y=8&encrypted=-----BEGIN+PKCS7-----%0D%0AMIIHFgYJKoZIhvcNAQcEoIIHBzCCBwMCAQExggEwMIIBLAIBADCBlDCBjjELMAkG%0D%0AA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQw%0D%0AEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UE%0D%0AAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20CAQAwDQYJ%0D%0AKoZIhvcNAQEBBQAEgYAFR5tF%2BRKUV3BS49vJraDG%2BIoWDoZMieUT%2FJJ1Fzjsr511%0D%0Au7hS1F2piJuHuqmm%2F0r8Kf8oaycOo74K3zLmUQ6T6hUS6%2Bh6lZAoIlhI3A1YmqIP%0D%0AdrdY%2FtfKRbWfolDumJ9Mdv%2FzJxPnpdQiTN5K1PMrPYE6GgPWE9WC4V9lqstSmTEL%0D%0AMAkGBSsOAwIaBQAwgZMGCSqGSIb3DQEHATAUBggqhkiG9w0DBwQIjtd%2BN9o4ZB6A%0D%0AcIbH8ZjOLmE35xBQ%2F93chtzIcRXHhIQJVpBRCkyJkdTD3libP3F7TgkrLij1DBxg%0D%0AfFlE0V%2FGTk29Ys%2FwsPO7hNs3YSNuSz0HT5F6sa8aXwFtMCE%2FgB1Ha4qdtYY%2BNETJ%0D%0AEETwNMLefjhaBfI%2BnRxl2K2gggOHMIIDgzCCAuygAwIBAgIBADANBgkqhkiG9w0B%0D%0AAQUFADCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHE!
 w1Nb3Vu%0D%0AdGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9j%0D%0AZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBh%0D%0AbC5jb20wHhcNMDQwMjEzMTAxMzE1WhcNMzUwMjEzMTAxMzE1WjCBjjELMAkGA1UE%0D%0ABhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYD%0D%0AVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQI%0D%0AbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20wgZ8wDQYJKoZI%0D%0AhvcNAQEBBQADgY0AMIGJAoGBAMFHTt38RMxLXJyO2SmS%2BNdl72T7oKJ4u4uw%2B6aw%0D%0AntALWh03PewmIJuzbALScsTS4sZoS1fKciBGoh11gIfHzylvkdNe%2FhJl66%2FRGqrj%0D%0A5rFb08sAABNTzDTiqqNpJeBsYs%2Fc2aiGozptX2RlnBktH%2BSUNpAajW724Nv2Wvhi%0D%0Af6sFAgMBAAGjge4wgeswHQYDVR0OBBYEFJaffLvGbxe9WT9S1wob7BDWZJRrMIG7%0D%0ABgNVHSMEgbMwgbCAFJaffLvGbxe9WT9S1wob7BDWZJRroYGUpIGRMIGOMQswCQYD%0D%0AVQQGEwJVUzELMAkGA1UECBMCQ0ExFjAUBgNVBAcTDU1vdW50YWluIFZpZXcxFDAS%0D%0ABgNVBAoTC1BheVBhbCBJbmMuMRMwEQYDVQQLFApsaXZlX2NlcnRzMREwDwYDVQQD%0D%0AFAhsaXZlX2FwaTEcMBoGCSqGSIb3DQEJARYNcmVAcGF5cGFsLmNvb!
 YIBADAMBgNV%0D%0AHRMEBTADAQH%2FMA0GCSqGSIb3DQEBBQUAA4GBAIFfOla!
 agFrl71%
2Bjq6OKidbWFSE%2B%0D%0AQ4FqROvdgIONth%2B8kSK%2F%2FY%2F4ihuE4Ymvzn5ceE3S%2FiBSQQMjyvb%2Bs2TWbQYDwcp1%0D%0A29OPIbD9epdr4tJOUNiSojw7BHwYRiPh58S1xGlFgHFXwrEBb3dgNbMUa%2Bu4qect%0D%0AsMAXpVHnD9wIyfmHMYIBmjCCAZYCAQEwgZQwgY4xCzAJBgNVBAYTAlVTMQswCQYD%0D%0AVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFs%0D%0AIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRww%0D%0AGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwuY29tAgEAMAkGBSsOAwIaBQCgXTAYBgkq%0D%0AhkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0wNDAzMjUwNDQ0%0D%0AMzRaMCMGCSqGSIb3DQEJBDEWBBRzTAS6zk5cmMeC49IorY8CM%2BkX0TANBgkqhkiG%0D%0A9w0BAQEFAASBgBsyRfMv9mSyoYq00wIB7BmUHFGq5x%2Ffnr8M24XbKjhkyeULk2NC%0D%0As4jbCgaWNg6grvccJtjbvmDskMKt%2BdS%2BEAkeWwm1Zf%2F%2B5u1fMyb5vo1NNcRIs5oq%0D%0A7SvXiLTPRzVqzQdhVs7PoZG0i0RRIb0tMeo1IssZeB2GE5Nsg0D8PwpB%0D%0A-----END+PKCS7-----">
-Donate to Adium</a>
-</div>
-			<div id="powered">
-				<a href="http://developer.apple.com/ada"><img class="libgaim" src="/images/ada.png" border="0" alt="Apple design awards 05 special mention"/></a>
-				<a href="http://www.pidgin.im"><img class="libgaim" src="/images/powered_by_libpurple.png" alt="Adium is powered by libpurple" /></a>
-                <a class="cachefly" href="http://www.cachefly.com"><img src="/images/cachefly.png" alt="CacheFly Logo" /></a>
-				<a class="networkredux" href="http://www.networkredux.com"><img src="/images/network_redux.png" border="0" alt="Network Redux Logo"/></a>
-			</div>
-    </div>
-	<script type="text/javascript">
-		var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
-		document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
-	</script>
-	<script type="text/javascript">
-		var pageTracker = _gat._getTracker("UA-347527-8");
-		pageTracker._trackPageview();
-	</script>
-</body>
-</html>
+	</div>
+<?php include('../footer.php'); ?>
\ No newline at end of file




More information about the commits mailing list