You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by rm...@apache.org on 2021/04/22 15:11:44 UTC

svn commit: r1074088 - in /websites/production/openwebbeans/content/meecrowave: ./ assets/css/ assets/js/ meecrowave-core/ meecrowave-gradle/ meecrowave-jpa/ meecrowave-jta/ meecrowave-letsencrypt/ meecrowave-maven/ meecrowave-oauth2/ meecrowave-proxy/...

Author: rmannibucau
Date: Thu Apr 22 15:11:44 2021
New Revision: 1074088

Log:
Site checkin for project Meecrowave :: Doc

Modified:
    websites/production/openwebbeans/content/meecrowave/assets/css/styles.css
    websites/production/openwebbeans/content/meecrowave/assets/js/main.js
    websites/production/openwebbeans/content/meecrowave/community.pdf
    websites/production/openwebbeans/content/meecrowave/companion-projects.pdf
    websites/production/openwebbeans/content/meecrowave/components.pdf
    websites/production/openwebbeans/content/meecrowave/download.pdf
    websites/production/openwebbeans/content/meecrowave/howto.pdf
    websites/production/openwebbeans/content/meecrowave/meecrowave-core/cli.pdf
    websites/production/openwebbeans/content/meecrowave/meecrowave-core/configuration.pdf
    websites/production/openwebbeans/content/meecrowave/meecrowave-core/deploy-webapp.pdf
    websites/production/openwebbeans/content/meecrowave/meecrowave-gradle/index.pdf
    websites/production/openwebbeans/content/meecrowave/meecrowave-jpa/index.pdf
    websites/production/openwebbeans/content/meecrowave/meecrowave-jta/index.pdf
    websites/production/openwebbeans/content/meecrowave/meecrowave-letsencrypt/index.pdf
    websites/production/openwebbeans/content/meecrowave/meecrowave-maven/index.pdf
    websites/production/openwebbeans/content/meecrowave/meecrowave-oauth2/index.pdf
    websites/production/openwebbeans/content/meecrowave/meecrowave-proxy/index.pdf
    websites/production/openwebbeans/content/meecrowave/meecrowave-websocket/index.pdf
    websites/production/openwebbeans/content/meecrowave/start.pdf
    websites/production/openwebbeans/content/meecrowave/testing/index.html
    websites/production/openwebbeans/content/meecrowave/testing/index.pdf

Modified: websites/production/openwebbeans/content/meecrowave/assets/css/styles.css
==============================================================================
--- websites/production/openwebbeans/content/meecrowave/assets/css/styles.css (original)
+++ websites/production/openwebbeans/content/meecrowave/assets/css/styles.css Thu Apr 22 15:11:44 2021
@@ -1260,4 +1260,68 @@ select {
 
 pre {
     padding: 0;
+}
+
+
+}
+.admonitionblock td.content > :first-child {
+  margin: 0;
+}
+.admonitionblock {
+  margin-bottom: 1rem;
+}
+.admonitionblock > table {
+  padding-top: 1rem;
+  padding-bottom: 1rem;
+  width: 100%;
+  height: 100%;
+  position: relative;
+  display: block;
+  /*border: 1px solid #c6c6c6;
+  border-radius: 5px;*/
+}
+.admonitionblock td.content > code {
+  background-color: unset !important;
+  color: unset !important;
+}
+.admonitionblock td.content {
+  display: block;
+  width: 100%;
+  padding: 0.5rem;
+}
+.admonitionblock .icon {
+  padding-right: 0.6rem;
+  padding-top: 0.5rem;
+}
+.admonitionblock .icon i {
+  display: inline-flex;
+  align-items: center;
+  height: 100%;
+}
+.admonitionblock .icon i::after {
+  content: attr(title);
+  hyphens: none;
+}
+.icon-important:before, .icon-note:before, .icon-tip:before, .icon-warning:before {
+    font-size: 1em;
+}
+.icon-important:before {
+    content: "\f06a";
+    font-family: "Font Awesome 5 Free";
+    color: #e96065;
+}
+.icon-note:before {
+    content: "\f05a";
+    font-family: "Font Awesome 5 Free";
+    color: #0675c1;
+}
+.icon-tip:before {
+    content: "\f059";
+    font-family: "Font Awesome 5 Free";
+    color: #6ec01e;
+}
+.icon-warning:before {
+    content: "\f071";
+    font-family: "Font Awesome 5 Free";
+    color: #ffc300;
 }
