private static void CreateRAMP(string executePath, string inputType) { const string outputExtn = ".pdf"; Ramp ramp = new Ramp(); ramp.Create(executePath, outputExtn, inputType); }
protected void CreateArchiveSubmission(PublicationInformation projInfo, InProcess inProcess, string epub3Path) { inProcess.SetStatus("Archive"); var ramp = new Ramp { ProjInputType = projInfo.ProjectInputType }; ramp.Create(projInfo.DefaultXhtmlFileWithPath, ".zip", projInfo.ProjectInputType); inProcess.PerformStep(); }
private void CreateRAMP(PublicationInformation projInfo) { Ramp ramp = new Ramp(); ramp.Create(Common.PathCombine(projInfo.DictionaryPath, Path.GetFileName(projInfo.DefaultXhtmlFileWithPath.Replace("Preserve", ""))), ".ldml", projInfo.ProjectInputType); }
private void CreateRAMP(PublicationInformation projInfo) { Ramp ramp = new Ramp(); ramp.Create(projInfo.DefaultXhtmlFileWithPath, ".jad,.jar", projInfo.ProjectInputType); }