- Timestamp:
- 10/24/08 17:03:05 (2 months ago)
- Location:
- trunk/client/ebox
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
src/EBox/CGI/Controller/Downloader/FromTempDir.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/ebox/ChangeLog
r11518 r11528 5 5 + Refresh logs automatically 6 6 + Reverse log order 7 + Remove temp file after it is downloaded with FromTempDir controller 7 8 0.12.3 8 9 + Bug fix: use the new API in purge method. Now purging logs is working -
trunk/client/ebox/src/EBox/CGI/Controller/Downloader/FromTempDir.pm
r10662 r11528 111 111 $self->SUPER::_process(@_); 112 112 } 113 114 # Method: _print 115 # 116 # Overrides: 117 # 118 # <EBox::CGI::Controller::Downloader::Base::_print> 119 # 120 # To remove the file after it has been downloaded 121 # 122 sub _print 123 { 124 my ($self, @params) = @_; 125 126 $self->SUPER::_print(@params); 127 128 unlink ($self->{path}) if ( -e $self->{path} ); 129 } 130 113 131 1; 114 132
