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