Changeset 1748
- Timestamp:
- Feb 28, 2014, 3:48:00 PM (12 years ago)
- File:
-
- 1 edited
-
trunk/ReleaseTool.cmd (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ReleaseTool.cmd
r1735 r1748 71 71 * 07 Aug 11 JBS Ticket 462: Fix bug in NNTP "To" code 72 72 * 11 Feb 14 JBS Ticket 462: Improved handling of missing cfg file. 73 * 28 Feb 14 JBS Ticket 510: Improved handling cleaenup of temporary files 73 74 * 74 75 * To Do … … 486 487 server_count = cfg.SMTP.0 487 488 page_title = 'Release announcement' 488 email.subject = 'File Manager/2 v3.19.1released'489 email.subject = 'File Manager/2' ver.full 'released' 489 490 call SetDefaultAnnouncementText email.body_file 490 491 end … … 1957 1958 return 1958 1959 end 1959 body_file = SysTempFilename('NNTPBody.???')1960 call SetDefaultAnnouncementText body_file1960 nntp_body_file = SysTempFilename('NNTPBody.???') 1961 call SetDefaultAnnouncementText nntp_body_file 1961 1962 cfg.NNTP.subject = 'FM/2' ver.full 'has been released.' 1962 1963 _text = '<Standard>' … … 1988 1989 when option = 'T' then 1989 1990 do 1990 b4_timestamp = SysGetFileDateTime( body_file)1991 b4_timestamp = SysGetFileDateTime(nntp_body_file) 1991 1992 say 'The current body of the newsgroup message will now be loaded into an editor.' 1992 1993 say 'Make desired changes, if any, and save the file.' … … 1995 1996 call SysGetKey 1996 1997 say 1997 call ExecCmd cmd.editor body_file1998 if b4_timestamp \= SysGetFileDateTime( body_file) then1998 call ExecCmd cmd.editor nntp_body_file 1999 if b4_timestamp \= SysGetFileDateTime(nntp_body_file) then 1999 2000 _text = '<Modified>' 2000 2001 end … … 2114 2115 cfg.NNTP.message_body = cfg.NNTP.message_body || linein(body_file) || cfg.crlf 2115 2116 end 2116 call stream body_file, 'c', 'close'2117 call stream nntp_body_file, 'c', 'close' 2117 2118 rcx = SendNNTP(s) 2118 2119 end … … 2122 2123 rcx = -1 /* User aborted */ 2123 2124 end 2124 call SysFileDelete body_file2125 call SysFileDelete nntp_body_file 2125 2126 return rcx 2126 2127
Note:
See TracChangeset
for help on using the changeset viewer.
