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