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