commit 585d5ee98b85ebb58811025ccbac37c94369b1dd Author: Mauro Talevi <mauro.tal...@aquilonia.org> AuthorDate: Mon, 25 Nov 2013 10:52:26 +0100 Commit: Mauro Talevi <mauro.tal...@aquilonia.org> CommitDate: Mon, 25 Nov 2013 10:52:26 +0100
JBEHAVE-958: Added skeleton of doc page. diff --git a/distribution/src/site/content/dependencies.html b/distribution/src/site/content/dependencies.html index 15cafef..e495323 100755 --- a/distribution/src/site/content/dependencies.html +++ b/distribution/src/site/content/dependencies.html @@ -22,6 +22,7 @@ <tr class="a"><td>jbehave-weld</td><td><a href="http://search.maven.org/#search|ga|1|jbehave-weld">lookup</a></td></tr> <tr class="b"><td>jbehave-odf</td><td><a href="http://search.maven.org/#search|ga|1|jbehave-odf">lookup</a></td></tr> <tr class="b"><td>jbehave-google</td><td><a href="http://search.maven.org/#search|ga|1|jbehave-google">lookup</a></td></tr> +<tr class="a"><td>jbehave-rest</td><td><a href="http://search.maven.org/#search|ga|1|jbehave-rest">lookup</a></td></tr> <tr class="b"><td>jbehave-ant</td><td><a href="http://search.maven.org/#search|ga|1|jbehave-ant">lookup</a></td></tr> <tr class="a"><td>jbehave-hudson-plugin</td><td><a href="http://search.maven.org/#search|ga|1|jbehave-hudson-plugin">lookup</a></td></tr> <tr class="a"><td>jbehave-jenkins-plugin</td><td><a href="http://search.maven.org/#search|ga|1|jbehave-jenkins-plugin">lookup</a></td></tr> diff --git a/distribution/src/site/content/examples-modules.html b/distribution/src/site/content/examples-modules.html index 5502a0d..5f8e031 100755 --- a/distribution/src/site/content/examples-modules.html +++ b/distribution/src/site/content/examples-modules.html @@ -20,6 +20,7 @@ the link to the source code):</p> <li>jruby: verifies JRuby-based behaviour for writing steps</li> <li>scala: verifies Scala-based behaviour for writing steps</li> <li>google: verifies how stories can be retrived from Google Docs</li> +<li>rest: verifies how stories can be retrived from REST APIs, e.g. wikis</li> <li>noughtsandcrosses: verifies GUI behaviours</li> <li>spring-security: verifies Spring-based security behaviours</li> <li>performance: verifies performance behaviour</li> diff --git a/distribution/src/site/content/sitemap.xml b/distribution/src/site/content/sitemap.xml index 0a6521b..a3d4b34 100755 --- a/distribution/src/site/content/sitemap.xml +++ b/distribution/src/site/content/sitemap.xml @@ -66,6 +66,7 @@ <page>story-transformers.html</page> <page>cross-reference.html</page> <page>multi-threading.html</page> + <page>using-rest.html</page> <page>using-groovy.html</page> <page>using-jruby.html</page> <page>using-scala.html</page> diff --git a/distribution/src/site/content/using-rest.html b/distribution/src/site/content/using-rest.html new file mode 100755 index 0000000..2316eaa --- /dev/null +++ b/distribution/src/site/content/using-rest.html @@ -0,0 +1,21 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html> +<head> +<title>Using REST</title> +</head> + +<body> + +<h2>Using REST to access remote resources</h2> + +<p>REST is a commonly-used protocol to provide access to remote resources.</p> + +<p>JBehave supports accessing resources via REST using the <b>jbehave-rest</b> module.</p> + +<p>REST is typically used to access wikis. Each REST provider has its own API. Currently supported is the <a href="http://redmine.org">Redmine</a> API.</p> + +<div class="clear"> +<hr /> +</div> +</body> +</html>