You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zr...@apache.org on 2019/08/09 13:49:36 UTC

[camel-website] branch master updated (622a7b5 -> 3ccc77b)

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

zregvart pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-website.git.


    from 622a7b5  fix: link in the articles
     new 6b1d49a  new: breadcrumbs.html
     new 30d59c9   new: breadcrumbs.html
     new 22c9262  Update layouts/partials/breadcrumbs.html
     new 2bed175  Update layouts/partials/breadcrumbs.html
     new f446893  Update layouts/partials/breadcrumbs.html
     new 5683365  Update layouts/partials/breadcrumbs.html
     new 7b829c4  Update layouts/partials/breadcrumbs.html
     new e8e2158  Update layouts/partials/breadcrumbs.html
     new 3ccc77b  Update layouts/partials/breadcrumbs.html

The 9 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.


Summary of changes:
 layouts/partials/breadcrumbs.html | 26 ++++++++++++++++++++++++++
 layouts/partials/footer.html      |  1 +
 2 files changed, 27 insertions(+)
 create mode 100644 layouts/partials/breadcrumbs.html


[camel-website] 08/09: Update layouts/partials/breadcrumbs.html

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

zregvart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-website.git

commit e8e2158002b35916813f841d1f9780fd63ecb700
Author: Nayananga Anuradha Muhandiram <na...@gmail.com>
AuthorDate: Fri Aug 9 18:52:53 2019 +0530

    Update layouts/partials/breadcrumbs.html
    
    Co-Authored-By: Zoran Regvart <zo...@regvart.com>
---
 layouts/partials/breadcrumbs.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/layouts/partials/breadcrumbs.html b/layouts/partials/breadcrumbs.html
index 70e82c7..8441324 100644
--- a/layouts/partials/breadcrumbs.html
+++ b/layouts/partials/breadcrumbs.html
@@ -18,7 +18,7 @@
         "@type": "ListItem",
         "position": {{ .position }},
         "item": {
-          "@id": "{{ .url }}",
+          "@id": {{ .url }},
           "name": "{{ .name }}"
         }
     }{{ end }}]


[camel-website] 03/09: Update layouts/partials/breadcrumbs.html

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

zregvart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-website.git

commit 22c9262b15d47ffd3595efffcb7fff3e925bf5da
Author: Nayananga Anuradha Muhandiram <na...@gmail.com>
AuthorDate: Fri Aug 9 18:51:52 2019 +0530

    Update layouts/partials/breadcrumbs.html
    
    Co-Authored-By: Zoran Regvart <zo...@regvart.com>
---
 layouts/partials/breadcrumbs.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/layouts/partials/breadcrumbs.html b/layouts/partials/breadcrumbs.html
index e61ed0e..9e4e69a 100644
--- a/layouts/partials/breadcrumbs.html
+++ b/layouts/partials/breadcrumbs.html
@@ -7,7 +7,7 @@
 {{ $.Scratch.Add "path" "/" }}
 {{ if ne $element "" }}
 {{ $.Scratch.Add "breadcrumb" (slice (dict "url" ($.Scratch.Get "path") "name" . "position" (add $index 2))) }}
-{{ end }}
+  {{ end }}
 {{ end }}
 
 <script type="application/ld+json">


[camel-website] 01/09: new: breadcrumbs.html

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

zregvart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-website.git

commit 6b1d49a8afda7d37d0eb0d66ffa2b9fb8eb091d0
Author: nayananga@acerubuntu18.04 <na...@gmail.com>
AuthorDate: Fri Aug 9 03:56:36 2019 +0530

    new: breadcrumbs.html
---
 layouts/partials/breadcrumbs.html | 26 ++++++++++++++++++++++++++
 layouts/partials/footer.html      |  1 +
 2 files changed, 27 insertions(+)

