Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Remove a superfluous ';' from the end of artifact listings. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
a48c661d9a06a5eea05becc8bf8b8e9c |
| User & Date: | drh 2011-02-25 17:49:55.267 |
Context
|
2011-02-25
| ||
| 17:59 | Update the file format documentation to make it clear that a Z-card is required on all artifacts. ... (check-in: 51c3f3b670 user: drh tags: trunk) | |
| 17:49 | Remove a superfluous ';' from the end of artifact listings. ... (check-in: a48c661d9a user: drh tags: trunk) | |
| 17:40 | Add the new crnl-glob setting which defines files for which it is OK to have CRNL line endings. Windows projects on which this is preferred can set the crnl-glob pattern to '*'. ... (check-in: 046658848c user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
1272 1273 1274 1275 1276 1277 1278 |
if( zMime==0 ){
const char *zLn = P("ln");
const char *z = blob_str(&content);
if( zLn ){
output_text_with_line_numbers(z, zLn);
}else{
@ <pre>
| | | 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 |
if( zMime==0 ){
const char *zLn = P("ln");
const char *z = blob_str(&content);
if( zLn ){
output_text_with_line_numbers(z, zLn);
}else{
@ <pre>
@ %h(z)
@ </pre>
}
}else if( strncmp(zMime, "image/", 6)==0 ){
@ <img src="%s(g.zTop)/raw?name=%s(zUuid)&m=%s(zMime)"></img>
}else{
@ <i>(file is %d(blob_size(&content)) bytes of binary data)</i>
}
|
| ︙ | ︙ |