Fossil SCM
For annotate, make the fixed user name field wider (e.g. 'Administrator').
Commit
dbf4ecf414881c9aad6f4f125dab9762589ef3d7
Parent
3a44f95f40a1937…
1 file changed
+2
-2
+2
-2
| --- src/diff.c | ||
| +++ src/diff.c | ||
| @@ -1775,15 +1775,15 @@ | ||
| 1775 | 1775 | const char *zUuid = db_column_text(&q, 1); |
| 1776 | 1776 | const char *zDate = db_column_text(&q, 2); |
| 1777 | 1777 | const char *zUser = db_column_text(&q, 3); |
| 1778 | 1778 | if( webLabel ){ |
| 1779 | 1779 | zLabel = mprintf( |
| 1780 | - "<a href='%s/info/%s' target='infowindow'>%.10s</a> %s %9.9s", | |
| 1780 | + "<a href='%s/info/%s' target='infowindow'>%.10s</a> %s %13.13s", | |
| 1781 | 1781 | g.zTop, zUuid, zUuid, zDate, zUser |
| 1782 | 1782 | ); |
| 1783 | 1783 | }else{ |
| 1784 | - zLabel = mprintf("%.10s %s %9.9s", zUuid, zDate, zUser); | |
| 1784 | + zLabel = mprintf("%.10s %s %13.13s", zUuid, zDate, zUser); | |
| 1785 | 1785 | } |
| 1786 | 1786 | p->nVers++; |
| 1787 | 1787 | p->azVers = fossil_realloc(p->azVers, p->nVers*sizeof(p->azVers[0]) ); |
| 1788 | 1788 | p->azVers[p->nVers-1] = zLabel; |
| 1789 | 1789 | content_get(pid, &step); |
| 1790 | 1790 |
| --- src/diff.c | |
| +++ src/diff.c | |
| @@ -1775,15 +1775,15 @@ | |
| 1775 | const char *zUuid = db_column_text(&q, 1); |
| 1776 | const char *zDate = db_column_text(&q, 2); |
| 1777 | const char *zUser = db_column_text(&q, 3); |
| 1778 | if( webLabel ){ |
| 1779 | zLabel = mprintf( |
| 1780 | "<a href='%s/info/%s' target='infowindow'>%.10s</a> %s %9.9s", |
| 1781 | g.zTop, zUuid, zUuid, zDate, zUser |
| 1782 | ); |
| 1783 | }else{ |
| 1784 | zLabel = mprintf("%.10s %s %9.9s", zUuid, zDate, zUser); |
| 1785 | } |
| 1786 | p->nVers++; |
| 1787 | p->azVers = fossil_realloc(p->azVers, p->nVers*sizeof(p->azVers[0]) ); |
| 1788 | p->azVers[p->nVers-1] = zLabel; |
| 1789 | content_get(pid, &step); |
| 1790 |
| --- src/diff.c | |
| +++ src/diff.c | |
| @@ -1775,15 +1775,15 @@ | |
| 1775 | const char *zUuid = db_column_text(&q, 1); |
| 1776 | const char *zDate = db_column_text(&q, 2); |
| 1777 | const char *zUser = db_column_text(&q, 3); |
| 1778 | if( webLabel ){ |
| 1779 | zLabel = mprintf( |
| 1780 | "<a href='%s/info/%s' target='infowindow'>%.10s</a> %s %13.13s", |
| 1781 | g.zTop, zUuid, zUuid, zDate, zUser |
| 1782 | ); |
| 1783 | }else{ |
| 1784 | zLabel = mprintf("%.10s %s %13.13s", zUuid, zDate, zUser); |
| 1785 | } |
| 1786 | p->nVers++; |
| 1787 | p->azVers = fossil_realloc(p->azVers, p->nVers*sizeof(p->azVers[0]) ); |
| 1788 | p->azVers[p->nVers-1] = zLabel; |
| 1789 | content_get(pid, &step); |
| 1790 |