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