\ No newline at end of file

Modified: websites/production/openwebbeans/content/meecrowave/assets/js/main.js
==============================================================================
--- websites/production/openwebbeans/content/meecrowave/assets/js/main.js (original)
+++ websites/production/openwebbeans/content/meecrowave/assets/js/main.js Thu Apr 22 15:11:44 2021
@@ -46,4 +46,30 @@ $(document).ready(function() {
     });    
 
     hljs.initHighlightingOnLoad();
+
+    // set admonitionblock custom theme
+    // drop titles from <i> to not pollute the ui with pointless text
+    function setAdmonitionStyle(item, color) {
+      var i = $(item);
+      i.css('border-left', '1.5px solid ' + color);
+      i.css('padding-left', '2rem');
+      i.css('background-color', color + '10');
+      i.css('color', color);
+    }
+    $('div.admonitionblock td.icon > i.fa').each(function (idx, item) {
+      item.title = '';
+  
+      var jItem = $(item);
+      jItem.addClass('fa-lg');
+      var content = jItem.parent().parent().find('td.content');
+      if (jItem.hasClass('icon-important')) {
+          setAdmonitionStyle(content, '#e96065');
+      } else if (jItem.hasClass('icon-note')) {
+          setAdmonitionStyle(content, '#0675c1');
+      } else if (jItem.hasClass('icon-warning')) {
+          setAdmonitionStyle(content, '#ffc300');
+      } else {
+          setAdmonitionStyle(content, '#6ec01e');
+      }
+    });
 });
\ No newline at end of file

Modified: websites/production/openwebbeans/content/meecrowave/community.pdf
==============================================================================
Binary files - no diff available.

Modified: websites/production/openwebbeans/content/meecrowave/companion-projects.pdf
==============================================================================
Binary files - no diff available.

Modified: websites/production/openwebbeans/content/meecrowave/components.pdf
==============================================================================
Binary files - no diff available.

Modified: websites/production/openwebbeans/content/meecrowave/download.pdf
==============================================================================
Binary files - no diff available.

Modified: websites/production/openwebbeans/content/meecrowave/howto.pdf
==============================================================================
--- websites/production/openwebbeans/content/meecrowave/howto.pdf (original)
+++ websites/production/openwebbeans/content/meecrowave/howto.pdf Thu Apr 22 15:11:44 2021
@@ -4,8 +4,8 @@
 << /Title (Howto)
 /Creator (Asciidoctor PDF 1.5.0.alpha.16, based on Prawn 2.2.2)
 /Producer (Asciidoctor PDF 1.5.0.alpha.16, based on Prawn 2.2.2)
-/ModDate (D:20210422163959+02'00')
-/CreationDate (D:20210422163959+02'00')
+/ModDate (D:20210422171129+02'00')
+/CreationDate (D:20210422171129+02'00')
 >>
 endobj
 2 0 obj

Modified: websites/production/openwebbeans/content/meecrowave/meecrowave-core/cli.pdf
==============================================================================
Binary files - no diff available.

Modified: websites/production/openwebbeans/content/meecrowave/meecrowave-core/configuration.pdf
==============================================================================
Binary files - no diff available.

Modified: websites/production/openwebbeans/content/meecrowave/meecrowave-core/deploy-webapp.pdf
==============================================================================
--- websites/production/openwebbeans/content/meecrowave/meecrowave-core/deploy-webapp.pdf (original)
+++ websites/production/openwebbeans/content/meecrowave/meecrowave-core/deploy-webapp.pdf Thu Apr 22 15:11:44 2021
@@ -4,8 +4,8 @@
 << /Title (Meecrowave and webapps)
 /Creator (Asciidoctor PDF 1.5.0.alpha.16, based on Prawn 2.2.2)
 /Producer (Asciidoctor PDF 1.5.0.alpha.16, based on Prawn 2.2.2)
