LibreOffice Module writerfilter (master)
1
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
w
x
Functions
a
b
c
d
e
f
g
i
k
l
m
n
p
q
r
s
u
x
Variables
a
c
d
f
h
m
n
o
p
w
Typedefs
Enumerations
Enumerator
b
c
e
f
i
l
m
n
p
r
s
t
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
~
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
~
Variables
a
b
c
e
f
g
h
l
m
n
p
r
s
t
x
Typedefs
b
c
d
e
i
o
p
r
t
v
Enumerations
Enumerator
a
c
d
e
f
g
h
i
l
n
p
r
s
t
u
v
w
Files
File List
File Members
All
a
b
c
d
e
h
i
l
m
n
p
s
u
w
Functions
Variables
Typedefs
Macros
writerfilter
source
ooxml
resourceids.py
Go to the documentation of this file.
1
#!/usr/bin/env python
2
#
3
# This file is part of the LibreOffice project.
4
#
5
# This Source Code Form is subject to the terms of the Mozilla Public
6
# License, v. 2.0. If a copy of the MPL was not distributed with this
7
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
8
#
9
10
import
xml.sax
11
import
sys
12
13
14
class
ContentHandler
(xml.sax.handler.ContentHandler):
15
def
__init__
(self):
16
self.
tokens
= []
17
self.
counter
= 90001
18
19
def
startDocument
(self):
20
print(
"""
21
/*
22
23
THIS FILE IS GENERATED AUTOMATICALLY! DO NOT EDIT!
24
25
*/
26
27
28
#ifndef INCLUDED_OOXML_RESOURCEIDS_HXX
29
#define INCLUDED_OOXML_RESOURCEIDS_HXX
30
31
#include <dmapper/resourcemodel.hxx>
32
33
namespace writerfilter {
34
35
namespace NS_ooxml
36
{
""")
37
38
def
endDocument
(self):
39
print(
"""}
40
41
42
}
43
#endif // INCLUDED_OOXML_RESOURCEIDS_HXX"""
)
44
45
def
startElement
(self, name, attrs):
46
for
k, v
in
attrs.items():
47
if
k
in
(
"tokenid"
,
"sendtokenid"
):
48
if
v.startswith(
"ooxml:"
):
49
token = v.replace(
'ooxml:'
,
''
)
50
if
token
not
in
self.
tokens
:
51
print(
" const Id LN_%s = %s;"
% (token, self.
counter
))
52
self.
tokens
.append(token)
53
self.
counter
+= 1
54
55
56
parser = xml.sax.make_parser()
57
parser.setContentHandler(
ContentHandler
())
58
parser.parse(sys.argv[1])
59
60
# vim:set shiftwidth=4 softtabstop=4 expandtab:
resourceids.ContentHandler
Definition:
resourceids.py:14
resourceids.ContentHandler.tokens
tokens
Definition:
resourceids.py:16
resourceids.ContentHandler.startDocument
def startDocument(self)
Definition:
resourceids.py:19
resourceids.ContentHandler.__init__
def __init__(self)
Definition:
resourceids.py:15
resourceids.ContentHandler.endDocument
def endDocument(self)
Definition:
resourceids.py:38
resourceids.ContentHandler.startElement
def startElement(self, name, attrs)
Definition:
resourceids.py:45
resourceids.ContentHandler.counter
counter
Definition:
resourceids.py:17
xml.sax
Generated on Sun Jul 30 2023 04:31:27 for LibreOffice Module writerfilter (master) by
1.9.3