]> git.lyx.org Git - lyx.git/blob - src/support/ChangeLog
Prevent unix-specific headers from breaking compilation on Windows.
[lyx.git] / src / support / ChangeLog
1 2005-04-19  Angus Leeming  <leeming@lyx.org>
2
3         * pch.h: protect unix-specific headers from breaking compilation
4         on Windows.
5
6 2005-04-17  Angus Leeming  <leeming@lyx.org>
7  
8         * filetools.C (MakeDisplayPath): invoke os::external_path before
9         returning path.
10
11         * os_win32.C (external_path): convert '/' chars to '\'.
12
13         * filetools.[Ch] (latex_path): new function which modifies
14         an input path containing space and '~' characters into something that
15         LaTeX can understand.
16
17 2005-04-17  Angus Leeming  <leeming@lyx.org>
18
19         * forkedcall.C (generateChild): do not strip quotes from args on
20         Windows.
21         Wrap lyxerr output inside an if (lyxerr.debugging(Debug::FILES))
22         block.
23
24 2005-03-23  Angus Leeming  <leeming@lyx.org>
25
26         * Makefile.am (build_package): Solaris sed does not like
27         spaces bewteen the ;-delimited commands.
28
29 2005-02-25  Lars Gullik Bjonnes  <larsbj@gullik.net>
30
31         * Makefile.am (CLEANFILES): clean generated files
32
33 2005-02-17  Angus Leeming  <leeming@lyx.org>
34
35         * copy.C (copy): Pass the ios::in flag to the ifstream constructor.
36         Enables copying to work when the code is compiled with the gcc 2.95
37         compiler and stdlib.
38
39 2005-02-15  Angus Leeming  <leeming@lyx.org>
40
41         * environment.C: add missing #include.
42         (setEnvPath): compare iterators rather than use tellp().
43
44 2005-02-15  Angus Leeming  <leeming@lyx.org>
45
46         * environment.[Ch]: new files. Move the environment setter/getter
47         functions here from filetools.[Ch]. In the process:
48         rename GetEnv as getEnv.
49         rename putEnv as setEnv. Change the signature of the function
50         to take a pair of arguments (a name and a value) rather than the
51         existing coded "name=value" single argument. Merge the putenv.C
52         code into setEnv.
53
54         * lyxlib.h (putenv): remove declaration.
55         * putenv.C: removed.
56
57         * Makefile.am: add environment.[Ch]. Remove putenv.C.
58
59         * filetools.[Ch]: remove environment setter/getter functions.
60
61         * os_os2.C (init): s/GetEnvPath/getEnvPath/. Left over from an
62         earlier change.
63
64         * package.C.in (get_home_dir, extract_env_var_dir):
65         * userinfo.C (user_email): s/GetEnv/getEnv/.
66
67 2005-02-03  Angus Leeming  <leeming@lyx.org>
68
69         * forkedcall.C (running): call the lyx::kill wrapper function
70         rather than the system kill.
71
72 2005-02-02  Angus Leeming  <leeming@lyx.org>
73
74         * forkedcall.C (generateChild): overhaul the code to split a string
75         into an argv array of words. Now respects simple quoting reasonably
76         well.
77
78 2005-02-01  Angus Leeming  <leeming@lyx.org>
79
80         * fs_extras.C: #include <windows.h>
81
82 2005-01-31  Angus Leeming  <leeming@lyx.org>
83
84         * package.[Ch] (init_package, c-tor): define and use an enum to
85         specify explicitly the location of the top level build directory
86         when the executable is run in-place.
87
88 2005-01-31  Lars Gullik Bjonnes  <larsbj@gullik.net>
89
90         * fs_extras.C: add changes from Asger's Win32 patch.
91
92 2005-01-31  Asger Ottar Alstrup  <aalstrup@laerdal.dk>
93
94         * chdir.C (chdir):
95         * getcwd.C (l_getcwd):
96         * kill.C (kill):
97         * mkdir.C (mkdir): add Win32 specializations.
98
99         * os_win32.h: remove cruft.
100
101 2005-01-31  Lars Gullik Bjonnes  <larsbj@gullik.net>
102
103         * Makefile.am (libsupport_la_SOURCES): remove rmdir.C
104
105         * rmdir.C: delete file
106
107         * lyxlib.h: remove rmdir decl
108
109 2005-01-31  Lars Gullik Bjonnes  <larsbj@gullik.net>
110
111         * .cvsignore: add package.C
112
113         * FileInfo.C, FileInfo.h: delete files
114
115         * fs_extras.C, fs_extras.h: new files
116
117         * FileMonitor.C, filetools.C: rewrite to use boost.filesystem
118
119         * Makefile.am (libsupport_la_SOURCES: delete FileInfo.[Ch], add
120         fs_extras.[Ch]
121
122         * filetools.C: make destroydir return true if something was
123         deleted. adjust callers.
124         (IsFileWritable): replace with is_readonly in fs_extras, adjust
125         callers
126
127         * package.C.in: rewrite to use boost.filesystem
128
129 2005-01-27  Lars Gullik Bjonnes  <larsbj@gullik.net>
130
131         * tests: add some code for automatic regression testing, can be
132         improved or removed as we see fit
133
134         * lyxlib.h (atoi): delete func
135
136         * lstrings.[Ch] (strToInt): delete func
137         (strToUnsignedInt): delete func
138         (strToDbl): delete func
139
140         * Makefile.am: add subdir tests, delete atoi.C
141
142         * atoi.C: delete file
143
144         * convert.C: add specializations for converting to int, unsigned
145         int, double from string, and for converting to int and double from
146         char const *
147
148         * convert.h: remove commented code
149
150 2005-01-22  Angus Leeming   <leeming@lyx.org>
151
152         * path.C (Path): revert the patch since the if statement has side
153         effects that are needed for the code to work :-(
154
155 2005-01-21  Angus Leeming   <leeming@lyx.org>
156
157         * os_cygwin.C, os_win32.C: strip the Cygwin-specific stuff out of
158         os_win32.C and give it its own file.
159
160         * os.C: #include "os_cygwin.C" if building on Cygwin.
161
162 2005-01-20  Angus Leeming  <leeming@lyx.org>
163
164         * lyxlib.h (float_equal): promote parameters to double.
165
166         * path.C (Path): silence MSVC warning about block of code that
167         does nothing.
168
169 2005-01-20  Asger Ottar Alstrup  <aalstrup@laerdal.dk>
170
171         * FileInfo.h, chdir.C, forkedcall.C, forkedcontr.C, getcwd.C,
172         mkdir.C, os_defines.h, pch.h, rmdir.C, unlink.C:
173         use the HAVE_UNISTD_H preprocessor guard.
174
175 2005-01-20  Angus Leeming  <leeming@lyx.org>
176
177         * filetools.[Ch] (LibScriptSearch): modify the code that replaces
178         the $$s placeholder with a path, so that it now inserts the path
179         of the lyx support directory, not the scripts subdirectory.
180
181 2005-01-19  Asger Ottar Alstrup  <aalstrup@laerdal.dk>
182
183         * lyxsum.C, socktools.C, tempname.C, userinfo.C: use the
184         HAVE_UNISTD_H preprocessor guard.
185
186 2005-01-17  Angus Leeming  <leeming@lyx.org>
187
188         * os_win32.C (init): Add Ruurd's original code to close the
189         console window that Windows opens for us, together with a note
190         explaining the alternative approach.
191
192 2005-01-17  Angus Leeming  <leeming@lyx.org>
193
194         * package.C.in (get_binary_path): convert relative paths stored
195         in the PATH environment variable to absolute ones.
196
197 2005-01-16  Angus Leeming  <leeming@lyx.org>
198
199         * filetools.[Ch] (prependEnvPath): prepend a list of paths to
200         that returned by the environment variable. Identical paths occurring
201         later in the list are removed.
202
203 2005-01-16  Angus Leeming  <leeming@lyx.org>
204
205         * filetools.C (createLyXTmpDir): add some missing brackets to the
206         if-block. OS/2 users will be happier.
207
208 2005-01-02  Kayvan Sylvan  <kayvan@sylvan.com>
209
210         * os_win32.C (external_path): Check the new cygwin_path_fix_ bool
211         before translating external paths to Win32 paths.
212
213 2005-01-13  Angus Leeming  <leeming@lyx.org>
214
215         * os.h, os_os2.C, os_unix.C, os_win32.C (cygwin_path_fix): new
216         function flagging whether LyX should output native Win32 paths
217         or cygwin paths. Obviously operative only under Cygwin.
218
219 2005-01-13  Angus Leeming  <leeming@lyx.org>
220
221         * package.C.in: use "%n$s" rather than "%n%" for n=1,2,3... when
222         calling bformat so that the substitutions work for the non
223         boost::format users too.
224
225 2005-01-12  Angus Leeming  <leeming@lyx.org>
226
227         * filetools.[Ch] (setEnvPath): new function to create a PATH-style
228         string from a vector of paths and to use it to set an environment
229         variable.
230         (putEnv): resurrect this from the grave.
231
232         * os.h, os_os2.C, os_unix.C, os_win32.C (path_separator): new
233         function returning the character used to separate paths returned
234         by the PATH environment variable.
235
236         * os_win32.C: add #include "lstring.h" back in.
237
238         * package.C.in (package): comment out the ASSERT for now.
239         (check_env_var_dir): write one of the strings to be translated
240         (any one, doesn't matter) on a single line so that the
241         gettext search mechanism in po/Makefile.in.in will register
242         package.C.in as a file containing strings that need translation.
243
244 2005-01-10  Angus Leeming  <leeming@lyx.org>
245
246         * os.h:
247         * os_os2.C:
248         * os_unix.C:
249         * os_win32.C (binpath, binname, homepath, setTmpDir, getTmpDir, warn):
250         removed. Remove also all code to set the associated data variables.
251
252         * package.{C.in,h}: new files to ascertain the paths to the
253         various directories used by LyX. Does nothing with these paths,
254         just determines the strings themselves.
255
256         * path_defines.{C.in,h}: removed.
257
258         * Makefile.am: remove path_defines.{C.in,h}. Add package.{C.in,h}.
259
260         * filetools.[Ch] (GetEnvPath): remove.
261         (getEnvPath): replacement. Returns a vector<string> of paths.
262
263         * filetools.C:
264         * tempname.C: use support/package.h to provide the paths to the
265         various directories used by LyX.
266
267 2005-01-07  Angus Leeming  <leeming@lyx.org>
268
269         * convert.C (string>): add specialization for long.
270
271 2005-01-07  Lars Gullik Bjonnes  <larsbj@gullik.net>
272
273         * convert.h: remove the specializations, don't included unneeded
274         headers
275         * convert.C: add specialization for unsigned long
276
277 2005-01-06  Lars Gullik Bjonnes  <larsbj@gullik.net>
278
279         * tostr.[Ch]: renamed to convert[ch]
280
281 2005-01-06  Lars Gullik Bjonnes  <larsbj@gullik.net>
282
283         * lstrings.[Ch]: change bformat to be a template
284
285         * tostr.[Ch]: tostr -> convert, convert is a template
286
287         * tempname.C:
288         * filetools.C (createBufferTmpDir): tostr -> convert
289
290 2005-01-05  Angus Leeming  <leeming@lyx.org>
291
292         * os_win32.C (external_path, internal_path): s/MAX_PATH/PATH_MAX/.
293
294 2005-01-04  Angus Leeming  <leeming@lyx.org>
295
296         * os_win32.C (current_root): use _getdrive on Win32.
297
298         * FileInfo.C (FileInfo, newFile): strip the trailing '/' from
299         the stored file name as it breaks Window's version of stat().
300         (isLink): protect the code with #ifdef S_ISLNK.
301         (dostat): protect the code with #ifdef HAVE_LSTAT.
302         (typeIndicator): remove code testing the file's executable status.
303
304         * filetools.C (LyXReadLink): protect the code with
305         #ifdef HAVE_READLINK.
306
307 2005-01-01  Kayvan Sylvan  <kayvan@sylvan.com>
308
309         * os_win32.C (internal_path): remove the call to MakeLatexName as
310         it is (1) unnecessary and (2) leads to an infinite loop as
311         MakeLatexName calls AddName which calls internal_path...
312
313 2004-12-19  Angus Leeming  <leeming@lyx.org>
314
315         * path_defines.C.in (setLyxPaths): on a Windows build,
316         remove the ".exe" extension from the name of the LyX binary when
317         trying to ascertain the name of the LyX system directory.
318         (Usually, <path to binary>/../share/<name of binary>/).
319
320         * os.h, os_os2.C, os_unix.C, os_win32.C (slashify_path): remove.
321
322         * os_win32.C (init): ensure that the name of the lyx executable is
323         stored internally with a unix-style path.
324
325         * os_win32.C (internal_path, external_path): differentiate between
326         cygwin and windows builds.
327
328         * filetools.C (FileOpenSearch, GetEnvPath, createDirectory,
329         MakeAbsPath, AddName, MakeRelPath, ChangeExtension):
330         * filename.C (mangledFilename):
331         s/slashify_path/internal_path/.
332
333 2004-12-16  Angus Leeming  <leeming@lyx.org>
334
335         * filename.C (mangledFilename): Given a Windows-style path, don't
336         forget to mangle the drive letter too when generating a unique
337         temporary file name.
338
339 2004-12-16  Angus Leeming  <leeming@lyx.org>
340
341         * mkdir.C: move the HAVE_MKDIR conditional code out of config.h
342         and into here.
343
344 2004-12-15  Angus Leeming  <leeming@lyx.org>
345
346         * FileInfo.[Ch] (getNumberOfLinks): removed.
347
348 2004-12-15  Angus Leeming  <leeming@lyx.org>
349
350         * tempname.C: #include fcntl.h and sys/stat.h if creating a temp
351         file using mktemp and open.
352
353 2004-12-14  Angus Leeming  <leeming@lyx.org>
354
355         * os.h, os_os2.C, os_unix.C, os_win32.C:
356         (binpath, binname, getTmpDir): return a const reference rather than
357         a copy of the data.
358         (homepath, nulldev): new functions returning the name of "HOME" and
359         the null device, respectively.
360
361         * filetools.C: (ExpandPath, MakeDisplayPath):
362         * path_defines.C.in (setLyxPaths): use os::homepath(), not
363         GetEnvPath("HOME").
364
365 2004-12-14  Angus Leeming  <leeming@lyx.org>
366
367         * os.h, os_{os2,unix,win32}.C (init): change interface to no longer
368         pass the addresses of the parameters received by main.
369
370 2004-12-14  Angus Leeming  <leeming@lyx.org>
371
372         * copy.C (copy): open the ifstream with ios::binary.
373
374 2004-12-14  Angus Leeming  <leeming@lyx.org>
375
376         * os.C: Add _WIN32 to the #define.
377
378         * systemcall.C (startscript): remove trailing '/n' from request to
379         start the command in a minimized window under DOS.
380
381 2004-12-14  Angus Leeming  <leeming@lyx.org>
382
383         * Makefile.am (AM_CPPFLAGS): Remove trailing slash from -Ifoo/
384         to overcome bug in the MinGW port of g++ 3.4.2.
385
386 2004-11-26  Angus Leeming  <leeming@lyx.org>
387
388         * globbing.[Ch] (glob): change API to:
389         1. Append matches to the input container.
390         2. Require a working_dir parameter. The function invokes chdir
391         internally (through use of Path).
392
393 2004-11-26  Angus Leeming  <leeming@lyx.org>
394
395         * filefilterlist.C (convert_brace_glob): moved here from
396         globbing.[Ch].
397
398         * filefilterlist.[Ch]: clean-up FileFilterList API.
399
400         * globbing.[Ch] (convert_brace_glob): moved to filefilterlist.C.
401         (expand_globs): moved to xforms/FormFiledialog.C.
402
403 2004-11-25  Angus Leeming  <leeming@lyx.org>
404
405         * filefilterlist.[Ch]:
406         * globbing.[Ch]: split FileFilterList into its own .[Ch] files.
407
408         * Makefile.am: add filefilterlist.[Ch].
409
410 2004-11-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
411
412         * textutils.h (isKommaChar): remove
413
414 2004-11-16  Lars Gullik Bjonnes  <larsbj@gullik.net>
415
416         * forkedcontr.C (find_pid): simplify and also make pass concept
417         checks.
418         (handleCompletedProcesses): make sure that we do not slice the
419         object and satisfy concept checks.
420
421 2004-11-09  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
422
423         * filetools.[Ch] (getFormatFromContents): don't guess format from
424         extension, return string() instead of "user" if the format could
425         not be determined
426
427 2004-11-07  Lars Gullik Bjonnes  <larsbj@gullik.net>
428
429         * Make it clearer where include files are coming from.
430
431 2004-11-06  Lars Gullik Bjonnes  <larsbj@gullik.net>
432
433         * translator.h: use bind, equal_to instead of equal_1st_in_pair
434         and equal_2nd_in_pair
435
436         * Makefile.am (libsupport_la_SOURCES): remove lyxfunctional.h
437         * lyxfunctional.h: delete file
438
439         * lyxfunctional.h: delete compare_memfun and helper classes
440
441         * forkedcontr.C (find_pid): use bind, equal_to instead of
442         compare_memfun
443
444         * lyxfunctional.h: delete back_inserter_fun functions and helper
445         classes.
446
447 2004-11-04  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
448
449         * snprintf.[ch]: removed
450
451         * Makefile.am (libsupport_la_SOURCES): remove snprintf
452
453 2004-10-29  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
454
455         * filetools.[Ch] (getExtFromContents): rename to
456         getFormatFromContents and return always a format
457
458 2004-10-25  Angus Leeming  <leeming@lyx.org>
459
460         * forkedcall.C (generateChild): strip quotes from each argument
461         of argv.
462
463 2004-09-26  Lars Gullik Bjonnes  <larsbj@gullik.net>
464
465         * pch.h: use proper signal include
466
467         * forkedcallqueue.C: remove unused include
468
469         * FileMonitor.h: Use the preferred calling for Boost.Signal
470         * forkedcall.h: ditto
471
472         * FileMonitor.C: use the new signal typedef
473
474 2004-09-26  Lars Gullik Bjonnes  <larsbj@gullik.net>
475
476         * forkedcall.h: remove include of <boost/function/funtion0.hpp>
477         * pch.h: ditto
478
479 2004-09-10  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
480
481         * textutils.h (IsLetterCharOrDigit): remove
482
483 2004-09-10  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
484
485         * filetools.C (LibScriptSearch): quote the path of the script, in
486         case it contains spaces
487
488 2004-09-04  Lars Gullik Bjonnes  <larsbj@gullik.net>
489
490         * tostr.C: reimplement using lexical_cast
491
492 2004-08-30  Lars Gullik Bjonnes  <larsbj@gullik.net>
493
494         * pch.h: do not use include boost/format.hpp, multiple symbols
495         will result (gcc bug)
496
497 2004-08-15  Lars Gullik Bjonnes  <larsbj@gullik.net>
498
499         * pch.h: new file
500
501         * Makefile.am: support pch
502
503 2004-08-09  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
504
505         * globbing.C (FileFilterList): make sure that "All files (*)" is
506         always part of the filters list
507
508 2004-07-24  Lars Gullik Bjonnes  <larsbj@gullik.net>
509
510         * tostr.C, lstrings.C, globbing.C, filetools.C: change
511         "support/std_sstream.h" to <sstream>
512
513         * Makefile.am (libsupport_la_SOURCES): delete std_sstream.h and
514         sstream.h
515         (std_sstream.h): delete file
516         (sstream.h): delete file
517
518 2004-06-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
519
520         * filetools.C (i18nLibFileSearch): honor case where LANGUAGE
521         specifies a list of locales (thanks to Pablo Saraxtaga for the
522         initial patch).
523
524 2004-05-04  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
525
526         * path_defines.C.in (setLyxPaths): make sure that LyX/Mac can find
527         its po files when moved around; set default user directory to
528         ~/Library/Preferences/LyX/ for LyX/Mac.
529         (lyx_localedir): return the value that may have been computed in
530         setLyXPaths
531
532 2004-05-27  Kayvan Sylvan <kayvan@sylvan.com>
533
534         * Makefile.am (libsupport_la_SOURCES): remove reference to
535         nt_defines.h
536
537 2004-05-20  Angus Leeming  <leeming@lyx.org>
538
539         * debugstream.h: wrap the definition of debug_trait::DEBUG with
540         preprocessor guards that protect against a name clash with a
541         macro DEBUG. Such a macro is defined by the Qt library...
542
543 2004-04-27  Angus Leeming  <leeming@lyx.org>
544
545         * path_defines.{h,C.in}: expose top_srcdir, renamed from
546         lyx_top_srcdir.
547
548 2004-04-05  Angus Leeming  <leeming@lyx.org>
549
550         * filetools.C:
551         wrap #warning calls inside #ifdef WITH_WARNINGS blocks.
552
553 2004-04-05  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
554
555         * filetools.C (RunCommand): block SIGCHLD during popen/pclose
556         (actually Angus' fix).
557
558 2004-04-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
559
560         * filetools.C (DeleteAllFilesInDir): delete directories with
561         rmdir(), unlink() does not work
562
563 2004-03-27  Angus Leeming  <leeming@lyx.org>
564
565         * forkedcontr.C (child_handler): squash warning about a
566         signed/unsigned comparison.
567         (handleCompletedProcesses): only output a warning about an error
568         waiting for the child if it is indeed an error ;-)
569
570 2004-03-26  Angus Leeming  <leeming@lyx.org>
571
572         * forkedcall.[Ch] (run): new function, replacing runBlocking,
573         runNonBlocking.
574
575         * forkedcall.C (generateChild): ensure that the code that splits
576         the command up into an array of words won't leak in the event of an
577         exception.
578
579         * forkedcontr.C: make it a little more robust.
580
581 2004-03-24  Angus Leeming  <leeming@lyx.org>
582
583         * forkedcontr.[Ch]: get rid of the timer that we use to poll the list
584         of child proccesses and ascertain whether any have died. Instead use
585         the SIGCHLD signal emitted by the system to reap these zombies in the
586         maximally efficient manner. The subsequent emitting of the signal
587         associated with each child process *is* performed within the main
588         lyx event loop, thus ensuring that the code remains safe.
589
590         A detailed description of the design is to be found in forkedcontr.C.
591
592 2004-03-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
593
594         * filetools.C (i18nLibFileSearch): simplify the logic a bit
595
596 2004-03-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
597
598         * filetools.C (i18nLibFileSearch): fix the logic to match closely
599         what gettext does
600
601 2004-03-23  Angus Leeming  <leeming@lyx.org>
602
603         * forkedcall.h (ForkedProcess, Forkedcall): change the signature of
604         clone to return a boost::shred_ptr rather than a std::auto_ptr.
605
606         * forkedcontr.[Ch]: store the forked calls as boost::shared_ptrs rather
607         than raw pointers.
608
609 2004-03-22  Angus Leeming  <leeming@lyx.org>
610
611         * forkedcontr.[Ch] (childrenChanged, getPIDs, getCommand): remove
612         cruft left over from the removal of the Forks dialog.
613
614 2004-03-09  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
615
616         * filename.[Ch] (mangledFilename): make sure that mangled names are
617         unique
618
619 2004-02-21  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
620
621         * filetools.[Ch] (CreateBufferTmpDir): rename to createBufferTmpDir,
622         remove pathfor argument
623         * filetools.[Ch] (CreateLyXTmpDir): rename to createLyXTmpDir, try
624         harder to create a usable temp dir
625         * filetools.C (CreateTmpDir): rename to createTmpDir
626         filetools.[Ch] (unzipFile): add argument for output filename
627         * filename.h: fix doxygen warning
628
629 2004-02-01  Lars Gullik Bjonnes  <larsbj@gullik.net>
630
631         * lstrings.h (contains_functor): delete
632         (contains): change into template, simplify
633
634         * lstrings.C (contains): remove both functions
635
636 2004-01-31  Lars Gullik Bjonnes  <larsbj@gullik.net>
637
638         * lyxalgo.h (eliminate_duplicates): reimplement with sort and the
639         unique-erase idom.
640
641         * lstrings.h (contains_functor): inherit from
642         std::binary_function, remove typedefs.
643
644 2004-01-28  Lars Gullik Bjonnes  <larsbj@gullik.net>
645
646         * globbing.C: add using statement for std::distance, remove std::
647         from string.
648
649 2004-01-08  Angus Leeming  <leeming@lyx.org>
650
651         * globbing.[Ch]: add a new class FileFilterList to parse a Qt-style
652         list of available file filters and generate the corresponding vector.
653
654 2003-12-14  Ronald Florence <ron@18james.com>
655
656         * tostr.[hC]: added tostr(long unsigned int i).
657
658         * path_defines.C.in: determine system directory and set PATH for
659         relocatable LyX/Mac bundle.
660
661 2004-01-06  Angus Leeming  <leeming@lyx.org>
662
663         * globbing.C (glob): compilation fix for cygwin.
664
665 2004-01-06  Lars Gullik Bjonnes  <larsbj@gullik.net>
666
667         * Makefile.am (libsupport_la_SOURCES): remove BoostFormat.h and
668         boost-inst.C
669         * BoostFormat.h: delete file
670         * boost-inst.C: delete fil
671
672         * lstrings.C: include boost/format.hpp
673
674 2004-01-05  Angus Leeming  <leeming@lyx.org>
675
676         * globbing.[Ch]: new files containing some globbing utilities.
677
678 2003-11-05  João Luis M. Assirati  <assirati@fma.if.usp.br>
679
680         * putenv.C: allocate the string before putting it into the
681         environment.
682
683         * lyxlib.h: adjust.
684
685 2003-11-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
686
687         * tempname.C (tempName): use scoped_array for exception safety
688
689         * os_os2.C (init): use scoped_array for exception safety
690
691         * getcwd.C (getcwd): use scoped_array for exception safety
692
693         * forkedcontr.C (addCall): adjust
694
695         * forkedcall.h: make clone return a auto_ptr
696
697 2003-11-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
698
699         * debugstream.h: add a default constructor that does not setup a
700         streambuf here.
701
702 2003-10-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
703
704         * socktools.C: honor CXX_GLOBAL_CSTD
705
706 2003-10-16  André Pönitz  <poenitz@gmx.net>
707
708         * filetools.C (ReplaceEnvironmentPath): set up patterns just once
709         using static variables.
710
711 2003-10-13  João Luis Meloni Assirati  <assirati@fma.if.usp.br>
712
713         * socktools.[Ch]: New files. Wrapper around socket system calls.
714
715 2003-10-13  Kayvan A. Sylvan  <kayvan@sylvan.com>
716
717         * socktools.C (SUN_LEN): add this MACRO definition for platforms
718         that do not define it themselves.
719
720 2003-10-08  Angus Leeming  <leeming@lyx.org>
721
722         * copied_ptr.h: get rid of the swap member function.
723
724 2003-10-08  Angus Leeming  <leeming@lyx.org>
725
726         Fix doxygen warnings.
727
728         * debugstream.h: \file debugStream.h -> \file debugstream.h
729
730         * os.h: move comment so that doxygen is not confused.
731
732 2003-10-07  Jürgen Spitzmüller <j.spitzmueller@gmx.de>
733
734         * Makefile.am: fix typo.
735
736 2003-10-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
737
738         * std_string.h: delete file
739
740 2003-10-06  Martin Vermeer  <martin.vermeer@hut.fi>
741
742         * lstrings.C: Small fixes to build using STLport
743
744 2003-09-29  Angus Leeming  <leeming@lyx.org>
745
746         * filetools.C (ReplaceEnvironmentPath): make it work for both
747         ${HOME}/foo and $HOME/foo.
748
749 2003-09-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
750
751         * debugstream.h: add file, updated version of the DebugStream
752
753         * DebugStream.C,DebugStream.h: delete files
754
755 2003-09-25  Angus Leeming  <leeming@lyx.org>
756
757         * filetools.C (ReplaceEnvironmentPath): rewrite to use boost::regex.
758         * lstrings.[Ch]: (regexMatch): removed.
759
760 2003-09-25  Angus Leeming  <leeming@lyx.org>
761
762         * translator.h (add): new member function.
763
764 2003-09-16  Angus Leeming  <leeming@lyx.org>
765
766         * textutils.h: remove #include "paragraph.h". Remove functions
767         IsInsetChar and IsWordChar.
768
769 2003-09-15  Angus Leeming  <leeming@lyx.org>
770
771         * copied_ptr.h: re-jig to something that resembles Herb Sutter's
772         HolderPtr --- see http://www.gotw.ca/gotw/062.htm. Also known in
773         his book as ValuePtr.
774         Use a memory_traits template parameter to create/destroy memory in a
775         flexible manner.
776
777 2003-09-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
778
779         * tostr.C:
780         * lstrings.C:
781         * filetools.C: Remove usage of STRCONV
782
783         * Makefile.am (libsupport_la_SOURCES): remove lyxstring.C and
784         lyxstring.h
785
786         * std_string.h: modify to always work with std::string, but if
787         with-included-string then use it through namespace lyx. Remove
788         STRCONV.
789
790         * lyxstring.[Ch]: remove files
791
792 2003-09-15  Angus Leeming  <leeming@lyx.org>
793
794         * translator.h: add #include <boost/assert.hpp>, so that the
795         template is self-contained.
796
797 2003-09-11  Angus Leeming  <leeming@lyx.org>
798
799         * cow_ptr.h:
800         * copied_ptr.h: added to the repository. Maybe temporarily.
801
802 2003-09-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
803
804         * Makefile.am (libsupport_la_SOURCES): remove LAssert.C and LAssert.h
805
806         * several files: change Assert to BOOST_ASSERT
807
808         * LAssert.C:
809         * LAssert.h: remove files
810
811 2003-09-08  Angus Leeming  <leeming@lyx.org>
812
813         * filename.C:
814         * filetools.C: tell the world where to find author contact details.
815
816 2003-09-08  Angus Leeming  <leeming@lyx.org>
817
818         * boost-inst.C:
819         * filetools.C:
820         * forkedcallqueue.C:
821         * lstrings.C:
822         * lyxsum.C: remove redundant using directives.
823
824 2003-09-05  Angus Leeming  <leeming@lyx.org>
825
826         * lstrings.C: small bformat fix
827
828 2003-09-05  Angus Leeming  <leeming@lyx.org>
829
830         * std_istream.h: new file Just renaming of LIstream.h
831         * std_ostream.h: new file Just renaming of LIstream.h
832         * std_sstream.h: new file Just renaming of Lsstream.h
833         * std_string.h:  new file Just renaming of LString.h
834
835 2003-09-05  Angus Leeming  <leeming@lyx.org>
836
837         * lyxmanip.h:
838         * textutils.h:
839         ensure that the header file can be compiled stand-alone.
840
841 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
842
843         * lstrings.[Ch] (bformat): add a variant taking two ints.
844
845 2003-09-04  Angus Leeming  <leeming@lyx.org>
846
847         * filetools.h:
848         * filename.C:  move #include "os.h" out of the header file.
849
850 2003-09-04  Angus Leeming  <leeming@lyx.org>
851
852         * path.C (ctor, dtor): move out of line.
853
854 2003-09-03  Angus Leeming  <leeming@lyx.org>
855
856         * filename.[Ch] (FileName): new c-tor takes abs_filename arg.
857         (mangledFilename): new function, returning a mangled version of the
858         absolute file name, suitable for use in the temp dir when, for example,
859         converting an image file to another format.
860         (isZipped, unzippedFilename): wrappers to global functions.
861
862         * filetools.[Ch] (copyFileToDir): removed.
863         (compare_timestamps): new function.
864
865 2003-09-03  Angus Leeming  <leeming@lyx.org>
866
867         * translator.h: Assert is in namespace lyx::support...
868
869 2003-08-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
870
871         * Makefile.am: do not install path_defines.C in includes
872         (COMPRESSION): mention gzstream.h here
873
874 2003-08-01  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
875
876         * path_defines.C.in (setLyxPaths): re-introduce the code to check
877         whether lyx is run in place
878         (build_dir): renamed from build_lyxdir
879         (build_lyxdir): give this better semantics compatible with what
880         LibFileSearch expects.
881
882 2003-07-29  Angus Leeming  <leeming@lyx.org>
883
884         * filename.[Ch] (relFilename, outputFilename): the 'path' arg
885         defaults to string() because MakeRelPath can accept that.
886
887 2003-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
888
889         * Makefile.am: conditionalize USE_COMPRESSION.
890
891 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
892
893         * filetools.C (getExtFromContents): correct magic for gzip and
894         compress.
895
896         * path_defines.[Ch]: move lyx_localedir out of anon namespace
897
898         * gzstream.h: new fileq
899
900         * gzstream.C: new file
901
902 2003-07-27  Angus Leeming  <leeming@lyx.org>
903
904         * path_defines.{h,C.in} (build_lyxdir, system_lyxdir,
905         user_lyxdir): are now functions, not global vars.
906
907         * Makefile.am: set build_lyxdir at make time.
908
909 2003-07-27  Angus Leeming  <leeming@lyx.org>
910
911         * path_defines.{h,C.in}: new files. Store/set the various lyx
912         paths, lyx_dir, top_srcdir, localedir, system_lyxdir, build_lyxdir
913         user_lyxdir.
914
915         * Makefile.am: add some magic to enable the user to set the path to
916         the system-level lyx support files, the top of the lyx build tree
917         and the system-level lyx locale directory at _make_ time rather
918         than configure time.
919
920         * .cvsignore: add path_defines.C.
921
922 2003-07-26  Angus Leeming  <leeming@lyx.org>
923
924         * os.h: remove irrelevant discussion of system_tempdir.
925
926 2003-07-21  Angus Leeming  <leeming@lyx.org>
927
928         * filename.[Ch]: new files implementing class FileName.
929         * Makefile.am: add filename.[Ch].
930
931 2003-07-18  Lars Gullik Bjønnes  <larsbj@gullik.net>
932
933         * BoostFormat.h (boost): remove one extern template. Gcc 3.4. does
934         not allow it (at least not in this form.)
935
936 2003-07-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
937
938         * os_win32.C: put namespace os in lyx::support.
939
940         * lstrings.C (bformat): call Assert from correct namespace.
941
942         * introduce namespace lyx::support
943
944 2003-06-30  André Pönitz  <poenitz@gmx.net>
945
946         * filetools.C:
947         * lstrings.C: re-enable --with-included-string
948
949 2003-06-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
950
951         * filetools.h: fix some \param issue
952
953         * boost-inst.C: fix \file
954
955         * LAssert.h: fix \file
956
957 2003-06-20  Angus Leeming  <leeming@lyx.org>
958
959         * filetools.[Ch] (NormalizePath): also change /foo//bar ==> /foo/bar.
960
961 2003-06-18  Angus Leeming  <leeming@lyx.org>
962
963         * many files: add the standard blurb, "This file is part of LyX" etc
964
965 2003-06-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
966
967         * limited_stack.h: make it have a const_iterator, add begin, and
968         end as interface.
969
970 2003-06-10  Angus Leeming  <leeming@lyx.org>
971
972         * filetools.C (copyFileToDir): ensure that temp files have unique names.
973
974 2003-06-04  André Pönitz  <poenitz@gmx.net>
975
976         * limited_stack.h (top): return reference instead of value
977
978 2003-06-02  Angus Leeming  <leeming@lyx.org>
979
980         * filetools.[Ch] (copyFileToDir): new helper function.
981
982         * os.h: remove trailing semi-colon from end of namespace os block.
983
984 2003-06-01  Angus Leeming  <leeming@lyx.org>
985
986         * filetools.h (LibScriptSearch): give the function a meaningful
987         description of what it now does.
988
989 2003-05-30  Angus Leeming  <leeming@lyx.org>
990
991         * filetools.C (LibScriptSearch): make it search for "$$s/" and replace
992         this with the path to the script. If the script is not found, the "$$s/"
993         string is removed.
994
995 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
996
997         * lstrings.[Ch] (prefixIs,suffixIs,subst): remove variants taking
998         char const *.
999
1000 2003-05-19  André Pönitz  <poenitz@gmx.net>
1001
1002         * lstrings.C: add missing implementation of three-arg bformat
1003
1004         * lstrings.C: change rest of char * fmt -> string const & fmt
1005
1006
1007 2003-05-15  André Pönitz  <poenitz@gmx.net>
1008
1009         * lstrings.[Ch]: use string const & instead of char const * for format
1010
1011 2003-05-12  André Pönitz  <poenitz@gmx.net>
1012
1013         * tostr.[Ch]: add long int overload
1014
1015 2003-05-12  Alfredo Braunstein  <abraunst@libero.it>
1016
1017         * lstrings.[Ch]: compile fix
1018
1019 2003-05-12  André Pönitz  <poenitz@gmx.net>
1020
1021         * lstrings.[Ch]: bformat() as wrapper around boost::format
1022
1023         * lyxstring.h: enable templatized constructor
1024
1025 2003-05-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
1026
1027         * limited_stack.h: Change some comments, simplify a couple of
1028         class functions.
1029
1030 2003-02-21  André Pönitz <poenitz@gmx.net>
1031
1032         * limited_stack.h: change underlying container to deque to
1033           make this re-usable in mathed
1034
1035 2003-04-08  John Levon  <levon@movementarian.org>
1036
1037         * filetools.C: fix MakeDisplayPath() to not
1038         lie (bug 993)
1039
1040 2003-03-30  John Levon  <levon@movementarian.org>
1041
1042         * Makefile.am:
1043         * BoostFormat.h:
1044         * boost-inst.C: moved from src/
1045
1046 2003-03-29  John Levon  <levon@movementarian.org>
1047
1048         * filetools.h:
1049         * filetools.C: never call Alert directly from here
1050
1051 2003-03-12  John Levon  <levon@movementarian.org>
1052
1053         * textutils.h: remove META_NEWLINE
1054
1055 2003-02-27  Ling Li  <ling@caltech.edu>
1056
1057         * lyxalgo.h (eliminate_duplicates): re-written to avoid the initial
1058         sort.
1059
1060 2003-02-25  Alfredo Braunstein <abraunst@libero.it>
1061
1062         * forkedcontr.C (timer): remove bogus continue
1063
1064 2003-02-25  Alfredo Braunstein <abraunst@libero.it>
1065
1066         * forkedcallqueue.[Ch]: added
1067
1068 2003-02-25  Alfredo Braunstein <abraunst@libero.it>
1069
1070         * forkedcontr.C (timer): Start the loop afresh if an item is deleted.
1071         Emiting the signal can result in an arbitrary change to the list.
1072
1073 2003-02-25  Angus Leeming  <leeming@lyx.org>
1074
1075         * forkedcontr.C (timer): Use a while loop rather than for; makes it
1076         easier to erase an element.
1077
1078 2003-02-25  Alfredo Braunstein <abraunst@libero.it>
1079
1080         * forkedcontr.C (timer): don't start a running timer.
1081
1082 2003-02-21  André Pönitz <poenitz@gmx.net>
1083
1084         * filetools.C (PutEnv): removed (unused)
1085
1086 2003-02-17  John Levon  <levon@movementarian.org>
1087
1088         * forkedcall.h:
1089         * forkedcall.C: add running()
1090
1091 2003-02-08  John Levon  <levon@movementarian.org>
1092
1093         * Makefile.am:
1094         * lyxtime.h:
1095         * lyxtime.C: add typedef for time_t, add current_time
1096
1097         * Makefile.am:
1098         * userinfo.h:
1099         * userinfo.C: add
1100
1101 2002-12-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1102
1103         * filetools.C (getExtFromContents): remove detection of epsi
1104
1105 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1106
1107         * several files: ws changes
1108
1109 2002-11-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1110
1111         * filetools.C (DirList): remove all ugly hacks and do it nice
1112
1113 2002-11-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1114
1115         * lyxsum.C: an ugly hack to compile with non-gnu linkers
1116
1117 2002-11-12  Angus Leeming  <aleem@pneumon.bg.ic.ac.uk>
1118
1119         * lstrings.C (getVectorFromString): #if 0 -> #if 1 until Lars devises
1120         a solution that he likes and which actually works.
1121
1122 2002-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
1123
1124         * lstrings.h (tostr): STRCONV
1125
1126         * lstrings.C (regexMatch): STRCONV
1127         (getVectorFromString): STRCONV, manual copy into vector
1128
1129         * filetools.C (GetFileContents): STRCONV
1130
1131         * os.C: include config.h
1132
1133         * lstrings.C (getVectorFromString): rewrite to use
1134         boost::tokenizer
1135
1136 2002-10-31  Angus Leeming  <leeming@lyx.org>
1137
1138         * forkedcall.C (generateChild): clean it up further.
1139
1140 2002-10-25  Angus Leeming  <leeming@lyx.org>
1141
1142         * forkedcall.[Ch]: split ForkedCall up into a base class ForkedProcess
1143         and a minimal ForkedCall daughter class.
1144
1145         * forkedcontr.[Ch]: minimal changes reflecting the use of a
1146         ForkedProcess base class responsible for launching all child proceses.
1147
1148 2002-09-25  Angus Leeming  <leeming@lyx.org>
1149
1150         * LIstream.h:
1151         * LOstream.h: doxygen fixes.
1152
1153 2002-09-24  Angus Leeming  <leeming@lyx.org>
1154
1155         * most files: clean-up the license info.
1156
1157 2002-09-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
1158
1159         * Makefile.am (INCLUDES): loose SIGC_INCLUDES
1160
1161 2002-09-16  Kayvan A. Sylvan  <kayvan@sylvan.com>
1162
1163         * os.h, os_os2.C, os_win32.C, os_unix.C: Added popen_read_mode(),
1164         since at least for Cygwin, the "rb" read_mode acceptable for
1165         fopen() is illegal for popen(), whose mode argument *must* be "r"
1166         or "w".
1167
1168         * filetools.C (RunCommand): Uses os::popen_read_mode() instead
1169         of os::read_mode()
1170
1171 2002-08-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1172
1173         * Makefile.am (libsupport_la_SOURCES): delete smart_ptr.h and
1174         utility.h
1175
1176         * smart_ptr.h: remove file
1177         * utility.h: ditto
1178
1179 2002-08-20  Lars Gullik Bjønnes  <larsbj@gullik.net>
1180
1181         * lyxfunctional.h: remove class_fun_t, void_class_fun_t,
1182         class_fun and void_class_fun
1183
1184 2002-08-20  John Levon  <levon@movementarian.org>
1185
1186         * Makefile.am:
1187         * fmt.C: remove
1188
1189 2002-08-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
1190
1191         * textutils.h: formatting.
1192
1193 2002-08-08  John Levon  <levon@movementarian.org>
1194
1195         * limited_stack.h: default to 100 not 10
1196
1197 2002-08-01  John Levon  <levon@movementarian.org>
1198
1199         * forkedcall.C: more details on error
1200
1201 2002-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
1202
1203         * lstrings.[hC]: rename stip to rtrim and frontStrip to ltrim,
1204         also add a trim function that is the equiv of
1205         strip(frontStrip(...)), also reimplement the functions
1206         (improvements still possible.)
1207
1208         * filetools.C: strip,frontStrip -> trim,ltrim,rtrim
1209         * forkedcall.C (generateChild): ditto
1210         * lstrings.C: ditto
1211
1212
1213 2002-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
1214
1215         * filetools.C (GetEnvPath): modify because of strip changes
1216         (createDirectory): ditto
1217         (findtexfile): ditto
1218         * lstrings.[Ch] (isStrInt): ditto
1219         (isStrUnsignedInt): ditto
1220         (strToInt): ditto
1221         (strToUnsignedInt): ditto
1222         (isStrDbl): ditto
1223         (contains): removed unneeded version of contains
1224         (containsOnly): removed uneeded versions of containsOnly
1225         (strip, frontStrip): removed unneded versions, changed argument types.
1226
1227 2002-07-22  Dekel Tsur  <dekelts@tau.ac.il>
1228
1229         * filetools.C (RunCommand): Made public
1230
1231 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
1232
1233         * limited_stack.h: fix comment, remove un-needed header
1234
1235 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1236
1237         * lstrings.h: correct comments for token and tokenPos
1238
1239 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
1240
1241         * lyxstring.C (operator>>): replace code which works only with
1242         _some_ versions of GNU STL with generic one
1243
1244 2002-07-18  Angus Leeming  <leeming@lyx.org>
1245
1246         * FileMonitor.[Ch]: new files. Monitor a file for any change and emit a
1247         signal should it do so.
1248
1249         * Makefile.am: add FileMonitor.[Ch].
1250
1251 2002-07-18  André Pönitz <poenitz@gmx.net>
1252
1253         * filetools.C (LibScriptSearch): bug fix
1254
1255 2002-07-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1256
1257         * filetools.C (LyXReadLink): add bool 'resolve' to return link
1258         contents as an absolute path
1259
1260 2002-07-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1261
1262         * filetools.C (IsLyXFilename):
1263         (IsSGMLFilename): use ascii_lowercase instead of lowercase
1264
1265         * lstrings.[Ch] (ascii_lowercase): new function
1266
1267 2002-07-16  André Pönitz <poenitz@gmx.net>
1268
1269         * FileInfo.Ch: remove unneeded code
1270
1271 2002-06-20  Herbert Voss  <voss@perce.de>
1272
1273         * filetools.[C] (readExtFromContents): add support for
1274         (x)fig format images
1275
1276 2002-06-26  André Pönitz <poenitz@gmx.net>
1277
1278         * filetools.[Ch]: small whitespace, more compact 'return' statement
1279
1280 2002-06-19  John Levon  <moz@compsoc.man.ac.uk>
1281
1282         * lyxalgo.h: add eliminate_duplicates
1283
1284 2002-06-17  Herbert Voss  <voss@perce.de>
1285
1286         * filetools.[C]: (readBB_from_PSFile) add a helperfunc
1287         (readBB_lyxerrMessage) to get better lyxerr messages
1288         (getExtFromContents) test epsi files in the right way
1289
1290         * DestroxLyXTmpDir.C: changed to true, to delete the
1291         temporary unzipped files, too.
1292
1293 2002-06-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1294
1295         * putenv.C (putenv): putenv should never be found in std::
1296
1297         * kill.C (kill): kill should never be found in std::
1298
1299         * filetools.C: pclose and popen should never be found in std::
1300
1301 2002-06-07  Angus Leeming  <leeming@lyx.org>
1302
1303         Fixes needed to compile with Compaq cxx 6.5.
1304         * lyxfunctional.h: rename lyx::class_fun(C & c, void(C::*f)(A)) as
1305         lyx::void_class_fun to avoid compiler problems with Compaq cxx 6.5:
1306         more than one instance of overloaded function "lyx::class_fun" matches
1307         the argument list.
1308
1309         * filetools.C:
1310         * kill.C:
1311         * lstrings.C:
1312         * putenv.C:
1313         * snprintf.h:
1314         * systemcall.C:
1315         * utility.h:
1316         all c-library variables have been moved into namespace std.
1317         Wrap using std::xyz declarations inside a #ifndef CXX_GLOBAL_CSTD block.
1318
1319         * kill.C: rename signal.h as csignal.
1320
1321         * putenv.C: rename stdlib.h as cstdlib
1322
1323 2002-06-05  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1324
1325         * lxtl.h: remove unused file
1326
1327 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
1328
1329         * Makefile.am:
1330         * date.C:
1331         * getUserName.C:
1332         * fileblocks.c:
1333         * StrPool.h:
1334         * StrPool.C: remove unused files
1335
1336         * lyxalgo.h:
1337         * lyxlib.h:
1338         * mkdir.C:
1339         * path.h:
1340         * path.C:
1341         * systemcall.C:
1342         * textutils.h:
1343         * translator.h:
1344         * types.h: document and small cleanups
1345
1346 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1347
1348         * switch from SigC signals to boost::signals.
1349
1350 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
1351
1352         * Makefile.am:
1353         * limited_stack.h: new template for limited-size
1354           stacks
1355
1356 2002-05-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1357
1358         * filetools.C: do not include LSubstring.h
1359
1360         * lstrings.C: change include order
1361         (regexMatch): use boost regex get rid of LRegex and LSubstring
1362
1363         * Makefile.am (libsupport_la_SOURCES): delete regex and substring
1364         stuff.
1365
1366         * LSubstring.h: remove file
1367         * regex.c: ditto
1368         * lyxregex.h: ditto
1369         * LRegex.C: ditto
1370         * LRegex.h: ditto
1371         * LSubstring.C: ditto
1372
1373 2002-05-24  Juergen Vigna  <jug@sad.it>
1374
1375         * lyxsum.C: include local includes first (self containment)
1376
1377 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1378
1379         * forkedcall.h: use more specific smart_ptr header.
1380
1381         * lyxsum.C: move some using declarations around.
1382
1383 2002-05-03  Herbert Voss  <voss@perce.de>
1384
1385         * filetools.C (getExtFromContents): only print the first 60 chars of
1386         the scanned-string when debugging.
1387
1388 2002-05-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1389
1390         * lyxstring.C: close to typo fix.
1391
1392 2002-05-02  Angus Leeming  <a.leeming@ic.ac.uk>
1393
1394         * filetools.C: add a using std::getline directive.
1395
1396 2002-05-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1397
1398         * lyxstring.C (operator>>): try a new version of the operator>>
1399
1400 2002-04-14  Herbert Voss  <voss@perce.de>
1401
1402         * lstrings.[Ch]: move the getVectorFromString and the vice versa
1403         from frontends/controllers/helper_funcs for better use in other
1404         programs
1405
1406 2002-04-15  Angus Leeming  <a.leeming@ic.ac.uk>
1407
1408         * tempname.C (make_tempfile): simplify the #ifdef block by using
1409         #if defined and re-write the #warning as a #error because it's terminal.
1410
1411 2002-04-08  Herbert Voss  <voss@perce.de>
1412
1413         * filetools.C (getExtFromContents): get tgif run
1414
1415 2002-04-08  Angus Leeming  <a.leeming@ic.ac.uk>
1416
1417         * filetools.C (getExtFromContents): re-format a little and remove
1418         replicated "sgi" entry.
1419
1420 2002-04-07  Herbert Voss  <voss@perce.de>
1421
1422         * filetools.[Ch]: add readBB_from_PSFile() to make bb available
1423         for the lyx-view in graphics (moved from ControlGraphics)
1424
1425 2002-04-07  Herbert Voss  <voss@perce.de>
1426
1427         * filetools.C: fix bug for eps. scans now a whole line
1428
1429 2002-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1430
1431         * lyxstring.C (operator>>): use the better solution, this fixes a
1432         "not able to read '\0'" bug.
1433
1434 2002-04-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1435
1436         * translator.h: add missing typename
1437
1438 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1439
1440         * filetools.C (LibScriptSearch): new command. Searches for scripts
1441         in lyx data directories.
1442         (LibScriptSearch): try to use split() correctly.
1443
1444 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1445
1446         * most files: ws cleanup
1447
1448         * Makefile.am: remove ld -r stuff
1449
1450 2002-03-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1451
1452         * Makefile.am (libsupport.la): special rules if partial linking
1453
1454 2002-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
1455
1456         * forkedcontr.C: turn the timer off when their are no longer any
1457         child processes running.
1458
1459 2002-03-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1460
1461         * forkedcall.h: docy fix
1462         change SignalType second type to be const ref.
1463
1464         * forkedcall.C: doxy fix
1465
1466 2002-03-11  Kayvan A. Sylvan  <kayvan@sylvan.com>
1467
1468         * lyxsum.C: compilation fix
1469
1470 2002-03-02  Herbert Voss  <voss@perce.de>
1471
1472         * filetools.C: fix bug for xbm format and added some more debug
1473         infos
1474
1475 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1476
1477         * forkedcontr.h: make constructor public
1478
1479         * types.h: remove layout_type
1480
1481 2002-03-01  Angus Leeming  <a.leeming@ic.ac.uk>
1482
1483         * filetools.C (getExtFromContents): cleanup.
1484
1485         * forkedcontr.h (d-tor): make it public for Dekel's crappy compiler.
1486
1487 2002-02-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1488
1489         * Makefile.am (SIGC_INCLUDES): add a -I directive for when
1490         building outside of source tree.
1491
1492 2002-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
1493
1494         * forkedcall.[Ch]:
1495         * forkedcontr.[Ch]: new files. Asger's forked call controller is
1496         re-born, with a working timer and a modified interface. The
1497         startscript method is now passed a Signal rather than a pointer
1498         to a callback function. This enables us to connect to the method of
1499         a C++ class, if we so desire.
1500
1501         * Makefile.am: add forkedcall.[Ch], forkedcontr.[Ch].
1502
1503 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
1504
1505         * Makefile.am:
1506         * os2_defines.h:
1507         * os2_errortable.h:
1508         * nt_defines.h: moved from src/
1509
1510 2002-02-23  Herbert Voss  <voss@perce.de>
1511
1512         * filetools.C: added more graphic formats
1513
1514 2002-02-18  Herbert Voss  <voss@perce.de>
1515
1516         * filetools.C: (getExtFromContents) return the fileextension
1517         if no format is detected.
1518
1519 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
1520
1521         * syscall.[Ch]: renamed as systemcall.[Ch]. class Systemcalls renamed
1522         as class SystemCall because one Systemcall instance represents a
1523         single child process.
1524
1525         * filetools.C:
1526         * Makefile.am: associated changes.
1527
1528 2002-02-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1529
1530         * syscall.C (Systemcalls): include <cstdlib>
1531
1532 2002-02-08  Herbert Voss  <voss@perce.de>
1533
1534         * filetools.C: (getExtFromContents) adding Grace-format
1535         for filetypes
1536
1537 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
1538
1539         * syscontr.[Ch]:
1540         * syssingleton.C: files removed.
1541
1542         * syscall.[Ch]: remove the forked calls interface, as nothing, nowhere
1543         uses it. Strip down the Systemcalls interface to make it brutally
1544         obvious how unsophisticated it is.
1545
1546 2002-02-08  Herbert Voss  <voss@perce.de>
1547
1548         * filetools.C: (getExtFromContents) adding TGIF-format
1549         and return type "user" when no type is detected
1550
1551 2002-02-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1552
1553         * textutils.h: remove IsLineSeparatorChar(char, Inset *)
1554
1555 2002-02-10 Kayvan Sylvan <kayvan@sylvan.com>
1556
1557         * os_win32.C: Add "using std::endl" to fix compilation for GCC 3.X.
1558
1559 2002-02-08  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1560
1561         * FileInfo.h: remove special cygwin code.
1562
1563         * filetools.C (do_popen): use os::read_mode().
1564
1565         * os_win32.C (read_mode):
1566         * os_os2.C (read_mode):
1567         * os_unix.C (read_mode): new method
1568
1569         * filetools.C (do_popen): fix for cygwin compatibility (from Claus
1570         Hentschel). This code should maybe be moved to os:: class.
1571
1572 2002-02-08  Herbert Voss  <voss@perce.de>
1573
1574         * filetools.C: (unzipFile) fix typo
1575
1576 2002-02-06  Herbert Voss  <voss@perce.de>
1577
1578         * filetools.[Ch]: fix some bugs for detecting zipped files
1579         adding unzipFile()
1580
1581 2002-02-04  Herbert Voss  <voss@perce.de>
1582
1583         * filetools.[Ch]: add ifZippedFile() for zipped
1584         graphic files
1585
1586 2002-02-04  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1587
1588         * filetools.C (FileOpenSearch): remove duplicated line, probably
1589         resulting from bad cut-and paste.
1590
1591 2002-01-31  Herbert Voss  <voss@perce.de>
1592
1593         * filetools.[Ch]: add getExtFromContents(), which returns
1594         the type of the (graphic) file
1595
1596 2002-01-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1597
1598         * copy.C (copy): open file in binary mode (for cygwin)
1599
1600 2002-01-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1601
1602         * lyxsum.C: remove #warnings and replaced them with runtime debug
1603         info.
1604
1605 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1606
1607         * lyxalgo.h: include <algorithm>
1608
1609 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
1610
1611         * lyx_algo.h: add a standard-conforming count to namespace lyx.
1612
1613         * lstrings.[Ch] (countChar): removed. Use lyx::count.
1614
1615 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
1616
1617         * filetools.C: fix use of FileInfo
1618
1619         * FileInfo.h:
1620         * FileInfo.C: add Asserts and documentation
1621
1622 2001-12-20  Kayvan A. Sylvan  <kayvan@sylvan.com>
1623
1624         * os_win32.C: compilation fixes
1625
1626 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1627
1628         * lstrings.h: do not include <cctype>
1629
1630 2001-12-12  Ben Stanley  <bds02@uow.edu.au>
1631
1632         * lyxsum.C: portability fix for mmap patch
1633
1634 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1635
1636         * filetools.C:
1637         * lstrings.C:
1638         * lyxstring.C: change "while(" to "while ("
1639
1640 2001-12-03  Ben Stanley <bds02@uow.edu.au>
1641
1642         * lyxsum.C: Added mmap version of CRC and made it selected
1643         by default where available. Used process_block for crc for speedup.
1644
1645 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
1646
1647         * filetools.C: more robust failure for DirList()
1648
1649 2001-11-29  André Pönitz <poenitz@gmx.net>
1650
1651         * types.h: introduce types for textclass numbers and layout numbers
1652
1653 2001-11-28  André Pönitz <poenitz@gmx.net>
1654
1655         * Makefile.am: put types.h in
1656
1657 2001-11-26  André Pönitz <poenitz@gmx.net>
1658
1659         * types.h: introduce types for paragraph positions and layout numbers
1660
1661 2001-11-04  John Levon  <moz@compsoc.man.ac.uk>
1662
1663         * filetools.C: remove dead code
1664
1665         * syscall.C: show prog in fail case
1666
1667 2001-10-24  Andre Poenitz  <poenitz@HTWM.De>
1668
1669         * filetools.C: code style cleanup
1670
1671 2001-10-23  Angus Leeming  <a.leeming@ic.ac.uk>
1672
1673         * os.h: remove spurious punctuation.
1674
1675 2001-10-19  John Levon  <moz@compsoc.man.ac.uk>
1676
1677         * LAssert.h:
1678         * LAssert.C: use new emergencyCleanup()
1679
1680 2001-10-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1681
1682         * filetools.C (i18nLibFileSearch): check also LANGUAGE and LC_ALL,
1683         like GNU gettext does.
1684
1685 2001-10-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1686
1687         * filetools.C (AbsolutePath): Use os::is_absolute_path() (also in
1688         several methods)
1689         (findtexfile): oops! the change from last friday was wrong...
1690
1691         * os_win32.C (is_absolute_path):
1692         * os_unix.C (is_absolute_path):
1693         * os_os2.C (is_absolute_path): new method
1694
1695 2001-10-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1696
1697         * filetools.C (findtexfile): apply os::internal_path to the result.
1698
1699 2001-07-02  Claus Hentschel  <claus.hentschel@mbau.fh-hannover.de>
1700
1701         * os_win32.C:
1702         * os_unix.C:
1703         * os_os2.C:
1704         * os.h: add internal_path method, which converts a unix-type file
1705         name to the type known to the underlying file system (currently
1706         only useful on cygwin) [from Ruurd A. Reitsma and Claus Hentschel]
1707
1708 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1709
1710         * smart_ptr.h: new file
1711
1712         * utility.h: new file
1713
1714 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
1715
1716         * filetools.h:
1717         * filetools.C (IsDirWriteable): fix this
1718
1719 2001-07-26  Baruch Even  <baruch@lyx.org>
1720
1721         * lyxlib.h (float_equal): Added function to compare floats almost equal
1722         (see function comment).
1723
1724 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
1725
1726         Consistent use of Lsstream.h:
1727         * filetools.C (GetFileContents): std::ostringstream -> ostringstream.
1728
1729 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1730
1731         * translator.h: (*it). -> it->
1732
1733 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
1734
1735         * filetools.C (DeleteAllFilesInDir): send debug output to
1736         Debug::FILES instewad of Debug::ANY.
1737
1738         * DebugStream.h: remove gcc 2.8.x hack.
1739
1740 2001-06-26  The LyX Project  <jug@sad.it>
1741
1742         * lstrings.h:
1743         * lstrings.C (escape): move method to escape non ascii characters
1744         from insets label and ref to here.
1745
1746 2001-06-25  The LyX Project  <jug@sad.it>
1747
1748         * filetools.C (IsLyXFilename):
1749         (IsSGMLFilename): do case insensitive name matching
1750
1751 2001-06-24  The LyX Project  <jug@sad.it>
1752
1753         * lstrings.C (compare_ascii_no_case): version of compare_no_case
1754         which only considers case of ascii characters
1755
1756         * lyxstring.C (replace): added for compatibility with gcc 2.95.3+
1757         sstream header.
1758
1759 2001-06-23  The LyX Project  <jug@sad.it>
1760
1761         * textutils.h (IsPrintable): take into account unprintable spaces
1762         above 127.
1763         (IsDigit): new function
1764         (IsLetterCharOrDigit): use IsDigit
1765
1766 2001-06-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1767
1768         * filetools.C (findtexfile): strip final \r if necessary (for
1769         cygwin)
1770
1771 2001-06-19  Angus Leeming  <a.leeming@ic.ac.uk>
1772
1773         * FileInfo.C:
1774         * StrPool.C: removed // -*- C++ -*- as first line.
1775
1776 2001-06-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1777
1778         * lyxsum.C (do_crc): switch to use boost::crc for generating the
1779         checksum.
1780
1781 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1782
1783         * lstrings.C:
1784         * syscall.C:
1785         * syscontr.C:
1786         * LSubstring.C: bring C functions in global namespace if
1787         necessary.
1788
1789         * lstrings.h (compare): use the std:: version of str[n]cmp only
1790         when it exists.
1791
1792 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1793
1794         * syscontr.C: add std::
1795
1796         * syscall.C: add std::
1797
1798         * lstrings.h (compare): add std::
1799
1800         * lstrings.C (prefixIs): add std::
1801         (suffixIs): ditto
1802         (subst): ditto
1803
1804         * LSubstring.C (LSubstring): add std::
1805
1806 2001-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1807
1808         * lyxsum.C (sum): use istreambuf_iterator when available.
1809
1810 2001-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1811
1812         * lyxsum.C (sum): don't use sstream anymore, use istream_iterator
1813         directly instead.
1814
1815         * lyxstring.C (operator): make const operator[] behave as
1816         non-const and at.
1817
1818 2001-05-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1819
1820         * Makefile.am (EXTRA_DIST): add the os_*.C files.
1821
1822 2001-05-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1823
1824         * filetools.C (MakeAbsPath): remove debugging statement
1825
1826 2001-05-16  Ruurd Reitsma  <r.a.reitsma@wbmt.tudelft.nl>
1827
1828         * FileInfo.h: X_OK workaround for cygwin
1829
1830         * Makefile.am:
1831         * os.C:
1832         * os.h:
1833         * os_os2.C:
1834         * os_unix.C:
1835         * os_win32.C:
1836         * filetools.C:
1837         * filetools.h: Added os:: class.
1838
1839         * rename.C:
1840         * syscall.C:
1841         * tempname.C: OS/2 fixes
1842
1843 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1844
1845         * textutils.h: remvoe !NEW_INSETS cruft
1846
1847 2001-05-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1848
1849         * fmt.C:
1850         * atoi.C: add using directives when needed for C functions
1851         declared in std:: namespace.
1852
1853 2001-04-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1854
1855         * lstrings.C : add two helper structs, local_lowercase and
1856         local_uppercase.
1857         (lowercase): change to use std::transform
1858         (uppercase): change to use std::transform
1859
1860 2001-04-25  Allan Rae  <rae@lyx.org>
1861
1862         * lyxstring.C : Assert got moved and Lars missed a few.
1863
1864 2001-04-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1865
1866         * LAssert.h (Assert): put into namespace lyx
1867
1868         * lyxfunctional.h: put into namespace lyx
1869         * translator.h: adjust
1870
1871 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1872
1873         * lyxalgo.h: put into namespace lyx, add firster and copy_if
1874
1875         * FileInfo.h: inherit privately from noncopyable
1876         * path.h: ditto
1877
1878 2001-04-16  Allan Rae  <rae@lyx.org>
1879
1880         * tempname.C (make_tempfile): #warning triggers an error on Sun CC 6.0
1881         as an unrecognised preprocessor directive.  So ensure they're wrapped.
1882
1883 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
1884
1885         * several files: remove CXX_WORKING_NAMESPACES
1886
1887         * FileInfo.h: noncopyable is in namespace boost
1888         * path.h: ditto
1889
1890 2001-02-16  John Levon  <moz@compsoc.man.ac.uk>
1891
1892         * syscontr.h: fix header include
1893
1894 2001-02-28  Baruch Even  <baruch@ev-en.org>
1895
1896         * filetools.C: Removed dependency on syscall.h
1897
1898         * syscall.h:
1899         * syscall.C: Minor cleanings before I start to touch this code.
1900
1901 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
1902
1903         * filetools.C (CreateTmpDir): change umask to 0700.
1904
1905 2001-02-27  José Matos  <jamatos@fep.up.pt>
1906
1907         * filetools.h (BasePath):
1908         * filetools.C (BasePath): removed since it is a duplicate of OnlyPath.
1909
1910         * filetools.C (IsLyXFilename):
1911         * filetools.C (IsSGMLFilename): test if extension is suffix and not
1912         only contained.
1913
1914 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
1915
1916         * fmt.C:
1917         * filetools.C:
1918         * atoi.C: remove cruft
1919
1920 2001-02-06  albert chin  <china@thewrittenword.com>
1921
1922         * snprintf.h:
1923         * fmt.C: use HAVE_DECL_SNPRINTF
1924
1925 2001-01-26  Dekel Tsur  <dekelts@tau.ac.il>
1926
1927         * lyxstring.C: Fix some assertions.
1928
1929 2001-01-23  Dekel Tsur  <dekelts@tau.ac.il>
1930
1931         * lstrings.C (strip): Add a fix for compilers with broken
1932         string::find_last_not_of.
1933
1934         * filetools.C (AddPath): Simplify by using strip and frontStrip.
1935
1936 2001-01-20  Dekel Tsur  <dekelts@tau.ac.il>
1937
1938         * lyxstring.C (rfind): Fix broken functions.
1939         (find): Few optimizations.