diff --git a/layouts/partials/breadcrumbs.html b/layouts/partials/breadcrumbs.html
new file mode 100644
index 0000000..86c4da6
--- /dev/null
+++ b/layouts/partials/breadcrumbs.html
@@ -0,0 +1,26 @@
+{{ $url := replace .Permalink ( printf "%s" .Site.BaseURL) "" }}
+{{ $.Scratch.Add "path" .Site.BaseURL }}
+
+{{ $.Scratch.Add "breadcrumb" (slice (dict "url" .Site.BaseURL "name" "home" "position" 1 )) }}
+{{ range $index, $element := split $url "/" }}
+{{ $.Scratch.Add "path" $element }}
+{{ $.Scratch.Add "path" "/" }}
+{{ if ne $element "" }}
+{{ $.Scratch.Add "breadcrumb" (slice (dict "url" ($.Scratch.Get "path") "name" . "position" (add $index 2))) }}
+{{ end }}
+{{ end }}
+
+<script type="application/ld+json">
+{
+  "@context": "http://schema.org",
+  "@type": "BreadcrumbList",
+  "itemListElement": [{{ range $.Scratch.Get "breadcrumb" }}{{ if ne .position 1 }},{{ end }}{
+        "@type": "ListItem",
+        "position": {{ .position }},
+        "item": {
+          "@id": "{{ .url }}",
+          "name": "{{ .name }}"
+        }
+    }{{ end }}]
+}
+</script>
\ No newline at end of file
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 633ed2e..a755141 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -62,5 +62,6 @@
           "description": "Apache Camel ™ is a versatile open-source integration framework based on known Enterprise Integration Patterns. Camel empowers you to define routing and mediation rules in a variety of domain-specific languages, including a Java-based Fluent API, Spring or Blueprint XML Configuration files, and a Scala DSL."
         }
     </script>
+    {{ partial "breadcrumbs.html" . }}
 </body>
 </html>


[camel-website] 02/09: new: breadcrumbs.html

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

zregvart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-website.git

commit 30d59c9a17846f52611e896f27a87d33e4a9c639
Author: nayananga@acerubuntu18.04 <na...@gmail.com>
AuthorDate: Fri Aug 9 05:59:03 2019 +0530

     new: breadcrumbs.html
---
 layouts/partials/breadcrumbs.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/layouts/partials/breadcrumbs.html b/layouts/partials/breadcrumbs.html
index 86c4da6..e61ed0e 100644
--- a/layouts/partials/breadcrumbs.html
+++ b/layouts/partials/breadcrumbs.html
@@ -23,4 +23,4 @@
         }
     }{{ end }}]
 }
-</script>
\ No newline at end of file
+</script>


[camel-website] 07/09: Update layouts/partials/breadcrumbs.html

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

zregvart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-website.git

commit 7b829c45884ac68c077d1a9d676c0d14edf9fc31
Author: Nayananga Anuradha Muhandiram <na...@gmail.com>
AuthorDate: Fri Aug 9 18:52:41 2019 +0530

    Update layouts/partials/breadcrumbs.html
    
    Co-Authored-By: Zoran Regvart <zo...@regvart.com>
---
 layouts/partials/breadcrumbs.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/layouts/partials/breadcrumbs.html b/layouts/partials/breadcrumbs.html
index 986c882..70e82c7 100644
--- a/layouts/partials/breadcrumbs.html
+++ b/layouts/partials/breadcrumbs.html
@@ -3,7 +3,7 @@
 
 {{ $.Scratch.Add "breadcrumb" (slice (dict "url" .Site.BaseURL "name" "home" "position" 1 )) }}
 {{ range $index, $element := split $url "/" }}
-{{ $.Scratch.Add "path" $element }}
+  {{ $.Scratch.Add "path" $element }}
   {{ $.Scratch.Add "path" "/" }}
   {{ if ne $element "" }}
     {{ $.Scratch.Add "breadcrumb" (slice (dict "url" ($.Scratch.Get "path") "name" . "position" (add $index 2))) }}


[camel-website] 05/09: Update layouts/partials/breadcrumbs.html

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

zregvart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-website.git

commit f4468938295cf0e22407a2e6d6312e4119bc890c
Author: Nayananga Anuradha Muhandiram <na...@gmail.com>
AuthorDate: Fri Aug 9 18:52:17 2019 +0530

    Update layouts/partials/breadcrumbs.html
    
    Co-Authored-By: Zoran Regvart <zo...@regvart.com>
---
 layouts/partials/breadcrumbs.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/layouts/partials/breadcrumbs.html b/layouts/partials/breadcrumbs.html
