]> git.lyx.org Git - lyx.git/log
lyx.git
14 years agoformat is a std::string, bformat doesn't take a std::string
Peter Kümmel [Sat, 19 Dec 2009 20:23:18 +0000 (20:23 +0000)]
format is a std::string, bformat doesn't take a std::string

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32596 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoadd forgotten macro to enable pchs
Peter Kümmel [Sat, 19 Dec 2009 20:18:46 +0000 (20:18 +0000)]
add forgotten macro to enable pchs

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32595 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agorevert, quotes are handled in Systemcall.cpp
Peter Kümmel [Sat, 19 Dec 2009 19:54:18 +0000 (19:54 +0000)]
revert, quotes are handled in Systemcall.cpp

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32594 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agopass format as argument
Peter Kümmel [Sat, 19 Dec 2009 19:50:19 +0000 (19:50 +0000)]
pass format as argument

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32593 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix bug #4063: LyX cannot handle apostrophe characters ' in path names
Enrico Forestieri [Sat, 19 Dec 2009 19:29:53 +0000 (19:29 +0000)]
Fix bug #4063: LyX cannot handle apostrophe characters ' in path names
when QProcess is disabled.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32592 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoCompare feature take two.
Vincent van Ravesteijn [Sat, 19 Dec 2009 18:15:20 +0000 (18:15 +0000)]
Compare feature take two.

With this patch, we can recursively walk through the document. The document is split around a middle snake and each part is processed further. The snakes are added to the output document as well as the added and deleted parts.

Now, the only thing left is to commit the implementation of the find_middle_snake function.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32591 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoImprove the command-line parser meant to be used for QProcess.
Enrico Forestieri [Sat, 19 Dec 2009 17:26:09 +0000 (17:26 +0000)]
Improve the command-line parser meant to be used for QProcess.
Now, both single- and double-quotes posix-like quoting styles are implemented,
such that a command-line meant for the shell can also be used for QProcess.
However, only redirecting the output to a file is supported. Supporting piping
would require a (major?) rewrite of the Systemcall class.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32590 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix the threaded preview and reenable it.
Vincent van Ravesteijn [Sat, 19 Dec 2009 15:46:45 +0000 (15:46 +0000)]
Fix the threaded preview and reenable it.

Buffer::Impl::inset was set in the ctor Buffer::Impl::Impl to be a clone. However, in the Buffer::Buffer ctor the inset was set again, now to a new and empty InsetText.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32589 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agodisable preview in thread for now as it doesn't work anymore...
Abdelrazak Younes [Sat, 19 Dec 2009 14:59:11 +0000 (14:59 +0000)]
disable preview in thread for now as it doesn't work anymore...

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32588 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agodoc glitch
Pavel Sanda [Sat, 19 Dec 2009 13:53:22 +0000 (13:53 +0000)]
doc glitch

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32587 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoGuiView: reconnect the QFutureWatcher each time the QFuture is changed. This enable...
Abdelrazak Younes [Sat, 19 Dec 2009 12:24:44 +0000 (12:24 +0000)]
GuiView: reconnect the QFutureWatcher each time the QFuture is changed. This enable to send the result properly.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32586 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoConverter: add a safe guard to Alerts because those cannot be called from another...
Abdelrazak Younes [Fri, 18 Dec 2009 22:59:59 +0000 (22:59 +0000)]
Converter: add a safe guard to Alerts because those cannot be called from another thread. The whole Alert system must be rethought I am afraid.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32585 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoDetach Buffer preview and update preview in a new thread. Only for Qt4.4 users. This...
Abdelrazak Younes [Fri, 18 Dec 2009 22:51:06 +0000 (22:51 +0000)]
Detach Buffer preview and update preview in a new thread. Only for Qt4.4 users. This new feature can be disabled by setting EXPORT_in_THREAD to 0 in GuiView.cpp.
Two things are missing (but are fixable):
- the lack of feedback of the background latex compilation
- the error list is not shown in case of compilation error.

* Buffer:
- create a "cloned buffer" type.
- Transfer LFUN_MASTER_BUFFER_UPDATE, LFUN_MASTER_BUFFER_VIEW, LFUN_BUFFER_UPDATE and LFUN_BUFFER_VIEW to GuiView. This is good itself as these LFUN are GUI oriented.

