예제 #1
0
파일: Program.cs 프로젝트: sillsdev/pathway
        private static void CreateRAMP(string executePath, string inputType)
        {
            const string outputExtn = ".pdf";
            Ramp         ramp       = new Ramp();

            ramp.Create(executePath, outputExtn, inputType);
        }
예제 #2
0
        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();
        }
예제 #3
0
        private void CreateRAMP(PublicationInformation projInfo)
        {
            Ramp ramp = new Ramp();

            ramp.Create(Common.PathCombine(projInfo.DictionaryPath, Path.GetFileName(projInfo.DefaultXhtmlFileWithPath.Replace("Preserve", ""))), ".ldml", projInfo.ProjectInputType);
        }
예제 #4
0
        private void CreateRAMP(PublicationInformation projInfo)
        {
            Ramp ramp = new Ramp();

            ramp.Create(projInfo.DefaultXhtmlFileWithPath, ".jad,.jar", projInfo.ProjectInputType);
        }