lsolesen | 6 Dec 15:25
Picon

SF.net SVN: pel:[537] web

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

Log Message:
-----------
Deleted unneccessry files

Removed Paths:
-------------
    web/feedParser.php
    web/htdocs/footer.php
    web/htdocs/links.php
    web/htdocs/navbar.php
    web/htdocs/pel.css
    web/xmlParser.php

Deleted: web/feedParser.php
===================================================================
--- web/feedParser.php	2010-12-06 14:23:15 UTC (rev 536)
+++ web/feedParser.php	2010-12-06 14:25:00 UTC (rev 537)
@@ -1,401 +0,0 @@
-<?
-/*
- *  This program is free software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 2 of the License, or
- *  (at your option) any later version.
- *
(Continue reading)

lsolesen | 6 Dec 15:23
Picon

SF.net SVN: pel:[536] web/htdocs/index.php

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);
(Continue reading)

lsolesen | 21 Jul 17:12
Picon

SF.net SVN: pel:[535] trunk/README.markdown

Revision: 535
          http://pel.svn.sourceforge.net/pel/?rev=535&view=rev
Author:   lsolesen
Date:     2010-07-21 15:12:35 +0000 (Wed, 21 Jul 2010)

Log Message:
-----------
Added README file in markdown format.

Added Paths:
-----------
    trunk/README.markdown

Added: trunk/README.markdown
===================================================================
--- trunk/README.markdown	                        (rev 0)
+++ trunk/README.markdown	2010-07-21 15:12:35 UTC (rev 535)
@@ -0,0 +1,120 @@
+PEL: PHP Exit Library
+==
+
+PHP Exif Library.  A library with support for
+reading and writing Exif headers in JPEG and TIFF images using PHP.
+
+Description
+--
+
+The PHP Exif Library (PEL) makes it easy to develop programs that will
+read and write the Exif metadata headers found in JPEG and TIFF
+images.  See the file INSTALL for an introduction to how PEL can be
(Continue reading)

lsolesen | 7 Jun 00:45
Picon

SF.net SVN: pel:[534] trunk/test/run-tests.php

Revision: 534
          http://pel.svn.sourceforge.net/pel/?rev=534&view=rev
Author:   lsolesen
Date:     2010-06-06 22:45:28 +0000 (Sun, 06 Jun 2010)

Log Message:
-----------
Not reporting E_DEPRECATED.

Modified Paths:
--------------
    trunk/test/run-tests.php

Modified: trunk/test/run-tests.php
===================================================================
--- trunk/test/run-tests.php	2010-03-08 09:48:27 UTC (rev 533)
+++ trunk/test/run-tests.php	2010-06-06 22:45:28 UTC (rev 534)
@@ -24,7 +24,7 @@

 /* $Id$ */

