blob: a84ed36ecaee26d5c23d0c34287484d3a61037ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#! /usr/bin/env python
import guidexml
doc = guidexml.Document('mydocument', '2.0', 'Sehr nuetzliches infos', 'en', '/doc/en/bla')
doc.addAuthor('creator', 'asyme', 'asymmail@googlemail.de')
doc.addAuthor('creator', 'rbu')
chap = guidexml.Chapter('1 chapter')
sect = guidexml.Section('1 section')
sect = guidexml.Section('1 section')
taguri = guidexml.uri("http://google.de")
tagpara = guidexml.paragraph("hello world, Visit: %s. das ist ein sehr langer text mit mehr als MAXLENGTH Zeichen." % repr(taguri))
doc.append(chap)
chap.append(sect)
sect.append(tagpara)
doc.create('/', 'file')
|