Bugfix for areamgr, changed No Touch flag, doc updates

This commit is contained in:
Michiel Broek
2002-05-29 19:53:42 +00:00
parent 91f59e902c
commit 74e18ac52a
13 changed files with 33 additions and 21 deletions

View File

@@ -288,7 +288,7 @@ void FgScreen(void)
mvprintw(18,32, "22. Dupecheck");
mvprintw(19,32, "23. Secure");
mvprintw( 9,56, "24. No touch");
mvprintw( 9,56, "24. Touch");
mvprintw(10,56, "25. Virscan");
mvprintw(11,56, "26. Announce");
mvprintw(12,56, "27. Upd magic");
@@ -364,7 +364,7 @@ int EditFGrpRec(int Area)
show_bool(18,46, fgroup.DupCheck);
show_bool(19,46, fgroup.Secure);
show_bool( 9,70, fgroup.NoTouch);
show_bool( 9,70, fgroup.Touch);
show_bool(10,70, fgroup.VirScan);
show_bool(11,70, fgroup.Announce);
show_bool(12,70, fgroup.UpdMagic);
@@ -464,7 +464,7 @@ int EditFGrpRec(int Area)
case 22:E_BOOL(18,46, fgroup.DupCheck, "Set ^Dupe check^ in new created tic areas")
case 23:E_BOOL(19,46, fgroup.Secure, "Set ^Secure^ tic processing in new created tic areas")
case 24:E_BOOL( 9,70, fgroup.NoTouch, "Set ^Don't touch filedate^ in new created tic areas")
case 24:E_BOOL( 9,70, fgroup.Touch, "Set ^Touch filedate^ in new created tic areas")
case 25:E_BOOL(10,70, fgroup.VirScan, "Set ^Virus scanner^ in new created tic areas")
case 26:E_BOOL(11,70, fgroup.Announce, "Set ^Announce files^ in new created tic areas")
case 27:E_BOOL(12,70, fgroup.UpdMagic, "Set ^Update magic^ in new created tic areas")
@@ -737,7 +737,7 @@ int tic_group_doc(FILE *fp, FILE *toc, int page)
fprintf(fp, " Allow replace %s\n", getboolean(fgroup.Replace));
fprintf(fp, " Dupe checking %s\n", getboolean(fgroup.DupCheck));
fprintf(fp, " Secure %s\n", getboolean(fgroup.Secure));
fprintf(fp, " No touch dates %s\n", getboolean(fgroup.NoTouch));
fprintf(fp, " Touch dates %s\n", getboolean(fgroup.Touch));
fprintf(fp, " Virus scan %s\n", getboolean(fgroup.VirScan));
fprintf(fp, " Announce %s\n", getboolean(fgroup.Announce));
fprintf(fp, " Update magics %s\n", getboolean(fgroup.UpdMagic));

View File

@@ -421,7 +421,7 @@ void SetTicScreen(void)
mvprintw( 7,41, "11. Dupecheck");
mvprintw( 8,41, "12. Secure");
mvprintw( 9,41, "13. No touch");
mvprintw( 9,41, "13. Touch");
mvprintw(10,41, "14. Virus sc.");
mvprintw(11,41, "15. Announce");
mvprintw(12,41, "16. Upd magic");
@@ -840,7 +840,7 @@ int EditTicRec(int Area)
show_bool( 7,55, tic.DupCheck);
show_bool( 8,55, tic.Secure);
show_bool( 9,55, tic.NoTouch);
show_bool( 9,55, tic.Touch);
show_bool(10,55, tic.VirScan);
show_bool(11,55, tic.Announce);
show_bool(12,55, tic.UpdMagic);
@@ -902,7 +902,7 @@ int EditTicRec(int Area)
tic.Replace = fgroup.Replace;
tic.DupCheck = fgroup.DupCheck;
tic.Secure = fgroup.Secure;
tic.NoTouch = fgroup.NoTouch;
tic.Touch = fgroup.Touch;
tic.VirScan = fgroup.VirScan;
tic.Announce = fgroup.Announce;
tic.UpdMagic = fgroup.UpdMagic;
@@ -942,7 +942,7 @@ int EditTicRec(int Area)
case 10:E_BOOL(15,16, tic.Replace, "Allow ^Replace^ files command");
case 11:E_BOOL( 7,55, tic.DupCheck, "Check for ^duplicates^ in received files");
case 12:E_BOOL( 8,55, tic.Secure, "Check for ^secure^ systems");
case 13:E_BOOL( 9,55, tic.NoTouch, "Don't ^touch^ filedate");
case 13:E_BOOL( 9,55, tic.Touch, "^Touch filedate^ on rearchived files to the origininal filedate");
case 14:E_BOOL(10,55, tic.VirScan, "Check received files for ^virusses^");
case 15:E_BOOL(11,55, tic.Announce, "^Announce^ received files");
case 16:E_BOOL(12,55, tic.UpdMagic, "Update files ^magic^ names");
@@ -1282,7 +1282,7 @@ int tic_areas_doc(FILE *fp, FILE *toc, int page)
fprintf(fp, " Replace ok. %s\n", getboolean(tic.Replace));
fprintf(fp, " Dupe check %s\n", getboolean(tic.DupCheck));
fprintf(fp, " Secure %s\n", getboolean(tic.Secure));
fprintf(fp, " No touch %s\n", getboolean(tic.NoTouch));
fprintf(fp, " Touch %s\n", getboolean(tic.Touch));
fprintf(fp, " Virus scan %s\n", getboolean(tic.VirScan));
fprintf(fp, " Announce %s\n", getboolean(tic.Announce));
fprintf(fp, " Upd. magic %s\n", getboolean(tic.UpdMagic));