Interim commit - a dummy file in the examples folder to act as a
authorSalim Fadhley <sal@stodge.org>
Mon, 9 Jan 2012 15:59:43 +0000 (15:59 +0000)
committerSalim Fadhley <sal@stodge.org>
Mon, 9 Jan 2012 15:59:43 +0000 (15:59 +0000)
placeholder. Doc generation tweaks.

doc/build.xml
examples/fetch_artifact.py [new file with mode: 0644]
jenkinsapi/__init__.py

index 74cb27216fd23731ce76b51cdcceb2809b11fcdf..c67a1dc328e7abfcf0511848ff7e586dfeaa9aea 100644 (file)
@@ -14,6 +14,7 @@
                                    <arg value="--name"/>\r
                                <arg value="JenkinsAPI"/>\r
                                    <arg value="--config=epydoc.cfg"/>\r
+                                   <arg value="--debug"/>\r
                                        <arg value="-v"/>\r
                </exec>\r
        </target>\r
diff --git a/examples/fetch_artifact.py b/examples/fetch_artifact.py
new file mode 100644 (file)
index 0000000..e69de29
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..cc92d150cf7033612d8f2a50873b112f634f4b13 100644 (file)
@@ -0,0 +1,43 @@
+"""\r
+About this library\r
+==================\r
+\r
+Jenkins is the market leading continuous integration system, originally created by Kohsuke Kawaguchi. This API makes Jenkins even easier to use by providing an easy to use conventional python interface.\r
+\r
+Jenkins (and It's predecessor Hudson) are fantastic projects - but they are somewhat Java-centric. Thankfully the designers have provided an excellent and complete REST interface. This library wraps up that interface as more conventional python objects in order to make most Jenkins oriented tasks simpler.\r
+\r
+This library can help you:\r
+\r
+ * Query the test-results of a completed build\r
+ * Get a objects representing the latest builds of a job\r
+ * Search for artefacts by simple criteria\r
+ * Block until jobs are complete\r
+ * Install artefacts to custom-specified directory structures\r
+ * username/password auth support for jenkins instances with auth turned on\r
+ * Ability to search for builds by subversion revision\r
+ * Ability to add/remove/query jenkins slaves\r
+\r
+Installing JenkinsAPI\r
+=====================\r
+\r
+Egg-files for this project are hosted on PyPi. Most Python users should be able to use pip or distribute to automatically install this project.\r
+\r
+Most users can do the following:\r
+\r
+easy_install jenkinsapi\r
+\r
+If you'd like to install in multi-version mode:\r
+\r
+easy_install -m jenkinsapi\r
+\r
+Project Authors\r
+===============\r
+\r
+ * Salim Fadhley (sal@stodge.org) \r
+ * Ramon van Alteren (ramon@vanalteren.nl) \r
+ * Ruslan Lutsenko (ruslan.lutcenko@gmail.com) \r
+\r
+Current code lives on github: https://github.com/salimfadhley/jenkinsapi\r
+\r
+"""\r
+__docformat__ = "epytext"
\ No newline at end of file