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