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