-error_reporting(E_ALL);
+error_reporting(E_ALL &~E_DEPRECATED);

 if (!file_exists(dirname(__FILE__) . '/config.local.php')) {
     echo "Create config.local.php";

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

(Continue reading)

lsolesen | 8 Mar 10:48
Picon

SF.net SVN: pel:[533] /

Revision: 533
          http://pel.svn.sourceforge.net/pel/?rev=533&view=rev
Author:   lsolesen
Date:     2010-03-08 09:48:27 +0000 (Mon, 08 Mar 2010)

Log Message:
-----------

Property Changed:
----------------
    /

Property changes on: 
___________________________________________________________________
Added: svn:ignore
   + .buildpath

.project

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

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
lsolesen | 24 Feb 11:30
Picon

SF.net SVN: pel:[532] trunk/test/run-tests.php

Revision: 532
          http://pel.svn.sourceforge.net/pel/?rev=532&view=rev
Author:   lsolesen
Date:     2010-02-24 10:30:24 +0000 (Wed, 24 Feb 2010)

Log Message:
-----------
Added config.local.php and config.local.example.php to ignored tests.

Modified Paths:
--------------
    trunk/test/run-tests.php

Modified: trunk/test/run-tests.php
===================================================================
--- trunk/test/run-tests.php	2010-02-24 10:29:57 UTC (rev 531)
+++ trunk/test/run-tests.php	2010-02-24 10:30:24 UTC (rev 532)
@@ -26,7 +26,7 @@

 error_reporting(E_ALL);

-if (!file_exists(dirname(__FILE__))) {
+if (!file_exists(dirname(__FILE__) . '/config.local.php')) {
     echo "Create config.local.php";
     exit(1);
 }
@@ -66,7 +66,7 @@
   $group = new GroupTest('Selected PEL tests');
 } else {
   /* otherwive test all .php files, except this file (run-tests.php). */
(Continue reading)

lsolesen | 24 Feb 11:29
Picon

SF.net SVN: pel:[531] trunk/test/bug1730993.php

Revision: 531
          http://pel.svn.sourceforge.net/pel/?rev=531&view=rev
Author:   lsolesen
Date:     2010-02-24 10:29:57 +0000 (Wed, 24 Feb 2010)

Log Message:
-----------
Made sure that it does not throw an exception but fails because it does.

Modified Paths:
--------------
    trunk/test/bug1730993.php

Modified: trunk/test/bug1730993.php
===================================================================
--- trunk/test/bug1730993.php	2010-02-24 10:14:14 UTC (rev 530)
+++ trunk/test/bug1730993.php	2010-02-24 10:29:57 UTC (rev 531)
@@ -31,14 +31,16 @@
     $tmpfile = dirname(__FILE__) . '/images/bug1730993_tmp.jpg';
     $bigfile = dirname(__FILE__) . '/images/bug1730993_large.jpg';

-    $jpeg = new PelJpeg($tmpfile); // the error occurs here
-    $exif = $jpeg->getExif();
-    if ($exif != null) {
-      $jpeg1 = new PelJpeg($bigfile);
-      $jpeg1->setExif($exif);
-      file_put_contents($bigfile, $jpeg1->getBytes());
+    try {
+      $jpeg = new PelJpeg($tmpfile); // the error occurs here
+      $exif = $jpeg->getExif();
(Continue reading)

lsolesen | 24 Feb 11:14
Picon

SF.net SVN: pel:[530] trunk/test/run-tests.php

Revision: 530
          http://pel.svn.sourceforge.net/pel/?rev=530&view=rev
Author:   lsolesen
Date:     2010-02-24 10:14:14 +0000 (Wed, 24 Feb 2010)

Log Message:
-----------
Makes a test whether the config.local.php is present.

Modified Paths:
--------------
    trunk/test/run-tests.php

Modified: trunk/test/run-tests.php
===================================================================
--- trunk/test/run-tests.php	2010-02-24 09:57:51 UTC (rev 529)
+++ trunk/test/run-tests.php	2010-02-24 10:14:14 UTC (rev 530)
@@ -26,6 +26,11 @@

 error_reporting(E_ALL);

+if (!file_exists(dirname(__FILE__))) {
+    echo "Create config.local.php";
+    exit(1);
+}
+
 require_once 'config.local.php';

 if (!defined('SIMPLE_TEST')) {
@@ -54,7 +59,7 @@
(Continue reading)

lsolesen | 24 Feb 10:57
Picon

SF.net SVN: pel:[529] web/htdocs/index.php

Revision: 529
          http://pel.svn.sourceforge.net/pel/?rev=529&view=rev
Author:   lsolesen
Date:     2010-02-24 09:57:51 +0000 (Wed, 24 Feb 2010)

Log Message:
-----------
Added information about how to install PEL.

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

Modified: web/htdocs/index.php
===================================================================
--- web/htdocs/index.php	2010-02-24 09:52:37 UTC (rev 528)
+++ web/htdocs/index.php	2010-02-24 09:57:51 UTC (rev 529)
@@ -90,7 +90,17 @@

 </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
(Continue reading)

lsolesen | 24 Feb 10:52
Picon

SF.net SVN: pel:[528] trunk/test/

Revision: 528
          http://pel.svn.sourceforge.net/pel/?rev=528&view=rev
Author:   lsolesen
Date:     2010-02-24 09:52:37 +0000 (Wed, 24 Feb 2010)

Log Message:
-----------

Property Changed:
----------------
    trunk/test/


Property changes on: trunk/test
___________________________________________________________________
Added: svn:ignore
   + config.local.php

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

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
lsolesen | 24 Feb 10:46
Picon

SF.net SVN: pel:[527] tags

Revision: 527
          http://pel.svn.sourceforge.net/pel/?rev=527&view=rev
Author:   lsolesen
Date:     2010-02-24 09:46:33 +0000 (Wed, 24 Feb 2010)

Log Message:
-----------
A maintenance tag to make automatic releases on pearhub.org.

Added Paths:
-----------
    tags/0.9.2/
    tags/0.9.2/test/config.local.example.php
    tags/0.9.2/test/run-tests.php

Removed Paths:
-------------
    tags/0.9.2/test/run-tests.php

Property Changed:
----------------
    tags/0.9.2/test/


Property changes on: tags/0.9.2/test
___________________________________________________________________
Added: svn:ignore
   + config.local.php

Copied: tags/0.9.2/test/config.local.example.php (from rev 526, trunk/test/config.local.example.php)
(Continue reading)


Gmane