cvs: pear /Net_MPD package.xml /Net_MPD/Net MPD.php /Net_MPD/Net/MPD Admin.php Common.php Database.php Playback.php Playlist.php

[email protected] ("Graham Christensen")
Newsgroups php.pear.cvs
Message-ID <cvsitrebal1209846156@cvsserver>
itrebal		Sat May  3 20:22:36 2008 UTC

  Modified files:              
    /pear/Net_MPD	package.xml 
    /pear/Net_MPD/Net	MPD.php 
    /pear/Net_MPD/Net/MPD	Admin.php Common.php Database.php 
                         	Playback.php Playlist.php 
  Log:
  Updated to the MIT license; fixed bug #11495
itrebal-20080503202236.txt (text/plain, 16.6 KB)
http://cvs.php.net/viewvc.cgi/pear/Net_MPD/package.xml?r1=1.15&r2=1.16&diff_format=u
Index: pear/Net_MPD/package.xml
diff -u pear/Net_MPD/package.xml:1.15 pear/Net_MPD/package.xml:1.16
--- pear/Net_MPD/package.xml:1.15	Fri Feb 23 00:36:42 2007
+++ pear/Net_MPD/package.xml	Sat May  3 20:22:36 2008
@@ -12,23 +12,21 @@
   <name>Graham Christensen</name>
   <user>itrebal</user>
   <email>[email protected]</email>
-  <active>yes</active>
+  <active>no</active>
  </lead>
- <date>2007-02-22</date>
- <time>18:19:52</time>
+ <date>2008-05-03</date>
+ <time>16:04:00</time>
  <version>
-  <release>1.0.1</release>
-  <api>1.0.1</api>
+  <release>1.0.2</release>
+  <api>1.0.2</api>
  </version>
  <stability>
   <release>stable</release>
   <api>stable</api>
  </stability>
- <license>PHP License 3.01</license>
- <notes>- Fixed bug #9896; Ping now returns true
-- Fixed bug #9917; Output from Admin::getOutputs() is now accurate,
-- Fixed bug #10041; update_id now parsed.
-- Fixed bug #10022 Filename bug fixed.
+ <license>MIT License</license>
+ <notes>- Changed to MIT License
+- Fixed bug #11495
  </notes>
  <contents>
   <dir name="/">
@@ -140,5 +138,19 @@
 - Fixed bug #10022 Filename bug fixed.
    </notes>
   </release>
+  <release>
+	<version>
+		<release>1.0.2</release>
+		<api>1.0.2</api>
+	</version>
+	<stability>
+		<release>stable</stable>
+		<api>stable</api>
+	</stability>
+	<date>2008-05-03</date>
+	<license>MIT License</license>
+	<notes>-Changed to MIT License
+- Fixed Bug #11495</notes>
+	</release>
  </changelog>
 </package>
http://cvs.php.net/viewvc.cgi/pear/Net_MPD/Net/MPD.php?r1=1.4&r2=1.5&diff_format=u
Index: pear/Net_MPD/Net/MPD.php
diff -u pear/Net_MPD/Net/MPD.php:1.4 pear/Net_MPD/Net/MPD.php:1.5
--- pear/Net_MPD/Net/MPD.php:1.4	Thu Dec 14 11:25:42 2006
+++ pear/Net_MPD/Net/MPD.php	Sat May  3 20:22:36 2008
@@ -6,17 +6,30 @@
  *
  * PHP Version 5
  *
- * LICENSE: This source file is subject to version 3.01 of the PHP license
- * that is available thorugh the world-wide-web at the following URI:
- * http://www.php.net/license/3_01.txt. If you did not receive a copy of
- * the PHP License and are unable to obtain it through the web, please
- * send a note to [email protected] so we can mail you a copy immediately.
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
+ * deal in the Software without restriction, including without limitation the
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ *
  *
  * @category  Networking
  * @package   Net_MPD
  * @author    Graham Christensen <[email protected]>
  * @copyright 2006 Graham Christensen
- * @license   http://www.php.net/license/3_01.txt
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT License
  * @version   CVS: $ID:$
  */
 
@@ -34,7 +47,7 @@
  * @package   Net_MPD
  * @author    Graham Christensen <[email protected]>
  * @copyright 2006 Graham Christensen
- * @license   http://www.php.net/license/3_01.txt
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT License
  * @version   CVS: $ID:$
  */
 class Net_MPD
@@ -116,4 +129,4 @@
         return true;
     }
 }
