Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | The "smhdr" query parameter on the finfo pages gives a more compact header without the detailed object descriptions. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
af30a9ab4693f0dc143d3367f61c9374 |
| User & Date: | drh 2012-02-06 17:47:19.313 |
Context
|
2012-02-06
| ||
| 18:18 | Fix the SSH transport method so that it allows everything, without regard to user permissions. ... (check-in: a928c89cb1 user: drh tags: trunk) | |
| 17:47 | The "smhdr" query parameter on the finfo pages gives a more compact header without the detailed object descriptions. ... (check-in: af30a9ab46 user: drh tags: trunk) | |
| 16:03 | Make the diff colors darker by default. ... (check-in: ea4b7cd68c user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
1120 1121 1122 1123 1124 1125 1126 |
g.zTop, P("v1"), P("v2"));
}else{
style_submenu_element("Unified Diff", "udiff",
"%s/fdiff?v1=%T&v2=%T&sbs=0",
g.zTop, P("v1"), P("v2"));
}
| > > > > > | | | > | | > | 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 |
g.zTop, P("v1"), P("v2"));
}else{
style_submenu_element("Unified Diff", "udiff",
"%s/fdiff?v1=%T&v2=%T&sbs=0",
g.zTop, P("v1"), P("v2"));
}
if( P("smhdr")!=0 ){
@ <h2>Differences From Artifact
@ <a href="%s(g.zTop)/artifact/%S(zV1)">[%S(zV1)]</a> To
@ <a href="%s(g.zTop)/artifact/%S(zV2)">[%S(zV2)]</a>.</h2>
}else{
@ <h2>Differences From
@ Artifact <a href="%s(g.zTop)/artifact/%S(zV1)">[%S(zV1)]</a>:</h2>
object_description(v1, 0, 0);
@ <h2>To Artifact
@ <a href="%s(g.zTop)/artifact/%S(zV2)">[%S(zV2)]</a>:</h2>
object_description(v2, 0, 0);
}
@ <hr />
@ <div class="%s(zStyle)">
@ %s(blob_str(&diff))
@ </div>
blob_reset(&diff);
style_footer();
}
|
| ︙ | ︙ |