Revision: 536
          http://pel.svn.sourceforge.net/pel/?rev=536&view=rev
Author:   lsolesen
Date:     2010-12-06 14:23:15 +0000 (Mon, 06 Dec 2010)

Log Message:
-----------
pel.sourceforge.net has been closed and moved

Modified Paths:
--------------
    web/htdocs/index.php

Modified: web/htdocs/index.php
===================================================================
--- web/htdocs/index.php        2010-07-21 15:12:35 UTC (rev 535)
+++ web/htdocs/index.php        2010-12-06 14:23:15 UTC (rev 536)
@@ -1,222 +1,17 @@
-<?php // -*- mode: nxml; coding: utf-8 -*-
-
-error_reporting (E_ALL);
-
-if (is_writable('/tmp/persistent/pel/projnews.xml')) {
-  /* On SourceForge: */
-  define('CACHE_FILE', '/tmp/persistent/pel/projnews.xml');
-} else {
-  /* Elsewhere: */
-  define('CACHE_FILE', '/tmp/pel-projnews.xml');
-}
-define('CACHE_TIMEOUT', 3*3600);
-
-$mod = max(filemtime(CACHE_FILE), getlastmod());
-$age = time() - $mod;
-$fresh = $age < CACHE_TIMEOUT;
-
-if (!isset($_GET['reload']) &&
-    isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) &&
-    strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) == $mod) {
-  header('HTTP/1.1 304 Not Modified');
-  exit;
-}
-
-header('Expires: ' . gmdate('r', $mod + CACHE_TIMEOUT));
-header('Cache-Control: max-age=' . (CACHE_TIMEOUT - $age));
-header('Last-Modified: ' . gmdate('r', $mod));
-
-header('Content-Type: text/html; charset=UTF-8');
+<?php
+header("HTTP/1.1 301 Moved Permanently");
+header("Location: http://github.com/lsolesen/pel/";);
 ?>
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
    "http://www.w3.org/TR/html4/strict.dtd";>
 <html>
 <head>
-  <link type="text/css" rel="stylesheet" href="pel.css">
   <title>PEL: PHP Exif Library</title>
 </head>
 <body>
-<h1>PEL: PHP Exif Library</h1>
+<h1>PEL: PHP Exif Library has moved</h1>
 
-<!-- Page generated on <?php echo date('r') ?>. -->
+<p>PEL has moved to <a 
href="http://github.com/lsolesen/pel";>github.com/lsolesen/pel</a>. Please 
update your bookmarks.</p>
 
