From 816257ed2f7c208c427c804e1046b960d8335f84 Mon Sep 17 00:00:00 2001 From: yvesf Date: Thu, 1 Apr 2010 20:49:44 +0000 Subject: include xml in egg git-svn-id: http://10.2.2.13/svn/common/ebus@1626 d0e8fea9-7529-0410-93fb-d39fd5b9c1dd --- dist/ebus-0.2-py2.5.egg | Bin 9955 -> 9983 bytes doc/ebusSpecification.html | 79 --------------------------------------- doc/ebusSpecification.xml | 35 ----------------- doc/ebus_specification.html | 79 +++++++++++++++++++++++++++++++++++++++ doc/ebus_specification.html.xslt | 66 ++++++++++++++++++++++++++++++++ doc/spec2html.xslt | 66 -------------------------------- ebus/ebus_specification.xml | 35 +++++++++++++++++ setup.py | 13 +++---- 8 files changed, 185 insertions(+), 188 deletions(-) delete mode 100644 doc/ebusSpecification.html delete mode 100644 doc/ebusSpecification.xml create mode 100644 doc/ebus_specification.html create mode 100644 doc/ebus_specification.html.xslt delete mode 100644 doc/spec2html.xslt create mode 100644 ebus/ebus_specification.xml diff --git a/dist/ebus-0.2-py2.5.egg b/dist/ebus-0.2-py2.5.egg index 4344e42..c87077c 100644 Binary files a/dist/ebus-0.2-py2.5.egg and b/dist/ebus-0.2-py2.5.egg differ diff --git a/doc/ebusSpecification.html b/doc/ebusSpecification.html deleted file mode 100644 index 17dc6e7..0000000 --- a/doc/ebusSpecification.html +++ /dev/null @@ -1,79 +0,0 @@ - - - -

Ebus Geräte

- - - - - - - - - - - - - - - - - - - - - -
AdresseGerätTyp
0x03Feuerungsautomatmaster
0x10Heizungsregler #2master
0x30Heizkreisregler #1master
-

Ebus Packete

- - - - - - - - - - - - - - - - - - - -
Primary commandSecondary commandDescriptionContent
0x050x03Betriebsdaten des Feuerungsautomaten an den Regler Block1 - - - -
nametypoffset
0x050x07Betriebsdaten des Reglers an den Feuerungsautomaten - - - - - - - - - - - - - - - - - - - - - - - - - -
nametypoffset
betriebszustandbyteEnum0
aktionbyteEnum1
kesselSollwertTemperaturdata2c2
kesselSollwertDruckdata2b4
- - diff --git a/doc/ebusSpecification.xml b/doc/ebusSpecification.xml deleted file mode 100644 index 006bcb1..0000000 --- a/doc/ebusSpecification.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - Feuerungsautomat - Heizungsregler #2 - Heizkreisregler #1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/doc/ebus_specification.html b/doc/ebus_specification.html new file mode 100644 index 0000000..17dc6e7 --- /dev/null +++ b/doc/ebus_specification.html @@ -0,0 +1,79 @@ + + + +

Ebus Geräte

+ + + + + + + + + + + + + + + + + + + + + +
AdresseGerätTyp
0x03Feuerungsautomatmaster
0x10Heizungsregler #2master
0x30Heizkreisregler #1master
+

Ebus Packete

+ + + + + + + + + + + + + + + + + + + +
Primary commandSecondary commandDescriptionContent
0x050x03Betriebsdaten des Feuerungsautomaten an den Regler Block1 + + + +
nametypoffset
0x050x07Betriebsdaten des Reglers an den Feuerungsautomaten + + + + + + + + + + + + + + + + + + + + + + + + + +
nametypoffset
betriebszustandbyteEnum0
aktionbyteEnum1
kesselSollwertTemperaturdata2c2
kesselSollwertDruckdata2b4
+ + diff --git a/doc/ebus_specification.html.xslt b/doc/ebus_specification.html.xslt new file mode 100644 index 0000000..b0b2728 --- /dev/null +++ b/doc/ebus_specification.html.xslt @@ -0,0 +1,66 @@ + + + + + + + + + +

Ebus Geräte

+ + + + + + + + + + + + + +
AdresseGerätTyp
+ + +
+ +

Ebus Packete

+ + + + + + + + + + + + + + + +
Primary commandSecondary commandBeschreibungFelder
+ + + + + + + + + + + + + +
nametypoffset
+
+ + +
+ +
diff --git a/doc/spec2html.xslt b/doc/spec2html.xslt deleted file mode 100644 index b0b2728..0000000 --- a/doc/spec2html.xslt +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - -

Ebus Geräte

- - - - - - - - - - - - - -
AdresseGerätTyp
- - -
- -

Ebus Packete

- - - - - - - - - - - - - - - -
Primary commandSecondary commandBeschreibungFelder
- - - - - - - - - - - - - -
nametypoffset
-
- - -
- -
diff --git a/ebus/ebus_specification.xml b/ebus/ebus_specification.xml new file mode 100644 index 0000000..006bcb1 --- /dev/null +++ b/ebus/ebus_specification.xml @@ -0,0 +1,35 @@ + + + Feuerungsautomat + Heizungsregler #2 + Heizkreisregler #1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/setup.py b/setup.py index 89a47c7..ced377b 100644 --- a/setup.py +++ b/setup.py @@ -10,15 +10,12 @@ setup( author_email='ebus@xapek.org', url='http://xapek.org', packages=['ebus'], + package_data = {'doc':['*.txt'], 'xml':['ebus/*.xml']}, install_requires=[], - long_description="""""", + long_description="""ebus library""", classifiers=[ -# "License :: OSI Approved :: MIT License", - "Programming Language :: Python", -# "Topic :: Internet", - "Topic :: Software Development :: Libraries :: Python Modules", - "Intended Audience :: Developers", -# "Development Status :: 4 - Beta", - ] + "Programming Language :: Python", + "Topic :: Software Development :: Libraries :: Python Modules", + "Intended Audience :: Developers",] ) -- cgit v1.2.1