Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Changes some "Baseline" labels to "Check-in". |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
e8d3e327f1432a02779e49fb33b8edd0 |
| User & Date: | drh 2009-01-22 14:04:35.000 |
Context
|
2009-01-23
| ||
| 00:16 | Change "baseline" to "check-in" in the on-line documentation. ... (check-in: 904ee40b93 user: drh tags: trunk) | |
|
2009-01-22
| ||
| 14:04 | Changes some "Baseline" labels to "Check-in". ... (check-in: e8d3e327f1 user: drh tags: trunk) | |
| 13:52 | Add the ability to cancel existing tags from the web interface, on the "vedit" page. Disable the display of "Leaf" on the timeline for closed leaves. ... (check-in: 73c23a4279 user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
421 422 423 424 425 426 427 |
}
@ </td>
@ </tr>
free(zShortUuid);
}
@ </table></p>
}else{
| | | 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 |
}
@ </td>
@ </tr>
free(zShortUuid);
}
@ </table></p>
}else{
style_header("Check-in Information");
login_anonymous_available();
}
db_finalize(&q);
showTags(rid, "");
@ <div class="section">File Changes</div>
@ <ul>
db_prepare(&q,
|
| ︙ | ︙ | |||
670 671 672 673 674 675 676 |
void vdiff_page(void){
int rid;
Stmt q;
char *zUuid;
login_check_credentials();
if( !g.okRead ){ login_needed(); return; }
| | | | 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 |
void vdiff_page(void){
int rid;
Stmt q;
char *zUuid;
login_check_credentials();
if( !g.okRead ){ login_needed(); return; }
style_header("Check-in Changes");
login_anonymous_available();
rid = name_to_rid(PD("name",""));
if( rid==0 ){
fossil_redirect_home();
}
db_prepare(&q,
"SELECT pid, fid, name"
" FROM mlink, filename"
" WHERE mlink.mid=%d"
" AND filename.fnid=mlink.fnid"
" ORDER BY name",
rid
);
zUuid = db_text(0, "SELECT uuid FROM blob WHERE rid=%d", rid);
@ <h2>All Changes In Check-in
hyperlink_to_uuid(zUuid);
@ </h2>
while( db_step(&q)==SQLITE_ROW ){
int pid = db_column_int(&q,0);
int fid = db_column_int(&q,1);
const char *zName = db_column_text(&q,2);
@ <p><a href="%s(g.zBaseURL)/finfo?name=%T(zName)">%h(zName)</a></p>
|
| ︙ | ︙ | |||
1309 1310 1311 1312 1313 1314 1315 |
db_end_transaction(0);
}
cgi_redirectf("vinfo?name=%d", rid);
}
blob_zero(&comment);
blob_append(&comment, zNewComment, -1);
zUuid[10] = 0;
| | | 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 |
db_end_transaction(0);
}
cgi_redirectf("vinfo?name=%d", rid);
}
blob_zero(&comment);
blob_append(&comment, zNewComment, -1);
zUuid[10] = 0;
style_header("Edit Check-in [%s]", zUuid);
if( P("preview") ){
Blob suffix;
int nTag = 0;
@ <b>Preview:</b>
@ <blockquote>
@ <table border=0>
if( zNewColor && zNewColor[0] ){
|
| ︙ | ︙ |