forenr | 9 Feb 02:04
Favicon

r40715 - lyx-devel/trunk/po

Author: forenr
Date: Thu Feb  9 02:04:58 2012
New Revision: 40715
URL: http://www.lyx.org/trac/changeset/40715

Log:
Update it.po

Modified:
   lyx-devel/trunk/po/it.po

Modified: lyx-devel/trunk/po/it.po
==============================================================================
--- lyx-devel/trunk/po/it.po	Thu Feb  9 00:21:11 2012	(r40714)
+++ lyx-devel/trunk/po/it.po	Thu Feb  9 02:04:58 2012	(r40715)
 <at>  <at>  -6,8 +6,8  <at>  <at> 
 msgstr ""
 "Project-Id-Version: it\n"
 "Report-Msgid-Bugs-To: lyx-devel <at> lists.lyx.org\n"
-"POT-Creation-Date: 2011-10-29 19:24+0200\n"
-"PO-Revision-Date: 2011-10-29 19:37+0100\n"
+"POT-Creation-Date: 2012-02-09 00:33+0100\n"
+"PO-Revision-Date: 2012-02-09 01:55+0100\n"
 "Last-Translator: Enrico Forestieri <forenr <at> lyx.org>\n"
 "Language-Team: italiano <it <at> li.org>\n"
 "Language: it\n"
 <at>  <at>  -112,42 +112,54  <at>  <at> 
 msgstr "&Jurabib"
 
 #: src/frontends/qt4/ui/BiblioUi.ui:110
(Continue reading)

forenr | 9 Feb 00:21
Favicon

r40714 - lyx-devel/branches/BRANCH_2_0_X/po

Author: forenr
Date: Thu Feb  9 00:21:11 2012
New Revision: 40714
URL: http://www.lyx.org/trac/changeset/40714

Log:
Update it.po

Modified:
   lyx-devel/branches/BRANCH_2_0_X/po/it.po

Modified: lyx-devel/branches/BRANCH_2_0_X/po/it.po
==============================================================================
--- lyx-devel/branches/BRANCH_2_0_X/po/it.po	Tue Feb  7 15:56:16 2012	(r40713)
+++ lyx-devel/branches/BRANCH_2_0_X/po/it.po	Thu Feb  9 00:21:11 2012	(r40714)
 <at>  <at>  -7,7 +7,7  <at>  <at> 
 "Project-Id-Version: it\n"
 "Report-Msgid-Bugs-To: lyx-devel <at> lists.lyx.org\n"
 "POT-Creation-Date: 2012-01-31 09:56-0500\n"
-"PO-Revision-Date: 2012-01-22 19:00+0100\n"
+"PO-Revision-Date: 2012-02-09 00:20+0100\n"
 "Last-Translator: Enrico Forestieri <forenr <at> lyx.org>\n"
 "Language-Team: italiano <it <at> li.org>\n"
 "Language: it\n"
 <at>  <at>  -30,36 +30,48  <at>  <at> 
 msgid "Credits"
 msgstr "Ringraziamenti"
 
-#: src/frontends/qt4/ui/AboutUi.ui:80 lib/layouts/apa.layout:199
+#: src/frontends/qt4/ui/AboutUi.ui:80
(Continue reading)

lasgouttes | 7 Feb 15:56
Favicon

r40713 - lyx-devel/trunk/src

Author: lasgouttes
Date: Tue Feb  7 15:56:16 2012
New Revision: 40713
URL: http://www.lyx.org/trac/changeset/40713

Log:
Fix bug #6367: Screen jumps around when using undo/redo
http://www.lyx.org/trac/ticket/6367

* Undo.cpp: 
 - rename cur member of UndoElement to cur_before
 - add new member cur_after, which is set by Undo::endUndoGroup
 - create a new Undo::endUndoGroup variant that takes a Cursor as parameter. We cannot get rid of the old one
because it is used for LFUN_COMMAND_SEQUENCE.
* Cursor.cpp: 
 - use endUndoGroup(Dociterator const &) for dispatch
 - update Cursor::endUndoGroup to pass cursor.

Modified:
   lyx-devel/trunk/src/Cursor.cpp
   lyx-devel/trunk/src/Undo.cpp
   lyx-devel/trunk/src/Undo.h

