You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by an...@apache.org on 2018/12/28 00:47:19 UTC

[royale-docs] branch cottage14-patch-1 created (now 3d6a428)

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

andreww pushed a change to branch cottage14-patch-1
in repository https://gitbox.apache.org/repos/asf/royale-docs.git.


      at 3d6a428  Update Strands and Beads.md

This branch includes the following new commits:

     new 3d6a428  Update Strands and Beads.md

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[royale-docs] 01/01: Update Strands and Beads.md

Posted by an...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 3d6a4281aba4d832e0639063ce300bab0a92a4f5
Author: Andrew Wetmore <an...@cottage14.com>
AuthorDate: Thu Dec 27 20:47:13 2018 -0400

    Update Strands and Beads.md
    
    Building out an explanation of strands and beads; many sections not yet complete.
---
 Welcome/Features/Strands and Beads.md | 22 +++++++++++++++++++++-
 1 file changed, 21 insertions(+), 1 deletion(-)

diff --git a/Welcome/Features/Strands and Beads.md b/Welcome/Features/Strands and Beads.md
index e4f66b2..b68ceb5 100644
--- a/Welcome/Features/Strands and Beads.md	
+++ b/Welcome/Features/Strands and Beads.md	
@@ -20,4 +20,24 @@ title: Strand and Beads
 
 # Strand and Beads
 
-This is a test of Royale Documentation Template
+__This material is not yet complete.__
+
+Strands and beads are key concepts in Royale, related to the [PAYG](https://apache.github.io/royale-docs/Welcome/Features/PAYG.html)  (pay as you go) concept. The idea is to keep component code as lightweight as possible, and to add functionality and complexity only to the components that need it. For example, you may use a lot of text input fields in your application, but only one or two need to be able to protect passwords by converting the display of text the user provides into dots.  [...]
+
+Every component contains the minimum code necessary to perform its basic functions, with a "strand" onto which you can string "beads" of functionality that the component needs to do what you want it to do in a particular place in your application. 
+
+## Finding the beads you need
+
+_How to know what beads are available, and where they are_
+
+## Adding a bead
+
+_Steps for adding a bead_
+
+## Creating a bead
+
+_How to create a bead_
+
+## Strand management
+
+_Adding and removing beads; the significance of bead order_