]> git.lyx.org Git - features.git/blobdiff - ChangeLog
my changes during the holidyas...i expect some compilers to have some problems, but...
[features.git] / ChangeLog
index 0d710f2a172e0943c6fb887b49fe9ae0836fc9ae..d31dc98696702a002b21513c498415f783121782 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,175 @@
+2000-01-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
+
+       * src/BufferView.C: first go at a TextCache to speed up switching
+       between documents.
+
+2000-01-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
+
+       * lib/examples/ItemizeBullets.lyx: update from Tino Meinen. 
+       * lib/examples/nl_voorbeeld_ruw.lyx: ditto.
+       * lib/examples/nl_voorbeeld_verlyxt.lyx: ditto.
+       * lib/examples/nl_opsommingstekens.lyx: new translation from Tino
+       Meinen.
+       
+       * src/mathed/math_defs.h (MathedRowSt): make sure that all
+       members of the struct are correctly initialized to 0 (detected by
+       purify) 
+       * src/lyxrc.C (LyXRC): ditto for print_adapt_output.
+       * src/insets/figinset.C (InsetFig): ditto for pswid and pshgh.
+
+       * src/insets/figinset.C (sigchldchecker): use "delete" to free a
+       pidwait, since it was allocated with "new". This was potentially
+       very bad. Thanks to Michael Schmitt for running purify for us.
+
+
+2000-01-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
+
+       * src/lyx_gui_misc.C: add a 'using std::make_pair;' statement.
+
+       * src/lyx_gui_misc.h: add a 'using std::pair;' statement.
+
+1999-12-30  Allan Rae  <rae@lyx.org>
+
+       * lib/templates/IEEEtran.lyx: minor change
+
+       * src/lyxvc.C (registrer, checkIn), src/lyx_cb.C (MenuInsertLabel),
+       src/mathed/formula.C (LocalDispatch): askForText changes
+
+       * src/lyx_gui_misc.[Ch] (askForText): now returns a bool also so we 
+       know when a user has cancelled input. Fixes annoying problems with
+       inserting labels and version control.
+
+1999-12-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
+
+       * src/support/lstrings.C (tostr): rewritten to use strstream and
+       stringstream
+
+1999-12-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
+
+       * src/support/filetools.C (IsFileWriteable): use fstream to check
+       (IsDirWriteable): use fileinfo to check
+
+       * src/support/filetools.h (FilePtr): whole class deleted
+
+       * src/insets/figinset.C (GetPSSizes): rewritten to use ifstream.
+
+       * src/lyxparagraph.h (readSimpleWholeFile): make arg istream
+
+       * src/lyx_cb.C (InsertAsciiFile): use ifstream instead of FilePtr
+
+       * src/bufferlist.C (write): use ifstream and ofstream instead of
+       FILE*
+
+       * src/Spacing.h: use istrstream instead of sscanf
+
+       * src/mathed/math_defs.h: change first arg to istream from FILE*
+
+       * src/buffer.C (insertLyXFile): use ifstream instead of FilePtr
+
+       * src/mathed/math_parser.C: have yyis to be an istream 
+       (LexGetArg): use istream (yyis)
+       (yylex): ditto
+       (mathed_parse): ditto
+       (mathed_parser_file): first arg istream instead of FILE*, set yyis
+
+       * src/mathed/formula.C (Read): rewritten to use istream
+
+       * src/mathed/formulamacro.C (Read): rewritten to use istream
+
+       * src/lyxlex.h (~LyXLex): deleted desturctor 
+       (getStream): new function, returns an istream
+       (getFile): deleted funtion
+       (IsOK): return is.good();
+
+       * src/lyxlex.C (LyXLex): delete file and owns_file
+       (setFile): open an filebuf and assign that to a istream instead of
+       using FILE*
+       (setStream): new function, takes an istream as arg. 
+       (setFile): deleted function
+       (EatLine): rewritten us use istream instead of FILE*
+       (next): ditto
+       (nextToken): ditto
+
+       * src/table.C (LyXTable): use istream instead of FILE*
+       (Read): rewritten to take an istream instead of FILE*
+
+1999-12-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
+
+       * src/buffer.C (Dispatch): remove an extraneous break statement.
+
+       * src/support/filetools.C (QuoteName): change to do simple
+       'quoting'. More work is necessary. Also changed to do nothing
+       under emx (needs fix too).
+       (Putenv): Cast the argument of putenv() with PUTENV_TYPE_ARG.
+
+       * acinclude.m4 (STL_STRING_FWD_H_LOCATION): add the comment for
+       config.h.in to the AC_DEFINE_UNQUOTED() call.
+       (LYX_FUNC_PUTENV_ARGTYPE): new macro. Checks whether putenv()
+       needs char * as argument (because Solaris 7 declares it like
+       that). 
+
+       * acconfig.h: remove placeholder for STL_STRING_FWD_H_LOCATION;
+       remove definition of BZERO.
+
+1999-12-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
+
+       * src/support/LRegex.C: include <regex.h> if HAVE_REGEX_H is
+       defined, "lyxregex.h" if not.
+
+       * src/support/Makefile.am (noinst_LTLIBRARIES): changed from
+       pkglib_ to noinst_
+       (REGEX): new variable that is set to regex.c lyxregex.h when
+       AM_CONDITIONAL USE_REGEX is set.
+       (libsupport_la_SOURCES): add $(REGEX)
+
+       * src/mathed/Makefile.am (noinst_LTLIBRARIES): changed from
+       pkglib_ to noinst_
+
+       * src/insets/Makefile.am (noinst_LTLIBRARIES): changed from
+       pkglib_ to noinst_
+
+       * configure.in: add call to LYX_REGEX 
+
+       * acinclude.m4 (LYX_REGEX): checks if we need to use the included
+       regex or not. Uses a a AM_CONDITIONAL to decide what to compile. 
+
+1999-12-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
+
+       * lib/bind/fi_menus.bind: new file, from
+       pauli.virtanen@saunalahti.fi. 
+
+       * src/buffer.C (getBibkeyList): pass the parameter delim to
+       InsetInclude::getKeys and InsetBibtex::getKeys.
+
+       * src/insets/insetinclude.[Ch] (getKeys): add parameter delim, which
+       is passed to Buffer::getBibkeyList
+       
+       * src/insets/insetbib.[Ch] (getKeys): add parameter delim, and use it
+       instead of the hardcoded comma.
+
+       * src/insets/insetbib.C (getKeys): make sure that there are not
+       leading blanks in bibtex keys. Normal latex does not care, but
+       harvard.sty seems to dislike blanks at the beginning of citation
+       keys. In particular, the retturn value of the function is
+
+       * INSTALL: make it clear that libstdc++ is needed and that gcc
+       2.7.x probably does not work.
+
+       * src/support/filetools.C (findtexfile): make debug message go to
+       the LATEX channel
+       * src/insets/insetbib.C (getKeys): ditto
+
+       * src/debug.C (showTags): make sure that the output is correctly
+       aligned. 
+
+       * configure.in: add a comment for TWO_COLOR_ICON define.
+
+       * acconfig.h: remove all the entries that already defined in
+       configure.in or acinclude.m4.
+
+       * src/buffer.C (makeLaTeXFile): headers of latex file also changed
+       to avoid user name, date and copyright.
+
 1999-12-21  Juergen Vigna  <jug@sad.it>
 
        * src/table.C (Read): Now read bogus row format informations