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