Modified: lyx-devel/trunk/src/Cursor.cpp
==============================================================================
--- lyx-devel/trunk/src/Cursor.cpp	Mon Feb  6 23:38:46 2012	(r40712)
+++ lyx-devel/trunk/src/Cursor.cpp	Tue Feb  7 15:56:16 2012	(r40713)
@@ -334,7 +334,7 @@
 	Cursor old = *this;
 	disp_ = DispatchResult();
(Continue reading)

rgheck | 6 Feb 23:38
Favicon

r40711 - lyx-devel/trunk/src/mathed

Author: rgheck
Date: Mon Feb  6 23:38:41 2012
New Revision: 40711
URL: http://www.lyx.org/trac/changeset/40711

Log:
HTML output for InsetMathCancel.

Modified:
   lyx-devel/trunk/src/mathed/InsetMathCancel.cpp
   lyx-devel/trunk/src/mathed/InsetMathCancel.h

Modified: lyx-devel/trunk/src/mathed/InsetMathCancel.cpp
==============================================================================
--- lyx-devel/trunk/src/mathed/InsetMathCancel.cpp	Mon Feb  6 18:35:29 2012	(r40710)
+++ lyx-devel/trunk/src/mathed/InsetMathCancel.cpp	Mon Feb  6 23:38:41 2012	(r40711)
@@ -126,21 +126,35 @@
 }

 
+// unfortunately, we do not have many options here, so we have to treat
+// them all the same way.
+void InsetMathCancel::htmlize(HtmlStream & os) const
+{
+	os << MTag("span", "style='text-decoration: line-through;'")
+	   << cell(0)
+	   << ETag("span");
+}
+
+
(Continue reading)

rgheck | 6 Feb 23:38
Favicon

r40712 - lyx-devel/trunk/src/mathed

Author: rgheck
Date: Mon Feb  6 23:38:46 2012
New Revision: 40712
URL: http://www.lyx.org/trac/changeset/40712

Log:
Convert InsetMathCancel.* to UTF-8.

Modified:
   lyx-devel/trunk/src/mathed/InsetMathCancel.cpp
   lyx-devel/trunk/src/mathed/InsetMathCancel.h

Modified: lyx-devel/trunk/src/mathed/InsetMathCancel.cpp
==============================================================================
--- lyx-devel/trunk/src/mathed/InsetMathCancel.cpp	Mon Feb  6 23:38:41 2012	(r40711)
+++ lyx-devel/trunk/src/mathed/InsetMathCancel.cpp	Mon Feb  6 23:38:46 2012	(r40712)
@@ -3,7 +3,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Uwe Stöhr
+ * \author Uwe Stöhr
  *
  * Full author contact details are available in file CREDITS.
  */

Modified: lyx-devel/trunk/src/mathed/InsetMathCancel.h
==============================================================================
--- lyx-devel/trunk/src/mathed/InsetMathCancel.h	Mon Feb  6 23:38:41 2012	(r40711)
+++ lyx-devel/trunk/src/mathed/InsetMathCancel.h	Mon Feb  6 23:38:46 2012	(r40712)
(Continue reading)

uwestoehr | 6 Feb 18:35
Favicon

r40710 - lyx-devel/trunk/src/mathed

Author: uwestoehr
Date: Mon Feb  6 18:35:29 2012
New Revision: 40710
URL: http://www.lyx.org/trac/changeset/40710

Log:
InsetMathCancel: add MathML output

Modified:
   lyx-devel/trunk/src/mathed/InsetMathCancel.cpp
   lyx-devel/trunk/src/mathed/InsetMathCancel.h

Modified: lyx-devel/trunk/src/mathed/InsetMathCancel.cpp
==============================================================================
--- lyx-devel/trunk/src/mathed/InsetMathCancel.cpp	Sun Feb  5 02:11:47 2012	(r40709)
+++ lyx-devel/trunk/src/mathed/InsetMathCancel.cpp	Mon Feb  6 18:35:29 2012	(r40710)
@@ -125,6 +125,27 @@
 	}
 }