* GuiView: detach the above LFUNs to a new thread as was already done for autosave.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32584 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoAllow double quotes in file names passed to converters.
Enrico Forestieri [Fri, 18 Dec 2009 22:15:46 +0000 (22:15 +0000)]
Allow double quotes in file names passed to converters.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32583 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoUNDO: single quotes in filenames are possible
Peter Kümmel [Fri, 18 Dec 2009 19:35:32 +0000 (19:35 +0000)]
UNDO: single quotes in filenames are possible

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32582 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix bug #6378: Word completion (in texted) should be language-sensitive.
Vincent van Ravesteijn [Fri, 18 Dec 2009 14:48:56 +0000 (14:48 +0000)]
Fix bug #6378: Word completion (in texted) should be language-sensitive.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32581 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix second part of bug #6400: After selecting a word by double-clicking it, extending...
Vincent van Ravesteijn [Fri, 18 Dec 2009 14:18:10 +0000 (14:18 +0000)]
Fix second part of bug #6400: After selecting a word by double-clicking it, extending the selection by a single mouse-click should also select only whole words.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32580 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoTicket 6266 Quoting Problem with QProcess: don't think we need any quotes (at least...
Peter Kümmel [Fri, 18 Dec 2009 12:20:22 +0000 (12:20 +0000)]
Ticket 6266 Quoting Problem with QProcess: don't think we need any quotes (at least on Linux)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32579 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix part of bug #6400: Shift+mouse click loses the existing selection instead of...
Vincent van Ravesteijn [Fri, 18 Dec 2009 12:08:32 +0000 (12:08 +0000)]
Fix part of bug #6400: Shift+mouse click loses the existing selection instead of extending it.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32578 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoWith ContentAsLabel, we do not need this special code.
Richard Heck [Fri, 18 Dec 2009 01:22:24 +0000 (01:22 +0000)]
With ContentAsLabel, we do not need this special code.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32576 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoEnhance LyX by fixing bug 5587. We add a new ContentAsLabel tag to
Richard Heck [Fri, 18 Dec 2009 00:29:22 +0000 (00:29 +0000)]
Enhance LyX by fixing bug 5587. We add a new ContentAsLabel tag to
InsetLayout, per Jurgen's suggestion, so that insets can be told to
display an abbreviated form of their content when closed.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32575 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoSo this changes the way we handle sums and such. We just don't need to
Richard Heck [Thu, 17 Dec 2009 17:52:09 +0000 (17:52 +0000)]
So this changes the way we handle sums and such. We just don't need to
handle them specially for MathML, and we don't need to split scripts
either.

Wouldn't it have been nice if I'd realized that before?

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32572 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoLast commit didn't complete reversion, as I forgot to resolve the
Richard Heck [Thu, 17 Dec 2009 17:50:46 +0000 (17:50 +0000)]
Last commit didn't complete reversion, as I forgot to resolve the
conflicted state of this file.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32571 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoSet the current font when moving into a table or between two table cells.
Vincent van Ravesteijn [Thu, 17 Dec 2009 17:47:09 +0000 (17:47 +0000)]
Set the current font when moving into a table or between two table cells.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32570 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoRevert r32566 and r32568.
Richard Heck [Thu, 17 Dec 2009 17:42:21 +0000 (17:42 +0000)]
Revert r32566 and r32568.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32569 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoMake InsetMathExInt handle products as well as sums.
Richard Heck [Thu, 17 Dec 2009 17:28:07 +0000 (17:28 +0000)]
Make InsetMathExInt handle products as well as sums.

