Fossil

Check-in [61523cbe67]
Login

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

Overview
Comment:Adding a space I forgot in in the html output.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | targets_setting
Files: files | file ages | folders
SHA1: 61523cbe672029188bbf14de94dda3212873c6ee
User & Date: viriketo 2011-10-18 21:20:10.509
References
2012-02-17
21:36
Merging what I had at [61523cbe67] over trunk related to href targets. check-in: d5129ae101 user: viriketo tags: annotate_links
Context
2012-02-17
21:36
Merging what I had at [61523cbe67] over trunk related to href targets. check-in: d5129ae101 user: viriketo tags: annotate_links
2011-10-18
21:20
Adding a space I forgot in in the html output. Closed-Leaf check-in: 61523cbe67 user: viriketo tags: targets_setting
20:55
Adding a boolean setting to choose the use of 'targets' in the anchors href. Default enabled. Related to the thread starting at [http://www.mail-archive.com/fossil-users@lists.fossil-scm.org/msg06588.html] check-in: d29df2f0a2 user: viriketo tags: targets_setting
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/diff.c.
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
  while( db_step(&q)==SQLITE_ROW ){
    int pid = db_column_int(&q, 0);
    const char *zUuid = db_column_text(&q, 1);
    const char *zDate = db_column_text(&q, 2);
    const char *zUser = db_column_text(&q, 3);
    if( webLabel ){
      zLabel = mprintf(
          "<a href='%s/info/%s'%s>%.10s</a> %s %9.9s", 
          g.zTop, zUuid,
          zInfoTarget,
          zUuid, zDate, zUser
      );
    }else{
      zLabel = mprintf("%.10s %s %9.9s", zUuid, zDate, zUser);
    }







|







988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
  while( db_step(&q)==SQLITE_ROW ){
    int pid = db_column_int(&q, 0);
    const char *zUuid = db_column_text(&q, 1);
    const char *zDate = db_column_text(&q, 2);
    const char *zUser = db_column_text(&q, 3);
    if( webLabel ){
      zLabel = mprintf(
          "<a href='%s/info/%s' %s>%.10s</a> %s %9.9s", 
          g.zTop, zUuid,
          zInfoTarget,
          zUuid, zDate, zUser
      );
    }else{
      zLabel = mprintf("%.10s %s %9.9s", zUuid, zDate, zUser);
    }