]> git.lyx.org Git - lyx.git/blobdiff - src/support/ChangeLog
An improved HAVE_MKDIR patch that compiles also with MinGW.
[lyx.git] / src / support / ChangeLog
index 03836db8a23f2966b7233fffea9e824bc92717cf..0587d5d46253e286a6b584f8ca1809778403436b 100644 (file)
@@ -1,3 +1,122 @@
+2004-12-16  Angus Leeming  <leeming@lyx.org>
+
+       * mkdir.C: move the HAVE_MKDIR conditional code out of config.h
+       and into here.
+
+2004-12-15  Angus Leeming  <leeming@lyx.org>
+
+       * FileInfo.[Ch] (getNumberOfLinks): removed.
+
+2004-12-15  Angus Leeming  <leeming@lyx.org>
+
+       * tempname.C: #include fcntl.h and sys/stat.h if creating a temp
+       file using mktemp and open.
+
+2004-12-14  Angus Leeming  <leeming@lyx.org>
+
+       * os.h, os_os2.C, os_unix.C, os_win32.C:
+       (binpath, binname, getTmpDir): return a const reference rather than
+       a copy of the data.
+       (homepath, nulldev): new functions returning the name of "HOME" and
+       the null device, respectively.
+
+       * filetools.C: (ExpandPath, MakeDisplayPath):
+       * path_defines.C.in (setLyxPaths): use os::homepath(), not
+       GetEnvPath("HOME").
+
+2004-12-14  Angus Leeming  <leeming@lyx.org>
+
+       * os.h, os_{os2,unix,win32}.C (init): change interface to no longer
+       pass the addresses of the parameters received by main.
+
+2004-12-14  Angus Leeming  <leeming@lyx.org>
+
+       * copy.C (copy): open the ifstream with ios::binary.
+
+2004-12-14  Angus Leeming  <leeming@lyx.org>
+
+       * os.C: Add _WIN32 to the #define.
+
+       * systemcall.C (startscript): remove trailing '/n' from request to
+       start the command in a minimized window under DOS.
+
+2004-12-14  Angus Leeming  <leeming@lyx.org>
+
+       * Makefile.am (AM_CPPFLAGS): Remove trailing slash from -Ifoo/
+       to overcome bug in the MinGW port of g++ 3.4.2.
+
+2004-11-26  Angus Leeming  <leeming@lyx.org>
+
+       * globbing.[Ch] (glob): change API to:
+       1. Append matches to the input container.
+       2. Require a working_dir parameter. The function invokes chdir
+       internally (through use of Path).
+
+2004-11-26  Angus Leeming  <leeming@lyx.org>
+
+       * filefilterlist.C (convert_brace_glob): moved here from
+       globbing.[Ch].
+
+       * filefilterlist.[Ch]: clean-up FileFilterList API.
+
+       * globbing.[Ch] (convert_brace_glob): moved to filefilterlist.C.
+       (expand_globs): moved to xforms/FormFiledialog.C.
+
+2004-11-25  Angus Leeming  <leeming@lyx.org>
+
+       * filefilterlist.[Ch]:
+       * globbing.[Ch]: split FileFilterList into its own .[Ch] files.
+
+       * Makefile.am: add filefilterlist.[Ch].
+
+2004-11-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * textutils.h (isKommaChar): remove
+
+2004-11-16  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * forkedcontr.C (find_pid): simplify and also make pass concept
+       checks.
+       (handleCompletedProcesses): make sure that we do not slice the
+       object and satisfy concept checks.
+
+2004-11-09  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
+
+       * filetools.[Ch] (getFormatFromContents): don't guess format from
+       extension, return string() instead of "user" if the format could
+       not be determined
+
+2004-11-07  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * Make it clearer where include files are coming from.
+
+2004-11-06  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * translator.h: use bind, equal_to instead of equal_1st_in_pair
+       and equal_2nd_in_pair
+
+       * Makefile.am (libsupport_la_SOURCES): remove lyxfunctional.h
+       * lyxfunctional.h: delete file
+
+       * lyxfunctional.h: delete compare_memfun and helper classes
+
+       * forkedcontr.C (find_pid): use bind, equal_to instead of
+       compare_memfun
+
+       * lyxfunctional.h: delete back_inserter_fun functions and helper
+       classes.
+
+2004-11-04  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * snprintf.[ch]: removed
+
+       * Makefile.am (libsupport_la_SOURCES): remove snprintf
+
+2004-10-29  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
+
+       * filetools.[Ch] (getExtFromContents): rename to
+       getFormatFromContents and return always a format
+
 2004-10-25  Angus Leeming  <leeming@lyx.org>
 
        * forkedcall.C (generateChild): strip quotes from each argument