Repository: zest-java Updated Branches: refs/heads/develop eb9ec0db0 -> 6086128b9
Minor rephrasing and error fixing in Zest Shell documentation Project: http://git-wip-us.apache.org/repos/asf/zest-java/repo Commit: http://git-wip-us.apache.org/repos/asf/zest-java/commit/6086128b Tree: http://git-wip-us.apache.org/repos/asf/zest-java/tree/6086128b Diff: http://git-wip-us.apache.org/repos/asf/zest-java/diff/6086128b Branch: refs/heads/develop Commit: 6086128b929ac55e98dd34ba4f0e5c1adfd81126 Parents: eb9ec0d Author: Georg Ragaller <[email protected]> Authored: Fri Jun 10 21:40:10 2016 +0200 Committer: Paul Merlin <[email protected]> Committed: Sun Jun 12 19:31:45 2016 +0200 ---------------------------------------------------------------------- libraries/restlet/src/docs/restlet.txt | 2 +- tools/shell/src/docs/shell.txt | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zest-java/blob/6086128b/libraries/restlet/src/docs/restlet.txt ---------------------------------------------------------------------- diff --git a/libraries/restlet/src/docs/restlet.txt b/libraries/restlet/src/docs/restlet.txt index 21abd33..54ae2cc 100644 --- a/libraries/restlet/src/docs/restlet.txt +++ b/libraries/restlet/src/docs/restlet.txt @@ -17,7 +17,7 @@ * under the License. /////////////////////////////////////////////////////////////// -[[library-restlet, Rsstlet Library]] +[[library-restlet, Restlet Library]] = Restlet Support = [devstatus] http://git-wip-us.apache.org/repos/asf/zest-java/blob/6086128b/tools/shell/src/docs/shell.txt ---------------------------------------------------------------------- diff --git a/tools/shell/src/docs/shell.txt b/tools/shell/src/docs/shell.txt index 65b8517..df7356f 100644 --- a/tools/shell/src/docs/shell.txt +++ b/tools/shell/src/docs/shell.txt @@ -55,13 +55,13 @@ will create additional packages under this, according to its template. [[tools-shell-create-project-null,Create Null Project]] === Create Null Project Template === -This templates only creates the build system for a single module application. No Java files or other no resources +This templates only creates the build system for a single module application. Neither Java files nor other resources are created, and the developer has to set everything up from scratch. [[tools-shell-create-project-singleton,Create Singleton Project]] === Create Singleton Project Template === This template creates a so called Singleton application. That is an application with a single Layer and a single -Module in that layer. In Zest, all applications must have at least one Layer, and at least one Module. +Module in that layer. In Zest, all applications must have at least one Layer and one Module. This is useful for really small applications or demos, not expected to become large in the future. It is also currently required that the infrastructure is configuration free, otherwise it is not possible to set up. @@ -77,12 +77,12 @@ This template sets up a 4 layer, Configuration, Infrastructure, Domain, Connecti The template includes a small sample domain model, +Order+, +OrderItem+, +Customer+, but there is no functionality added to it. -A +SecuityRepository+ is also created, with a simple hardcoded implementation (+HardCodedSecurityRepositoryMixin+). +A +SecurityRepository+ is also created, with a simple hardcoded implementation (+HardCodedSecurityRepositoryMixin+). [[tools-shell-create-project-restapp,Create Rest Application Project]] === Create Rest Application Project Template === This template sets up a 4 layer, Configuration, Infrastructure, Domain, Connectivity, restful application. This -application will use the <<library-restlet>> to create a full web application, ready to deply on a servlet +application will use the <<library-restlet>> to create a full web application, ready to deploy on a servlet container, such as Tomcat or Jetty. The template includes a small sample domain model, +Order+, +OrderItem+, +Customer+, and have the CRUD operations