-/ModDate (D:20210422163959+02'00')
-/CreationDate (D:20210422163959+02'00')
+/ModDate (D:20210422171129+02'00')
+/CreationDate (D:20210422171129+02'00')
 >>
 endobj
 2 0 obj

Modified: websites/production/openwebbeans/content/meecrowave/meecrowave-gradle/index.pdf
==============================================================================
Binary files - no diff available.

Modified: websites/production/openwebbeans/content/meecrowave/meecrowave-jpa/index.pdf
==============================================================================
Binary files - no diff available.

Modified: websites/production/openwebbeans/content/meecrowave/meecrowave-jta/index.pdf
==============================================================================
Binary files - no diff available.

Modified: websites/production/openwebbeans/content/meecrowave/meecrowave-letsencrypt/index.pdf
==============================================================================
Binary files - no diff available.

Modified: websites/production/openwebbeans/content/meecrowave/meecrowave-maven/index.pdf
==============================================================================
Binary files - no diff available.

Modified: websites/production/openwebbeans/content/meecrowave/meecrowave-oauth2/index.pdf
==============================================================================
Binary files - no diff available.

Modified: websites/production/openwebbeans/content/meecrowave/meecrowave-proxy/index.pdf
==============================================================================
--- websites/production/openwebbeans/content/meecrowave/meecrowave-proxy/index.pdf (original)
+++ websites/production/openwebbeans/content/meecrowave/meecrowave-proxy/index.pdf Thu Apr 22 15:11:44 2021
@@ -4,8 +4,8 @@
 << /Title (Meecrowave Proxy)
 /Creator (Asciidoctor PDF 1.5.0.alpha.16, based on Prawn 2.2.2)
 /Producer (Asciidoctor PDF 1.5.0.alpha.16, based on Prawn 2.2.2)
-/ModDate (D:20210422163959+02'00')
-/CreationDate (D:20210422163959+02'00')
+/ModDate (D:20210422171129+02'00')
+/CreationDate (D:20210422171129+02'00')
 >>
 endobj
 2 0 obj

Modified: websites/production/openwebbeans/content/meecrowave/meecrowave-websocket/index.pdf
==============================================================================
--- websites/production/openwebbeans/content/meecrowave/meecrowave-websocket/index.pdf (original)
+++ websites/production/openwebbeans/content/meecrowave/meecrowave-websocket/index.pdf Thu Apr 22 15:11:44 2021
@@ -4,8 +4,8 @@
 << /Title (Meecrowave WebSocket)
 /Creator (Asciidoctor PDF 1.5.0.alpha.16, based on Prawn 2.2.2)
 /Producer (Asciidoctor PDF 1.5.0.alpha.16, based on Prawn 2.2.2)
-/ModDate (D:20210422163959+02'00')
-/CreationDate (D:20210422163959+02'00')
+/ModDate (D:20210422171129+02'00')
+/CreationDate (D:20210422171129+02'00')
 >>
 endobj
 2 0 obj

Modified: websites/production/openwebbeans/content/meecrowave/start.pdf
==============================================================================
Binary files - no diff available.

Modified: websites/production/openwebbeans/content/meecrowave/testing/index.html
==============================================================================
--- websites/production/openwebbeans/content/meecrowave/testing/index.html (original)
+++ websites/production/openwebbeans/content/meecrowave/testing/index.html Thu Apr 22 15:11:44 2021
@@ -304,7 +304,7 @@ Having the longest life time for the con
       &lt;property name="ssl"&gt;false&lt;/property&gt;
       &lt;property name="sslProtocol"&gt;&lt;/property&gt;
       &lt;property name="stopPort"&gt;-1&lt;/property&gt;
-      &lt;property name="tempDir"&gt;/tmp/meecrowave_31991238835692&lt;/property&gt;
+      &lt;property name="tempDir"&gt;/tmp/meecrowave_33882204978728&lt;/property&gt;
       &lt;property name="tomcatAccessLogPattern"&gt;&lt;/property&gt;
       &lt;property name="tomcatAutoSetup"&gt;true&lt;/property&gt;
       &lt;property name="tomcatFilter"&gt;&lt;/property&gt;

Modified: websites/production/openwebbeans/content/meecrowave/testing/index.pdf
==============================================================================
Binary files - no diff available.