You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@corinthia.apache.org by ja...@apache.org on 2015/08/05 22:27:30 UTC

incubator-corinthia git commit: Compiles on windows

Repository: incubator-corinthia
Updated Branches:
  refs/heads/Release_0.1 4eb117e03 -> 39e9a325b


Compiles on windows


Project: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/commit/39e9a325
Tree: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/tree/39e9a325
Diff: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/diff/39e9a325

Branch: refs/heads/Release_0.1
Commit: 39e9a325bcae22753e1757d36f4703ede5b72a64
Parents: 4eb117e
Author: jani <ja...@apache.org>
Authored: Wed Aug 5 22:27:14 2015 +0200
Committer: jani <ja...@apache.org>
Committed: Wed Aug 5 22:27:14 2015 +0200

----------------------------------------------------------------------
 DocFormats/api/src/Operations.c | 36 ++++++++++++++++++------------------
 consumers/dftest/src/main.c     |  8 ++++----
 consumers/dfutil/src/Commands.c |  2 +-
 3 files changed, 23 insertions(+), 23 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/39e9a325/DocFormats/api/src/Operations.c
----------------------------------------------------------------------
diff --git a/DocFormats/api/src/Operations.c b/DocFormats/api/src/Operations.c
index f605ad8..fb42593 100644
--- a/DocFormats/api/src/Operations.c
+++ b/DocFormats/api/src/Operations.c
@@ -21,7 +21,7 @@
 #include "DFString.h"
 #include <DocFormats/DFStorage.h>
 #include "Word.h"
-#include "ODFText.h"
+//not in release 0.1 #include "ODFText.h"
 #include "DFHTML.h"
 #include "DFDOM.h"
 #include "DFXML.h"
@@ -241,12 +241,12 @@ int DFGet(DFConcreteDocument *concrete,
                               idPrefix,
                               error);
             break;
-        case DFFileFormatOdt:
-            htmlDoc = ODFTextGet(concrete->storage,
-                                 abstract->storage,
-                                 idPrefix,
-                                 error);
-            break;
+//not in release 0.1         case DFFileFormatOdt:
+//not in release 0.1 htmlDoc = ODFTextGet(concrete->storage,
+//not in release 0.1                                  abstract->storage,
+//not in release 0.1                                  idPrefix,
+//not in release 0.1                                  error);
+//not in release 0.1             break;
         default:
             DFErrorFormat(error,"Unsupported file format");
             break;
@@ -307,12 +307,12 @@ int DFPut(DFConcreteDocument *concreteDoc,
                          idPrefix,
                          error);
             break;
-        case DFFileFormatOdt:
-            ok = ODFTextPut(concreteDoc->storage,
-                            abstractDoc->storage,
-                            abstractDoc->htmlDoc,
-                            idPrefix,
-                            error);
+//not in release 0.1         case DFFileFormatOdt:
+//not in release 0.1             ok = ODFTextPut(concreteDoc->storage,
+//not in release 0.1                             abstractDoc->storage,
+//not in release 0.1                             abstractDoc->htmlDoc,
+//not in release 0.1                             idPrefix,
+//not in release 0.1                             error);
             break;
         default:
             DFErrorFormat(error,"Unsupported file format");
@@ -339,11 +339,11 @@ int DFCreate(DFConcreteDocument *concreteDoc,
                             abstractDoc->htmlDoc,
                             error);
             break;
-        case DFFileFormatOdt:
-            ok = ODFTextCreate(concreteDoc->storage,
-                               abstractDoc->storage,
-                               abstractDoc->htmlDoc,
-                               error);
+//not in release 0.1         case DFFileFormatOdt:
+//not in release 0.1             ok = ODFTextCreate(concreteDoc->storage,
+//not in release 0.1                                abstractDoc->storage,
+//not in release 0.1                                abstractDoc->htmlDoc,
+//not in release 0.1                                error);
             break;
         default:
             DFErrorFormat(error,"Unsupported file format");

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/39e9a325/consumers/dftest/src/main.c
----------------------------------------------------------------------
diff --git a/consumers/dftest/src/main.c b/consumers/dftest/src/main.c
index 2621b89..ba4288b 100644
--- a/consumers/dftest/src/main.c
+++ b/consumers/dftest/src/main.c
@@ -34,8 +34,8 @@ extern TestGroup CSSTests;
 extern TestGroup HTMLTests;
 extern TestGroup LibTests;
 extern TestGroup XMLTests;
-extern TestGroup LaTeXTests;
-extern TestGroup ODFTests;
+//not in release 0.1 extern TestGroup LaTeXTests;
+//not in release 0.1 extern TestGroup ODFTests;
 extern TestGroup WordTests;
 extern TestGroup PlatformOSTests;
 extern TestGroup PlatformWrapperTests;
@@ -48,8 +48,8 @@ TestGroup *allGroups[] = {
     &HTMLTests,
     &LibTests,
     &XMLTests,
-    &LaTeXTests,
-    &ODFTests,
+//not in release 0.1     &LaTeXTests,
+//not in release 0.1     &ODFTests,
     &WordTests,
     &PlatformOSTests,
     &PlatformWrapperTests,

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/39e9a325/consumers/dfutil/src/Commands.c
----------------------------------------------------------------------
diff --git a/consumers/dfutil/src/Commands.c b/consumers/dfutil/src/Commands.c
index 7ec5827..e012e99 100644
--- a/consumers/dfutil/src/Commands.c
+++ b/consumers/dfutil/src/Commands.c
@@ -30,7 +30,7 @@
 #include "DFFilesystem.h"
 #include "DFHTMLNormalization.h"
 #include "CSS.h"
-#include "HTMLToLaTeX.h"
+//not in release 0.1 #include "HTMLToLaTeX.h"
 #include "DFCommon.h"
 #include "DFZipFile.h"
 #include <DocFormats/DocFormats.h>