You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jg...@apache.org on 2019/10/15 11:36:09 UTC

[tomee] branch master updated: translation into portuguese of examples/vaadin-lts-v10 and fixing of jbake information in english version

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 3e403c3  translation into portuguese of examples/vaadin-lts-v10 and fixing of jbake information in english version
     new 4279e54  Merge pull request #588 from marcoantoniobferreira/vaadin-lts-v10-portuguese
3e403c3 is described below

commit 3e403c302cdaefbed48f4bd2c6c109e36e9b8a26
Author: Marco Ferreira <ma...@gmail.com>
AuthorDate: Tue Oct 15 01:14:42 2019 -0300

    translation into portuguese of examples/vaadin-lts-v10 and fixing of jbake information in english version
---
 examples/vaadin-lts-v10-simple/README.adoc    |  4 +++
 examples/vaadin-lts-v10-simple/README_pt.adoc | 41 +++++++++++++++++++++++++++
 2 files changed, 45 insertions(+)

diff --git a/examples/vaadin-lts-v10-simple/README.adoc b/examples/vaadin-lts-v10-simple/README.adoc
index 27943b4..cb5aed4 100644
--- a/examples/vaadin-lts-v10-simple/README.adoc
+++ b/examples/vaadin-lts-v10-simple/README.adoc
@@ -1,5 +1,9 @@
 == Vaadin V10 (LTS) - Simple WebApp in Java
 
+:index-group: Frameworks
+:jbake-type: page
+:jbake-status: published
+
 This demo will show how to start with a simple Vaadin V10 webapp, based
 on pure Java API running on TomEE (webprofile)
 
diff --git a/examples/vaadin-lts-v10-simple/README_pt.adoc b/examples/vaadin-lts-v10-simple/README_pt.adoc
new file mode 100644
index 0000000..38378c7
--- /dev/null
+++ b/examples/vaadin-lts-v10-simple/README_pt.adoc
@@ -0,0 +1,41 @@
+== Vaadin V10 (LTS) - Simples WebApp em Java
+
+:index-group: Frameworks
+:jbake-type: page
+:jbake-status: published
+
+Essa demo vai mostrar como iniciar com uma simples webapp Vaadin V10, baseada na API pura do Java executando no TomEE (webprofile)
+
+A plataforma Vaadin é OpenSource e está disponível em
+https://github.com/vaadin/platform[Github]
+
+=== Construindo esse exemplo
+
+Para construir esse exemplo, apenas execute _mvn clean install tomee:run_ Você vai encontrar o app executando em http://localhost:8080/
+
+=== Implementação
+
+Essa implementação está usando o https://vaadin.com/flow[Flow API] da plataforma Vaadin.
+
+[source,java]
+----
+@Route("")
+public class HelloVaadinV10 extends Composite<Div> {
+    public HelloVaadinV10() {
+        final VerticalLayout layout = new VerticalLayout();
+        layout
+            .add(new Button("click me",
+                            event -> layout.add(new Label("clicked again"))
+            ));
+        //set the main Component
+        getContent().add(layout);
+    }
+}
+----
+
+A documentação da plataforma Vaadin V10 está disponível
+https://vaadin.com/docs/v10/flow/Overview.html[aqui]
+
+=== Informações de suporte
+
+A partir do Vaadin 10, o Vaadin está se mudando para o modelo de release train com quatro grandes releases por ano. Isso permite que eles enviem novas features mais rapidamente para os desenvolvedores. O Vaadin continua seu compromisso com a estabilidade a longo prazo com os releases long-term support (LTS). Os releases LTs vão sair aproximadamente a cada 2 anos e vão oferecer 5 anos de suporte.