Development

Changeset 6909

You must first sign up to be able to contribute.

Changeset 6909

Show
Ignore:
Timestamp:
01/03/08 07:46:15 (5 years ago)
Author:
dwhittle
Message:

dwhittle: updated dwCryptPlugin, cleaned up phpdoc released 1.0

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/dwCryptPlugin/LICENSE

    r997 r6909  
    1 Copyright (c) 2004-2006 Dustin Whittl
     1The MIT Licens
    22 
    3 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: 
     3Permission is hereby granted, free of charge, to any person obtaining a copy 
     4of this software and associated documentation files (the "Software"), to deal 
     5in the Software without restriction, including without limitation the rights 
     6to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
     7copies of the Software, and to permit persons to whom the Software is 
     8furnished to do so, subject to the following conditions: 
    49 
    5 The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 
     10The above copyright notice and this permission notice shall be included in 
     11all copies or substantial portions of the Software. 
    612 
    7 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. 
     13THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
     14IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
     15FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
     16AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
     17LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
     18OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
     19THE SOFTWARE. 
  • plugins/dwCryptPlugin/README

    r2860 r6909  
    1 = sfCryptPlugin plugin = 
     1= dwCryptPlugin = 
    22 
    3 The `sfCryptPlugin` provides abstraction for the mcrypt library. 
     3The `dwCryptPlugin` provides abstraction for the mcrypt library. 
    44 
    55== Installation == 
    66 
    77  * Install the plugin 
    8    
     8 
    99  {{{ 
    10     symfony plugin-install http://plugins.symfony-project.com/sfCryptPlugin 
     10    symfony plugin-install http://plugins.symfony-project.org/dwCryptPlugin 
    1111  }}} 
    1212 
  • plugins/dwCryptPlugin/lib/sfCrypt.class.php

    r2520 r6909  
    1515 * This class provides an abstraction layer to the PHP module mcrypt. Provides encryption/decryption. 
    1616 * 
    17  * @package    symfony.runtime.addon 
     17 * @package    symfony 
     18 * @subpackage dwCryptPlugin 
    1819 * @author     Dustin Whittle <dustin.whittle@symfony-project.com> 
    1920 * @version    SVN: $Id$ 
    2021 */ 
    21  
    2222class sfCrypt 
    2323{ 
  • plugins/dwCryptPlugin/package.xml

    r2888 r6909  
    11<?xml version="1.0" encoding="UTF-8"?> 
    22<package packagerversion="1.4.1" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd"> 
    3  <name>sfCryptPlugin</name> 
    4  <channel>pear.symfony-project.com</channel> 
    5  <summary>sfCrypt Plugin</summary> 
    6  <description>symfony encryption plugin with support for mcrypt or PEAR Crypt_Blowfish.</description> 
     3 <name>dwCryptPlugin</name> 
     4 <channel>pear.symfony-project.org</channel> 
     5 <summary>dwCryptPlugin</summary> 
     6 <description>dwCryptPlugin with support for mcrypt or PEAR Crypt_Blowfish.</description> 
    77 <lead> 
    88  <name>Dustin Whittle</name> 
    99  <user>dwhittle</user> 
    10   <email>dustin.whittle@symfony-project.com</email> 
     10  <email>dustin.whittle@symfony-project.org</email> 
    1111  <active>yes</active> 
    1212 </lead> 
    13  <date>2006-11-29</date> 
     13 <date>2008-01-01</date> 
    1414 <version> 
    15    <release>1.0.3</release> 
    16    <api>1.0.2</api> 
     15   <release>1.0.0</release> 
     16   <api>1.0.0</api> 
    1717 </version> 
    1818 <stability> 
     
    2020  <api>stable</api> 
    2121 </stability> 
    22  <license uri="http://www.symfony-project.com/license">MIT license</license> 
     22 <license uri="http://www.symfony-project.org/content/license">MIT license</license> 
    2323 <notes>-</notes> 
    2424 <contents> 
     
    4747   <package> 
    4848    <name>symfony</name> 
    49     <channel>pear.symfony-project.com</channel> 
     49    <channel>pear.symfony-project.org</channel> 
    5050    <min>1.0.0</min> 
    51     <max>1.1.0</max> 
    52     <exclude>1.1.0</exclude> 
     51    <max>1.2.0</max> 
    5352   </package> 
    5453  </required> 
  • plugins/dwCryptPlugin/test/sfCryptTest.php

    r2520 r6909  
    11<?php 
     2 
     3/* 
     4 * @package    symfony 
     5 * @subpackage dwCryptPlugin 
     6 * @author     Dustin Whittle <dustin.whittle@symfony-project.com> 
     7 * @version    SVN: $Id$ 
     8 */ 
    29 
    310require_once(dirname(__FILE__).'/../../../test/bootstrap/unit.php');