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