This is an automated email from the ASF dual-hosted git repository.

andreww pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-docs.git


The following commit(s) were added to refs/heads/develop by this push:
     new e95cd5c  Update application-tutorial.md
e95cd5c is described below

commit e95cd5c68cb26e2f3d14a34d794c0fda96ca3670
Author: Andrew Wetmore <[email protected]>
AuthorDate: Thu Feb 1 14:11:25 2018 -0400

    Update application-tutorial.md
    
    Made some layout changes.
---
 create-an-application/application-tutorial.md | 34 ++++++++++++++-------------
 1 file changed, 18 insertions(+), 16 deletions(-)

diff --git a/create-an-application/application-tutorial.md 
b/create-an-application/application-tutorial.md
index 690bd43..31ad58c 100644
--- a/create-an-application/application-tutorial.md
+++ b/create-an-application/application-tutorial.md
@@ -19,41 +19,43 @@ title: Tutorial - GitHub Commit Log Application
 ---
 # Tutorial - GitHub Commit Log Application
 
-This tutorial will take you through building an app that displays the commit 
logs for the Royale project by connecting to the GitHub servers.
+This tutorial will take you through building an app that displays the commit 
logs for the Royale project by connecting to the <a href="https://github.com/"; 
target="_blank">GitHub</a> servers.
 
-The steps in this tutorial start with a blank file and walk you through what 
to add and why.  Or you can get the complete source 
[here.](https://github.com/apache/royale-asjs/blob/develop/examples/express/GitHubCommitLogViewer){:target='_blank'}
  Note that Royale examples are setup to build with Maven so the folder 
structure reflects that.
+The steps in this tutorial start with a blank file and walk you through what 
to add and why. Or you can get the complete source 
[here](https://github.com/apache/royale-asjs/blob/develop/examples/express/GitHubCommitLogViewer){:target='_blank'}.
 Note that Royale examples are set up to build with <a 
href="https://maven.apache.org/"; target="_blank">Apache Maven</a> so the folder 
structure reflects that. There are other ways to organize your code.
 
 The first six segments will result in a functional application.
 
-[The Main Application 
File](create-an-application/application-tutorial/main.html) This segment starts 
filling in the main application file.
+1. [The Main Application 
File](create-an-application/application-tutorial/main.html) This segment starts 
filling in the main application file.
 
-[Data Model](create-an-application/application-tutorial/data.html)  This 
segment adds the code that manages the data in the application, including 
network access to GitHub.
+2. [Data Model](create-an-application/application-tutorial/data.html) This 
segment adds the code that manages the data in the application, including 
network access to GitHub.
 
-[View (User Interface)](create-an-application/application-tutorial/view.html)  
This segment builds out the initial user interface.
+3. [View (User 
Interface)](create-an-application/application-tutorial/view.html) This segment 
builds out the initial user interface.
 
-[Controller](create-an-application/application-tutorial/controller.html)  This 
segment hooks up the user interface to code that responds to the user's 
interactions.'
+4. [Controller](create-an-application/application-tutorial/controller.html) 
This segment hooks up the user interface to code that responds to the user's 
interactions.
 
-[Build](create-an-application/application-tutorial/build.html)  This segment 
gets the code to compile.
+5. [Build](create-an-application/application-tutorial/build.html) This segment 
gets the code to compile.
 
-[Run](create-an-application/application-tutorial/deploy.html)  This segment 
discusses how to view the results.
+6. [Run](create-an-application/application-tutorial/deploy.html) This segment 
discusses how to view the results.
 
 The next four segments will discuss further improvements needed to make a 
production-ready version.
 
-[Debugging](create-an-application/application-tutorial/debug.html)  This 
segment introduces a couple of techniques for figuring out why your app isn't 
working as expected.'
+7. [Debugging](create-an-application/application-tutorial/debug.html) This 
segment introduces a couple of techniques for figuring out why your app isn't 
working as expected.
 
-[Security](create-an-application/application-tutorial/security.html)  This 
segment discusses how to deal with network access to other domains.
+8. [Security](create-an-application/application-tutorial/security.html) This 
segment discusses how to deal with network access to other domains.
 
-[Production](create-an-application/application-tutorial/production.html)  This 
segment discusses the differences between a development version and a 
production version of an app.
+9. [Production](create-an-application/application-tutorial/production.html) 
This segment discusses the differences between a development version and a 
production version of an app.
 
-[Value Objects](create-an-application/application-tutorial/value-objects.html) 
 This segment explains how Value Object (Data Classes) are useful in 
development and production.
+10. [Value 
Objects](create-an-application/application-tutorial/value-objects.html) This 
segment explains how Value Objects (Data Classes) are useful in development and 
production.
 
 The remaining segments will discuss further improvements needed to add 
additional common functionality.
 
-[Localization](create-an-application/application-tutorial/locales.html)  This 
segment adds the ability to show the user-interface prompts in different 
languages.
+11. [Localization](create-an-application/application-tutorial/locales.html) 
This segment adds the ability to show the user-interface prompts in different 
languages.
 
-[Filters](create-an-application/application-tutorial/filters.html)  This 
segment adds the ability to filter what commits are shown.
+12. [Filters](create-an-application/application-tutorial/filters.html) This 
segment adds the ability to filter what commits are shown.
 
-[Local Storage](create-an-application/application-tutorial/local-storage.html) 
 This segment shows how to store information in a cookie or equivalent in order 
to retain some of the state of the app between runs.
+13. [Local 
Storage](create-an-application/application-tutorial/local-storage.html) This 
segment shows how to store information in a cookie or equivalent in order to 
retain some of the state of the app between runs.
 
-[Routing](create-an-application/application-tutorial/routing.html)  This 
segment shows how to map URL parameters to different initial values in the 
application and vice versa.
+14. [Routing](create-an-application/application-tutorial/routing.html) This 
segment shows how to map URL parameters to different initial values in the 
application, and _vice versa_.
+
+This is going to be fun!
 

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to