Changeset 109 for branches/2.2/docs
- Timestamp:
- 08/11/06 12:30:06 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.2/docs/phing_guide/book/chapters/appendixes/AppendixB-CoreTasks.html
r108 r109 926 926 on input from the console (or other Reader).</p> 927 927 <h3>Example</h3> 928 <pre><echo>HTML pages installing to: ${documentRoot}</echo> 928 <pre> 929 <!-- Getting string input --> 930 <echo>HTML pages installing to: ${documentRoot}</echo> 929 931 <echo>PHP classes installing to: ${servletDirectory}</echo> 930 932 … … 934 936 935 937 <echo>HTML pages installed to ${documentRoot}</echo> 936 <echo>PHP classes installed to ${servletDirectory}</echo></pre> 938 <echo>PHP classes installed to ${servletDirectory}</echo> 939 940 <!-- Having the user choose from a set of valid choices --> 941 <echo>Choose a valid option:</echo> 942 943 <input propertyname="optionsChoice" validargs="foo,bar,bob"> 944 Which item would you like to use 945 </input> 946 </pre> 937 947 <h3>Attributes</h3> 938 948 <table> … … 972 982 <td>String</td> 973 983 <td> The prompt character to follow prompt text.</td> 984 <td>n/a</td> 985 <td>No</td> 986 </tr> 987 <tr> 988 <td>validArgs</td> 989 <td>String</td> 990 <td>Comma-separated list of valid choices the user must supply. If used, one of these options must be chosen.</td> 974 991 <td>n/a</td> 975 992 <td>No</td>
