Changeset 1134

Show
Ignore:
Timestamp:
12/10/07 16:06:38 (8 months ago)
Author:
richi
Message:

stubbles setup: further step with ticket #98 & simplified equals task

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/resources/phing/build-stubbles.xml

    r1074 r1134  
    5757    <input propertyname="jsonrpc.enabled" promptChar="?" defaultValue="Y">Do you want to enable JSON-RPC functionality? (Y/N)</input> 
    5858    <if> 
    59       <or> 
    60         <equals arg1="${jsonrpc.enabled}" arg2="Y"/> 
    61         <equals arg1="${jsonrpc.enabled}" arg2="y"/> 
    62       </or> 
     59      <equals arg1="${jsonrpc.enabled}" arg2="Y" casesensitive="false"/> 
    6360      <then> 
    6461        <echo>----------------------------------</echo> 
     
    108105    <input propertyname="logging.enabled" promptChar="?" defaultValue="Y">Do you want to enable logging functionality? (Y/N)</input> 
    109106    <if> 
    110       <or> 
    111         <equals arg1="${logging.enabled}" arg2="Y"/> 
    112         <equals arg1="${logging.enabled}" arg2="y"/> 
    113       </or> 
     107      <equals arg1="${logging.enabled}" arg2="Y" casesensitive="false"/> 
    114108      <then> 
    115109        <echo>----------------------------------</echo> 
     
    133127    <input propertyname="variantmanager.enabled" promptChar="?" defaultValue="Y">Do you want to enable variant manager functionality? (Y/N)</input> 
    134128    <if> 
    135       <or> 
    136         <equals arg1="${variantmanager.enabled}" arg2="Y"/> 
    137         <equals arg1="${variantmanager.enabled}" arg2="y"/> 
    138       </or> 
     129      <equals arg1="${variantmanager.enabled}" arg2="Y" casesensitive="false"/> 
    139130      <then> 
    140131        <echo>-------------------------------------</echo> 
     
    173164    <input propertyname="cleanup.dist.confirm" promptChar="?" defaultValue="N">Are you sure, you want to cleanup all dist files? (Y/N)</input> 
    174165    <if> 
    175       <or> 
    176         <equals arg1="${cleanup.dist.confirm}" arg2="Y"/> 
    177         <equals arg1="${cleanup.dist.confirm}" arg2="y"/> 
    178       </or> 
     166      <equals arg1="${cleanup.dist.confirm}" arg2="Y" casesensitive="false" /> 
    179167      <then> 
    180168        <delete file="${project.basedir}/build-dist.xml"/> 
     
    243231    <chmod file="${stubbles.lib.path}" mode="${cache.permissions}"/> 
    244232    <chmod file="${stubbles.log.path}" mode="${cache.permissions}"/> 
     233    <!-- untested because lack of linxu system with php5 
     234    <chmod file="${stubbles.log.path}" mode="${cache.permissions}"> 
     235      <dirset dir="${stubbles.log.path}"> 
     236        <include name="**/*"/> 
     237      </dirset> 
     238    </chmod> 
     239    --> 
    245240    <chmod file="${stubbles.cache.path}" mode="${cache.permissions}"/> 
    246241    <chmod file="${stubbles.cache.path}/xml" mode="${cache.permissions}"/>