Fossil

Changes On Branch 4937bc9af77a0d48
Login

Changes On Branch 4937bc9af77a0d48

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Changes In Branch mistake Through [4937bc9af7] Excluding Merge-Ins

This is equivalent to a diff from 6d4cd32921 to 4937bc9af7

2025-03-07
19:01
Add the title-test.md document for testing Fossil's ability to render document titles with unusual characters. ... (check-in: 66a78a8a2e user: drh tags: trunk)
18:46
In /forumpost and /forumthread, use %h instead of %s when rendering a thread's title. (Edit: moving out of the way to reevaluate against more inputs.) ... (Closed-Leaf check-in: 4937bc9af7 user: stephan tags: mistake)
18:39
Mention the "--proxy PROXY" option in the help text for all command that support it. ... (check-in: 6d4cd32921 user: mgagnon tags: trunk)
17:52
Improvements to the title on the /help webpage. ... (check-in: e28cc7373a user: drh tags: trunk)

Changes to src/forum.c.
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
    " substr(event.comment,instr(event.comment,':')+2)"
    " FROM forumpost, event"
    " WHERE event.objid=forumpost.fpid"
    "   AND forumpost.fpid=%d;",
    fpid
  );
  style_set_current_feature("forum");
  style_header("%s%s", zThreadTitle, *zThreadTitle ? "" : "Forum");
  fossil_free(zThreadTitle);
  if( mode!=FD_CHRONO ){
    style_submenu_element("Chronological", "%R/%s/%s?t=c%s%s", g.zPath, zName,
        bUnf ? "&unf" : "", bHist ? "&hist" : "");
  }
  if( mode!=FD_HIER ){
    style_submenu_element("Hierarchical", "%R/%s/%s?t=h%s%s", g.zPath, zName,







|







1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
    " substr(event.comment,instr(event.comment,':')+2)"
    " FROM forumpost, event"
    " WHERE event.objid=forumpost.fpid"
    "   AND forumpost.fpid=%d;",
    fpid
  );
  style_set_current_feature("forum");
  style_header("%h%s", zThreadTitle, *zThreadTitle ? "" : "Forum");
  fossil_free(zThreadTitle);
  if( mode!=FD_CHRONO ){
    style_submenu_element("Chronological", "%R/%s/%s?t=c%s%s", g.zPath, zName,
        bUnf ? "&unf" : "", bHist ? "&hist" : "");
  }
  if( mode!=FD_HIER ){
    style_submenu_element("Hierarchical", "%R/%s/%s?t=h%s%s", g.zPath, zName,