]> git.lyx.org Git - lyx.git/blob - ChangeLog
Two configuration fixes. Bugfree configure is coming soon (do you really believe...
[lyx.git] / ChangeLog
1 1999-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2
3         * src/{insets,mathed}/Makefile.am: do not declare an empty
4         LDFLAGS, so that it can be set at configure time (useful on Irix
5         for -n32 flag).
6
7         * lib/reLyX/configure.in: make sure that the prefix is set
8         correctly in LYX_DIR.
9
10 1999-11-18  Andre' Poenitz <poenitz@mathematik.tu-chemnitz.de>
11
12         * src/commandtags.h: introduction of a new tag 'LFUN_SEQUENCE' to
13         be used by 'command-sequence' this allows to bind a key to a
14         sequence of LyX-commands
15         (Example: 'command-sequence math-insert alpha; math-insert beta;")
16
17         * src/LyXAction.C: add "command-sequence"
18
19         * src/LyXFunction.C: handling of "command-sequence"
20
21         * src/LyXFunction.[hC] changed LyXFunc::Dispatch(string const
22          &cmd, string const &arg) to LyXFunc::Dispatch(string const& s)
23
24         * src/lyxserver.C, src/minibuffer.C: Use this new interface
25
26 1999-11-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
27
28         * src/buffer.C (writeFile): Do not output a comment givinf user
29         and date at the beginning of a .lyx file. This is useless and
30         annoys cvs anyway; update version number to 1.1.
31
32         * src/Makefile.am (LYX_DIR): add this definition, so that a
33         default path is hardcoded in LyX.
34
35         * configure.in: Use LYX_GNU_GETTEXT.
36
37         * acinclude.m4 (LYX_GNU_GETTEXT): new macro, essentially a copy of
38         AM_GNU_GETTEXT with a bug fixed. 
39
40         * src/lyx_cb.C (RunLinuxDoc): add a cast to please dec cxx.
41
42         * src/chset.C: add "using std::ifstream;" to please dec cxx.
43
44         * src/lyx_main.C (init), INSTALL.OS2: the environment variable
45         which is used to point to LyX data is now LYX_DIR_11x.
46
47         * lyx.man: convert to a unix text file; small updates.
48
49 1999-11-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
50
51         * src/support/LSubstring.[Ch]: made the second arg of most of the
52         constructors be a const reference. 
53
54         * src/mathed/math_parser.C (LexInitCodes): small bug introduced by
55         me fixed.
56
57         * src/support/lyxstring.[Ch] (swap): added missing member function
58         and specialization of swap(str, str); 
59
60         * src/menus.C (ShowBufferMenu): to use the new BufferStorage
61
62         * src/bufferlist.[Ch]: use the new BufferStorage class and remove all
63         trace of the old one.
64
65         * src/undo.[Ch]: made the undostack use std::list to store undo's in
66         put the member definitions in undo.C.
67
68         * src/lyxparagraph.h, src/paragraph.C + a lot of files: removed
69         NEW_TEXT and have now only code that was included when this was
70         defined. 
71
72         * src/intl.C (LCombo): use static_cast
73         (LCombo2): ditto
74         (DispatchCallback): ditto
75
76         * src/definitions.h: removed whole file
77         
78         * src/commandtags.h: comment out LFUN_INSERT_INSET_LATEX
79
80         * src/chset.[Ch]: a lot rewritten, does not use lyxlex for cdef
81         parsing and stores in a std:map. a regex defines the file format.
82         removed unneeded members.
83
84         * src/bufferparams.h: added several enums from definitions.h here.
85         Removed unsused destructor. Changed some types to use proper enum
86         types. use block to have the temp_bullets and user_defined_bullets
87         and to make the whole class assignable.
88
89         * src/bufferparams.C (Copy): removed this functions, use a default
90         assignment instead. 
91
92         * src/buffer.h: made isLatex, isLinuxDoc, isDocBook, isSGML and
93         isLiterate const.
94
95         * src/buffer.C (readLyXformat2): commend out all that have with
96         oldpapersize to do. also comment out all that hve to do with
97         insetlatex and insetlatexdel. 
98         (setOldPaperStuff): commented out
99
100         * src/Makefile.am (lyx_SOURCES): remove definitions.h, add undo.C
101
102         * src/LyXAction.C: remove use of inset-latex-insert
103
104         * src/mathed/math_panel.C (button_cb): use static_cast
105
106         * src/insets/Makefile.am (insets_o_SOURCES): removed
107         insetlatex.[Ch] 
108
109         * src/support/lyxstring.C (helper): use the unsigned long
110         specifier, UL, instead of a static_cast.
111
112         * src/support/Makefile.am (libsupport_a_SOURCES): added block.h
113
114         * src/support/block.h: new file. to be used as a c-style array in
115         classes, so that the class can be assignable.
116
117 1999-11-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
118
119         * src/lyx_gui_misc.C (askForText): when fl_show_input() returns
120         NULL, make sure to return an empty string (it is not possible to
121         set a string to NULL).
122
123 1999-11-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
124
125         * src/support/LRegex.C: use regex_t instead of re_pattern_buffer.
126
127         * src/support/lyxstring.C (helper): fix bogus cast in assertion.
128
129         * src/{mathed,insets}/Makefile.am (CXXLINK): add $(LDFLAGS) to the
130         link line, so that Irix users (for example) can set it explicitely to
131         "-n32".
132         
133         * src/Makefile.am (lyx_LDADD): use LYX_LIB as a variable, so that
134         it can be overidden at make time (static or dynamic link, for
135         example).
136         
137         * src/vc-backend.C, src/LaTeXFeatures.h, 
138           src/support/LRegex.C, src/support/LRegex.h: add a few "using" 
139         statements to bring templates to global namespace.
140
141 1999-11-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
142
143         * src/support/lyxstring.C (operator[] const): make it standard
144         conforming. 
145
146         * src/minibuffer.C (Init): changed to reflect that more
147         information is given from the lyxvc and need not be provided here.
148
149         * src/lyxvc.[Ch]: rewrote to use the vc-backend.
150         
151         * src/Makefile.am (lyx_SOURCES): add vc-backend.[Ch]
152
153         * src/LyXView.C (UpdateTimerCB): use static_cast
154         (KeyPressMask_raw_callback): ditto
155
156         * src/BufferView.[Ch]: name change _owner -> owner_ and _buffer ->
157         buffer_, a lot of changes because of this. currentBuffer() ->
158         buffer(), setBuffer(...) -> buffer(...), getOwner() -> owner(),
159         also changes to other files because of this.
160
161 1999-11-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
162
163         * src/vc-backend.[Ch]: new files. The backends for vc handling,
164         have no support for RCS and partial support for CVS, will be
165         improved later.
166         
167         * src/insets/ several files: changes because of function name
168         changes in Bufferview and LyXView.
169         
170         * src/mathed/math_symbols.C (math_insert_symbol): use static_cast
171
172         * src/support/LSubstring.[Ch]: new files. These implement a
173         Substring that can be very convenient to use. i.e. is this
174         possible:
175         string a = "Mary had a little sheep";
176         Substring(a, "sheep") = "lamb";
177         a is now "Mary has a little lamb".
178
179         * src/support/LRegex.[Ch]: a regex class that can be used to pick
180         out patterns and subpatterns of strings. It is used by LSubstring
181         and also by vc-backend.C
182         
183         * src/support/lyxstring.C: went over all the assertions used and
184         tried to correct the wrong ones and flag which of them is required
185         by the standard. some bugs found because of this. Also removed a
186         couple of assertions.
187
188         * src/support/Makefile.am (libsupport_a_SOURCES): added
189         LSubstring.[Ch] and LRegex.[Ch]
190
191         * src/support/FileInfo.h: have struct stat buf as an object and
192         not a pointer to one, some changes because of this.
193
194         * src/LaTeXFeatures.C (getTClassPreamble): also use the
195         information in layout when addint he layouts preamble to the
196         textclass preamble.
197
198         * src/LaTeXFeatures.h: use a vector<bool> to store the layout
199         usage in.
200
201         * configure.in (CPPFLAGS): use AC_CHECK_FUNCS to check for XOpenIM
202         because of bug in OS/2.
203
204 1999-11-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
205
206         * lib/layouts/lyxmacros.inc (lyxcode): set the font with
207         \verbatim@font instead of \ttfamily, so that it can be redefined.
208
209         * src/BackStack.h, src/DepTable.C, src/DepTable.h, src/LaTeX.C,
210           src/LaTeX.h, src/lastfiles.C, src/lastfiles.h, src/layout.C,
211           src/layout.h, src/text2.C: add 'using' directive to bring the
212         STL templates we need from the std:: namespace to the global one.
213         Needed by DEC cxx in strict ansi mode.
214
215         * src/support/LIstream.h,src/support/LOstream.h,
216           src/support/lyxstring.h,src/table.h,
217           src/lyxlookup.h: do not include <config.h> in header
218         files. This should be done in the .C files only.
219
220         * development/lyx.spec.in: WHATSNEW has been renamed to NEWS
221         (from Kayvan).
222         
223
224 1999-11-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
225
226         * config/lib_configure.m4,lib/configure,lib/lyxrc.example: update
227         from Kayvan to fix the tth invokation.
228
229         * development/lyx.spec.in: updates from Kayvan to reflect the
230         changes of file names.
231
232 1999-11-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
233
234         * src/text2.C (InsertStringB): use std::copy
235         (InsertStringA): use std::copy
236
237         * src/bufferlist.C: use a vector to store the buffers in. This is
238         an internal change and should not affect any other thing.
239         
240         * src/BufferView.C (waitForX): use XSync instead of the lengthy
241         stuff in waitForX.
242
243         * src/text.C (Fill): fix potential bug, one off bug.
244
245 1999-11-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
246
247         * src/Makefile.am (lyx_main.o): add more files it depends on.
248
249         * src/lyx_cb.C (addNewlineAndDepth): parameters in wrong order.
250
251         * src/support/lyxstring.C: use size_t for the reference count,
252         size, reserved memory and xtra.
253         (internal_compare): new private member function. Now the compare
254         functions should work for std::strings that have embedded '\0'
255         characters.
256         (compare): all compare functions rewritten to use
257         internal_compare.
258         
259 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
260
261         * src/support/lyxstring.C (compare): pass c_str()
262         (compare): pass c_str
263         (compare): pass c_str
264
265 1999-11-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
266
267         * src/support/DebugStream.C: <config.h> was not included correctly.
268
269         * lib/configure: forgot to re-generate it :( I'll make this file
270         auto generated soon.
271
272 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
273
274         * acinclude.m4 (cross_compiling): add -fpermissive when gcc 2.95.x
275         is used.
276
277         * src/support/lyxstring.C: some changes from length() to rep->sz.
278         avoids a function call.
279
280         * src/support/filetools.C (SpaceLess): yet another version of the
281         algorithm...now per Jean-Marc's suggestions.
282
283 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
284
285         * src/layout.C (less_textclass_desc): functor for use in sorting
286         of textclasses. 
287         (LyXTextClass::Read): sort the textclasses after reading.
288         
289         * src/support/filetools.C (SpaceLess): new version of the
290         SpaceLess functions. What problems does this one give? Please
291         report.
292
293         * images/banner_bw.xbm: made the arrays unsigned char *
294
295 1999-11-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
296
297         * src/support/lyxstring.C (find): remove bogus assertion in the
298         two versions of find where this has not been done yet.
299
300         * src/support/lyxlib.h: add missing int return type to
301         lyx::chdir(). 
302
303         * src/menus.C (ShowFileMenu): disable exporting to html if no
304         html export command is present.
305
306         * config/lib_configure.m4: add a test for an HTML converter. The
307         programs checked for are, in this order: tth, latex2html and
308         hevea. 
309
310         * lib/configure: generated from config/lib_configure.m4.
311
312         * src/lyxfunc.C (Dispatch): update and improve the execution of an
313         html converter. The parameters are now passed through $$FName and
314         $$OutName, instead of standard input/output.
315
316         * src/lyxrc.{C,h}: rename \tth_command to \html_command.
317
318         * lib/lyxrc.example: update description of \html_command. 
319         add "quotes" around \screen_font_xxx font setting examples to help
320         people who use fonts with spaces in their names.
321
322 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
323
324         * Distribution files: updates for v1.1.2
325
326         * src/support/lyxstring.C (find): remove bogus assert and return
327         npos for the same condition.
328
329 1999-11-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
330
331         * added patch for OS/2 from SMiyata.
332
333 1999-10-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
334
335         * src/text2.C (CutSelection): make space_wrapped a bool
336         (CutSelection): dont declare int i until we have to.
337         (alphaCounter): return a char const *.
338
339 1999-10-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
340
341         * src/support/syscall.C (Systemcalls::kill): 
342           src/support/filetools.C (PutEnv, PutEnvPath): 
343           src/lyx_cb.C (addNewlineAndDepth): 
344           src/FontInfo.C (FontInfo::resize): condition some #warning
345         directives with WITH_WARNINGS.
346         
347
348 1999-10-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
349
350         * src/layout.[Ch] + several files: access to class variables
351         limited and made accessor functions instead a lot of code changed
352         becuase of this. Also instead of returning pointers often a const
353         reference is returned instead.
354         
355         * src/form1.C (create_form_Figure): added a couple fo "no-c-format"
356
357         * src/Makefile.am (dist-hook): added used to remove the CVS from
358         cheaders upon creating a dist
359         (EXTRA_DIST): added cheaders
360
361         * src/support/lstrings.C (tostr(char)): fix it to handle param as
362         a character not as a small integer. 
363
364         * src/support/lyxstring.C (find): removed Assert and added i >=
365         rep->sz to the first if.
366
367 1999-10-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
368
369         * src/layout.[Ch] src/BufferView.C src/LaTeXFeatures.C
370         src/LyXView.C src/buffer.C src/bufferparams.C
371         src/lyx_cb.C src/lyxfunc.C src/paragraph.C src/text.C 
372         src/text2.C src/insets/insetinclude.C:
373         lyxlayout renamed to textclasslist.
374
375         * src/layout.C: some lyxerr changes.
376
377         * src/layout.[Ch] (LyXLayout::Read): changed second paramter to
378         LyXTextClass. rewrote LT_COPYSTYLE, rewrote LT_OBSOLETEDBY
379         (LyXLayoutList): removed all traces of this class.
380         (LyXTextClass::Read): rewrote LT_STYLE
381         (LyXTextClass::hasLayout): new function
382         (LyXTextClass::GetLayout): rewritten to return an iterator + has
383         both const and nonconst version.
384         (LyXTextClass::delete_layout): new function.
385         (LyXTextClassList::Style): bug fix. do the right thing if layout
386         is to big.
387         (LyXTextClassList::NumberOfLayout): new acces to layoutlist.
388         (LyXTextClassList::NameOfLayout): ditto 
389         (LyXTextClassList::Load): ditto
390
391         * src/buffer.C (makeLaTeXFile): new access to layoutlist
392
393         * src/LaTeXFeatures.C (getTClassPreamble): new access to layoutlist
394
395         * src/LyXAction.C (LookupFunc): added a workaround for sun
396         compiler, on the other hand...we don't know if the current code
397         compiles on sun at all...
398
399         * src/support/filetools.C (CleanupPath): subst fix
400
401         * src/insets/insetbib.C (delDatabase): subst fix, this looks
402         _really_ weird.
403
404         * src/support/filetools.C (PutEnvPath): subst fix, how come nobody
405         complained about this one?
406
407         * src/insets/insetinclude.C (Latex): subst fix
408
409         * src/insets/insetbib.C (getKeys): subst fix
410
411         * src/LyXSendto.C (SendtoApplyCB): subst fix
412
413         * src/lyx_main.C (init): subst fix
414
415         * src/layout.C (Read): subst fix
416
417         * src/lyx_sendfax_main.C (button_send): subst fix
418
419         * src/buffer.C (RoffAsciiTable): subst fix
420
421         * src/lyx_cb.C (MenuFax): subst fix
422         (PrintApplyCB): subst fix
423
424 1999-10-26  Juergen Vigna  <jug@sad.it>
425
426         * src/table.C (TexEndOfCell) + (DocBookEndOfCell): removed some #if 0
427
428         (Read): Cleaned up this code so now we read only format vestion >= 5
429
430 1999-10-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
431
432         * src/support/filetools.C (PutEnvPath): subst fix for EMX, how
433         come nobody has complained about this one?
434
435         * src/insets/insetinclude.C (Latex): subst fix
436
437         * src/insets/insetbib.C (getKeys): subst fix
438
439         * src/lyx_main.C (init): subst fix
440
441         * src/layout.C (Read): subst fix
442
443         * src/buffer.C (RoffAsciiTable): subst fix
444
445         * src/lyx_cb.C (MenuFax): subst fix.
446
447         * src/layout.[hC] + some other files: rewrote to use
448         std::container to store textclasses and layouts in.
449         Simplified, removed a lot of code. Make all classes
450         assignable. Further simplifications and review of type
451         use still to be one. 
452
453         * src/menus.C (ShowFileMenu/ShowFileMenu2): Use the iterators from
454         lastfiles to create the lastfiles partr of the menu.
455
456         * src/lastfiles.[Ch]: rewritten to use deque to store the
457         lastfiles in. Uses fstream for reading and writing. Simplifies
458         code.
459
460         * src/support/syscall.C: remove explicit cast.
461
462         * src/BufferView.C (CursorToggleCB): removed code snippets that
463         were commented out.
464         use explicat C++ style casts instead of C style casts. also use
465         u_vdata instea of passing pointers in longs.
466
467         * src/PaperLayout.C: removed code snippets that were commented out.
468
469         * src/lyx_gui_misc.C: removed code snippets that were commented out. 
470
471         * src/lyx_main.C: removed code snippets that wer commented out.
472
473         * src/paragraph.C: removed code snippets that were commented out.
474
475         * src/lyxvc.C (logClose): use static_cast
476         (logUpdate): ditto
477         (viewLog): remove explicit cast to void*
478         (showLog): removed old commented code
479
480         * src/menus.C: use static_cast instead of C style casts. use
481         u_vdata instead of u_ldata. remove explicit cast to (long) for
482         pointers. Removed old code that was commented out.
483
484         * src/insets/inset.C: removed old commented func
485
486         * src/insets/insetref.C (InsetRef): removed old code that had been
487         commented out for a long time.
488         (Edit): ditto
489         (escape): removed C style cast
490
491         * src/insets/insetlatexaccent.C (Draw): removed old commented code
492
493         * src/insets/insetlatex.C (Draw): removed old commented code
494         (Read): rewritten to use string
495
496         * src/insets/insetlabel.C (escape): removed C style cast
497
498         * src/insets/insetindex.h: removed vdata and ldata from FD_index_form
499
500         * src/insets/insetindex.C: use static_cast and u_vdata, removed
501         old commented code.
502
503         * src/insets/insetinclude.h: removed a couple of stupid bools
504
505         * src/insets/insetinclude.C (include_cb): use static_cast and u_data.
506         (Clone): remove C style cast
507         (getKeys): changed list to lst because of std::list
508
509         * src/insets/inseterror.C (Draw): removed som old commented code.
510
511         * src/insets/insetcommand.C (Draw): removed some old commented code.
512
513         * src/insets/insetbib.C (bibitem_cb): removed code that has been
514         commented out forever.
515         (bibitem_cb): use static_cast instead of C style cast
516         use of vdata changed to u_vdata.
517
518         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forward the data
519         parameter.
520         (CloseUrlCB): use static_cast instead of C style cast.
521         (CloseUrlCB): added a fl_free form...it seemed to be missing.
522
523         * src/insets/insetinfo.C (Edit): pass object in u_vdata instead
524         (C_InsetInfo_CloseInfoCB): forward the ob parameter
525         (CloseInfoCB): static_cast from ob->u_vdata instead.
526         (Edit): removed bogus arg from fl_set_object_shortcut, set to 1
527         instead. 
528
529         * src/insets/inseterror.C (Edit): pass object in u_vdata instead
530         (C_InsetError_CloseErrorCB): forward the ob parameter
531         (CloseErrorCB): static_cast from ob->u_vdata instead.
532
533         * src/vspace.h: include LString.h since we use string in this class.
534
535         * src/vspace.C (lyx_advance): changed name from advance because of
536         nameclash with stl. And since we cannot use namespaces yet...I
537         used a lyx_ prefix instead. Expect this to change when we begin
538         using namespaces.
539
540         * src/BufferView.[Ch] (BufferView::~BufferView): removed 
541
542         * src/BackStack.h: rewrote to use std::stack. made BackStackItem
543         and removed now defunct constructor and deconstructor.
544
545         * src/BufferView.h: have backstack as a object not as a pointer.
546         removed initialization from constructor. added include for BackStack 
547
548         * development/lyx.spec.in (%build): add CFLAGS also.
549
550         * src/screen.C (drawFrame): removed another warning.
551
552 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
553
554         * renamed WHATSNEW to NEWS (usual GNU style), CHANGES to
555         OLD-CHANGES (not used anymore) and modified INSTALL, INSTALL.OS2,
556         README and ANNOUNCE a bit for the next release. More work is
557         needed, of course.
558
559         * src/paragraph.C (SimpleTeXBlanks): spaces are automatically made
560         unbreakable if we are in freespacing mode (LyX-Code), but not in
561         latex mode.
562
563 1999-10-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
564
565         * src/BackStack.h: fixed initialization order in constructor
566
567         * Makefile.am (MAINTAINERCLEANFILES): removed po/POTFILES.in
568
569         * acinclude.m4 (VERSION): new rules for when a version is
570         development, added also a variable for prerelease.
571         (warnings): we set with_warnings=yes for prereleases
572         (lyx_opt): prereleases compile with same optimization as development 
573         (CXXFLAGS): only use pedantic if we are a development version 
574
575         * src/BufferView.C (restorePosition): don't do anything if the
576         backstack is empty.
577
578         * src/BackStack.h: added member empty, use this to test if there
579         is anything to pop...
580
581 1999-10-25  Juergen Vigna  <jug@sad.it>
582
583         * forms/form1.fd +
584         * forms/layout_forms.fd +
585         * forms/latexoptions.fd +
586         * lyx.fd: changed for various form resize issues
587
588         * src/mathed/math_panel.C +
589         * src/insets/inseterror.C +
590         * src/insets/insetinfo.C +
591         * src/insets/inseturl.C +
592         * src/insets/inseturl.h +
593         * src/LaTeXLog.C +
594         * src/LyXSendto.C +
595         * src/PaperLayout.C +
596         * src/ParagraphExtra.C +
597         * src/TableLayout.C +
598         * src/form1.C +
599         * src/layout_forms.C +
600         * src/lyx.C +
601         * src/lyx_cb.C +
602         * src/lyx_gui.C +
603         * src/lyxfr0.C +
604         * src/lyxfunc.C +
605         * src/lyxvc.C +
606         * src/menus.C: fixed various resize issues. So now forms can be
607         resized savely or not be resized at all.
608         
609         * forms/form_url.fd +
610         * src/insets/form_url.[Ch]: added because it's cleaner and easier
611         to modify IMO.
612
613         * src/insets/Makefile.am: added files form_url.[Ch]
614         
615 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
616
617         * INSTALL: it is now possible to compile LyX with digital C++ 6.1
618         (and presumably 6.2).
619
620         * src/{BufferView,LyXView,combox,filedlg,intl,lyxserver,lyxvc,
621         menus,minibuffer,toolbar}.{C,h}: added C_xxx wrappers around
622         remaining static member callbacks. 
623
624         * src/lyxfunc.C (Dispatch): Use _() instead of N_() fot minibuffer
625         messages. 
626
627         * src/support/lyxstring.h: declare struct Srep as friend of
628         lyxstring, since DEC cxx complains otherwise.
629
630 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
631
632 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
633
634         * src/LaTeX.C (run): made run_bibtex also depend on files with
635         extension ".bst"
636         (runBibTeX): added scans for "\\bibstyle", now also ".bst" files
637         are put into the dependency file.
638
639         * src/spellchecker.C (create_ispell_pipe): removed old #warning,
640         the code has shown itself to work
641         (create_ispell_pipe): removed another warning, added a comment
642         instead. 
643
644         * src/minibuffer.C (ExecutingCB): removed code that has been
645         commented out a long time
646
647         * src/lyxfunc.C (processKeyEvent): removed some very old commented
648         out code + a warning.
649
650         * src/support/lyxstring.h: comment out the three private
651         operators, when compiling with string ansi conforming compilers
652         they make problems.
653
654         * src/mathed/math_symbols.C (AddBitmap): change 6th arg to be
655         unsigned char *.
656         (pixmapFromBitmapData): change type of bdata to be unsigned char *
657         (pixmapFromBitmapData): add a reinterpret_cast in the call to
658         XCreateImage
659
660         * src/mathed/math_panel.h: change 6th arg to AddBitmap to be
661         unsigned char *
662
663         * src/mathed/math_panel.C (create_math_panel): remove explicit
664         casts
665
666         * src/bmtable.h: change last paramter to fl_set_bmtable_data to be
667         unsigned char *.
668
669         * src/bmtable.C (struct BMTABLE_SPEC): make bdata unsigned char *
670         (draw_bitmaptable): add a reinterpret_cast to sp->bdata in the call
671         to XCreatePixmapFromBitmapData
672         (fl_set_bmtable_data): change the last argument to be unsigned
673         char *
674         (fl_set_bmtable_file): change bdata to unsinged char *, change bw
675         and bh to be unsigned int, remove explicit casts in call to
676         XReadBitmapFileData.
677
678         * images/arrows.xbm: made the arrays unsigned char *
679         * images/varsz.xbm: ditto
680         * images/misc.xbm: ditto
681         * images/greek.xbm: ditto
682         * images/dots.xbm: ditto
683         * images/brel.xbm: ditto
684         * images/bop.xbm: ditto
685
686         * Makefile.am (MAINTAINERCLEANFILES): added po/POTFILES.in
687
688         * acinclude.m4 (LYX_GXX_STRENGHT_REDUCE): removed. 
689         (LYX_PROG_CXX): added -pedantic to g++ compile options when
690         with-warnings, removed the __STRING_ANSI__ hack, seems to not be
691         needed. 
692         (LYX_CXX_CHEADERS): added <clocale> to the test. 
693
694 1999-10-23  Lars Gullik Bjønnes  <larsbj@lyx.org>
695
696         * src/lyx_cb.C (addNewlineAndDepth): changed to use string::append.
697
698         * src/support/lyxstring.C (append): fixed something that must be a
699         bug, rep->assign was used instead of rep->append.
700
701         * src/support/Makefile.am (libsupport_a_SOURCES): added LIstream.h
702         and LOstream.h
703
704         * src/lyxfunc.C (processKeyEvent): removed faulty line that made
705         lyx insert double chars. Fix spotted by Kayvan.
706
707 1999-10-23  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
708
709         * Fixed the tth support. I messed up with the Emacs patch apply feature
710         and omitted the changes in lyxrc.C.
711
712 1999-10-22  Juergen Vigna  <jug@sad.it>
713
714         * src/insets/figinset.C (CallbackFig): Just changed the defines a bit.
715
716         * src/lyx_cb.C (MenuInsertRef) + 
717         * src/lyx_gui.C (create_forms): Inserted fl_set_form_minsize so that
718         the form cannot be resized under it limits (fixes a segfault)
719         
720         * src/lyx.C (create_form_form_ref) +
721         * forms/lyx.fd: Changed Gravity on name input field so that it is
722         resized correctly.
723
724 1999-10-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
725
726         * configure.in: use LYX_CXX_STL_MODERN_STREAMS; check for headers
727         <ostream> and <istream>.
728         
729         * acinclude.m4 (LYX_CXX_STL_MODERN_STREAMS): new test. Checks
730         whether <fstream> provides the latest standard features, or if we
731         have an oldstyle library (like in egcs).
732         (LYX_CXX_STL_STRING): fix the test.
733
734         * src/support/DebugStream.{C,h}: use L{I,O}stream.h and condition the
735         code on MODERN_STL_STREAM.
736
737         * src/support/lyxstring.h: use L{I,O}stream.h.
738
739         * src/support/L{I,O}stream.h: new files, designed to setup
740         correctly streams for our use
741           - includes the right header depending on STL capabilities
742           - puts std::ostream and std::endl (for LOStream.h) or
743           std::istream (LIStream.h) in toplevel namespace.
744
745 1999-10-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
746
747         * src/LaTeX.C (run): added a check in 0 sumchange so that if it
748         was a bib file that had been changed we ensure that bibtex is run.
749         (runBibTeX): enhanced to extract the names of the bib files and
750         getting their absolute path and enter them into the dep file.
751         (findtexfile): static func that is used to look for tex-files,
752         checks for absolute patchs and tries also with kpsewhich.
753         Alternative ways of finding the correct files are wanted. Will
754         probably be moved.
755         (do_popen): function that runs a command using popen and returns
756         the whole output of that command in a string. Should be moved to
757         somewhere else.
758
759         * src/DepTable.[Ch] (extchanged): new function that returns true if a
760         file with extension ext has changed.
761
762         * src/insets/figinset.C: added ifdef guards around the fl_free
763         code that jug commented out. Now it is commented out when
764         compiling with XForms == 0.89.
765
766         * src/support/lyxstring.C: moved the definition of lyxstring::Srep
767         to lyxstring.C, and only keep a forward declaration in
768         lyxstring.h. Simplifies the header file a bit and should help a
769         bit on compile time too. Also changes to Srep will not mandate a
770         recompile of code just using string.
771         (~lyxstring): definition moved here since it uses srep.
772         (size): definition moved here since it uses srep.
773
774         * src/support/lyxstring.h: removed a couple of "inline" that should
775         not be there.
776
777 1999-10-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
778
779         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forgot to pass
780         the 'ob' argument.
781
782 1999-10-21  Juergen Vigna  <jug@sad.it>
783
784         * src/table.C (SetPWidth): Just a small fix so the alignment is not
785         set to left if I just remove the width entry (or it is empty).
786
787         * src/text2.C (SetCursorIntern): Fixed a bug calculating to use wrong
788         paragraph when having dummy paragraphs.
789
790 1999-10-20  Juergen Vigna  <jug@sad.it>
791
792         * src/insets/figinset.C: just commented some fl_free_form calls
793         and added warnings so that this calls should be activated later
794         again. This avoids for now a segfault, but we have a memory leak!
795
796         * src/lyxfunc.C (processKeyEvent) (Dispatch): changed
797         'const char * argument' to 'string argument', this should
798         fix some Asserts() in lyxstring.C.
799
800         * src/lyxfunc.h: Removed the function argAsString(const char *)
801         as it is not used anymore.
802
803 1999-10-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
804
805         * src/support/lyxstring.C (getline): reads now _all_ chars. uses
806         get instead of >>
807
808         * src/Literate.h: some funcs moved from public to private to make
809         interface clearer. Unneeded args removed.
810
811         * src/Literate.C (scanLiterateLogFile): rewritten to use iostream
812         instead of lyxlex.
813         (scanBuildLogFile): ditto
814
815         * src/LaTeX.C (scanLogFile): merged LaTeX Error handling into
816         normal TeX Error. Still room for improvement.
817
818         * src/LaTeX.[Ch]: removed scanError. Wrong place and not needed.
819
820         * src/buffer.C (insertErrors): changes to make the error
821         desctription show properly.
822
823         * src/LaTeX.C (deplog): removed the test for file in lyx doc dir.
824         could never happen
825
826         * src/support/lyxstring.C (helper): changed to use
827         sizeof(object->rep->ref).
828         (operator>>): changed to use a pointer instead.
829
830         * src/support/lyxstring.h: changed const reference & to value_type
831         const & lets see if that helps.
832
833 1999-10-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
834
835         * Makefile.am (rpmdist): fixed to have non static package and
836         verison.
837
838         * src/support/lyxstring.C: removed the compilation guards
839
840         * src/vspace.C (nextToken): use i + 1  instead of ++i. Maks things
841         a bit clearer.
842
843         * src/support/Makefile.am (LYXSTRING): bruker USE_LYXSTRING for
844         conditional compile of lyxstring.Ch
845
846         * acinclude.m4 (LYX_CXX_STL_STRING): new and improved, still a
847         stupid check, but it is a lot better than the bastring hack. 
848         (LYX_CXX_STL_STRING): bruker nå AM_CONDITIONAL(USE_LYXSTRING  
849
850         * several files: changed string::erase into string::clear. Not
851         really needed.
852         
853         * src/chset.C (encodeString): use a char temporary instead
854
855         * src/table.C (TexEndOfCell): added tostr around
856         column_of_cell(fcell+i)+1 and around right_column_of_cell(fcell+i)+1
857         (TexEndOfCell): ditto
858         (TexEndOfCell): ditto
859         (TexEndOfCell): ditto
860         (DocBookEndOfCell): ditto
861         (DocBookEndOfCell): ditto
862         (DocBookEndOfCell): ditto
863         (DocBookEndOfCell): ditto
864
865         * src/paragraph.C (TeXEnvironment): added tostr around foot_count -1
866
867         * src/lyxfr1.C (SearchReplaceAllCB): added tostr around replace_count
868
869         * src/lyx_cb.C (MenuRunLaTeX): added tostr around ret
870         (MenuBuildProg): added tostr around ret
871         (MenuRunChktex): added tostr around ret
872         (DocumentApplyCB): added tostr around ret
873
874         * src/chset.C (encodeString): added tostr around t->ic
875
876         * src/buffer.C (makeLaTeXFile): added tostr around secnumdepth
877         (makeLaTeXFile): added tostr around tocdepth
878         (makeLaTeXFile): added tostr around ftcound - 1
879
880         * src/insets/insetbib.C (setCounter): added tostr around counter.
881
882         * src/support/lyxstring.h: added an operator+=(int) to catch more
883         mistakes. 
884
885         * src/support/lyxstring.C (lyxstring): We DON'T allow NULL pointers.
886         (lyxstring): We DON'T allow NULL pointers.
887
888 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
889
890         * src/mathed/math_macro.C (MathMacroArgument::Write,
891         MathMacroTemplate::WriteDef): add tostr() around macro arg numbers
892         when writing them out.
893
894         * src/LString.C: remove, since it is not used anymore.
895         
896         * src/support/lyxstring.C: condition the content to
897         USE_INCLUDED_STRING macro.
898
899         * src/mathed/math_symbols.C, src/support/lstrings.C,
900         src/support/lyxstring.C: add `using' directive to specify what
901         we need in <algorithm>. I do not think that we need to
902         conditionalize this, but any thought is appreciated.
903
904         * many files: change all callback functions to "C" linkage
905         functions to please strict C++ compilers like DEC cxx 6.1 in mode
906         strict_ansi. Those who were static are now global. 
907             The case of callbacks which are static class members is
908         trickier, since we have to make C wrappers around them (see
909         InsetError, InsetInfo and InsetUrl). The same holds for friends. I
910         did not finish this yet, since it defeats the purpose of
911         encapsulation, and I am not sure what the best route is.
912
913 1999-10-19  Juergen Vigna  <jug@sad.it>
914
915         * src/support/lyxstring.C (lyxstring): we permit to have a null
916         pointer as assignment value and just don't assign it.
917
918         * src/vspace.C (nextToken): corrected this function substituting
919         find_first(_not)_of with find_last_of.
920
921         * src/TableLayout.C (UpdateLayoutTable) (TableOptionsCB)
922                 (TableOptCloseCB) (TableSpeCloseCB):
923         inserted fl_set_focus call for problem with fl_hide_form() in
924         xforms-0.89.
925
926 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
927
928         * src/lyx_cb.C (LayoutsCB): fix bug where int was added to a
929         string. 
930
931 1999-10-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
932
933         * src/lyxrc.C (Read): RC_PRINTEXSTRAOPTIONS now uses
934         LyXLex::next() and not eatline() to get its argument.
935
936 1999-10-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
937
938         * src/DepTable.[Ch]: rewritten to store the dependencies in a map
939         instead, use fstreams for io of the depfile, removed unneeded
940         functions and variables. 
941
942         * src/LaTeX.[Ch] (class TeXErrors): rewrote to store the errors in a
943         vector instead, removed all functions and variables that is not in
944         use.
945
946 1999-10-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
947
948         * src/buffer.C (insertErrors): use new interface to TeXError
949
950         * Makefile.am (rpmdist): added a rpmdist target
951
952         * lib/reLyX/Makefile.am: added RelyxFigure.pm and Verbatim.pm as
953         per Kayvan's instructions.
954
955 1999-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
956
957         * src/Makefile.am: add a definition for localedir, so that locales
958         are found after installation (Kayvan)
959
960 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
961
962         * development/.cvsignore: new file.
963
964 1999-10-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
965
966         * acinclude.m4 (LYX_CXX_CHEADERS): New macro. Checks whether the
967         C++ compiler provides wrappers for C headers and use our alternate
968         version otherwise.
969
970         * configure.in: use LYX_CXX_CHEADERS.
971
972         * src/cheader/: new directory, populated with cname headers from
973         libstdc++-2.8.1. They are a bit old, but probably good enough for
974         what we want (support compilers who lack them).
975         
976         * src/insets/Makefile.am, src/mathed/Makefile.am: remove src/support
977         from includes. It turns out is was stupid.
978  
979 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
980
981         * lib/Makefile.am (install-data-local): forgot a ';'
982         (install-data-local): forgot a '\'
983         (libinstalldirs): needed after all. reintroduced.
984
985 1999-10-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
986
987         * configure.in (AC_OUTPUT): added lyx.spec
988
989         * development/lyx.spec: removed file
990
991         * development/lyx.spec.in: new file
992
993         * po/*.po: merged with lyx.pot becuase of make distcheck
994         
995         * lib/Makefile.am (dist-hook): added dist-hook so that
996         documentation files will be included when doing a make
997         dist/distdir/distcheck. Requires cvs export -r HEAD lyxdoc to run.
998         (pkgdata_SCRIPTS): added configure.cmd for now, we can use som
999         conditional later.
1000         more: tried to make install do the right thing, exclude CVS dirs
1001         etc.
1002
1003         * src/LaTeXLog.C (ShowLatexLog): reordered som statements so that
1004         Path would fit in more nicely.
1005
1006         * all files that used to use pathstack: uses now Path instead.
1007         This change was a lot easier than expected.
1008         
1009         * src/support/path.h: new file
1010
1011         * src/support/Makefile.am (libsupport_a_SOURCES): added path.h
1012
1013         * src/Makefile.am (lyx_SOURCES): removed pathstack.[Ch]
1014
1015         * src/support/lyxstring.C (getline): Default arg was given for
1016         para 3. removed.
1017
1018         * Configure.cmd: removed file 
1019
1020 1999-10-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1021
1022         * src/support/DebugStream.[Ch]: remove the explicit std:: before
1023         streams classes and types, add the proper 'using' statements when
1024         MODERN_STL is defined.
1025         
1026         * src/debug.h: move the << operator definition after the inclusion
1027         of DebugStream.h
1028
1029         * src/support/filetools.C: include "LAssert.h", which is needed
1030         later. 
1031
1032         * src/insets/Makefile.am, src/mathed/Makefile.am: add src/support
1033         to includes. 
1034
1035         * src/lyxfont.h, src/commandtags.h, src/mathed/math_defs.h:
1036         include "debug.h" to define a proper ostream.
1037
1038 1999-10-12  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
1039
1040         * src/sys*: Cleaned up the Systemcall stuff a bit. Added "kill(int)"
1041           method to the SystemCall class which can kill a process, but it's
1042           not fully implemented yet.
1043
1044         * src/*.C: Changed Systemcalls::Startscript() to startscript()
1045
1046         * src/support/FileInfo.h: Better documentation  
1047
1048         * src/lyxfunc.C: Added support for buffer-export html
1049         
1050         * src/menus.C: Added Export->As HTML...
1051         
1052         * lib/bind/*.bind: Added short-cut for buffer-export html
1053
1054         * src/lyxrc.*: Added support for new \tth_command
1055         
1056         * lib/lyxrc.example: Added stuff for new \tth_command
1057
1058 1999-10-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
1059
1060         * lib/Makefile.am (IMAGES): removed images/README
1061         (pkgdata_SCRIPTS): use this instead of bin_SCRIPTS to that it
1062         installes in correct place. Check permisions is installed
1063         correctly.
1064
1065         * src/LaTeX.C: some no-op changes moved declaration of some
1066         variables around.
1067
1068         * src/LaTeX.h (LATEX_H): changed include guard name
1069
1070 1999-10-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1071
1072         * lib/reLyX/Makefile.am: install noweb2lyx.
1073
1074         * lib/Makefile.am: install configure. 
1075
1076         * lib/reLyX/configure.in: declare a config aux dir; set package
1077         name to lyx (not sure what the best solution is); generate noweb2lyx.
1078
1079         * lib/layouts/egs.layout: fix the bibliography layout.
1080
1081 1999-10-08  Jürgen Vigna <jug@sad.it>
1082
1083         * src/support/filetools.C (FileOpenSearch): Fixed a bug where
1084         when in the PATH was something like /usr/bin;;/bin (note: the ;;)
1085         it returned without continuing to search the path.
1086         
1087 1999-10-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
1088
1089         * src/insets/insetquotes.C (Draw): Simplified a gread deal. This
1090         also fixes a bug. It is not allowed to do tricks with std::strings
1091         like: string a("hei"); &a[e]; this will not give what you
1092         think... Any reason for the complexity in this func?
1093
1094 1999-10-06  Asger Alstrup Nielsen  <alstrup@diku.dk>
1095
1096         * Updated README and INSTALL a bit, mostly to check that my
1097         CVS rights are correctly set up.
1098
1099 1999-10-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
1100
1101         * src/support/lyxstring.C (helper): removed bogus Assert. strlen
1102         does not allow '\0' chars but lyxstring and std::string does.
1103
1104 1999-10-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
1105
1106         * autogen.sh (AUTOCONF): let the autogen script create the
1107         POTFILES.in file too. POTFILES.in should perhaps now not be
1108         included in the cvs module.
1109
1110         * some more files changed to use C++ includes instead of C ones.
1111
1112         * src/filedlg.C (Reread): fixed a bug wrt Time. It was appended
1113         not assigned.
1114         (Reread): added tostr to nlink. buggy output otherwise.
1115         (Reread): added a string() around szMode when assigning to Buffer,
1116         without this I got a log of garbled info strings.
1117
1118         * acconfig.h: commented out the PTR_AS_INT macros. They should not
1119         be needed.
1120
1121         * I have added several ostream & operator<<(ostream &, some_type)
1122         functions. This has been done to avoid casting and warnings when
1123         outputting enums to lyxerr. This as thus eliminated a lot of
1124         explicit casts and has made the code clearer. Among the enums
1125         affected: kb_action, InsetLatexAccent::ACCENT_TYPE, a couple of
1126         mathed enums, some font enum the Debug::type enum. 
1127
1128         * src/support/lyxstring.h (clear): missing method. equivalent of
1129         erase(0, npos).
1130
1131         * all files that contained "stderr": rewrote constructs that used
1132         stderr to use lyxerr instead. (except bmtable)
1133
1134         * src/support/DebugStream.h (level): and the passed t with
1135         Debug::ANY to avoid spurious bits set.
1136
1137         * src/debug.h (Debug::type value): made it accept strings of the
1138         type INFO,INIT,KEY.
1139
1140         * configure.in (Check for programs): Added a check for kpsewhich,
1141         the latex generation will use this later to better the dicovery of
1142         all used files. 
1143
1144         * src/BufferView.C (create_view): we don't need to cast this to
1145         (void*) that is done automatically.
1146         (WorkAreaButtonPress): removed some dead code.
1147
1148 1999-10-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1149
1150         * src/minibuffer.C (Init): make sure that the "Welcome to LyX!"
1151         is not overwritten when translated (David Sua'rez de Lis).
1152
1153         * lib/CREDITS: Added David Sua'rez de Lis
1154
1155         * lib/reLyX/configure.in: setup LYX_DIR correctly in reLyX.
1156
1157         * src/bufferparams.C (BufferParams): default input encoding is now
1158         "latin1" 
1159
1160         * acinclude.m4 (cross_compiling): comment out macro
1161         LYX_GXX_STRENGTH_REDUCE. 
1162
1163         * acconfig.h: make sure that const is not defined (to empty) when
1164         we are compiling C++. Remove commented out code using SIZEOF_xx
1165         macros.
1166         
1167         * configure.in : move the test for const and inline as late as
1168         possible so that these C tests do not interefere with C++ ones.
1169         Remove the call to LYX_GXX_STRENGTH_REDUCE, since its usefulness
1170         has not been proven. 
1171
1172 1999-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1173
1174         * src/table.C (getDocBookAlign): remove bad default value for
1175         isColumn parameter.
1176
1177         * src/menus.C (ShowFileMenu): add a missing tostr() for lastfiles
1178         shortcut. 
1179         (ShowFileMenu2): ditto.
1180
1181         * lib/reLyX/.cvsignore: add configure and aclocal.m4 to the list
1182         of files to ignore.
1183
1184 1999-10-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
1185
1186         * Most files: finished the change from the old error code to use
1187         DebugStream for all lyxerr debugging. Only minor changes remain
1188         (e.g. the setting of debug levels using strings instead of number) 
1189
1190 1999-10-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
1191
1192         * src/layout.C (Add): Changed to use compare_no_case instead of
1193         strcasecmp.
1194
1195         * src/FontInfo.C: changed loop variable type too string::size_type.
1196
1197 1999-10-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
1198
1199         * src/support/Makefile.am: added -I${srcdir}/../ to INCLUDES and
1200         set ETAGS_ARGS to --c++ 
1201
1202 1999-09-30  Lars Gullik Bjønnes  <larsbj@lyx.org>
1203
1204         * src/table.C (DocBookEndOfCell): commented out two unused variables
1205
1206         * src/paragraph.C: commented out four unused variables. 
1207
1208         * src/lyx_cb.C (TocUpdateCB): moved variable i and added a new i
1209         insed a if clause with type string::size_type.
1210
1211         * src/lyxfr1.C (IsSearchStringInText): changed iSrch from int to
1212         string::size_type.
1213
1214         * src/lyxfunc.C (Dispatch): use string::size_type as loop variable.
1215
1216         * src/lyx_cb.C (ReplaceWord): use string::size_type as loop
1217         variable, also changed loop to go from 0 to lenght + 1, instead of
1218         -1 to length. This should be correct.
1219
1220         * src/LaTeX.C (scanError): use string::size_type as loop variable
1221         type.
1222
1223         * src/BufferView.C (WorkAreaButtonPress): moved #if 0 up two lines
1224         (l.896) since y_tmp and row was not used anyway.
1225
1226         * src/insets/insetref.C (escape): use string::size_type as loop
1227         variable type.
1228
1229         * src/insets/insetquotes.C (Width): use string::size_type as loop
1230         variable type.
1231         (Draw): use string::size_type as loop variable type.
1232
1233         * src/insets/insetlatexaccent.C (checkContents): use
1234         string::size_type as loop variable type.
1235
1236         * src/insets/insetlabel.C (escape): use string::size_type as loop
1237         variable type.
1238
1239         * src/insets/insetinfo.C: added an extern for current_view.
1240
1241         * src/insets/insetcommand.C (scanCommand): use string::size_type
1242         as loop variable type.
1243
1244         * most files: removed the RCS tags. With them we had to recompile
1245         a lot of files after a simple cvs commit. Also we have never used
1246         them for anything meaningful. 
1247
1248         * most files: tags-query-replace NULL 0. As adviced several plases
1249         we now use "0" instead of "NULL" in our code. 
1250
1251         * src/support/filetools.C (SpaceLess): use string::size_type as
1252         loop variable type.
1253
1254 1999-09-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
1255
1256         * src/paragraph.C: fixed up some more string stuff.
1257
1258 1999-09-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
1259
1260         * src/support/filetools.h: make modestr a std::string.
1261
1262         * src/filetools.C (GetEnv): made ch really const.
1263
1264         * src/lyxlib.h: removed the Maximum and Minimum inline functions,
1265         made code that used these use max/min from <algorithm> instead.
1266
1267         * changed several c library include files to their equivalent c++
1268         library include files. All is not changed yet.
1269
1270         * created a support subdir in src, put lyxstring and lstrings
1271         there + the extra files atexit, fileblock, strerror. Created
1272         Makefile.am. edited configure.in and src/Makefile.am to use this
1273         new subdir. More files moved to support.
1274
1275         * imported som of the functions from repository lyx, filetools
1276         
1277         * ran tags-query-replace on LString -> string, corrected the bogus
1278         cases. Tried to make use of lstrings.[hC], debugged a lot. There
1279         is still some errors in there. This is errors where too much or
1280         too litle get deleted from strings (string::erase, string::substr,
1281         string::replace), there can also be some off by one errors, or
1282         just plain wrong use of functions from lstrings. Viewing of quotes
1283         is wrong. 
1284
1285         * LyX is now running fairly well with string, but there are
1286         certainly some bugs yet (see above) also string is quite different
1287         from LString among others in that it does not allow null pointers
1288         passed in and will abort if it gets any.
1289         
1290         * Added the revtex4 files I forgot when setting up the repository.
1291
1292 1999-09-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
1293
1294         * All over: Tried to clean everything up so that only the files
1295           that we really need are included in the cvs repository.
1296         * Switched to use automake.
1297         * Generaton of reLyX is not perfect, LYX_DIR does not get substituted.
1298         * Install has not been checked.
1299
1300 1999-09-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
1301
1302         * po/pt.po: Three errors:
1303                l.533 and l.538 format specification error
1304                l. 402 duplicate entry, I just deleted it.
1305