-<?php include('navbar.php'); ?>
-
-<p>The PHP Exif Library (PEL) lets you fully manipulate Exif
-(Exchangeable Image File Format) data. This is the data that digital
-cameras place in their images, such as the date and time, shutter
-speed, ISO value and so on.</p>
-
-<p>Using PEL, one can fully modify the Exif data, meaning that it can
-be both <strong>read</strong> and <strong>written</strong>. Completely
-new Exif data can also be added to images. PEL is written completely
-in PHP and depends on nothing except a standard installation of PHP,
-<a href="http://www.php.net/downloads.php#v5";>version&nbsp;5</a>. PEL
-is hosted on <a
-href="http://sourceforge.net/projects/pel/";>SourceForge</a>.</p>
-
-<h2 id="f">Features</h2>
-
-<ul>
-  <li>
-    Reads and parses both JPEG and TIFF images.
-  </li>
-
-  <li>
-    All Exif tags can be modified: new tags can be created and old
-    tags can be updated.
-  </li>
-
-  <li>
-    Extensible object-oriented design. PEL utilizes the new
-    features in PHP&nbsp;5.
-  </li>
-
-  <li>
-    Tested with <a
-    href="http://sourceforge.net/projects/simpletest";>SimpleTest</a>
-    (11 camera models tested, plus core tests).
-  </li>
-
-  <li>
-    Fully documented with <a
-    href="http://phpdoc.org/";>PhpDocumentor</a>, see the online <a
-    href="doc/">API documentation</a>.
-  </li>
-
-  <li>
-    Supports internationalisation.
-  </li>
-
-</ul>
-
-<h2 id="i">Installation</h2>
-
-<p>
-You can install PEL as a pear package using the following code:
-</p>
-
-<code>
-       pear channel-discover pearhub.org<br>
-       pear install pearhub/PEL
-</code>
-
-<h2 id="n">News</h2>
-
-<p>Below you will find the latest news about PEL, go to the <a
-href="http://sourceforge.net/news/?group_id=108380";>News Archive</a>
-for older news posts.</p>
-
-<?php
-
-if (!$fresh || isset($HTTP_GET_VARS['reload'])) {
-
-  echo "<!-- Fetching RSS feed from SourceForge. -->\n";
-
-  $url = 'http://sourceforge.net/export/rss2_projnews.php?' .
-    'group_id=108380&rss_fulltext=1';
-
-  $tmp = tempnam('/tmp', 'pel');
-  $out = fopen($tmp, 'w');
-  $in = fopen($url, 'r');
-
-  while (!feof($in)) {
-    fwrite($out, fread($in, 4096));
-  }
-
-  fclose($out);
-  fclose($in);
-
-  /* Rename doesn't work across devices PHP prior to version 4.3.3. */
-  copy($tmp, CACHE_FILE);
-  //chmod(CACHE_FILE, 0644);
-  unlink($tmp);
-}
-
-require_once('../xmlParser.php');
-require_once('../feedParser.php');
-
-$data = implode('', file(CACHE_FILE));
-$p = new feedParser();
-$info = $p->parseFeed($data);
-
-foreach (array_slice($info['item'], 0, 4) as $item) {
-  echo '<h3>' . $item['title'] . "</h3>\n";
-  echo '<h4>' . date('F jS, Y', $item['date']) . "</h4>\n";
-
-  $lines = explode('<br /><br />', $item['description']);
-  $last = array_pop($lines);
-  $last = str_replace(' (<a href="http://sourceforge.net/forum/forum.php',
-                      '<br>(<a href="http://sourceforge.net/forum/forum.php',
-                      $last);
-  array_push($lines, $last);
-
-  foreach ($lines as $line) {
-
-    /* Fixup the URLs SourceForge generate... */
-    echo '<p>' . wordwrap(str_replace(array('<br />',
-                                            '---',
-                                            '>http://downloads.sf.net/pel/'),
-                                      array("<br>\n",
-                                            '—',
-                                            '>'),
-                                      $line)) . "</p>\n";
-  }
-
-  echo "\n";
-}
-
-
-?>
-
-
-<h2 id="c">Credits</h2>
-
-<p>PEL is written by <a href="mailto:mgeis...@users.sourceforge.net";>Martin 
Geisler</a>.</p>
-
-<p>The source started out as a port of the nice, clean C code found in
-<a href="http://sourceforge.net/projects/libexif/";>libexif</a>.  This
-means that PEL share the basic design ideas and features with the
-library. But PEL does not depend on libexif to be installed, or
-available in any way — PEL is independent PHP code.</p>
-
-<p>The German, French, and Spanish translations are also taken from
-the libexif project.</p>
-
-<h3>Test Image Contributors</h3>
-
-<p>Lars Geisler: Nikon Coolscan IV ED test image.</p>
-
-<p><a href="http://folly.dk/";>Stéphanie Bittel</a>: Canon IXUS II test 
image.</p>
-
-<p>Bernhard Bittel: Nikon E950 and E5000 test images.</p>
-
-<p><a href="http://ubehageligt.dk/";>Mikkel Krøigård</a>: Canon PowerShot S60 
test image.</p>
-
-<p>Thomas B. Pedersen: Olympus C-50z and C-765z test images.</p>
-
-<p>Lisbeth Nygaard Pedersen: Leica D-LUX test image.</p>
-
-<p>Paul Mitchum: Pentax *ist DS and Olympus C-5050z test images.</p>
-
-
-<h2 id="s">Support PEL</h2>
-
-<p>If you have tried PEL, and like the functionality it provides, then
-please supporting the development by donating money.  This can be done
-through PayPal &mdash; please visit the <a
-href="http://sourceforge.net/donate/index.php?group_id=108380";>SourceForge
-donation page</a> for more information.  Any donation will be gladly
-accepted, thank you!</p>
-
-<p>Another way to show that you liked PEL is to take a moment and rate
-it at the <a href="http://freshmeat.net/projects/pel/";>freshmeat.net
-project page</a>.</p>
-
-<?php
-define('SVN', '$Id$');
-include('footer.php');
-?>
-
 </body>
 </html>


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
_______________________________________________
PEL-commits mailing list
pel-comm...@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pel-commits

Reply via email to