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