Fossil

Changes On Branch andygoth-restore-related
Login

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

Changes In Branch andygoth-restore-related Excluding Merge-Ins

This is equivalent to a diff from a9027e7d10 to 67412fbb35

2019-11-28
10:23
Restore operation of "related" and "tag filter" widgets check-in: 820d70512a user: drh tags: trunk
07:54
build.wiki: added a section on building a static binary using Docker, adapted from https://fossil-scm.org/forum/forumpost/5dd2d61e5f. check-in: 942be4c894 user: stephan tags: trunk
2019-11-23
21:46
Improve comment to explain why the "r" query is being rewritten Closed-Leaf check-in: 67412fbb35 user: andygoth tags: andygoth-restore-related
20:55
Show filter description even when "r" is used on a branch that has no wiki check-in: 2a5af7076b user: andygoth tags: andygoth-restore-related
20:54
Restore operation of "related" and "tag filter" widgets, see forum thread [https://fossil-scm.org/forum/forumpost/2d5fe3dedc] for discussion check-in: e2581e6db7 user: andygoth tags: andygoth-restore-related
2019-11-20
15:29
Update the built-in SQLite to the latest 3.31.0 alpha version as a beta-test for SQLite. check-in: a9027e7d10 user: drh tags: trunk
15:25
Add support for Markdown in the default ticket configuration, and make Markdown the default choice for markup. check-in: 16fb915279 user: drh tags: trunk

Changes to src/timeline.c.

1680
1681
1682
1683
1684
1685
1686
1687

1688



1689
1690
1691
1692
1693
1694
1695
1680
1681
1682
1683
1684
1685
1686

1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698







-
+

+
+
+







      " WHERE mlink.fid=(SELECT rid FROM blob WHERE uuid LIKE '%q%%')"
      "   AND event.objid=mlink.mid"
      " ORDER BY event.mtime LIMIT 1",
      P("cf")
    );
  }

  /* r=TAG works like a combination of t=TAG & rel */
  /* Convert r=TAG to t=TAG&rel in order to populate the UI style widgets. */
  if( zBrName && !related ){
    cgi_delete_query_parameter("r");
    cgi_set_query_parameter("t", zBrName);
    cgi_set_query_parameter("rel", "1");
    zTagName = zBrName;
    related = 1;
    zType = "ci";
  }

  /* Ignore empty tag query strings. */
  if( zTagName && !*zTagName ){
2397
2398
2399
2400
2401
2402
2403


2404
2405
2406
2407
2408
2409
2410
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415







+
+







    desc.aData[0] = fossil_toupper(desc.aData[0]);
  }
  if( zBrName ){
    if( !PB("nowiki")
     && wiki_render_associated("branch", zBrName, WIKIASSOC_ALL)
    ){
      @ <div class="section">%b(&desc)</div>
    } else{
      @ <h2>%b(&desc)</h2>
    }
    style_submenu_element("Diff", "%R/vdiff?branch=%T", zBrName);
  }else
  if( zTagName
   && matchStyle==MS_EXACT
   && zBrName==0
   && !PB("nowiki")