2013-06-21 79 views
0

按鈕幫助(?),這應該表明維基語法幫助,顯示「找不到網頁」,並打開陌生的網址(%實體真的存在)管理平臺維基幫助按鈕不工作

 
http://redmine.bisnode.cz/projects/org-redmine-redmine/wiki/Wiki/Form%C3%A1tov%C3%A1n%C3%AD%20textu:%20%3Ca%20href=%22/help/wiki_syntax.html%22%20class=%22help-link%22%20onclick=%22window.open("/help/wiki_syntax.html",%20"",%20"resizable=yes,%20location=no,%20width=300,%20height=640,%20menubar=no,%20status=no,%20scrollbars=yes");%20return%20false;%22%3EN%C3%A1pov%C4%9Bda%3C/a%3E%20&%20%3Ca%20href=%22/plugin_assets/wiking/help/wiki_syntax.html%22%20class=%22help-link%22%20onclick=%22window.open("/plugin_assets/wiking/help/wiki_syntax.html",%20"",%20"resizable=yes,%20location=no,%20width=300,%20height=640,%20menubar=no,%20status=no,%20scrollbars=yes");%20return%20false;%22%3EV%C3%ADce%3C/a%3E 

enter image description here

enter image description here

回答

0

發現了什麼問題 - WikiNG插件。將插件更新到最新版本(來自svn)解決了這個問題。

+1

我沒有更新Wiking插件到最新,BU問題仍然沒有解決:(使用redmine 2.5 – Bren

0

在Redmine Redmine 3.3.0.stable.1233它對我來說。

我解決它通過應用該補丁:

Index: lib/wiking_wiki_helper_patch.rb 
=================================================================== 
--- lib/wiking_wiki_helper_patch.rb (revision 78) 
+++ lib/wiking_wiki_helper_patch.rb (working copy) 
@@ -49,10 +49,10 @@ 

      if defined? ChiliProject 
       url = url_for(:controller => 'help', :action => 'wiki_syntax') 
-   elsif File.exists?(File.join(Rails.root, 'public/help', current_language.to_s.downcase, 'wiki_syntax.html')) 
-    url = "#{Redmine::Utils.relative_url_root}/help/#{current_language.to_s.downcase}/wiki_syntax.html" 
+   elsif File.exists?(File.join(Rails.root, 'public/help', current_language.to_s.downcase, 'wiki_syntax_textile.html')) 
+    url = "#{Redmine::Utils.relative_url_root}/help/#{current_language.to_s.downcase}/wiki_syntax_textile.html" 
      else 
-    url = "#{Redmine::Utils.relative_url_root}/help/wiki_syntax.html" 
+    url = "#{Redmine::Utils.relative_url_root}/help/wiki_syntax_textile.html" 
      end 

      if File.exists?(File.join(Rails.root, 'plugins/wiking/assets/help/', current_language.to_s.downcase, 'wiki_syntax.html')) 

找到在:http://projects.andriylesyuk.com/issues/2403

最好的問候。