162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
proc uriEscape { name value } {
if {[isEagle]} then {
return [appendArgs \
[uri escape uri $name] = [uri escape uri $value]]
} else {
package require http 2.0
return [http::formatQuery $name $value]
}
}
#
# NOTE: This procedure returns the root directory where any packages that
# are downloaded should be saved to permanent storage for subsequent
# use. There are no arguments.
|
|
|
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
proc uriEscape { name value } {
if {[isEagle]} then {
return [appendArgs \
[uri escape uri $name] = [uri escape uri $value]]
} else {
package require http 2.0
return [::http::formatQuery $name $value]
}
}
#
# NOTE: This procedure returns the root directory where any packages that
# are downloaded should be saved to permanent storage for subsequent
# use. There are no arguments.
|