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