1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-18 00:37:59 +01:00

The last of Steve's set of 'essential' patches for 2.0.6, committed as a result of code review and others saying it is OK, rather than full testing.

There are other patches od Steve's awaiting testing.
This commit is contained in:
martynshaw99
2014-08-28 00:24:31 +00:00
parent 07f1c22c38
commit 74763375fc
2 changed files with 39 additions and 14 deletions

View File

@@ -76,12 +76,22 @@ public:
/// Hostname (domain name including subdomain) of the server on which the
/// online help is available
static const wxString HelpHostname;
/// URL path on the help server under which the help pages are located. Must
/// both start and end with '/' characters.
static const wxString HelpServerDir;
/// URL path on the help server under which the development help pages are
/// located. Must both start and end with '/' characters.
static const wxString HelpAlphaDir;
/// URL path on the help server to the root directory of the manual.
/// index and quick_help are here in the on-line release manual.
/// Must both start and end with '/' characters.
static const wxString HelpServerHomeDir;
/// Path to sub-directory where the manual pages are located.
/// index and quick_help are here only in the alpha manual.
/// Must both start and end with '/' characters.
static const wxString HelpServerManDir;
/// Sub-directory for local help pages (but not index.html
/// or quick_help.html)
/// Must both start and end with '/' characters.
static const wxString LocalHelpManDir;
/// The string which is appended to the development manual page name in order
/// obtain the file name in the local and release web copies of the manual
static const wxString ReleaseSuffix;