aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/helpers/application_helper.rb2
-rw-r--r--app/views/help/browser.textile6
-rw-r--r--lib/tasks/userdoc.rake2
3 files changed, 6 insertions, 4 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index a74fa15da..bb8cf84e4 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -56,6 +56,8 @@ module ApplicationHelper
"exports"
when path.include?("/compliance_check_tasks")
"validations"
+ when path.include?("/referentials")
+ "dataspaces"
else
""
end
diff --git a/app/views/help/browser.textile b/app/views/help/browser.textile
index 8796c25cb..e0586a702 100644
--- a/app/views/help/browser.textile
+++ b/app/views/help/browser.textile
@@ -7,9 +7,9 @@ h3. Navigateur prérequis
L’utilisation de l’application nécessite de disposer d’un navigateur ayant les caractéristiques suivantes :
-* Internet Explorer (Version 8 et +)
-* Mozilla FireFox (Version 12 et +)
-* Chrome (Version 8 et +)
+* Internet Explorer (Version 11 et +)
+* Mozilla FireFox (Version 33 et +)
+* Chrome (Version 38 et +)
h3. Paramétrage du navigateur
Le navigateur doit autoriser l’exécution de Javascript.
diff --git a/lib/tasks/userdoc.rake b/lib/tasks/userdoc.rake
index 8f93644c7..626320519 100644
--- a/lib/tasks/userdoc.rake
+++ b/lib/tasks/userdoc.rake
@@ -26,6 +26,7 @@ namespace :doc do
puts "build docx"
Dir.chdir "tmp/doc"
system "pandoc -s -o ../../userdoc.docx temp.textile"
+ Dir.chdir "../.."
if !File.exists?("userdoc.docx")
puts "pandoc failed to produce document"
@@ -35,7 +36,6 @@ namespace :doc do
# clean working directory
puts "clean temp files"
- Dir.chdir "../.."
FileUtils.rm_r("tmp/doc") if File.exist?("tmp/doc")
# end job