prpr
Well-Known Member
If I use Opt+ and the Shrink menu option on the Web-If, it appends a timestamp to the filename.
If you use the AutoShrink option on a folder then it doesn't.
Why the difference? There seems to be no point in adding a timestamp as the original file gets backed up in a folder called _original, so why not just leave the filename as it was?
I removed these lines from near the bottom of /mod/var/mongoose/cgi-bin/browse/strip/execute.jim:
and it worked fine.
Not sure why we need two durations lines either e.g.
Processed in: 125.09s
Time taken: 125.108
so I commented all the associated code for the second one as well, as the first seems to be generated by stripts.
Don't need "set len", "set ts" or "set stripstart" lines either.
Is there any reason all this cannot be permanently removed?
If you use the AutoShrink option on a folder then it doesn't.
Why the difference? There seems to be no point in adding a timestamp as the original file gets backed up in a folder called _original, so why not just leave the filename as it was?
I removed these lines from near the bottom of /mod/var/mongoose/cgi-bin/browse/strip/execute.jim:
Code:
set newname "$shname-[clock seconds]"
puts "Renaming file group to $newname"
ts renamegroup "$dir/$shname.ts" $newname
exec /mod/bin/hmt "+setfilename=$newname" "$dir/$newname.hmt"
Not sure why we need two durations lines either e.g.
Processed in: 125.09s
Time taken: 125.108
so I commented all the associated code for the second one as well, as the first seems to be generated by stripts.
Don't need "set len", "set ts" or "set stripstart" lines either.
Is there any reason all this cannot be permanently removed?