]> git.lyx.org Git - lyx.git/blob - src/support/Package.cpp
Replace the text class shared ptr by good old index-into-global-list.
[lyx.git] / src / support / Package.cpp
1 // -*- C++ -*-
2 /**
3  * \file package.cpp
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "support/Package.h"
15
16 #include "support/debug.h"
17 #include "support/environment.h"
18 #include "support/ExceptionMessage.h"
19 #include "support/filetools.h"
20 #include "support/gettext.h"
21 #include "support/lstrings.h"
22 #include "support/os.h"
23
24 #if defined (USE_WINDOWS_PACKAGING)
25 # include "support/os_win32.h"
26 #endif
27
28
29 #include <list>
30
31 #if !defined (USE_WINDOWS_PACKAGING) && \
32     !defined (USE_MACOSX_PACKAGING) && \
33     !defined (USE_POSIX_PACKAGING)
34 #error USE_FOO_PACKAGING must be defined for FOO = WINDOWS, MACOSX or POSIX.
35 #endif
36
37 #if defined (USE_MACOSX_PACKAGING)
38 # include <CoreServices/CoreServices.h> // FSFindFolder, FSRefMakePath
39 #endif
40
41 using namespace std;
42
43 namespace lyx {
44 namespace support {
45
46 namespace {
47
48 Package package_;
49 bool initialised_ = false;
50
51 } // namespace anon
52
53
54 void init_package(string const & command_line_arg0,
55                   string const & command_line_system_support_dir,
56                   string const & command_line_user_support_dir,
57                   exe_build_dir_to_top_build_dir top_build_dir_location)
58 {
59         // Can do so only once.
60         if (initialised_)
61                 return;
62
63         package_ = Package(command_line_arg0,
64                            command_line_system_support_dir,
65                            command_line_user_support_dir,
66                            top_build_dir_location);
67         initialised_ = true;
68 }
69
70
71 Package const & package()
72 {
73         // Commented out because package().locale_dir() can be called
74         // from the message translation code in Messages.cpp before
75         // init_package() is called. Lars is on the case...
76         // BOOST_ASSERT(initialised_);
77         return package_;
78 }
79
80
81 namespace {
82
83 FileName const abs_path_from_binary_name(string const & exe);
84
85 void buildDirs(FileName const & abs_binary,
86         exe_build_dir_to_top_build_dir top_build_dir_location,
87         FileName &, FileName &);
88
89 FileName const get_document_dir(FileName const & home_dir);
90
91 FileName const get_home_dir();
92
93 FileName const get_locale_dir(FileName const & system_support_dir);
94
95 FileName const get_system_support_dir(FileName const & abs_binary,
96                                     string const & command_line_system_support_dir);
97
98 FileName const get_temp_dir();
99
100 FileName const get_default_user_support_dir(FileName const & home_dir);
101
102 bool userSupportDir(FileName const & default_user_support_dir,
103                      string const & command_line_user_support_dir, FileName & result);
104
105
106 string const & with_version_suffix();
107
108 } // namespace anon
109
110
111 Package::Package(string const & command_line_arg0,
112                  string const & command_line_system_support_dir,
113                  string const & command_line_user_support_dir,
114                  exe_build_dir_to_top_build_dir top_build_dir_location)
115         : explicit_user_support_dir_(false)
116 {
117         home_dir_ = get_home_dir();
118         system_temp_dir_ = get_temp_dir();
119         temp_dir_ = system_temp_dir_;
120         document_dir_ = get_document_dir(home_dir_);
121
122         FileName const abs_binary = abs_path_from_binary_name(command_line_arg0);
123         string const bdir = onlyPath(abs_binary.absFilename());
124         // We may be using libtools
125         if (suffixIs(bdir, ".libs/"))
126                 binary_dir_ = FileName(addPath(bdir, "../"));
127         else
128                 binary_dir_ = FileName(bdir);
129
130         // Is LyX being run in-place from the build tree?
131         buildDirs(abs_binary, top_build_dir_location,
132                 build_support_dir_, system_support_dir_);
133
134         if (build_support_dir_.empty())
135                 system_support_dir_ =
136                         get_system_support_dir(abs_binary,
137                                                command_line_system_support_dir);
138
139         locale_dir_ = get_locale_dir(system_support_dir_);
140
141         FileName const default_user_support_dir =
142                 get_default_user_support_dir(home_dir_);
143
144         explicit_user_support_dir_ = userSupportDir(default_user_support_dir,
145                                      command_line_user_support_dir, user_support_dir_);
146
147         FileName const configure_script(addName(system_support().absFilename(), "configure.py"));
148         configure_command_ = os::python() + ' ' +
149                         quoteName(configure_script.toFilesystemEncoding()) +
150                         with_version_suffix();
151
152         LYXERR(Debug::INIT, "<package>\n"
153                 << "\tbinary_dir " << binary_dir().absFilename() << '\n'
154                 << "\tsystem_support " << system_support().absFilename() << '\n'
155                 << "\tbuild_support " << build_support().absFilename() << '\n'
156                 << "\tuser_support " << user_support().absFilename() << '\n'
157                 << "\tlocale_dir " << locale_dir().absFilename() << '\n'
158                 << "\tdocument_dir " << document_dir().absFilename() << '\n'
159                 << "\ttemp_dir " << temp_dir().absFilename() << '\n'
160                 << "\thome_dir " << home_dir().absFilename() << '\n'
161                 << "</package>\n");
162 }
163
164
165 namespace {
166
167 // These next functions contain the stuff that is substituted at
168 // configuration-time.
169 FileName const hardcoded_localedir()
170 {
171         // FIXME UNICODE
172         // The build system needs to make sure that this is in utf8 encoding.
173         return FileName(LYX_ABS_INSTALLED_LOCALEDIR);
174 }
175
176
177 FileName const hardcoded_system_support_dir()
178 {
179         // FIXME UNICODE
180         // The build system needs to make sure that this is in utf8 encoding.
181         return FileName(LYX_ABS_INSTALLED_DATADIR);
182 }
183
184
185 string const & with_version_suffix()
186 {
187         static string const program_suffix = PROGRAM_SUFFIX;
188         static string const with_version_suffix =
189                 " --with-version-suffix=" PROGRAM_SUFFIX;
190         return program_suffix.empty() ? program_suffix : with_version_suffix;
191 }
192
193 } // namespace anon
194
195
196 FileName const & Package::top_srcdir()
197 {
198         // FIXME UNICODE
199         // The build system needs to make sure that this is in utf8 encoding.
200         static FileName const dir(LYX_ABS_TOP_SRCDIR);
201         return dir;
202 }
203
204
205 namespace {
206
207 bool check_command_line_dir(string const & dir,
208                             string const & file,
209                             string const & command_line_switch);
210
211 FileName const extract_env_var_dir(string const & env_var);
212
213 bool check_env_var_dir(FileName const & dir,
214                        string const & env_var);
215
216 bool check_env_var_dir(FileName const & dir,
217                        string const & file,
218                        string const & env_var);
219
220 string const relative_locale_dir();
221
222 string const relative_system_support_dir();
223
224
225 /**
226  * Convert \p name to internal path and strip a trailing slash, since it
227  * comes from user input (commandline or environment).
228  * \p name is encoded in utf8.
229  */
230 string const fix_dir_name(string const & name)
231 {
232         return rtrim(os::internal_path(name), "/");
233 }
234
235
236 FileName buildSupportDir(string const & binary_dir,
237                       exe_build_dir_to_top_build_dir top_build_dir_location)
238 {
239         string indirection;
240         switch (top_build_dir_location) {
241         case top_build_dir_is_one_level_up:
242                 indirection = "../lib";
243                 break;
244         case top_build_dir_is_two_levels_up:
245                 indirection = "../../lib";
246                 break;
247         }
248         return FileName(addPath(binary_dir, indirection));
249 }
250
251
252 void buildDirs(FileName const & abs_binary,
253   exe_build_dir_to_top_build_dir top_build_dir_location,
254         FileName & build_support_dir, FileName & system_support_dir)
255 {
256         string const check_text = "Checking whether LyX is run in place...";
257
258         // We're looking for "Makefile" in a directory
259         //   binary_dir/../lib
260         // We're also looking for "chkconfig.ltx" in a directory
261         //   top_srcdir()/lib
262         // If both are found, then we're running LyX in-place.
263
264         // Note that the name of the lyx binary may be a symbolic link.
265         // If that is the case, then we follow the links too.
266         FileName binary = abs_binary;
267         while (true) {
268                 // Try and find "lyxrc.defaults".
269                 string binary_dir = onlyPath(binary.absFilename());
270                 // We may be using libtools with static linking.
271                 if (suffixIs(binary_dir, ".libs/"))
272                         binary_dir = addPath(binary_dir, "../");
273                 build_support_dir = buildSupportDir(binary_dir, top_build_dir_location);
274                 if (!fileSearch(build_support_dir.absFilename(), "Makefile").empty()) {
275                         // Try and find "chkconfig.ltx".
276                         system_support_dir =
277                                 FileName(addPath(Package::top_srcdir().absFilename(), "lib"));
278
279                         if (!fileSearch(system_support_dir.absFilename(), "chkconfig.ltx").empty()) {
280                                 LYXERR(Debug::INIT, check_text << " yes");
281                                 return;
282                         }
283                 }
284
285                 // Check whether binary is a symbolic link.
286                 // If so, resolve it and repeat the exercise.
287                 if (!binary.isSymLink())
288                         break;
289
290                 FileName link;
291                 if (readLink(binary, link)) {
292                         binary = link;
293                 } else {
294                         // Unable to resolve the link.
295                         break;
296                 }
297         }
298
299         LYXERR(Debug::INIT, check_text << " no");
300         system_support_dir = FileName();
301         build_support_dir = FileName();
302 }
303
304
305 // Specification of document_dir_ may be reset by LyXRC,
306 // but the default is fixed for a given OS.
307 FileName const get_document_dir(FileName const & home_dir)
308 {
309 #if defined (USE_WINDOWS_PACKAGING)
310         (void)home_dir; // Silence warning about unused variable.
311         os::GetFolderPath win32_folder_path;
312         return FileName(win32_folder_path(os::GetFolderPath::PERSONAL));
313 #else // Posix-like.
314         return home_dir;
315 #endif
316 }
317
318
319 // The specification of home_dir_ is fixed for a given OS.
320 // A typical example on Windows: "C:/Documents and Settings/USERNAME"
321 // and on a Posix-like machine: "/home/USERNAME".
322 FileName const get_home_dir()
323 {
324 #if defined (USE_WINDOWS_PACKAGING)
325         string const home_dir = getEnv("USERPROFILE");
326 #else // Posix-like.
327         string const home_dir = getEnv("HOME");
328 #endif
329
330         return FileName(fix_dir_name(home_dir));
331 }
332
333
334 // Several sources are probed to ascertain the locale directory.
335 // The only requirement is that the result is indeed a directory.
336 FileName const get_locale_dir(FileName const & system_support_dir)
337 {
338         // 1. Use the "LYX_LOCALEDIR" environment variable.
339         FileName const path_env = extract_env_var_dir("LYX_LOCALEDIR");
340         if (!path_env.empty() && check_env_var_dir(path_env, "LYX_LOCALEDIR"))
341                 return path_env;
342
343         // 2. Search for system_support_dir / <relative locale dir>
344         // The <relative locale dir> is OS-dependent. (On Unix, it will
345         // be "../locale/".)
346         FileName path(addPath(system_support_dir.absFilename(),
347                 relative_locale_dir()));
348
349         if (path.exists() && path.isDirectory())
350                 return path;
351
352         // 3. Fall back to the hard-coded LOCALEDIR.
353         path = hardcoded_localedir();
354         if (path.exists() && path.isDirectory())
355                 return path;
356
357         return FileName();
358 }
359
360
361 // Specification of temp_dir_ may be reset by LyXRC,
362 // but the default is fixed for a given OS.
363 FileName const get_temp_dir()
364 {
365 #if defined (USE_WINDOWS_PACKAGING)
366         // Typical example: C:/TEMP/.
367         char path[MAX_PATH];
368         GetTempPath(MAX_PATH, path);
369         return FileName(to_utf8(from_local8bit(path)));
370 #else // Posix-like.
371         return FileName("/tmp");
372 #endif
373 }
374
375
376 // Extracts the absolute path from the foo of "-sysdir foo" or "-userdir foo"
377 FileName const abs_path_from_command_line(string const & command_line)
378 {
379         if (command_line.empty())
380                 return FileName();
381
382         string const str_path = fix_dir_name(command_line);
383         FileName path(str_path);
384         return path.isAbsolute() ? path : makeAbsPath(str_path);
385 }
386
387
388 // Does the grunt work for abs_path_from_binary_name()
389 FileName const get_binary_path(string const & exe)
390 {
391 #if defined (USE_WINDOWS_PACKAGING)
392         // The executable may have been invoked either with or
393         // without the .exe extension.
394         // Ensure that it is present.
395         string const as_internal_path = os::internal_path(exe);
396         string const exe_path = suffixIs(as_internal_path, ".exe") ?
397                 as_internal_path : as_internal_path + ".exe";
398 #else
399         string const exe_path = os::internal_path(exe);
400 #endif
401         FileName exepath(exe_path);
402         if (exepath.isAbsolute())
403                 return exepath;
404
405         // Two possibilities present themselves.
406         // 1. The binary is relative to the CWD.
407         FileName const abs_exe_path = makeAbsPath(exe_path);
408         if (abs_exe_path.exists())
409                 return abs_exe_path;
410
411         // 2. exe must be the name of the binary only and it
412         // can be found on the PATH.
413         string const exe_name = onlyFilename(exe_path);
414         if (exe_name != exe_path)
415                 return FileName();
416
417         vector<string> const path = getEnvPath("PATH");
418         vector<string>::const_iterator it = path.begin();
419         vector<string>::const_iterator const end = path.end();
420         for (; it != end; ++it) {
421                 // This will do nothing if *it is already absolute.
422                 string const exe_dir = makeAbsPath(*it).absFilename();
423
424                 FileName const exe_path(addName(exe_dir, exe_name));
425                 if (exe_path.exists())
426                         return exe_path;
427         }
428
429         // Didn't find anything.
430         return FileName();
431 }
432
433
434 // Extracts the absolute path to the binary name received as argv[0].
435 FileName const abs_path_from_binary_name(string const & exe)
436 {
437         FileName const abs_binary = get_binary_path(exe);
438         if (abs_binary.empty()) {
439                 // FIXME UNICODE
440                 throw ExceptionMessage(ErrorException,
441                         _("LyX binary not found"),
442                         bformat(_("Unable to determine the path to the LyX binary from the command line %1$s"),
443                                 from_utf8(exe)));
444         }
445         return abs_binary;
446 }
447
448
449 // A plethora of directories is searched to ascertain the system
450 // lyxdir which is defined as the first directory to contain
451 // "chkconfig.ltx".
452 FileName const
453 get_system_support_dir(FileName const & abs_binary,
454                   string const & command_line_system_support_dir)
455 {
456         string const chkconfig_ltx = "chkconfig.ltx";
457
458         // searched_dirs is used for diagnostic purposes only in the case
459         // that "chkconfig.ltx" is not found.
460         list<FileName> searched_dirs;
461
462         // 1. Use the -sysdir command line parameter.
463         FileName path = abs_path_from_command_line(command_line_system_support_dir);
464         if (!path.empty()) {
465                 searched_dirs.push_back(path);
466                 if (check_command_line_dir(path.absFilename(), chkconfig_ltx, "-sysdir"))
467                         return path;
468         }
469
470         // 2. Use the "LYX_DIR_15x" environment variable.
471         path = extract_env_var_dir("LYX_DIR_15x");
472         if (!path.empty()) {
473                 searched_dirs.push_back(path);
474                 if (check_env_var_dir(path, chkconfig_ltx, "LYX_DIR_15x"))
475                         return path;
476         }
477
478         // 3. Search relative to the lyx binary.
479         // We're looking for "chkconfig.ltx" in a directory
480         //   OnlyPath(abs_binary) / <relative dir> / PACKAGE /
481         // PACKAGE is hardcoded in config.h. Eg "lyx" or "lyx-1.3.6cvs".
482         // <relative dir> is OS-dependent; on Unix, it will be "../share/".
483         string const relative_lyxdir = relative_system_support_dir();
484
485         // One subtlety to be aware of. The name of the lyx binary may be
486         // a symbolic link. If that is the case, then we follow the links too.
487         FileName binary = abs_binary;
488         while (true) {
489                 // Try and find "chkconfig.ltx".
490                 string const binary_dir = onlyPath(binary.absFilename());
491
492                 FileName const lyxdir(addPath(binary_dir, relative_lyxdir));
493                 searched_dirs.push_back(lyxdir);
494
495                 if (!fileSearch(lyxdir.absFilename(), chkconfig_ltx).empty()) {
496                         // Success! "chkconfig.ltx" has been found.
497                         return lyxdir;
498                 }
499
500                 // Check whether binary is a symbolic link.
501                 // If so, resolve it and repeat the exercise.
502                 if (!binary.isSymLink())
503                         break;
504
505                 FileName link;
506                 if (readLink(binary, link)) {
507                         binary = link;
508                 } else {
509                         // Unable to resolve the link.
510                         break;
511                 }
512         }
513
514         // 4. Repeat the exercise on the directory itself.
515         FileName binary_dir(onlyPath(abs_binary.absFilename()));
516         while (true) {
517                 // This time test whether the directory is a symbolic link
518                 // *before* looking for "chkconfig.ltx".
519                 // (We've looked relative to the original already.)
520                 if (!binary.isSymLink())
521                         break;
522
523                 FileName link;
524                 if (readLink(binary_dir, link)) {
525                         binary_dir = link;
526                 } else {
527                         // Unable to resolve the link.
528                         break;
529                 }
530
531                 // Try and find "chkconfig.ltx".
532                 FileName const lyxdir(addPath(binary_dir.absFilename(),
533                         relative_lyxdir));
534                 searched_dirs.push_back(lyxdir);
535
536                 if (!fileSearch(lyxdir.absFilename(), chkconfig_ltx).empty()) {
537                         // Success! "chkconfig.ltx" has been found.
538                         return lyxdir;
539                 }
540         }
541
542         // 5. In desparation, try the hard-coded system support dir.
543         path = hardcoded_system_support_dir();
544         if (!fileSearch(path.absFilename(), chkconfig_ltx).empty())
545                 return path;
546
547         // Everything has failed :-(
548         // So inform the user and exit.
549         string searched_dirs_str;
550         typedef list<FileName>::const_iterator iterator;
551         iterator const begin = searched_dirs.begin();
552         iterator const end = searched_dirs.end();
553         for (iterator it = begin; it != end; ++it) {
554                 if (it != begin)
555                         searched_dirs_str += "\n\t";
556                 searched_dirs_str += it->absFilename();
557         }
558
559         // FIXME UNICODE
560         throw ExceptionMessage(ErrorException, _("No system directory"),
561                 bformat(_("Unable to determine the system directory "
562                                          "having searched\n"
563                                          "\t%1$s\n"
564                                          "Use the '-sysdir' command line parameter or "
565                                          "set the environment variable LYX_DIR_15x to "
566                                          "the LyX system directory containing the file "
567                                          "`chkconfig.ltx'."),
568                           from_utf8(searched_dirs_str)));
569
570         // Keep the compiler happy.
571         return FileName();
572 }
573
574
575 // Returns the absolute path to the user lyxdir, together with a flag
576 // indicating whether this directory was specified explicitly (as -userdir
577 // or through an environment variable) or whether it was deduced.
578 bool userSupportDir(FileName const & default_user_support_dir,
579         string const & command_line_user_support_dir, FileName & result)
580 {
581         // 1. Use the -userdir command line parameter.
582         result = abs_path_from_command_line(command_line_user_support_dir);
583         if (!result.empty())
584                 return true;
585
586         // 2. Use the LYX_USERDIR_15x environment variable.
587         result = extract_env_var_dir("LYX_USERDIR_15x");
588         if (!result.empty())
589                 return true;
590
591         // 3. Use the OS-dependent default_user_support_dir
592         result = default_user_support_dir;
593         return false;
594 }
595
596
597 // $HOME/.lyx on POSIX but on Win32 it will be something like
598 // "C:/Documents and Settings/USERNAME/Application Data/LyX"
599 FileName const get_default_user_support_dir(FileName const & home_dir)
600 {
601 #if defined (USE_WINDOWS_PACKAGING)
602         (void)home_dir; // Silence warning about unused variable.
603
604         os::GetFolderPath win32_folder_path;
605         return FileName(addPath(win32_folder_path(os::GetFolderPath::APPDATA), PACKAGE));
606
607 #elif defined (USE_MACOSX_PACKAGING)
608         (void)home_dir; // Silence warning about unused variable.
609
610         FSRef fsref;
611         OSErr const error_code =
612                 FSFindFolder(kUserDomain, kApplicationSupportFolderType,
613                              kDontCreateFolder, &fsref);
614         if (error_code != 0)
615                 return FileName();
616
617         // FSRefMakePath returns the result in utf8
618         char store[PATH_MAX + 1];
619         OSStatus const status_code =
620                 FSRefMakePath(&fsref,
621                               reinterpret_cast<UInt8*>(store), PATH_MAX);
622         if (status_code != 0)
623                 return FileName();
624
625         return FileName(addPath(reinterpret_cast<char const *>(store), PACKAGE));
626
627 #else // USE_POSIX_PACKAGING
628         return FileName(addPath(home_dir.absFilename(), string(".") + PACKAGE));
629 #endif
630 }
631
632
633 // Check that directory @c dir contains @c file.
634 // Else emit a warning about an invalid @c command_line_switch.
635 bool check_command_line_dir(string const & dir,
636                             string const & file,
637                             string const & command_line_switch)
638 {
639         FileName const abs_path = fileSearch(dir, file);
640         if (abs_path.empty()) {
641                 // FIXME UNICODE
642                 throw ExceptionMessage(WarningException, _("File not found"), bformat(
643                         _("Invalid %1$s switch.\nDirectory %2$s does not contain %3$s."),
644                         from_utf8(command_line_switch), from_utf8(dir),
645                         from_utf8(file)));
646         }
647
648         return !abs_path.empty();
649 }
650
651
652 // The environment variable @c env_var expands to a (single) file path.
653 FileName const extract_env_var_dir(string const & env_var)
654 {
655         string const dir = fix_dir_name(getEnv(env_var));
656         return dir.empty() ? FileName() : makeAbsPath(dir);
657 }
658
659
660 // Check that directory @c dir contains @c file.
661 // Else emit a warning about an invalid @c env_var.
662 bool check_env_var_dir(FileName const & dir,
663                        string const & file,
664                        string const & env_var)
665 {
666         FileName const abs_path = fileSearch(dir.absFilename(), file);
667         if (abs_path.empty()) {
668                 // FIXME UNICODE
669                 throw ExceptionMessage(WarningException, _("File not found"), bformat(
670                         _("Invalid %1$s environment variable.\n"
671                                 "Directory %2$s does not contain %3$s."),
672                         from_utf8(env_var), from_utf8(dir.absFilename()),
673                         from_utf8(file)));
674         }
675
676         return !abs_path.empty();
677 }
678
679
680 // Check that directory @c dir is indeed a directory.
681 // Else emit a warning about an invalid @c env_var.
682 bool check_env_var_dir(FileName const & dir,
683                        string const & env_var)
684 {
685         bool const success = dir.exists() && dir.isDirectory();
686
687         if (!success) {
688                 // Put this string on a single line so that the gettext
689                 // search mechanism in po/Makefile.in.in will register
690                 // Package.cpp.in as a file containing strings that need
691                 // translation.
692                 // FIXME UNICODE
693                 docstring const fmt =
694                         _("Invalid %1$s environment variable.\n%2$s is not a directory.");
695
696                 throw ExceptionMessage(WarningException, _("Directory not found"), bformat(
697                         fmt, from_utf8(env_var), from_utf8(dir.absFilename())));
698         }
699
700         return success;
701 }
702
703
704 // The locale directory relative to the LyX system directory.
705 string const relative_locale_dir()
706 {
707 #if defined (USE_WINDOWS_PACKAGING) || defined (USE_MACOSX_PACKAGING)
708         return "locale/";
709 #else
710         return "../locale/";
711 #endif
712 }
713
714
715 // The system lyxdir is relative to the directory containing the LyX binary.
716 string const relative_system_support_dir()
717 {
718         string result;
719
720 #if defined (USE_WINDOWS_PACKAGING) || defined (USE_MACOSX_PACKAGING)
721         result = "../Resources/";
722 #else // Posix-like.
723         result = addPath("../share/", PACKAGE);
724 #endif
725
726         return result;
727 }
728
729 } // namespace anon
730
731 } // namespace support
732 } // namespace lyx