Show
Ignore:
Timestamp:
08/14/05 13:15:06 (3 years ago)
Author:
schst
Message:

Prepared first release candidate

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/autopackage.php

    r321 r323  
    101101  - Fixed bug with spaces in attribute values (schst) 
    102102  - Added value-namespace support via the namespace attribute of the <patForms:Form/> tag (schst) 
     103  - Added event support via attributes of the <patForms:Form/> tag (schst) 
    103104EOT; 
    104105 
     
    120121    'license'           => 'LGPL', 
    121122    'filelistgenerator' => 'file', 
    122     'ignore'            => array( 'package.php', 'autopackage.php', 'package.xml', '.cvsignore' ), 
     123    'ignore'            => array( 'package.php', 'autopackage.php', 'package.xml', '.cvsignore', '.svn', 'cache', 'rfcs' ), 
    123124    'notes'             => $notes, 
    124125    'simpleoutput'      => true, 
     
    137138} 
    138139 
     140$package->detectDependencies(); 
     141 
    139142$package->addMaintainer('argh', 'lead', 'Sebastian Mordziol', 'argh@php-tools.net'); 
    140143$package->addMaintainer('schst', 'lead', 'Stephan Schmidt', 'schst@php-tools.net'); 
     
    144147 
    145148$package->addDependency('patError', '', 'has', 'pkg', false); 
    146 $package->addDependency('php', '4.2.0', 'ge', 'php', false); 
     149$package->addDependency('php', '4.3.0', 'ge', 'php', false); 
    147150 
    148151// Used by Storage_DB 
     
    157160 
    158161// Propel requires PHP5 
    159 $package->addDependency('php', '5.0.0', 'ge', 'php', true); 
     162//$package->addDependency('php', '5.0.0', 'ge', 'php', true); 
    160163 
    161164$result = $package->writePackageFile();