Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 9C7E7200B12 for ; Sun, 12 Jun 2016 19:32:49 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 9B0B2160A2C; Sun, 12 Jun 2016 17:32:49 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id E5068160A04 for ; Sun, 12 Jun 2016 19:32:48 +0200 (CEST) Received: (qmail 27086 invoked by uid 500); 12 Jun 2016 17:32:48 -0000 Mailing-List: contact commits-help@zest.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zest.apache.org Delivered-To: mailing list commits@zest.apache.org Received: (qmail 27077 invoked by uid 99); 12 Jun 2016 17:32:48 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 12 Jun 2016 17:32:48 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D935ADFFAB; Sun, 12 Jun 2016 17:32:47 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: paulmerlin@apache.org To: commits@zest.apache.org Message-Id: <5a1b63ea2f0e4a42935e38e77b48d03c@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: zest-java git commit: Minor rephrasing and error fixing in Zest Shell documentation Date: Sun, 12 Jun 2016 17:32:47 +0000 (UTC) archived-at: Sun, 12 Jun 2016 17:32:49 -0000 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 Authored: Fri Jun 10 21:40:10 2016 +0200 Committer: Paul Merlin 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 <> to create a full web application, ready to deply on a servlet +application will use the <> 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