Ignore:
Timestamp:
8/4/2010 9:23:35 AM (22 months ago)
Author:
lowjoel
Message:

Make the generation of help text for addtask parameters done by the plugins, since the arguments are passed to them, they should document their own CLIs. To do this, the ICliConfigurer interface was modified.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/eraser/Eraser.DefaultPlugins/ErasureTargets/SecureMoveErasureTargetConfigurer.cs

    r2230 r2232  
    7777        #region ICliConfigurer<ErasureTarget> Members 
    7878 
    79         public void Help() 
     79        public string Help() 
    8080        { 
    81             throw new NotImplementedException(); 
     81            return S._(@"move                Securely moves a file/directory to a new location 
     82  arguments: move=<source>|<destination>"); 
    8283        } 
    8384 
Note: See TracChangeset for help on using the changeset viewer.