index a078efb..360c7a2 100644
--- a/layouts/partials/breadcrumbs.html
+++ b/layouts/partials/breadcrumbs.html
@@ -5,7 +5,7 @@
 {{ range $index, $element := split $url "/" }}
 {{ $.Scratch.Add "path" $element }}
 {{ $.Scratch.Add "path" "/" }}
-{{ if ne $element "" }}
+  {{ if ne $element "" }}
     {{ $.Scratch.Add "breadcrumb" (slice (dict "url" ($.Scratch.Get "path") "name" . "position" (add $index 2))) }}
   {{ end }}
 {{ end }}


[camel-website] 06/09: Update layouts/partials/breadcrumbs.html

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

zregvart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-website.git

commit 56833650d71a90201f57ad164b0d227abf54839e
Author: Nayananga Anuradha Muhandiram <na...@gmail.com>
AuthorDate: Fri Aug 9 18:52:29 2019 +0530

    Update layouts/partials/breadcrumbs.html
    
    Co-Authored-By: Zoran Regvart <zo...@regvart.com>
---
 layouts/partials/breadcrumbs.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/layouts/partials/breadcrumbs.html b/layouts/partials/breadcrumbs.html
index 360c7a2..986c882 100644
--- a/layouts/partials/breadcrumbs.html
+++ b/layouts/partials/breadcrumbs.html
@@ -4,7 +4,7 @@
 {{ $.Scratch.Add "breadcrumb" (slice (dict "url" .Site.BaseURL "name" "home" "position" 1 )) }}
 {{ range $index, $element := split $url "/" }}
 {{ $.Scratch.Add "path" $element }}
-{{ $.Scratch.Add "path" "/" }}
+  {{ $.Scratch.Add "path" "/" }}
   {{ if ne $element "" }}
     {{ $.Scratch.Add "breadcrumb" (slice (dict "url" ($.Scratch.Get "path") "name" . "position" (add $index 2))) }}
   {{ end }}


[camel-website] 09/09: Update layouts/partials/breadcrumbs.html

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

zregvart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-website.git

commit 3ccc77be9c1da5a7889e2e4ca2b430330a073b33
Author: Nayananga Anuradha Muhandiram <na...@gmail.com>
AuthorDate: Fri Aug 9 18:53:03 2019 +0530

    Update layouts/partials/breadcrumbs.html
    
    Co-Authored-By: Zoran Regvart <zo...@regvart.com>
---
 layouts/partials/breadcrumbs.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/layouts/partials/breadcrumbs.html b/layouts/partials/breadcrumbs.html
index 8441324..d1527ff 100644
--- a/layouts/partials/breadcrumbs.html
+++ b/layouts/partials/breadcrumbs.html
@@ -1,4 +1,4 @@
-{{ $url := replace .Permalink ( printf "%s" .Site.BaseURL) "" }}
+{{ $url := replace .Permalink .Site.BaseURL "" }}
 {{ $.Scratch.Add "path" .Site.BaseURL }}
 
 {{ $.Scratch.Add "breadcrumb" (slice (dict "url" .Site.BaseURL "name" "home" "position" 1 )) }}


[camel-website] 04/09: Update layouts/partials/breadcrumbs.html

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

zregvart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-website.git

commit 2bed17595351a9817a4f529f67d8e4d906f32e8f
Author: Nayananga Anuradha Muhandiram <na...@gmail.com>
AuthorDate: Fri Aug 9 18:52:05 2019 +0530

    Update layouts/partials/breadcrumbs.html
    
    Co-Authored-By: Zoran Regvart <zo...@regvart.com>
---
 layouts/partials/breadcrumbs.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/layouts/partials/breadcrumbs.html b/layouts/partials/breadcrumbs.html
index 9e4e69a..a078efb 100644
--- a/layouts/partials/breadcrumbs.html
+++ b/layouts/partials/breadcrumbs.html
@@ -6,7 +6,7 @@
 {{ $.Scratch.Add "path" $element }}
 {{ $.Scratch.Add "path" "/" }}
 {{ if ne $element "" }}
-{{ $.Scratch.Add "breadcrumb" (slice (dict "url" ($.Scratch.Get "path") "name" . "position" (add $index 2))) }}
+    {{ $.Scratch.Add "breadcrumb" (slice (dict "url" ($.Scratch.Get "path") "name" . "position" (add $index 2))) }}
   {{ end }}
 {{ end }}