Differences From Artifact [7a8370c8ce]:
- File src/zip.c — part of check-in [417dd898ab] at 2008-08-13 11:57:17 on branch trunk — Allow an alternative URL syntax for downloading artifacts via the <tt>/zip</tt> page. The original way is: <verbatim> http://localhost:8080/zip/fa6e9930177e84ce089b30ad768c454a012364f7.zip </verbatim> which will store the artifact in the file <tt>a6e9930177e84ce089b30ad768c454a012364f7.zip</tt>. Alternatively it is now possible to download the artifact in e.g. the file <tt>fossil.zip</tt> via the URL: <verbatim> http://localhost:8080/zip/fossil.zip?rid=fa6e9930177e84ce089b30ad768c454a012364f7 </verbatim> (user: hintze size: 9630)
To Artifact [c82f467b68]:
- File src/zip.c — part of check-in [81a96aadf3] at 2008-08-17 11:37:15 on branch trunk — Change CGI parameter name <tt>rid</tt> to <tt>uuid</tt> for the <tt>/zip</tt> URL. (user: cle size: 9631) [more...]
︙ | |||
357 358 359 360 361 362 363 | 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | - + | int nName, nRid; Blob zip; login_check_credentials(); if( !g.okZip && (!g.okRead || !g.okHistory) ){ login_needed(); return; } zName = mprintf("%s", PD("name","")); nName = strlen(zName); |
︙ |