Overview
Comment: | By default, prevent the 'getPackageFile' procedure from returning the content of a Fossil error page. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | pending |
Files: | files | file ages | folders |
SHA1: |
778b91ce22b3ea15feedf96330c73221 |
User & Date: | mistachkin on 2020-03-25 17:14:01 |
Other Links: | branch diff | manifest | tags |
Context
2020-03-25
| ||
17:21 | Begin work on modularization of the 'checkForHigherVersion' procedure. check-in: 30f6328ac1 user: mistachkin tags: pending | |
17:14 | By default, prevent the 'getPackageFile' procedure from returning the content of a Fossil error page. check-in: 778b91ce22 user: mistachkin tags: pending | |
2020-03-24
| ||
23:46 | More fixes to the 'probeForOpenPgpInstallation' procedure. check-in: 3982962147 user: mistachkin tags: pending | |
Changes
Modified client/1.0/neutral/pkgd.eagle from [a8520a0f88] to [33e5121139].
︙ | |||
1261 1262 1263 1264 1265 1266 1267 | 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 | - + + - + | # # NOTE: This procedure issues a request to an HTTP(S) server. It returns # the raw response data verbatim. It may raise a script error. It # will always use the currently configured HTTP(S) login cookie, if # any; therefore, it should really only be used for requests to the # package file server. The uri argument is the fully qualified URI |
︙ | |||
1301 1302 1303 1304 1305 1306 1307 | 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 | - + - + - + + + + + + + + + + + + | if {[info exists loginCookie] && [llength $loginCookie] == 2} then { set script [object create String { if {[methodName ToString] eq "GetWebRequest"} then { webRequest Headers.Add Cookie [join $loginCookie =] } }] |
︙ |