Differences From Artifact [31cda8fc34]:
- File src/url.c — part of check-in [c19f34cb69] at 2012-08-31 20:46:09 on branch trunk — Revert change [208d67675c]. The policy is to keep the Fossil source code ASCII even if Fossil itself is able to handle non-ASCII source files. Furthermore, the [208d67675c] change broken things. Also backout change [34fcb9634e] since it complicates the C code with unnecessary backslash characters in order to changes single-quotes to double-quotes in the generated HTML and Javascript, which is pointless. (user: drh size: 11400) [more...]
To Artifact [c8a7221422]:
- File src/url.c — part of check-in [35bfedef3e] at 2012-11-08 13:44:16 on branch ticket-5ff2043c96 — Always HTML-encode the href attribute of <a> elements. This check-in simplifies and fixes double-frees in the previous. Ticket [5ff2043c9668] (user: drh size: 11396) [more...]
| ︙ | |||
350 351 352 353 354 355 356 | 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | - + |
if( zName2 && fossil_strcmp(zName2,p->azName[i])==0 ){
zName2 = 0;
z = zValue2;
if( z==0 ) continue;
}
blob_appendf(&p->url, "%s%s", zSep, p->azName[i]);
if( z && z[0] ) blob_appendf(&p->url, "=%T", z);
|
| ︙ |