mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
updates and fixup of splash.lyx
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@303 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
3660343dc7
commit
ade5d85188
63
ChangeLog
63
ChangeLog
@ -1,3 +1,66 @@
|
|||||||
|
1999-11-10 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||||
|
|
||||||
|
* src/support/lyxstring.C (operator[] const): make it standard
|
||||||
|
conforming.
|
||||||
|
|
||||||
|
* src/minibuffer.C (Init): changed to reflect that more
|
||||||
|
information is given from the lyxvc and need not be provided here.
|
||||||
|
|
||||||
|
* src/lyxvc.[Ch]: rewrote to use the vc-backend.
|
||||||
|
|
||||||
|
* src/Makefile.am (lyx_SOURCES): add vc-backend.[Ch]
|
||||||
|
|
||||||
|
* src/LyXView.C (UpdateTimerCB): use static_cast
|
||||||
|
(KeyPressMask_raw_callback): ditto
|
||||||
|
|
||||||
|
* src/BufferView.[Ch]: name change _owner -> owner_ and _buffer ->
|
||||||
|
buffer_, a lot of changes because of this. currentBuffer() ->
|
||||||
|
buffer(), setBuffer(...) -> buffer(...), getOwner() -> owner(),
|
||||||
|
also changes to other files because of this.
|
||||||
|
|
||||||
|
1999-11-09 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||||
|
|
||||||
|
* src/vc-backend.[Ch]: new files. The backends for vc handling,
|
||||||
|
have no support for RCS and partial support for CVS, will be
|
||||||
|
improved later.
|
||||||
|
|
||||||
|
* src/insets/ several files: changes because of function name
|
||||||
|
changes in Bufferview and LyXView.
|
||||||
|
|
||||||
|
* src/mathed/math_symbols.C (math_insert_symbol): use static_cast
|
||||||
|
|
||||||
|
* src/support/LSubstring.[Ch]: new files. These implement a
|
||||||
|
Substring that can be very convenient to use. i.e. is this
|
||||||
|
possible:
|
||||||
|
string a = "Mary had a little sheep";
|
||||||
|
Substring(a, "sheep") = "lamb";
|
||||||
|
a is now "Mary has a little lamb".
|
||||||
|
|
||||||
|
* src/support/LRegex.[Ch]: a regex class that can be used to pick
|
||||||
|
out patterns and subpatterns of strings. It is used by LSubstring
|
||||||
|
and also by vc-backend.C
|
||||||
|
|
||||||
|
* src/support/lyxstring.C: went over all the assertions used and
|
||||||
|
tried to correct the wrong ones and flag which of them is required
|
||||||
|
by the standard. some bugs found because of this. Also removed a
|
||||||
|
couple of assertions.
|
||||||
|
|
||||||
|
* src/support/Makefile.am (libsupport_a_SOURCES): added
|
||||||
|
LSubstring.[Ch] and LRegex.[Ch]
|
||||||
|
|
||||||
|
* src/support/FileInfo.h: have struct stat buf as an object and
|
||||||
|
not a pointer to one, some changes because of this.
|
||||||
|
|
||||||
|
* src/LaTeXFeatures.C (getTClassPreamble): also use the
|
||||||
|
information in layout when addint he layouts preamble to the
|
||||||
|
textclass preamble.
|
||||||
|
|
||||||
|
* src/LaTeXFeatures.h: use a vector<bool> to store the layout
|
||||||
|
usage in.
|
||||||
|
|
||||||
|
* configure.in (CPPFLAGS): use AC_CHECK_FUNCS to check for XOpenIM
|
||||||
|
because of bug in OS/2.
|
||||||
|
|
||||||
1999-11-08 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
1999-11-08 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||||
|
|
||||||
* lib/layouts/lyxmacros.inc (lyxcode): set the font with
|
* lib/layouts/lyxmacros.inc (lyxcode): set the font with
|
||||||
|
@ -55,7 +55,7 @@ cat <<EOF > tmppot
|
|||||||
EOF
|
EOF
|
||||||
|
|
||||||
grep -E "_\(\".*\"\)" `find src -name \*.[hHC]` | \
|
grep -E "_\(\".*\"\)" `find src -name \*.[hHC]` | \
|
||||||
awk 'BEGIN {FS= ":"} {print $1}' | sort | uniq >> tmppot
|
awk 'BEGIN {FS= ":"} {print $1}' | sort -f | uniq >> tmppot
|
||||||
mv tmppot po/POTFILES.in
|
mv tmppot po/POTFILES.in
|
||||||
echo "done"
|
echo "done"
|
||||||
|
|
||||||
|
@ -121,7 +121,7 @@ LIBS="$X_PRE_LIBS $LIBS $X_LIBS -lX11 $X_EXTRA_LIBS"
|
|||||||
CPPFLAGS="$CPPFLAGS $X_CFLAGS"
|
CPPFLAGS="$CPPFLAGS $X_CFLAGS"
|
||||||
|
|
||||||
## Check whether X is new enough to handle the input method stuff
|
## Check whether X is new enough to handle the input method stuff
|
||||||
AC_CHECK_FUNC(XOpenIM)
|
AC_CHECK_FUNCS(XOpenIM)
|
||||||
|
|
||||||
### Check for xforms and xpm (only if X has been found).
|
### Check for xforms and xpm (only if X has been found).
|
||||||
if test "$have_x" = yes ; then
|
if test "$have_x" = yes ; then
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#This file was created by <karger> Fri Feb 26 14:30:20 1999
|
#This file was created by <larsbj> Tue Nov 9 04:47:40 1999
|
||||||
#LyX 1.0 (C) 1995-1998 Matthias Ettrich and the LyX Team
|
#LyX 1.0 (C) 1995-1999 Matthias Ettrich and the LyX Team
|
||||||
\lyxformat 2.15
|
\lyxformat 2.15
|
||||||
\textclass article
|
\textclass article
|
||||||
\language default
|
\language default
|
||||||
@ -20,7 +20,7 @@
|
|||||||
\quotes_language english
|
\quotes_language english
|
||||||
\quotes_times 2
|
\quotes_times 2
|
||||||
\papercolumns 1
|
\papercolumns 1
|
||||||
\papersides 1
|
\papersides 0
|
||||||
\paperpagestyle default
|
\paperpagestyle default
|
||||||
|
|
||||||
\layout Title
|
\layout Title
|
||||||
@ -36,7 +36,8 @@ LyX comes with excellent documentation---please use it! Start with the
|
|||||||
\bar under
|
\bar under
|
||||||
H
|
H
|
||||||
\bar default
|
\bar default
|
||||||
elp->
|
elp\SpecialChar \menuseparator
|
||||||
|
|
||||||
\bar under
|
\bar under
|
||||||
I
|
I
|
||||||
\bar default
|
\bar default
|
||||||
@ -49,7 +50,8 @@ ntroduction
|
|||||||
\bar under
|
\bar under
|
||||||
H
|
H
|
||||||
\bar default
|
\bar default
|
||||||
elp->
|
elp\SpecialChar \menuseparator
|
||||||
|
|
||||||
\bar under
|
\bar under
|
||||||
T
|
T
|
||||||
\bar default
|
\bar default
|
||||||
@ -83,7 +85,8 @@ The output from LyX looks great! Select
|
|||||||
\bar under
|
\bar under
|
||||||
F
|
F
|
||||||
\bar default
|
\bar default
|
||||||
ile->View
|
ile\SpecialChar \menuseparator
|
||||||
|
View
|
||||||
\protected_separator
|
\protected_separator
|
||||||
|
|
||||||
\bar under
|
\bar under
|
||||||
@ -125,7 +128,8 @@ lyxrc
|
|||||||
\bar under
|
\bar under
|
||||||
H
|
H
|
||||||
\bar default
|
\bar default
|
||||||
elp->
|
elp\SpecialChar \menuseparator
|
||||||
|
|
||||||
\bar under
|
\bar under
|
||||||
C
|
C
|
||||||
\bar default
|
\bar default
|
||||||
@ -136,7 +140,12 @@ ustomization
|
|||||||
|
|
||||||
The LyX home page is at
|
The LyX home page is at
|
||||||
\family typewriter
|
\family typewriter
|
||||||
www.lyx.org
|
|
||||||
|
\begin_inset LatexCommand \url{http://www.lyx.org/}
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
\family default
|
\family default
|
||||||
.
|
.
|
||||||
Get information about LyX, subscribe to the LyX mailing list(s), take the
|
Get information about LyX, subscribe to the LyX mailing list(s), take the
|
||||||
|
Loading…
Reference in New Issue
Block a user