private Dictionary<string, Dictionary<string, string>> GetCssClass(string input, string output) { projInfo.DefaultCssFileWithPath = input; projInfo.TempOutputFolder = _outputPath; Dictionary<string, Dictionary<string, string>> cssClass = new Dictionary<string, Dictionary<string, string>>(); CssTree cssTree = new CssTree(); cssClass = cssTree.CreateCssProperty(projInfo.DefaultCssFileWithPath, true); Dictionary<string, Dictionary<string, string>> idAllClass = new Dictionary<string, Dictionary<string, string>>(); LOStyles ooStyles = new LOStyles(); idAllClass = ooStyles.CreateStyles(projInfo, cssClass, output); return cssClass; }
private string GetStyleOutput(string file) { LOContent contentXML = new LOContent(); LOStyles stylesXML = new LOStyles(); string fileOutput = _index > 0 ? file + _index + ".css" : file + ".css"; //string input = FileInput(file + ".css"); string input = FileInput(fileOutput); _projInfo.DefaultCssFileWithPath = input; _projInfo.TempOutputFolder = _outputPath; Dictionary<string, Dictionary<string, string>> cssClass = new Dictionary<string, Dictionary<string, string>>(); CssTree cssTree = new CssTree(); cssClass = cssTree.CreateCssProperty(input, true); //StyleXML string styleOutput = FileOutput(file + _styleFile); Dictionary<string, Dictionary<string, string>> idAllClass = stylesXML.CreateStyles(_projInfo, cssClass, styleOutput); // ContentXML var pageSize = new Dictionary<string, string>(); pageSize["height"] = cssClass["@page"]["page-height"]; pageSize["width"] = cssClass["@page"]["page-width"]; _projInfo.DefaultXhtmlFileWithPath = FileInput(file + ".xhtml"); _projInfo.TempOutputFolder = FileOutput(file); _projInfo.HideSpaceVerseNumber = stylesXML.HideSpaceVerseNumber; PreExportProcess preProcessor = new PreExportProcess(_projInfo); preProcessor.GetTempFolderPath(); _projInfo.DefaultXhtmlFileWithPath = preProcessor.ProcessedXhtml; if (Param.HyphenEnable) preProcessor.IncludeHyphenWordsOnXhtml(_projInfo.DefaultXhtmlFileWithPath); AfterBeforeProcess afterBeforeProcess = new AfterBeforeProcess(); afterBeforeProcess.RemoveAfterBefore(_projInfo, cssClass, cssTree.SpecificityClass, cssTree.CssClassOrder); contentXML.CreateStory(_projInfo, idAllClass, cssTree.SpecificityClass, cssTree.CssClassOrder, 325, pageSize); _projInfo.TempOutputFolder = _projInfo.TempOutputFolder + _contentFile; return styleOutput; }
private string GetStyleOutput(PublicationInformation projInfo) { LOContent contentXML = new LOContent(); LOStyles stylesXML = new LOStyles(); projInfo.TempOutputFolder = _outputPath; string file = Path.GetFileNameWithoutExtension(_projInfo.DefaultXhtmlFileWithPath); Dictionary<string, Dictionary<string, string>> cssClass = new Dictionary<string, Dictionary<string, string>>(); CssTree cssTree = new CssTree(); cssClass = cssTree.CreateCssProperty(projInfo.DefaultCssFileWithPath, true); //StyleXML string fileOutput = _index > 0 ? file + _index + _styleFile : file + _styleFile; //string styleOutput = FileOutput(file + _styleFile); string styleOutput = FileOutput(fileOutput); Dictionary<string, Dictionary<string, string>> idAllClass = stylesXML.CreateStyles(_projInfo, cssClass, styleOutput); // ContentXML var pageSize = new Dictionary<string, string>(); pageSize["height"] = cssClass["@page"]["page-height"]; pageSize["width"] = cssClass["@page"]["page-width"]; _projInfo.TempOutputFolder = FileOutput(file); contentXML.CreateStory(_projInfo, idAllClass, cssTree.SpecificityClass, cssTree.CssClassOrder, 325, pageSize); _projInfo.TempOutputFolder = _projInfo.TempOutputFolder + _contentFile; return styleOutput; }
/// <summary> /// Convert XHTML to ODT and ODM /// </summary> public bool ExportODT(PublicationInformation projInfo) { string defaultXhtml = projInfo.DefaultXhtmlFileWithPath; projInfo.OutputExtension = "odt"; Common.OdType = Common.OdtType.OdtChild; bool returnValue = false; string strFromOfficeFolder = Common.PathCombine(Common.GetPSApplicationPath(), "OfficeFiles" + Path.DirectorySeparatorChar + projInfo.ProjectInputType); projInfo.TempOutputFolder = Common.PathCombine(Path.GetTempPath(), "OfficeFiles" + Path.DirectorySeparatorChar + projInfo.ProjectInputType); Common.DeleteDirectory(projInfo.TempOutputFolder); string strStylePath = Common.PathCombine(projInfo.TempOutputFolder, "styles.xml"); string strContentPath = Common.PathCombine(projInfo.TempOutputFolder, "content.xml"); CopyOfficeFolder(strFromOfficeFolder, projInfo.TempOutputFolder); string strMacroPath = Common.PathCombine(projInfo.TempOutputFolder, "Basic/Standard/Module1.xml"); string outputFileName; string outputPath = Path.GetDirectoryName(projInfo.DefaultXhtmlFileWithPath); VerboseClass verboseClass = VerboseClass.GetInstance(); if (projInfo.FileSequence != null && projInfo.FileSequence.Count > 1) { projInfo.OutputExtension = "odm"; // Master Document Common.OdType = Common.OdtType.OdtMaster; if (projInfo.DictionaryOutputName == null) projInfo.DictionaryOutputName = projInfo.DefaultXhtmlFileWithPath.Replace(Path.GetExtension(projInfo.DefaultXhtmlFileWithPath), ""); outputFileName = Common.PathCombine(outputPath, projInfo.DictionaryOutputName); // OdtMaster is created in Dictionary Name } else { // All other OdtChild files are created in the name of Xhtml or xml file Names. if (projInfo.DictionaryOutputName == null) { outputFileName = projInfo.DefaultXhtmlFileWithPath.Replace(Path.GetExtension(projInfo.DefaultXhtmlFileWithPath), ""); } else { string inputFileName = Path.GetFileNameWithoutExtension(projInfo.DefaultXhtmlFileWithPath); outputFileName = Common.PathCombine(outputPath, inputFileName); Common.OdType = Common.OdtType.OdtNoMaster; // to all the Page property process } } string cssFile = projInfo.DefaultCssFileWithPath; SetBookReferenceDivInCss(cssFile); var fileNameWithoutExtension = Path.GetFileNameWithoutExtension(defaultXhtml); if (projInfo.DefaultRevCssFileWithPath != null && projInfo.DefaultRevCssFileWithPath.Trim().Length > 0) { if (fileNameWithoutExtension != null && fileNameWithoutExtension.ToLower() == "flexrev") { cssFile = projInfo.DefaultRevCssFileWithPath; } } PreExportProcess preProcessor = new PreExportProcess(projInfo); if (fileNameWithoutExtension != null && fileNameWithoutExtension.ToLower() == "flexrev") { preProcessor.InsertEmptyDiv(preProcessor.ProcessedXhtml); preProcessor.InsertSpanAfterLetter(preProcessor.ProcessedXhtml); } preProcessor.IncludeHyphenWordsOnXhtml(preProcessor.ProcessedXhtml); preProcessor.GetTempFolderPath(); preProcessor.GetDefaultLanguage(projInfo); projInfo.DefaultXhtmlFileWithPath = preProcessor.PreserveSpace(); InsertFrontMatter(projInfo); preProcessor.MoveBookcodeFRTtoFront(projInfo.DefaultXhtmlFileWithPath); preProcessor.GetfigureNode(); preProcessor.InsertKeepWithNextOnStyles(cssFile); preProcessor.InsertBookPageBreak(); preProcessor.ArrangeImages(); isMultiLanguageHeader = preProcessor.GetMultiLanguageHeader(); Dictionary<string, Dictionary<string, string>> cssClass = new Dictionary<string, Dictionary<string, string>>(); CssTree cssTree = new CssTree(); cssTree.OutputType = Common.OutputType.ODT; cssClass = cssTree.CreateCssProperty(cssFile, true); SetHeaderFontName(projInfo, cssClass); HandledInCss(ref projInfo, ref cssClass); int pageWidth = GetPictureWidth(cssClass); // BEGIN Generate Styles.Xml File Dictionary<string, Dictionary<string, string>> idAllClass = new Dictionary<string, Dictionary<string, string>>(); LOStyles inStyles = new LOStyles(); inStyles.MultiLanguageHeader = isMultiLanguageHeader; idAllClass = inStyles.CreateStyles(projInfo, cssClass, "styles.xml"); projInfo.IncludeFootnoteSymbol = inStyles.CustomFootnoteCaller; projInfo.IncludeXRefSymbol = inStyles.CustomXRefCaller; projInfo.SplitFileByLetter = inStyles.SplitFileByLetter; projInfo.HideSpaceVerseNumber = inStyles.HideSpaceVerseNumber; //To set Constent variables for User Desire string fname = Common.GetFileNameWithoutExtension(projInfo.DefaultXhtmlFileWithPath); string macroFileName = Common.PathCombine(projInfo.DictionaryPath, fname); string isToc; var isCoverImageInserted = EditCssValues(idAllClass, out isToc); _refFormat = Common.GetReferenceFormat(idAllClass, _refFormat); IncludeTextinMacro(strMacroPath, _refFormat, macroFileName, projInfo.IsExtraProcessing, isCoverImageInserted, isToc); // BEGIN Generate Meta.Xml File var metaXML = new LOMetaXML(projInfo.ProjectInputType); metaXML.CreateMeta(projInfo); // BEGIN Generate Content.Xml File var cXML = new LOContent(); preProcessor.MovePictureAsLastChild(preProcessor.ProcessedXhtml); preProcessor.ImagePreprocess(false); preProcessor.ReplaceSlashToREVERSE_SOLIDUS(); if (projInfo.SwapHeadword) preProcessor.SwapHeadWordAndReversalForm(); Dictionary<string, string> pageSize = new Dictionary<string, string>(); pageSize["height"] = cssClass["@page"]["page-height"]; pageSize["width"] = cssClass["@page"]["page-width"]; projInfo.DefaultXhtmlFileWithPath = preProcessor.ProcessedXhtml; AfterBeforeProcess afterBeforeProcess = new AfterBeforeProcess(); afterBeforeProcess.RemoveAfterBefore(projInfo, cssClass, cssTree.SpecificityClass, cssTree.CssClassOrder); projInfo.TempOutputFolder += Path.DirectorySeparatorChar; cXML._multiLanguageHeader = isMultiLanguageHeader; cXML.CreateStory(projInfo, idAllClass, cssTree.SpecificityClass, cssTree.CssClassOrder, pageWidth, pageSize); PostProcess(projInfo); if (projInfo.FileSequence != null && projInfo.FileSequence.Count > 1) { var ul = new OOUtility(); ul.CreateMasterContents(strContentPath, projInfo.FileSequence); } if (projInfo.MoveStyleToContent) MoveStylesToContent(strStylePath, strContentPath); var mODT = new ZipFolder(); string fileNameNoPath = outputFileName + "." + projInfo.OutputExtension; mODT.CreateZip(projInfo.TempOutputFolder, fileNameNoPath, verboseClass.ErrorCount); projInfo.DictionaryOutputName = fileNameNoPath; try { if (File.Exists(fileNameNoPath)) { returnValue = true; if (projInfo.IsOpenOutput) { Common.OpenOutput(fileNameNoPath); } } } catch (System.ComponentModel.Win32Exception ex) { if (ex.NativeErrorCode == 1155) { string installedLocation = string.Empty; if (File.Exists(fileNameNoPath)) { installedLocation = fileNameNoPath; var msg = new[] { "LibreOffice application from http://www.libreoffice.org site.\nAfter downloading and installing Libre Office, please consult release notes about how to change the macro security setting to enable the macro that creates the headers." }; LocDB.Message("errInstallFile", "The output has been saved in " + installedLocation + ".", "Please install " + msg, msg, LocDB.MessageTypes.Error, LocDB.MessageDefault.First); return false; } else { var msg = new[] { "LibreOffice application from http://www.libreoffice.org site.\nAfter downloading and installing Libre Office, please consult release notes about how to change the macro security setting to enable the macro that creates the headers." }; LocDB.Message("errInstallFile", "Please install " + msg, msg, LocDB.MessageTypes.Error, LocDB.MessageDefault.First); return false; } } } finally { projInfo.DefaultXhtmlFileWithPath = defaultXhtml; if (preProcessor != null) { DirectoryInfo di = new DirectoryInfo(preProcessor.GetCreatedTempFolderPath); Common.CleanDirectory(di); } if (projInfo.TempOutputFolder != null) { DirectoryInfo di = new DirectoryInfo(projInfo.TempOutputFolder); Common.CleanDirectory(di); } } return returnValue; }