[whimsy] branch master updated: simplify label

2022-05-31 Thread rubys
This is an automated email from the ASF dual-hosted git repository.

rubys pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
 new be191c95 simplify label
be191c95 is described below

commit be191c9544653da81d356c7ad60d891b8eb673d7
Author: Sam Ruby 
AuthorDate: Tue May 31 20:58:46 2022 -0400

simplify label
---
 www/project/icla2/views/form.erb | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/www/project/icla2/views/form.erb b/www/project/icla2/views/form.erb
index 16c9dcea..0668f79d 100644
--- a/www/project/icla2/views/form.erb
+++ b/www/project/icla2/views/form.erb
@@ -6,8 +6,10 @@
 
   
 
-  What is your name?
-  
+  What is your name?
+
+  
+
   
 
   



[whimsy] branch master updated: add a skeleton of a new icla application

2022-05-31 Thread rubys
This is an automated email from the ASF dual-hosted git repository.

rubys pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
 new 25483ad1 add a skeleton of a new icla application
25483ad1 is described below

commit 25483ad1b31bb64a52db09edd924646cd62a4d5f
Author: Sam Ruby 
AuthorDate: Tue May 31 20:44:10 2022 -0400

add a skeleton of a new icla application
---
 www/project/icla2/main.rb  | 13 +
 www/project/icla2/views/answer.erb | 10 ++
 www/project/icla2/views/form.erb   | 14 ++
 www/project/icla2/views/index.erb  | 10 ++
 4 files changed, 47 insertions(+)

diff --git a/www/project/icla2/main.rb b/www/project/icla2/main.rb
new file mode 100755
index ..d4386b6f
--- /dev/null
+++ b/www/project/icla2/main.rb
@@ -0,0 +1,13 @@
+require 'sinatra'
+
+get '/' do
+  erb :index
+end
+
+get '/form' do
+  erb :form
+end
+
+post '/answer' do
+  erb :answer
+end
diff --git a/www/project/icla2/views/answer.erb 
b/www/project/icla2/views/answer.erb
new file mode 100644
index ..988e2d5f
--- /dev/null
+++ b/www/project/icla2/views/answer.erb
@@ -0,0 +1,10 @@
+
+
+  
+ICLA Demo
+  
+
+  
+Hello <%= params[:name] %>.
+  
+
diff --git a/www/project/icla2/views/form.erb b/www/project/icla2/views/form.erb
new file mode 100644
index ..16c9dcea
--- /dev/null
+++ b/www/project/icla2/views/form.erb
@@ -0,0 +1,14 @@
+
+
+  
+ICLA Demo
+  
+
+  
+
+  What is your name?
+  
+  
+
+  
+
diff --git a/www/project/icla2/views/index.erb 
b/www/project/icla2/views/index.erb
new file mode 100644
index ..d8acd158
--- /dev/null
+++ b/www/project/icla2/views/index.erb
@@ -0,0 +1,10 @@
+
+
+  
+ICLA Demo
+  
+
+  
+Click on the following: link.
+  
+