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 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 |
int branchMove = 0; blob_zero(&comment); for(i=0; i<p->nTag; i++){ zUuid = p->aTag[i].zUuid; if( i==0 || fossil_strcmp(zUuid, p->aTag[i-1].zUuid)!=0 ){ if( i>0 ) blob_append(&comment, " ", 1); blob_appendf(&comment, "Edit [[/info/%S | %S]]:", zUuid, zUuid); branchMove = 0; } zName = p->aTag[i].zName; zValue = p->aTag[i].zValue; if( strcmp(zName, "*branch")==0 ){ blob_appendf(&comment, " Move to branch [/timeline?r=%h&nd&dp=%S | %h].", |
| | |
1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 |
int branchMove = 0;
blob_zero(&comment);
for(i=0; i<p->nTag; i++){
zUuid = p->aTag[i].zUuid;
if( i==0 || fossil_strcmp(zUuid, p->aTag[i-1].zUuid)!=0 ){
if( i>0 ) blob_append(&comment, " ", 1);
blob_appendf(&comment,
"Edit [%S]:",
zUuid);
branchMove = 0;
}
zName = p->aTag[i].zName;
zValue = p->aTag[i].zValue;
if( strcmp(zName, "*branch")==0 ){
blob_appendf(&comment,
" Move to branch [/timeline?r=%h&nd&dp=%S | %h].",
|