-?>
\ No newline at end of file
+?>
http://cvs.php.net/viewvc.cgi/pear/Net_MPD/Net/MPD/Admin.php?r1=1.6&r2=1.7&diff_format=u
Index: pear/Net_MPD/Net/MPD/Admin.php
diff -u pear/Net_MPD/Net/MPD/Admin.php:1.6 pear/Net_MPD/Net/MPD/Admin.php:1.7
--- pear/Net_MPD/Net/MPD/Admin.php:1.6	Thu Dec 14 11:25:42 2006
+++ pear/Net_MPD/Net/MPD/Admin.php	Sat May  3 20:22:36 2008
@@ -5,11 +5,23 @@
  *
  * PHP Version 5
  *
- * LICENSE: This source file is subject to version 3.01 of the PHP license
- * that is available thorugh the world-wide-web at the following URI:
- * http://www.php.net/license/3_01.txt. If you did not receive a copy of
- * the PHP License and are unable to obtain it through the web, please
- * send a note to [email protected] so we can mail you a copy immediately.
+  * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
+ * deal in the Software without restriction, including without limitation the
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
  *
  *
  *
@@ -22,7 +34,7 @@
  * @package   Net_MPD
  * @author    Graham Christensen <[email protected]>
  * @copyright 2006 Graham Christensen
- * @license   http://www.php.net/license/3_01.txt
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT License
  * @version   CVS: $ID:$
  */
 class Net_MPD_Admin extends Net_MPD_Common
@@ -92,4 +104,4 @@
         return true;
     }
 }
-?>
\ No newline at end of file
+?>
http://cvs.php.net/viewvc.cgi/pear/Net_MPD/Net/MPD/Common.php?r1=1.10&r2=1.11&diff_format=u
Index: pear/Net_MPD/Net/MPD/Common.php
diff -u pear/Net_MPD/Net/MPD/Common.php:1.10 pear/Net_MPD/Net/MPD/Common.php:1.11
--- pear/Net_MPD/Net/MPD/Common.php:1.10	Fri Feb 23 00:29:54 2007
+++ pear/Net_MPD/Net/MPD/Common.php	Sat May  3 20:22:36 2008
@@ -4,18 +4,30 @@
  * Music Player Daemon API
  *
  * PHP Version 5
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
+ * deal in the Software without restriction, including without limitation the
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE. 
  *
- * LICENSE: This source file is subject to version 3.01 of the PHP license
- * that is available thorugh the world-wide-web at the following URI:
- * http://www.php.net/license/3_01.txt. If you did not receive a copy of
- * the PHP License and are unable to obtain it through the web, please
- * send a note to [email protected] so we can mail you a copy immediately.
  *
  * @category  Networking
  * @package   Net_MPD
  * @author    Graham Christensen <[email protected]>
  * @copyright 2006 Graham Christensen
- * @license   http://www.php.net/license/3_01.txt
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT License
  * @version   CVS: $ID:$
  */
 
@@ -29,7 +41,7 @@
  * @package   Net_MPD
  * @author    Graham Christensen <[email protected]>
  * @copyright 2006 Graham Christensen
- * @license   http://www.php.net/license/3_01.txt
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT License
  * @version   CVS: $ID:$
  */
 class Net_MPD_Common
@@ -105,7 +117,7 @@
                 }
             }
             if (!is_null($this->connection_params['password'])) {
-                if ($this->runCommand('password', $this->connection_params['password']) == self::ACK_PASSWORD) {
+                if ($this->runCommand('password', $this->connection_params['password']) === self::ACK_PASSWORD) {
                     throw new PEAR_Exception('Password invalid.', self::ACK_PASSWORD);
                 }
             }
@@ -476,4 +488,4 @@
 	return $status['status'];
     }
 }
-?>
\ No newline at end of file
+?>
http://cvs.php.net/viewvc.cgi/pear/Net_MPD/Net/MPD/Database.php?r1=1.7&r2=1.8&diff_format=u
Index: pear/Net_MPD/Net/MPD/Database.php
diff -u pear/Net_MPD/Net/MPD/Database.php:1.7 pear/Net_MPD/Net/MPD/Database.php:1.8
--- pear/Net_MPD/Net/MPD/Database.php:1.7	Thu Feb 22 23:38:36 2007
+++ pear/Net_MPD/Net/MPD/Database.php	Sat May  3 20:22:36 2008
@@ -5,17 +5,29 @@
  *
  * PHP Version 5
  *
