Kaydet (Commit) fbb448c2 authored tarafından Jens-Heiner Rechtien's avatar Jens-Heiner Rechtien

INTEGRATION: CWS swqcore01 (1.3.42); FILE MERGED

2004/11/27 10:13:35 os 1.3.42.3: RESYNC: (1.6-1.8); FILE MERGED
2004/11/17 14:44:43 hbrinkm 1.3.42.2: RESYNC: (1.3-1.6); FILE MERGED
2004/11/17 11:12:29 dvo 1.3.42.1: #i28755# handle text:main-etry (OOo) to text:main-entry (OASIS)
üst bea519c1
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: OOo2Oasis.cxx,v $ * $RCSfile: OOo2Oasis.cxx,v $
* *
* $Revision: 1.9 $ * $Revision: 1.10 $
* *
* last change: $Author: rt $ $Date: 2004-11-26 13:09:47 $ * last change: $Author: hr $ $Date: 2004-11-27 12:14:14 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -615,6 +615,12 @@ static XMLTransformerActionInit aActionTable[] = ...@@ -615,6 +615,12 @@ static XMLTransformerActionInit aActionTable[] =
ENTRY1( TABLE, CONVERSION_MODE, XML_ETACTION_PROC_ATTRS, ENTRY1( TABLE, CONVERSION_MODE, XML_ETACTION_PROC_ATTRS,
OOO_DDE_CONV_MODE_ACTIONS ), OOO_DDE_CONV_MODE_ACTIONS ),
// fix <text:alphabatical-index-mark text:main-etry>
ENTRY1( TEXT, ALPHABETICAL_INDEX_MARK, XML_ETACTION_PROC_ATTRS,
OOO_ALPHABETICAL_INDEX_MARK_ACTIONS ),
ENTRY1( TEXT, ALPHABETICAL_INDEX_MARK_START, XML_ETACTION_PROC_ATTRS,
OOO_ALPHABETICAL_INDEX_MARK_ACTIONS ),
// process table::data-pilot-member // process table::data-pilot-member
ENTRY1( TABLE, DATA_PILOT_MEMBER, XML_ETACTION_PROC_ATTRS, ENTRY1( TABLE, DATA_PILOT_MEMBER, XML_ETACTION_PROC_ATTRS,
OOO_DATAPILOT_MEMBER_ACTIONS ), OOO_DATAPILOT_MEMBER_ACTIONS ),
...@@ -1098,6 +1104,14 @@ static XMLTransformerActionInit aChartActionTable[] = ...@@ -1098,6 +1104,14 @@ static XMLTransformerActionInit aChartActionTable[] =
ENTRY0( OFFICE, TOKEN_INVALID, XML_ATACTION_EOT ) ENTRY0( OFFICE, TOKEN_INVALID, XML_ATACTION_EOT )
}; };
// OOO_ALPHABETICAL_INDEX_MARK_ACTIONS
static XMLTransformerActionInit aAlphabeticalIndexMarkActionTable[] =
{
ENTRY1Q( TEXT, MAIN_ETRY, XML_ATACTION_RENAME,
XML_NAMESPACE_TEXT, XML_MAIN_ENTRY ),
ENTRY0( OFFICE, TOKEN_INVALID, XML_ATACTION_EOT )
};
// OOO_SCRIPT_ACTIONS // OOO_SCRIPT_ACTIONS
static XMLTransformerActionInit aScriptActionTable[] = static XMLTransformerActionInit aScriptActionTable[] =
{ {
...@@ -1719,6 +1733,10 @@ XMLTransformerActions *OOo2OasisTransformer::GetUserDefinedActions( ...@@ -1719,6 +1733,10 @@ XMLTransformerActions *OOo2OasisTransformer::GetUserDefinedActions(
m_aActions[OOO_DDE_CONV_MODE_ACTIONS] = m_aActions[OOO_DDE_CONV_MODE_ACTIONS] =
new XMLTransformerActions( aDDEConvModeActionTable ); new XMLTransformerActions( aDDEConvModeActionTable );
break; break;
case OOO_ALPHABETICAL_INDEX_MARK_ACTIONS:
m_aActions[OOO_ALPHABETICAL_INDEX_MARK_ACTIONS] =
new XMLTransformerActions( aAlphabeticalIndexMarkActionTable );
break;
case OOO_DATAPILOT_MEMBER_ACTIONS: case OOO_DATAPILOT_MEMBER_ACTIONS:
m_aActions[OOO_DATAPILOT_MEMBER_ACTIONS] = m_aActions[OOO_DATAPILOT_MEMBER_ACTIONS] =
new XMLTransformerActions( aDataPilotMemberActionTable ); new XMLTransformerActions( aDataPilotMemberActionTable );
......
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