3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
|
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
|
+
+
+
+
+
|
fossil_print(" DELETED %s\n",zFilename);
}else{
fossil_print(" EDITED %s\n", zFilename);
}
nLine++; /* record another line */
}
db_reset(&fchngQuery);
}
/* With special formatting (except for "oneline") and --verbose,
** print a newline after the file listing */
if( zFormat!=0 && (fossil_strcmp(zFormat, "%h %c")!=0) ){
fossil_print("\n");
}
nEntry++; /* record another complete entry */
}
if( rc==SQLITE_DONE ){
/* Did the underlying query actually have all entries? */
if( nAbsLimit==0 ){
fossil_print("+++ end of timeline (%d) +++\n", nEntry);
|
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
|
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
|
-
+
-
+
|
zBr = db_text(0, "SELECT value FROM tagxref WHERE rid=%d AND tagid=%d",
vid, TAG_BRANCH);
}
}
if( find_option("oneline",0,0)!= 0 || fossil_strcmp(zFormat,"oneline")==0 )
zFormat = "%h %c";
if( find_option("medium",0,0)!= 0 || fossil_strcmp(zFormat,"medium")==0 )
zFormat = "Commit: %h%nDate: %d%nAuthor: %a%nComment: %c%n";
zFormat = "Commit: %h%nDate: %d%nAuthor: %a%nComment: %c";
if( find_option("full",0,0)!= 0 || fossil_strcmp(zFormat,"full")==0 )
zFormat = "Commit: %H%nDate: %d%nAuthor: %a%nComment: %c%n"
"Branch: %b%nTags: %t%nPhase: %p%n";
"Branch: %b%nTags: %t%nPhase: %p";
showSql = find_option("sql",0,0)!=0;
if( !zLimit ){
zLimit = find_option("count",0,1);
}
if( zLimit ){
n = atoi(zLimit);
|