You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2022/08/03 20:18:31 UTC

[brooklyn-docs] branch master updated (0434a2e8 -> e3437ac8)

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

heneveld pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-docs.git


    from 0434a2e8 Merge branch 'certs'
     new a72c43fa Fix url to cli-ps-findimage in Azure locations
     new 8410451c Correct link to Externalised Configuration] on Detailed Support Report page
     new 224b3d17 Check if link is an empty string when evaulating if replaceable
     new ec2928ed Revert "Do not replace relative links on the same page"
     new e3437ac8 Merge remote-tracking branch 'algairim/fixes/locations'

The 5 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:
 _plugins/jekyll_relative_links.rb                    | 4 ++--
 guide/locations/_azure-ARM.md                        | 2 +-
 guide/ops/troubleshooting/detailed-support-report.md | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)


[brooklyn-docs] 05/05: Merge remote-tracking branch 'algairim/fixes/locations'

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

heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-docs.git

commit e3437ac8702482d746a2d42046059d7c47168ca0
Merge: 0434a2e8 ec2928ed
Author: Alex Heneveld <al...@cloudsoft.io>
AuthorDate: Wed Aug 3 21:18:23 2022 +0100

    Merge remote-tracking branch 'algairim/fixes/locations'

 _plugins/jekyll_relative_links.rb                    | 4 ++--
 guide/locations/_azure-ARM.md                        | 2 +-
 guide/ops/troubleshooting/detailed-support-report.md | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)


[brooklyn-docs] 02/05: Correct link to Externalised Configuration] on Detailed Support Report page

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

heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-docs.git

commit 8410451c832fe746ec8e97e02b2c53b537144217
Author: Mykola Mandra <my...@cloudsoft.io>
AuthorDate: Thu Jul 28 14:48:42 2022 +0100

    Correct link to Externalised Configuration] on Detailed Support Report page
    
    Signed-off-by: Mykola Mandra <my...@cloudsoft.io>
---
 guide/ops/troubleshooting/detailed-support-report.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guide/ops/troubleshooting/detailed-support-report.md b/guide/ops/troubleshooting/detailed-support-report.md
index 7cbcd855..ca7a9835 100644
--- a/guide/ops/troubleshooting/detailed-support-report.md
+++ b/guide/ops/troubleshooting/detailed-support-report.md
@@ -38,6 +38,6 @@ tar czf brooklyn-report.tgz ${REPORT_DIR}
 
 Also consider providing your log files and persisted state, though extreme care should be taken if
 these might contain cloud or machine credentials (especially if 
-[Externalised Configuration](/guide/ops/externalized-configuration) 
+[Externalised Configuration](/guide/ops/externalized-configuration.md) 
 is not being used for credential storage).
 


[brooklyn-docs] 03/05: Check if link is an empty string when evaulating if replaceable

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

heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-docs.git

commit 224b3d172996cd8ecd2858615b514e5d9ba930d3
Author: Mykola Mandra <my...@cloudsoft.io>
AuthorDate: Fri Jul 29 17:44:44 2022 +0100

    Check if link is an empty string when evaulating if replaceable
    
    Signed-off-by: Mykola Mandra <my...@cloudsoft.io>
---
 _plugins/jekyll_relative_links.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/_plugins/jekyll_relative_links.rb b/_plugins/jekyll_relative_links.rb
index 3beb1380..852981b4 100644
--- a/_plugins/jekyll_relative_links.rb
+++ b/_plugins/jekyll_relative_links.rb
@@ -238,7 +238,7 @@ module JekyllRelativeLinks
     end
 
     def replaceable_link?(string)
-      !fragment?(string) && !absolute_url?(string)
+      !fragment?(string) && !absolute_url?(string) && string != ""
     end
 
     def option(key)


[brooklyn-docs] 01/05: Fix url to cli-ps-findimage in Azure locations

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

heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-docs.git

commit a72c43fa47121571b72282d6cc3927b4212efc59
Author: Mykola Mandra <my...@cloudsoft.io>
AuthorDate: Thu Jul 28 13:45:58 2022 +0100

    Fix url to cli-ps-findimage in Azure locations
    
    Signed-off-by: Mykola Mandra <my...@cloudsoft.io>
---
 guide/locations/_azure-ARM.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guide/locations/_azure-ARM.md b/guide/locations/_azure-ARM.md
index 72758eed..08552c9f 100644
--- a/guide/locations/_azure-ARM.md
+++ b/guide/locations/_azure-ARM.md
@@ -156,7 +156,7 @@ use the Azure Compute ARM location. These are:
 
     jclouds.azurecompute.arm.publishers: OpenLogic
 
-The publishers is any item from the list available here: [https://docs.microsoft.com/en-us/azure/virtual-machines/virtual-machines-linux-cli-ps-findimage](https://docs.microsoft.com/en-us/azure/virtual-machines/virtual-machines-linux-cli-ps-findimage)
+The publishers is any item from the list available here: [https://docs.microsoft.com/en-us/azure/virtual-machines/linux/cli-ps-findimage](https://docs.microsoft.com/en-us/azure/virtual-machines/linux/cli-ps-findimage)
     
     region: southeastasia    
 


[brooklyn-docs] 04/05: Revert "Do not replace relative links on the same page"

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

heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-docs.git

commit ec2928ede921aac6d3f7daed44a5a697082d8053
Author: Mykola Mandra <my...@cloudsoft.io>
AuthorDate: Fri Jul 29 17:45:05 2022 +0100

    Revert "Do not replace relative links on the same page"
    
    This reverts commit 7e230256b2a471ccb567a5446b10a2c2d9601303.
---
 _plugins/jekyll_relative_links.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/_plugins/jekyll_relative_links.rb b/_plugins/jekyll_relative_links.rb
index 852981b4..65061611 100644
--- a/_plugins/jekyll_relative_links.rb
+++ b/_plugins/jekyll_relative_links.rb
@@ -114,7 +114,7 @@ module JekyllRelativeLinks
         else
           next original unless replaceable_link?(link.path)
 
-          path = path_from_root(relative_to_path, url_base)
+          path = path_from_root(link.path, url_base)
           url  = url_for_path(path, relative_to_path)
 
           next original unless url