- * LICENSE: This source file is subject to version 3.01 of the PHP license
- * that is available thorugh the world-wide-web at the following URI:
- * http://www.php.net/license/3_01.txt. If you did not receive a copy of
- * the PHP License and are unable to obtain it through the web, please
- * send a note to [email protected] so we can mail you a copy immediately.
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
+ * deal in the Software without restriction, including without limitation the
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
  *
  * @category  Networking
  * @package   Net_MPD
  * @author    Graham Christensen <[email protected]>
  * @copyright 2006 Graham Christensen
- * @license   http://www.php.net/license/3_01.txt
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT License
  * @version   CVS: $ID:$
  */
 
@@ -28,7 +40,7 @@
  * @package   Net_MPD
  * @author    Graham Christensen <[email protected]>
  * @copyright 2006 Graham Christensen
- * @license   http://www.php.net/license/3_01.txt
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT License
  * @version   CVS: $ID:$
  */
 class Net_MPD_Database extends Net_MPD_Common
@@ -123,4 +135,4 @@
 	return $this->runCommand('lsinfo', $dir);
     }
 }
-?>
\ No newline at end of file
+?>
http://cvs.php.net/viewvc.cgi/pear/Net_MPD/Net/MPD/Playback.php?r1=1.6&r2=1.7&diff_format=u
Index: pear/Net_MPD/Net/MPD/Playback.php
diff -u pear/Net_MPD/Net/MPD/Playback.php:1.6 pear/Net_MPD/Net/MPD/Playback.php:1.7
--- pear/Net_MPD/Net/MPD/Playback.php:1.6	Thu Dec 14 11:25:42 2006
+++ pear/Net_MPD/Net/MPD/Playback.php	Sat May  3 20:22:36 2008
@@ -5,17 +5,29 @@
  *
  * PHP Version 5
  *
- * LICENSE: This source file is subject to version 3.01 of the PHP license
- * that is available thorugh the world-wide-web at the following URI:
- * http://www.php.net/license/3_01.txt. If you did not receive a copy of
- * the PHP License and are unable to obtain it through the web, please
- * send a note to [email protected] so we can mail you a copy immediately.
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
+ * deal in the Software without restriction, including without limitation the
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
  *
  * @category  Networking
  * @package   Net_MPD
  * @author    Graham Christensen <[email protected]>
  * @copyright 2006 Graham Christensen
- * @license   http://www.php.net/license/3_01.txt
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT License
  * @version   CVS: $ID:$
  */
 /**
@@ -27,7 +39,7 @@
  * @package   Net_MPD
  * @author    Graham Christensen <[email protected]>
  * @copyright 2006 Graham Christensen
- * @license   http://www.php.net/license/3_01.txt
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT License
  * @version   CVS: $ID:$
  */
 class Net_MPD_Playback extends Net_MPD_Common
@@ -210,4 +222,4 @@
 	return true;
     }
 }
-?>
\ No newline at end of file
+?>
http://cvs.php.net/viewvc.cgi/pear/Net_MPD/Net/MPD/Playlist.php?r1=1.6&r2=1.7&diff_format=u
Index: pear/Net_MPD/Net/MPD/Playlist.php
diff -u pear/Net_MPD/Net/MPD/Playlist.php:1.6 pear/Net_MPD/Net/MPD/Playlist.php:1.7
--- pear/Net_MPD/Net/MPD/Playlist.php:1.6	Thu Dec 14 11:25:42 2006
+++ pear/Net_MPD/Net/MPD/Playlist.php	Sat May  3 20:22:36 2008
@@ -3,16 +3,30 @@
 /**
  * MPD Interaction API
  *
- * Net_MPD deals with socket interaction with MPD to ease the
- * use of MPD in web applications.
+ * PHP Version  5
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
+ * deal in the Software without restriction, including without limitation the
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
  *
- * PHP Version 5
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
  *
  * @package   Net_MPD
  * @category  Networking
  * @author    Graham Christensen <[email protected]>
  * @copyright 2006 Graham Christensen
- * @license   PHP License 3.01
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT License
  * @version   CVS: $ID:$
  */
 
@@ -25,7 +39,7 @@
  * @package   Net_MPD
  * @author    Graham Christensen <[email protected]>
  * @copyright 2006 Graham Christensen
- * @license   http://www.php.net/license/3_01.txt
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT License
  * @vers
  */
 class Net_MPD_Playlist extends Net_MPD_Common
@@ -273,4 +287,4 @@
 	return true;
     }
 }
-?>
\ No newline at end of file
+?>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.