Commit Graph

29527 Commits

Author SHA1 Message Date
Uwe Stöhr
97bac37aba Chinese Intro.lyx: replace TeX code by its LyX inset 2013-05-28 00:10:12 +02:00
Julien Rioux
aa475ea70c Initialize BibTeXInfo modifier to zero, always. 2013-05-26 19:43:05 +02:00
Julien Rioux
626a38a600 Add missing space in front of edition in generated bibentry. 2013-05-26 19:43:03 +02:00
Julien Rioux
5e030858e6 lyxpreview: Allow to find python scripts.
In particular, lilypond-book is just a python script. On windows,
we need to call the python interpreter, using the full path to
the script while being wary of spaces in the path.
2013-05-26 19:42:22 +02:00
Julien Rioux
3e5c9e51de Show insets as text in the formatted bibliography entry. 2013-05-26 19:39:10 +02:00
Julien Rioux
43893c16ca Update a bibitem label also when it is emptied.
It is valid for a label to be empty, but up to now the bibliography
information was not updated when a label was emptied.
2013-05-26 19:39:09 +02:00
Uwe Stöhr
a98a49bd94 A&A support: better compilation fix
- revert the previous layout change where inputenc was mentioned. This was not wrong but too intrusive for a change in branch
- mention that the aa class loads natbib to avoid compilation errors
- aa_sample.lyx: the aa package contains an outdated an customized version of natbib.sty. This file only woks with aa, but breaks the compilation of many other files on your system, therefore remove the bibliography and replace it by BibTeX; also clean up the preamble and add a note about the encoding
- aa.lyx: add a note about the encoding and set it in the document settings
2013-05-26 17:48:13 +02:00
Uwe Stöhr
bfa2829d47 Chinese Tutorial.lyx: backport a fix by Jürgen 2013-05-26 03:38:55 +02:00
Uwe Stöhr
03b93bb5bd aa.layout: fix compilation of the templates/aa.lyx
- aa already loads inputenc
- also add a required package
2013-05-26 03:34:09 +02:00
Uwe Stöhr
dd9c6364da UserGuide.lyx: finish the revision 2013-05-23 23:40:04 +02:00
Richard Heck
a832cd2842 ereg is deprecated. 2013-05-23 08:57:20 -04:00
Uwe Stöhr
ca34a9308f German UserGuide.lyx: some translations 2013-05-23 01:31:49 +02:00
Uwe Stöhr
8e6e4c28f3 UserGuide.lyx: backport recent changes to branch 2013-05-21 23:41:36 +02:00
Uwe Stöhr
807e346740 UserGuide.lyx: next revision step
- chapter A
(now only chapter B needs to be done and the revision is done)
2013-05-21 01:43:07 +02:00
Uwe Stöhr
edcdab9e2d UserGuide.lyx: next revision step 2013-05-20 17:53:06 +02:00
Uwe Stöhr
dd964ac38a UserGuide.lyx: next revision step
- sec. A.1 - A.2 and a few others
2013-05-20 03:13:32 +02:00
Uwe Stöhr
e18dc2f9f4 UserGuide.lyx: fix a few superfluous underlinings 2013-05-19 03:56:29 +02:00
Uwe Stöhr
a087ec9cc7 landslide.lyx: make it compilable with pdflatex 2013-05-19 03:55:41 +02:00
Uwe Stöhr
181d37663e AEA.layout: update file to fulfill submission guidelines
- the option draftmodes is optional and must not be hardcoded
- the same is for the harvard package
- some whitespace fixes
2013-05-18 20:46:26 +02:00
Uwe Stöhr
01fd11eb1e AEA.lyx: make the file compilable
- also updated its content to follow the current AEA submission guidelines
2013-05-18 20:33:39 +02:00
Uwe Stöhr
f1f1f162fa UserGuide.lyx: next revision step
sec. 6.13 - 6.18
2013-05-14 23:49:45 +02:00
Uwe Stöhr
d941debaed UserGuide.lyx, Math.lyx: backport recent changes 2013-05-14 21:24:20 +02:00
Richard Heck
4492a4a0f1 Fix bug #8666. Parts should have toclevel -1.
A lot of this involves removing toclevel tags. They got introduced
by the automatic update of some layout files to format 19.

(cherry picked from commit b9f48eb945)

Conflicts:

	lib/layouts/beamer.layout
	lib/layouts/memoir.layout
	lib/layouts/scrartcl.layout
	lib/layouts/stdsections.inc
2013-05-10 13:27:47 -04:00
Jean-Marc Lasgouttes
e1610a86c4 add support for automake 1.13
Do not use AM_PROG_MKDIR_P, which is obsolete. We use  the AC_* version
now, which requires autoconf>=2.59d. This also mean that we need to use
the variable MKDIR_P instead of mkdir_p.
2013-05-08 15:21:13 +02:00
Jean-Marc Lasgouttes
4d267e4f79 Fix bug #8627: Command line switches to change branch do not appear to work
Move the handling of branch-(de)activate(master) to Buffer. This code was moved to Bufferview in [3a03e71c/lyxgit] because a cursor was necessary to call Undo::recordUndoFullDocument(). However, it turns out that the undo code is already prepared to handle an empty cursor (and do nothing in this case).

