Interim commit
authorSalim Fadhley <sal@stodge.org>
Mon, 9 Jan 2012 14:48:46 +0000 (14:48 +0000)
committerSalim Fadhley <sal@stodge.org>
Mon, 9 Jan 2012 14:48:46 +0000 (14:48 +0000)
doc/build.xml [moved from build.xml with 77% similarity]
doc/epydoc.cfg [new file with mode: 0644]
doc/run_epydoc.py [new file with mode: 0644]

similarity index 77%
rename from build.xml
rename to doc/build.xml
index b9c77ab..57e4896 100644 (file)
--- a/build.xml
@@ -6,10 +6,10 @@
        <target name="clean" depends="doc_clean" />\r
        \r
        <target name="doc">\r
-               <exec executable="python">\r
-                               <arg value="doc/run_epydoc.py"/>\r
+               <exec executable="python" >\r
+                               <arg value="run_epydoc.py"/>\r
                                        <arg value="--html"/>\r
-                                   <arg value="-o doc/html"/>\r
+                                   <arg value="-o html"/>\r
                                    <arg value="--name"/>\r
                                <arg value="JenkinsAPI"/>\r
                                    <arg value="--config=epydoc.cfg"/>\r
diff --git a/doc/epydoc.cfg b/doc/epydoc.cfg
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/doc/run_epydoc.py b/doc/run_epydoc.py
new file mode 100644 (file)
index 0000000..96e2f63
--- /dev/null
@@ -0,0 +1,8 @@
+try:\r
+    from epydoc.cli import cli\r
+except ImportError:\r
+    from pkg_resources import require\r
+    require("epydoc>=3.0.1")\r
+    from epydoc.cli import cli\r
+    \r
+cli()
\ No newline at end of file