Fossil

Check-in [cdc42492]
Login

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

Overview
Comment:Show the name of the user that is doing the commit in the prompt section commit comment template.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: cdc4249268b71144378330ba42ea503791d5b4ee
User & Date: drh 2011-03-10 17:42:25.767
Context
2011-03-25
18:20
Added very basic client certificate support for https. ... (check-in: 513ea810 user: jan tags: jan-clientcert)
2011-03-14
12:16
Put two blank pages at the end of a generated TAR file. Ticket [b767f47cdefef12]. ... (check-in: a5ebf2f5 user: drh tags: trunk)
2011-03-10
17:42
Show the name of the user that is doing the commit in the prompt section commit comment template. ... (check-in: cdc42492 user: drh tags: trunk)
2011-03-09
23:16
Add a graph-generation test case for time-warp. ... (check-in: c7f07fe6 user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/checkin.c.
400
401
402
403
404
405
406

407
408
409
410
411
412
413
  blob_init(&text, zInit, -1);
  blob_append(&text,
    "\n"
    "# Enter comments on this check-in.  Lines beginning with # are ignored.\n"
    "# The check-in comment follows wiki formatting rules.\n"
    "#\n", -1
  );

  if( zBranch && zBranch[0] ){
    blob_appendf(&text, "# tags: %s\n#\n", zBranch);
  }else{
    char *zTags = info_tags_of_checkin(parent_rid, 1);
    if( zTags )  blob_appendf(&text, "# tags: %z\n#\n", zTags);
  }
  if( g.markPrivate ){







>







400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
  blob_init(&text, zInit, -1);
  blob_append(&text,
    "\n"
    "# Enter comments on this check-in.  Lines beginning with # are ignored.\n"
    "# The check-in comment follows wiki formatting rules.\n"
    "#\n", -1
  );
  blob_appendf(&text, "# user: %s\n", g.zLogin);
  if( zBranch && zBranch[0] ){
    blob_appendf(&text, "# tags: %s\n#\n", zBranch);
  }else{
    char *zTags = info_tags_of_checkin(parent_rid, 1);
    if( zTags )  blob_appendf(&text, "# tags: %z\n#\n", zTags);
  }
  if( g.markPrivate ){