]> git.lyx.org Git - features.git/blob - ChangeLog
Some cleanups to compile with dec cxx. We are not there yet though.
[features.git] / ChangeLog
1 1999-10-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2
3         * src/support/DebugStream.[Ch]: remove the explicit std:: before
4         streams classes and types, add the proper 'using' statements when
5         MODERN_STL is defined.
6         
7         * src/debug.h: move the << operator definition after the inclusion
8         of DebugStream.h
9
10         * src/support/filetools.C: include "LAssert.h", which is needed
11         later. 
12
13         * src/insets/Makefile.am, src/mathed/Makefile.am: add src/support
14         to includes. 
15
16         * src/lyxfont.h, src/commandtags.h, src/mathed/math_defs.h:
17         include "debug.h" to define a proper ostream.
18
19 1999-10-12  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
20
21         * src/sys*: Cleaned up the Systemcall stuff a bit. Added "kill(int)"
22           method to the SystemCall class which can kill a process, but it's
23           not fully implemented yet.
24
25         * src/*.C: Changed Systemcalls::Startscript() to startscript()
26
27         * src/support/FileInfo.h: Better documentation  
28
29         * src/lyxfunc.C: Added support for buffer-export html
30         
31         * src/menus.C: Added Export->As HTML...
32         
33         * lib/bind/*.bind: Added short-cut for buffer-export html
34
35         * src/lyxrc.*: Added support for new \tth_command
36         
37         * lib/lyxrc.example: Added stuff for new \tth_command
38
39 1999-10-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
40
41         * src/LaTeX.C: some no-op changes moved declaration of some
42         variables around.
43
44         * src/LaTeX.h (LATEX_H): changed include guard name
45
46 1999-10-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
47
48         * lib/reLyX/Makefile.am: install noweb2lyx.
49
50         * lib/Makefile.am: install configure. 
51
52         * lib/reLyX/configure.in: declare a config aux dir; set package
53         name to lyx (not sure what the best solution is); generate noweb2lyx.
54
55         * lib/layouts/egs.layout: fix the bibliography layout.
56
57 1999-10-08  Jürgen Vigna <jug@sad.it>
58
59         * src/support/filetools.C (FileOpenSearch): Fixed a bug where
60         when in the PATH was something like /usr/bin;;/bin (note: the ;;)
61         it returned without continuing to search the path.
62         
63 1999-10-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
64
65         * src/insets/insetquotes.C (Draw): Simplified a gread deal. This
66         also fixes a bug. It is not allowed to do tricks with std::strings
67         like: string a("hei"); &a[e]; this will not give what you
68         think... Any reason for the complexity in this func?
69
70 1999-10-06  Asger Alstrup Nielsen  <alstrup@diku.dk>
71
72         * Updated README and INSTALL a bit, mostly to check that my
73         CVS rights are correctly set up.
74
75 1999-10-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
76
77         * src/support/lyxstring.C (helper): removed bogus Assert. strlen
78         does not allow '\0' chars but lyxstring and std::string does.
79
80 1999-10-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
81
82         * autogen.sh (AUTOCONF): let the autogen script create the
83         POTFILES.in file too. POTFILES.in should perhaps now not be
84         included in the cvs module.
85
86         * some more files changed to use C++ includes instead of C ones.
87
88         * src/filedlg.C (Reread): fixed a bug wrt Time. It was appended
89         not assigned.
90         (Reread): added tostr to nlink. buggy output otherwise.
91         (Reread): added a string() around szMode when assigning to Buffer,
92         without this I got a log of garbled info strings.
93
94         * acconfig.h: commented out the PTR_AS_INT macros. They should not
95         be needed.
96
97         * I have added several ostream & operator<<(ostream &, some_type)
98         functions. This has been done to avoid casting and warnings when
99         outputting enums to lyxerr. This as thus eliminated a lot of
100         explicit casts and has made the code clearer. Among the enums
101         affected: kb_action, InsetLatexAccent::ACCENT_TYPE, a couple of
102         mathed enums, some font enum the Debug::type enum. 
103
104         * src/support/lyxstring.h (clear): missing method. equivalent of
105         erase(0, npos).
106
107         * all files that contained "stderr": rewrote constructs that used
108         stderr to use lyxerr instead. (except bmtable)
109
110         * src/support/DebugStream.h (level): and the passed t with
111         Debug::ANY to avoid spurious bits set.
112
113         * src/debug.h (Debug::type value): made it accept strings of the
114         type INFO,INIT,KEY.
115
116         * configure.in (Check for programs): Added a check for kpsewhich,
117         the latex generation will use this later to better the dicovery of
118         all used files. 
119
120         * src/BufferView.C (create_view): we don't need to cast this to
121         (void*) that is done automatically.
122         (WorkAreaButtonPress): removed some dead code.
123
124 1999-10-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
125
126         * src/minibuffer.C (Init): make sure that the "Welcome to LyX!"
127         is not overwritten when translated (David Sua'rez de Lis).
128
129         * lib/CREDITS: Added David Sua'rez de Lis
130
131         * lib/reLyX/configure.in: setup LYX_DIR correctly in reLyX.
132
133         * src/bufferparams.C (BufferParams): default input encoding is now
134         "latin1" 
135
136         * acinclude.m4 (cross_compiling): comment out macro
137         LYX_GXX_STRENGTH_REDUCE. 
138
139         * acconfig.h: make sure that const is not defined (to empty) when
140         we are compiling C++. Remove commented out code using SIZEOF_xx
141         macros.
142         
143         * configure.in : move the test for const and inline as late as
144         possible so that these C tests do not interefere with C++ ones.
145         Remove the call to LYX_GXX_STRENGTH_REDUCE, since its usefulness
146         has not been proven. 
147
148 1999-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
149
150         * src/table.C (getDocBookAlign): remove bad default value for
151         isColumn parameter.
152
153         * src/menus.C (ShowFileMenu): add a missing tostr() for lastfiles
154         shortcut. 
155         (ShowFileMenu2): ditto.
156
157         * lib/reLyX/.cvsignore: add configure and aclocal.m4 to the list
158         of files to ignore.
159
160 1999-10-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
161
162         * Most files: finished the change from the old error code to use
163         DebugStream for all lyxerr debugging. Only minor changes remain
164         (e.g. the setting of debug levels using strings instead of number) 
165
166 1999-10-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
167
168         * src/layout.C (Add): Changed to use compare_no_case instead of
169         strcasecmp.
170
171         * src/FontInfo.C: changed loop variable type too string::size_type.
172
173 1999-10-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
174
175         * src/support/Makefile.am: added -I${srcdir}/../ to INCLUDES and
176         set ETAGS_ARGS to --c++ 
177
178 1999-09-30  Lars Gullik Bjønnes  <larsbj@lyx.org>
179
180         * src/table.C (DocBookEndOfCell): commented out two unused variables
181
182         * src/paragraph.C: commented out four unused variables. 
183
184         * src/lyx_cb.C (TocUpdateCB): moved variable i and added a new i
185         insed a if clause with type string::size_type.
186
187         * src/lyxfr1.C (IsSearchStringInText): changed iSrch from int to
188         string::size_type.
189
190         * src/lyxfunc.C (Dispatch): use string::size_type as loop variable.
191
192         * src/lyx_cb.C (ReplaceWord): use string::size_type as loop
193         variable, also changed loop to go from 0 to lenght + 1, instead of
194         -1 to length. This should be correct.
195
196         * src/LaTeX.C (scanError): use string::size_type as loop variable
197         type.
198
199         * src/BufferView.C (WorkAreaButtonPress): moved #if 0 up two lines
200         (l.896) since y_tmp and row was not used anyway.
201
202         * src/insets/insetref.C (escape): use string::size_type as loop
203         variable type.
204
205         * src/insets/insetquotes.C (Width): use string::size_type as loop
206         variable type.
207         (Draw): use string::size_type as loop variable type.
208
209         * src/insets/insetlatexaccent.C (checkContents): use
210         string::size_type as loop variable type.
211
212         * src/insets/insetlabel.C (escape): use string::size_type as loop
213         variable type.
214
215         * src/insets/insetinfo.C: added an extern for current_view.
216
217         * src/insets/insetcommand.C (scanCommand): use string::size_type
218         as loop variable type.
219
220         * most files: removed the RCS tags. With them we had to recompile
221         a lot of files after a simple cvs commit. Also we have never used
222         them for anything meaningful. 
223
224         * most files: tags-query-replace NULL 0. As adviced several plases
225         we now use "0" instead of "NULL" in our code. 
226
227         * src/support/filetools.C (SpaceLess): use string::size_type as
228         loop variable type.
229
230 1999-09-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
231
232         * src/paragraph.C: fixed up some more string stuff.
233
234 1999-09-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
235
236         * src/support/filetools.h: make modestr a std::string.
237
238         * src/filetools.C (GetEnv): made ch really const.
239
240         * src/lyxlib.h: removed the Maximum and Minimum inline functions,
241         made code that used these use max/min from <algorithm> instead.
242
243         * changed several c library include files to their equivalent c++
244         library include files. All is not changed yet.
245
246         * created a support subdir in src, put lyxstring and lstrings
247         there + the extra files atexit, fileblock, strerror. Created
248         Makefile.am. edited configure.in and src/Makefile.am to use this
249         new subdir. More files moved to support.
250
251         * imported som of the functions from repository lyx, filetools
252         
253         * ran tags-query-replace on LString -> string, corrected the bogus
254         cases. Tried to make use of lstrings.[hC], debugged a lot. There
255         is still some errors in there. This is errors where too much or
256         too litle get deleted from strings (string::erase, string::substr,
257         string::replace), there can also be some off by one errors, or
258         just plain wrong use of functions from lstrings. Viewing of quotes
259         is wrong. 
260
261         * LyX is now running fairly well with string, but there are
262         certainly some bugs yet (see above) also string is quite different
263         from LString among others in that it does not allow null pointers
264         passed in and will abort if it gets any.
265         
266         * Added the revtex4 files I forgot when setting up the repository.
267
268 1999-09-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
269
270         * All over: Tried to clean everything up so that only the files
271           that we really need are included in the cvs repository.
272         * Switched to use automake.
273         * Generaton of reLyX is not perfect, LYX_DIR does not get substituted.
274         * Install has not been checked.
275
276 1999-09-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
277
278         * po/pt.po: Three errors:
279                l.533 and l.538 format specification error
280                l. 402 duplicate entry, I just deleted it.
281