Changeset 1134
- Timestamp:
- 12/10/07 16:06:38 (8 months ago)
- Files:
-
- trunk/src/main/resources/phing/build-stubbles.xml (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/resources/phing/build-stubbles.xml
r1074 r1134 57 57 <input propertyname="jsonrpc.enabled" promptChar="?" defaultValue="Y">Do you want to enable JSON-RPC functionality? (Y/N)</input> 58 58 <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"/> 63 60 <then> 64 61 <echo>----------------------------------</echo> … … 108 105 <input propertyname="logging.enabled" promptChar="?" defaultValue="Y">Do you want to enable logging functionality? (Y/N)</input> 109 106 <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"/> 114 108 <then> 115 109 <echo>----------------------------------</echo> … … 133 127 <input propertyname="variantmanager.enabled" promptChar="?" defaultValue="Y">Do you want to enable variant manager functionality? (Y/N)</input> 134 128 <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"/> 139 130 <then> 140 131 <echo>-------------------------------------</echo> … … 173 164 <input propertyname="cleanup.dist.confirm" promptChar="?" defaultValue="N">Are you sure, you want to cleanup all dist files? (Y/N)</input> 174 165 <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" /> 179 167 <then> 180 168 <delete file="${project.basedir}/build-dist.xml"/> … … 243 231 <chmod file="${stubbles.lib.path}" mode="${cache.permissions}"/> 244 232 <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 --> 245 240 <chmod file="${stubbles.cache.path}" mode="${cache.permissions}"/> 246 241 <chmod file="${stubbles.cache.path}/xml" mode="${cache.permissions}"/>
