Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch controlInfoLink Excluding Merge-Ins
This is equivalent to a diff from 7f3379f3a9 to bcf41d31ca
2012-10-05
| ||
12:10 | Merge the controlInfoLink branch into trunk. check-in: 71c3b67a79 user: drh tags: trunk | |
08:28 | Simplify internal link generation for control artifacts to avoid using escaped HTML entities. Closed-Leaf check-in: bcf41d31ca user: mistachkin tags: controlInfoLink | |
2012-10-03
| ||
19:54 | Integration work for the markdown engine provided by Natacha Porté. check-in: d38c6eef06 user: mistachkin tags: markdown | |
14:58 | Import the latest SQLite core from upstream. check-in: 7f3379f3a9 user: drh tags: trunk | |
2012-10-02
| ||
23:01 | Enable building with the TCL stubs library and then loading the main TCL library at run-time, and only if needed. check-in: 25f7fa1157 user: drh tags: trunk | |
Changes to src/manifest.c.
1877 1877 int branchMove = 0; 1878 1878 blob_zero(&comment); 1879 1879 for(i=0; i<p->nTag; i++){ 1880 1880 zUuid = p->aTag[i].zUuid; 1881 1881 if( i==0 || fossil_strcmp(zUuid, p->aTag[i-1].zUuid)!=0 ){ 1882 1882 if( i>0 ) blob_append(&comment, " ", 1); 1883 1883 blob_appendf(&comment, 1884 - "Edit [[/info/%S | %S]]:", 1885 - zUuid, zUuid); 1884 + "Edit [%S]:", 1885 + zUuid); 1886 1886 branchMove = 0; 1887 1887 } 1888 1888 zName = p->aTag[i].zName; 1889 1889 zValue = p->aTag[i].zValue; 1890 1890 if( strcmp(zName, "*branch")==0 ){ 1891 1891 blob_appendf(&comment, 1892 1892 " Move to branch [/timeline?r=%h&nd&dp=%S | %h].",