From aec2aba3a1ae4beb2e3aacb07e576df9f00b687f Mon Sep 17 00:00:00 2001
From: Victor Poughon <victor.poughon@cnes.fr>
Date: Mon, 10 Dec 2018 09:49:12 +0100
Subject: [PATCH] ENH: official doc link to cookbook

---
 .../Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx  | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx
index 97e7bc75ec..d1b657e23a 100644
--- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx
+++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx
@@ -280,9 +280,7 @@ const std::string& Application::GetDocLink() const
 
 void Application::SetOfficialDocLink()
 {
-  std::string link = "http://www.orfeo-toolbox.org/Applications/";
-  link.append(this->GetName());
-  link.append(".html");
+  const std::string link = std::string("https://www.orfeo-toolbox.org/CookBook/Applications/app_") + this->GetName() + ".html";
   this->SetDocLink(link);
 }
 
-- 
GitLab