Fossil

Check-in [0e477a48e5]
Login

Check-in [0e477a48e5]

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

Overview
Comment:Use a target= field on the hyperlink of the annotation web page.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 0e477a48e597826c978a7f029f8f00e6eff57d28
User & Date: drh 2011-04-15 15:36:31.713
Context
2011-04-15
20:42
Make an entry in the access log when a login transfers from one member of a login group to another. ... (check-in: 7b700dfacd user: drh tags: trunk)
15:36
Use a target= field on the hyperlink of the annotation web page. ... (check-in: 0e477a48e5 user: drh tags: trunk)
12:22
The "fossil open" and "fossil co" commands always prompt before overwriting unless the --force option appears. Ticket [b519c1a375c106]. ... (check-in: 824083c36a user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/diff.c.
773
774
775
776
777
778
779
780

781

782
783
784
785
786
787
788
  );
  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'>%.10s</a> %s %9.9s", 

                       g.zTop, zUuid, zUuid, zDate, zUser);

    }else{
      zLabel = mprintf("%.10s %s %9.9s", zUuid, zDate, zUser);
    }
    content_get(pid, &step);
    annotation_step(p, &step, zLabel);
    blob_reset(&step);
  }







|
>
|
>







773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
  );
  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' target='infowindow'>%.10s</a> %s %9.9s", 
          g.zTop, zUuid, zUuid, zDate, zUser
      );
    }else{
      zLabel = mprintf("%.10s %s %9.9s", zUuid, zDate, zUser);
    }
    content_get(pid, &step);
    annotation_step(p, &step, zLabel);
    blob_reset(&step);
  }