private void CreateRAMP(PublicationInformation projInfo) { Ramp ramp = new Ramp(); ramp.Create(projInfo.DefaultXhtmlFileWithPath, ".jad,.jar", projInfo.ProjectInputType); }
private void CreateRAMP(PublicationInformation projInfo) { var ramp = new Ramp { ProjInputType = projInfo.ProjectInputType }; ramp.Create(projInfo.DefaultXhtmlFileWithPath, ".epub", projInfo.ProjectInputType); }
private void CreateRAMP() { string outputExtn = ".odt"; if (publicationInfo.OutputExtension == "odm") { outputExtn = ".odm," + outputExtn; } else if (publicationInfo.OutputExtension == "pdf") { outputExtn = ".pdf"; } Ramp ramp = new Ramp(); ramp.Create(publicationInfo.DefaultXhtmlFileWithPath, outputExtn, publicationInfo.ProjectInputType); }
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 static void CreateRAMP(string executePath, string inputType) { const string outputExtn = ".pdf"; Ramp ramp = new Ramp(); ramp.Create(executePath, outputExtn, inputType); }
protected void CreateRamp(IPublicationInformation projInfo) { var ramp = new Ramp(); ramp.Create(projInfo.DefaultXhtmlFileWithPath, ".mybible,.nt,.ont", projInfo.ProjectInputType); }