1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
3<script:module xmlns:script="http://openoffice.org/2000/script" script:name="sw_XMLContentExporter" script:language="StarBasic">
4
5
6'*************************************************************************
7'
8' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9'
10' Copyright 2000, 2010 Oracle and/or its affiliates.
11'
12' OpenOffice.org - a multi-platform office productivity suite
13'
14' This file is part of OpenOffice.org.
15'
16' OpenOffice.org is free software: you can redistribute it and/or modify
17' it under the terms of the GNU Lesser General Public License version 3
18' only, as published by the Free Software Foundation.
19'
20' OpenOffice.org is distributed in the hope that it will be useful,
21' but WITHOUT ANY WARRANTY; without even the implied warranty of
22' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23' GNU Lesser General Public License version 3 for more details
24' (a copy is included in the LICENSE file that accompanied this code).
25'
26' You should have received a copy of the GNU Lesser General Public License
27' version 3 along with OpenOffice.org.  If not, see
28' <http://www.openoffice.org/license.html>
29' for a copy of the LGPLv3 License.
30'
31'*************************************************************************
32'*************************************************************************
33
34
35
36' Be sure that all variables are dimensioned:
37option explicit
38
39
40' REQUIRED VARIABLES for interface/service tests:
41
42' Required for  com.sun.star.lang.XInitialization:
43  Global aInitArgs() As Variant
44
45' Required for  com.sun.star.document.XFilter:
46  Global oFilterDescriptor As Variant
47
48' Required for  com.sun.star.document.XExporter:
49  Global oSrcDocument As Object
50
51' Required for  com.sun.star.container.XNamed:
52Global cNameToSet As String
53
54
55Sub CreateObj()
56
57'*************************************************************************
58' COMPONENT:
59' sw.XMLContentExporter
60'*************************************************************************
61On Error Goto ErrHndl
62    Dim initArgs(0) As Object
63    Dim oMSF As Object
64    Dim filter As Variant
65    Dim printXML As Boolean
66    Dim Tag1, Tag2, Tag3, Tag4 As Variant
67    Dim expString As String
68    Dim oText As Object
69    Dim oCursor As Object
70
71    printXML = true
72    expString = "XMLContentExporter"
73    oMSF = getProcessServiceManager()
74    oDoc = utils.createDocument("swriter", cObjectName)
75    oDocHandler = oMSF.createInstanceWithArguments("basichelper.DocumentHandler", Array(printXML))
76
77    Tag1 = Array("office:document-content")
78    Tag2 = Array("office:body")
79    Tag3 = Array("office:script")
80    Tag4 = Array("text:p")
81    filter = Array( _
82                Array("TagExists", Tag1), _
83                Array("TagEnclosed", Tag2, Tag1), _
84                Array("TagEnclosed", Tag3, Tag1), _
85                Array("CharsEnclosed", Tag4, expString) _
86             )
87
88    oDocHandler.initialize(filter)
89
90    initArgs(0) = oDocHandler
91    aInitArgs = initArgs()
92    oObj = oMSF.createInstanceWithArguments("com.sun.star.comp.Writer.XMLContentExporter", initArgs())
93
94    oText = oDoc.getText()
95    oCursor = oText.createTextCursor()
96    oText.insertString(oCursor, expString, false)
97
98    oObj.setSourceDocument(oDoc)
99
100    Dim aFilterDescr(0) As New com.sun.star.beans.PropertyValue
101    aFilterDescr(0).Name = "FilterName"
102    aFilterDescr(0).Value = "swriter: StarOffice XML (text)"
103    oFilterDescriptor = aFilterDescr()
104
105    oSrcDocument = oDoc
106    cNameToSet = "fixed"
107
108Exit Sub
109ErrHndl:
110    Test.Exception()
111End Sub
112
113Global oDocHandler As Object
114
115Function checkFilter() As Boolean
116    checkFilter = oDocHandler.getByName("XMLIsCorrect")
117    Out.Log(oDocHandler.getByName("XMLCode"))
118End Function
119</script:module>
120