Changes On Branch wideAnnotateUser
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Changes In Branch wideAnnotateUser Excluding Merge-Ins

This is equivalent to a diff from 3a44f95f40 to dbf4ecf414

2012-02-24
13:40
Merge wideAnnotateUser and jsonWarnings into trunk. check-in: 18dd383e5e user: drh tags: trunk
11:36
For annotate, make the fixed user name field wider (e.g. 'Administrator'). Closed-Leaf check-in: dbf4ecf414 user: mistachkin tags: wideAnnotateUser
2012-02-23
11:32
Fix warnings in json support code (unused variables, unused label, etc). Closed-Leaf check-in: 86f6e675eb user: mistachkin tags: jsonWarnings
2012-02-21
02:01
Make sure the "fossil rebuild" command always ends up showing "100.0% complete", not "99.9%" or "100.1%". check-in: 3a44f95f40 user: drh tags: trunk
01:53
Enhance the "fossil rebuild" command so that it looks at "private" --raw tags and rebuilds the PRIVATE table to contain (at least) the content that is tagged "private". check-in: 2f98f66031 user: drh tags: trunk

Changes to src/diff.c.

  1773   1773     while( db_step(&q)==SQLITE_ROW ){
  1774   1774       int pid = db_column_int(&q, 0);
  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       annotation_step(p, &step, zLabel);
  1791   1791       blob_reset(&step);