chore: removed unused files
This commit is contained in:
parent
9fae696122
commit
8247b4f976
7 changed files with 0 additions and 83 deletions
|
@ -161,7 +161,6 @@ task oxt(type: Zip){
|
||||||
from ('build/libs/writer2phtml.jar'){
|
from ('build/libs/writer2phtml.jar'){
|
||||||
include '*'
|
include '*'
|
||||||
}
|
}
|
||||||
from 'idl/writer2paginatedhtml.rdb'
|
|
||||||
from 'releasenotes.txt'
|
from 'releasenotes.txt'
|
||||||
include '*'
|
include '*'
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,30 +0,0 @@
|
||||||
This directory contains idl specifications for the custom uno interfaces
|
|
||||||
defined by the Writer2LaTeX and Writer2xhtml extensions
|
|
||||||
|
|
||||||
To avoid dependencies on the OOo SDK in the build process, compiled versions
|
|
||||||
are included here.
|
|
||||||
|
|
||||||
If you need to rebuild it, the complete SDK is required. These are the steps:
|
|
||||||
|
|
||||||
To create the registry database for Writer2LaTeX:
|
|
||||||
|
|
||||||
idlc -I<path to SDK>\idl XW2LStarMathConverter.idl
|
|
||||||
regmerge writer2latex.rdb /UCR XW2LStarMathConverter.urd
|
|
||||||
|
|
||||||
To create the java interface
|
|
||||||
|
|
||||||
javamaker -BUCR -Torg.openoffice.da.writer2latex.XW2LStarMathConverter -nD <path to the OOo installation>\program\types.rdb writer2latex.rdb
|
|
||||||
|
|
||||||
and likewise for Writer2xhtml:
|
|
||||||
|
|
||||||
idlc -I<path to SDK>\idl XBatchConverter.idl
|
|
||||||
regmerge writer2xhtml.rdb /UCR XBatchConverter.urd
|
|
||||||
|
|
||||||
To create the java interfaces
|
|
||||||
|
|
||||||
javamaker -BUCR -Torg.openoffice.da.writer2xhtml.XBatchConverter -nD <path to the OOo installation>\program\types.rdb writer2xhtml.rdb
|
|
||||||
javamaker -BUCR -Torg.openoffice.da.writer2xhtml.XBatchHandler -nD <path to the OOo installation>\program\types.rdb writer2xhtml.rdb
|
|
||||||
|
|
||||||
|
|
||||||
If you need to use the interfaces from C++ you will also need to run cppumaker
|
|
||||||
|
|
Binary file not shown.
|
@ -1,52 +0,0 @@
|
||||||
#ifndef __org_openoffice_da_writer2xhtml_XBatchConverter_idl__
|
|
||||||
#define __org_openoffice_da_writer2xhtml_XBatchConverter_idl__
|
|
||||||
#include <com/sun/star/uno/XInterface.idl>
|
|
||||||
#include <com/sun/star/beans/PropertyValue.idl>
|
|
||||||
|
|
||||||
module org { module openoffice { module da { module writer2xhtml {
|
|
||||||
|
|
||||||
// This interface is an IDL version of the java interface (writer2latex.api.BatchHandler)
|
|
||||||
interface XBatchHandler : com::sun::star::uno::XInterface
|
|
||||||
{
|
|
||||||
|
|
||||||
// method org::openoffice::da::writer2xhtml::XBatchHandler::startConversion
|
|
||||||
void startConversion ();
|
|
||||||
|
|
||||||
// method org::openoffice::da::writer2xhtml::XBatchHandler::endConversion
|
|
||||||
void endConversion ();
|
|
||||||
|
|
||||||
// method org::openoffice::da::writer2xhtml::XBatchHandler::startDirectory
|
|
||||||
void startDirectory ( [in] string sName );
|
|
||||||
|
|
||||||
// method org::openoffice::da::writer2xhtml::XBatchHandler::endDirectory
|
|
||||||
void endDirectory ( [in] string sName, [in] boolean bSuccess );
|
|
||||||
|
|
||||||
// method org::openoffice::da::writer2xhtml::XBatchHandler::startFile
|
|
||||||
void startFile ( [in] string sName );
|
|
||||||
|
|
||||||
// method org::openoffice::da::writer2xhtml::XBatchHandler::endFile
|
|
||||||
void endFile ( [in] string sName, [in] boolean bSuccess );
|
|
||||||
|
|
||||||
// method org::openoffice::da::writer2xhtml::XBatchHandler::cancel
|
|
||||||
boolean cancel ();
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
// This interface is an IDL version of the java interface (writer2latex.api.BatchConverter)
|
|
||||||
interface XBatchConverter : com::sun::star::uno::XInterface
|
|
||||||
{
|
|
||||||
|
|
||||||
// method org::openoffice::da::writer2xhtml::XBatchConverter::convert
|
|
||||||
void convert ( [in] string sSourceURL,
|
|
||||||
[in] string sTargetURL,
|
|
||||||
[in] sequence< com::sun::star::beans::PropertyValue > lArguments,
|
|
||||||
[in] XBatchHandler handler );
|
|
||||||
|
|
||||||
} ;
|
|
||||||
|
|
||||||
|
|
||||||
}; }; }; };
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Add table
Reference in a new issue