From 7cff24aa1b36f70ab26cfb454148ad760ad60c16 Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Fri, 1 Feb 2019 16:02:49 -0500 Subject: [PATCH] Make the Help Browser work --- sleepyhead/help/{ => help_en}/default.css | 0 sleepyhead/help/help_en/index.html | 18 +++++++++--------- sleepyhead/help/help_nl/default.css | 0 sleepyhead/sleepyhead.pro | 10 +++++----- 4 files changed, 14 insertions(+), 14 deletions(-) rename sleepyhead/help/{ => help_en}/default.css (100%) create mode 100644 sleepyhead/help/help_nl/default.css diff --git a/sleepyhead/help/default.css b/sleepyhead/help/help_en/default.css similarity index 100% rename from sleepyhead/help/default.css rename to sleepyhead/help/help_en/default.css diff --git a/sleepyhead/help/help_en/index.html b/sleepyhead/help/help_en/index.html index e035b6b8..5bc8bbfb 100644 --- a/sleepyhead/help/help_en/index.html +++ b/sleepyhead/help/help_en/index.html @@ -1,19 +1,19 @@  - +

Contents

-
  • Introduction
  • -
  • Getting Started
  • -
  • Supported Machines
  • -
  • Importing CPAP Data
  • -
  • Exploring the Daily View
  • -
  • Exploring the Overview
  • -
  • Statistics and Trends
  • -
  • Glossary of Sleep Disorder Terminology
  • +
  • Introduction
  • +
  • Getting Started
  • +
  • Supported Machines
  • +
  • Importing CPAP Data
  • +
  • Exploring the Daily View
  • +
  • Exploring the Overview
  • +
  • Statistics and Trends
  • +
  • Glossary of Sleep Disorder Terminology

  • SleepyHead

    diff --git a/sleepyhead/help/help_nl/default.css b/sleepyhead/help/help_nl/default.css new file mode 100644 index 00000000..e69de29b diff --git a/sleepyhead/sleepyhead.pro b/sleepyhead/sleepyhead.pro index 94c86334..639b476d 100644 --- a/sleepyhead/sleepyhead.pro +++ b/sleepyhead/sleepyhead.pro @@ -137,12 +137,12 @@ for(file, TRANSLATIONS) { } #copy the Translation and Help files to where the test binary wants them +message("Setting up Translations & Help Transfers") macx { HelpFiles.files = $$files($$PWD/help/*.qch) HelpFiles.path = Contents/Resources/Help QMAKE_BUNDLE_DATA += TransFiles QMAKE_BUNDLE_DATA += HelpFiles - message("Setting up Translations & Help Transfers") } else { DDIR = $$OUT_PWD/Translations HELPDIR = $$OUT_PWD/Help @@ -171,11 +171,11 @@ macx { system(mkdir -p $$quote($$HELPDIR)) system(mkdir -p $$quote($$DDIR)) - for(FILE,TRANS_FILES_WIN) { - system(copy $$quote($$FILE) $$quote($$DDIR)) + for(FILE,TRANS_FILES) { + system(cp $$quote($$FILE) $$quote($$DDIR)) } - for(FILE,HELP_FILES_WIN) { - system(copy $$quote($$FILE) $$quote($$HELPDIR)) + for(FILE,HELP_FILES) { + system(cp $$quote($$FILE) $$quote($$HELPDIR)) } } }