More progress towards the new reprocessing infrastructure: args updating

This commit sponsored by Elizabeth Webber.  Thanks, sis!
This commit is contained in:
Christopher Allan Webber
2013-08-09 11:20:21 -05:00
committed by Rodney Ewing
parent e4bdc9091c
commit 58bacb33ac
3 changed files with 75 additions and 23 deletions

View File

@@ -72,6 +72,6 @@ hooks = {
'get_media_type_and_manager': get_media_type_and_manager,
'sniff_handler': sniff_handler,
('media_manager', MEDIA_TYPE): lambda: ImageMediaManager,
('reprocess_action', 'image'): ProcessImage().reprocess_action,
('media_reprocess', 'image'): ProcessImage().media_reprocess,
('reprocess_action', MEDIA_TYPE): ProcessImage().reprocess_action,
('media_reprocess', MEDIA_TYPE): ProcessImage().media_reprocess,
}