Enrico Forestieri
413d246fe7
Restore images corrupted by the xpm -> png conversion.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20033 a592a061-630c-0410-9148-cb99ea01b6c8
2007-09-04 13:32:10 +00:00
Martin Vermeer
6c73681b07
Add error fallback to custom insets
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20030 a592a061-630c-0410-9148-cb99ea01b6c8
2007-09-04 03:48:24 +00:00
Enrico Forestieri
a9fdc80627
Restore old images got lost in the xpm -> png change
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20029 a592a061-630c-0410-9148-cb99ea01b6c8
2007-09-03 23:17:10 +00:00
Martin Vermeer
ed6f900552
Use Minimalistic for branches
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19973 a592a061-630c-0410-9148-cb99ea01b6c8
2007-09-01 11:40:09 +00:00
Richard Heck
efec6dde3d
Add export to 1.5.x to trunk.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19966 a592a061-630c-0410-9148-cb99ea01b6c8
2007-09-01 04:09:03 +00:00
Bo Peng
cc6fe67c35
Embedding feature patch 3: basic gui support
...
* lib/ui/stdmenus.inc: add menu item embedded files
* src/BufferParams.cpp: set default embedded status to false
* src/EmbeddedFiles.h|cpp: add a few member functions
* src/frontends/qt4/Dialogs.cpp: add embedding dialog
* src/frontends/qt4/GuiEmbeddedFiles.h|cpp: embedding dialog
* src/frontends/qt4/ui/EmbeddedFilesUi.ui: embedding dialog
* src/frontends/controllers/ControlEmbeddedFiles.h|cpp: embedding dialog control
* src/frontends/qt4/Makefile.am: build system update
* src/frontends/controllers/Makefile.am
* development/scons/scons_manifest.py
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19953 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-31 15:42:35 +00:00
Richard Heck
2607927e2f
Modularize the theorem modules.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19952 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-31 15:01:17 +00:00
José Matox
b3d5000a64
Increment file format due to the embedded feature
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19938 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-31 09:46:14 +00:00
Uwe Stöhr
bff6638b59
German UserGuide.lyx: updates from Hartmut
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19932 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-30 22:45:24 +00:00
André Pönitz
f82c3e8e65
xpm -> png
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19922 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-30 20:09:12 +00:00
Uwe Stöhr
dfb402c266
German UserGuide.lyx: updates from Hartmut
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19906 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-30 01:08:57 +00:00
Uwe Stöhr
88099cf89a
documentation: bugfixes by Ignacio
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19902 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-30 00:53:49 +00:00
Richard Heck
7f17f13bfc
Get package things working with modules prior to UI patch.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19900 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-29 22:59:25 +00:00
Richard Heck
8a947f63da
This is one of a series of patches that will merge the layout modules development in personal/branches/rgheck back into the tree.
...
Design goal: Allow the use of layout "modules", which are to LaTeX packages as layout files are to LaTeX document classes. Thus, one could have a module that defined certain character styles, environments, commands, or what have you, and include it in various documents, each of which uses a different document class, without having to modify the layout files themselves. For example, a theorems.module could be used with article.layout to provide support for theorem-type environments, without having to modify article.layout itself, and the same module could be used with book.layout, etc.
This patch adds the backend. The ModuleList class holds a list of the available modules, which are retrieved from lyxmodules.lst, itself generated by configure.py. There are two LFUNs available: modules-clear and module-add, which do the obvious thing; you can test by typing these into the minibuffer, along with the name of one of the available modules: URL (a CharStyle), Endnote (a Custom Inset), and---with the spaces---End To Foot (View>LaTeX and look at the user preamble), which are themselves in lib/layouts. There are some others, too, that allow theorems to be added to classes like article and book.
The GUI will come next.
Issues: (i) The configure.py script could be improved. It'd be nice, for example, if it tested for the presence of the LaTeX packages a particular module needs. But this would mean re-working the LaTeX script, and I don't know how to do that. Note that at present, the packages are ignored. This will change shortly. (ii) I've used std::string in LyXModule, following what seemed to be a precedent in TextClass. If some of these should be docstrings, please let me know, and I'll change them. (iii) There is at present no distinction between LaTeX and DocBook modules. Should there be? That is: Should there be modules that are available when the document class is a LaTeX class and others that are available only when it is DocBook? Or should there just be one set of modules? Each module can of course indicate for what it is suitable in its description.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19893 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-29 17:59:49 +00:00
Martin Vermeer
794ff76622
Add some more logical charstyles
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19892 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-29 16:04:56 +00:00
José Matox
f6e94c8b24
Fix bug 4158.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19886 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-29 13:39:15 +00:00
Uwe Stöhr
7a05036849
German Extended.lyx and UserGuide.lyx: updates from Hartmut
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19883 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-29 00:22:57 +00:00
Uwe Stöhr
1e6a27b25d
EmbeddedObjects.lyx: correct the description of the list of algorithms
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19879 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-28 23:48:09 +00:00
Martin Vermeer
12210a88fb
Oops...
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19851 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-28 14:33:44 +00:00
Martin Vermeer
18299149f5
some more inclusions of stdinsets.inc
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19850 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-28 14:32:06 +00:00
Uwe Stöhr
4172485013
Extended.lyx: remove the sections about glossaries and indices as they are now (more complete and revised) in the UserGuide.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19816 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-26 20:41:00 +00:00
Martin Vermeer
77b575e562
Move background colour into the layout files -- for all collapsables
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19813 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-26 20:32:58 +00:00
Uwe Stöhr
4daef15dcc
Makefile.am: whitespace
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19811 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-26 20:21:56 +00:00
Uwe Stöhr
fa0f59c4b6
EmbeddedObjects manual: - it seems that the package "colortbl" is not standard on all systems, so treat it like the packages arydshln and marginnote in the document
...
- set correct language for the dummy documents
- small tweaks for the German version
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19808 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-26 19:35:06 +00:00
Martin Vermeer
8eb22fd082
Updated versions to 5; added stdinsets.inc where I felt confident
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19804 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-26 09:10:52 +00:00
Martin Vermeer
9fe6ea87b2
fixed some classes to include inset defs, updated some version nrs
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19802 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-26 08:33:03 +00:00
Martin Vermeer
e31d201dd6
Decoration added
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19795 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-25 18:41:58 +00:00
Martin Vermeer
30506f8e11
Clean-up in CharStyles, externalize detection of undefined styles to
...
layout files
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19790 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-25 14:43:59 +00:00
Martin Vermeer
d9a7f647c8
Oops -- thanks Richard
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19773 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-24 15:15:38 +00:00
Martin Vermeer
540f3564f0
Inset configurability: separate charstyle and custom insets
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19769 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-24 12:45:40 +00:00
Martin Vermeer
e38b581bcb
add preamble snippets to charstyles
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19732 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-22 18:55:03 +00:00
Uwe Stöhr
68a28b60c9
Hebrew Tutorial.lyx: fix old link, fixes bug 4165
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19730 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-22 18:50:03 +00:00
Martin Vermeer
a921f1b7ae
layout2layout, changeover to version 5
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19723 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-22 14:36:07 +00:00
Uwe Stöhr
c63db51ad1
add Joan Montané to the credits
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19705 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-21 21:52:06 +00:00
Martin Vermeer
612af5c5f0
inset configurability: ERT
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19702 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-21 21:29:13 +00:00
Martin Vermeer
005c3ea9c0
charstyle update for beamer
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19697 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-21 19:44:47 +00:00
Martin Vermeer
1bd92eb2f1
The necessary changes to these XML layouts (charstyle new format)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19696 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-21 19:43:10 +00:00
Uwe Stöhr
c4c945bc1e
German splash.lyx: fix image path
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19678 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-21 00:33:20 +00:00
Uwe Stöhr
d9e3cf5242
Spanish EmbeddedObjects.lyx: updates from Ignacio
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19675 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-21 00:18:05 +00:00
Martin Vermeer
e710636ee8
Symbolic colour names work\!
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19664 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-20 18:57:48 +00:00
Georg Baum
022bcb105c
fix tex4ht detection on older SuSE and current Debian
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19663 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-20 17:31:42 +00:00
Martin Vermeer
96336caed7
make these definitions useful for latex
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19656 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-20 14:22:39 +00:00
Michael Schmitt
a6c9a208ca
* lib/ui/stdmenus.inc: use Capital letters in menu entries
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19650 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-19 19:02:28 +00:00
Alfredo Braunstein
b100b0a4c4
fix tabulation bug (python is amazing)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19646 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-19 14:03:51 +00:00
Martin Vermeer
3c504502bf
Further inset configurability, moving charstyle stuff to collapsable
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19640 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-18 23:26:07 +00:00
Martin Vermeer
ff682ec3e4
partial merge of charstyle and insetlayout stuff, part 2 (lyx2lyx)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19622 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-17 15:48:41 +00:00
Jean-Marc Lasgouttes
f86fc8d88c
The counters labelstring patch. Part 3: adapt some layout files and documentation
...
* numarticle.inc:
* numreport.inc:
* stdcounter.inc:
* stdsections.inc:
* stdstarsections.inc:
* stdclass.inc:
* scrbook.layout:
* amsmath.inc: adapt: remove most of the LabelString in layouts,
add the necessary stuff to counters.
* lib/doc/Customization.lyx: document the new stuff.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19604 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-16 11:16:07 +00:00
José Matox
345c44c3eb
Add Susana to list of contributors
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19593 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-15 20:32:49 +00:00
Jean-Marc Lasgouttes
1c1a1eca82
fix file format
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19592 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-15 19:25:59 +00:00
Uwe Stöhr
3101c0bbc9
documentation: apply the last cleanups also to the other languages
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19579 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-14 23:09:56 +00:00
Uwe Stöhr
17fb8c31f4
UserGuide.lyx: fix a chapter title
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19575 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-14 22:53:07 +00:00
Uwe Stöhr
4d83b4c7ae
EmbeddedObjects.lyx: fix version number
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19574 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-14 22:52:31 +00:00
Uwe Stöhr
2427bfaf0f
DummyDocument1/2.lyx: fix author names, a relict of a bug in LyX 1.5.0beta times
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19573 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-14 22:52:09 +00:00
Uwe Stöhr
54bc047c85
UserGuide.lyx:
...
- finish Appendix A, the document is now ready except of Appendix B (description of the preferences dialog)
- add hint about XeTeX
- cleaned up index and cross-references
- add description of clearpage
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19540 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-14 02:16:56 +00:00
Jean-Marc Lasgouttes
b0d1a6b717
Fix bug 409 (Add support for numbered footnotes)
...
* src/insets/InsetFoot.cpp (updateLabels): number the footnote if
(1) the footnote counter exists and (2) it is not in a title
layout
* lib/layouts/stdcounters.inc: add a footnote counter.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19524 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-13 20:29:33 +00:00
Richard Heck
7fca02e290
Fix makefile for 19498.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19510 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-13 17:22:52 +00:00
Martin Vermeer
2bd998c29e
Prepare for inset configurability
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19498 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-13 12:13:17 +00:00
Uwe Stöhr
278838409b
lib/doc/clipart: Add two new images for the Userguide
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19490 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-13 01:35:48 +00:00
Uwe Stöhr
e2c114c36c
UserGuide.lyx updates: - add description of Change Tracking and phonetic symbols
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19489 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-13 01:30:16 +00:00
Uwe Stöhr
ebcd88af15
buffer-update_ps.xpm: - fix color definition to be able to reference it in the docs
...
(with old definition it appeared gray in PDF-output)
- uniform it to the definition of the other images
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19488 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-12 23:06:40 +00:00
Uwe Stöhr
522f352ac0
EmbeddedObjects.lyx: Add section about longtable alignment
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19479 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-12 21:30:54 +00:00
José Matox
f130c13c7b
Increase the file format, now every \\begin_deeper has a corresponding \\end_deeper.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19461 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-12 14:56:49 +00:00
José Matox
ca81b43f03
Fix bug 518 (thanks to Jean Marc and Martin for the help)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19455 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-12 13:25:36 +00:00
Uwe Stöhr
8622ebaa4d
UserGuide.lyx updates: - add description of thesaurus
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19454 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-12 13:16:34 +00:00
Uwe Stöhr
f12f6f8043
UserGuide.lyx updates: - revise descriptions of Branches and Nomenclature
...
- add a nomenclature
- many other cleanups
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19448 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-12 11:05:26 +00:00
Uwe Stöhr
7878a3558d
UserGuide.lyx: fix some typos
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19416 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-11 01:48:54 +00:00
Uwe Stöhr
5564407c2c
UserGuide.lyx updates: - Finish the descriptions of the bibliography and the document settings dialog
...
- add a BibTeX bibliography
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19415 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-11 01:20:33 +00:00
Uwe Stöhr
baa48445a1
EmbeddedObjects.lyx: move the \texorpdfstring command to the preamble to get rid of ERT-boxes.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19404 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-10 19:14:07 +00:00
Uwe Stöhr
5aeea950b5
UserGuide.lyx updates: except of the Appendox A and B it is now near to be ready
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19403 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-10 18:15:59 +00:00
Jean-Marc Lasgouttes
251d858ebc
Fix broken build related to r19389 (recent userguide changes)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19394 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-10 08:41:48 +00:00
Uwe Stöhr
a1687b08aa
UserGuide.lyx: complete revision to bring it up to date:
...
- correct menu names
- add descriptions about index generation, font and graphic formats - to tell only examples
The document is ready except of the outliner and note descriptions.
The description of LyX's menus (Appendix A), and the preferences dialog (Appendix B) will be completed step by step, hopefully with some help.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19389 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-10 01:32:55 +00:00
Uwe Stöhr
ecd45bdc56
German Extended.lyx: updates from Hartmut
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19387 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-09 21:49:20 +00:00
Bo Peng
e27da75af1
Listings ui changes from Pavel
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19384 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-09 21:18:21 +00:00
Bo Peng
95dbcd40f9
Enable File -> Revert when the file is externally modified, rename this menu item to File -> Revert to saved, and check if the .lyx file has been externally modified when a buffer is saved. (Bugs 3766 and 4114)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19380 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-09 20:46:22 +00:00
Uwe Stöhr
f10f67af09
UserGuide.lyx: small fix to my previous commit
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19372 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-08 23:43:45 +00:00
Uwe Stöhr
34ff948a5f
UserGuide.lyx: - make it printable
...
- correct the appearance of the word "LyX" in the PDF-bookmarks
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19369 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-08 23:06:16 +00:00
Richard Heck
a984321131
Introduce LFUN to save all modified files, and add menu entries.
...
Patch from Guillaume Pothier for 1.4.x adapted by me to current trunk.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19338 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-06 15:34:02 +00:00
Uwe Stöhr
7af4a5e4ba
EmbeddedObjects.lyx: - fix broken references in German version
...
- update version number
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19327 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-06 00:07:33 +00:00
Enrico Forestieri
cbc5b72004
On Windows, remove log file generated by miktex and copy chkconfig.ltx
...
obeying the umask value as on cygwin access is controlled through ACLs
and the python port knows nothing about them.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19308 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-04 23:31:52 +00:00
Richard Heck
7982ee6cef
Fix bug 4094: HTML export issue with FAT32 on Linux.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19298 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-04 03:04:23 +00:00
Jean-Marc Lasgouttes
8151f74f21
revert r19291 (mk4ht returns the wrong error code))
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19296 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-03 21:19:29 +00:00
Richard Heck
1885fe5398
Use mk4ht oolatex' instead of
htlatex etc etc etc', per Jean-Pierre's advice.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19291 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-03 14:45:43 +00:00
Jean-Marc Lasgouttes
f74582aca0
credit Darren
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19282 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-03 10:12:46 +00:00
Richard Heck
364f49d04b
[2085] Get OpenDocument export working when htlatex is available but oolatex
...
is not. Also check for oowriter as an ODT viewer.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19260 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-31 17:18:02 +00:00
Jean-Marc Lasgouttes
0454f345a7
update email address for Hartmut Haase
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19254 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-31 14:31:55 +00:00
Jürgen Spitzmüller
2a875336c0
* lib/Makefile.am:
...
* development/scons/scons_manifest.py:
- add apa template.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19247 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-31 04:46:09 +00:00
Jürgen Spitzmüller
1696c09712
* lib/template/apa.lyx: update to 1.5 format.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19228 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-27 18:31:13 +00:00
Jürgen Spitzmüller
fb8fad65cf
* lib/template/apa.lyx: new file (fix bug 2390).
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19225 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-27 18:26:08 +00:00
Joost Verburg
b3ace671d2
configure.py: add support for the EMF file format and the metafile2eps conversion utility for WMF/EMF to EPS conversion
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19196 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-24 21:08:25 +00:00
José Matox
0ed05b32be
Update lyx examples to latest file format (for 1.5.0 release)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19192 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-24 17:45:46 +00:00
José Matox
819cae0ea7
Update documentation to latest file format (for 1.5.0 release)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19191 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-24 17:43:36 +00:00
José Matox
64e12293a0
Update documentation to latest file format (for 1.5.0 release)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19190 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-24 17:39:27 +00:00
José Matox
29d106fbf7
Convert layout files to utf8
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19189 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-24 17:16:35 +00:00
José Matox
a8dcedb3b1
Prepare for lyx 1.4.5
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19182 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-24 14:29:21 +00:00
Jürgen Spitzmüller
cfc845a6e9
* lib/doc/UserGuide.lyx:
...
* lib/doc/de/UserGuide.lyx:
- document the different utf-encodings.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19181 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-24 08:50:41 +00:00
José Matox
155058a362
Another take at bug 4049
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19172 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-23 17:06:32 +00:00
José Matox
61cb6824a6
Second part of bug 4050 fix
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19168 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-22 20:10:28 +00:00
José Matox
972ec40b73
Fix problem reported by bug 4050 (I am not sure if this fixes the bug)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19167 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-22 19:03:11 +00:00
José Matox
b03bc96912
Fix bug 2049
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19166 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-22 18:20:22 +00:00
Bo Peng
cce9cfc975
fix wrong fix r19160. I did not have an extra \end_layout, but missed a \begin_layout
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19163 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-21 05:45:50 +00:00
Uwe Stöhr
c0b0fe35fa
Spanish EmbeddedObjects.lyx: updates from Ignacio
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19161 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-20 20:42:20 +00:00
Bo Peng
f668844789
Remove an extra \end_layout from revert_listings_inset
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19160 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-20 19:02:52 +00:00
José Matox
ce87f9dd49
(Atempt to) Fix bug 4048
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19159 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-20 16:02:24 +00:00
José Matox
6dfd1c17f3
Prepare code for refactorisation
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19158 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-20 15:06:48 +00:00
José Matox
d3f7996cdd
Move related code together (no code added or deleted)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19157 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-20 14:25:04 +00:00
Jürgen Spitzmüller
9c06580008
* lib/unicodesymbols: whitespace
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19154 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-20 12:56:56 +00:00
Jürgen Spitzmüller
586a07709f
* lib/lyx2lyx/lyx_1_5.py (revert_unicode):
...
- reintroduce \n's accidentally removed in revision 19145
(fixes bug 4046)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19153 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-20 10:26:01 +00:00
Jürgen Spitzmüller
db8a268476
* lib/unicodesymbols: fix typo.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19152 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-20 10:23:59 +00:00
Dov Feldstern
11441c8560
Fix a few edge-cases which in the lyx2lyx conversion to format 249
...
(multi-encoding -> utf8); specifically, the language was being
incorrectly identified in certain insets, which of course led to
encoding problems.
This fixes part of bug 3613 (http://bugzilla.lyx.org/show_bug.cgi?id=3613 ).
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19151 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-20 02:10:28 +00:00
Uwe Stöhr
29be500207
UserGuide.lyx: clean up author entries
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19149 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-19 23:59:48 +00:00
Michael Schmitt
cf68797031
* lib/doc/doc_toc.py: fix typo
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19146 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-19 17:53:00 +00:00
José Matox
aa5848f957
Clean and speedup code in revert_unicode
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19145 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-19 17:15:31 +00:00
Jürgen Spitzmüller
f36e1b4b31
* lib/lyx2lyx/lyx_1_5.py (revert_unicode): fixes by Georg Baum (bug 3985)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19138 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-19 14:59:43 +00:00
José Matox
b3059e2070
Fix bug 4033 (Georg)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19137 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-19 12:24:01 +00:00
Jürgen Spitzmüller
e12b2d31ed
* lib/lyx2lyx/lyx_1_5.py:
...
- use document.default_layout instead of hardcoded "Standard" layout (bug 4035)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19135 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-19 10:33:40 +00:00
Uwe Stöhr
6cf6321f82
documentation: remove linuxdoc descriptions (part2)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19124 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-18 23:34:31 +00:00
Uwe Stöhr
82d2a827b5
documentation: remove linuxdoc descriptions (part1), fixes bug 2787 http://bugzilla.lyx.org/show_bug.cgi?id=2787
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19123 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-18 23:24:33 +00:00
Uwe Stöhr
e7fffdc821
doc_toc.py: add comment to explain its calling syntax (fixes bug 3798
...
http://bugzilla.lyx.org/show_bug.cgi?id=3798 )
depend.py: dito, and fix file encoding
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19122 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-18 19:45:11 +00:00
José Matox
74f45fc0e9
Fix bug 3404 (from Bo Peng)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19114 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-18 10:49:33 +00:00
José Matox
8397a051fa
Improve revert unicode (bug 3958) from Anders Ekberg
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19113 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-18 10:47:44 +00:00
Uwe Stöhr
552d4035eb
EmbeddedObjects: fix character for centered dot
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19108 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-18 00:18:54 +00:00
Uwe Stöhr
f3b50f9bf1
Intro.lyx: fix name of manual (spotted by Jean-Pierre)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19106 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-17 20:12:42 +00:00
José Matox
aafefdbe26
Fix crash loading old files ( http://www.mail-archive.com/lyx-users%40lists.lyx.org/msg57472.html )
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19101 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-17 16:46:19 +00:00
José Matox
95cf1d65f3
Old lyx files (from 1.0 era) can start with a begin deeper
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19097 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-17 11:53:46 +00:00
Uwe Stöhr
a5c7bdc41e
EmbeddedObjects: add a note about bold typewriter fonts (by Jürgen)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19090 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-16 21:18:28 +00:00
José Matox
e983dba010
Add frenchb to languages for compatibility with older files.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19044 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-11 15:10:13 +00:00
Uwe Stöhr
620908139e
Czech Tutorial.lyx: updates from Pavel
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19006 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-08 23:35:23 +00:00
Uwe Stöhr
9051f93625
UserGuide: remove outdated hint to have the packages "umlaute" and "german" installed. You don't need them and thanks to our unicodesymbols list you can insert the French guillemets directly.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18996 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-06 00:49:52 +00:00
Uwe Stöhr
d4fb110865
lyx_1_5.py: fix typo
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18995 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-06 00:30:29 +00:00
Jürgen Spitzmüller
7562340249
fix unicode decomposition (bugs 3313 and 3498):
...
* src/support/docstring.{cpp,h}:
- rename normalize_kc to normalize_c and use normalization form C (instead of KC)
* src/callback.cpp:
* src/Trans.cpp:
* src/frontends/qt4/GuiClipboard.cpp:
* src/frontends/qt4/GuiSelection.cpp:
* lib/lyx2lyx/lyx_1_5.py:
- use normalization forms C and D instead of KC and KD.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18991 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-05 14:45:00 +00:00
Uwe Stöhr
2df5252dad
Spanish EmbeddedObjects.lyx: Updates from Ignacio
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18983 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-04 20:52:24 +00:00
Uwe Stöhr
07caea8f92
EmbeddedObjects.lyx: tiny fix
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18980 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-03 22:33:55 +00:00
Uwe Stöhr
e810a59fdb
German Intro.lyx: don't require koma-script
...
German Tutorial.lyx: dito
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18979 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-03 21:27:03 +00:00
Uwe Stöhr
e40764b00d
German Intro.lyx: Updates from Hartmut
...
German Tutorial.lyx: dito
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18969 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-02 21:09:18 +00:00
Michael Schmitt
0430d70ec3
* lib/images/promote.xpm: fix section number in icon
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18968 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-02 19:41:45 +00:00
Uwe Stöhr
3a4dd21a65
languages: add a dumy language for arabic_arabtex. I dropped this from the arabic patch last week because I misunderstood Dov. This dummy language is indeed needed.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18957 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-02 00:35:52 +00:00
Uwe Stöhr
0bf9eda832
German Extended.lyx: Updates from Hartmut
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18956 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-01 21:14:56 +00:00
Jürgen Spitzmüller
efdfe031e7
* lib/CREDITS:
...
* lib/generate_contributions.py:
- add Hangzai Luo.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18954 a592a061-630c-0410-9148-cb99ea01b6c8
2007-07-01 15:17:11 +00:00
Uwe Stöhr
e72d2468df
German UserGuide: updates from Hartmut
...
German EmbeddedObjects: fix a typo
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18952 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-30 22:52:35 +00:00
Jürgen Spitzmüller
768addedfd
* lib/lyx2lyx/lyx_1_5.py (revert_unicode): fix typo in comment
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18950 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-30 06:56:15 +00:00
Jürgen Spitzmüller
2bde238feb
* lib/lyx2lyx/lyx_1_5.py:
...
- fix convert_graphics_rotation and make revert_graphics_rotation actually work.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18948 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-30 06:07:20 +00:00
Uwe Stöhr
e307c65674
UserGuide: fix the description how to change the font size in formulas
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18946 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-29 21:42:26 +00:00
Uwe Stöhr
2f6f34c384
EmbeddedObjects: fix bug in description of \extrarowheight command
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18945 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-29 20:50:39 +00:00
Uwe Stöhr
c48221aea8
doc/doc_toc.py: - fix the input encoding of the TOC.lyx files
...
- set Python file encoding to utf-8
scripts/ext_copy.py: - set Python file encoding to utf-8
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18943 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-29 19:13:57 +00:00
Uwe Stöhr
ab507ec444
elsart.layout: fix Acknowlegments enviroment
...
(bug 3931: http://bugzilla.lyx.org/show_bug.cgi?id=3931 )
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18937 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-28 22:37:15 +00:00
Uwe Stöhr
607b86bdeb
German UserGuide.lyx: Change to two sided document layout
...
(with permission by Hartmut)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18935 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-28 21:33:55 +00:00
Uwe Stöhr
4cef6923f4
Makefile.am: add Hungarian example files
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18921 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-28 00:00:02 +00:00
Uwe Stöhr
904616b199
Userguide: Only fix a markup and a typo
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18920 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-27 23:51:21 +00:00
Uwe Stöhr
0b3c217b79
lyx_1_5.py: last part of fix for bug 3313
...
OK from José: http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg121628.html
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18918 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-27 20:46:04 +00:00
Uwe Stöhr
ca2bed7fa9
German UserGuide: latest patches by Hartmut
...
German EmbeddedObjects: change option names according to Michaels latest de.po translations in rev 18905
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18906 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-27 00:01:15 +00:00
Uwe Stöhr
277547b065
German EmbeddedObjects.lyx: fix again an incorrect markup
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18904 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-26 21:59:32 +00:00
Uwe Stöhr
1a46251dfa
EmbeddedObjects: small changes to markup again
...
German version: fix many typos
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18903 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-26 21:53:10 +00:00
José Matox
0d3295f1cf
Fix bug 3313 (unicode error when invoking lyx2lyx) by Anders Ekberg
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18890 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-26 13:15:29 +00:00
Uwe Stöhr
26b21574b2
EmbeddedObjects: fix fileformat of previous EmbeddedObjects commit
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18888 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-26 00:26:56 +00:00
Uwe Stöhr
d8993d2d6c
- Fileformat change: rename "arabic" to "arabic_arabtex"
...
- Split the language Arabic into "arabic_arabi" that uses the arabi-package and "arabic-arabtex" that uses the arabTeX-package to typeset Arabic. This is needed because both packages have some advantages over the other people need.
(This change is a consequence of a long and fruitful discussion with Mostafa, Dov, and me.)
Patch by Dov and me.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18887 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-26 00:11:03 +00:00
Uwe Stöhr
5586ef0ff6
EmbeddedObjects: changes to markup
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18886 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-25 23:46:32 +00:00
Jürgen Spitzmüller
bcf64dd11c
Fix bug 1749. CAUTION: lyx2lyx not fully working yet (see FIXMEs).
...
* development/FORMAT:
- document file format change
* src/Buffer.cpp: bump format to 275.
* lib/lyx2lyx/LyX.py:
* lib/lyx2lyx/lyx_1_5.py:
- conversion and reversion of scaleBeforeRotation param (doesn't work yet!)
* src/insets/InsetGraphicsParams.{cpp,h}:
- new param scaleBeforeRotation
* src/insets/InsetGraphics.cpp:
- swap order of scale and rotate (if scaleBeforeRotation is false)
* src/frontends/qt4/QGraphics.C:
* src/frontends/qt4/QGraphicsDialog.{cpp,h}:
* src/frontends/qt4/ui/GraphicsUi.ui:
- add checkbox to toggle scaleBeforeRotation.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18885 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-25 13:49:51 +00:00
Uwe Stöhr
55ad53c7fb
EmbeddedObjects: some minor changes to markup
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18878 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-25 00:58:25 +00:00
Uwe Stöhr
dc56f010db
New German EmbeddedObjects manual
...
Part 2: the documents
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18877 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-25 00:57:19 +00:00
Uwe Stöhr
1dacd33172
Intro.lyx: fix a typo spotted by Jarvis Liang
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18876 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-24 18:36:32 +00:00
Jürgen Spitzmüller
405bad36d8
* lib/doc/Makefile.am:
...
- fix compilation broken by revision 18872.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18873 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-24 08:51:41 +00:00
Uwe Stöhr
5f614b008a
New German EmbeddedObjects manual
...
Part 1: the images
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18872 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-23 12:30:03 +00:00
Uwe Stöhr
fd08009656
EmbeddedObjects: add ligature breaks, spotted by Hartmut
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18870 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-23 11:19:04 +00:00
Uwe Stöhr
1fc33d0714
Userguide: two minor things I forgot in the last commit
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18865 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-23 01:50:02 +00:00
Uwe Stöhr
34b7351de0
Fix value for the didot in all documentations
...
EmbeddedObjects: fix two issues spotted by Hartmut
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18864 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-23 01:41:15 +00:00
Uwe Stöhr
58c9d5fd70
Add keymap file for Farsi, provided by Mostafa
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18861 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-22 22:41:45 +00:00
Uwe Stöhr
31c99e6b37
Fixes for Farsi:
...
- Bufferparams.cpp: set correct font encoding for Farsi
- lib/languages: define quotation marks for Farsi
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18858 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-22 22:23:37 +00:00
Uwe Stöhr
7cb5868e03
fix bug 1942: http://bugzilla.lyx.org/show_bug.cgi?id=1942
...
- we don't require wasysym any more. Either esint or amsmath is used, depending if esint is installed
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18857 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-22 21:25:41 +00:00
Edwin Leuven
e752a9eeef
* remove fraction menu (all entries are already on main math toolbar)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18851 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-22 09:04:26 +00:00
Michael Schmitt
c4d2b66aca
fix white space
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18834 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-19 21:20:09 +00:00
Richard Heck
3d362bf35c
Remove now unused originaldir flag from Converter.{cpp,h}.
...
Update documentation to reflect removal.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18824 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-19 14:29:57 +00:00
Uwe Stöhr
3ac3f18bc2
de UserGuide.lyx: remove keyboard shortcut table that was only valid for certain Unixes (with OK from Hartmut)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18821 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-18 18:27:08 +00:00
Uwe Stöhr
5771b9919c
EmbeddedObjects.lyx: Spanish update by Ignacio
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18820 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-18 18:25:15 +00:00
Uwe Stöhr
590dd41bb4
EmbeddedObjects.lyx: add hint how to force a rotation direction for rotated floats
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18811 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-17 17:11:56 +00:00
Uwe Stöhr
e8b545021a
modernCV.lyx: fix typo I introduced in previous commit
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18810 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-17 00:26:48 +00:00
Uwe Stöhr
6b7436766c
moderncv: update layout and example to version 0.6 of moderncv.layout
...
This means:
- added subsection style in moderncv.layout
(I had to promise to JMarc when I added the moderncv support to add this as soon as the new noderncv version is out.)
- actualize preamble of modernCV.lyx to make it compile with the new version
- better explanation of customization possibilities in the preamble of modernCV.lyx
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18808 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-17 00:21:35 +00:00
Uwe Stöhr
05e03cf924
de and it UserGuide.lyx: update the character table according to our Unicode features.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18807 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-16 19:27:35 +00:00
Uwe Stöhr
eb1a022d02
de UserGuide.lyx: fix some layout issues.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18805 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-16 16:17:20 +00:00
Uwe Stöhr
0f836e393c
UserGuide.lyx: update the character table according to our Unicode features.
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18803 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-16 14:59:36 +00:00
Uwe Stöhr
798ad9755a
unicodesymbols: use commands for the dashes for consistency reasons and to avoid potential problems with some LaTeX-packages
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18802 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-16 14:56:16 +00:00
Uwe Stöhr
f1e6925e03
unicodesymbols: fix incorrect spacing of character 215f
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18797 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-15 23:25:54 +00:00
Uwe Stöhr
5ea5b8fdb9
EmbeddedObjects.lyx: fix typo spotted by Hartmut
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18795 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-15 23:05:33 +00:00
Uwe Stöhr
f396f88e5f
de Userguide.lyx: update the special characters table (fixes bug 3855: http://bugzilla.lyx.org/show_bug.cgi?id=3855 )
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18794 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-15 22:57:26 +00:00
Uwe Stöhr
27305d709a
unicodesymbols: add number form characters (that are for example used in the German Userguide)
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18793 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-15 22:54:21 +00:00
Richard Heck
954be90e11
Make HTML export work.
...
The key is the new copier script lib/scripts/ext_copy.py. Usage:
ext_copy.py [-e ext1,ext2,...] <from file> <to file>
Given a <from file> and <to file>, it will copy all files in the directory
in which from_file is found that have the extensions given in the -e option,
or all files in that directory if no such argument is given. So, for example,
we can do:
python ext_copy.py -e png,html,css /path/from/file.html /path/to/file.html
and all html, png, and css files in /path/from/ will be copied to the
(possibly new) directory /path/to/file.html.LyXconv/. The -t option determines
the extension added to the output filename passed to the script ($$o, in the
copier definition), the default being "LyXconv". If just . is given, then no
extension is added.
Other changes:
* configure.py: added appropriate copier definitions for html and wordhtml
formats, as well as for the Program pseudo-format.
* lib/Makefile.am and development/scons/scons_manifest.py: add ext_copy.py.
* lib/doc/Customization.lyx: update documentation.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18791 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-15 17:02:35 +00:00
Enrico Forestieri
8561f4f2ca
Better fix for bug 3510 (by me, Juergen, and Jean-Marc)
...
* lib/layouts/IEEEtran.layout: Add a proper definition to the
preamble when using the MarkBoth environment (fix bug 3510).
Allow inserting an optional argument for theorem like environments.
Remove white space from begin of line in preamble stuff.
* lib/templates/IEEEtran.lyx: Reintroduce the MarkBoth environment
in the document body thanks to the fix above. Use optional argument
instead of ERT in Theorem environment. Use the new --Separator--
environment for splitting biography environments.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18767 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-13 22:50:17 +00:00
Dov Feldstern
a529b7e6e7
lyx2lyx to convert the language of spaces surrounding text in a foriegn
...
language to be in the paragraph's language. This is necessary due to format
change 259, but the language was forgotten in lyx2lyx back then. It's important
for Bidi documents.
(fixes bug http://bugzilla.lyx.org/show_bug.cgi?id=3789 )
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18766 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-13 19:12:38 +00:00
Bo Peng
dad101c2e3
Add --Separator-- environment
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18764 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-13 15:09:28 +00:00
Bo Peng
6551f0afa8
lyx2lyx support for unrecognizable listings parameter
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18763 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-13 14:38:34 +00:00
Uwe Stöhr
46b03ed4fd
Makefile.am: order files again after #18747
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18759 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-13 01:12:29 +00:00
Uwe Stöhr
94c3f75fb9
de-FAQ.lyx: fix small issue recovered by Bernhard Roider
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18757 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-13 00:55:59 +00:00
Peter Kümmel
ac92fbbd8a
also install the close tab image
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18747 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-12 06:54:42 +00:00
Uwe Stöhr
fddca82d95
add layout and template for iopart
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18745 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-12 01:09:49 +00:00
Peter Kümmel
69a81aecfa
add tab close button
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18739 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-11 14:53:36 +00:00
Jürgen Spitzmüller
f5300ad830
* lib/templates/IEEEtran.lyx:
...
- move \markboth to preamble (fix bug 3510).
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18738 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-11 14:13:50 +00:00
Edwin Leuven
7aa51095d2
update functions.xpm and add to scons_manifest.py
...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18719 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-08 14:48:44 +00:00
Jürgen Spitzmüller
b14bb26d54
* lib/Makefile.am:
...
- add missing images/math/function.xpm
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18718 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-08 14:38:27 +00:00
Jürgen Spitzmüller
b5eb31d698
* lib/layouts/amsdefs.inc:
...
- fix whatever went wrong on r18712.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18713 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-08 07:26:37 +00:00
Jürgen Spitzmüller
13f6e7b912
* lib/layouts/amsdefs.inc:
...
- allow optional argument in title (from Paul A. Rubin).
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18712 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-08 07:19:47 +00:00
Jürgen Spitzmüller
4b87c3b164
* lib/doc/LaTeXConfig.lyx.in:
...
- fix link to IEEETran.cls.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18711 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-08 06:23:14 +00:00