]> git.lyx.org Git - lyx.git/blob - ChangeLog
e674a996b17d2ff17e03b9953a180184816c5dd7
[lyx.git] / ChangeLog
1 2000-01-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
2
3         * src/support/lyxsum.C: move using std::ifstream inside
4         MODERN_STL_STREAMS
5
6         * src/support/Makefile.am (libsupport_la_SOURCES): added mkdir.C
7         and putenv.C
8
9         * src/mathed/formulamacro.C: delete #include "bufferlist.h" never used
10
11         * src/mathed/formula.C: delete #include "bufferlist.h" never used
12
13         * src/insets/figinset.C (InitFigures): use new instead of malloc
14         to allocate memory for figures and bitmaps.
15         (DoneFigures): use delete[] instead of free to deallocate memory
16         for figures and bitmaps.
17         (runqueue): use new to allocate 
18         (getfigdata): use new/delete[] instead of malloc/free
19         (RegisterFigure): ditto
20
21         * some files: moved some declarations closer to first use, small
22         whitespace changes use preincrement instead of postincrement where
23         it does not make a difference.
24         
25         * src/kbmap.[Ch]: delete code according to define NO_HASH, it is a
26         step on the way to use stl::containers for key maps. 
27
28         * src/bufferlist.h: add a typedef for const_iterator and const
29         versions of begin and end.
30
31         * src/bufferlist.[Ch]: change name of member variable _state to
32         state_. (avoid reserved names)
33         (makePup): removed
34         (getFileNames): returns the filenames of the buffers in a vector.
35
36         * configure.in (ALL_LINGUAS): added ro
37
38         * src/support/putenv.C: new file
39
40         * src/support/mkdir.C: new file
41
42 2000-01-20  Allan Rae <rae@lyx.org>
43
44         * lib/layouts/IEEEtran.layout: Added several theorem environments
45
46         * lib/templates/IEEEtran.lyx: Example theorem environments and a
47         couple of minor additions.
48
49         * lib/doc/LaTeXConfig.lyx.in:  Use URL insets for ftp sites 
50         (except for those in footnotes of course)
51
52 2000-01-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
53
54         * src/lyxlookup.C (CloseLyXLookup): set xic=0; after destruction. 
55
56         * src/mathed/math_utils.C (MathedLookupBOP): rewrite to use
57         std::sort and std::lower_bound instead of qsort and handwritten
58         binarysearch.
59         (struct compara): struct that holds the functors used by std::sort
60         and std::lower_bound in MathedLookupBOP.
61
62 2000-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
63
64         * src/support/LAssert.h: do not do partial specialization. We do
65         not really need it.
66
67         * src/support/lyxlib.h: note that lyx::getUserName() and
68         lyx::date() are not in use right now. Should these be suppressed?
69
70         * src/buffer.C (makeLaTeXFile): we do not need the user name here.
71         (makeLinuxDocFile): do not put date and user name in linuxdoc
72         headers. 
73
74         * src/support/lyxlib.h (kill): change first argument to long int,
75         since that's what solaris uses.
76
77         * src/support/kill.C (kill): fix declaration to match prototype.
78
79         * config/lyxinclude.m4 (LYX_CXX_NAMESPACES): fix the macro to
80         actually check whether namespaces are supported. This is not what
81         it used to do.
82
83         * src/support/lyxsum.C: add a using directive.
84
85 2000-01-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
86
87         * src/support/kill.C: if we have namespace support we don't have
88         to include lyxlib.h.
89
90         * src/support/lyxlib.h: use namespace lyx if supported.
91
92 2000-01-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
93
94         * src/support/date.C: new file
95
96         * src/support/chdir.C: new file
97
98         * src/support/getUserName.C: new file
99
100         * src/support/getcwd.C: new file
101
102         * src/support/abort.C: new file
103
104         * src/support/kill.C: new file
105
106         * src/support/lyxlib.h: moved all the functions in this file
107         insede struct lyx. Added also kill and abort to this struct. This
108         is a way to avoid the "kill is not defined in <csignal>", we make
109         C++ wrappers for functions that are not ANSI C or ANSI C++.
110
111         * src/support/lyxsum.C (sum): use #ifdef MODERN_STL_STREAMS
112         instead of #if __GLIBCPP__. Since lyxsum is now put inside struct
113         lyx it has been renamed to sum.
114
115 2000-01-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
116
117         * src/text.C: add using directives for std::min and std::max.
118
119 2000-01-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
120
121         * src/texrow.C (getIdFromRow): actually return something useful in
122         id and pos. Hopefully fixes the bug with positionning of errorbox
123         insets. 
124
125         * src/lyx_main.C (easyParse): output an error and exit if an
126         incorrect command line option has been given.
127
128         * src/spellchecker.C (ispell_check_word): document a memory leak.
129
130         * src/bufferlist.C (write): fix mismatched allocation/deletion,
131         where a "struct utimbuf" is allocated with "new" and deleted with
132         "delete[]". 
133
134 2000-01-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
135
136         * src/text2.C (CutSelection): don't delete double spaces.
137         (PasteSelection): ditto
138         (CopySelection): ditto
139         
140         * src/text.C (Backspace): don't delete double spaces.
141
142         * src/lyxlex.C (next): fix a bug that were only present with
143         conformant std::istream::get to read comment lines, use
144         std::istream::getline instead. This seems to fix the problem.
145
146 2000-01-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
147
148         * src/text2.C (DeleteEmptyParagraphMechanism): fix for the "not
149         allowed to insert space before space" editing problem. Please read
150         commends at the beginning of the function. Comments about usage
151         are very welcome.
152
153         * src/text.C (InsertChar): fix for the "not allowed to insert
154         space before space" editing problem.
155
156         * src/text2.C (DeleteEmptyParagraphMechanism): when
157         IsEmptyTableRow can only return false this last "else if" will
158         always be a no-op. Commented out.
159
160         * src/text.C (RedoParagraph): As far as I can understand tmp
161         cursor is not really needed.
162
163         * src/lyxtext.[Ch] (IsEmptyTableCell): commented out. As used at
164         present it could only return false anyway. 
165         (several functions): Did something not so smart...added a const
166         specifier on a lot of methods.
167         
168         * src/paragraph.C (BreakParagraph): removed the tmp->text.reserve
169         and add a tmp->text.resize. The LyXParagraph constructor does the
170         resize for us.
171         (BreakParagraphConservative): ditto
172
173         * src/support/path.h (Path): add a define so that the wrong usage
174         "Path("/tmp") will be flagged as a compilation error:
175         "`unnamed_Path' undeclared (first use this function)"
176
177 2000-01-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
178
179         * config/lyxinclude.m4 (LYX_FUNC_PUTENV_ARGTYPE): fix the macro,
180         which was bogus for several reasons.
181
182         * src/LaTeX.C (scanAux): fix the regular expression used to scan
183         .aux files. 
184         (runBibTeX): ditto.
185
186         * autogen.sh: do not use "type -path" (what's that anyway?).
187
188         * src/support/filetools.C (findtexfile): remove extraneous space
189         which caused a kpsewhich warning (at least with kpathsea version
190         3.0). 
191
192 2000-01-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
193
194         * src/mathed/Makefile.am (noinst_LTLIBRARIES): use .la
195
196         * src/insets/Makefile.am (noinst_LTLIBRARIES): use .la
197
198         * src/Makefile.am (lyx_DEPENDENCIES): switch back to .la libs
199
200 2000-01-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
201
202         * src/paragraph.C (BreakParagraph): do not reserve space on text
203         if we don't need to (otherwise, if pos_end < pos, we end up
204         reserving huge amounts of memory due to bad unsigned karma).
205         (BreakParagraphConservative): ditto, although I have not seen
206         evidence the bug can happen here.
207
208         * src/lyxparagraph.h: add a using std::list.
209
210 2000-01-11  Juergen Vigna  <jug@sad.it>
211
212         * src/menus.C (MenuDocu): output an Alert if the documentation-file
213         could not be found.
214
215 2000-01-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
216
217         * src/vc-backend.C (doVCCommand): change to be static and take one
218         more parameter: the path to chdir too be fore executing the command.
219         (retrive): new function equiv to "co -r"
220
221         * src/bufferlist.C (loadLyXFile): implement the missing parts if
222         file_not_found_hook is true.
223
224         * src/lyxvc.C (file_not_found_hook): implement file_not_found_hook.
225
226         * src/support/filetools.C (IsFileWriteable): use FileInfo to check
227         if a file is readwrite,readonly...anything else.
228
229 2000-01-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
230
231         * src/lyx_cb.C (MakeLaTeXOutput): name change from MakeDVIOutput
232         (CreatePostscript): name change from MenuRunDVIPS (or something)
233         (PreviewPostscript): name change from MenuPreviewPS
234         (PreviewDVI): name change from MenuPreviewDVI
235
236         * lib/lyxrc.example: added \pdflatex_command, \pdf_mode,
237         \view_pdf_command., \pdf_to_ps_command
238
239         * lib/configure.m4: added search for PDF viewer, and search for
240         PDF to PS converter. 
241         (lyxrc.defaults output): add \pdflatex_command,
242         \view_pdf_command and \pdf_to_ps_command.
243
244         * src/lyx_cb.C (MenuPreviewDVI): renamed from MenuPreview.
245
246         * src/bufferlist.C (write): we don't use blocksize for anything so
247         I removed it.
248
249 2000-01-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
250
251         * src/support/block.h: disable operator T* (), since it causes
252         problems with both compilers I tried. See comments in the file.
253
254         * lib/reLyX/configure.in: do not define LYX_DIR. support flag
255         --with-lyxname. 
256
257         * lib/reLyX/reLyX.in: change LYX_DIR to pkgdatadir; change env.
258         variable LYX_DIR_10x to LYX_DIR_11x.
259
260         * src/Makefile.am: replace variable LYX_DIR with pkgdatadir.
261
262         * INSTALL: document --with-lyxname.
263         * NEWS: ditto.
264
265         * configure.in: new configure flag --with-lyxname which allows to
266         choose the name under which lyx is installed. Default is "lyx", of
267         course. It used to be possible to do this with --program-suffix,
268         but the later has in fact a different meaning for autoconf.
269
270         * src/support/lstrings.h (lstrchr): reformat a bit.
271
272         * src/lyxlex.h: include LIstream.h, for Sun CC this time.
273         * src/mathed/math_defs.h: ditto.
274
275 2000-01-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
276
277         * src/lyxrc.[Ch]: New tag and variable "\make_backup". Defaults to
278         true, decides if we create a backup file or not when saving. New
279         tag and variable \pdf_mode, defaults to false. New tag and
280         variable \pdflatex_command, defaults to pdflatex. New tag and
281         variable \view_pdf_command, defaults to xpdf. New tag and variable
282         \pdf_to_ps_command, defaults to pdf2ps.
283
284 2000-01-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
285
286         * src/bufferlist.C (close): don't call insetUnlock if the buffer
287         does not have a BufferView.
288         (unlockInset): ditto + don't access the_locking_inset if the
289         buffer does not have a BufferView.
290
291         * src/LyXView.C (KeyPressMask_raw_callback): add a XSync in
292         certain circumstances so that we don't continue a keyboard
293         operation long after the key was released. Try f.ex. to load a
294         large document, press PageDown for some seconds and then release
295         it. Before this change the document would contine to scroll for
296         some time, with this change it stops imidiatly.
297
298         * src/support/block.h: don't allocate more space than needed. As
299         long as we don't try to write to the arr[x] in a array_type arr[x]
300         it is perfectly ok. (if you write to it you might segfault).
301         added operator value_type*() so that is possible to pass the array
302         to functions expecting a C-pointer.
303
304         * lib/Makefile.am (dist-hook): don't fail completely if unable to
305         cvs.
306
307         * intl/*: updated to gettext 0.10.35, tried to add our own
308         required modifications. Please verify.
309
310         * po/*: updated to gettext 0.10.35, tried to add our own required
311         modifications. Please verify.
312         
313         * src/support/lstrings.C (tostr): go at fixing the problem with
314         cxx and stringstream. When stringstream is used return
315         oss.str().c_str() so that problems with lyxstring and basic_string
316         are avoided. Note that the best solution would be for cxx to use
317         basic_string all the way, but it is not conformant yet. (it seems)
318
319         * src/lyx_cb.C + other files: moved several global functions to
320         class BufferView, some have been moved to BufferView.[Ch] others
321         are still located in lyx_cb.C. Code changes because of this. (part
322         of "get rid of current_view project".)
323
324         * src/buffer.C + other files: moved several Buffer functions to
325         class BufferView, the functions are still present in buffer.C.
326         Code changes because of this.
327
328         * config/lcmessage.m4: updated to most recent. used when creating
329         acinclude.m4.
330
331         * config/progtest.m4: updated to most recent. used when creating
332         acinclude.m4.
333         
334         * config/gettext.m4: updated to most recent. applied patch for
335         tmplinguas.
336
337         * config/gettext.m4.patch: new file that shows what changes we
338         have done to the local copy of gettext.m4.
339
340         * config/libtool.m4: new file, used in creation of acinclude.m4
341
342         * config/lyxinclude.m4: new file, this is the lyx created m4
343         macros, used in making acinclude.m4.
344         
345         * autogen.sh: GNU m4 discovered as a separate task not as part of
346         the lib/configure creation. 
347         Generate acinlucde from files in config. Actually cat
348         lyxinclude.m4, libtool.m4 and gettext.m4 together. This makes it
349         easier to upgrade .m4 files that really are external.
350
351         * src/Spacing.h: moved using std::istringstream to right after
352         <sstream>. This should fix the problem seen with some compilers.
353
354 2000-01-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
355
356         * src/lyx_cb.C: began some work to remove the dependency a lot of
357         functions have on BufferView::text, even if not really needed.
358         (GetCurrentTextClass): removed this func, it only hid the
359         current_view. 
360
361         * src/Makefile.am (lyx_DEPENDENCIES): use support/libsupport.la I
362         forgot this in last commit.
363
364         * src/Bullet.C (bulletEntry): use static char const *[] for the
365         tables, becuase of this the return arg had to change to string.
366         (bulletSize): ditto
367         (~Bullet): removed unneeded destructor
368
369         * src/BufferView.C (beforeChange): moved from lyx_cb.C
370         (insetSleep): moved from Buffer
371         (insetWakeup): moved from Buffer
372         (insetUnlock): moved from Buffer
373
374         * buffer.[Ch], BufferView.[Ch] + others: moved the_locking_inset
375         from Buffer to BufferView.
376         
377         * acinclude.m4: include libtool.m4 from libtool 1.3.4.
378
379         * config/ltmain.sh: updated to version 1.3.4 of libtool
380
381         * config/ltconfig: updated to version 1.3.4 of libtool
382
383 2000-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
384
385
386         * src/buffer.C (pop_tag): fix a dubious for() loop initialization.
387         Did I get that right?
388
389         * src/lyxlex.h: add a "using" directive or two.
390         * src/Spacing.h: ditto.
391         * src/insets/figinset.C: ditto.
392         * src/support/filetools.C: ditto.
393         * src/support/lstrings.C: ditto.
394         * src/BufferView.C: ditto.
395         * src/bufferlist.C: ditto.
396         * src/lyx_cb.C: ditto.
397         * src/lyxlex.C: ditto.
398
399         * NEWS: add some changes for 1.1.4.
400         
401 2000-01-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
402
403         * src/BufferView.C: first go at a TextCache to speed up switching
404         between documents.
405
406 2000-01-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
407
408         * lib/examples/ItemizeBullets.lyx: update from Tino Meinen. 
409         * lib/examples/nl_voorbeeld_ruw.lyx: ditto.
410         * lib/examples/nl_voorbeeld_verlyxt.lyx: ditto.
411         * lib/examples/nl_opsommingstekens.lyx: new translation from Tino
412         Meinen.
413         
414         * src/mathed/math_defs.h (MathedRowSt): make sure that all
415         members of the struct are correctly initialized to 0 (detected by
416         purify) 
417         * src/lyxrc.C (LyXRC): ditto for print_adapt_output.
418         * src/insets/figinset.C (InsetFig): ditto for pswid and pshgh.
419
420         * src/insets/figinset.C (sigchldchecker): use "delete" to free a
421         pidwait, since it was allocated with "new". This was potentially
422         very bad. Thanks to Michael Schmitt for running purify for us.
423
424
425 2000-01-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
426
427         * src/lyx_gui_misc.C: add a 'using std::make_pair;' statement.
428
429         * src/lyx_gui_misc.h: add a 'using std::pair;' statement.
430
431 1999-12-30  Allan Rae  <rae@lyx.org>
432
433         * lib/templates/IEEEtran.lyx: minor change
434
435         * src/lyxvc.C (registrer, checkIn), src/lyx_cb.C (MenuInsertLabel),
436         src/mathed/formula.C (LocalDispatch): askForText changes
437
438         * src/lyx_gui_misc.[Ch] (askForText): now returns a bool also so we 
439         know when a user has cancelled input. Fixes annoying problems with
440         inserting labels and version control.
441
442 1999-12-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
443
444         * src/support/lstrings.C (tostr): rewritten to use strstream and
445         stringstream
446
447 1999-12-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
448
449         * src/support/filetools.C (IsFileWriteable): use fstream to check
450         (IsDirWriteable): use fileinfo to check
451
452         * src/support/filetools.h (FilePtr): whole class deleted
453
454         * src/insets/figinset.C (GetPSSizes): rewritten to use ifstream.
455
456         * src/lyxparagraph.h (readSimpleWholeFile): make arg istream
457
458         * src/lyx_cb.C (InsertAsciiFile): use ifstream instead of FilePtr
459
460         * src/bufferlist.C (write): use ifstream and ofstream instead of
461         FILE*
462
463         * src/Spacing.h: use istrstream instead of sscanf
464
465         * src/mathed/math_defs.h: change first arg to istream from FILE*
466
467         * src/buffer.C (insertLyXFile): use ifstream instead of FilePtr
468
469         * src/mathed/math_parser.C: have yyis to be an istream 
470         (LexGetArg): use istream (yyis)
471         (yylex): ditto
472         (mathed_parse): ditto
473         (mathed_parser_file): first arg istream instead of FILE*, set yyis
474
475         * src/mathed/formula.C (Read): rewritten to use istream
476
477         * src/mathed/formulamacro.C (Read): rewritten to use istream
478
479         * src/lyxlex.h (~LyXLex): deleted desturctor 
480         (getStream): new function, returns an istream
481         (getFile): deleted funtion
482         (IsOK): return is.good();
483
484         * src/lyxlex.C (LyXLex): delete file and owns_file
485         (setFile): open an filebuf and assign that to a istream instead of
486         using FILE*
487         (setStream): new function, takes an istream as arg. 
488         (setFile): deleted function
489         (EatLine): rewritten us use istream instead of FILE*
490         (next): ditto
491         (nextToken): ditto
492
493         * src/table.C (LyXTable): use istream instead of FILE*
494         (Read): rewritten to take an istream instead of FILE*
495
496 1999-12-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
497
498         * src/buffer.C (Dispatch): remove an extraneous break statement.
499
500         * src/support/filetools.C (QuoteName): change to do simple
501         'quoting'. More work is necessary. Also changed to do nothing
502         under emx (needs fix too).
503         (Putenv): Cast the argument of putenv() with PUTENV_TYPE_ARG.
504
505         * acinclude.m4 (STL_STRING_FWD_H_LOCATION): add the comment for
506         config.h.in to the AC_DEFINE_UNQUOTED() call.
507         (LYX_FUNC_PUTENV_ARGTYPE): new macro. Checks whether putenv()
508         needs char * as argument (because Solaris 7 declares it like
509         that). 
510
511         * acconfig.h: remove placeholder for STL_STRING_FWD_H_LOCATION;
512         remove definition of BZERO.
513
514 1999-12-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
515
516         * src/support/LRegex.C: include <regex.h> if HAVE_REGEX_H is
517         defined, "lyxregex.h" if not.
518
519         * src/support/Makefile.am (noinst_LTLIBRARIES): changed from
520         pkglib_ to noinst_
521         (REGEX): new variable that is set to regex.c lyxregex.h when
522         AM_CONDITIONAL USE_REGEX is set.
523         (libsupport_la_SOURCES): add $(REGEX)
524
525         * src/mathed/Makefile.am (noinst_LTLIBRARIES): changed from
526         pkglib_ to noinst_
527
528         * src/insets/Makefile.am (noinst_LTLIBRARIES): changed from
529         pkglib_ to noinst_
530
531         * configure.in: add call to LYX_REGEX 
532
533         * acinclude.m4 (LYX_REGEX): checks if we need to use the included
534         regex or not. Uses a a AM_CONDITIONAL to decide what to compile. 
535
536 1999-12-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
537
538         * lib/bind/fi_menus.bind: new file, from
539         pauli.virtanen@saunalahti.fi. 
540
541         * src/buffer.C (getBibkeyList): pass the parameter delim to
542         InsetInclude::getKeys and InsetBibtex::getKeys.
543
544         * src/insets/insetinclude.[Ch] (getKeys): add parameter delim, which
545         is passed to Buffer::getBibkeyList
546         
547         * src/insets/insetbib.[Ch] (getKeys): add parameter delim, and use it
548         instead of the hardcoded comma.
549
550         * src/insets/insetbib.C (getKeys): make sure that there are not
551         leading blanks in bibtex keys. Normal latex does not care, but
552         harvard.sty seems to dislike blanks at the beginning of citation
553         keys. In particular, the retturn value of the function is
554
555         * INSTALL: make it clear that libstdc++ is needed and that gcc
556         2.7.x probably does not work.
557
558         * src/support/filetools.C (findtexfile): make debug message go to
559         the LATEX channel
560         * src/insets/insetbib.C (getKeys): ditto
561
562         * src/debug.C (showTags): make sure that the output is correctly
563         aligned. 
564
565         * configure.in: add a comment for TWO_COLOR_ICON define.
566
567         * acconfig.h: remove all the entries that already defined in
568         configure.in or acinclude.m4.
569
570         * src/buffer.C (makeLaTeXFile): headers of latex file also changed
571         to avoid user name, date and copyright.
572
573 1999-12-21  Juergen Vigna  <jug@sad.it>
574
575         * src/table.C (Read): Now read bogus row format informations
576                 if the format is < 5 so that afterwards the table can
577                 be read by lyx but without any format-info. Fixed the
578                 crash we experienced when not doing this.
579
580 1999-12-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
581
582         * src/text2.C (RedoHeightOfParagraph): rename arg cursor -> cur
583         (RedoDrawingOfParagraph): ditto
584         (RedoParagraphs): ditto
585         (RemoveTableRow): ditto
586
587         * src/text.C (Fill): rename arg paperwidth -> paper_width
588
589         * src/buffer.C (insertLyXFile): rename var filename -> fname
590         (writeFile): rename arg filename -> fname
591         (writeFileAscii): ditto
592         (makeLaTeXFile): ditto
593         (makeLinuxDocFile): ditto
594         (makeDocBookFile): ditto
595
596         * src/LaTeX.C (runMakeIndex): change arg name from file -> f
597         (runBibTeX): ditto
598
599         * src/Makefile.am (lyx_SOURCES): add bmtable.c and remove bmtable.C
600
601         * src/bmtable.h: add extern "C" on this file when __cplusplus is
602         defined.
603
604         * src/bmtable.c: new file, a C'ified copy of bmtable.C, this is
605         compiled by a C compiler not C++. 
606
607         * src/layout.h (LyXTextClass): added typedef for const_iterator
608         (LyXTextClassList): added typedef for const_iterator + member
609         functions begin and end.
610
611         * src/LyXView.C (UpdateDocumentClassChoice): rewritten to use
612         iterators to fill the choice_class.
613         (updateLayoutChoice): rewritten to use iterators to fill the
614         layoutlist in the toolbar.
615
616         * src/BufferView.h (BufferView::work_area_width): removed unused
617         variable. 
618
619         * src/lyx_gui_misc.C (WarnReadonly): added string parameter 'file'
620
621         * src/buffer.C (sgmlOpenTag): drop the use of the static space array
622         (sgmlCloseTag): ditto
623
624         * src/support/lstrings.h: return type of countChar changed to
625         unsigned char.
626
627         * src/support/lstrings.C (countChar): use HAVE_STD_COUNT to choose
628         what version of this func to use. Also made to return unsigned int.
629
630         * configure.in: call LYX_STD_COUNT 
631
632         * acinclude.m4 (LYX_STD_COUNT): new function checks for a standard
633         conforming std::count. 
634
635 1999-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
636
637         * src/mathed/math_draw.C (Draw, Metrics): fix a bug where a prime
638         and a subscript would give bad display (patch from Dekel Tsur
639         <dekel@math.tau.ac.il>). 
640
641         * src/insets/insetlatexaccent.h: make sure ACCENT_TYPES is public. 
642
643         * src/spellchecker.C (create_ispell_pipe): use a const_cast to
644         please sun CC.
645
646         * src/chset.h: add a few 'using' directives
647
648         * src/lyxfunc.C (Dispatch): check that LFUN_UNKNOWN_ACTION is not
649         triggered when no buffer is active
650
651         * src/layout.C: removed `break' after `return' in switch(), since
652         it is unreachable.
653
654         * src/lyx_main.C (init): make sure LyX can be ran in place even
655         when libtool has done its magic with shared libraries. Fix the
656         test for the case when the system directory has not been found.
657
658         * src/lyx_cb.C (MenuMakeLaTeX): make sure to keep the full path
659         name for the latex file.
660         (MenuMakeHTML): ditto
661
662         * src/buffer.h: add an optional boolean argument, which is passed
663         to ChangeExtension.
664
665 1999-12-20  Allan Rae  <rae@lyx.org>
666
667         * lib/templates/IEEEtran.lyx: small correction and update.
668
669         * configure.in: Attempted to use LYX_PATH_HEADER
670
671         * src/stl_string_fwd.h: Don't need HAVE_STL_STRING_FWD_H anymore
672
673         * acconfig.h, acinclude.m4 (LYX_STL_STRING_FWD): totally revised after
674         input from JMarc.  Now use preprocessor to find the header.
675         Also stopped making HAVE_STL_STRING_FWD_H and extended the comments.
676         (LYX_PATH_HEADER): My, so far, failed attempt to generalize
677         LYX_STL_STRING_FWD.  See comments in file.      
678
679 1999-12-19  Asger Alstrup Nielsen  <alstrup@diku.dk>
680
681         * The global MiniBuffer * minibuffer variable is dead.
682         
683         * The global FD_form_main * fd_form_main variable is dead.
684
685 1999-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
686
687         * src/toolbar.C (set): condition #warning on WITH_WARNINGS
688
689         * src/table.h: add the LOstream.h header
690         * src/debug.h: ditto
691         
692         * src/LyXAction.h: change the explaination of the ReadOnly
693         attribute: is indicates that the function _can_ be used.
694
695         * src/LyXAction.C (init): find-replace _can_ be used in read-only
696         mode. 
697
698 1999-12-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
699
700         * src/lyxfont.C (ascent): Make sure that char is _always_ used as
701         unsigned. 
702         (descent): ditto
703         (lbearing): ditto
704         (rbearing): ditto
705
706         * src/paragraph.C (GetWord): assert on pos>=0
707         (GetChar): ditto
708         
709         * src/support/lyxstring.C: condition the use of an invariant on
710         ENABLE_ASSERTIONS 
711         * src/support/lyxstring.h: ditto
712
713         * src/Bullet.[Ch]: replace DEBUG_AS_DEFAULT by ENABLE_ASSERTIONS.
714         Use LAssert.h instead of plain assert().
715
716         * src/support/lstrings.h: add LAssert.h, in case it is needed.
717
718         * src/lyxfunc.C: do not include LAssert.h, it is not used.
719         * src/support/filetools.C: ditto
720
721         * src/support/LAssert.h: make Assert a no-op if ENABLE_ASSERTIONS
722         is not defined. 
723
724         * INSTALL: document the new configure flags
725         
726         * configure.in: suppress --with-debug; add --enable-assertions
727
728         * acinclude.m4: various changes in alignment of help strings.
729
730 1999-12-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
731
732         * src/kbmap.C: commented out the use of the hash map in kb_map,
733         beginning of movement to a stl::container. 
734
735         * several files: removed code that was not in effect when
736         MOVE_TEXT was defined.
737         
738         * lib/kbd/iso8859-1.cdef: removed bogus backslashes. Backslashes
739         for escaping should not be used. We can discuss if the string
740         should be enclosed in f.ex. [] instead of "".
741
742         * src/trans_mgr.C (insert): use the new returned value from
743         encodeString to get deadkeys and keymaps done correctly.
744
745         * src/chset.C (encodeString): changed to return a pair, to tell
746         what to use if we know the string.
747
748         * src/lyxscreen.h (fillArc): new function.
749
750         * src/FontInfo.C (resize): rewritten to use more std::string like
751         structore, especially string::replace.
752
753         * src/insets/insetlatexaccent.C (Draw): use fillArc for the
754         approp. accents.
755
756         * configure.in (chmod +x some scripts): remove config/gcc-hack 
757
758 1999-12-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
759
760         * src/buffer.C (writeFile): change once again the top comment in a
761         .lyx file to point to www.lyx.org and to use LYX_DOCVERSION
762         instead of an hardcoded version number.
763         (makeDocBookFile): ditto
764
765         * src/version.h: add new define LYX_DOCVERSION
766
767         * po/de.po: update from Pit Sütterlin
768         * lib/bind/de_menus.bind: ditto.
769         
770         * src/lyxfunc.C (Dispatch): call MenuExport()
771         * src/buffer.C (Dispatch): ditto
772
773         * src/lyx_cb.C (MenuMakeHTML): new function, moved from
774         LyXFunc::Dispatch().
775         (MenuExport): new function, moved from
776         LyXFunc::Dispatch().
777
778         * src/trans_mgr.C (insert): small cleanup
779         * src/chset.C (loadFile): ditto
780
781         * lib/kbd/iso8859-1.cdef: add missing backslashes
782
783 1999-12-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
784
785         * src/insets/insetlatexaccent.C (Lbearing): new function, used to
786         help with placing the manually drawn accents better.
787         (Rbearing): ditto
788         (Draw): x2 and hg changed to float to minimize rounding errors and
789         help place the accents better.
790
791         * src/lyxfont.C (ascent): fixed faulty static_cast, casting from
792         unsigned short to char is just wrong...cast the char to unsigned
793         char instead so that the two values can compare sanely. This
794         should also make the display of insetlatexaccents better and
795         perhaps also some other insets.
796         (descent): ditto
797         (lbearing): new function
798         (rbearing): ditto
799
800 1999-12-15  Allan Rae  <rae@lyx.org>
801
802         * src/stl_string_fwd.h, src/Makefile.am (lyx_SOURCES):  added new
803         header that provides a wrapper around the very annoying SGI STL header
804         of the same name.
805
806         * src/support/lyxstring.C, src/LString.h:
807         removed old SGI-STL-compatability attempts.
808
809         * configure.in: Use LYX_STL_STRING_FWD.
810
811         * acinclude.m4 (LYX_STL_STRING_FWD), acconfig.h: Test if 
812         stl_string_fwd.h is around and try to determine it's location.
813         Major improvement over previous SGI STL 3.2 compatability.
814         Three small problems remain with this function due to my zero
815         knowledge of autoconf.  JMarc and lgb see the comments in the code.
816
817 1999-12-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
818
819         * src/broken_const.h, config/hack-gcc, config/README: removed
820         
821         * configure.in: remove --with-gcc-hack option; do not call
822         LYX_CXX_STL_STACK 
823
824         * INSTALL: remove documentation of --with-broken-const and
825         --with-gcc-hack
826         
827         * acconfig.h: remove all trace of BROKEN_CONST define
828
829         * src/buffer.C (makeDocBookFile): update version number in output
830         file. 
831         (SimpleDocBookOnePar): fix an assert when trying to a character
832         access beyond string length
833         [Patch from Jose']
834
835 1999-12-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
836
837         * po/de.po: fix the Export menu
838
839         * lyx.man: update the description of -dbg
840
841         * src/lyx_main.C (setDebuggingLevel): call Debug::showLevel()
842         (commandLineHelp): updated
843         (easyParse): show list of available debug levels if -dbg is passed
844         without argument.
845
846         * src/Makefile.am: add debug.C
847
848         * src/debug.h: moved some code to debug.C
849
850         * src/debug.C: new file. Contains code to set and show debug
851         level. 
852
853         * src/layout.C: remove 'break' after 'continue' in switch
854         statements, since these cannot be reached.
855
856 1999-12-13  Allan Rae  <rae@lyx.org>
857
858         * src/mathed/math_hash.C (math_hash): renamed from hash(), name clash.
859         (in_word_set): hash() -> math_hash()
860
861         * src/LString.h: Used USING_EXCEPTIONS in SGI STL-3.2 support 
862
863         * acconfig.h: Added a test for whether we are using exceptions in the
864         current compilation run. If so USING_EXCEPTIONS is defined.
865
866         * config.in: Check for existance of stl_string_fwd.h
867         * src/LString.h: If compiling --with-included-string and SGI's
868         STL version 3.2 is present (see above test) we need to block their
869         forward declaration of string and supply a __get_c_string().
870         However, it turns out this is only necessary if compiling with
871         exceptions enabled so I've a bit more to add yet.
872
873         * src/insets/figinset.[Ch], src/insets/insetinclude.C,
874           src/insets/insetloa.C, src/layout.h, src/lyxparagraph.h,
875           src/support/LRegex.h, src/undo.h:
876         Shuffle the order of the included files a little to ensure that
877         LString.h gets included before anything that includes stl_string_fwd.h
878
879         *  src/support/lyxstring.C: We need to #include LString.h instead of
880         lyxstring.h to get the necessary definition of __get_c_string.
881         (__get_c_string): New function.  This is defined static just like SGI's
882         although why they need to do this I'm not sure.  Perhaps it should be
883         in lstrings.C instead.
884
885         * lib/templates/IEEEtran.lyx:  New template file.
886
887 1999-12-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
888         
889         * Makefile.in.in (MKINSTALLDIRS): use $(srcdir)/@MKINSTALLDIRS@
890         * intl/Makefile.in (MKINSTALLDIRS):  ditto
891
892         * src/LyXAction.C (init): changed to hold the LFUN data in a
893         automatic array in stead of in callso to newFunc, this speeds up
894         compilation a lot. Also all the memory used by the array is
895         returned when the init is completed.
896
897         * a lot of files: compiled with -Wold-style-cast, changed most of
898         the reported offenders to C++ style casts. Did not change the
899         offenders in C files. 
900
901         * src/trans.h (Match): change argument type to unsigned int.
902
903         * src/support/DebugStream.C: fix some types on the streambufs so
904         that it works on a conforming implementation.
905
906 1999-12-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
907
908         * lib/examples/example_{raw,lyxified}.lyx: fix embarassing sentence.
909
910         * src/support/lyxstring.C: remove the inline added earlier since
911         they cause a bunch of unsatisfied symbols when linking with dec
912         cxx. Cxx likes to have the body of inlines at the place where they
913         are declared.
914
915         * src/trans.C (AddDeadkey): add an 'unsigned char' cast to avoid
916         accessing negative bounds in array. This fixes the crash when
917         inserting accented characters.
918         * src/trans.h (Match): ditto
919
920         * src/buffer.C (Dispatch): since this is a void, it should not try
921         to return anything...
922
923 1999-12-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
924
925         * src/buffer.h: removed the two friends from Buffer. Some changes
926         because of this. Buffer::getFileName and Buffer::setFileName
927         renamed to Buffer::fileName() and Buffer::fileName(...).
928
929 1999-12-09  Lars Gullik Bjønnes <larsbj@lyx.org>
930
931         * buffer.[Ch], BufferView.[Ch] + other files: Moved Buffer::text
932         and Buffer::update(short) to BufferView. This move is currently
933         controlled by a define MOVE_TEXT, this will be removed when all
934         shows to be ok. This move paves the way for better separation
935         between buffer contents and buffer view. One side effect is that
936         the BufferView needs a rebreak when swiching buffers, if we want
937         to avoid this we can add a cache that holds pointers to LyXText's
938         that is not currently in use. 
939
940         * buffer.[Ch], lyx_main.C: small changes to the "-export" patch by
941         André Pönitz. 
942
943 1999-11-18  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
944
945         * buffer.[Ch]: Dispatch() - new dispatcher on the buffer level
946
947         * lyx_main.C: new command line option -x (or --execute) and
948           -e (or --export). Now direct conversion from .lyx to .tex
949           (.dvi, .ps, ...) is possible  ('lyx file.lyx --export latex')
950           Unfortunately, X is still needed and the GUI pops up during the
951           process...
952
953 1999-12-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
954
955         * src/Spacing.C: add a using directive to bring stream stuff into
956         normal namespace.
957         * src/paragraph.C: ditto
958         * src/buffer.C: ditto
959
960         * NEWS: updated a bit the new features of 1.1.3 (took a few things
961         from Lars' announcement).
962
963         * lib/examples/nl_voorbeeld_{ruw,verlyxt}.lyx: new tutorial
964         example files from Tino Meinen.
965         
966 1999-12-06  Allan Rae  <rae@lyx.org>
967
968         * src/LaTeX.C (runBibTeX): fix typo in accessing submatch pair.
969
970 1999-12-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
971
972         * src/support/lyxstring.C: added a lot of inline for no good
973         reason
974         
975         * src/lyxfont.[Ch]: removed latexWriteStartChanges, and
976         latexWriteEndChanges, they were not used.
977         
978         * src/layout.h (operator<<): output operator for PageSides
979
980         * src/mathed/math_iter.C (my_memcpy): slightly changed.
981
982         * some example files: loaded in LyX 1.0.4 and saved again to update
983         certain constructs (table format) 
984
985         * a lot of files: did the change to use fstream/iostream for all
986         writing of files. Done with a close look at Andre Poenitz's patch.
987
988         * some files: whitespace changes.
989         
990 1999-12-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
991
992         * src/mathed/math_iter.C (my_memcpy): new function. Since the
993         built-in memcpy() is broken on egcs and gcc 2.95 for alpha
994         architecture, we provide our own. It is used unconditionnally, but
995         I do not think this is a performance problem. Thanks to Angus
996         Leeming <a.leeming@ic.ac.uk> for the code (and again to Michal
997         Jaegermann <michal@ellpspace.math.ualberta.ca> for finding it the
998         first time).
999         (GetInset): use my_memcpy.
1000         (Insert): ditto
1001         (Copy): ditto
1002
1003         * lib/chkconfig.ltx: some cleanup of the latex code. I am not sure
1004         it is easier to understand, but it uses less TeX-only constructs now.
1005
1006         * acinclude.m4 (LYX_SEARCH_PROG): make it work when the PATH
1007         elements contain spaces
1008
1009         * lib/configure: regenerated
1010         
1011         * lib/configure.m4 (SEARCH_PROG): make it work when the PATH
1012         elements contain spaces; display the list of programs that are
1013         tried.
1014
1015         * autogen.sh: make sure lib/configure is executable
1016
1017         * lib/examples/*: rename the tutorial examples to begin with the
1018         two-letters language code.
1019
1020         * src/lyxfunc.C (getStatus): do not query current font if no
1021         buffer exists.
1022
1023         * src/lyx_cb.C (RunScript): use QuoteName
1024         (MenuRunDvips): ditto
1025         (PrintApplyCB): ditto
1026
1027         * src/support/filetools.[Ch] (QuoteName): new function. Add quotes
1028         around argument, so that it works well with the current shell.
1029         Does not work properly with OS/2 shells currently.
1030
1031         * src/LaTeXLog.C (ShowLatexLog): use Buffer::getLatexName
1032         * src/LyXSendto.C (SendtoApplyCB): ditto
1033         * src/lyxfunc.C (Dispatch): ditto
1034         * src/buffer.C (runLaTeX): ditto
1035         (runLiterate): ditto
1036         (buildProgram): ditto
1037         (runChktex): ditto
1038         * src/lyx_cb.C (RunScript): ditto
1039         (MenuMakeLaTeX): ditto
1040         
1041         * src/buffer.h (getLatexName): new method 
1042
1043         * src/support/filetools.C (MakeLatexName): renamed from SpaceLess
1044
1045 1999-12-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1046
1047         * images/sqrt.xpm: change name of the sqrt icon to sqrt_xpm.
1048         * src/mathed/math_panel.C (mathed_get_pixmap_from_icon): ditto
1049         (create_math_panel): ditto
1050
1051         * src/lyxfunc.C (getStatus): re-activate the code which gets
1052         current font and cursor; add test for export to html.
1053
1054         * src/lyxrc.C (read): remove unreachable break statements; add a
1055         few "using".
1056
1057         * src/bmtable.C (fl_set_bmtable_data): add a const_cast.
1058         
1059 1999-12-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
1060
1061         * src/mathed/formula.C (LocalDispatch): fix small whitspace bug
1062         introduced by faulty regex.
1063         * src/buffer.C: ditto
1064         * src/lastfiles.C: ditto
1065         * src/paragraph.C: ditto
1066         * src/table.C: ditto
1067         * src/vspace.C: ditto
1068         * src/insets/figinset.C: ditto
1069         Note: most of these is absolutely harmless, except the one in
1070         src/mathed formula.C.
1071
1072 1999-11-30  Kayvan A. Sylvan  <kayvan@satyr.sylvan.com>
1073
1074         * src/ImportNoweb.C (documentclass): fixed bounds for substr
1075           operation, yielding correct results for the reLyX command.
1076
1077 1999-12-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
1078
1079         * src/support/filetools.C (ExpandPath): removed an over eager
1080         Assert.
1081         (ReplaceEnvironmentPath): ditto
1082
1083         * src/toolbar.C (BubbleTimerCB): use C++ style casts. This clearly
1084         shows that we are doing something fishy in our code...
1085         (BubblePost): ditto
1086         (ToolbarCB): ditto
1087
1088         * src/lyxrc.C (read): use a double switch trick to get more help
1089         from the compiler. (the same trick is used in layout.C)
1090         (write): new function. opens a ofstream and pass that to output
1091         (output): new function, takes a ostream and writes the lyxrc
1092         elemts to it. uses a dummy switch to make sure no elements are
1093         forgotten. 
1094
1095         * src/lyxlex.h: added a struct pushpophelper for use in functions
1096         with more than one exit point.
1097
1098         * src/lyxlex.[Ch] (GetInteger): made it const
1099         (GetFloat): ditto
1100         (GetBool): ditto
1101
1102         * src/lyxfunc.C (Dispatch): added case for LFUN_SAVEPREFERENCES
1103
1104         * src/layout.[hC] : LayoutTags splitted into several enums, new
1105         methods created, better error handling cleaner use of lyxlex. Read
1106         the diff.
1107
1108         * src/bmtable.[Ch]: change some member prototypes because of the
1109         image const changes. 
1110
1111         * commandtags.h, src/LyXAction.C (init): new function:
1112         "preferences-save", saves the lyxrc entries into .lyx/preferences.
1113         This file is not read automatically but you can add \input
1114         preferences to your lyxrc if you want to. We need to discuss how
1115         to handle this. 
1116
1117         * src/LaTeX.C (runBibTeX): use regex to match for the needed lines
1118         in .aux, also remove .bib and .bst files from dependencies when
1119         running bibtex.
1120
1121         * src/BufferView.C, src/LyXView.C: add const_cast several places
1122         because of changes to images.
1123
1124         * lib/images/*: same change as for images/*
1125         
1126         * lib/lyxrc.example: Default for accept_compound is false not no.
1127
1128         * images/*: changed to be const, however I have som misgivings
1129         about this change so it might be changed back.
1130
1131 1999-11-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1132
1133         * lib/configure, po/POTFILES.in: regenerated
1134
1135         * autogen.sh: autogenerate lib/configure from lib/configure.m4
1136
1137         * config/lib_configure.m4: removed
1138         
1139         * lib/configure.m4: new file (was config/lib_configure.m4)
1140
1141         * configure.in: do not test for rtti, since we do not use it.
1142         
1143 1999-11-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
1144
1145         * src/support/lyxstring.C (lyxstring::Srep): Changed to use a
1146         doubling of allocated space scheme. This makes it faster for large
1147         strings end to use less memory for small strings. xtra rememoved. 
1148
1149         * src/insets/figinset.C (waitalarm): commented out.
1150         (GhostscriptMsg): use static_cast
1151         (GhostscriptMsg): use new instead of malloc to allocate memory for
1152         cmap. also delete the memory after use.
1153
1154         * src/lyx_cb.C (SetXtermCursor): made cursor_undefined a bool
1155
1156         * src/LaTeX.C (scanAux): new method. Scans the .aux file and looks
1157         for changes in bibtex database or style.
1158         (runBibTeX): remove all .bib and .bst files from dep before we
1159         begin. 
1160         (run): use scanAuc in when dep file already exist.
1161
1162         * src/DepTable.C (remove_files_with_extension): new method
1163         (exist): new method
1164
1165         * src/DepTable.[Ch]: made many of the methods const. 
1166
1167 1999-11-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1168
1169         * src/bufferparams.C: make sure that the default textclass is
1170         "article". It used to be the first one by description order, but
1171         now the first one is "docbook".
1172
1173         * src/lyx_main.C (setDebuggingLevel): change type of argument to
1174         string; call Debug::value.
1175         (easyParse): pass complete argument to setDebuggingLevel().
1176
1177         * src/debug.h (value): fix the code that parses debug levels.
1178
1179         * src/debug.h: add new debug type ACTION, reserved for LyXAction
1180         class.  
1181
1182         * src/LyXAction.C: use Debug::ACTION as debug channel.
1183
1184         * src/lyxlookup.C: make the debug statements go to Debug::KEY.
1185
1186         * NEWS: updated for the future 1.1.3 release.
1187
1188         * src/mathed/symbol_def.h: swap the definitions of \varepsilon and
1189         \epsilon. Now \epsilon shows as red text, and \varepsilon shows as
1190         it should. This is of course a controversial change (since many
1191         people will find that their lyx workscreen is suddenly full of
1192         red), but done for the sake of correctness.
1193
1194         * src/mathed/formulamacro.h, src/mathed/math_macro.[Ch],
1195           src/mathed/math_root.[Ch] (Clone): return a MathedInset*  
1196
1197         * src/insets/inseterror.h, src/insets/inseturl.h,
1198           src/insets/insetinfo.h, src/insets/figinset.h,
1199           src/mathed/formulamacro.h, src/mathed/math_macro.h
1200           (EditMessage): add a missing const and add _() to make sure that
1201         translation happens
1202
1203         * src/ImportNoweb.C, src/LyXAction.h, src/insets/figinset.C,
1204           src/insets/insetbib.C, src/support/filetools.C: add `using'
1205         directives for cxx.  
1206
1207         * src/lyxfunc.C (Dispatch): make sure nothing bad happens when
1208         doing 'Insert index of last word' at the beginning of a paragraph.
1209
1210 1999-11-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
1211
1212         * several files: white-space changes.
1213
1214         * src/mathed/formula.C: removed IsAlpha and IsDigit
1215
1216         * src/insets/insetbib.C (getKeys): use findtexfile to look for the
1217         .bib file. use a ifstream instead of FilePtr when parsing the .bib
1218         file for keys.
1219
1220         * src/insets/figinset.C (GetPSSizes): don't break when
1221         "EndComments" is seen. But break when a boundingbox is read.
1222
1223         * all classes inherited from Inset: return value of Clone
1224         changed back to Inset *.
1225
1226         * all classes inherited form MathInset: return value of Clone
1227         changed back to MathedInset *.
1228         
1229         * src/insets/figinset.C (runqueue): use a ofstream to output the
1230         gs/ps file. Might need some setpresicion or setw. However I can
1231         see no problem with the current code.
1232         (runqueue): use sleep instead of the alarm/signal code. I just
1233         can't see the difference.
1234
1235         * src/paragraph.C (LyXParagraph): reserve space in the new
1236         paragraph and resize the inserted paragraph to just fit.
1237
1238         * src/lyxfunc.h (operator|=): added operator for func_status.
1239
1240         * src/lyxfunc.C (MenuNew): use FileInfo instead of FilePtr to
1241         check for readable file.
1242
1243         * src/lyx_cb.C (MenuMakeLaTeX): use FileInfo instead of FilePtr to
1244         check for readable file.
1245         (MenuMakeLinuxDoc): ditto
1246         (MenuMakeDocBook): ditto
1247         (MenuMakeAscii): ditto
1248         (InsertAsciiFile): split the test for openable and readable
1249
1250         * src/bmtable.C (draw_bitmaptable): use
1251         fl_state[fl_get_vclass()].depth instead of DefualtScreen.
1252
1253         * src/LaTeX.C, src/support/filetools.[Ch]: moved do_popen and
1254         findtexfile from LaTeX to filetools.
1255         
1256         * src/ImportNoweb.C (documentclass): rewrote to use ifstream
1257         instead of FilePtr. Needs to be verified by a literate user.
1258
1259 1999-11-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1260
1261         * src/mathed/formula.[Ch] (GetCursorPos): add a missing 'const'.
1262         (EditMessage): likewise.
1263
1264         * src/paragraph.C (SimpleTeXSpecialChars): output ~ and ^
1265         respectively as \textasciitilde and \textasciicircum.
1266
1267 1999-11-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
1268
1269         * src/support/lyxstring.h: made the methods that take iterators
1270         use const_iterator.
1271
1272         * src/support/lstrings.C (countChar): use std::cound(itr, itr, val)
1273         (regexMatch): made is use the real regex class.
1274
1275         * src/support/Makefile.am: changed to use libtool
1276
1277         * src/support/.cvsignore: added *.lo, .libs and libsupport.la
1278
1279         * src/mathed/math_defs.h: made the mathaligns be in a enum instead
1280         of defines.
1281         (MathIsInset ++): changed several macros to be inline functions
1282         instead. 
1283
1284         * src/mathed/Makefile.am: changed to use libtool
1285
1286         * src/mathed/.cvsignore: added *.lo, .libs and libmathed.la
1287
1288         * src/insets/inset* : Clone changed to const and return type is
1289         the true insettype not just Inset*.
1290         
1291         * src/insets/Makefile.am: changed to use libtool
1292
1293         * src/insets/.cvsignore: added *.lo, .libs and libinsets.la
1294
1295         * src/undo.[Ch] : added empty() and changed some of the method
1296         names.
1297         
1298         * src/texrow.[Ch]: rewrote to store texrow's in a std::list.
1299
1300         * src/lyxparagraph.h: use id() and id(...) instead of getID and
1301         setID use block<> for the bullets array, added const several places.
1302
1303         * src/lyxfunc.C (getStatus): new function
1304
1305         * src/lyxfunc.[Ch] : small changes to take advantage of the new
1306         LyXAction, added const to several funtions.
1307
1308         * src/filedlg.[Ch]: rewrote to store userchache and groupchache in
1309         a std::map, and to store the dir items in a vector.
1310
1311         * src/Makefile.am (lyx_DEPENDENCIES): changed to use libtool files
1312         as dependencies.
1313
1314         * src/LyXView.[Ch] + other files : changed currentView to view.
1315         
1316         * src/LyXAction.[Ch] : ported from the old devel branch.
1317         
1318         * src/.cvsignore: added .libs and a.out
1319
1320         * configure.in : changes to use libtool. 
1321
1322         * acinclude.m4 : inserted libtool.m4
1323
1324         * .cvsignore: added libtool
1325
1326 1999-11-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1327
1328         * src/Makefile.am (lyx_DEPENDENCIES): give the explicit object
1329         file name in insets and mathed directories (otherwise the
1330         dependency is not taken in account under cygwin).
1331
1332         * src/text2.C (InsertString[AB]): make sure that we do not try to
1333         read characters past the string length.
1334
1335 1999-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1336
1337         * lib/doc/LaTeXConfig.lyx.in, 
1338           lib/chkconfig.ltx: remove the test for linuxdoc-sgml.sty.
1339
1340         * src/buffer.C (writeFile): Do not add a comment on top of .lyx
1341         file saying who created them and when this heppened; this is
1342         useless and annoys tools like cvs.
1343
1344         * lib/layouts/g-brief-{en,de}.layout,
1345           lib/templates/g-brief-{en,de}.lyx: new versions of the textclass
1346         from Thomas Hartkens <thomas@hartkens.de>.
1347
1348         * src/{insets,mathed}/Makefile.am: do not declare an empty
1349         LDFLAGS, so that it can be set at configure time (useful on Irix
1350         for -n32 flag).
1351
1352         * lib/reLyX/configure.in: make sure that the prefix is set
1353         correctly in LYX_DIR.
1354
1355 1999-11-18  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
1356
1357         * src/commandtags.h: introduction of a new tag 'LFUN_SEQUENCE' to
1358         be used by 'command-sequence' this allows to bind a key to a
1359         sequence of LyX-commands
1360         (Example: 'command-sequence math-insert alpha; math-insert beta;")
1361
1362         * src/LyXAction.C: add "command-sequence"
1363
1364         * src/LyXFunction.C: handling of "command-sequence"
1365
1366         * src/LyXFunction.[hC] changed LyXFunc::Dispatch(string const
1367          &cmd, string const &arg) to LyXFunc::Dispatch(string const& s)
1368
1369         * src/lyxserver.C, src/minibuffer.C: Use this new interface
1370
1371 1999-11-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1372
1373         * src/buffer.C (writeFile): Do not output a comment giving user
1374         and date at the beginning of a .lyx file. This is useless and
1375         annoys cvs anyway; update version number to 1.1.
1376
1377         * src/Makefile.am (LYX_DIR): add this definition, so that a
1378         default path is hardcoded in LyX.
1379
1380         * configure.in: Use LYX_GNU_GETTEXT.
1381
1382         * acinclude.m4 (LYX_GNU_GETTEXT): new macro, essentially a copy of
1383         AM_GNU_GETTEXT with a bug fixed. 
1384
1385         * src/lyx_cb.C (RunLinuxDoc): add a cast to please dec cxx.
1386
1387         * src/chset.C: add "using std::ifstream;" to please dec cxx.
1388
1389         * src/lyx_main.C (init), INSTALL.OS2: the environment variable
1390         which is used to point to LyX data is now LYX_DIR_11x.
1391
1392         * lyx.man: convert to a unix text file; small updates.
1393
1394 1999-11-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
1395
1396         * src/support/LSubstring.[Ch]: made the second arg of most of the
1397         constructors be a const reference. 
1398
1399         * src/mathed/math_parser.C (LexInitCodes): small bug introduced by
1400         me fixed.
1401
1402         * src/support/lyxstring.[Ch] (swap): added missing member function
1403         and specialization of swap(str, str); 
1404
1405         * src/menus.C (ShowBufferMenu): to use the new BufferStorage
1406
1407         * src/bufferlist.[Ch]: use the new BufferStorage class and remove all
1408         trace of the old one.
1409
1410         * src/undo.[Ch]: made the undostack use std::list to store undo's in
1411         put the member definitions in undo.C.
1412
1413         * src/lyxparagraph.h, src/paragraph.C + a lot of files: removed
1414         NEW_TEXT and have now only code that was included when this was
1415         defined. 
1416
1417         * src/intl.C (LCombo): use static_cast
1418         (LCombo2): ditto
1419         (DispatchCallback): ditto
1420
1421         * src/definitions.h: removed whole file
1422         
1423         * src/commandtags.h: comment out LFUN_INSERT_INSET_LATEX
1424
1425         * src/chset.[Ch]: a lot rewritten, does not use lyxlex for cdef
1426         parsing and stores in a std:map. a regex defines the file format.
1427         removed unneeded members.
1428
1429         * src/bufferparams.h: added several enums from definitions.h here.
1430         Removed unsused destructor. Changed some types to use proper enum
1431         types. use block to have the temp_bullets and user_defined_bullets
1432         and to make the whole class assignable.
1433
1434         * src/bufferparams.C (Copy): removed this functions, use a default
1435         assignment instead. 
1436
1437         * src/buffer.h: made isLatex, isLinuxDoc, isDocBook, isSGML and
1438         isLiterate const.
1439
1440         * src/buffer.C (readLyXformat2): commend out all that have with
1441         oldpapersize to do. also comment out all that hve to do with
1442         insetlatex and insetlatexdel. 
1443         (setOldPaperStuff): commented out
1444
1445         * src/Makefile.am (lyx_SOURCES): remove definitions.h, add undo.C
1446
1447         * src/LyXAction.C: remove use of inset-latex-insert
1448
1449         * src/mathed/math_panel.C (button_cb): use static_cast
1450
1451         * src/insets/Makefile.am (insets_o_SOURCES): removed
1452         insetlatex.[Ch] 
1453
1454         * src/support/lyxstring.C (helper): use the unsigned long
1455         specifier, UL, instead of a static_cast.
1456
1457         * src/support/Makefile.am (libsupport_a_SOURCES): added block.h
1458
1459         * src/support/block.h: new file. to be used as a c-style array in
1460         classes, so that the class can be assignable.
1461
1462 1999-11-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1463
1464         * src/lyx_gui_misc.C (askForText): when fl_show_input() returns
1465         NULL, make sure to return an empty string (it is not possible to
1466         set a string to NULL).
1467
1468 1999-11-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1469
1470         * src/support/LRegex.C: use regex_t instead of re_pattern_buffer.
1471
1472         * src/support/lyxstring.C (helper): fix bogus cast in assertion.
1473
1474         * src/{mathed,insets}/Makefile.am (CXXLINK): add $(LDFLAGS) to the
1475         link line, so that Irix users (for example) can set it explicitely to
1476         "-n32".
1477         
1478         * src/Makefile.am (lyx_LDADD): use LYX_LIB as a variable, so that
1479         it can be overidden at make time (static or dynamic link, for
1480         example).
1481         
1482         * src/vc-backend.C, src/LaTeXFeatures.h, 
1483           src/support/LRegex.C, src/support/LRegex.h: add a few "using" 
1484         statements to bring templates to global namespace.
1485
1486 1999-11-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
1487
1488         * src/support/lyxstring.C (operator[] const): make it standard
1489         conforming. 
1490
1491         * src/minibuffer.C (Init): changed to reflect that more
1492         information is given from the lyxvc and need not be provided here.
1493
1494         * src/lyxvc.[Ch]: rewrote to use the vc-backend.
1495         
1496         * src/Makefile.am (lyx_SOURCES): add vc-backend.[Ch]
1497
1498         * src/LyXView.C (UpdateTimerCB): use static_cast
1499         (KeyPressMask_raw_callback): ditto
1500
1501         * src/BufferView.[Ch]: name change _owner -> owner_ and _buffer ->
1502         buffer_, a lot of changes because of this. currentBuffer() ->
1503         buffer(), setBuffer(...) -> buffer(...), getOwner() -> owner(),
1504         also changes to other files because of this.
1505
1506 1999-11-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
1507
1508         * src/vc-backend.[Ch]: new files. The backends for vc handling,
1509         have no support for RCS and partial support for CVS, will be
1510         improved later.
1511         
1512         * src/insets/ several files: changes because of function name
1513         changes in Bufferview and LyXView.
1514         
1515         * src/mathed/math_symbols.C (math_insert_symbol): use static_cast
1516
1517         * src/support/LSubstring.[Ch]: new files. These implement a
1518         Substring that can be very convenient to use. i.e. is this
1519         possible:
1520         string a = "Mary had a little sheep";
1521         Substring(a, "sheep") = "lamb";
1522         a is now "Mary has a little lamb".
1523
1524         * src/support/LRegex.[Ch]: a regex class that can be used to pick
1525         out patterns and subpatterns of strings. It is used by LSubstring
1526         and also by vc-backend.C
1527         
1528         * src/support/lyxstring.C: went over all the assertions used and
1529         tried to correct the wrong ones and flag which of them is required
1530         by the standard. some bugs found because of this. Also removed a
1531         couple of assertions.
1532
1533         * src/support/Makefile.am (libsupport_a_SOURCES): added
1534         LSubstring.[Ch] and LRegex.[Ch]
1535
1536         * src/support/FileInfo.h: have struct stat buf as an object and
1537         not a pointer to one, some changes because of this.
1538
1539         * src/LaTeXFeatures.C (getTClassPreamble): also use the
1540         information in layout when adding the layouts preamble to the
1541         textclass preamble.
1542
1543         * src/LaTeXFeatures.h: use a vector<bool> to store the layout
1544         usage in.
1545
1546         * configure.in (CPPFLAGS): use AC_CHECK_FUNCS to check for XOpenIM
1547         because of bug in OS/2.
1548
1549 1999-11-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1550
1551         * lib/layouts/lyxmacros.inc (lyxcode): set the font with
1552         \verbatim@font instead of \ttfamily, so that it can be redefined.
1553
1554         * src/BackStack.h, src/DepTable.C, src/DepTable.h, src/LaTeX.C,
1555           src/LaTeX.h, src/lastfiles.C, src/lastfiles.h, src/layout.C,
1556           src/layout.h, src/text2.C: add 'using' directive to bring the
1557         STL templates we need from the std:: namespace to the global one.
1558         Needed by DEC cxx in strict ansi mode.
1559
1560         * src/support/LIstream.h,src/support/LOstream.h,
1561           src/support/lyxstring.h,src/table.h,
1562           src/lyxlookup.h: do not include <config.h> in header
1563         files. This should be done in the .C files only.
1564
1565         * development/lyx.spec.in: WHATSNEW has been renamed to NEWS
1566         (from Kayvan).
1567         
1568
1569 1999-11-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1570
1571         * config/lib_configure.m4,lib/configure,lib/lyxrc.example: update
1572         from Kayvan to fix the tth invokation.
1573
1574         * development/lyx.spec.in: updates from Kayvan to reflect the
1575         changes of file names.
1576
1577 1999-11-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
1578
1579         * src/text2.C (InsertStringB): use std::copy
1580         (InsertStringA): use std::copy
1581
1582         * src/bufferlist.C: use a vector to store the buffers in. This is
1583         an internal change and should not affect any other thing.
1584         
1585         * src/BufferView.C (waitForX): use XSync instead of the lengthy
1586         stuff in waitForX.
1587
1588         * src/text.C (Fill): fix potential bug, one off bug.
1589
1590 1999-11-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
1591
1592         * src/Makefile.am (lyx_main.o): add more files it depends on.
1593
1594         * src/lyx_cb.C (addNewlineAndDepth): parameters in wrong order.
1595
1596         * src/support/lyxstring.C: use size_t for the reference count,
1597         size, reserved memory and xtra.
1598         (internal_compare): new private member function. Now the compare
1599         functions should work for std::strings that have embedded '\0'
1600         characters.
1601         (compare): all compare functions rewritten to use
1602         internal_compare.
1603         
1604 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
1605
1606         * src/support/lyxstring.C (compare): pass c_str()
1607         (compare): pass c_str
1608         (compare): pass c_str
1609
1610 1999-11-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1611
1612         * src/support/DebugStream.C: <config.h> was not included correctly.
1613
1614         * lib/configure: forgot to re-generate it :( I'll make this file
1615         auto generated soon.
1616
1617 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
1618
1619         * acinclude.m4 (cross_compiling): add -fpermissive when gcc 2.95.x
1620         is used.
1621
1622         * src/support/lyxstring.C: some changes from length() to rep->sz.
1623         avoids a function call.
1624
1625         * src/support/filetools.C (SpaceLess): yet another version of the
1626         algorithm...now per Jean-Marc's suggestions.
1627
1628 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
1629
1630         * src/layout.C (less_textclass_desc): functor for use in sorting
1631         of textclasses. 
1632         (LyXTextClass::Read): sort the textclasses after reading.
1633         
1634         * src/support/filetools.C (SpaceLess): new version of the
1635         SpaceLess functions. What problems does this one give? Please
1636         report.
1637
1638         * images/banner_bw.xbm: made the arrays unsigned char *
1639
1640 1999-11-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1641
1642         * src/support/lyxstring.C (find): remove bogus assertion in the
1643         two versions of find where this has not been done yet.
1644
1645         * src/support/lyxlib.h: add missing int return type to
1646         lyx::chdir(). 
1647
1648         * src/menus.C (ShowFileMenu): disable exporting to html if no
1649         html export command is present.
1650
1651         * config/lib_configure.m4: add a test for an HTML converter. The
1652         programs checked for are, in this order: tth, latex2html and
1653         hevea. 
1654
1655         * lib/configure: generated from config/lib_configure.m4.
1656
1657         * src/lyxfunc.C (Dispatch): update and improve the execution of an
1658         html converter. The parameters are now passed through $$FName and
1659         $$OutName, instead of standard input/output.
1660
1661         * src/lyxrc.{C,h}: rename \tth_command to \html_command.
1662
1663         * lib/lyxrc.example: update description of \html_command. 
1664         add "quotes" around \screen_font_xxx font setting examples to help
1665         people who use fonts with spaces in their names.
1666
1667 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
1668
1669         * Distribution files: updates for v1.1.2
1670
1671         * src/support/lyxstring.C (find): remove bogus assert and return
1672         npos for the same condition.
1673
1674 1999-11-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
1675
1676         * added patch for OS/2 from SMiyata.
1677
1678 1999-10-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
1679
1680         * src/text2.C (CutSelection): make space_wrapped a bool
1681         (CutSelection): dont declare int i until we have to.
1682         (alphaCounter): return a char const *.
1683
1684 1999-10-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1685
1686         * src/support/syscall.C (Systemcalls::kill): 
1687           src/support/filetools.C (PutEnv, PutEnvPath): 
1688           src/lyx_cb.C (addNewlineAndDepth): 
1689           src/FontInfo.C (FontInfo::resize): condition some #warning
1690         directives with WITH_WARNINGS.
1691         
1692
1693 1999-10-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
1694
1695         * src/layout.[Ch] + several files: access to class variables
1696         limited and made accessor functions instead a lot of code changed
1697         becuase of this. Also instead of returning pointers often a const
1698         reference is returned instead.
1699         
1700         * src/form1.C (create_form_Figure): added a couple fo "no-c-format"
1701
1702         * src/Makefile.am (dist-hook): added used to remove the CVS from
1703         cheaders upon creating a dist
1704         (EXTRA_DIST): added cheaders
1705
1706         * src/support/lstrings.C (tostr(char)): fix it to handle param as
1707         a character not as a small integer. 
1708
1709         * src/support/lyxstring.C (find): removed Assert and added i >=
1710         rep->sz to the first if.
1711
1712 1999-10-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
1713
1714         * src/layout.[Ch] src/BufferView.C src/LaTeXFeatures.C
1715         src/LyXView.C src/buffer.C src/bufferparams.C
1716         src/lyx_cb.C src/lyxfunc.C src/paragraph.C src/text.C 
1717         src/text2.C src/insets/insetinclude.C:
1718         lyxlayout renamed to textclasslist.
1719
1720         * src/layout.C: some lyxerr changes.
1721
1722         * src/layout.[Ch] (LyXLayout::Read): changed second paramter to
1723         LyXTextClass. rewrote LT_COPYSTYLE, rewrote LT_OBSOLETEDBY
1724         (LyXLayoutList): removed all traces of this class.
1725         (LyXTextClass::Read): rewrote LT_STYLE
1726         (LyXTextClass::hasLayout): new function
1727         (LyXTextClass::GetLayout): rewritten to return an iterator + has
1728         both const and nonconst version.
1729         (LyXTextClass::delete_layout): new function.
1730         (LyXTextClassList::Style): bug fix. do the right thing if layout
1731         is to big.
1732         (LyXTextClassList::NumberOfLayout): new acces to layoutlist.
1733         (LyXTextClassList::NameOfLayout): ditto 
1734         (LyXTextClassList::Load): ditto
1735
1736         * src/buffer.C (makeLaTeXFile): new access to layoutlist
1737
1738         * src/LaTeXFeatures.C (getTClassPreamble): new access to layoutlist
1739
1740         * src/LyXAction.C (LookupFunc): added a workaround for sun
1741         compiler, on the other hand...we don't know if the current code
1742         compiles on sun at all...
1743
1744         * src/support/filetools.C (CleanupPath): subst fix
1745
1746         * src/insets/insetbib.C (delDatabase): subst fix, this looks
1747         _really_ weird.
1748
1749         * src/support/filetools.C (PutEnvPath): subst fix, how come nobody
1750         complained about this one?
1751
1752         * src/insets/insetinclude.C (Latex): subst fix
1753
1754         * src/insets/insetbib.C (getKeys): subst fix
1755
1756         * src/LyXSendto.C (SendtoApplyCB): subst fix
1757
1758         * src/lyx_main.C (init): subst fix
1759
1760         * src/layout.C (Read): subst fix
1761
1762         * src/lyx_sendfax_main.C (button_send): subst fix
1763
1764         * src/buffer.C (RoffAsciiTable): subst fix
1765
1766         * src/lyx_cb.C (MenuFax): subst fix
1767         (PrintApplyCB): subst fix
1768
1769 1999-10-26  Juergen Vigna  <jug@sad.it>
1770
1771         * src/table.C (TexEndOfCell) + (DocBookEndOfCell): removed some #if 0
1772
1773         (Read): Cleaned up this code so now we read only format vestion >= 5
1774
1775 1999-10-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
1776
1777         * src/support/filetools.C (PutEnvPath): subst fix for EMX, how
1778         come nobody has complained about this one?
1779
1780         * src/insets/insetinclude.C (Latex): subst fix
1781
1782         * src/insets/insetbib.C (getKeys): subst fix
1783
1784         * src/lyx_main.C (init): subst fix
1785
1786         * src/layout.C (Read): subst fix
1787
1788         * src/buffer.C (RoffAsciiTable): subst fix
1789
1790         * src/lyx_cb.C (MenuFax): subst fix.
1791
1792         * src/layout.[hC] + some other files: rewrote to use
1793         std::container to store textclasses and layouts in.
1794         Simplified, removed a lot of code. Make all classes
1795         assignable. Further simplifications and review of type
1796         use still to be one. 
1797
1798         * src/menus.C (ShowFileMenu/ShowFileMenu2): Use the iterators from
1799         lastfiles to create the lastfiles partr of the menu.
1800
1801         * src/lastfiles.[Ch]: rewritten to use deque to store the
1802         lastfiles in. Uses fstream for reading and writing. Simplifies
1803         code.
1804
1805         * src/support/syscall.C: remove explicit cast.
1806
1807         * src/BufferView.C (CursorToggleCB): removed code snippets that
1808         were commented out.
1809         use explicat C++ style casts instead of C style casts. also use
1810         u_vdata instea of passing pointers in longs.
1811
1812         * src/PaperLayout.C: removed code snippets that were commented out.
1813
1814         * src/lyx_gui_misc.C: removed code snippets that were commented out. 
1815
1816         * src/lyx_main.C: removed code snippets that wer commented out.
1817
1818         * src/paragraph.C: removed code snippets that were commented out.
1819
1820         * src/lyxvc.C (logClose): use static_cast
1821         (logUpdate): ditto
1822         (viewLog): remove explicit cast to void*
1823         (showLog): removed old commented code
1824
1825         * src/menus.C: use static_cast instead of C style casts. use
1826         u_vdata instead of u_ldata. remove explicit cast to (long) for
1827         pointers. Removed old code that was commented out.
1828
1829         * src/insets/inset.C: removed old commented func
1830
1831         * src/insets/insetref.C (InsetRef): removed old code that had been
1832         commented out for a long time.
1833         (Edit): ditto
1834         (escape): removed C style cast
1835
1836         * src/insets/insetlatexaccent.C (Draw): removed old commented code
1837
1838         * src/insets/insetlatex.C (Draw): removed old commented code
1839         (Read): rewritten to use string
1840
1841         * src/insets/insetlabel.C (escape): removed C style cast
1842
1843         * src/insets/insetindex.h: removed vdata and ldata from FD_index_form
1844
1845         * src/insets/insetindex.C: use static_cast and u_vdata, removed
1846         old commented code.
1847
1848         * src/insets/insetinclude.h: removed a couple of stupid bools
1849
1850         * src/insets/insetinclude.C (include_cb): use static_cast and u_data.
1851         (Clone): remove C style cast
1852         (getKeys): changed list to lst because of std::list
1853
1854         * src/insets/inseterror.C (Draw): removed som old commented code.
1855
1856         * src/insets/insetcommand.C (Draw): removed some old commented code.
1857
1858         * src/insets/insetbib.C (bibitem_cb): removed code that has been
1859         commented out forever.
1860         (bibitem_cb): use static_cast instead of C style cast
1861         use of vdata changed to u_vdata.
1862
1863         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forward the data
1864         parameter.
1865         (CloseUrlCB): use static_cast instead of C style cast.
1866         (CloseUrlCB): added a fl_free form...it seemed to be missing.
1867
1868         * src/insets/insetinfo.C (Edit): pass object in u_vdata instead
1869         (C_InsetInfo_CloseInfoCB): forward the ob parameter
1870         (CloseInfoCB): static_cast from ob->u_vdata instead.
1871         (Edit): removed bogus arg from fl_set_object_shortcut, set to 1
1872         instead. 
1873
1874         * src/insets/inseterror.C (Edit): pass object in u_vdata instead
1875         (C_InsetError_CloseErrorCB): forward the ob parameter
1876         (CloseErrorCB): static_cast from ob->u_vdata instead.
1877
1878         * src/vspace.h: include LString.h since we use string in this class.
1879
1880         * src/vspace.C (lyx_advance): changed name from advance because of
1881         nameclash with stl. And since we cannot use namespaces yet...I
1882         used a lyx_ prefix instead. Expect this to change when we begin
1883         using namespaces.
1884
1885         * src/BufferView.[Ch] (BufferView::~BufferView): removed 
1886
1887         * src/BackStack.h: rewrote to use std::stack. made BackStackItem
1888         and removed now defunct constructor and deconstructor.
1889
1890         * src/BufferView.h: have backstack as a object not as a pointer.
1891         removed initialization from constructor. added include for BackStack 
1892
1893         * development/lyx.spec.in (%build): add CFLAGS also.
1894
1895         * src/screen.C (drawFrame): removed another warning.
1896
1897 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1898
1899         * renamed WHATSNEW to NEWS (usual GNU style), CHANGES to
1900         OLD-CHANGES (not used anymore) and modified INSTALL, INSTALL.OS2,
1901         README and ANNOUNCE a bit for the next release. More work is
1902         needed, of course.
1903
1904         * src/paragraph.C (SimpleTeXBlanks): spaces are automatically made
1905         unbreakable if we are in freespacing mode (LyX-Code), but not in
1906         latex mode.
1907
1908 1999-10-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
1909
1910         * src/BackStack.h: fixed initialization order in constructor
1911
1912         * Makefile.am (MAINTAINERCLEANFILES): removed po/POTFILES.in
1913
1914         * acinclude.m4 (VERSION): new rules for when a version is
1915         development, added also a variable for prerelease.
1916         (warnings): we set with_warnings=yes for prereleases
1917         (lyx_opt): prereleases compile with same optimization as development 
1918         (CXXFLAGS): only use pedantic if we are a development version 
1919
1920         * src/BufferView.C (restorePosition): don't do anything if the
1921         backstack is empty.
1922
1923         * src/BackStack.h: added member empty, use this to test if there
1924         is anything to pop...
1925
1926 1999-10-25  Juergen Vigna  <jug@sad.it>
1927
1928         * forms/form1.fd +
1929         * forms/layout_forms.fd +
1930         * forms/latexoptions.fd +
1931         * lyx.fd: changed for various form resize issues
1932
1933         * src/mathed/math_panel.C +
1934         * src/insets/inseterror.C +
1935         * src/insets/insetinfo.C +
1936         * src/insets/inseturl.C +
1937         * src/insets/inseturl.h +
1938         * src/LaTeXLog.C +
1939         * src/LyXSendto.C +
1940         * src/PaperLayout.C +
1941         * src/ParagraphExtra.C +
1942         * src/TableLayout.C +
1943         * src/form1.C +
1944         * src/layout_forms.C +
1945         * src/lyx.C +
1946         * src/lyx_cb.C +
1947         * src/lyx_gui.C +
1948         * src/lyxfr0.C +
1949         * src/lyxfunc.C +
1950         * src/lyxvc.C +
1951         * src/menus.C: fixed various resize issues. So now forms can be
1952         resized savely or not be resized at all.
1953         
1954         * forms/form_url.fd +
1955         * src/insets/form_url.[Ch]: added because it's cleaner and easier
1956         to modify IMO.
1957
1958         * src/insets/Makefile.am: added files form_url.[Ch]
1959         
1960 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1961
1962         * INSTALL: it is now possible to compile LyX with digital C++ 6.1
1963         (and presumably 6.2).
1964
1965         * src/{BufferView,LyXView,combox,filedlg,intl,lyxserver,lyxvc,
1966         menus,minibuffer,toolbar}.{C,h}: added C_xxx wrappers around
1967         remaining static member callbacks. 
1968
1969         * src/lyxfunc.C (Dispatch): Use _() instead of N_() fot minibuffer
1970         messages. 
1971
1972         * src/support/lyxstring.h: declare struct Srep as friend of
1973         lyxstring, since DEC cxx complains otherwise.
1974
1975 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
1976
1977 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
1978
1979         * src/LaTeX.C (run): made run_bibtex also depend on files with
1980         extension ".bst"
1981         (runBibTeX): added scans for "\\bibstyle", now also ".bst" files
1982         are put into the dependency file.
1983
1984         * src/spellchecker.C (create_ispell_pipe): removed old #warning,
1985         the code has shown itself to work
1986         (create_ispell_pipe): removed another warning, added a comment
1987         instead. 
1988
1989         * src/minibuffer.C (ExecutingCB): removed code that has been
1990         commented out a long time
1991
1992         * src/lyxfunc.C (processKeyEvent): removed some very old commented
1993         out code + a warning.
1994
1995         * src/support/lyxstring.h: comment out the three private
1996         operators, when compiling with string ansi conforming compilers
1997         they make problems.
1998
1999         * src/mathed/math_symbols.C (AddBitmap): change 6th arg to be
2000         unsigned char *.
2001         (pixmapFromBitmapData): change type of bdata to be unsigned char *
2002         (pixmapFromBitmapData): add a reinterpret_cast in the call to
2003         XCreateImage
2004
2005         * src/mathed/math_panel.h: change 6th arg to AddBitmap to be
2006         unsigned char *
2007
2008         * src/mathed/math_panel.C (create_math_panel): remove explicit
2009         casts
2010
2011         * src/bmtable.h: change last paramter to fl_set_bmtable_data to be
2012         unsigned char *.
2013
2014         * src/bmtable.C (struct BMTABLE_SPEC): make bdata unsigned char *
2015         (draw_bitmaptable): add a reinterpret_cast to sp->bdata in the call
2016         to XCreatePixmapFromBitmapData
2017         (fl_set_bmtable_data): change the last argument to be unsigned
2018         char *
2019         (fl_set_bmtable_file): change bdata to unsinged char *, change bw
2020         and bh to be unsigned int, remove explicit casts in call to
2021         XReadBitmapFileData.
2022
2023         * images/arrows.xbm: made the arrays unsigned char *
2024         * images/varsz.xbm: ditto
2025         * images/misc.xbm: ditto
2026         * images/greek.xbm: ditto
2027         * images/dots.xbm: ditto
2028         * images/brel.xbm: ditto
2029         * images/bop.xbm: ditto
2030
2031         * Makefile.am (MAINTAINERCLEANFILES): added po/POTFILES.in
2032
2033         * acinclude.m4 (LYX_GXX_STRENGHT_REDUCE): removed. 
2034         (LYX_PROG_CXX): added -pedantic to g++ compile options when
2035         with-warnings, removed the __STRING_ANSI__ hack, seems to not be
2036         needed. 
2037         (LYX_CXX_CHEADERS): added <clocale> to the test. 
2038
2039 1999-10-23  Lars Gullik Bjønnes  <larsbj@lyx.org>
2040
2041         * src/lyx_cb.C (addNewlineAndDepth): changed to use string::append.
2042
2043         * src/support/lyxstring.C (append): fixed something that must be a
2044         bug, rep->assign was used instead of rep->append.
2045
2046         * src/support/Makefile.am (libsupport_a_SOURCES): added LIstream.h
2047         and LOstream.h
2048
2049         * src/lyxfunc.C (processKeyEvent): removed faulty line that made
2050         lyx insert double chars. Fix spotted by Kayvan.
2051
2052 1999-10-23  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
2053
2054         * Fixed the tth support. I messed up with the Emacs patch apply feature
2055         and omitted the changes in lyxrc.C.
2056
2057 1999-10-22  Juergen Vigna  <jug@sad.it>
2058
2059         * src/insets/figinset.C (CallbackFig): Just changed the defines a bit.
2060
2061         * src/lyx_cb.C (MenuInsertRef) + 
2062         * src/lyx_gui.C (create_forms): Inserted fl_set_form_minsize so that
2063         the form cannot be resized under it limits (fixes a segfault)
2064         
2065         * src/lyx.C (create_form_form_ref) +
2066         * forms/lyx.fd: Changed Gravity on name input field so that it is
2067         resized correctly.
2068
2069 1999-10-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2070
2071         * configure.in: use LYX_CXX_STL_MODERN_STREAMS; check for headers
2072         <ostream> and <istream>.
2073         
2074         * acinclude.m4 (LYX_CXX_STL_MODERN_STREAMS): new test. Checks
2075         whether <fstream> provides the latest standard features, or if we
2076         have an oldstyle library (like in egcs).
2077         (LYX_CXX_STL_STRING): fix the test.
2078
2079         * src/support/DebugStream.{C,h}: use L{I,O}stream.h and condition the
2080         code on MODERN_STL_STREAM.
2081
2082         * src/support/lyxstring.h: use L{I,O}stream.h.
2083
2084         * src/support/L{I,O}stream.h: new files, designed to setup
2085         correctly streams for our use
2086           - includes the right header depending on STL capabilities
2087           - puts std::ostream and std::endl (for LOStream.h) or
2088           std::istream (LIStream.h) in toplevel namespace.
2089
2090 1999-10-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
2091
2092         * src/LaTeX.C (run): added a check in 0 sumchange so that if it
2093         was a bib file that had been changed we ensure that bibtex is run.
2094         (runBibTeX): enhanced to extract the names of the bib files and
2095         getting their absolute path and enter them into the dep file.
2096         (findtexfile): static func that is used to look for tex-files,
2097         checks for absolute patchs and tries also with kpsewhich.
2098         Alternative ways of finding the correct files are wanted. Will
2099         probably be moved.
2100         (do_popen): function that runs a command using popen and returns
2101         the whole output of that command in a string. Should be moved to
2102         somewhere else.
2103
2104         * src/DepTable.[Ch] (extchanged): new function that returns true if a
2105         file with extension ext has changed.
2106
2107         * src/insets/figinset.C: added ifdef guards around the fl_free
2108         code that jug commented out. Now it is commented out when
2109         compiling with XForms == 0.89.
2110
2111         * src/support/lyxstring.C: moved the definition of lyxstring::Srep
2112         to lyxstring.C, and only keep a forward declaration in
2113         lyxstring.h. Simplifies the header file a bit and should help a
2114         bit on compile time too. Also changes to Srep will not mandate a
2115         recompile of code just using string.
2116         (~lyxstring): definition moved here since it uses srep.
2117         (size): definition moved here since it uses srep.
2118
2119         * src/support/lyxstring.h: removed a couple of "inline" that should
2120         not be there.
2121
2122 1999-10-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2123
2124         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forgot to pass
2125         the 'ob' argument.
2126
2127 1999-10-21  Juergen Vigna  <jug@sad.it>
2128
2129         * src/table.C (SetPWidth): Just a small fix so the alignment is not
2130         set to left if I just remove the width entry (or it is empty).
2131
2132         * src/text2.C (SetCursorIntern): Fixed a bug calculating to use wrong
2133         paragraph when having dummy paragraphs.
2134
2135 1999-10-20  Juergen Vigna  <jug@sad.it>
2136
2137         * src/insets/figinset.C: just commented some fl_free_form calls
2138         and added warnings so that this calls should be activated later
2139         again. This avoids for now a segfault, but we have a memory leak!
2140
2141         * src/lyxfunc.C (processKeyEvent) (Dispatch): changed
2142         'const char * argument' to 'string argument', this should
2143         fix some Asserts() in lyxstring.C.
2144
2145         * src/lyxfunc.h: Removed the function argAsString(const char *)
2146         as it is not used anymore.
2147
2148 1999-10-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
2149
2150         * src/support/lyxstring.C (getline): reads now _all_ chars. uses
2151         get instead of >>
2152
2153         * src/Literate.h: some funcs moved from public to private to make
2154         interface clearer. Unneeded args removed.
2155
2156         * src/Literate.C (scanLiterateLogFile): rewritten to use iostream
2157         instead of lyxlex.
2158         (scanBuildLogFile): ditto
2159
2160         * src/LaTeX.C (scanLogFile): merged LaTeX Error handling into
2161         normal TeX Error. Still room for improvement.
2162
2163         * src/LaTeX.[Ch]: removed scanError. Wrong place and not needed.
2164
2165         * src/buffer.C (insertErrors): changes to make the error
2166         desctription show properly.
2167
2168         * src/LaTeX.C (deplog): removed the test for file in lyx doc dir.
2169         could never happen
2170
2171         * src/support/lyxstring.C (helper): changed to use
2172         sizeof(object->rep->ref).
2173         (operator>>): changed to use a pointer instead.
2174
2175         * src/support/lyxstring.h: changed const reference & to value_type
2176         const & lets see if that helps.
2177
2178 1999-10-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
2179
2180         * Makefile.am (rpmdist): fixed to have non static package and
2181         verison.
2182
2183         * src/support/lyxstring.C: removed the compilation guards
2184
2185         * src/vspace.C (nextToken): use i + 1  instead of ++i. Maks things
2186         a bit clearer.
2187
2188         * src/support/Makefile.am (LYXSTRING): bruker USE_LYXSTRING for
2189         conditional compile of lyxstring.Ch
2190
2191         * acinclude.m4 (LYX_CXX_STL_STRING): new and improved, still a
2192         stupid check, but it is a lot better than the bastring hack. 
2193         (LYX_CXX_STL_STRING): bruker nå AM_CONDITIONAL(USE_LYXSTRING  
2194
2195         * several files: changed string::erase into string::clear. Not
2196         really needed.
2197         
2198         * src/chset.C (encodeString): use a char temporary instead
2199
2200         * src/table.C (TexEndOfCell): added tostr around
2201         column_of_cell(fcell+i)+1 and around right_column_of_cell(fcell+i)+1
2202         (TexEndOfCell): ditto
2203         (TexEndOfCell): ditto
2204         (TexEndOfCell): ditto
2205         (DocBookEndOfCell): ditto
2206         (DocBookEndOfCell): ditto
2207         (DocBookEndOfCell): ditto
2208         (DocBookEndOfCell): ditto
2209
2210         * src/paragraph.C (TeXEnvironment): added tostr around foot_count -1
2211
2212         * src/lyxfr1.C (SearchReplaceAllCB): added tostr around replace_count
2213
2214         * src/lyx_cb.C (MenuRunLaTeX): added tostr around ret
2215         (MenuBuildProg): added tostr around ret
2216         (MenuRunChktex): added tostr around ret
2217         (DocumentApplyCB): added tostr around ret
2218
2219         * src/chset.C (encodeString): added tostr around t->ic
2220
2221         * src/buffer.C (makeLaTeXFile): added tostr around secnumdepth
2222         (makeLaTeXFile): added tostr around tocdepth
2223         (makeLaTeXFile): added tostr around ftcound - 1
2224
2225         * src/insets/insetbib.C (setCounter): added tostr around counter.
2226
2227         * src/support/lyxstring.h: added an operator+=(int) to catch more
2228         mistakes. 
2229
2230         * src/support/lyxstring.C (lyxstring): We DON'T allow NULL pointers.
2231         (lyxstring): We DON'T allow NULL pointers.
2232
2233 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2234
2235         * src/mathed/math_macro.C (MathMacroArgument::Write,
2236         MathMacroTemplate::WriteDef): add tostr() around macro arg numbers
2237         when writing them out.
2238
2239         * src/LString.C: remove, since it is not used anymore.
2240         
2241         * src/support/lyxstring.C: condition the content to
2242         USE_INCLUDED_STRING macro.
2243
2244         * src/mathed/math_symbols.C, src/support/lstrings.C,
2245         src/support/lyxstring.C: add `using' directive to specify what
2246         we need in <algorithm>. I do not think that we need to
2247         conditionalize this, but any thought is appreciated.
2248
2249         * many files: change all callback functions to "C" linkage
2250         functions to please strict C++ compilers like DEC cxx 6.1 in mode
2251         strict_ansi. Those who were static are now global. 
2252             The case of callbacks which are static class members is
2253         trickier, since we have to make C wrappers around them (see
2254         InsetError, InsetInfo and InsetUrl). The same holds for friends. I
2255         did not finish this yet, since it defeats the purpose of
2256         encapsulation, and I am not sure what the best route is.
2257
2258 1999-10-19  Juergen Vigna  <jug@sad.it>
2259
2260         * src/support/lyxstring.C (lyxstring): we permit to have a null
2261         pointer as assignment value and just don't assign it.
2262
2263         * src/vspace.C (nextToken): corrected this function substituting
2264         find_first(_not)_of with find_last_of.
2265
2266         * src/TableLayout.C (UpdateLayoutTable) (TableOptionsCB)
2267                 (TableOptCloseCB) (TableSpeCloseCB):
2268         inserted fl_set_focus call for problem with fl_hide_form() in
2269         xforms-0.89.
2270
2271 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2272
2273         * src/lyx_cb.C (LayoutsCB): fix bug where int was added to a
2274         string. 
2275
2276 1999-10-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2277
2278         * src/lyxrc.C (Read): RC_PRINTEXSTRAOPTIONS now uses
2279         LyXLex::next() and not eatline() to get its argument.
2280
2281 1999-10-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
2282
2283         * src/DepTable.[Ch]: rewritten to store the dependencies in a map
2284         instead, use fstreams for io of the depfile, removed unneeded
2285         functions and variables. 
2286
2287         * src/LaTeX.[Ch] (class TeXErrors): rewrote to store the errors in a
2288         vector instead, removed all functions and variables that is not in
2289         use.
2290
2291 1999-10-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
2292
2293         * src/buffer.C (insertErrors): use new interface to TeXError
2294
2295         * Makefile.am (rpmdist): added a rpmdist target
2296
2297         * lib/reLyX/Makefile.am: added RelyxFigure.pm and Verbatim.pm as
2298         per Kayvan's instructions.
2299
2300 1999-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2301
2302         * src/Makefile.am: add a definition for localedir, so that locales
2303         are found after installation (Kayvan)
2304
2305 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
2306
2307         * development/.cvsignore: new file.
2308
2309 1999-10-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2310
2311         * acinclude.m4 (LYX_CXX_CHEADERS): New macro. Checks whether the
2312         C++ compiler provides wrappers for C headers and use our alternate
2313         version otherwise.
2314
2315         * configure.in: use LYX_CXX_CHEADERS.
2316
2317         * src/cheader/: new directory, populated with cname headers from
2318         libstdc++-2.8.1. They are a bit old, but probably good enough for
2319         what we want (support compilers who lack them).
2320         
2321         * src/insets/Makefile.am, src/mathed/Makefile.am: remove src/support
2322         from includes. It turns out is was stupid.
2323  
2324 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
2325
2326         * lib/Makefile.am (install-data-local): forgot a ';'
2327         (install-data-local): forgot a '\'
2328         (libinstalldirs): needed after all. reintroduced.
2329
2330 1999-10-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
2331
2332         * configure.in (AC_OUTPUT): added lyx.spec
2333
2334         * development/lyx.spec: removed file
2335
2336         * development/lyx.spec.in: new file
2337
2338         * po/*.po: merged with lyx.pot becuase of make distcheck
2339         
2340         * lib/Makefile.am (dist-hook): added dist-hook so that
2341         documentation files will be included when doing a make
2342         dist/distdir/distcheck. Requires cvs export -r HEAD lyxdoc to run.
2343         (pkgdata_SCRIPTS): added configure.cmd for now, we can use som
2344         conditional later.
2345         more: tried to make install do the right thing, exclude CVS dirs
2346         etc.
2347
2348         * src/LaTeXLog.C (ShowLatexLog): reordered som statements so that
2349         Path would fit in more nicely.
2350
2351         * all files that used to use pathstack: uses now Path instead.
2352         This change was a lot easier than expected.
2353         
2354         * src/support/path.h: new file
2355
2356         * src/support/Makefile.am (libsupport_a_SOURCES): added path.h
2357
2358         * src/Makefile.am (lyx_SOURCES): removed pathstack.[Ch]
2359
2360         * src/support/lyxstring.C (getline): Default arg was given for
2361         para 3. removed.
2362
2363         * Configure.cmd: removed file 
2364
2365 1999-10-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2366
2367         * src/support/DebugStream.[Ch]: remove the explicit std:: before
2368         streams classes and types, add the proper 'using' statements when
2369         MODERN_STL is defined.
2370         
2371         * src/debug.h: move the << operator definition after the inclusion
2372         of DebugStream.h
2373
2374         * src/support/filetools.C: include "LAssert.h", which is needed
2375         later. 
2376
2377         * src/insets/Makefile.am, src/mathed/Makefile.am: add src/support
2378         to includes. 
2379
2380         * src/lyxfont.h, src/commandtags.h, src/mathed/math_defs.h:
2381         include "debug.h" to define a proper ostream.
2382
2383 1999-10-12  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
2384
2385         * src/sys*: Cleaned up the Systemcall stuff a bit. Added "kill(int)"
2386           method to the SystemCall class which can kill a process, but it's
2387           not fully implemented yet.
2388
2389         * src/*.C: Changed Systemcalls::Startscript() to startscript()
2390
2391         * src/support/FileInfo.h: Better documentation  
2392
2393         * src/lyxfunc.C: Added support for buffer-export html
2394         
2395         * src/menus.C: Added Export->As HTML...
2396         
2397         * lib/bind/*.bind: Added short-cut for buffer-export html
2398
2399         * src/lyxrc.*: Added support for new \tth_command
2400         
2401         * lib/lyxrc.example: Added stuff for new \tth_command
2402
2403 1999-10-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
2404
2405         * lib/Makefile.am (IMAGES): removed images/README
2406         (pkgdata_SCRIPTS): use this instead of bin_SCRIPTS to that it
2407         installes in correct place. Check permisions is installed
2408         correctly.
2409
2410         * src/LaTeX.C: some no-op changes moved declaration of some
2411         variables around.
2412
2413         * src/LaTeX.h (LATEX_H): changed include guard name
2414
2415 1999-10-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2416
2417         * lib/reLyX/Makefile.am: install noweb2lyx.
2418
2419         * lib/Makefile.am: install configure. 
2420
2421         * lib/reLyX/configure.in: declare a config aux dir; set package
2422         name to lyx (not sure what the best solution is); generate noweb2lyx.
2423
2424         * lib/layouts/egs.layout: fix the bibliography layout.
2425
2426 1999-10-08  Jürgen Vigna <jug@sad.it>
2427
2428         * src/support/filetools.C (FileOpenSearch): Fixed a bug where
2429         when in the PATH was something like /usr/bin;;/bin (note: the ;;)
2430         it returned without continuing to search the path.
2431         
2432 1999-10-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
2433
2434         * src/insets/insetquotes.C (Draw): Simplified a gread deal. This
2435         also fixes a bug. It is not allowed to do tricks with std::strings
2436         like: string a("hei"); &a[e]; this will not give what you
2437         think... Any reason for the complexity in this func?
2438
2439 1999-10-06  Asger Alstrup Nielsen  <alstrup@diku.dk>
2440
2441         * Updated README and INSTALL a bit, mostly to check that my
2442         CVS rights are correctly set up.
2443
2444 1999-10-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
2445
2446         * src/support/lyxstring.C (helper): removed bogus Assert. strlen
2447         does not allow '\0' chars but lyxstring and std::string does.
2448
2449 1999-10-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
2450
2451         * autogen.sh (AUTOCONF): let the autogen script create the
2452         POTFILES.in file too. POTFILES.in should perhaps now not be
2453         included in the cvs module.
2454
2455         * some more files changed to use C++ includes instead of C ones.
2456
2457         * src/filedlg.C (Reread): fixed a bug wrt Time. It was appended
2458         not assigned.
2459         (Reread): added tostr to nlink. buggy output otherwise.
2460         (Reread): added a string() around szMode when assigning to Buffer,
2461         without this I got a log of garbled info strings.
2462
2463         * acconfig.h: commented out the PTR_AS_INT macros. They should not
2464         be needed.
2465
2466         * I have added several ostream & operator<<(ostream &, some_type)
2467         functions. This has been done to avoid casting and warnings when
2468         outputting enums to lyxerr. This as thus eliminated a lot of
2469         explicit casts and has made the code clearer. Among the enums
2470         affected: kb_action, InsetLatexAccent::ACCENT_TYPE, a couple of
2471         mathed enums, some font enum the Debug::type enum. 
2472
2473         * src/support/lyxstring.h (clear): missing method. equivalent of
2474         erase(0, npos).
2475
2476         * all files that contained "stderr": rewrote constructs that used
2477         stderr to use lyxerr instead. (except bmtable)
2478
2479         * src/support/DebugStream.h (level): and the passed t with
2480         Debug::ANY to avoid spurious bits set.
2481
2482         * src/debug.h (Debug::type value): made it accept strings of the
2483         type INFO,INIT,KEY.
2484
2485         * configure.in (Check for programs): Added a check for kpsewhich,
2486         the latex generation will use this later to better the dicovery of
2487         all used files. 
2488
2489         * src/BufferView.C (create_view): we don't need to cast this to
2490         (void*) that is done automatically.
2491         (WorkAreaButtonPress): removed some dead code.
2492
2493 1999-10-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2494
2495         * src/minibuffer.C (Init): make sure that the "Welcome to LyX!"
2496         is not overwritten when translated (David Sua'rez de Lis).
2497
2498         * lib/CREDITS: Added David Sua'rez de Lis
2499
2500         * lib/reLyX/configure.in: setup LYX_DIR correctly in reLyX.
2501
2502         * src/bufferparams.C (BufferParams): default input encoding is now
2503         "latin1" 
2504
2505         * acinclude.m4 (cross_compiling): comment out macro
2506         LYX_GXX_STRENGTH_REDUCE. 
2507
2508         * acconfig.h: make sure that const is not defined (to empty) when
2509         we are compiling C++. Remove commented out code using SIZEOF_xx
2510         macros.
2511         
2512         * configure.in : move the test for const and inline as late as
2513         possible so that these C tests do not interefere with C++ ones.
2514         Remove the call to LYX_GXX_STRENGTH_REDUCE, since its usefulness
2515         has not been proven. 
2516
2517 1999-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2518
2519         * src/table.C (getDocBookAlign): remove bad default value for
2520         isColumn parameter.
2521
2522         * src/menus.C (ShowFileMenu): add a missing tostr() for lastfiles
2523         shortcut. 
2524         (ShowFileMenu2): ditto.
2525
2526         * lib/reLyX/.cvsignore: add configure and aclocal.m4 to the list
2527         of files to ignore.
2528
2529 1999-10-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
2530
2531         * Most files: finished the change from the old error code to use
2532         DebugStream for all lyxerr debugging. Only minor changes remain
2533         (e.g. the setting of debug levels using strings instead of number) 
2534
2535 1999-10-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
2536
2537         * src/layout.C (Add): Changed to use compare_no_case instead of
2538         strcasecmp.
2539
2540         * src/FontInfo.C: changed loop variable type too string::size_type.
2541
2542 1999-10-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
2543
2544         * src/support/Makefile.am: added -I${srcdir}/../ to INCLUDES and
2545         set ETAGS_ARGS to --c++ 
2546
2547 1999-09-30  Lars Gullik Bjønnes  <larsbj@lyx.org>
2548
2549         * src/table.C (DocBookEndOfCell): commented out two unused variables
2550
2551         * src/paragraph.C: commented out four unused variables. 
2552
2553         * src/lyx_cb.C (TocUpdateCB): moved variable i and added a new i
2554         insed a if clause with type string::size_type.
2555
2556         * src/lyxfr1.C (IsSearchStringInText): changed iSrch from int to
2557         string::size_type.
2558
2559         * src/lyxfunc.C (Dispatch): use string::size_type as loop variable.
2560
2561         * src/lyx_cb.C (ReplaceWord): use string::size_type as loop
2562         variable, also changed loop to go from 0 to lenght + 1, instead of
2563         -1 to length. This should be correct.
2564
2565         * src/LaTeX.C (scanError): use string::size_type as loop variable
2566         type.
2567
2568         * src/BufferView.C (WorkAreaButtonPress): moved #if 0 up two lines
2569         (l.896) since y_tmp and row was not used anyway.
2570
2571         * src/insets/insetref.C (escape): use string::size_type as loop
2572         variable type.
2573
2574         * src/insets/insetquotes.C (Width): use string::size_type as loop
2575         variable type.
2576         (Draw): use string::size_type as loop variable type.
2577
2578         * src/insets/insetlatexaccent.C (checkContents): use
2579         string::size_type as loop variable type.
2580
2581         * src/insets/insetlabel.C (escape): use string::size_type as loop
2582         variable type.
2583
2584         * src/insets/insetinfo.C: added an extern for current_view.
2585
2586         * src/insets/insetcommand.C (scanCommand): use string::size_type
2587         as loop variable type.
2588
2589         * most files: removed the RCS tags. With them we had to recompile
2590         a lot of files after a simple cvs commit. Also we have never used
2591         them for anything meaningful. 
2592
2593         * most files: tags-query-replace NULL 0. As adviced several plases
2594         we now use "0" instead of "NULL" in our code. 
2595
2596         * src/support/filetools.C (SpaceLess): use string::size_type as
2597         loop variable type.
2598
2599 1999-09-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
2600
2601         * src/paragraph.C: fixed up some more string stuff.
2602
2603 1999-09-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
2604
2605         * src/support/filetools.h: make modestr a std::string.
2606
2607         * src/filetools.C (GetEnv): made ch really const.
2608
2609         * src/lyxlib.h: removed the Maximum and Minimum inline functions,
2610         made code that used these use max/min from <algorithm> instead.
2611
2612         * changed several c library include files to their equivalent c++
2613         library include files. All is not changed yet.
2614
2615         * created a support subdir in src, put lyxstring and lstrings
2616         there + the extra files atexit, fileblock, strerror. Created
2617         Makefile.am. edited configure.in and src/Makefile.am to use this
2618         new subdir. More files moved to support.
2619
2620         * imported som of the functions from repository lyx, filetools
2621         
2622         * ran tags-query-replace on LString -> string, corrected the bogus
2623         cases. Tried to make use of lstrings.[hC], debugged a lot. There
2624         is still some errors in there. This is errors where too much or
2625         too litle get deleted from strings (string::erase, string::substr,
2626         string::replace), there can also be some off by one errors, or
2627         just plain wrong use of functions from lstrings. Viewing of quotes
2628         is wrong. 
2629
2630         * LyX is now running fairly well with string, but there are
2631         certainly some bugs yet (see above) also string is quite different
2632         from LString among others in that it does not allow null pointers
2633         passed in and will abort if it gets any.
2634         
2635         * Added the revtex4 files I forgot when setting up the repository.
2636
2637 1999-09-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
2638
2639         * All over: Tried to clean everything up so that only the files
2640           that we really need are included in the cvs repository.
2641         * Switched to use automake.
2642         * Generaton of reLyX is not perfect, LYX_DIR does not get substituted.
2643         * Install has not been checked.
2644
2645 1999-09-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
2646
2647         * po/pt.po: Three errors:
2648                l.533 and l.538 format specification error
2649                l. 402 duplicate entry, I just deleted it.
2650