We can do more here, but it's actually not clear to me whether we even
need to give these things special treatment for MathML. I may revert
this.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32568 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix up MathML output of integrals.
Richard Heck [Thu, 17 Dec 2009 16:06:00 +0000 (16:06 +0000)]
Fix up MathML output of integrals.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32567 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix MathML output of sums.
Richard Heck [Thu, 17 Dec 2009 15:54:49 +0000 (15:54 +0000)]
Fix MathML output of sums.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32566 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoRemoved unneeded commented code (fixing #6333).
Tommaso Cucinotta [Thu, 17 Dec 2009 15:41:40 +0000 (15:41 +0000)]
Removed unneeded commented code (fixing #6333).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32565 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix up math scripts. Everything needs to go into <mrow>. (This acts as a
Richard Heck [Thu, 17 Dec 2009 15:39:18 +0000 (15:39 +0000)]
Fix up math scripts. Everything needs to go into <mrow>. (This acts as a
general grouping mechanism, basically.)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32564 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoCompute the font_scaling_factor every time a preview is created (we can afford a...
Vincent van Ravesteijn [Thu, 17 Dec 2009 15:25:55 +0000 (15:25 +0000)]
Compute the font_scaling_factor every time a preview is created (we can afford a few multiplications I guess). Now, the newly generated previews use the possibly updated zoom, dpi and preview_scale_factor.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32563 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoDo not hardcode the background color of the preview at two places.
Vincent van Ravesteijn [Thu, 17 Dec 2009 15:21:08 +0000 (15:21 +0000)]
Do not hardcode the background color of the preview at two places.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32562 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoRemove unused include.
Vincent van Ravesteijn [Thu, 17 Dec 2009 15:16:27 +0000 (15:16 +0000)]
Remove unused include.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32561 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoCorrectly paint the background of the instant preview of a displayed equation.
Vincent van Ravesteijn [Thu, 17 Dec 2009 14:09:37 +0000 (14:09 +0000)]
Correctly paint the background of the instant preview of a displayed equation.

For a displayed equation, the height is artificially increased by a displayMargin() in InsetMathHull::metrics if it is a displayed equation and there is a preview.

This extra height is not covered by the preview image and what one can see is the background as drawn by the MathHull inset. The color of this background should be either Color_mathbg or Color_background depending on whether the preview is shown or not.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32560 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoindentation fix.
Tommaso Cucinotta [Thu, 17 Dec 2009 07:57:50 +0000 (07:57 +0000)]
indentation fix.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32559 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix of bug ##6334 - now if you search for something not in the doc, it wraps around...
Tommaso Cucinotta [Thu, 17 Dec 2009 07:53:20 +0000 (07:53 +0000)]
Fix of bug ##6334 - now if you search for something not in the doc, it wraps around only once.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32558 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix of bug #6333 (main document WA was entirely selected and cursor position lost...
Tommaso Cucinotta [Thu, 17 Dec 2009 07:48:29 +0000 (07:48 +0000)]
Fix of bug #6333 (main document WA was entirely selected and cursor position lost if F&R dialog was floating - does not happen anymore).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32557 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoSpanish manuals: some translations by Ignacio
Uwe Stöhr [Thu, 17 Dec 2009 03:20:16 +0000 (03:20 +0000)]
Spanish manuals: some translations by Ignacio

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32556 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoAdd comment.
Richard Heck [Wed, 16 Dec 2009 17:44:40 +0000 (17:44 +0000)]
Add comment.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32554 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoRevert r32544.
Richard Heck [Wed, 16 Dec 2009 17:29:29 +0000 (17:29 +0000)]
Revert r32544.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32553 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoWhitespace.
Richard Heck [Wed, 16 Dec 2009 17:22:56 +0000 (17:22 +0000)]
Whitespace.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32552 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix MathML for fractions.
Richard Heck [Wed, 16 Dec 2009 17:22:42 +0000 (17:22 +0000)]
Fix MathML for fractions.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32551 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoAdd a fixme, in effect, about dots.
Richard Heck [Wed, 16 Dec 2009 17:12:58 +0000 (17:12 +0000)]
Add a fixme, in effect, about dots.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32550 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoDetect appropriate delimiter for matrices.
Richard Heck [Wed, 16 Dec 2009 17:01:09 +0000 (17:01 +0000)]
Detect appropriate delimiter for matrices.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32549 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix matrix output, at least a bit. A little more work needs to be done
Richard Heck [Wed, 16 Dec 2009 16:43:26 +0000 (16:43 +0000)]
Fix matrix output, at least a bit. A little more work needs to be done
here, though.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32548 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoIn a normal grid, we can just use <mrow>.
Richard Heck [Wed, 16 Dec 2009 15:50:31 +0000 (15:50 +0000)]
In a normal grid, we can just use <mrow>.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32547 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoThis should do it for the delimiters.
Richard Heck [Wed, 16 Dec 2009 15:50:05 +0000 (15:50 +0000)]
This should do it for the delimiters.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32546 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoA bit more for math delim.
Richard Heck [Wed, 16 Dec 2009 15:35:25 +0000 (15:35 +0000)]
A bit more for math delim.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32545 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoA couple minor changes in the User's Guide.
Richard Heck [Wed, 16 Dec 2009 15:13:46 +0000 (15:13 +0000)]
A couple minor changes in the User's Guide.

The first confuses the parser for MathExtern, which thinks there's going
to be another argument, so please do not use comma in math as if it were
a comma in text.

As for the second, for some reason the unicode character that appears
here causes iconv errors.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32544 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoMore Math ML fixes. Using <mfenced> seems to be a bad idea, and the <mo>
Richard Heck [Wed, 16 Dec 2009 15:12:34 +0000 (15:12 +0000)]
More Math ML fixes. Using <mfenced> seems to be a bad idea, and the <mo>
version is claimed to be completely equivalent.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32543 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix a few MathML things: the default output and the output of limits.
Richard Heck [Wed, 16 Dec 2009 14:53:23 +0000 (14:53 +0000)]
Fix a few MathML things: the default output and the output of limits.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32542 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoRemove last vestiges of pre-XHTMLStream implementation.
Richard Heck [Tue, 15 Dec 2009 13:22:38 +0000 (13:22 +0000)]
Remove last vestiges of pre-XHTMLStream implementation.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32541 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoRestore the MathML output we had before. Still work to be done here.
Richard Heck [Tue, 15 Dec 2009 13:14:57 +0000 (13:14 +0000)]
Restore the MathML output we had before. Still work to be done here.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32540 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoUpdate HTML notes.
Richard Heck [Mon, 14 Dec 2009 17:24:52 +0000 (17:24 +0000)]
Update HTML notes.

The User's Guide now outputs and validates completely, and pretty
nicely, too, except for math. Back to MathML next.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32537 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoThat didn't really work. So revert to old CSS for gray notes.
Richard Heck [Mon, 14 Dec 2009 17:20:52 +0000 (17:20 +0000)]
That didn't really work. So revert to old CSS for gray notes.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32536 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoForgot this.
Richard Heck [Mon, 14 Dec 2009 17:16:55 +0000 (17:16 +0000)]
Forgot this.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32535 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoPolish CSS a bit for floats and captions.
Richard Heck [Mon, 14 Dec 2009 17:16:16 +0000 (17:16 +0000)]
Polish CSS a bit for floats and captions.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32534 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoAllow use of InsetLayout with InsetCaption.
Richard Heck [Mon, 14 Dec 2009 17:15:32 +0000 (17:15 +0000)]
Allow use of InsetLayout with InsetCaption.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32533 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoA little more CSS for tables.
Richard Heck [Mon, 14 Dec 2009 16:57:54 +0000 (16:57 +0000)]
A little more CSS for tables.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32532 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix the height output for InsetBox.
Richard Heck [Mon, 14 Dec 2009 16:52:33 +0000 (16:52 +0000)]
Fix the height output for InsetBox.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32531 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoSpacing.
Richard Heck [Mon, 14 Dec 2009 16:50:17 +0000 (16:50 +0000)]
Spacing.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32530 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoThese add extra whitespace where we don't want it.
Richard Heck [Mon, 14 Dec 2009 16:45:11 +0000 (16:45 +0000)]
These add extra whitespace where we don't want it.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32529 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoAdd some CSS for tables.
Richard Heck [Mon, 14 Dec 2009 16:05:36 +0000 (16:05 +0000)]
Add some CSS for tables.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32528 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoAdd comment.
Richard Heck [Mon, 14 Dec 2009 16:04:33 +0000 (16:04 +0000)]
Add comment.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32527 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix multicolumn output.
Richard Heck [Mon, 14 Dec 2009 15:44:49 +0000 (15:44 +0000)]
Fix multicolumn output.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32526 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoRemove dead code.
Richard Heck [Mon, 14 Dec 2009 15:40:54 +0000 (15:40 +0000)]
Remove dead code.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32525 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoInitial XHTML support for InsetTabular.
Richard Heck [Mon, 14 Dec 2009 15:39:13 +0000 (15:39 +0000)]
Initial XHTML support for InsetTabular.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32524 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix bug #6341: Can't set equal spacing in xymatrix.
Vincent van Ravesteijn [Sun, 13 Dec 2009 21:32:08 +0000 (21:32 +0000)]
Fix bug #6341: Can't set equal spacing in xymatrix.

Now we also 'support' \xymatrix!C (columns), \xymatrix!R (rows), \xymatrix!0 (all equal and ignore entry sizes) and \xymatrix! (all equal).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32518 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoRestore XHTML output for InsetListings.
Richard Heck [Sun, 13 Dec 2009 21:14:53 +0000 (21:14 +0000)]
Restore XHTML output for InsetListings.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32515 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix warning.
Richard Heck [Sun, 13 Dec 2009 21:14:36 +0000 (21:14 +0000)]
Fix warning.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32514 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFor Qt4.4 and up: Detach Buffer autosave into a new thread.
Abdelrazak Younes [Sun, 13 Dec 2009 21:00:46 +0000 (21:00 +0000)]
For Qt4.4 and up: Detach Buffer autosave into a new thread.

* Buffer: new clone() method. When this new autosave method is used the old autoSave() is not of course.

* GuiView: clone the current document buffer and save it in a new thread.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32512 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoWe don't need to say this explicitly, since it'll be detected for us if
Richard Heck [Sun, 13 Dec 2009 20:58:25 +0000 (20:58 +0000)]
We don't need to say this explicitly, since it'll be detected for us if
it's possible.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32511 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoAdd checks for sxw, rtf, and doc viewers and editors.
Richard Heck [Sun, 13 Dec 2009 20:32:00 +0000 (20:32 +0000)]
Add checks for sxw, rtf, and doc viewers and editors.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32510 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoRevert most of r32414, adding "auto" as editor and viewer for Windows-
Richard Heck [Sun, 13 Dec 2009 20:20:08 +0000 (20:20 +0000)]
Revert most of r32414, adding "auto" as editor and viewer for Windows-
platform.)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32509 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoUserGuide.lyx: mention new menu File -> Close All
Uwe Stöhr [Sun, 13 Dec 2009 14:18:57 +0000 (14:18 +0000)]
UserGuide.lyx: mention new menu File -> Close All

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32507 a592a061-630c-0410-9148-cb99ea01b6c8

14 years ago* BiblioInfo.cpp (convertLaTeXCommands):
Jürgen Spitzmüller [Sun, 13 Dec 2009 09:50:30 +0000 (09:50 +0000)]
* BiblioInfo.cpp (convertLaTeXCommands):
- fix parsing of thin space (\,).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32504 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agotypo
Peter Kümmel [Sun, 13 Dec 2009 09:32:38 +0000 (09:32 +0000)]
typo

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32502 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agocleanup error messages
Peter Kümmel [Sun, 13 Dec 2009 09:30:28 +0000 (09:30 +0000)]
cleanup error messages

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32501 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoCREDITS, generate_contributions.py: add Julien and Sergey
Uwe Stöhr [Sun, 13 Dec 2009 02:58:35 +0000 (02:58 +0000)]
CREDITS, generate_contributions.py: add Julien and Sergey

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32499 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agopreamble.cpp: extend a comment
Uwe Stöhr [Sat, 12 Dec 2009 21:23:54 +0000 (21:23 +0000)]
preamble.cpp: extend a comment

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32496 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoja.po: more updates by Koji for trunk
Uwe Stöhr [Sat, 12 Dec 2009 21:05:23 +0000 (21:05 +0000)]
ja.po: more updates by Koji for trunk

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32494 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoInsetQuotes.cpp: correct a comment
Uwe Stöhr [Sat, 12 Dec 2009 20:29:47 +0000 (20:29 +0000)]
InsetQuotes.cpp: correct a comment

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32493 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix bug #2948: Drag and drop support for all importable file types.
Vincent van Ravesteijn [Sat, 12 Dec 2009 15:25:45 +0000 (15:25 +0000)]
Fix bug #2948: Drag and drop support for all importable file types.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32492 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix compilation without QProcess.
Vincent van Ravesteijn [Sat, 12 Dec 2009 14:04:21 +0000 (14:04 +0000)]
Fix compilation without QProcess.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32491 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix a crash when spellchecking when a Math inset is the last inset in the document...
Vincent van Ravesteijn [Sat, 12 Dec 2009 02:56:06 +0000 (02:56 +0000)]
Fix a crash when spellchecking when a Math inset is the last inset in the document. Make sure that the words between a math inset and the next inset are spellchecked. Also fix the count of the number of words when there are math insets.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32489 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoja.po: updates by Koji
Uwe Stöhr [Sat, 12 Dec 2009 02:41:49 +0000 (02:41 +0000)]
ja.po: updates by Koji

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32487 a592a061-630c-0410-9148-cb99ea01b6c8

14 years ago3 new Spanish translations of example files by Ignacio
Uwe Stöhr [Sat, 12 Dec 2009 02:41:27 +0000 (02:41 +0000)]
3 new Spanish translations of example files by Ignacio

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32486 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoDo not save an emergency file after choosing to revert the document to the version...
Vincent van Ravesteijn [Sat, 12 Dec 2009 01:18:18 +0000 (01:18 +0000)]
Do not save an emergency file after choosing to revert the document to the version saved on disk.

Now also when the user tries to load the document when it's already loaded.

see r32170.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32485 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agopreamble.cpp: fix comment
Uwe Stöhr [Fri, 11 Dec 2009 23:14:36 +0000 (23:14 +0000)]
preamble.cpp: fix comment

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32482 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agostdtoolbars.inc: correct place for \Diamond
Uwe Stöhr [Fri, 11 Dec 2009 23:10:37 +0000 (23:10 +0000)]
stdtoolbars.inc: correct place for \Diamond

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32481 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agopreamble.cpp:
Uwe Stöhr [Fri, 11 Dec 2009 04:11:44 +0000 (04:11 +0000)]
preamble.cpp:
- proper solution to determine the quotes language
- add Kazakh, that we already support in LyX for ages

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32476 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agostdtoolbars.inc: add missing entry for \Diamond; this symbol is part of amssymb,...
Uwe Stöhr [Fri, 11 Dec 2009 01:58:46 +0000 (01:58 +0000)]
stdtoolbars.inc: add missing entry for \Diamond; this symbol is part of amssymb, we support it, and it is also listed in the Math manual
(bug was reported here: http://www.mail-archive.com/lyx-users@lists.lyx.org/msg78256.html)

Jürgen, also for branch?

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32475 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoSpare a few cpu cycles on average.
Enrico Forestieri [Fri, 11 Dec 2009 01:46:57 +0000 (01:46 +0000)]
Spare a few cpu cycles on average.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32474 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoFix bug #6382: Wrong cursor placement when inserting math
Enrico Forestieri [Fri, 11 Dec 2009 01:30:33 +0000 (01:30 +0000)]
Fix bug #6382: Wrong cursor placement when inserting math

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32473 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agopreamble.cpp: tex2lyx creates fileformat 264 - the encoding "ascii" is known to LyX...
Uwe Stöhr [Fri, 11 Dec 2009 01:26:07 +0000 (01:26 +0000)]
preamble.cpp: tex2lyx creates fileformat 264 - the encoding "ascii" is known to LyX since fileformat 262 so that a special handling for this encoding is no longer necessary

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32472 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agopreamble.cpp: simplify code
Uwe Stöhr [Fri, 11 Dec 2009 01:22:48 +0000 (01:22 +0000)]
preamble.cpp: simplify code

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32471 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoInsetCaption.cpp: revert unintended commit
Uwe Stöhr [Fri, 11 Dec 2009 01:01:58 +0000 (01:01 +0000)]
InsetCaption.cpp: revert unintended commit

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32470 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoreplace links to bugzilla with links to trac
Uwe Stöhr [Fri, 11 Dec 2009 00:59:10 +0000 (00:59 +0000)]
replace links to bugzilla with links to trac

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32469 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoGenerate the magic label always. We'll need it other times, when we do
Richard Heck [Thu, 10 Dec 2009 20:36:12 +0000 (20:36 +0000)]
Generate the magic label always. We'll need it other times, when we do
the other TOCs, in particular.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32466 a592a061-630c-0410-9148-cb99ea01b6c8

14 years agoPrettify the grey notes.
Richard Heck [Thu, 10 Dec 2009 20:19:52 +0000 (20:19 +0000)]
Prettify the grey notes.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32465 a592a061-630c-0410-9148-cb99ea01b6c8