+
+void InsetMathCancel::mathmlize(MathStream & os) const
+{
+	switch (kind_) {
+	case cancel:
+		os << MTag("menclose", "notation='updiagonalstrike'") << cell(0) << ETag("menclose"); 
+		break;
+	case bcancel:
+		os << MTag("menclose", "notation='downdiagonalstrike'") << cell(0) << ETag("menclose"); 
+		break;
(Continue reading)

uwestoehr | 5 Feb 02:11
Favicon

r40709 - in lyx-devel/branches/BRANCH_2_0_X/lib/doc: . de es fr ja

Author: uwestoehr
Date: Sun Feb  5 02:11:47 2012
New Revision: 40709
URL: http://www.lyx.org/trac/changeset/40709

Log:
Math.lyx:
- for an unknown reason \addto\extras... does no longer work with recent hyperref (work is in progress for
an updated description); for now remove these commands
- remove unnecessary language switches

Modified:
   lyx-devel/branches/BRANCH_2_0_X/lib/doc/Math.lyx
   lyx-devel/branches/BRANCH_2_0_X/lib/doc/de/Math.lyx
   lyx-devel/branches/BRANCH_2_0_X/lib/doc/es/Math.lyx
   lyx-devel/branches/BRANCH_2_0_X/lib/doc/fr/Math.lyx
   lyx-devel/branches/BRANCH_2_0_X/lib/doc/ja/Math.lyx

Modified: lyx-devel/branches/BRANCH_2_0_X/lib/doc/Math.lyx
==============================================================================
--- lyx-devel/branches/BRANCH_2_0_X/lib/doc/Math.lyx	Sun Feb  5 02:09:45 2012	(r40708)
+++ lyx-devel/branches/BRANCH_2_0_X/lib/doc/Math.lyx	Sun Feb  5 02:11:47 2012	(r40709)
@@ -42,11 +42,10 @@
 \newlength{\abc}
 \settowidth{\abc}{\space}
 \AtBeginDocument{%
-\addto\extrasenglish{
  \renewcommand{\equationautorefname}{\hspace{-\abc}}
  \renewcommand{\sectionautorefname}{sec.\negthinspace}
  \renewcommand{\subsectionautorefname}{sec.\negthinspace}
(Continue reading)

uwestoehr | 5 Feb 02:09
Favicon

r40708 - in lyx-devel/branches/BRANCH_2_0_X/lib/doc: . de es fr ja

Author: uwestoehr
Date: Sun Feb  5 02:09:45 2012
New Revision: 40708
URL: http://www.lyx.org/trac/changeset/40708

Log:
EmbeddedObjects.lyx, UserGuide.lyx: remove unnecessary language switches

Modified:
   lyx-devel/branches/BRANCH_2_0_X/lib/doc/EmbeddedObjects.lyx
   lyx-devel/branches/BRANCH_2_0_X/lib/doc/de/EmbeddedObjects.lyx
   lyx-devel/branches/BRANCH_2_0_X/lib/doc/es/EmbeddedObjects.lyx
   lyx-devel/branches/BRANCH_2_0_X/lib/doc/es/UserGuide.lyx
   lyx-devel/branches/BRANCH_2_0_X/lib/doc/fr/EmbeddedObjects.lyx
   lyx-devel/branches/BRANCH_2_0_X/lib/doc/fr/UserGuide.lyx
   lyx-devel/branches/BRANCH_2_0_X/lib/doc/ja/EmbeddedObjects.lyx
   lyx-devel/branches/BRANCH_2_0_X/lib/doc/ja/UserGuide.lyx

Modified: lyx-devel/branches/BRANCH_2_0_X/lib/doc/EmbeddedObjects.lyx
==============================================================================
--- lyx-devel/branches/BRANCH_2_0_X/lib/doc/EmbeddedObjects.lyx	Fri Feb  3 18:32:13 2012	(r40707)
+++ lyx-devel/branches/BRANCH_2_0_X/lib/doc/EmbeddedObjects.lyx	Sun Feb  5 02:09:45 2012	(r40708)
@@ -32847,7 +32847,7 @@

 \begin_layout Plain Layout

-\lang german
+\lang ngerman
 Dies ist ein deutscher Text.
  Dies ist ein deutscher Text.
(Continue reading)

lasgouttes | 3 Feb 18:32
Favicon

r40707 - lyx-devel/branches/BRANCH_2_0_X

Author: lasgouttes
Date: Fri Feb  3 18:32:13 2012
New Revision: 40707
URL: http://www.lyx.org/trac/changeset/40707

Log:
addendum to backport r40703 (fix #8019)

Modified:
   lyx-devel/branches/BRANCH_2_0_X/status.20x

Modified: lyx-devel/branches/BRANCH_2_0_X/status.20x
==============================================================================
--- lyx-devel/branches/BRANCH_2_0_X/status.20x	Fri Feb  3 18:30:21 2012	(r40706)
+++ lyx-devel/branches/BRANCH_2_0_X/status.20x	Fri Feb  3 18:32:13 2012	(r40707)
@@ -163,6 +163,8 @@

 - Avoid creation of a spurious Rplots.pdf file when using Sweave (bug 8019).

+- Find correctly the file Sweave.sty with older R versions (bug 8019).
+
 * TEX2LYX

 - Full support for the command \date{} (bug 7844).

lasgouttes | 3 Feb 18:30
Favicon

r40706 - in lyx-devel/branches/BRANCH_2_0_X: . lib/scripts

Author: lasgouttes
Date: Fri Feb  3 18:30:21 2012
New Revision: 40706
URL: http://www.lyx.org/trac/changeset/40706

Log:
backport r40703 (fix #8019)

Modified:
   lyx-devel/branches/BRANCH_2_0_X/lib/scripts/lyxsweave.R
   lyx-devel/branches/BRANCH_2_0_X/status.20x

Modified: lyx-devel/branches/BRANCH_2_0_X/lib/scripts/lyxsweave.R
==============================================================================
--- lyx-devel/branches/BRANCH_2_0_X/lib/scripts/lyxsweave.R	Fri Feb  3 07:10:14 2012	(r40705)
+++ lyx-devel/branches/BRANCH_2_0_X/lib/scripts/lyxsweave.R	Fri Feb  3 18:30:21 2012	(r40706)
@@ -23,8 +23,12 @@
 # The advantage compared to the use of stylepath, is that the exported
 # .tex file will be portable to another machine. (JMarc)
 if (!length(system("kpsewhich Sweave.sty", intern=TRUE, ignore.stderr=TRUE))) {
-  file.copy(file.path(R.home("share"), "texmf", "tex", "latex", "Sweave.sty"),
-    dirname(.cmdargs[2]), overwrite=TRUE)
+  .texmf.path <- file.path(R.home("share"), "texmf")
+  if (!file.exists(.sweave.sty <- file.path(.texmf.path, "Sweave.sty"))) {
+    .sweave.sty <- file.path(.texmf.path, "tex", "latex", "Sweave.sty")
+  } 
+  file.copy(.sweave.sty, dirname(.cmdargs[2]), overwrite=TRUE)
+  rm(list = c('.sweave.sty', '.texmf.path'))
 }

(Continue reading)

spitz | 3 Feb 07:10
Favicon

r40705 - lyx-devel/branches/BRANCH_2_0_X

Author: spitz
Date: Fri Feb  3 07:10:14 2012
New Revision: 40705
URL: http://www.lyx.org/trac/changeset/40705

Log:
status.20x: Fix glitches introduced with r40704.

Modified:
   lyx-devel/branches/BRANCH_2_0_X/status.20x

Modified: lyx-devel/branches/BRANCH_2_0_X/status.20x
==============================================================================
--- lyx-devel/branches/BRANCH_2_0_X/status.20x	Thu Feb  2 23:39:26 2012	(r40704)
+++ lyx-devel/branches/BRANCH_2_0_X/status.20x	Fri Feb  3 07:10:14 2012	(r40705)
@@ -122,7 +122,7 @@

 - Support configure --with-packaging=posix on Mac OS X (bug 7927).

-- Improved disk image creationi on Mac OS X:
+- Improved disk image creation on Mac OS X:
   * Provide translation of the application menu.
   * Enhanced background image.
   * Package with hunspell dictionaries is default.
@@ -211,7 +211,7 @@

 - Correctly display and handle the math commands \pod and \mod (bug 7962).

-- Fix tabbar visibility in fullscreen mode when opening/closing files (bug 7G963).
+- Fix tabbar visibility in fullscreen mode when opening/closing files (bug 7963).
(Continue reading)


Gmane