Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch localtime_fixes Excluding Merge-Ins
This is equivalent to a diff from 0cf5416002 to 1765c18d94
|
2011-09-06
| ||
| 13:23 | Close A and LI tags when displaying new and deleted files in timeline. ... (check-in: 8d703ff956 user: dmitry tags: trunk) | |
| 07:33 | Two fixes about localtime: * The ci_edit page tells the user that it asks UTC time * The object_description gives links to localtime (if it's set in the config). Otherwise the links were not pointing at the concerning checkin. ... (Closed-Leaf check-in: 1765c18d94 user: viriketo tags: localtime_fixes) | |
|
2011-09-04
| ||
| 20:43 | Updating from trunk to get the latest code. ... (check-in: 73b6ff4966 user: viriketo tags: annotate_noleak) | |
| 01:28 | Update the built-in SQLite to the latest 3.7.8-alpha version that contains the improved merge-sort logic. ... (check-in: 0cf5416002 user: drh tags: trunk) | |
|
2011-09-02
| ||
| 16:19 | Do a better job of merging branches that contain lots of file renames. ... (check-in: 0b93b0f958 user: drh tags: trunk) | |
Changes to src/info.c.
| ︙ | ︙ | |||
778 779 780 781 782 783 784 | int cnt = 0; int nWiki = 0; char *zUuid = db_text(0, "SELECT uuid FROM blob WHERE rid=%d", rid); char *prevName = 0; db_prepare(&q, | | | 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 |
int cnt = 0;
int nWiki = 0;
char *zUuid = db_text(0, "SELECT uuid FROM blob WHERE rid=%d", rid);
char *prevName = 0;
db_prepare(&q,
"SELECT filename.name, datetime(event.mtime, 'localtime'),"
" coalesce(event.ecomment,event.comment),"
" coalesce(event.euser,event.user),"
" b.uuid, mlink.mperm,"
" coalesce((SELECT value FROM tagxref"
" WHERE tagid=%d AND tagtype>0 AND rid=mlink.mid),'trunk')"
" FROM mlink, filename, event, blob a, blob b"
" WHERE filename.fnid=mlink.fnid"
|
| ︙ | ︙ | |||
848 849 850 851 852 853 854 |
blob_append(pDownloadName, zName, -1);
}
}
@ </ul></ul>
free(prevName);
db_finalize(&q);
db_prepare(&q,
| | | 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 |
blob_append(pDownloadName, zName, -1);
}
}
@ </ul></ul>
free(prevName);
db_finalize(&q);
db_prepare(&q,
"SELECT substr(tagname, 6, 10000), datetime(event.mtime, 'localtime'),"
" coalesce(event.euser, event.user)"
" FROM tagxref, tag, event"
" WHERE tagxref.rid=%d"
" AND tag.tagid=tagxref.tagid"
" AND tag.tagname LIKE 'wiki-%%'"
" AND event.objid=tagxref.rid",
rid
|
| ︙ | ︙ | |||
924 925 926 927 928 929 930 |
blob_appendf(pDownloadName, "%.10s.txt", zUuid);
}
cnt++;
}
db_finalize(&q);
}
db_prepare(&q,
| | | 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 |
blob_appendf(pDownloadName, "%.10s.txt", zUuid);
}
cnt++;
}
db_finalize(&q);
}
db_prepare(&q,
"SELECT target, filename, datetime(mtime,'localtime'), user, src"
" FROM attachment"
" WHERE src=(SELECT uuid FROM blob WHERE rid=%d)"
" ORDER BY mtime DESC /*sort*/",
rid
);
while( db_step(&q)==SQLITE_ROW ){
const char *zTarget = db_column_text(&q, 0);
|
| ︙ | ︙ | |||
1796 1797 1798 1799 1800 1801 1802 | @ </td></tr> @ <tr><td align="right" valign="top"><b>Comment:</b></td> @ <td valign="top"> @ <textarea name="c" rows="10" cols="80">%h(zNewComment)</textarea> @ </td></tr> | | | 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 | @ </td></tr> @ <tr><td align="right" valign="top"><b>Comment:</b></td> @ <td valign="top"> @ <textarea name="c" rows="10" cols="80">%h(zNewComment)</textarea> @ </td></tr> @ <tr><td align="right" valign="top"><b>Check-in UTC Time:</b></td> @ <td valign="top"> @ <input type="text" name="dt" size="20" value="%h(zNewDate)" /> @ </td></tr> @ <tr><td align="right" valign="top"><b>Background Color:</b></td> @ <td valign="top"> render_color_chooser(fNewPropagateColor, zNewColor, "pclr", "clr", "clrcust"); |
| ︙ | ︙ |