Therefore we do that and move the branch code to Buffer where it belongs.

Note that there was a bug in the previous code that broke undo support: recordUndo should always be called _before_ doing any change.
2013-05-08 12:56:21 +02:00
Jean-Marc Lasgouttes
0d4bc37fe6 Fix bug #3199: change-next may leave empty lines behind
Using Cursor::setCursor or even BufferView::setCursor is often a bad
idea since it does not run DEPM. In this case (and other cases in
f&replace code) it is better to use BufferView::mouseSetCursor (which
should maybe be renamed...).
2013-05-08 12:28:56 +02:00
Jean-Marc Lasgouttes
0c1eb71448 Some potential bugs spotted by llvm/clang
src/TextClass.h
src/insets/InsetTabular.h

  Overloaded virtual method missing the 'const' qualifier

src/insets/InsetCommandParams.h

  Missing constructor (breaks compilation with llvm/clang)

src/frontends/qt4/GuiWorkArea.cpp

  Missing parenthesis: `+' has priority over `?:' (I do not know
  whether this has a visible effect).

src/mathed/InsetMathFont.cpp

  Use of == instead of = in mathmlize()
2013-05-08 12:08:56 +02:00
Pavel Sanda
699e334671 * cs/Tutorial.lyx 2013-05-07 19:05:41 -07:00
Uwe Stöhr
d44f22688b nn.po: updates from Ingar 2013-05-08 03:04:26 +02:00
Uwe Stöhr
cd84034b14 UserGuide.lyx: backport recent changes from master 2013-05-08 03:00:11 +02:00
Uwe Stöhr
ea1e3cd9ec R-S-statements.lyx: remove file
this file in only for master, somebody accidentally committed this to branch for Japanese
2013-05-08 02:59:30 +02:00
Uwe Stöhr
01a5c9533d ia.po: updates from Giovanni 2013-05-08 02:57:10 +02:00
Richard Heck
594dcd885a Default font for an InsetLayout should be to inherit everything.
Fixes bug #8610.
(cherry picked from commit 6e25ae3272)
2013-05-07 11:49:56 -04:00
Richard Heck
f599c9bc43 Remerge strings. 2013-05-07 11:33:52 -04:00
Richard Heck
e3875398c7 Don't try to show the status message if we are busy.
Intended to fix #8523.
(cherry picked from commit 6dac777dbc)
2013-05-07 11:32:04 -04:00
Richard Heck
da52958a3e Restore ANNOUNCE and status.20x. 2013-05-07 11:29:57 -04:00
Richard Heck
0499cde6ff Start development for 2.0.7. 2013-05-07 11:19:02 -04:00
Richard Heck
380f67e58e Remerge strings. 2013-04-29 11:57:36 -04:00
Richard Heck
17ace2cad3 Update ANNOUCE and NEWS for 2.0.6. 2013-04-29 11:56:01 -04:00
Richard Heck
c3d9775b54 Date etc for 2.0.6. 2013-04-29 11:50:50 -04:00
Richard Heck
8d6573d130 Properly quote command line arguments. Patch from JMarc. Fixes
bug #8648.
2013-04-29 10:00:27 -04:00
Uwe Stöhr
f7e0d2e566 UserGuide.lyx: fix an issue reported on the docs list 2013-04-29 00:53:05 +02:00
Uwe Stöhr
3bcb9186be UserGuide.lyx: fix 2 issues introduced with last commit 2013-04-29 00:40:44 +02:00
Uwe Stöhr
d37f64962b Merge branch '2.0.x' of git.lyx.org:lyx into 2.0.x 2013-04-29 00:20:49 +02:00
Uwe Stöhr
5116293e13 UserGuide.lyx: next revision step (chap. C) 2013-04-29 00:20:09 +02:00
Jean-Marc Lasgouttes
36e4d210d1 Fix bug #8633: change tracking: paragraph break is restored by undo
A recordUndo call was missing in this case.
2013-04-28 20:57:18 +02:00
Uwe Stöhr
72f32fe143 UserGuide.lyx: fix some mistakes introduced by the last commit 2013-04-28 05:39:07 +02:00
Uwe Stöhr
2e0bf3bbe0 UserGuide.lyx: next revision step (chap. 4, 5 and bibliography) 2013-04-28 04:56:13 +02:00
Uwe Stöhr
0c5a821e63 UserGuide.lyx: next revision step (sec. 3.8 and 3.9) 2013-04-27 21:23:42 +02:00
Uwe Stöhr
7d01a76368 French UserGuide.lyx: translations by Jean-Pierre 2013-04-27 19:35:39 +02:00