Commit Graph

18138 Commits

Author SHA1 Message Date
Pavel Sanda
7d4c55677c Remove client/debug.* since they are not used anymore.
Moreover they cause problems wrt make dist.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25021 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 23:45:52 +00:00
Pavel Sanda
fe1d23c7af * Doxy.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25020 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 23:10:56 +00:00
José Matox
a87eb7776f Back to 1.6.0svn
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25019 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 16:01:46 +00:00
José Matox
ac28bcc93f Going for 1.6.0 (beta 1)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25017 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 15:56:49 +00:00
Richard Heck
2a47858dda Fix remaining issues with InsetSpace. The identifier "Space" used in the .lyx
file has been changed to "space" to match the identifier used for the inset in
Inset.cpp and for the dialog in GuiView.cpp.

In future, we will want to get a similar uniformity elsewhere: The identifier
used in the LyX file should match the one used as inset identifier. The easy
way to do this, in the code, is to have insets write themselves this way:
	os << insetName(lyxCode()) << " ";
rather than at present:
	os << "space ";
Similar things could then happen elsewhere. E.g., if the dialog names are in
sync with the inset names, then we could do something like:
	hideDialogs(insetName(lyxCode()), this);
rather than
	hideDialogs("space", this);
and perhaps even put that into the Inset destructor rather than have specific
versions in each inset---with a test for whether there is such a dialog, of
course.

But this is all for later.



git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25016 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 15:38:43 +00:00
José Matox
66fa2a2e27 Update (again - again) translations for beta1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25015 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 15:34:39 +00:00
Richard Heck
afbc6bd2b9 Fix some of the InsetSpace problems.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25014 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 15:18:13 +00:00
Richard Heck
1f8d6daee4 Revert previous commit.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25013 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 14:59:28 +00:00
José Matox
82840032cc Reduce the news of stable versions other than the first to the highlights.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25012 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 14:43:42 +00:00
Abdelrazak Younes
ebcc4db6de Add list of branches.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25011 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 13:59:29 +00:00
José Matox
a43de95180 Add autoconf 2.62 to the list of supported versions
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25010 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 12:57:06 +00:00
Abdelrazak Younes
8d93f5173f forgot that one.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25009 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 12:23:15 +00:00
Abdelrazak Younes
9558962c4f Reset the focus on the work area after using on any navigator gui control.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25008 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 12:13:42 +00:00
José Matox
9cbe8c06f6 Update NEWS to beta 1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25007 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 12:12:38 +00:00
Abdelrazak Younes
1d3fcde7f7 Code simplification.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25006 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 11:59:57 +00:00
Abdelrazak Younes
655f696612 set the focus on the work area after clicking on a navigator item.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25005 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 11:33:24 +00:00
José Matox
c977610c84 Update (again) translations for beta1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25004 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 11:10:51 +00:00
José Matox
b2c24542b1 Update translations for beta1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25003 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 10:06:16 +00:00
Jürgen Spitzmüller
48e6184e84 * InsetSpace.cpp:
- brace/arrowfill drawing cosmetics, by Helge.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25002 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-30 09:31:06 +00:00
Pavel Sanda
2b8c5bd406 * Doxy.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25001 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-29 23:11:06 +00:00
André Pönitz
2e968d0661 next try
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25000 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-29 17:57:57 +00:00
Richard Heck
77ed747114 FuncStatus::enabled(bool) --> FuncStatus::setEnabled(bool)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24999 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-29 15:14:00 +00:00
Jürgen Spitzmüller
fb69a2e3e4 * GuiErrorList.{cpp,h}:
- Fix error navigation with the keyboard (bug 4895).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24998 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-29 12:37:22 +00:00
Pavel Sanda
228646b5b5 * cs.po
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24996 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-29 11:55:23 +00:00
Pavel Sanda
89e93deea2 one string more.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24995 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-29 11:54:29 +00:00
Abdelrazak Younes
eef4223e1b fix duplicate shortcuts.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24994 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-29 11:45:00 +00:00
Abdelrazak Younes
cc614c4664 remove invalid comment
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24993 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-29 11:25:01 +00:00
Pavel Sanda
f447ef3395 Some strings.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24992 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-29 11:24:42 +00:00
Pavel Sanda
e2128c434c typo.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24991 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-29 09:47:06 +00:00
Pavel Sanda
485ddc2243 * Doxy.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24990 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-29 09:40:47 +00:00
Stefan Schimanski
3c591515e9 * enabled() is the getter, enabled(bool) is the setter method.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24989 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-29 08:09:58 +00:00
Richard Heck
aae97ef028 Improve my additions.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24988 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-28 23:07:41 +00:00
Uwe Stöhr
2e578c9bd4 German Extended.lyx: - small correction by Hartmut
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24987 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-28 20:51:37 +00:00
Uwe Stöhr
62d85c7437 sciword.bind: update the math numbering to what we have in trunk, fixes also bug 4893
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24986 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-28 20:45:01 +00:00
Uwe Stöhr
17f0d78a68 - po-file update
- de.po: some translations

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24985 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-28 20:11:42 +00:00
Uwe Stöhr
7bc763408c fr.po: updates by Jean-Pierre
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24984 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-28 19:58:30 +00:00
Abdelrazak Younes
1e109a2a3b small updates.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24980 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-28 16:08:14 +00:00
Richard Heck
8921a18a89 Add LFUN_BRANCH_ACTIVATE and LFUN_BRANCH_DEACTIVATE, fixing bug 4341.
These have been added to BufferView::dispatch() and BufferView::getStatus() for now. Shortly, we'll be making wider use of Buffer::dispatch() and introducing Buffer::getStatus() and moving these and some other LFUNs there.



git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24979 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-28 16:02:09 +00:00
Abdelrazak Younes
5254716219 GuiToolbar::fill(): only once.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24978 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-28 10:30:25 +00:00
Abdelrazak Younes
15b42ccd4a startup optimisation: delay toolbar filling until it is shown on screen.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24977 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-28 10:26:03 +00:00
Richard Heck
2ce7c41f03 Fix bug 4097: Give LyX an intelligent return value on file load errors.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24976 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-28 00:25:42 +00:00
Pavel Sanda
fcf458adcd Cosmetics.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24975 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-27 22:17:01 +00:00
Pavel Sanda
e850bb99be * Doxy.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24974 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-27 22:14:03 +00:00
Uwe Stöhr
3f72061f22 German Extended.lyx: - fix handling of the picinpar package
- delete sections whose content is already in the EmbeddedObjects manual and therefore already removed in the English version of this document

German UserGuide.lyx: some cleanups by Hartmut

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24973 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-27 22:11:25 +00:00
Jürgen Spitzmüller
ff711ed4bc * INSTALL: clarify description of --with-version-suffix (bug 4890).
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24971 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-27 20:13:48 +00:00
Richard Heck
317432f315 Branches can use any layout.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24969 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-27 19:25:57 +00:00
Richard Heck
c3f7bc6a43 Cosmetics.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24968 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-27 19:00:42 +00:00
Richard Heck
32f1dce79a Simplify things just a little bit.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24967 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-27 18:57:16 +00:00
Abdelrazak Younes
891cfdda68 bug fix with minibuffer focus.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24966 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-27 17:29:36 +00:00
Richard Heck
43c7e56ef2 Work around an incompatibility between paper.cls and how we handle environments. The paper class seems to expect a pair of newlines are the end of the abstract envirnoment, which we do not produce; this has the effect that the abstract runs into the first paragraph in certain cases.
Jurgen, this could also go into branch.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24965 a592a061-630c-0410-9148-cb99ea01b6c8
2008-05-27 16:22:25 +00:00