struts-site git commit: Fix typo: "Struts 2 Actons" to "Struts 2 Actions"
Repository: struts-site Updated Branches: refs/heads/master cb36b680c -> 31357d7f6 Fix typo: "Struts 2 Actons" to "Struts 2 Actions" Project: http://git-wip-us.apache.org/repos/asf/struts-site/repo Commit: http://git-wip-us.apache.org/repos/asf/struts-site/commit/31357d7f Tree: http://git-wip-us.apache.org/repos/asf/struts-site/tree/31357d7f Diff: http://git-wip-us.apache.org/repos/asf/struts-site/diff/31357d7f Branch: refs/heads/master Commit: 31357d7f679c870875a6feb0ebf7a43f62c33323 Parents: cb36b68 Author: Ken Price Authored: Sat Jul 29 19:15:41 2017 -0400 Committer: GitHub Committed: Sat Jul 29 19:15:41 2017 -0400 -- source/getting-started/processing-forms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- http://git-wip-us.apache.org/repos/asf/struts-site/blob/31357d7f/source/getting-started/processing-forms.md -- diff --git a/source/getting-started/processing-forms.md b/source/getting-started/processing-forms.md index 4c0c4b4..267b517 100644 --- a/source/getting-started/processing-forms.md +++ b/source/getting-started/processing-forms.md @@ -4,7 +4,7 @@ title: Processing forms --- ## Processing Forms -This tutorial assumes you've completed the [Coding Struts 2 Actons](coding-actions.html) tutorial and have a working coding-actions project. The example code for this tutorial, form-processing, is available for checkout from the Struts 2 GitHub subversion repository: [https://github.com/apache/struts-examples](https://github.com/apache/struts-examples). +This tutorial assumes you've completed the [Coding Struts 2 Actions](coding-actions.html) tutorial and have a working coding-actions project. The example code for this tutorial, form-processing, is available for checkout from the Struts 2 GitHub subversion repository: [https://github.com/apache/struts-examples](https://github.com/apache/struts-examples). >
struts-site git commit: Drops citation
Repository: struts-site Updated Branches: refs/heads/master 31357d7f6 -> 5a7ec7cde Drops citation Project: http://git-wip-us.apache.org/repos/asf/struts-site/repo Commit: http://git-wip-us.apache.org/repos/asf/struts-site/commit/5a7ec7cd Tree: http://git-wip-us.apache.org/repos/asf/struts-site/tree/5a7ec7cd Diff: http://git-wip-us.apache.org/repos/asf/struts-site/diff/5a7ec7cd Branch: refs/heads/master Commit: 5a7ec7cdedab490b29df63ab8de384bb53e82f69 Parents: 31357d7 Author: Lukasz Lenart Authored: Sun Jul 30 12:17:17 2017 +0200 Committer: Lukasz Lenart Committed: Sun Jul 30 12:17:17 2017 +0200 -- source/getting-started/processing-forms.md | 2 -- 1 file changed, 2 deletions(-) -- http://git-wip-us.apache.org/repos/asf/struts-site/blob/5a7ec7cd/source/getting-started/processing-forms.md -- diff --git a/source/getting-started/processing-forms.md b/source/getting-started/processing-forms.md index 267b517..0f6a7ba 100644 --- a/source/getting-started/processing-forms.md +++ b/source/getting-started/processing-forms.md @@ -6,8 +6,6 @@ title: Processing forms This tutorial assumes you've completed the [Coding Struts 2 Actions](coding-actions.html) tutorial and have a working coding-actions project. The example code for this tutorial, form-processing, is available for checkout from the Struts 2 GitHub subversion repository: [https://github.com/apache/struts-examples](https://github.com/apache/struts-examples). -> - ### Introduction In this tutorial we'll explore using Struts 2 to do more involved processing of a form submission. We'll cover how to use a Java model class to store the form input and how to create the Struts 2 form to match up with that model class.
struts-site git commit: Breaks long lines
Repository: struts-site Updated Branches: refs/heads/master 5a7ec7cde -> 6ff7bb27a Breaks long lines Project: http://git-wip-us.apache.org/repos/asf/struts-site/repo Commit: http://git-wip-us.apache.org/repos/asf/struts-site/commit/6ff7bb27 Tree: http://git-wip-us.apache.org/repos/asf/struts-site/tree/6ff7bb27 Diff: http://git-wip-us.apache.org/repos/asf/struts-site/diff/6ff7bb27 Branch: refs/heads/master Commit: 6ff7bb27adad4558b99895af3295b82c34e6b2ef Parents: 5a7ec7c Author: Lukasz Lenart Authored: Sun Jul 30 12:25:12 2017 +0200 Committer: Lukasz Lenart Committed: Sun Jul 30 12:25:12 2017 +0200 -- source/getting-started/processing-forms.md | 89 +++-- 1 file changed, 67 insertions(+), 22 deletions(-) -- http://git-wip-us.apache.org/repos/asf/struts-site/blob/6ff7bb27/source/getting-started/processing-forms.md -- diff --git a/source/getting-started/processing-forms.md b/source/getting-started/processing-forms.md index 0f6a7ba..0ff1bc4 100644 --- a/source/getting-started/processing-forms.md +++ b/source/getting-started/processing-forms.md @@ -4,21 +4,30 @@ title: Processing forms --- ## Processing Forms -This tutorial assumes you've completed the [Coding Struts 2 Actions](coding-actions.html) tutorial and have a working coding-actions project. The example code for this tutorial, form-processing, is available for checkout from the Struts 2 GitHub subversion repository: [https://github.com/apache/struts-examples](https://github.com/apache/struts-examples). +This tutorial assumes you've completed the [Coding Struts 2 Actions](coding-actions.html) tutorial and have a working +coding-actions project. The example code for this tutorial, form-processing, is available for checkout from +the Struts 2 GitHub subversion repository: [https://github.com/apache/struts-examples](https://github.com/apache/struts-examples). ### Introduction -In this tutorial we'll explore using Struts 2 to do more involved processing of a form submission. We'll cover how to use a Java model class to store the form input and how to create the Struts 2 form to match up with that model class. +In this tutorial we'll explore using Struts 2 to do more involved processing of a form submission. We'll cover how to +use a Java model class to store the form input and how to create the Struts 2 form to match up with that model class. -The code provided in this tutorial may be added to the [Coding Struts 2 Actions](coding-actions.html) example or you can download this complete example from the github respository - [https://github.com/apache/struts-examples](https://github.com/apache/struts-examples). +The code provided in this tutorial may be added to the [Coding Struts 2 Actions](coding-actions.html) example or you +can download this complete example from the github respository - [https://github.com/apache/struts-examples](https://github.com/apache/struts-examples). -The [Struts 2 user mailing list](http://struts.apache.org/mail.html) is an excellent place to get help. If you are having a problem getting the tutorial example applications to work search the Struts 2 mailing list. If you don't find an answer to your problem, post a question on the mailing list. +The [Struts 2 user mailing list](http://struts.apache.org/mail.html) is an excellent place to get help. If you are +having a problem getting the tutorial example applications to work search the Struts 2 mailing list. If you don't find +an answer to your problem, post a question on the mailing list. ### Forms and a Java model class -For this tutorial let's say we need to provide a form that a user may submit to register for a prize drawing. Our business rules state the user must provide his/her first name, last name, email address, and age. +For this tutorial let's say we need to provide a form that a user may submit to register for a prize drawing. Our +business rules state the user must provide his/her first name, last name, email address, and age. -To encapsulate this data, we'll use a simple Java class that follows the basic Java Bean specifications (public set/get methods for each instance field). If you're following along add this class to the package `org.apache.struts.register.model` in the [Coding Struts 2 Actions](coding-actions.html) example. +To encapsulate this data, we'll use a simple Java class that follows the basic Java Bean specifications (public set/get +methods for each instance field). If you're following along add this class to the package `org.apache.struts.register.model` +in the [Coding Struts 2 Actions](coding-actions.html) example. **Person.java** @@ -68,11 +77,16 @@ public class Person { } ``` -Note a few points about the above class. There is a public set/get meth
struts-site git commit: Updates production
Repository: struts-site Updated Branches: refs/heads/asf-site 3c135ada7 -> 339b701ce Updates production Project: http://git-wip-us.apache.org/repos/asf/struts-site/repo Commit: http://git-wip-us.apache.org/repos/asf/struts-site/commit/339b701c Tree: http://git-wip-us.apache.org/repos/asf/struts-site/tree/339b701c Diff: http://git-wip-us.apache.org/repos/asf/struts-site/diff/339b701c Branch: refs/heads/asf-site Commit: 339b701cef147624c21c925c42dbed33f476cf68 Parents: 3c135ad Author: Lukasz Lenart Authored: Sun Jul 30 13:21:41 2017 +0200 Committer: Lukasz Lenart Committed: Sun Jul 30 13:21:41 2017 +0200 -- content/getting-started/processing-forms.html | 93 -- 1 file changed, 67 insertions(+), 26 deletions(-) -- http://git-wip-us.apache.org/repos/asf/struts-site/blob/339b701c/content/getting-started/processing-forms.html -- diff --git a/content/getting-started/processing-forms.html b/content/getting-started/processing-forms.html index a5643a7..85e7d90 100644 --- a/content/getting-started/processing-forms.html +++ b/content/getting-started/processing-forms.html @@ -127,25 +127,30 @@ https://github.com/apache/struts-site/edit/master/source/getting-started/processing-forms.md"; title="Edit this page on GitHub">Edit on GitHub Processing Forms -This tutorial assumes youâve completed the Coding Struts 2 Actons tutorial and have a working coding-actions project. The example code for this tutorial, form-processing, is available for checkout from the Struts 2 GitHub subversion repository: https://github.com/apache/struts-examples";>https://github.com/apache/struts-examples. - - - - +This tutorial assumes youâve completed the Coding Struts 2 Actions tutorial and have a working +coding-actions project. The example code for this tutorial, form-processing, is available for checkout from +the Struts 2 GitHub subversion repository: https://github.com/apache/struts-examples";>https://github.com/apache/struts-examples. Introduction -In this tutorial weâll explore using Struts 2 to do more involved processing of a form submission. Weâll cover how to use a Java model class to store the form input and how to create the Struts 2 form to match up with that model class. +In this tutorial weâll explore using Struts 2 to do more involved processing of a form submission. Weâll cover how to +use a Java model class to store the form input and how to create the Struts 2 form to match up with that model class. -The code provided in this tutorial may be added to the Coding Struts 2 Actions example or you can download this complete example from the github respository - https://github.com/apache/struts-examples";>https://github.com/apache/struts-examples. +The code provided in this tutorial may be added to the Coding Struts 2 Actions example or you +can download this complete example from the github respository - https://github.com/apache/struts-examples";>https://github.com/apache/struts-examples. -The http://struts.apache.org/mail.html";>Struts 2 user mailing list is an excellent place to get help. If you are having a problem getting the tutorial example applications to work search the Struts 2 mailing list. If you donât find an answer to your problem, post a question on the mailing list. +The http://struts.apache.org/mail.html";>Struts 2 user mailing list is an excellent place to get help. If you are +having a problem getting the tutorial example applications to work search the Struts 2 mailing list. If you donât find +an answer to your problem, post a question on the mailing list. Forms and a Java model class -For this tutorial letâs say we need to provide a form that a user may submit to register for a prize drawing. Our business rules state the user must provide his/her first name, last name, email address, and age. +For this tutorial letâs say we need to provide a form that a user may submit to register for a prize drawing. Our +business rules state the user must provide his/her first name, last name, email address, and age. -To encapsulate this data, weâll use a simple Java class that follows the basic Java Bean specifications (public set/get methods for each instance field). If youâre following along add this class to the package org.apache.struts.register.model in the Coding Struts 2 Actions example. +To encapsulate this data, weâll use a simple Java class that follows the basic Java Bean specifications (public set/get +methods for each instance field). If youâre following along add this class to the package org.apache.struts.register.model +in the Coding Struts 2 Actions example. Person.java @@ -195,11 +200,16 @@ -Note a few points about the above class. There is a public set/get method for eac
struts-site git commit: Changes output to the target folder
Repository: struts-site Updated Branches: refs/heads/master 6ff7bb27a -> 6d54e8eae Changes output to the target folder Project: http://git-wip-us.apache.org/repos/asf/struts-site/repo Commit: http://git-wip-us.apache.org/repos/asf/struts-site/commit/6d54e8ea Tree: http://git-wip-us.apache.org/repos/asf/struts-site/tree/6d54e8ea Diff: http://git-wip-us.apache.org/repos/asf/struts-site/diff/6d54e8ea Branch: refs/heads/master Commit: 6d54e8eaeb971918384df8327341a04b84b295ba Parents: 6ff7bb2 Author: Lukasz Lenart Authored: Sun Jul 30 13:19:42 2017 +0200 Committer: Lukasz Lenart Committed: Sun Jul 30 13:19:42 2017 +0200 -- _config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- http://git-wip-us.apache.org/repos/asf/struts-site/blob/6d54e8ea/_config.yml -- diff --git a/_config.yml b/_config.yml index d2bffbf..de8e65c 100644 --- a/_config.yml +++ b/_config.yml @@ -2,7 +2,7 @@ name: Apache Struts markdown: kramdown markdown_ext: md source: source -destination:content +destination:target/content encoding: UTF-8 highlighter:rouge kramdown: