diff --git a/docs/manual/CoreTasks/property.html b/docs/manual/CoreTasks/property.html index a3c53156c..7e19368bb 100644 --- a/docs/manual/CoreTasks/property.html +++ b/docs/manual/CoreTasks/property.html @@ -10,7 +10,7 @@

Property

Description

Sets a property (by name and value), or set of properties (from file or -resource) in the project.

+resource) in the project. Properties are case sensitive.

When a property was set by the user, or was a property in a parent project (that started this project with the ant task), then this property cannot be set, and will be ignored. This means that properties set @@ -90,7 +90,11 @@ href="../using.html#built-in-props">here.

allow access of environment variables through "myenv.PATH" and "myenv.TERM". This functionality is currently only implemented on select platforms. Feel free to send patches to increase the number of platforms - this functionality is supported on ;) + this functionality is supported on ;).
+ Note also that properties are case sensitive, even if the + environment variables on your operating system are not, e.g. it + will be ${env.Path} not ${env.PATH} on Windows 2000. + classpath diff --git a/docs/manual/using.html b/docs/manual/using.html index 1d65532ed..7eee5a62b 100644 --- a/docs/manual/using.html +++ b/docs/manual/using.html @@ -190,7 +190,7 @@ task instances at all, only proxies.

Properties

A project can have a set of properties. These might be set in the buildfile by the property task, or might be set outside Ant. A -property has a name and a value. Properties may be used in the value of +property has a name and a value, the name is case sensitive. Properties may be used in the value of task attributes. This is done by placing the property name between "${" and "}" in the attribute value. For example,