summaryrefslogtreecommitdiff
path: root/tablib/packages/odf3/presentation.py
diff options
context:
space:
mode:
authorMark Rogers <f4nt@f4ntasmic.com>2011-05-14 16:44:23 -0500
committerMark Rogers <f4nt@f4ntasmic.com>2011-05-14 16:44:23 -0500
commit1e21fee70ebbafab5a51e7c3a1ec77dae417802c (patch)
tree78b39da46a46c5163ad0ae6914dc9ec62694ec9f /tablib/packages/odf3/presentation.py
parent420dd36ab8c4fa7a3f75b8da80ffc2effdf0029e (diff)
downloadtablib-1e21fee70ebbafab5a51e7c3a1ec77dae417802c.tar.gz
start of the py3k port of odfpy
Diffstat (limited to 'tablib/packages/odf3/presentation.py')
-rw-r--r--tablib/packages/odf3/presentation.py85
1 files changed, 85 insertions, 0 deletions
diff --git a/tablib/packages/odf3/presentation.py b/tablib/packages/odf3/presentation.py
new file mode 100644
index 0000000..71c3d83
--- /dev/null
+++ b/tablib/packages/odf3/presentation.py
@@ -0,0 +1,85 @@
+# -*- coding: utf-8 -*-
+# Copyright (C) 2006-2007 Søren Roug, European Environment Agency
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+#
+# Contributor(s):
+#
+
+from .namespaces import PRESENTATIONNS
+from .element import Element
+
+# ODF 1.0 section 9.6 and 9.7
+# Autogenerated
+def AnimationGroup(**args):
+ return Element(qname = (PRESENTATIONNS,'animation-group'), **args)
+
+def Animations(**args):
+ return Element(qname = (PRESENTATIONNS,'animations'), **args)
+
+def DateTime(**args):
+ return Element(qname = (PRESENTATIONNS,'date-time'), **args)
+
+def DateTimeDecl(**args):
+ return Element(qname = (PRESENTATIONNS,'date-time-decl'), **args)
+
+def Dim(**args):
+ return Element(qname = (PRESENTATIONNS,'dim'), **args)
+
+def EventListener(**args):
+ return Element(qname = (PRESENTATIONNS,'event-listener'), **args)
+
+def Footer(**args):
+ return Element(qname = (PRESENTATIONNS,'footer'), **args)
+
+def FooterDecl(**args):
+ return Element(qname = (PRESENTATIONNS,'footer-decl'), **args)
+
+def Header(**args):
+ return Element(qname = (PRESENTATIONNS,'header'), **args)
+
+def HeaderDecl(**args):
+ return Element(qname = (PRESENTATIONNS,'header-decl'), **args)
+
+def HideShape(**args):
+ return Element(qname = (PRESENTATIONNS,'hide-shape'), **args)
+
+def HideText(**args):
+ return Element(qname = (PRESENTATIONNS,'hide-text'), **args)
+
+def Notes(**args):
+ return Element(qname = (PRESENTATIONNS,'notes'), **args)
+
+def Placeholder(**args):
+ return Element(qname = (PRESENTATIONNS,'placeholder'), **args)
+
+def Play(**args):
+ return Element(qname = (PRESENTATIONNS,'play'), **args)
+
+def Settings(**args):
+ return Element(qname = (PRESENTATIONNS,'settings'), **args)
+
+def Show(**args):
+ return Element(qname = (PRESENTATIONNS,'show'), **args)
+
+def ShowShape(**args):
+ return Element(qname = (PRESENTATIONNS,'show-shape'), **args)
+
+def ShowText(**args):
+ return Element(qname = (PRESENTATIONNS,'show-text'), **args)
+
+def Sound(**args):
+ return Element(qname = (PRESENTATIONNS,'sound'), **args)
+