Commit d046ba19 authored by Elen.Subbotina's avatar Elen.Subbotina Committed by Alexander Trofimov

linux build

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@59547 954022d7-b5bf-4e40-9824-e11837661b57
parent 75af673b
This diff is collapsed.
...@@ -125,29 +125,29 @@ bool BinDocxRW::CDocxSerializer::saveToFile(const CString& sSrcFileName, const C ...@@ -125,29 +125,29 @@ bool BinDocxRW::CDocxSerializer::saveToFile(const CString& sSrcFileName, const C
void BinDocxRW::CDocxSerializer::CreateDocxFolders(CString strDirectory, CString& sThemePath, CString& sMediaPath) void BinDocxRW::CDocxSerializer::CreateDocxFolders(CString strDirectory, CString& sThemePath, CString& sMediaPath)
{ {
// rels // rels
OOX::CPath pathRels = strDirectory + _T("\\_rels"); OOX::CPath pathRels = strDirectory + FILE_SEPARATOR_STR + _T("_rels");
CreateDirectory(pathRels.GetPath(), NULL); FileSystem::Directory::CreateDirectory(pathRels.GetPath());
// word // word
OOX::CPath pathWord = strDirectory + _T("\\word"); OOX::CPath pathWord = strDirectory + FILE_SEPARATOR_STR + _T("word");
CreateDirectory(pathWord.GetPath(), NULL); FileSystem::Directory::CreateDirectory(pathWord.GetPath());
// documentRels // documentRels
OOX::CPath pathWordRels = pathWord.GetPath() + _T("\\_rels"); OOX::CPath pathWordRels = pathWord + FILE_SEPARATOR_STR + _T("_rels");
CreateDirectory(pathWordRels.GetPath(), NULL); FileSystem::Directory::CreateDirectory(pathWordRels.GetPath());
//media //media
OOX::CPath pathMedia = pathWord.GetPath() + _T("\\media"); OOX::CPath pathMedia = pathWord + FILE_SEPARATOR_STR + _T("media");
sMediaPath = pathMedia.GetPath(); sMediaPath = pathMedia.GetPath();
// theme // theme
OOX::CPath pathTheme = pathWord.GetPath() + _T("\\theme"); OOX::CPath pathTheme = pathWord + FILE_SEPARATOR_STR + _T("theme");
CreateDirectory(pathTheme.GetPath(), NULL); FileSystem::Directory::CreateDirectory(pathTheme.GetPath());
OOX::CPath pathThemeRels = pathTheme.GetPath() + _T("\\_rels"); OOX::CPath pathThemeRels = pathTheme + FILE_SEPARATOR_STR + _T("_rels");
CreateDirectory(pathThemeRels.GetPath(), NULL); FileSystem::Directory::CreateDirectory(pathThemeRels.GetPath());
pathTheme = pathTheme.GetPath() + _T("\\theme1.xml"); pathTheme = pathTheme + FILE_SEPARATOR_STR + _T("theme1.xml");
sThemePath = pathTheme.GetPath(); sThemePath = pathTheme.GetPath();
} }
bool BinDocxRW::CDocxSerializer::loadFromFile(const CString& sSrcFileName, const CString& sDstPath, const CString& sXMLOptions, const CString& sThemePath, const CString& sMediaPath) bool BinDocxRW::CDocxSerializer::loadFromFile(const CString& sSrcFileName, const CString& sDstPath, const CString& sXMLOptions, const CString& sThemePath, const CString& sMediaPath)
...@@ -241,17 +241,17 @@ bool BinDocxRW::CDocxSerializer::loadFromFile(const CString& sSrcFileName, const ...@@ -241,17 +241,17 @@ bool BinDocxRW::CDocxSerializer::loadFromFile(const CString& sSrcFileName, const
var.bstrVal = sFileInDir.GetString(); var.bstrVal = sFileInDir.GetString();
oDrawingConverter.SetAdditionalParam(CString(L"SourceFileDir"), var); oDrawingConverter.SetAdditionalParam(CString(L"SourceFileDir"), var);
#endif #endif
m_pCurFileWriter->m_oDefaultTheme.Write(); // m_pCurFileWriter->m_oDefaultTheme.Write();
BinaryFileReader oBinaryFileReader(sFileInDir, oBufferedStream, *m_pCurFileWriter); BinaryFileReader oBinaryFileReader(sFileInDir, oBufferedStream, *m_pCurFileWriter);
oBinaryFileReader.ReadFile(); oBinaryFileReader.ReadFile();
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
OOX::CContentTypes oContentTypes; OOX::CContentTypes oContentTypes;
//docProps //docProps
OOX::CPath pathDocProps = sDstPath + _T("\\docProps"); OOX::CPath pathDocProps = sDstPath + FILE_SEPARATOR_STR + _T("docProps");
CreateDirectory(pathDocProps.GetPath(), NULL); FileSystem::Directory::CreateDirectory(pathDocProps.GetPath());
OOX::CPath DocProps = L"docProps"; OOX::CPath DocProps = CString(_T("docProps"));
OOX::CApp* pApp = new OOX::CApp(); OOX::CApp* pApp = new OOX::CApp();
if (pApp) if (pApp)
......
...@@ -70,7 +70,9 @@ HEADERS += ../DocWrapper/DocxSerializer.h \ ...@@ -70,7 +70,9 @@ HEADERS += ../DocWrapper/DocxSerializer.h \
../../XlsxSerializerCom/Reader/CSVReader.h \ ../../XlsxSerializerCom/Reader/CSVReader.h \
../../XlsxSerializerCom/Writer/BinaryCommonReader.h \ ../../XlsxSerializerCom/Writer/BinaryCommonReader.h \
../../XlsxSerializerCom/Writer/BinaryReader.h \ ../../XlsxSerializerCom/Writer/BinaryReader.h \
../../XlsxSerializerCom/Writer/CSVWriter.h ../../XlsxSerializerCom/Writer/CSVWriter.h \
../BinReader/webSettingsWriter.h \
../BinReader/DefaultThemeWriterLinux.h
unix { unix {
target.path = /usr/lib target.path = /usr/lib
......
#include "CSVReader.h" #include "CSVReader.h"
#include <map> #include <map>
#include "..\..\DesktopEditor\Common\File.h" #include "../../DesktopEditor/common/File.h"
namespace CSVReader namespace CSVReader
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment